2009-09-13 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / tree.c
blob98a683dea9d4432c590dd81d7a5c21cf3d74df15
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, 2009
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-inline.h"
49 #include "tree-iterator.h"
50 #include "basic-block.h"
51 #include "tree-flow.h"
52 #include "params.h"
53 #include "pointer-set.h"
54 #include "fixed-value.h"
55 #include "tree-pass.h"
56 #include "langhooks-def.h"
57 #include "diagnostic.h"
58 #include "cgraph.h"
59 #include "timevar.h"
60 #include "except.h"
61 #include "debug.h"
63 /* Tree code classes. */
65 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
66 #define END_OF_BASE_TREE_CODES tcc_exceptional,
68 const enum tree_code_class tree_code_type[] = {
69 #include "all-tree.def"
72 #undef DEFTREECODE
73 #undef END_OF_BASE_TREE_CODES
75 /* Table indexed by tree code giving number of expression
76 operands beyond the fixed part of the node structure.
77 Not used for types or decls. */
79 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
80 #define END_OF_BASE_TREE_CODES 0,
82 const unsigned char tree_code_length[] = {
83 #include "all-tree.def"
86 #undef DEFTREECODE
87 #undef END_OF_BASE_TREE_CODES
89 /* Names of tree components.
90 Used for printing out the tree and error messages. */
91 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
92 #define END_OF_BASE_TREE_CODES "@dummy",
94 const char *const tree_code_name[] = {
95 #include "all-tree.def"
98 #undef DEFTREECODE
99 #undef END_OF_BASE_TREE_CODES
101 /* Each tree code class has an associated string representation.
102 These must correspond to the tree_code_class entries. */
104 const char *const tree_code_class_strings[] =
106 "exceptional",
107 "constant",
108 "type",
109 "declaration",
110 "reference",
111 "comparison",
112 "unary",
113 "binary",
114 "statement",
115 "vl_exp",
116 "expression"
119 /* obstack.[ch] explicitly declined to prototype this. */
120 extern int _obstack_allocated_p (struct obstack *h, void *obj);
122 #ifdef GATHER_STATISTICS
123 /* Statistics-gathering stuff. */
125 int tree_node_counts[(int) all_kinds];
126 int tree_node_sizes[(int) all_kinds];
128 /* Keep in sync with tree.h:enum tree_node_kind. */
129 static const char * const tree_node_kind_names[] = {
130 "decls",
131 "types",
132 "blocks",
133 "stmts",
134 "refs",
135 "exprs",
136 "constants",
137 "identifiers",
138 "perm_tree_lists",
139 "temp_tree_lists",
140 "vecs",
141 "binfos",
142 "ssa names",
143 "constructors",
144 "random kinds",
145 "lang_decl kinds",
146 "lang_type kinds",
147 "omp clauses",
149 #endif /* GATHER_STATISTICS */
151 /* Unique id for next decl created. */
152 static GTY(()) int next_decl_uid;
153 /* Unique id for next type created. */
154 static GTY(()) int next_type_uid = 1;
156 /* Since we cannot rehash a type after it is in the table, we have to
157 keep the hash code. */
159 struct GTY(()) type_hash {
160 unsigned long hash;
161 tree type;
164 /* Initial size of the hash table (rounded to next prime). */
165 #define TYPE_HASH_INITIAL_SIZE 1000
167 /* Now here is the hash table. When recording a type, it is added to
168 the slot whose index is the hash code. Note that the hash table is
169 used for several kinds of types (function types, array types and
170 array index range types, for now). While all these live in the
171 same table, they are completely independent, and the hash code is
172 computed differently for each of these. */
174 static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash)))
175 htab_t type_hash_table;
177 /* Hash table and temporary node for larger integer const values. */
178 static GTY (()) tree int_cst_node;
179 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
180 htab_t int_cst_hash_table;
182 /* Hash table for optimization flags and target option flags. Use the same
183 hash table for both sets of options. Nodes for building the current
184 optimization and target option nodes. The assumption is most of the time
185 the options created will already be in the hash table, so we avoid
186 allocating and freeing up a node repeatably. */
187 static GTY (()) tree cl_optimization_node;
188 static GTY (()) tree cl_target_option_node;
189 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node)))
190 htab_t cl_option_hash_table;
192 /* General tree->tree mapping structure for use in hash tables. */
195 static GTY ((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
196 htab_t debug_expr_for_decl;
198 static GTY ((if_marked ("tree_map_marked_p"), param_is (struct tree_map)))
199 htab_t value_expr_for_decl;
201 static GTY ((if_marked ("tree_priority_map_marked_p"),
202 param_is (struct tree_priority_map)))
203 htab_t init_priority_for_decl;
205 static void set_type_quals (tree, int);
206 static int type_hash_eq (const void *, const void *);
207 static hashval_t type_hash_hash (const void *);
208 static hashval_t int_cst_hash_hash (const void *);
209 static int int_cst_hash_eq (const void *, const void *);
210 static hashval_t cl_option_hash_hash (const void *);
211 static int cl_option_hash_eq (const void *, const void *);
212 static void print_type_hash_statistics (void);
213 static void print_debug_expr_statistics (void);
214 static void print_value_expr_statistics (void);
215 static int type_hash_marked_p (const void *);
216 static unsigned int type_hash_list (const_tree, hashval_t);
217 static unsigned int attribute_hash_list (const_tree, hashval_t);
219 tree global_trees[TI_MAX];
220 tree integer_types[itk_none];
222 unsigned char tree_contains_struct[MAX_TREE_CODES][64];
224 /* Number of operands for each OpenMP clause. */
225 unsigned const char omp_clause_num_ops[] =
227 0, /* OMP_CLAUSE_ERROR */
228 1, /* OMP_CLAUSE_PRIVATE */
229 1, /* OMP_CLAUSE_SHARED */
230 1, /* OMP_CLAUSE_FIRSTPRIVATE */
231 2, /* OMP_CLAUSE_LASTPRIVATE */
232 4, /* OMP_CLAUSE_REDUCTION */
233 1, /* OMP_CLAUSE_COPYIN */
234 1, /* OMP_CLAUSE_COPYPRIVATE */
235 1, /* OMP_CLAUSE_IF */
236 1, /* OMP_CLAUSE_NUM_THREADS */
237 1, /* OMP_CLAUSE_SCHEDULE */
238 0, /* OMP_CLAUSE_NOWAIT */
239 0, /* OMP_CLAUSE_ORDERED */
240 0, /* OMP_CLAUSE_DEFAULT */
241 3, /* OMP_CLAUSE_COLLAPSE */
242 0 /* OMP_CLAUSE_UNTIED */
245 const char * const omp_clause_code_name[] =
247 "error_clause",
248 "private",
249 "shared",
250 "firstprivate",
251 "lastprivate",
252 "reduction",
253 "copyin",
254 "copyprivate",
255 "if",
256 "num_threads",
257 "schedule",
258 "nowait",
259 "ordered",
260 "default",
261 "collapse",
262 "untied"
266 /* Return the tree node structure used by tree code CODE. */
268 static inline enum tree_node_structure_enum
269 tree_node_structure_for_code (enum tree_code code)
271 switch (TREE_CODE_CLASS (code))
273 case tcc_declaration:
275 switch (code)
277 case FIELD_DECL:
278 return TS_FIELD_DECL;
279 case PARM_DECL:
280 return TS_PARM_DECL;
281 case VAR_DECL:
282 return TS_VAR_DECL;
283 case LABEL_DECL:
284 return TS_LABEL_DECL;
285 case RESULT_DECL:
286 return TS_RESULT_DECL;
287 case CONST_DECL:
288 return TS_CONST_DECL;
289 case TYPE_DECL:
290 return TS_TYPE_DECL;
291 case FUNCTION_DECL:
292 return TS_FUNCTION_DECL;
293 default:
294 return TS_DECL_NON_COMMON;
297 case tcc_type:
298 return TS_TYPE;
299 case tcc_reference:
300 case tcc_comparison:
301 case tcc_unary:
302 case tcc_binary:
303 case tcc_expression:
304 case tcc_statement:
305 case tcc_vl_exp:
306 return TS_EXP;
307 default: /* tcc_constant and tcc_exceptional */
308 break;
310 switch (code)
312 /* tcc_constant cases. */
313 case INTEGER_CST: return TS_INT_CST;
314 case REAL_CST: return TS_REAL_CST;
315 case FIXED_CST: return TS_FIXED_CST;
316 case COMPLEX_CST: return TS_COMPLEX;
317 case VECTOR_CST: return TS_VECTOR;
318 case STRING_CST: return TS_STRING;
319 /* tcc_exceptional cases. */
320 case ERROR_MARK: return TS_COMMON;
321 case IDENTIFIER_NODE: return TS_IDENTIFIER;
322 case TREE_LIST: return TS_LIST;
323 case TREE_VEC: return TS_VEC;
324 case SSA_NAME: return TS_SSA_NAME;
325 case PLACEHOLDER_EXPR: return TS_COMMON;
326 case STATEMENT_LIST: return TS_STATEMENT_LIST;
327 case BLOCK: return TS_BLOCK;
328 case CONSTRUCTOR: return TS_CONSTRUCTOR;
329 case TREE_BINFO: return TS_BINFO;
330 case OMP_CLAUSE: return TS_OMP_CLAUSE;
331 case OPTIMIZATION_NODE: return TS_OPTIMIZATION;
332 case TARGET_OPTION_NODE: return TS_TARGET_OPTION;
334 default:
335 gcc_unreachable ();
340 /* Initialize tree_contains_struct to describe the hierarchy of tree
341 nodes. */
343 static void
344 initialize_tree_contains_struct (void)
346 unsigned i;
348 #define MARK_TS_BASE(C) \
349 do { \
350 tree_contains_struct[C][TS_BASE] = 1; \
351 } while (0)
353 #define MARK_TS_COMMON(C) \
354 do { \
355 MARK_TS_BASE (C); \
356 tree_contains_struct[C][TS_COMMON] = 1; \
357 } while (0)
359 #define MARK_TS_DECL_MINIMAL(C) \
360 do { \
361 MARK_TS_COMMON (C); \
362 tree_contains_struct[C][TS_DECL_MINIMAL] = 1; \
363 } while (0)
365 #define MARK_TS_DECL_COMMON(C) \
366 do { \
367 MARK_TS_DECL_MINIMAL (C); \
368 tree_contains_struct[C][TS_DECL_COMMON] = 1; \
369 } while (0)
371 #define MARK_TS_DECL_WRTL(C) \
372 do { \
373 MARK_TS_DECL_COMMON (C); \
374 tree_contains_struct[C][TS_DECL_WRTL] = 1; \
375 } while (0)
377 #define MARK_TS_DECL_WITH_VIS(C) \
378 do { \
379 MARK_TS_DECL_WRTL (C); \
380 tree_contains_struct[C][TS_DECL_WITH_VIS] = 1; \
381 } while (0)
383 #define MARK_TS_DECL_NON_COMMON(C) \
384 do { \
385 MARK_TS_DECL_WITH_VIS (C); \
386 tree_contains_struct[C][TS_DECL_NON_COMMON] = 1; \
387 } while (0)
389 for (i = ERROR_MARK; i < LAST_AND_UNUSED_TREE_CODE; i++)
391 enum tree_code code;
392 enum tree_node_structure_enum ts_code;
394 code = (enum tree_code) i;
395 ts_code = tree_node_structure_for_code (code);
397 /* Mark the TS structure itself. */
398 tree_contains_struct[code][ts_code] = 1;
400 /* Mark all the structures that TS is derived from. */
401 switch (ts_code)
403 case TS_COMMON:
404 MARK_TS_BASE (code);
405 break;
407 case TS_INT_CST:
408 case TS_REAL_CST:
409 case TS_FIXED_CST:
410 case TS_VECTOR:
411 case TS_STRING:
412 case TS_COMPLEX:
413 case TS_IDENTIFIER:
414 case TS_DECL_MINIMAL:
415 case TS_TYPE:
416 case TS_LIST:
417 case TS_VEC:
418 case TS_EXP:
419 case TS_SSA_NAME:
420 case TS_BLOCK:
421 case TS_BINFO:
422 case TS_STATEMENT_LIST:
423 case TS_CONSTRUCTOR:
424 case TS_OMP_CLAUSE:
425 case TS_OPTIMIZATION:
426 case TS_TARGET_OPTION:
427 MARK_TS_COMMON (code);
428 break;
430 case TS_DECL_COMMON:
431 MARK_TS_DECL_MINIMAL (code);
432 break;
434 case TS_DECL_WRTL:
435 MARK_TS_DECL_COMMON (code);
436 break;
438 case TS_DECL_NON_COMMON:
439 MARK_TS_DECL_WITH_VIS (code);
440 break;
442 case TS_DECL_WITH_VIS:
443 case TS_PARM_DECL:
444 case TS_LABEL_DECL:
445 case TS_RESULT_DECL:
446 case TS_CONST_DECL:
447 MARK_TS_DECL_WRTL (code);
448 break;
450 case TS_FIELD_DECL:
451 MARK_TS_DECL_COMMON (code);
452 break;
454 case TS_VAR_DECL:
455 MARK_TS_DECL_WITH_VIS (code);
456 break;
458 case TS_TYPE_DECL:
459 case TS_FUNCTION_DECL:
460 MARK_TS_DECL_NON_COMMON (code);
461 break;
463 default:
464 gcc_unreachable ();
468 /* Basic consistency checks for attributes used in fold. */
469 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_NON_COMMON]);
470 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_NON_COMMON]);
471 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_NON_COMMON]);
472 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_COMMON]);
473 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_COMMON]);
474 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_COMMON]);
475 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_COMMON]);
476 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_COMMON]);
477 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_COMMON]);
478 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_COMMON]);
479 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_COMMON]);
480 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_COMMON]);
481 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_WRTL]);
482 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WRTL]);
483 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_WRTL]);
484 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_WRTL]);
485 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WRTL]);
486 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_WRTL]);
487 gcc_assert (tree_contains_struct[CONST_DECL][TS_DECL_MINIMAL]);
488 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_MINIMAL]);
489 gcc_assert (tree_contains_struct[PARM_DECL][TS_DECL_MINIMAL]);
490 gcc_assert (tree_contains_struct[RESULT_DECL][TS_DECL_MINIMAL]);
491 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_MINIMAL]);
492 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_MINIMAL]);
493 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_MINIMAL]);
494 gcc_assert (tree_contains_struct[LABEL_DECL][TS_DECL_MINIMAL]);
495 gcc_assert (tree_contains_struct[FIELD_DECL][TS_DECL_MINIMAL]);
496 gcc_assert (tree_contains_struct[VAR_DECL][TS_DECL_WITH_VIS]);
497 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_DECL_WITH_VIS]);
498 gcc_assert (tree_contains_struct[TYPE_DECL][TS_DECL_WITH_VIS]);
499 gcc_assert (tree_contains_struct[TRANSLATION_UNIT_DECL][TS_DECL_WITH_VIS]);
500 gcc_assert (tree_contains_struct[VAR_DECL][TS_VAR_DECL]);
501 gcc_assert (tree_contains_struct[FIELD_DECL][TS_FIELD_DECL]);
502 gcc_assert (tree_contains_struct[PARM_DECL][TS_PARM_DECL]);
503 gcc_assert (tree_contains_struct[LABEL_DECL][TS_LABEL_DECL]);
504 gcc_assert (tree_contains_struct[RESULT_DECL][TS_RESULT_DECL]);
505 gcc_assert (tree_contains_struct[CONST_DECL][TS_CONST_DECL]);
506 gcc_assert (tree_contains_struct[TYPE_DECL][TS_TYPE_DECL]);
507 gcc_assert (tree_contains_struct[FUNCTION_DECL][TS_FUNCTION_DECL]);
508 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_MINIMAL]);
509 gcc_assert (tree_contains_struct[IMPORTED_DECL][TS_DECL_COMMON]);
511 #undef MARK_TS_BASE
512 #undef MARK_TS_COMMON
513 #undef MARK_TS_DECL_MINIMAL
514 #undef MARK_TS_DECL_COMMON
515 #undef MARK_TS_DECL_WRTL
516 #undef MARK_TS_DECL_WITH_VIS
517 #undef MARK_TS_DECL_NON_COMMON
521 /* Init tree.c. */
523 void
524 init_ttree (void)
526 /* Initialize the hash table of types. */
527 type_hash_table = htab_create_ggc (TYPE_HASH_INITIAL_SIZE, type_hash_hash,
528 type_hash_eq, 0);
530 debug_expr_for_decl = htab_create_ggc (512, tree_map_hash,
531 tree_map_eq, 0);
533 value_expr_for_decl = htab_create_ggc (512, tree_map_hash,
534 tree_map_eq, 0);
535 init_priority_for_decl = htab_create_ggc (512, tree_priority_map_hash,
536 tree_priority_map_eq, 0);
538 int_cst_hash_table = htab_create_ggc (1024, int_cst_hash_hash,
539 int_cst_hash_eq, NULL);
541 int_cst_node = make_node (INTEGER_CST);
543 cl_option_hash_table = htab_create_ggc (64, cl_option_hash_hash,
544 cl_option_hash_eq, NULL);
546 cl_optimization_node = make_node (OPTIMIZATION_NODE);
547 cl_target_option_node = make_node (TARGET_OPTION_NODE);
549 /* Initialize the tree_contains_struct array. */
550 initialize_tree_contains_struct ();
551 lang_hooks.init_ts ();
555 /* The name of the object as the assembler will see it (but before any
556 translations made by ASM_OUTPUT_LABELREF). Often this is the same
557 as DECL_NAME. It is an IDENTIFIER_NODE. */
558 tree
559 decl_assembler_name (tree decl)
561 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
562 lang_hooks.set_decl_assembler_name (decl);
563 return DECL_WITH_VIS_CHECK (decl)->decl_with_vis.assembler_name;
566 /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */
568 bool
569 decl_assembler_name_equal (tree decl, const_tree asmname)
571 tree decl_asmname = DECL_ASSEMBLER_NAME (decl);
572 const char *decl_str;
573 const char *asmname_str;
574 bool test = false;
576 if (decl_asmname == asmname)
577 return true;
579 decl_str = IDENTIFIER_POINTER (decl_asmname);
580 asmname_str = IDENTIFIER_POINTER (asmname);
583 /* If the target assembler name was set by the user, things are trickier.
584 We have a leading '*' to begin with. After that, it's arguable what
585 is the correct thing to do with -fleading-underscore. Arguably, we've
586 historically been doing the wrong thing in assemble_alias by always
587 printing the leading underscore. Since we're not changing that, make
588 sure user_label_prefix follows the '*' before matching. */
589 if (decl_str[0] == '*')
591 size_t ulp_len = strlen (user_label_prefix);
593 decl_str ++;
595 if (ulp_len == 0)
596 test = true;
597 else if (strncmp (decl_str, user_label_prefix, ulp_len) == 0)
598 decl_str += ulp_len, test=true;
599 else
600 decl_str --;
602 if (asmname_str[0] == '*')
604 size_t ulp_len = strlen (user_label_prefix);
606 asmname_str ++;
608 if (ulp_len == 0)
609 test = true;
610 else if (strncmp (asmname_str, user_label_prefix, ulp_len) == 0)
611 asmname_str += ulp_len, test=true;
612 else
613 asmname_str --;
616 if (!test)
617 return false;
618 return strcmp (decl_str, asmname_str) == 0;
621 /* Hash asmnames ignoring the user specified marks. */
623 hashval_t
624 decl_assembler_name_hash (const_tree asmname)
626 if (IDENTIFIER_POINTER (asmname)[0] == '*')
628 const char *decl_str = IDENTIFIER_POINTER (asmname) + 1;
629 size_t ulp_len = strlen (user_label_prefix);
631 if (ulp_len == 0)
633 else if (strncmp (decl_str, user_label_prefix, ulp_len) == 0)
634 decl_str += ulp_len;
636 return htab_hash_string (decl_str);
639 return htab_hash_string (IDENTIFIER_POINTER (asmname));
642 /* Compute the number of bytes occupied by a tree with code CODE.
643 This function cannot be used for nodes that have variable sizes,
644 including TREE_VEC, STRING_CST, and CALL_EXPR. */
645 size_t
646 tree_code_size (enum tree_code code)
648 switch (TREE_CODE_CLASS (code))
650 case tcc_declaration: /* A decl node */
652 switch (code)
654 case FIELD_DECL:
655 return sizeof (struct tree_field_decl);
656 case PARM_DECL:
657 return sizeof (struct tree_parm_decl);
658 case VAR_DECL:
659 return sizeof (struct tree_var_decl);
660 case LABEL_DECL:
661 return sizeof (struct tree_label_decl);
662 case RESULT_DECL:
663 return sizeof (struct tree_result_decl);
664 case CONST_DECL:
665 return sizeof (struct tree_const_decl);
666 case TYPE_DECL:
667 return sizeof (struct tree_type_decl);
668 case FUNCTION_DECL:
669 return sizeof (struct tree_function_decl);
670 default:
671 return sizeof (struct tree_decl_non_common);
675 case tcc_type: /* a type node */
676 return sizeof (struct tree_type);
678 case tcc_reference: /* a reference */
679 case tcc_expression: /* an expression */
680 case tcc_statement: /* an expression with side effects */
681 case tcc_comparison: /* a comparison expression */
682 case tcc_unary: /* a unary arithmetic expression */
683 case tcc_binary: /* a binary arithmetic expression */
684 return (sizeof (struct tree_exp)
685 + (TREE_CODE_LENGTH (code) - 1) * sizeof (tree));
687 case tcc_constant: /* a constant */
688 switch (code)
690 case INTEGER_CST: return sizeof (struct tree_int_cst);
691 case REAL_CST: return sizeof (struct tree_real_cst);
692 case FIXED_CST: return sizeof (struct tree_fixed_cst);
693 case COMPLEX_CST: return sizeof (struct tree_complex);
694 case VECTOR_CST: return sizeof (struct tree_vector);
695 case STRING_CST: gcc_unreachable ();
696 default:
697 return lang_hooks.tree_size (code);
700 case tcc_exceptional: /* something random, like an identifier. */
701 switch (code)
703 case IDENTIFIER_NODE: return lang_hooks.identifier_size;
704 case TREE_LIST: return sizeof (struct tree_list);
706 case ERROR_MARK:
707 case PLACEHOLDER_EXPR: return sizeof (struct tree_common);
709 case TREE_VEC:
710 case OMP_CLAUSE: gcc_unreachable ();
712 case SSA_NAME: return sizeof (struct tree_ssa_name);
714 case STATEMENT_LIST: return sizeof (struct tree_statement_list);
715 case BLOCK: return sizeof (struct tree_block);
716 case CONSTRUCTOR: return sizeof (struct tree_constructor);
717 case OPTIMIZATION_NODE: return sizeof (struct tree_optimization_option);
718 case TARGET_OPTION_NODE: return sizeof (struct tree_target_option);
720 default:
721 return lang_hooks.tree_size (code);
724 default:
725 gcc_unreachable ();
729 /* Compute the number of bytes occupied by NODE. This routine only
730 looks at TREE_CODE, except for those nodes that have variable sizes. */
731 size_t
732 tree_size (const_tree node)
734 const enum tree_code code = TREE_CODE (node);
735 switch (code)
737 case TREE_BINFO:
738 return (offsetof (struct tree_binfo, base_binfos)
739 + VEC_embedded_size (tree, BINFO_N_BASE_BINFOS (node)));
741 case TREE_VEC:
742 return (sizeof (struct tree_vec)
743 + (TREE_VEC_LENGTH (node) - 1) * sizeof (tree));
745 case STRING_CST:
746 return TREE_STRING_LENGTH (node) + offsetof (struct tree_string, str) + 1;
748 case OMP_CLAUSE:
749 return (sizeof (struct tree_omp_clause)
750 + (omp_clause_num_ops[OMP_CLAUSE_CODE (node)] - 1)
751 * sizeof (tree));
753 default:
754 if (TREE_CODE_CLASS (code) == tcc_vl_exp)
755 return (sizeof (struct tree_exp)
756 + (VL_EXP_OPERAND_LENGTH (node) - 1) * sizeof (tree));
757 else
758 return tree_code_size (code);
762 /* Return a newly allocated node of code CODE. For decl and type
763 nodes, some other fields are initialized. The rest of the node is
764 initialized to zero. This function cannot be used for TREE_VEC or
765 OMP_CLAUSE nodes, which is enforced by asserts in tree_code_size.
767 Achoo! I got a code in the node. */
769 tree
770 make_node_stat (enum tree_code code MEM_STAT_DECL)
772 tree t;
773 enum tree_code_class type = TREE_CODE_CLASS (code);
774 size_t length = tree_code_size (code);
775 #ifdef GATHER_STATISTICS
776 tree_node_kind kind;
778 switch (type)
780 case tcc_declaration: /* A decl node */
781 kind = d_kind;
782 break;
784 case tcc_type: /* a type node */
785 kind = t_kind;
786 break;
788 case tcc_statement: /* an expression with side effects */
789 kind = s_kind;
790 break;
792 case tcc_reference: /* a reference */
793 kind = r_kind;
794 break;
796 case tcc_expression: /* an expression */
797 case tcc_comparison: /* a comparison expression */
798 case tcc_unary: /* a unary arithmetic expression */
799 case tcc_binary: /* a binary arithmetic expression */
800 kind = e_kind;
801 break;
803 case tcc_constant: /* a constant */
804 kind = c_kind;
805 break;
807 case tcc_exceptional: /* something random, like an identifier. */
808 switch (code)
810 case IDENTIFIER_NODE:
811 kind = id_kind;
812 break;
814 case TREE_VEC:
815 kind = vec_kind;
816 break;
818 case TREE_BINFO:
819 kind = binfo_kind;
820 break;
822 case SSA_NAME:
823 kind = ssa_name_kind;
824 break;
826 case BLOCK:
827 kind = b_kind;
828 break;
830 case CONSTRUCTOR:
831 kind = constr_kind;
832 break;
834 default:
835 kind = x_kind;
836 break;
838 break;
840 default:
841 gcc_unreachable ();
844 tree_node_counts[(int) kind]++;
845 tree_node_sizes[(int) kind] += length;
846 #endif
848 if (code == IDENTIFIER_NODE)
849 t = (tree) ggc_alloc_zone_pass_stat (length, &tree_id_zone);
850 else
851 t = (tree) ggc_alloc_zone_pass_stat (length, &tree_zone);
853 memset (t, 0, length);
855 TREE_SET_CODE (t, code);
857 switch (type)
859 case tcc_statement:
860 TREE_SIDE_EFFECTS (t) = 1;
861 break;
863 case tcc_declaration:
864 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
866 if (code == FUNCTION_DECL)
868 DECL_ALIGN (t) = FUNCTION_BOUNDARY;
869 DECL_MODE (t) = FUNCTION_MODE;
871 else
872 DECL_ALIGN (t) = 1;
874 DECL_SOURCE_LOCATION (t) = input_location;
875 DECL_UID (t) = next_decl_uid++;
876 if (TREE_CODE (t) == LABEL_DECL)
877 LABEL_DECL_UID (t) = -1;
879 break;
881 case tcc_type:
882 TYPE_UID (t) = next_type_uid++;
883 TYPE_ALIGN (t) = BITS_PER_UNIT;
884 TYPE_USER_ALIGN (t) = 0;
885 TYPE_MAIN_VARIANT (t) = t;
886 TYPE_CANONICAL (t) = t;
888 /* Default to no attributes for type, but let target change that. */
889 TYPE_ATTRIBUTES (t) = NULL_TREE;
890 targetm.set_default_type_attributes (t);
892 /* We have not yet computed the alias set for this type. */
893 TYPE_ALIAS_SET (t) = -1;
894 break;
896 case tcc_constant:
897 TREE_CONSTANT (t) = 1;
898 break;
900 case tcc_expression:
901 switch (code)
903 case INIT_EXPR:
904 case MODIFY_EXPR:
905 case VA_ARG_EXPR:
906 case PREDECREMENT_EXPR:
907 case PREINCREMENT_EXPR:
908 case POSTDECREMENT_EXPR:
909 case POSTINCREMENT_EXPR:
910 /* All of these have side-effects, no matter what their
911 operands are. */
912 TREE_SIDE_EFFECTS (t) = 1;
913 break;
915 default:
916 break;
918 break;
920 default:
921 /* Other classes need no special treatment. */
922 break;
925 return t;
928 /* Return a new node with the same contents as NODE except that its
929 TREE_CHAIN is zero and it has a fresh uid. */
931 tree
932 copy_node_stat (tree node MEM_STAT_DECL)
934 tree t;
935 enum tree_code code = TREE_CODE (node);
936 size_t length;
938 gcc_assert (code != STATEMENT_LIST);
940 length = tree_size (node);
941 t = (tree) ggc_alloc_zone_pass_stat (length, &tree_zone);
942 memcpy (t, node, length);
944 TREE_CHAIN (t) = 0;
945 TREE_ASM_WRITTEN (t) = 0;
946 TREE_VISITED (t) = 0;
947 t->base.ann = 0;
949 if (TREE_CODE_CLASS (code) == tcc_declaration)
951 DECL_UID (t) = next_decl_uid++;
952 if ((TREE_CODE (node) == PARM_DECL || TREE_CODE (node) == VAR_DECL)
953 && DECL_HAS_VALUE_EXPR_P (node))
955 SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (node));
956 DECL_HAS_VALUE_EXPR_P (t) = 1;
958 if (TREE_CODE (node) == VAR_DECL && DECL_HAS_INIT_PRIORITY_P (node))
960 SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
961 DECL_HAS_INIT_PRIORITY_P (t) = 1;
964 else if (TREE_CODE_CLASS (code) == tcc_type)
966 TYPE_UID (t) = next_type_uid++;
967 /* The following is so that the debug code for
968 the copy is different from the original type.
969 The two statements usually duplicate each other
970 (because they clear fields of the same union),
971 but the optimizer should catch that. */
972 TYPE_SYMTAB_POINTER (t) = 0;
973 TYPE_SYMTAB_ADDRESS (t) = 0;
975 /* Do not copy the values cache. */
976 if (TYPE_CACHED_VALUES_P(t))
978 TYPE_CACHED_VALUES_P (t) = 0;
979 TYPE_CACHED_VALUES (t) = NULL_TREE;
983 return t;
986 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
987 For example, this can copy a list made of TREE_LIST nodes. */
989 tree
990 copy_list (tree list)
992 tree head;
993 tree prev, next;
995 if (list == 0)
996 return 0;
998 head = prev = copy_node (list);
999 next = TREE_CHAIN (list);
1000 while (next)
1002 TREE_CHAIN (prev) = copy_node (next);
1003 prev = TREE_CHAIN (prev);
1004 next = TREE_CHAIN (next);
1006 return head;
1010 /* Create an INT_CST node with a LOW value sign extended. */
1012 tree
1013 build_int_cst (tree type, HOST_WIDE_INT low)
1015 /* Support legacy code. */
1016 if (!type)
1017 type = integer_type_node;
1019 return build_int_cst_wide (type, low, low < 0 ? -1 : 0);
1022 /* Create an INT_CST node with a LOW value zero extended. */
1024 tree
1025 build_int_cstu (tree type, unsigned HOST_WIDE_INT low)
1027 return build_int_cst_wide (type, low, 0);
1030 /* Create an INT_CST node with a LOW value in TYPE. The value is sign extended
1031 if it is negative. This function is similar to build_int_cst, but
1032 the extra bits outside of the type precision are cleared. Constants
1033 with these extra bits may confuse the fold so that it detects overflows
1034 even in cases when they do not occur, and in general should be avoided.
1035 We cannot however make this a default behavior of build_int_cst without
1036 more intrusive changes, since there are parts of gcc that rely on the extra
1037 precision of the integer constants. */
1039 tree
1040 build_int_cst_type (tree type, HOST_WIDE_INT low)
1042 unsigned HOST_WIDE_INT low1;
1043 HOST_WIDE_INT hi;
1045 gcc_assert (type);
1047 fit_double_type (low, low < 0 ? -1 : 0, &low1, &hi, type);
1049 return build_int_cst_wide (type, low1, hi);
1052 /* Create an INT_CST node of TYPE and value HI:LOW. The value is truncated
1053 and sign extended according to the value range of TYPE. */
1055 tree
1056 build_int_cst_wide_type (tree type,
1057 unsigned HOST_WIDE_INT low, HOST_WIDE_INT high)
1059 fit_double_type (low, high, &low, &high, type);
1060 return build_int_cst_wide (type, low, high);
1063 /* These are the hash table functions for the hash table of INTEGER_CST
1064 nodes of a sizetype. */
1066 /* Return the hash code code X, an INTEGER_CST. */
1068 static hashval_t
1069 int_cst_hash_hash (const void *x)
1071 const_tree const t = (const_tree) x;
1073 return (TREE_INT_CST_HIGH (t) ^ TREE_INT_CST_LOW (t)
1074 ^ htab_hash_pointer (TREE_TYPE (t)));
1077 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1078 is the same as that given by *Y, which is the same. */
1080 static int
1081 int_cst_hash_eq (const void *x, const void *y)
1083 const_tree const xt = (const_tree) x;
1084 const_tree const yt = (const_tree) y;
1086 return (TREE_TYPE (xt) == TREE_TYPE (yt)
1087 && TREE_INT_CST_HIGH (xt) == TREE_INT_CST_HIGH (yt)
1088 && TREE_INT_CST_LOW (xt) == TREE_INT_CST_LOW (yt));
1091 /* Create an INT_CST node of TYPE and value HI:LOW.
1092 The returned node is always shared. For small integers we use a
1093 per-type vector cache, for larger ones we use a single hash table. */
1095 tree
1096 build_int_cst_wide (tree type, unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi)
1098 tree t;
1099 int ix = -1;
1100 int limit = 0;
1102 gcc_assert (type);
1104 switch (TREE_CODE (type))
1106 case POINTER_TYPE:
1107 case REFERENCE_TYPE:
1108 /* Cache NULL pointer. */
1109 if (!hi && !low)
1111 limit = 1;
1112 ix = 0;
1114 break;
1116 case BOOLEAN_TYPE:
1117 /* Cache false or true. */
1118 limit = 2;
1119 if (!hi && low < 2)
1120 ix = low;
1121 break;
1123 case INTEGER_TYPE:
1124 case OFFSET_TYPE:
1125 if (TYPE_UNSIGNED (type))
1127 /* Cache 0..N */
1128 limit = INTEGER_SHARE_LIMIT;
1129 if (!hi && low < (unsigned HOST_WIDE_INT)INTEGER_SHARE_LIMIT)
1130 ix = low;
1132 else
1134 /* Cache -1..N */
1135 limit = INTEGER_SHARE_LIMIT + 1;
1136 if (!hi && low < (unsigned HOST_WIDE_INT)INTEGER_SHARE_LIMIT)
1137 ix = low + 1;
1138 else if (hi == -1 && low == -(unsigned HOST_WIDE_INT)1)
1139 ix = 0;
1141 break;
1143 case ENUMERAL_TYPE:
1144 break;
1146 default:
1147 gcc_unreachable ();
1150 if (ix >= 0)
1152 /* Look for it in the type's vector of small shared ints. */
1153 if (!TYPE_CACHED_VALUES_P (type))
1155 TYPE_CACHED_VALUES_P (type) = 1;
1156 TYPE_CACHED_VALUES (type) = make_tree_vec (limit);
1159 t = TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix);
1160 if (t)
1162 /* Make sure no one is clobbering the shared constant. */
1163 gcc_assert (TREE_TYPE (t) == type);
1164 gcc_assert (TREE_INT_CST_LOW (t) == low);
1165 gcc_assert (TREE_INT_CST_HIGH (t) == hi);
1167 else
1169 /* Create a new shared int. */
1170 t = make_node (INTEGER_CST);
1172 TREE_INT_CST_LOW (t) = low;
1173 TREE_INT_CST_HIGH (t) = hi;
1174 TREE_TYPE (t) = type;
1176 TREE_VEC_ELT (TYPE_CACHED_VALUES (type), ix) = t;
1179 else
1181 /* Use the cache of larger shared ints. */
1182 void **slot;
1184 TREE_INT_CST_LOW (int_cst_node) = low;
1185 TREE_INT_CST_HIGH (int_cst_node) = hi;
1186 TREE_TYPE (int_cst_node) = type;
1188 slot = htab_find_slot (int_cst_hash_table, int_cst_node, INSERT);
1189 t = (tree) *slot;
1190 if (!t)
1192 /* Insert this one into the hash table. */
1193 t = int_cst_node;
1194 *slot = t;
1195 /* Make a new node for next time round. */
1196 int_cst_node = make_node (INTEGER_CST);
1200 return t;
1203 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1204 and the rest are zeros. */
1206 tree
1207 build_low_bits_mask (tree type, unsigned bits)
1209 unsigned HOST_WIDE_INT low;
1210 HOST_WIDE_INT high;
1211 unsigned HOST_WIDE_INT all_ones = ~(unsigned HOST_WIDE_INT) 0;
1213 gcc_assert (bits <= TYPE_PRECISION (type));
1215 if (bits == TYPE_PRECISION (type)
1216 && !TYPE_UNSIGNED (type))
1218 /* Sign extended all-ones mask. */
1219 low = all_ones;
1220 high = -1;
1222 else if (bits <= HOST_BITS_PER_WIDE_INT)
1224 low = all_ones >> (HOST_BITS_PER_WIDE_INT - bits);
1225 high = 0;
1227 else
1229 bits -= HOST_BITS_PER_WIDE_INT;
1230 low = all_ones;
1231 high = all_ones >> (HOST_BITS_PER_WIDE_INT - bits);
1234 return build_int_cst_wide (type, low, high);
1237 /* Checks that X is integer constant that can be expressed in (unsigned)
1238 HOST_WIDE_INT without loss of precision. */
1240 bool
1241 cst_and_fits_in_hwi (const_tree x)
1243 if (TREE_CODE (x) != INTEGER_CST)
1244 return false;
1246 if (TYPE_PRECISION (TREE_TYPE (x)) > HOST_BITS_PER_WIDE_INT)
1247 return false;
1249 return (TREE_INT_CST_HIGH (x) == 0
1250 || TREE_INT_CST_HIGH (x) == -1);
1253 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1254 are in a list pointed to by VALS. */
1256 tree
1257 build_vector (tree type, tree vals)
1259 tree v = make_node (VECTOR_CST);
1260 int over = 0;
1261 tree link;
1263 TREE_VECTOR_CST_ELTS (v) = vals;
1264 TREE_TYPE (v) = type;
1266 /* Iterate through elements and check for overflow. */
1267 for (link = vals; link; link = TREE_CHAIN (link))
1269 tree value = TREE_VALUE (link);
1271 /* Don't crash if we get an address constant. */
1272 if (!CONSTANT_CLASS_P (value))
1273 continue;
1275 over |= TREE_OVERFLOW (value);
1278 TREE_OVERFLOW (v) = over;
1279 return v;
1282 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1283 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1285 tree
1286 build_vector_from_ctor (tree type, VEC(constructor_elt,gc) *v)
1288 tree list = NULL_TREE;
1289 unsigned HOST_WIDE_INT idx;
1290 tree value;
1292 FOR_EACH_CONSTRUCTOR_VALUE (v, idx, value)
1293 list = tree_cons (NULL_TREE, value, list);
1294 return build_vector (type, nreverse (list));
1297 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1298 are in the VEC pointed to by VALS. */
1299 tree
1300 build_constructor (tree type, VEC(constructor_elt,gc) *vals)
1302 tree c = make_node (CONSTRUCTOR);
1303 TREE_TYPE (c) = type;
1304 CONSTRUCTOR_ELTS (c) = vals;
1305 return c;
1308 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1309 INDEX and VALUE. */
1310 tree
1311 build_constructor_single (tree type, tree index, tree value)
1313 VEC(constructor_elt,gc) *v;
1314 constructor_elt *elt;
1315 tree t;
1317 v = VEC_alloc (constructor_elt, gc, 1);
1318 elt = VEC_quick_push (constructor_elt, v, NULL);
1319 elt->index = index;
1320 elt->value = value;
1322 t = build_constructor (type, v);
1323 TREE_CONSTANT (t) = TREE_CONSTANT (value);
1324 return t;
1328 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1329 are in a list pointed to by VALS. */
1330 tree
1331 build_constructor_from_list (tree type, tree vals)
1333 tree t, val;
1334 VEC(constructor_elt,gc) *v = NULL;
1335 bool constant_p = true;
1337 if (vals)
1339 v = VEC_alloc (constructor_elt, gc, list_length (vals));
1340 for (t = vals; t; t = TREE_CHAIN (t))
1342 constructor_elt *elt = VEC_quick_push (constructor_elt, v, NULL);
1343 val = TREE_VALUE (t);
1344 elt->index = TREE_PURPOSE (t);
1345 elt->value = val;
1346 if (!TREE_CONSTANT (val))
1347 constant_p = false;
1351 t = build_constructor (type, v);
1352 TREE_CONSTANT (t) = constant_p;
1353 return t;
1356 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1358 tree
1359 build_fixed (tree type, FIXED_VALUE_TYPE f)
1361 tree v;
1362 FIXED_VALUE_TYPE *fp;
1364 v = make_node (FIXED_CST);
1365 fp = GGC_NEW (FIXED_VALUE_TYPE);
1366 memcpy (fp, &f, sizeof (FIXED_VALUE_TYPE));
1368 TREE_TYPE (v) = type;
1369 TREE_FIXED_CST_PTR (v) = fp;
1370 return v;
1373 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1375 tree
1376 build_real (tree type, REAL_VALUE_TYPE d)
1378 tree v;
1379 REAL_VALUE_TYPE *dp;
1380 int overflow = 0;
1382 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1383 Consider doing it via real_convert now. */
1385 v = make_node (REAL_CST);
1386 dp = GGC_NEW (REAL_VALUE_TYPE);
1387 memcpy (dp, &d, sizeof (REAL_VALUE_TYPE));
1389 TREE_TYPE (v) = type;
1390 TREE_REAL_CST_PTR (v) = dp;
1391 TREE_OVERFLOW (v) = overflow;
1392 return v;
1395 /* Return a new REAL_CST node whose type is TYPE
1396 and whose value is the integer value of the INTEGER_CST node I. */
1398 REAL_VALUE_TYPE
1399 real_value_from_int_cst (const_tree type, const_tree i)
1401 REAL_VALUE_TYPE d;
1403 /* Clear all bits of the real value type so that we can later do
1404 bitwise comparisons to see if two values are the same. */
1405 memset (&d, 0, sizeof d);
1407 real_from_integer (&d, type ? TYPE_MODE (type) : VOIDmode,
1408 TREE_INT_CST_LOW (i), TREE_INT_CST_HIGH (i),
1409 TYPE_UNSIGNED (TREE_TYPE (i)));
1410 return d;
1413 /* Given a tree representing an integer constant I, return a tree
1414 representing the same value as a floating-point constant of type TYPE. */
1416 tree
1417 build_real_from_int_cst (tree type, const_tree i)
1419 tree v;
1420 int overflow = TREE_OVERFLOW (i);
1422 v = build_real (type, real_value_from_int_cst (type, i));
1424 TREE_OVERFLOW (v) |= overflow;
1425 return v;
1428 /* Return a newly constructed STRING_CST node whose value is
1429 the LEN characters at STR.
1430 The TREE_TYPE is not initialized. */
1432 tree
1433 build_string (int len, const char *str)
1435 tree s;
1436 size_t length;
1438 /* Do not waste bytes provided by padding of struct tree_string. */
1439 length = len + offsetof (struct tree_string, str) + 1;
1441 #ifdef GATHER_STATISTICS
1442 tree_node_counts[(int) c_kind]++;
1443 tree_node_sizes[(int) c_kind] += length;
1444 #endif
1446 s = ggc_alloc_tree (length);
1448 memset (s, 0, sizeof (struct tree_common));
1449 TREE_SET_CODE (s, STRING_CST);
1450 TREE_CONSTANT (s) = 1;
1451 TREE_STRING_LENGTH (s) = len;
1452 memcpy (s->string.str, str, len);
1453 s->string.str[len] = '\0';
1455 return s;
1458 /* Return a newly constructed COMPLEX_CST node whose value is
1459 specified by the real and imaginary parts REAL and IMAG.
1460 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1461 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
1463 tree
1464 build_complex (tree type, tree real, tree imag)
1466 tree t = make_node (COMPLEX_CST);
1468 TREE_REALPART (t) = real;
1469 TREE_IMAGPART (t) = imag;
1470 TREE_TYPE (t) = type ? type : build_complex_type (TREE_TYPE (real));
1471 TREE_OVERFLOW (t) = TREE_OVERFLOW (real) | TREE_OVERFLOW (imag);
1472 return t;
1475 /* Return a constant of arithmetic type TYPE which is the
1476 multiplicative identity of the set TYPE. */
1478 tree
1479 build_one_cst (tree type)
1481 switch (TREE_CODE (type))
1483 case INTEGER_TYPE: case ENUMERAL_TYPE: case BOOLEAN_TYPE:
1484 case POINTER_TYPE: case REFERENCE_TYPE:
1485 case OFFSET_TYPE:
1486 return build_int_cst (type, 1);
1488 case REAL_TYPE:
1489 return build_real (type, dconst1);
1491 case FIXED_POINT_TYPE:
1492 /* We can only generate 1 for accum types. */
1493 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type)));
1494 return build_fixed (type, FCONST1(TYPE_MODE (type)));
1496 case VECTOR_TYPE:
1498 tree scalar, cst;
1499 int i;
1501 scalar = build_one_cst (TREE_TYPE (type));
1503 /* Create 'vect_cst_ = {cst,cst,...,cst}' */
1504 cst = NULL_TREE;
1505 for (i = TYPE_VECTOR_SUBPARTS (type); --i >= 0; )
1506 cst = tree_cons (NULL_TREE, scalar, cst);
1508 return build_vector (type, cst);
1511 case COMPLEX_TYPE:
1512 return build_complex (type,
1513 build_one_cst (TREE_TYPE (type)),
1514 fold_convert (TREE_TYPE (type), integer_zero_node));
1516 default:
1517 gcc_unreachable ();
1521 /* Build a BINFO with LEN language slots. */
1523 tree
1524 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL)
1526 tree t;
1527 size_t length = (offsetof (struct tree_binfo, base_binfos)
1528 + VEC_embedded_size (tree, base_binfos));
1530 #ifdef GATHER_STATISTICS
1531 tree_node_counts[(int) binfo_kind]++;
1532 tree_node_sizes[(int) binfo_kind] += length;
1533 #endif
1535 t = (tree) ggc_alloc_zone_pass_stat (length, &tree_zone);
1537 memset (t, 0, offsetof (struct tree_binfo, base_binfos));
1539 TREE_SET_CODE (t, TREE_BINFO);
1541 VEC_embedded_init (tree, BINFO_BASE_BINFOS (t), base_binfos);
1543 return t;
1547 /* Build a newly constructed TREE_VEC node of length LEN. */
1549 tree
1550 make_tree_vec_stat (int len MEM_STAT_DECL)
1552 tree t;
1553 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_vec);
1555 #ifdef GATHER_STATISTICS
1556 tree_node_counts[(int) vec_kind]++;
1557 tree_node_sizes[(int) vec_kind] += length;
1558 #endif
1560 t = (tree) ggc_alloc_zone_pass_stat (length, &tree_zone);
1562 memset (t, 0, length);
1564 TREE_SET_CODE (t, TREE_VEC);
1565 TREE_VEC_LENGTH (t) = len;
1567 return t;
1570 /* Return 1 if EXPR is the integer constant zero or a complex constant
1571 of zero. */
1574 integer_zerop (const_tree expr)
1576 STRIP_NOPS (expr);
1578 return ((TREE_CODE (expr) == INTEGER_CST
1579 && TREE_INT_CST_LOW (expr) == 0
1580 && TREE_INT_CST_HIGH (expr) == 0)
1581 || (TREE_CODE (expr) == COMPLEX_CST
1582 && integer_zerop (TREE_REALPART (expr))
1583 && integer_zerop (TREE_IMAGPART (expr))));
1586 /* Return 1 if EXPR is the integer constant one or the corresponding
1587 complex constant. */
1590 integer_onep (const_tree expr)
1592 STRIP_NOPS (expr);
1594 return ((TREE_CODE (expr) == INTEGER_CST
1595 && TREE_INT_CST_LOW (expr) == 1
1596 && TREE_INT_CST_HIGH (expr) == 0)
1597 || (TREE_CODE (expr) == COMPLEX_CST
1598 && integer_onep (TREE_REALPART (expr))
1599 && integer_zerop (TREE_IMAGPART (expr))));
1602 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
1603 it contains. Likewise for the corresponding complex constant. */
1606 integer_all_onesp (const_tree expr)
1608 int prec;
1609 int uns;
1611 STRIP_NOPS (expr);
1613 if (TREE_CODE (expr) == COMPLEX_CST
1614 && integer_all_onesp (TREE_REALPART (expr))
1615 && integer_zerop (TREE_IMAGPART (expr)))
1616 return 1;
1618 else if (TREE_CODE (expr) != INTEGER_CST)
1619 return 0;
1621 uns = TYPE_UNSIGNED (TREE_TYPE (expr));
1622 if (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
1623 && TREE_INT_CST_HIGH (expr) == -1)
1624 return 1;
1625 if (!uns)
1626 return 0;
1628 /* Note that using TYPE_PRECISION here is wrong. We care about the
1629 actual bits, not the (arbitrary) range of the type. */
1630 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr)));
1631 if (prec >= HOST_BITS_PER_WIDE_INT)
1633 HOST_WIDE_INT high_value;
1634 int shift_amount;
1636 shift_amount = prec - HOST_BITS_PER_WIDE_INT;
1638 /* Can not handle precisions greater than twice the host int size. */
1639 gcc_assert (shift_amount <= HOST_BITS_PER_WIDE_INT);
1640 if (shift_amount == HOST_BITS_PER_WIDE_INT)
1641 /* Shifting by the host word size is undefined according to the ANSI
1642 standard, so we must handle this as a special case. */
1643 high_value = -1;
1644 else
1645 high_value = ((HOST_WIDE_INT) 1 << shift_amount) - 1;
1647 return (TREE_INT_CST_LOW (expr) == ~(unsigned HOST_WIDE_INT) 0
1648 && TREE_INT_CST_HIGH (expr) == high_value);
1650 else
1651 return TREE_INT_CST_LOW (expr) == ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
1654 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
1655 one bit on). */
1658 integer_pow2p (const_tree expr)
1660 int prec;
1661 HOST_WIDE_INT high, low;
1663 STRIP_NOPS (expr);
1665 if (TREE_CODE (expr) == COMPLEX_CST
1666 && integer_pow2p (TREE_REALPART (expr))
1667 && integer_zerop (TREE_IMAGPART (expr)))
1668 return 1;
1670 if (TREE_CODE (expr) != INTEGER_CST)
1671 return 0;
1673 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1674 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1675 high = TREE_INT_CST_HIGH (expr);
1676 low = TREE_INT_CST_LOW (expr);
1678 /* First clear all bits that are beyond the type's precision in case
1679 we've been sign extended. */
1681 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1683 else if (prec > HOST_BITS_PER_WIDE_INT)
1684 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1685 else
1687 high = 0;
1688 if (prec < HOST_BITS_PER_WIDE_INT)
1689 low &= ~((HOST_WIDE_INT) (-1) << prec);
1692 if (high == 0 && low == 0)
1693 return 0;
1695 return ((high == 0 && (low & (low - 1)) == 0)
1696 || (low == 0 && (high & (high - 1)) == 0));
1699 /* Return 1 if EXPR is an integer constant other than zero or a
1700 complex constant other than zero. */
1703 integer_nonzerop (const_tree expr)
1705 STRIP_NOPS (expr);
1707 return ((TREE_CODE (expr) == INTEGER_CST
1708 && (TREE_INT_CST_LOW (expr) != 0
1709 || TREE_INT_CST_HIGH (expr) != 0))
1710 || (TREE_CODE (expr) == COMPLEX_CST
1711 && (integer_nonzerop (TREE_REALPART (expr))
1712 || integer_nonzerop (TREE_IMAGPART (expr)))));
1715 /* Return 1 if EXPR is the fixed-point constant zero. */
1718 fixed_zerop (const_tree expr)
1720 return (TREE_CODE (expr) == FIXED_CST
1721 && double_int_zero_p (TREE_FIXED_CST (expr).data));
1724 /* Return the power of two represented by a tree node known to be a
1725 power of two. */
1728 tree_log2 (const_tree expr)
1730 int prec;
1731 HOST_WIDE_INT high, low;
1733 STRIP_NOPS (expr);
1735 if (TREE_CODE (expr) == COMPLEX_CST)
1736 return tree_log2 (TREE_REALPART (expr));
1738 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1739 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1741 high = TREE_INT_CST_HIGH (expr);
1742 low = TREE_INT_CST_LOW (expr);
1744 /* First clear all bits that are beyond the type's precision in case
1745 we've been sign extended. */
1747 if (prec == 2 * HOST_BITS_PER_WIDE_INT)
1749 else if (prec > HOST_BITS_PER_WIDE_INT)
1750 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1751 else
1753 high = 0;
1754 if (prec < HOST_BITS_PER_WIDE_INT)
1755 low &= ~((HOST_WIDE_INT) (-1) << prec);
1758 return (high != 0 ? HOST_BITS_PER_WIDE_INT + exact_log2 (high)
1759 : exact_log2 (low));
1762 /* Similar, but return the largest integer Y such that 2 ** Y is less
1763 than or equal to EXPR. */
1766 tree_floor_log2 (const_tree expr)
1768 int prec;
1769 HOST_WIDE_INT high, low;
1771 STRIP_NOPS (expr);
1773 if (TREE_CODE (expr) == COMPLEX_CST)
1774 return tree_log2 (TREE_REALPART (expr));
1776 prec = (POINTER_TYPE_P (TREE_TYPE (expr))
1777 ? POINTER_SIZE : TYPE_PRECISION (TREE_TYPE (expr)));
1779 high = TREE_INT_CST_HIGH (expr);
1780 low = TREE_INT_CST_LOW (expr);
1782 /* First clear all bits that are beyond the type's precision in case
1783 we've been sign extended. Ignore if type's precision hasn't been set
1784 since what we are doing is setting it. */
1786 if (prec == 2 * HOST_BITS_PER_WIDE_INT || prec == 0)
1788 else if (prec > HOST_BITS_PER_WIDE_INT)
1789 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
1790 else
1792 high = 0;
1793 if (prec < HOST_BITS_PER_WIDE_INT)
1794 low &= ~((HOST_WIDE_INT) (-1) << prec);
1797 return (high != 0 ? HOST_BITS_PER_WIDE_INT + floor_log2 (high)
1798 : floor_log2 (low));
1801 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
1802 decimal float constants, so don't return 1 for them. */
1805 real_zerop (const_tree expr)
1807 STRIP_NOPS (expr);
1809 return ((TREE_CODE (expr) == REAL_CST
1810 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst0)
1811 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr)))))
1812 || (TREE_CODE (expr) == COMPLEX_CST
1813 && real_zerop (TREE_REALPART (expr))
1814 && real_zerop (TREE_IMAGPART (expr))));
1817 /* Return 1 if EXPR is the real constant one in real or complex form.
1818 Trailing zeroes matter for decimal float constants, so don't return
1819 1 for them. */
1822 real_onep (const_tree expr)
1824 STRIP_NOPS (expr);
1826 return ((TREE_CODE (expr) == REAL_CST
1827 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst1)
1828 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr)))))
1829 || (TREE_CODE (expr) == COMPLEX_CST
1830 && real_onep (TREE_REALPART (expr))
1831 && real_zerop (TREE_IMAGPART (expr))));
1834 /* Return 1 if EXPR is the real constant two. Trailing zeroes matter
1835 for decimal float constants, so don't return 1 for them. */
1838 real_twop (const_tree expr)
1840 STRIP_NOPS (expr);
1842 return ((TREE_CODE (expr) == REAL_CST
1843 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconst2)
1844 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr)))))
1845 || (TREE_CODE (expr) == COMPLEX_CST
1846 && real_twop (TREE_REALPART (expr))
1847 && real_zerop (TREE_IMAGPART (expr))));
1850 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
1851 matter for decimal float constants, so don't return 1 for them. */
1854 real_minus_onep (const_tree expr)
1856 STRIP_NOPS (expr);
1858 return ((TREE_CODE (expr) == REAL_CST
1859 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr), dconstm1)
1860 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr)))))
1861 || (TREE_CODE (expr) == COMPLEX_CST
1862 && real_minus_onep (TREE_REALPART (expr))
1863 && real_zerop (TREE_IMAGPART (expr))));
1866 /* Nonzero if EXP is a constant or a cast of a constant. */
1869 really_constant_p (const_tree exp)
1871 /* This is not quite the same as STRIP_NOPS. It does more. */
1872 while (CONVERT_EXPR_P (exp)
1873 || TREE_CODE (exp) == NON_LVALUE_EXPR)
1874 exp = TREE_OPERAND (exp, 0);
1875 return TREE_CONSTANT (exp);
1878 /* Return first list element whose TREE_VALUE is ELEM.
1879 Return 0 if ELEM is not in LIST. */
1881 tree
1882 value_member (tree elem, tree list)
1884 while (list)
1886 if (elem == TREE_VALUE (list))
1887 return list;
1888 list = TREE_CHAIN (list);
1890 return NULL_TREE;
1893 /* Return first list element whose TREE_PURPOSE is ELEM.
1894 Return 0 if ELEM is not in LIST. */
1896 tree
1897 purpose_member (const_tree elem, tree list)
1899 while (list)
1901 if (elem == TREE_PURPOSE (list))
1902 return list;
1903 list = TREE_CHAIN (list);
1905 return NULL_TREE;
1908 /* Returns element number IDX (zero-origin) of chain CHAIN, or
1909 NULL_TREE. */
1911 tree
1912 chain_index (int idx, tree chain)
1914 for (; chain && idx > 0; --idx)
1915 chain = TREE_CHAIN (chain);
1916 return chain;
1919 /* Return nonzero if ELEM is part of the chain CHAIN. */
1922 chain_member (const_tree elem, const_tree chain)
1924 while (chain)
1926 if (elem == chain)
1927 return 1;
1928 chain = TREE_CHAIN (chain);
1931 return 0;
1934 /* Return the length of a chain of nodes chained through TREE_CHAIN.
1935 We expect a null pointer to mark the end of the chain.
1936 This is the Lisp primitive `length'. */
1939 list_length (const_tree t)
1941 const_tree p = t;
1942 #ifdef ENABLE_TREE_CHECKING
1943 const_tree q = t;
1944 #endif
1945 int len = 0;
1947 while (p)
1949 p = TREE_CHAIN (p);
1950 #ifdef ENABLE_TREE_CHECKING
1951 if (len % 2)
1952 q = TREE_CHAIN (q);
1953 gcc_assert (p != q);
1954 #endif
1955 len++;
1958 return len;
1961 /* Returns the number of FIELD_DECLs in TYPE. */
1964 fields_length (const_tree type)
1966 tree t = TYPE_FIELDS (type);
1967 int count = 0;
1969 for (; t; t = TREE_CHAIN (t))
1970 if (TREE_CODE (t) == FIELD_DECL)
1971 ++count;
1973 return count;
1976 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
1977 by modifying the last node in chain 1 to point to chain 2.
1978 This is the Lisp primitive `nconc'. */
1980 tree
1981 chainon (tree op1, tree op2)
1983 tree t1;
1985 if (!op1)
1986 return op2;
1987 if (!op2)
1988 return op1;
1990 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
1991 continue;
1992 TREE_CHAIN (t1) = op2;
1994 #ifdef ENABLE_TREE_CHECKING
1996 tree t2;
1997 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
1998 gcc_assert (t2 != t1);
2000 #endif
2002 return op1;
2005 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2007 tree
2008 tree_last (tree chain)
2010 tree next;
2011 if (chain)
2012 while ((next = TREE_CHAIN (chain)))
2013 chain = next;
2014 return chain;
2017 /* Reverse the order of elements in the chain T,
2018 and return the new head of the chain (old last element). */
2020 tree
2021 nreverse (tree t)
2023 tree prev = 0, decl, next;
2024 for (decl = t; decl; decl = next)
2026 next = TREE_CHAIN (decl);
2027 TREE_CHAIN (decl) = prev;
2028 prev = decl;
2030 return prev;
2033 /* Return a newly created TREE_LIST node whose
2034 purpose and value fields are PARM and VALUE. */
2036 tree
2037 build_tree_list_stat (tree parm, tree value MEM_STAT_DECL)
2039 tree t = make_node_stat (TREE_LIST PASS_MEM_STAT);
2040 TREE_PURPOSE (t) = parm;
2041 TREE_VALUE (t) = value;
2042 return t;
2045 /* Build a chain of TREE_LIST nodes from a vector. */
2047 tree
2048 build_tree_list_vec_stat (const VEC(tree,gc) *vec MEM_STAT_DECL)
2050 tree ret = NULL_TREE;
2051 tree *pp = &ret;
2052 unsigned int i;
2053 tree t;
2054 for (i = 0; VEC_iterate (tree, vec, i, t); ++i)
2056 *pp = build_tree_list_stat (NULL, t PASS_MEM_STAT);
2057 pp = &TREE_CHAIN (*pp);
2059 return ret;
2062 /* Return a newly created TREE_LIST node whose
2063 purpose and value fields are PURPOSE and VALUE
2064 and whose TREE_CHAIN is CHAIN. */
2066 tree
2067 tree_cons_stat (tree purpose, tree value, tree chain MEM_STAT_DECL)
2069 tree node;
2071 node = (tree) ggc_alloc_zone_pass_stat (sizeof (struct tree_list), &tree_zone);
2073 memset (node, 0, sizeof (struct tree_common));
2075 #ifdef GATHER_STATISTICS
2076 tree_node_counts[(int) x_kind]++;
2077 tree_node_sizes[(int) x_kind] += sizeof (struct tree_list);
2078 #endif
2080 TREE_SET_CODE (node, TREE_LIST);
2081 TREE_CHAIN (node) = chain;
2082 TREE_PURPOSE (node) = purpose;
2083 TREE_VALUE (node) = value;
2084 return node;
2087 /* Return the elements of a CONSTRUCTOR as a TREE_LIST. */
2089 tree
2090 ctor_to_list (tree ctor)
2092 tree list = NULL_TREE;
2093 tree *p = &list;
2094 unsigned ix;
2095 tree purpose, val;
2097 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), ix, purpose, val)
2099 *p = build_tree_list (purpose, val);
2100 p = &TREE_CHAIN (*p);
2103 return list;
2106 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2107 trees. */
2109 VEC(tree,gc) *
2110 ctor_to_vec (tree ctor)
2112 VEC(tree, gc) *vec = VEC_alloc (tree, gc, CONSTRUCTOR_NELTS (ctor));
2113 unsigned int ix;
2114 tree val;
2116 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
2117 VEC_quick_push (tree, vec, val);
2119 return vec;
2122 /* Return the size nominally occupied by an object of type TYPE
2123 when it resides in memory. The value is measured in units of bytes,
2124 and its data type is that normally used for type sizes
2125 (which is the first type created by make_signed_type or
2126 make_unsigned_type). */
2128 tree
2129 size_in_bytes (const_tree type)
2131 tree t;
2133 if (type == error_mark_node)
2134 return integer_zero_node;
2136 type = TYPE_MAIN_VARIANT (type);
2137 t = TYPE_SIZE_UNIT (type);
2139 if (t == 0)
2141 lang_hooks.types.incomplete_type_error (NULL_TREE, type);
2142 return size_zero_node;
2145 return t;
2148 /* Return the size of TYPE (in bytes) as a wide integer
2149 or return -1 if the size can vary or is larger than an integer. */
2151 HOST_WIDE_INT
2152 int_size_in_bytes (const_tree type)
2154 tree t;
2156 if (type == error_mark_node)
2157 return 0;
2159 type = TYPE_MAIN_VARIANT (type);
2160 t = TYPE_SIZE_UNIT (type);
2161 if (t == 0
2162 || TREE_CODE (t) != INTEGER_CST
2163 || TREE_INT_CST_HIGH (t) != 0
2164 /* If the result would appear negative, it's too big to represent. */
2165 || (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
2166 return -1;
2168 return TREE_INT_CST_LOW (t);
2171 /* Return the maximum size of TYPE (in bytes) as a wide integer
2172 or return -1 if the size can vary or is larger than an integer. */
2174 HOST_WIDE_INT
2175 max_int_size_in_bytes (const_tree type)
2177 HOST_WIDE_INT size = -1;
2178 tree size_tree;
2180 /* If this is an array type, check for a possible MAX_SIZE attached. */
2182 if (TREE_CODE (type) == ARRAY_TYPE)
2184 size_tree = TYPE_ARRAY_MAX_SIZE (type);
2186 if (size_tree && host_integerp (size_tree, 1))
2187 size = tree_low_cst (size_tree, 1);
2190 /* If we still haven't been able to get a size, see if the language
2191 can compute a maximum size. */
2193 if (size == -1)
2195 size_tree = lang_hooks.types.max_size (type);
2197 if (size_tree && host_integerp (size_tree, 1))
2198 size = tree_low_cst (size_tree, 1);
2201 return size;
2204 /* Returns a tree for the size of EXP in bytes. */
2206 tree
2207 tree_expr_size (const_tree exp)
2209 if (DECL_P (exp)
2210 && DECL_SIZE_UNIT (exp) != 0)
2211 return DECL_SIZE_UNIT (exp);
2212 else
2213 return size_in_bytes (TREE_TYPE (exp));
2216 /* Return the bit position of FIELD, in bits from the start of the record.
2217 This is a tree of type bitsizetype. */
2219 tree
2220 bit_position (const_tree field)
2222 return bit_from_pos (DECL_FIELD_OFFSET (field),
2223 DECL_FIELD_BIT_OFFSET (field));
2226 /* Likewise, but return as an integer. It must be representable in
2227 that way (since it could be a signed value, we don't have the
2228 option of returning -1 like int_size_in_byte can. */
2230 HOST_WIDE_INT
2231 int_bit_position (const_tree field)
2233 return tree_low_cst (bit_position (field), 0);
2236 /* Return the byte position of FIELD, in bytes from the start of the record.
2237 This is a tree of type sizetype. */
2239 tree
2240 byte_position (const_tree field)
2242 return byte_from_pos (DECL_FIELD_OFFSET (field),
2243 DECL_FIELD_BIT_OFFSET (field));
2246 /* Likewise, but return as an integer. It must be representable in
2247 that way (since it could be a signed value, we don't have the
2248 option of returning -1 like int_size_in_byte can. */
2250 HOST_WIDE_INT
2251 int_byte_position (const_tree field)
2253 return tree_low_cst (byte_position (field), 0);
2256 /* Return the strictest alignment, in bits, that T is known to have. */
2258 unsigned int
2259 expr_align (const_tree t)
2261 unsigned int align0, align1;
2263 switch (TREE_CODE (t))
2265 CASE_CONVERT: case NON_LVALUE_EXPR:
2266 /* If we have conversions, we know that the alignment of the
2267 object must meet each of the alignments of the types. */
2268 align0 = expr_align (TREE_OPERAND (t, 0));
2269 align1 = TYPE_ALIGN (TREE_TYPE (t));
2270 return MAX (align0, align1);
2272 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
2273 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
2274 case CLEANUP_POINT_EXPR:
2275 /* These don't change the alignment of an object. */
2276 return expr_align (TREE_OPERAND (t, 0));
2278 case COND_EXPR:
2279 /* The best we can do is say that the alignment is the least aligned
2280 of the two arms. */
2281 align0 = expr_align (TREE_OPERAND (t, 1));
2282 align1 = expr_align (TREE_OPERAND (t, 2));
2283 return MIN (align0, align1);
2285 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
2286 meaningfully, it's always 1. */
2287 case LABEL_DECL: case CONST_DECL:
2288 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
2289 case FUNCTION_DECL:
2290 gcc_assert (DECL_ALIGN (t) != 0);
2291 return DECL_ALIGN (t);
2293 default:
2294 break;
2297 /* Otherwise take the alignment from that of the type. */
2298 return TYPE_ALIGN (TREE_TYPE (t));
2301 /* Return, as a tree node, the number of elements for TYPE (which is an
2302 ARRAY_TYPE) minus one. This counts only elements of the top array. */
2304 tree
2305 array_type_nelts (const_tree type)
2307 tree index_type, min, max;
2309 /* If they did it with unspecified bounds, then we should have already
2310 given an error about it before we got here. */
2311 if (! TYPE_DOMAIN (type))
2312 return error_mark_node;
2314 index_type = TYPE_DOMAIN (type);
2315 min = TYPE_MIN_VALUE (index_type);
2316 max = TYPE_MAX_VALUE (index_type);
2318 return (integer_zerop (min)
2319 ? max
2320 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
2323 /* If arg is static -- a reference to an object in static storage -- then
2324 return the object. This is not the same as the C meaning of `static'.
2325 If arg isn't static, return NULL. */
2327 tree
2328 staticp (tree arg)
2330 switch (TREE_CODE (arg))
2332 case FUNCTION_DECL:
2333 /* Nested functions are static, even though taking their address will
2334 involve a trampoline as we unnest the nested function and create
2335 the trampoline on the tree level. */
2336 return arg;
2338 case VAR_DECL:
2339 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
2340 && ! DECL_THREAD_LOCAL_P (arg)
2341 && ! DECL_DLLIMPORT_P (arg)
2342 ? arg : NULL);
2344 case CONST_DECL:
2345 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
2346 ? arg : NULL);
2348 case CONSTRUCTOR:
2349 return TREE_STATIC (arg) ? arg : NULL;
2351 case LABEL_DECL:
2352 case STRING_CST:
2353 return arg;
2355 case COMPONENT_REF:
2356 /* If the thing being referenced is not a field, then it is
2357 something language specific. */
2358 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
2360 /* If we are referencing a bitfield, we can't evaluate an
2361 ADDR_EXPR at compile time and so it isn't a constant. */
2362 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
2363 return NULL;
2365 return staticp (TREE_OPERAND (arg, 0));
2367 case BIT_FIELD_REF:
2368 return NULL;
2370 case MISALIGNED_INDIRECT_REF:
2371 case ALIGN_INDIRECT_REF:
2372 case INDIRECT_REF:
2373 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
2375 case ARRAY_REF:
2376 case ARRAY_RANGE_REF:
2377 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
2378 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
2379 return staticp (TREE_OPERAND (arg, 0));
2380 else
2381 return NULL;
2383 case COMPOUND_LITERAL_EXPR:
2384 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
2386 default:
2387 return NULL;
2394 /* Return whether OP is a DECL whose address is function-invariant. */
2396 bool
2397 decl_address_invariant_p (const_tree op)
2399 /* The conditions below are slightly less strict than the one in
2400 staticp. */
2402 switch (TREE_CODE (op))
2404 case PARM_DECL:
2405 case RESULT_DECL:
2406 case LABEL_DECL:
2407 case FUNCTION_DECL:
2408 return true;
2410 case VAR_DECL:
2411 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
2412 && !DECL_DLLIMPORT_P (op))
2413 || DECL_THREAD_LOCAL_P (op)
2414 || DECL_CONTEXT (op) == current_function_decl
2415 || decl_function_context (op) == current_function_decl)
2416 return true;
2417 break;
2419 case CONST_DECL:
2420 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
2421 || decl_function_context (op) == current_function_decl)
2422 return true;
2423 break;
2425 default:
2426 break;
2429 return false;
2432 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
2434 bool
2435 decl_address_ip_invariant_p (const_tree op)
2437 /* The conditions below are slightly less strict than the one in
2438 staticp. */
2440 switch (TREE_CODE (op))
2442 case LABEL_DECL:
2443 case FUNCTION_DECL:
2444 case STRING_CST:
2445 return true;
2447 case VAR_DECL:
2448 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
2449 && !DECL_DLLIMPORT_P (op))
2450 || DECL_THREAD_LOCAL_P (op))
2451 return true;
2452 break;
2454 case CONST_DECL:
2455 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
2456 return true;
2457 break;
2459 default:
2460 break;
2463 return false;
2467 /* Return true if T is function-invariant (internal function, does
2468 not handle arithmetic; that's handled in skip_simple_arithmetic and
2469 tree_invariant_p). */
2471 static bool tree_invariant_p (tree t);
2473 static bool
2474 tree_invariant_p_1 (tree t)
2476 tree op;
2478 if (TREE_CONSTANT (t)
2479 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
2480 return true;
2482 switch (TREE_CODE (t))
2484 case SAVE_EXPR:
2485 return true;
2487 case ADDR_EXPR:
2488 op = TREE_OPERAND (t, 0);
2489 while (handled_component_p (op))
2491 switch (TREE_CODE (op))
2493 case ARRAY_REF:
2494 case ARRAY_RANGE_REF:
2495 if (!tree_invariant_p (TREE_OPERAND (op, 1))
2496 || TREE_OPERAND (op, 2) != NULL_TREE
2497 || TREE_OPERAND (op, 3) != NULL_TREE)
2498 return false;
2499 break;
2501 case COMPONENT_REF:
2502 if (TREE_OPERAND (op, 2) != NULL_TREE)
2503 return false;
2504 break;
2506 default:;
2508 op = TREE_OPERAND (op, 0);
2511 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
2513 default:
2514 break;
2517 return false;
2520 /* Return true if T is function-invariant. */
2522 static bool
2523 tree_invariant_p (tree t)
2525 tree inner = skip_simple_arithmetic (t);
2526 return tree_invariant_p_1 (inner);
2529 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
2530 Do this to any expression which may be used in more than one place,
2531 but must be evaluated only once.
2533 Normally, expand_expr would reevaluate the expression each time.
2534 Calling save_expr produces something that is evaluated and recorded
2535 the first time expand_expr is called on it. Subsequent calls to
2536 expand_expr just reuse the recorded value.
2538 The call to expand_expr that generates code that actually computes
2539 the value is the first call *at compile time*. Subsequent calls
2540 *at compile time* generate code to use the saved value.
2541 This produces correct result provided that *at run time* control
2542 always flows through the insns made by the first expand_expr
2543 before reaching the other places where the save_expr was evaluated.
2544 You, the caller of save_expr, must make sure this is so.
2546 Constants, and certain read-only nodes, are returned with no
2547 SAVE_EXPR because that is safe. Expressions containing placeholders
2548 are not touched; see tree.def for an explanation of what these
2549 are used for. */
2551 tree
2552 save_expr (tree expr)
2554 tree t = fold (expr);
2555 tree inner;
2557 /* If the tree evaluates to a constant, then we don't want to hide that
2558 fact (i.e. this allows further folding, and direct checks for constants).
2559 However, a read-only object that has side effects cannot be bypassed.
2560 Since it is no problem to reevaluate literals, we just return the
2561 literal node. */
2562 inner = skip_simple_arithmetic (t);
2563 if (TREE_CODE (inner) == ERROR_MARK)
2564 return inner;
2566 if (tree_invariant_p_1 (inner))
2567 return t;
2569 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
2570 it means that the size or offset of some field of an object depends on
2571 the value within another field.
2573 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
2574 and some variable since it would then need to be both evaluated once and
2575 evaluated more than once. Front-ends must assure this case cannot
2576 happen by surrounding any such subexpressions in their own SAVE_EXPR
2577 and forcing evaluation at the proper time. */
2578 if (contains_placeholder_p (inner))
2579 return t;
2581 t = build1 (SAVE_EXPR, TREE_TYPE (expr), t);
2582 SET_EXPR_LOCATION (t, EXPR_LOCATION (expr));
2584 /* This expression might be placed ahead of a jump to ensure that the
2585 value was computed on both sides of the jump. So make sure it isn't
2586 eliminated as dead. */
2587 TREE_SIDE_EFFECTS (t) = 1;
2588 return t;
2591 /* Look inside EXPR and into any simple arithmetic operations. Return
2592 the innermost non-arithmetic node. */
2594 tree
2595 skip_simple_arithmetic (tree expr)
2597 tree inner;
2599 /* We don't care about whether this can be used as an lvalue in this
2600 context. */
2601 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
2602 expr = TREE_OPERAND (expr, 0);
2604 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
2605 a constant, it will be more efficient to not make another SAVE_EXPR since
2606 it will allow better simplification and GCSE will be able to merge the
2607 computations if they actually occur. */
2608 inner = expr;
2609 while (1)
2611 if (UNARY_CLASS_P (inner))
2612 inner = TREE_OPERAND (inner, 0);
2613 else if (BINARY_CLASS_P (inner))
2615 if (tree_invariant_p (TREE_OPERAND (inner, 1)))
2616 inner = TREE_OPERAND (inner, 0);
2617 else if (tree_invariant_p (TREE_OPERAND (inner, 0)))
2618 inner = TREE_OPERAND (inner, 1);
2619 else
2620 break;
2622 else
2623 break;
2626 return inner;
2630 /* Return which tree structure is used by T. */
2632 enum tree_node_structure_enum
2633 tree_node_structure (const_tree t)
2635 const enum tree_code code = TREE_CODE (t);
2636 return tree_node_structure_for_code (code);
2639 /* Set various status flags when building a CALL_EXPR object T. */
2641 static void
2642 process_call_operands (tree t)
2644 bool side_effects = TREE_SIDE_EFFECTS (t);
2645 bool read_only = false;
2646 int i = call_expr_flags (t);
2648 /* Calls have side-effects, except those to const or pure functions. */
2649 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
2650 side_effects = true;
2651 /* Propagate TREE_READONLY of arguments for const functions. */
2652 if (i & ECF_CONST)
2653 read_only = true;
2655 if (!side_effects || read_only)
2656 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
2658 tree op = TREE_OPERAND (t, i);
2659 if (op && TREE_SIDE_EFFECTS (op))
2660 side_effects = true;
2661 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
2662 read_only = false;
2665 TREE_SIDE_EFFECTS (t) = side_effects;
2666 TREE_READONLY (t) = read_only;
2669 /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
2670 or offset that depends on a field within a record. */
2672 bool
2673 contains_placeholder_p (const_tree exp)
2675 enum tree_code code;
2677 if (!exp)
2678 return 0;
2680 code = TREE_CODE (exp);
2681 if (code == PLACEHOLDER_EXPR)
2682 return 1;
2684 switch (TREE_CODE_CLASS (code))
2686 case tcc_reference:
2687 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
2688 position computations since they will be converted into a
2689 WITH_RECORD_EXPR involving the reference, which will assume
2690 here will be valid. */
2691 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
2693 case tcc_exceptional:
2694 if (code == TREE_LIST)
2695 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
2696 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
2697 break;
2699 case tcc_unary:
2700 case tcc_binary:
2701 case tcc_comparison:
2702 case tcc_expression:
2703 switch (code)
2705 case COMPOUND_EXPR:
2706 /* Ignoring the first operand isn't quite right, but works best. */
2707 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
2709 case COND_EXPR:
2710 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
2711 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
2712 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
2714 case SAVE_EXPR:
2715 /* The save_expr function never wraps anything containing
2716 a PLACEHOLDER_EXPR. */
2717 return 0;
2719 default:
2720 break;
2723 switch (TREE_CODE_LENGTH (code))
2725 case 1:
2726 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
2727 case 2:
2728 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
2729 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
2730 default:
2731 return 0;
2734 case tcc_vl_exp:
2735 switch (code)
2737 case CALL_EXPR:
2739 const_tree arg;
2740 const_call_expr_arg_iterator iter;
2741 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
2742 if (CONTAINS_PLACEHOLDER_P (arg))
2743 return 1;
2744 return 0;
2746 default:
2747 return 0;
2750 default:
2751 return 0;
2753 return 0;
2756 /* Return true if any part of the computation of TYPE involves a
2757 PLACEHOLDER_EXPR. This includes size, bounds, qualifiers
2758 (for QUAL_UNION_TYPE) and field positions. */
2760 static bool
2761 type_contains_placeholder_1 (const_tree type)
2763 /* If the size contains a placeholder or the parent type (component type in
2764 the case of arrays) type involves a placeholder, this type does. */
2765 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
2766 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
2767 || (TREE_TYPE (type) != 0
2768 && type_contains_placeholder_p (TREE_TYPE (type))))
2769 return true;
2771 /* Now do type-specific checks. Note that the last part of the check above
2772 greatly limits what we have to do below. */
2773 switch (TREE_CODE (type))
2775 case VOID_TYPE:
2776 case COMPLEX_TYPE:
2777 case ENUMERAL_TYPE:
2778 case BOOLEAN_TYPE:
2779 case POINTER_TYPE:
2780 case OFFSET_TYPE:
2781 case REFERENCE_TYPE:
2782 case METHOD_TYPE:
2783 case FUNCTION_TYPE:
2784 case VECTOR_TYPE:
2785 return false;
2787 case INTEGER_TYPE:
2788 case REAL_TYPE:
2789 case FIXED_POINT_TYPE:
2790 /* Here we just check the bounds. */
2791 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
2792 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
2794 case ARRAY_TYPE:
2795 /* We're already checked the component type (TREE_TYPE), so just check
2796 the index type. */
2797 return type_contains_placeholder_p (TYPE_DOMAIN (type));
2799 case RECORD_TYPE:
2800 case UNION_TYPE:
2801 case QUAL_UNION_TYPE:
2803 tree field;
2805 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
2806 if (TREE_CODE (field) == FIELD_DECL
2807 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
2808 || (TREE_CODE (type) == QUAL_UNION_TYPE
2809 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
2810 || type_contains_placeholder_p (TREE_TYPE (field))))
2811 return true;
2813 return false;
2816 default:
2817 gcc_unreachable ();
2821 bool
2822 type_contains_placeholder_p (tree type)
2824 bool result;
2826 /* If the contains_placeholder_bits field has been initialized,
2827 then we know the answer. */
2828 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
2829 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
2831 /* Indicate that we've seen this type node, and the answer is false.
2832 This is what we want to return if we run into recursion via fields. */
2833 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
2835 /* Compute the real value. */
2836 result = type_contains_placeholder_1 (type);
2838 /* Store the real value. */
2839 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
2841 return result;
2844 /* Push tree EXP onto vector QUEUE if it is not already present. */
2846 static void
2847 push_without_duplicates (tree exp, VEC (tree, heap) **queue)
2849 unsigned int i;
2850 tree iter;
2852 for (i = 0; VEC_iterate (tree, *queue, i, iter); i++)
2853 if (simple_cst_equal (iter, exp) == 1)
2854 break;
2856 if (!iter)
2857 VEC_safe_push (tree, heap, *queue, exp);
2860 /* Given a tree EXP, find all occurences of references to fields
2861 in a PLACEHOLDER_EXPR and place them in vector REFS without
2862 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
2863 we assume here that EXP contains only arithmetic expressions
2864 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
2865 argument list. */
2867 void
2868 find_placeholder_in_expr (tree exp, VEC (tree, heap) **refs)
2870 enum tree_code code = TREE_CODE (exp);
2871 tree inner;
2872 int i;
2874 /* We handle TREE_LIST and COMPONENT_REF separately. */
2875 if (code == TREE_LIST)
2877 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
2878 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
2880 else if (code == COMPONENT_REF)
2882 for (inner = TREE_OPERAND (exp, 0);
2883 REFERENCE_CLASS_P (inner);
2884 inner = TREE_OPERAND (inner, 0))
2887 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
2888 push_without_duplicates (exp, refs);
2889 else
2890 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
2892 else
2893 switch (TREE_CODE_CLASS (code))
2895 case tcc_constant:
2896 break;
2898 case tcc_declaration:
2899 /* Variables allocated to static storage can stay. */
2900 if (!TREE_STATIC (exp))
2901 push_without_duplicates (exp, refs);
2902 break;
2904 case tcc_expression:
2905 /* This is the pattern built in ada/make_aligning_type. */
2906 if (code == ADDR_EXPR
2907 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
2909 push_without_duplicates (exp, refs);
2910 break;
2913 /* Fall through... */
2915 case tcc_exceptional:
2916 case tcc_unary:
2917 case tcc_binary:
2918 case tcc_comparison:
2919 case tcc_reference:
2920 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
2921 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
2922 break;
2924 case tcc_vl_exp:
2925 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
2926 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
2927 break;
2929 default:
2930 gcc_unreachable ();
2934 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
2935 return a tree with all occurrences of references to F in a
2936 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
2937 CONST_DECLs. Note that we assume here that EXP contains only
2938 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
2939 occurring only in their argument list. */
2941 tree
2942 substitute_in_expr (tree exp, tree f, tree r)
2944 enum tree_code code = TREE_CODE (exp);
2945 tree op0, op1, op2, op3;
2946 tree new_tree;
2948 /* We handle TREE_LIST and COMPONENT_REF separately. */
2949 if (code == TREE_LIST)
2951 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
2952 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
2953 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
2954 return exp;
2956 return tree_cons (TREE_PURPOSE (exp), op1, op0);
2958 else if (code == COMPONENT_REF)
2960 tree inner;
2962 /* If this expression is getting a value from a PLACEHOLDER_EXPR
2963 and it is the right field, replace it with R. */
2964 for (inner = TREE_OPERAND (exp, 0);
2965 REFERENCE_CLASS_P (inner);
2966 inner = TREE_OPERAND (inner, 0))
2969 /* The field. */
2970 op1 = TREE_OPERAND (exp, 1);
2972 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
2973 return r;
2975 /* If this expression hasn't been completed let, leave it alone. */
2976 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
2977 return exp;
2979 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2980 if (op0 == TREE_OPERAND (exp, 0))
2981 return exp;
2983 new_tree
2984 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
2986 else
2987 switch (TREE_CODE_CLASS (code))
2989 case tcc_constant:
2990 return exp;
2992 case tcc_declaration:
2993 if (exp == f)
2994 return r;
2995 else
2996 return exp;
2998 case tcc_expression:
2999 if (exp == f)
3000 return r;
3002 /* Fall through... */
3004 case tcc_exceptional:
3005 case tcc_unary:
3006 case tcc_binary:
3007 case tcc_comparison:
3008 case tcc_reference:
3009 switch (TREE_CODE_LENGTH (code))
3011 case 0:
3012 return exp;
3014 case 1:
3015 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3016 if (op0 == TREE_OPERAND (exp, 0))
3017 return exp;
3019 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3020 break;
3022 case 2:
3023 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3024 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3026 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3027 return exp;
3029 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3030 break;
3032 case 3:
3033 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3034 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3035 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3037 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3038 && op2 == TREE_OPERAND (exp, 2))
3039 return exp;
3041 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3042 break;
3044 case 4:
3045 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3046 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3047 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3048 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
3050 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3051 && op2 == TREE_OPERAND (exp, 2)
3052 && op3 == TREE_OPERAND (exp, 3))
3053 return exp;
3055 new_tree
3056 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3057 break;
3059 default:
3060 gcc_unreachable ();
3062 break;
3064 case tcc_vl_exp:
3066 int i;
3068 new_tree = NULL_TREE;
3070 /* If we are trying to replace F with a constant, inline back
3071 functions which do nothing else than computing a value from
3072 the arguments they are passed. This makes it possible to
3073 fold partially or entirely the replacement expression. */
3074 if (CONSTANT_CLASS_P (r) && code == CALL_EXPR)
3076 tree t = maybe_inline_call_in_expr (exp);
3077 if (t)
3078 return SUBSTITUTE_IN_EXPR (t, f, r);
3081 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3083 tree op = TREE_OPERAND (exp, i);
3084 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
3085 if (new_op != op)
3087 if (!new_tree)
3088 new_tree = copy_node (exp);
3089 TREE_OPERAND (new_tree, i) = new_op;
3093 if (new_tree)
3095 new_tree = fold (new_tree);
3096 if (TREE_CODE (new_tree) == CALL_EXPR)
3097 process_call_operands (new_tree);
3099 else
3100 return exp;
3102 break;
3104 default:
3105 gcc_unreachable ();
3108 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
3109 return new_tree;
3112 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3113 for it within OBJ, a tree that is an object or a chain of references. */
3115 tree
3116 substitute_placeholder_in_expr (tree exp, tree obj)
3118 enum tree_code code = TREE_CODE (exp);
3119 tree op0, op1, op2, op3;
3120 tree new_tree;
3122 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3123 in the chain of OBJ. */
3124 if (code == PLACEHOLDER_EXPR)
3126 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
3127 tree elt;
3129 for (elt = obj; elt != 0;
3130 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3131 || TREE_CODE (elt) == COND_EXPR)
3132 ? TREE_OPERAND (elt, 1)
3133 : (REFERENCE_CLASS_P (elt)
3134 || UNARY_CLASS_P (elt)
3135 || BINARY_CLASS_P (elt)
3136 || VL_EXP_CLASS_P (elt)
3137 || EXPRESSION_CLASS_P (elt))
3138 ? TREE_OPERAND (elt, 0) : 0))
3139 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
3140 return elt;
3142 for (elt = obj; elt != 0;
3143 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3144 || TREE_CODE (elt) == COND_EXPR)
3145 ? TREE_OPERAND (elt, 1)
3146 : (REFERENCE_CLASS_P (elt)
3147 || UNARY_CLASS_P (elt)
3148 || BINARY_CLASS_P (elt)
3149 || VL_EXP_CLASS_P (elt)
3150 || EXPRESSION_CLASS_P (elt))
3151 ? TREE_OPERAND (elt, 0) : 0))
3152 if (POINTER_TYPE_P (TREE_TYPE (elt))
3153 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
3154 == need_type))
3155 return fold_build1 (INDIRECT_REF, need_type, elt);
3157 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3158 survives until RTL generation, there will be an error. */
3159 return exp;
3162 /* TREE_LIST is special because we need to look at TREE_VALUE
3163 and TREE_CHAIN, not TREE_OPERANDS. */
3164 else if (code == TREE_LIST)
3166 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
3167 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
3168 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3169 return exp;
3171 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3173 else
3174 switch (TREE_CODE_CLASS (code))
3176 case tcc_constant:
3177 case tcc_declaration:
3178 return exp;
3180 case tcc_exceptional:
3181 case tcc_unary:
3182 case tcc_binary:
3183 case tcc_comparison:
3184 case tcc_expression:
3185 case tcc_reference:
3186 case tcc_statement:
3187 switch (TREE_CODE_LENGTH (code))
3189 case 0:
3190 return exp;
3192 case 1:
3193 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3194 if (op0 == TREE_OPERAND (exp, 0))
3195 return exp;
3197 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3198 break;
3200 case 2:
3201 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3202 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3204 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3205 return exp;
3207 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3208 break;
3210 case 3:
3211 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3212 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3213 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
3215 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3216 && op2 == TREE_OPERAND (exp, 2))
3217 return exp;
3219 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3220 break;
3222 case 4:
3223 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3224 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3225 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
3226 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
3228 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3229 && op2 == TREE_OPERAND (exp, 2)
3230 && op3 == TREE_OPERAND (exp, 3))
3231 return exp;
3233 new_tree
3234 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3235 break;
3237 default:
3238 gcc_unreachable ();
3240 break;
3242 case tcc_vl_exp:
3244 int i;
3246 new_tree = NULL_TREE;
3248 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3250 tree op = TREE_OPERAND (exp, i);
3251 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
3252 if (new_op != op)
3254 if (!new_tree)
3255 new_tree = copy_node (exp);
3256 TREE_OPERAND (new_tree, i) = new_op;
3260 if (new_tree)
3262 new_tree = fold (new_tree);
3263 if (TREE_CODE (new_tree) == CALL_EXPR)
3264 process_call_operands (new_tree);
3266 else
3267 return exp;
3269 break;
3271 default:
3272 gcc_unreachable ();
3275 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
3276 return new_tree;
3279 /* Stabilize a reference so that we can use it any number of times
3280 without causing its operands to be evaluated more than once.
3281 Returns the stabilized reference. This works by means of save_expr,
3282 so see the caveats in the comments about save_expr.
3284 Also allows conversion expressions whose operands are references.
3285 Any other kind of expression is returned unchanged. */
3287 tree
3288 stabilize_reference (tree ref)
3290 tree result;
3291 enum tree_code code = TREE_CODE (ref);
3293 switch (code)
3295 case VAR_DECL:
3296 case PARM_DECL:
3297 case RESULT_DECL:
3298 /* No action is needed in this case. */
3299 return ref;
3301 CASE_CONVERT:
3302 case FLOAT_EXPR:
3303 case FIX_TRUNC_EXPR:
3304 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
3305 break;
3307 case INDIRECT_REF:
3308 result = build_nt (INDIRECT_REF,
3309 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
3310 break;
3312 case COMPONENT_REF:
3313 result = build_nt (COMPONENT_REF,
3314 stabilize_reference (TREE_OPERAND (ref, 0)),
3315 TREE_OPERAND (ref, 1), NULL_TREE);
3316 break;
3318 case BIT_FIELD_REF:
3319 result = build_nt (BIT_FIELD_REF,
3320 stabilize_reference (TREE_OPERAND (ref, 0)),
3321 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3322 stabilize_reference_1 (TREE_OPERAND (ref, 2)));
3323 break;
3325 case ARRAY_REF:
3326 result = build_nt (ARRAY_REF,
3327 stabilize_reference (TREE_OPERAND (ref, 0)),
3328 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3329 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
3330 break;
3332 case ARRAY_RANGE_REF:
3333 result = build_nt (ARRAY_RANGE_REF,
3334 stabilize_reference (TREE_OPERAND (ref, 0)),
3335 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3336 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
3337 break;
3339 case COMPOUND_EXPR:
3340 /* We cannot wrap the first expression in a SAVE_EXPR, as then
3341 it wouldn't be ignored. This matters when dealing with
3342 volatiles. */
3343 return stabilize_reference_1 (ref);
3345 /* If arg isn't a kind of lvalue we recognize, make no change.
3346 Caller should recognize the error for an invalid lvalue. */
3347 default:
3348 return ref;
3350 case ERROR_MARK:
3351 return error_mark_node;
3354 TREE_TYPE (result) = TREE_TYPE (ref);
3355 TREE_READONLY (result) = TREE_READONLY (ref);
3356 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
3357 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
3359 return result;
3362 /* Subroutine of stabilize_reference; this is called for subtrees of
3363 references. Any expression with side-effects must be put in a SAVE_EXPR
3364 to ensure that it is only evaluated once.
3366 We don't put SAVE_EXPR nodes around everything, because assigning very
3367 simple expressions to temporaries causes us to miss good opportunities
3368 for optimizations. Among other things, the opportunity to fold in the
3369 addition of a constant into an addressing mode often gets lost, e.g.
3370 "y[i+1] += x;". In general, we take the approach that we should not make
3371 an assignment unless we are forced into it - i.e., that any non-side effect
3372 operator should be allowed, and that cse should take care of coalescing
3373 multiple utterances of the same expression should that prove fruitful. */
3375 tree
3376 stabilize_reference_1 (tree e)
3378 tree result;
3379 enum tree_code code = TREE_CODE (e);
3381 /* We cannot ignore const expressions because it might be a reference
3382 to a const array but whose index contains side-effects. But we can
3383 ignore things that are actual constant or that already have been
3384 handled by this function. */
3386 if (tree_invariant_p (e))
3387 return e;
3389 switch (TREE_CODE_CLASS (code))
3391 case tcc_exceptional:
3392 case tcc_type:
3393 case tcc_declaration:
3394 case tcc_comparison:
3395 case tcc_statement:
3396 case tcc_expression:
3397 case tcc_reference:
3398 case tcc_vl_exp:
3399 /* If the expression has side-effects, then encase it in a SAVE_EXPR
3400 so that it will only be evaluated once. */
3401 /* The reference (r) and comparison (<) classes could be handled as
3402 below, but it is generally faster to only evaluate them once. */
3403 if (TREE_SIDE_EFFECTS (e))
3404 return save_expr (e);
3405 return e;
3407 case tcc_constant:
3408 /* Constants need no processing. In fact, we should never reach
3409 here. */
3410 return e;
3412 case tcc_binary:
3413 /* Division is slow and tends to be compiled with jumps,
3414 especially the division by powers of 2 that is often
3415 found inside of an array reference. So do it just once. */
3416 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
3417 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
3418 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
3419 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
3420 return save_expr (e);
3421 /* Recursively stabilize each operand. */
3422 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
3423 stabilize_reference_1 (TREE_OPERAND (e, 1)));
3424 break;
3426 case tcc_unary:
3427 /* Recursively stabilize each operand. */
3428 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
3429 break;
3431 default:
3432 gcc_unreachable ();
3435 TREE_TYPE (result) = TREE_TYPE (e);
3436 TREE_READONLY (result) = TREE_READONLY (e);
3437 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
3438 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
3440 return result;
3443 /* Low-level constructors for expressions. */
3445 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
3446 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
3448 void
3449 recompute_tree_invariant_for_addr_expr (tree t)
3451 tree node;
3452 bool tc = true, se = false;
3454 /* We started out assuming this address is both invariant and constant, but
3455 does not have side effects. Now go down any handled components and see if
3456 any of them involve offsets that are either non-constant or non-invariant.
3457 Also check for side-effects.
3459 ??? Note that this code makes no attempt to deal with the case where
3460 taking the address of something causes a copy due to misalignment. */
3462 #define UPDATE_FLAGS(NODE) \
3463 do { tree _node = (NODE); \
3464 if (_node && !TREE_CONSTANT (_node)) tc = false; \
3465 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
3467 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
3468 node = TREE_OPERAND (node, 0))
3470 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
3471 array reference (probably made temporarily by the G++ front end),
3472 so ignore all the operands. */
3473 if ((TREE_CODE (node) == ARRAY_REF
3474 || TREE_CODE (node) == ARRAY_RANGE_REF)
3475 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
3477 UPDATE_FLAGS (TREE_OPERAND (node, 1));
3478 if (TREE_OPERAND (node, 2))
3479 UPDATE_FLAGS (TREE_OPERAND (node, 2));
3480 if (TREE_OPERAND (node, 3))
3481 UPDATE_FLAGS (TREE_OPERAND (node, 3));
3483 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
3484 FIELD_DECL, apparently. The G++ front end can put something else
3485 there, at least temporarily. */
3486 else if (TREE_CODE (node) == COMPONENT_REF
3487 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
3489 if (TREE_OPERAND (node, 2))
3490 UPDATE_FLAGS (TREE_OPERAND (node, 2));
3492 else if (TREE_CODE (node) == BIT_FIELD_REF)
3493 UPDATE_FLAGS (TREE_OPERAND (node, 2));
3496 node = lang_hooks.expr_to_decl (node, &tc, &se);
3498 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
3499 the address, since &(*a)->b is a form of addition. If it's a constant, the
3500 address is constant too. If it's a decl, its address is constant if the
3501 decl is static. Everything else is not constant and, furthermore,
3502 taking the address of a volatile variable is not volatile. */
3503 if (TREE_CODE (node) == INDIRECT_REF)
3504 UPDATE_FLAGS (TREE_OPERAND (node, 0));
3505 else if (CONSTANT_CLASS_P (node))
3507 else if (DECL_P (node))
3508 tc &= (staticp (node) != NULL_TREE);
3509 else
3511 tc = false;
3512 se |= TREE_SIDE_EFFECTS (node);
3516 TREE_CONSTANT (t) = tc;
3517 TREE_SIDE_EFFECTS (t) = se;
3518 #undef UPDATE_FLAGS
3521 /* Build an expression of code CODE, data type TYPE, and operands as
3522 specified. Expressions and reference nodes can be created this way.
3523 Constants, decls, types and misc nodes cannot be.
3525 We define 5 non-variadic functions, from 0 to 4 arguments. This is
3526 enough for all extant tree codes. */
3528 tree
3529 build0_stat (enum tree_code code, tree tt MEM_STAT_DECL)
3531 tree t;
3533 gcc_assert (TREE_CODE_LENGTH (code) == 0);
3535 t = make_node_stat (code PASS_MEM_STAT);
3536 TREE_TYPE (t) = tt;
3538 return t;
3541 tree
3542 build1_stat (enum tree_code code, tree type, tree node MEM_STAT_DECL)
3544 int length = sizeof (struct tree_exp);
3545 #ifdef GATHER_STATISTICS
3546 tree_node_kind kind;
3547 #endif
3548 tree t;
3550 #ifdef GATHER_STATISTICS
3551 switch (TREE_CODE_CLASS (code))
3553 case tcc_statement: /* an expression with side effects */
3554 kind = s_kind;
3555 break;
3556 case tcc_reference: /* a reference */
3557 kind = r_kind;
3558 break;
3559 default:
3560 kind = e_kind;
3561 break;
3564 tree_node_counts[(int) kind]++;
3565 tree_node_sizes[(int) kind] += length;
3566 #endif
3568 gcc_assert (TREE_CODE_LENGTH (code) == 1);
3570 t = (tree) ggc_alloc_zone_pass_stat (length, &tree_zone);
3572 memset (t, 0, sizeof (struct tree_common));
3574 TREE_SET_CODE (t, code);
3576 TREE_TYPE (t) = type;
3577 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
3578 TREE_OPERAND (t, 0) = node;
3579 TREE_BLOCK (t) = NULL_TREE;
3580 if (node && !TYPE_P (node))
3582 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
3583 TREE_READONLY (t) = TREE_READONLY (node);
3586 if (TREE_CODE_CLASS (code) == tcc_statement)
3587 TREE_SIDE_EFFECTS (t) = 1;
3588 else switch (code)
3590 case VA_ARG_EXPR:
3591 /* All of these have side-effects, no matter what their
3592 operands are. */
3593 TREE_SIDE_EFFECTS (t) = 1;
3594 TREE_READONLY (t) = 0;
3595 break;
3597 case MISALIGNED_INDIRECT_REF:
3598 case ALIGN_INDIRECT_REF:
3599 case INDIRECT_REF:
3600 /* Whether a dereference is readonly has nothing to do with whether
3601 its operand is readonly. */
3602 TREE_READONLY (t) = 0;
3603 break;
3605 case ADDR_EXPR:
3606 if (node)
3607 recompute_tree_invariant_for_addr_expr (t);
3608 break;
3610 default:
3611 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
3612 && node && !TYPE_P (node)
3613 && TREE_CONSTANT (node))
3614 TREE_CONSTANT (t) = 1;
3615 if (TREE_CODE_CLASS (code) == tcc_reference
3616 && node && TREE_THIS_VOLATILE (node))
3617 TREE_THIS_VOLATILE (t) = 1;
3618 break;
3621 return t;
3624 #define PROCESS_ARG(N) \
3625 do { \
3626 TREE_OPERAND (t, N) = arg##N; \
3627 if (arg##N &&!TYPE_P (arg##N)) \
3629 if (TREE_SIDE_EFFECTS (arg##N)) \
3630 side_effects = 1; \
3631 if (!TREE_READONLY (arg##N) \
3632 && !CONSTANT_CLASS_P (arg##N)) \
3633 read_only = 0; \
3634 if (!TREE_CONSTANT (arg##N)) \
3635 constant = 0; \
3637 } while (0)
3639 tree
3640 build2_stat (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
3642 bool constant, read_only, side_effects;
3643 tree t;
3645 gcc_assert (TREE_CODE_LENGTH (code) == 2);
3647 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
3648 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
3649 /* When sizetype precision doesn't match that of pointers
3650 we need to be able to build explicit extensions or truncations
3651 of the offset argument. */
3652 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
3653 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
3654 && TREE_CODE (arg1) == INTEGER_CST);
3656 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
3657 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
3658 && INTEGRAL_TYPE_P (TREE_TYPE (arg1))
3659 && useless_type_conversion_p (sizetype, TREE_TYPE (arg1)));
3661 t = make_node_stat (code PASS_MEM_STAT);
3662 TREE_TYPE (t) = tt;
3664 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
3665 result based on those same flags for the arguments. But if the
3666 arguments aren't really even `tree' expressions, we shouldn't be trying
3667 to do this. */
3669 /* Expressions without side effects may be constant if their
3670 arguments are as well. */
3671 constant = (TREE_CODE_CLASS (code) == tcc_comparison
3672 || TREE_CODE_CLASS (code) == tcc_binary);
3673 read_only = 1;
3674 side_effects = TREE_SIDE_EFFECTS (t);
3676 PROCESS_ARG(0);
3677 PROCESS_ARG(1);
3679 TREE_READONLY (t) = read_only;
3680 TREE_CONSTANT (t) = constant;
3681 TREE_SIDE_EFFECTS (t) = side_effects;
3682 TREE_THIS_VOLATILE (t)
3683 = (TREE_CODE_CLASS (code) == tcc_reference
3684 && arg0 && TREE_THIS_VOLATILE (arg0));
3686 return t;
3690 tree
3691 build3_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3692 tree arg2 MEM_STAT_DECL)
3694 bool constant, read_only, side_effects;
3695 tree t;
3697 gcc_assert (TREE_CODE_LENGTH (code) == 3);
3698 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3700 t = make_node_stat (code PASS_MEM_STAT);
3701 TREE_TYPE (t) = tt;
3703 read_only = 1;
3705 /* As a special exception, if COND_EXPR has NULL branches, we
3706 assume that it is a gimple statement and always consider
3707 it to have side effects. */
3708 if (code == COND_EXPR
3709 && tt == void_type_node
3710 && arg1 == NULL_TREE
3711 && arg2 == NULL_TREE)
3712 side_effects = true;
3713 else
3714 side_effects = TREE_SIDE_EFFECTS (t);
3716 PROCESS_ARG(0);
3717 PROCESS_ARG(1);
3718 PROCESS_ARG(2);
3720 if (code == COND_EXPR)
3721 TREE_READONLY (t) = read_only;
3723 TREE_SIDE_EFFECTS (t) = side_effects;
3724 TREE_THIS_VOLATILE (t)
3725 = (TREE_CODE_CLASS (code) == tcc_reference
3726 && arg0 && TREE_THIS_VOLATILE (arg0));
3728 return t;
3731 tree
3732 build4_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3733 tree arg2, tree arg3 MEM_STAT_DECL)
3735 bool constant, read_only, side_effects;
3736 tree t;
3738 gcc_assert (TREE_CODE_LENGTH (code) == 4);
3740 t = make_node_stat (code PASS_MEM_STAT);
3741 TREE_TYPE (t) = tt;
3743 side_effects = TREE_SIDE_EFFECTS (t);
3745 PROCESS_ARG(0);
3746 PROCESS_ARG(1);
3747 PROCESS_ARG(2);
3748 PROCESS_ARG(3);
3750 TREE_SIDE_EFFECTS (t) = side_effects;
3751 TREE_THIS_VOLATILE (t)
3752 = (TREE_CODE_CLASS (code) == tcc_reference
3753 && arg0 && TREE_THIS_VOLATILE (arg0));
3755 return t;
3758 tree
3759 build5_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3760 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
3762 bool constant, read_only, side_effects;
3763 tree t;
3765 gcc_assert (TREE_CODE_LENGTH (code) == 5);
3767 t = make_node_stat (code PASS_MEM_STAT);
3768 TREE_TYPE (t) = tt;
3770 side_effects = TREE_SIDE_EFFECTS (t);
3772 PROCESS_ARG(0);
3773 PROCESS_ARG(1);
3774 PROCESS_ARG(2);
3775 PROCESS_ARG(3);
3776 PROCESS_ARG(4);
3778 TREE_SIDE_EFFECTS (t) = side_effects;
3779 TREE_THIS_VOLATILE (t)
3780 = (TREE_CODE_CLASS (code) == tcc_reference
3781 && arg0 && TREE_THIS_VOLATILE (arg0));
3783 return t;
3786 tree
3787 build6_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3788 tree arg2, tree arg3, tree arg4, tree arg5 MEM_STAT_DECL)
3790 bool constant, read_only, side_effects;
3791 tree t;
3793 gcc_assert (code == TARGET_MEM_REF);
3795 t = make_node_stat (code PASS_MEM_STAT);
3796 TREE_TYPE (t) = tt;
3798 side_effects = TREE_SIDE_EFFECTS (t);
3800 PROCESS_ARG(0);
3801 PROCESS_ARG(1);
3802 PROCESS_ARG(2);
3803 PROCESS_ARG(3);
3804 PROCESS_ARG(4);
3805 PROCESS_ARG(5);
3807 TREE_SIDE_EFFECTS (t) = side_effects;
3808 TREE_THIS_VOLATILE (t) = 0;
3810 return t;
3813 /* Similar except don't specify the TREE_TYPE
3814 and leave the TREE_SIDE_EFFECTS as 0.
3815 It is permissible for arguments to be null,
3816 or even garbage if their values do not matter. */
3818 tree
3819 build_nt (enum tree_code code, ...)
3821 tree t;
3822 int length;
3823 int i;
3824 va_list p;
3826 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3828 va_start (p, code);
3830 t = make_node (code);
3831 length = TREE_CODE_LENGTH (code);
3833 for (i = 0; i < length; i++)
3834 TREE_OPERAND (t, i) = va_arg (p, tree);
3836 va_end (p);
3837 return t;
3840 /* Similar to build_nt, but for creating a CALL_EXPR object with
3841 ARGLIST passed as a list. */
3843 tree
3844 build_nt_call_list (tree fn, tree arglist)
3846 tree t;
3847 int i;
3849 t = build_vl_exp (CALL_EXPR, list_length (arglist) + 3);
3850 CALL_EXPR_FN (t) = fn;
3851 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
3852 for (i = 0; arglist; arglist = TREE_CHAIN (arglist), i++)
3853 CALL_EXPR_ARG (t, i) = TREE_VALUE (arglist);
3854 return t;
3857 /* Similar to build_nt, but for creating a CALL_EXPR object with a
3858 tree VEC. */
3860 tree
3861 build_nt_call_vec (tree fn, VEC(tree,gc) *args)
3863 tree ret, t;
3864 unsigned int ix;
3866 ret = build_vl_exp (CALL_EXPR, VEC_length (tree, args) + 3);
3867 CALL_EXPR_FN (ret) = fn;
3868 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
3869 for (ix = 0; VEC_iterate (tree, args, ix, t); ++ix)
3870 CALL_EXPR_ARG (ret, ix) = t;
3871 return ret;
3874 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
3875 We do NOT enter this node in any sort of symbol table.
3877 LOC is the location of the decl.
3879 layout_decl is used to set up the decl's storage layout.
3880 Other slots are initialized to 0 or null pointers. */
3882 tree
3883 build_decl_stat (location_t loc, enum tree_code code, tree name,
3884 tree type MEM_STAT_DECL)
3886 tree t;
3888 t = make_node_stat (code PASS_MEM_STAT);
3889 DECL_SOURCE_LOCATION (t) = loc;
3891 /* if (type == error_mark_node)
3892 type = integer_type_node; */
3893 /* That is not done, deliberately, so that having error_mark_node
3894 as the type can suppress useless errors in the use of this variable. */
3896 DECL_NAME (t) = name;
3897 TREE_TYPE (t) = type;
3899 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
3900 layout_decl (t, 0);
3902 return t;
3905 /* Builds and returns function declaration with NAME and TYPE. */
3907 tree
3908 build_fn_decl (const char *name, tree type)
3910 tree id = get_identifier (name);
3911 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
3913 DECL_EXTERNAL (decl) = 1;
3914 TREE_PUBLIC (decl) = 1;
3915 DECL_ARTIFICIAL (decl) = 1;
3916 TREE_NOTHROW (decl) = 1;
3918 return decl;
3922 /* BLOCK nodes are used to represent the structure of binding contours
3923 and declarations, once those contours have been exited and their contents
3924 compiled. This information is used for outputting debugging info. */
3926 tree
3927 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
3929 tree block = make_node (BLOCK);
3931 BLOCK_VARS (block) = vars;
3932 BLOCK_SUBBLOCKS (block) = subblocks;
3933 BLOCK_SUPERCONTEXT (block) = supercontext;
3934 BLOCK_CHAIN (block) = chain;
3935 return block;
3938 expanded_location
3939 expand_location (source_location loc)
3941 expanded_location xloc;
3942 if (loc == 0)
3944 xloc.file = NULL;
3945 xloc.line = 0;
3946 xloc.column = 0;
3947 xloc.sysp = 0;
3949 else
3951 const struct line_map *map = linemap_lookup (line_table, loc);
3952 xloc.file = map->to_file;
3953 xloc.line = SOURCE_LINE (map, loc);
3954 xloc.column = SOURCE_COLUMN (map, loc);
3955 xloc.sysp = map->sysp != 0;
3957 return xloc;
3961 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
3963 LOC is the location to use in tree T. */
3965 void
3966 protected_set_expr_location (tree t, location_t loc)
3968 if (t && CAN_HAVE_LOCATION_P (t))
3969 SET_EXPR_LOCATION (t, loc);
3972 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
3973 is ATTRIBUTE. */
3975 tree
3976 build_decl_attribute_variant (tree ddecl, tree attribute)
3978 DECL_ATTRIBUTES (ddecl) = attribute;
3979 return ddecl;
3982 /* Borrowed from hashtab.c iterative_hash implementation. */
3983 #define mix(a,b,c) \
3985 a -= b; a -= c; a ^= (c>>13); \
3986 b -= c; b -= a; b ^= (a<< 8); \
3987 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
3988 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
3989 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
3990 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
3991 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
3992 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
3993 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
3997 /* Produce good hash value combining VAL and VAL2. */
3998 hashval_t
3999 iterative_hash_hashval_t (hashval_t val, hashval_t val2)
4001 /* the golden ratio; an arbitrary value. */
4002 hashval_t a = 0x9e3779b9;
4004 mix (a, val, val2);
4005 return val2;
4008 /* Produce good hash value combining VAL and VAL2. */
4009 hashval_t
4010 iterative_hash_host_wide_int (HOST_WIDE_INT val, hashval_t val2)
4012 if (sizeof (HOST_WIDE_INT) == sizeof (hashval_t))
4013 return iterative_hash_hashval_t (val, val2);
4014 else
4016 hashval_t a = (hashval_t) val;
4017 /* Avoid warnings about shifting of more than the width of the type on
4018 hosts that won't execute this path. */
4019 int zero = 0;
4020 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 8 + zero));
4021 mix (a, b, val2);
4022 if (sizeof (HOST_WIDE_INT) > 2 * sizeof (hashval_t))
4024 hashval_t a = (hashval_t) (val >> (sizeof (hashval_t) * 16 + zero));
4025 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 24 + zero));
4026 mix (a, b, val2);
4028 return val2;
4032 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4033 is ATTRIBUTE and its qualifiers are QUALS.
4035 Record such modified types already made so we don't make duplicates. */
4037 static tree
4038 build_type_attribute_qual_variant (tree ttype, tree attribute, int quals)
4040 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
4042 hashval_t hashcode = 0;
4043 tree ntype;
4044 enum tree_code code = TREE_CODE (ttype);
4046 /* Building a distinct copy of a tagged type is inappropriate; it
4047 causes breakage in code that expects there to be a one-to-one
4048 relationship between a struct and its fields.
4049 build_duplicate_type is another solution (as used in
4050 handle_transparent_union_attribute), but that doesn't play well
4051 with the stronger C++ type identity model. */
4052 if (TREE_CODE (ttype) == RECORD_TYPE
4053 || TREE_CODE (ttype) == UNION_TYPE
4054 || TREE_CODE (ttype) == QUAL_UNION_TYPE
4055 || TREE_CODE (ttype) == ENUMERAL_TYPE)
4057 warning (OPT_Wattributes,
4058 "ignoring attributes applied to %qT after definition",
4059 TYPE_MAIN_VARIANT (ttype));
4060 return build_qualified_type (ttype, quals);
4063 ttype = build_qualified_type (ttype, TYPE_UNQUALIFIED);
4064 ntype = build_distinct_type_copy (ttype);
4066 TYPE_ATTRIBUTES (ntype) = attribute;
4068 hashcode = iterative_hash_object (code, hashcode);
4069 if (TREE_TYPE (ntype))
4070 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype)),
4071 hashcode);
4072 hashcode = attribute_hash_list (attribute, hashcode);
4074 switch (TREE_CODE (ntype))
4076 case FUNCTION_TYPE:
4077 hashcode = type_hash_list (TYPE_ARG_TYPES (ntype), hashcode);
4078 break;
4079 case ARRAY_TYPE:
4080 if (TYPE_DOMAIN (ntype))
4081 hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype)),
4082 hashcode);
4083 break;
4084 case INTEGER_TYPE:
4085 hashcode = iterative_hash_object
4086 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype)), hashcode);
4087 hashcode = iterative_hash_object
4088 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype)), hashcode);
4089 break;
4090 case REAL_TYPE:
4091 case FIXED_POINT_TYPE:
4093 unsigned int precision = TYPE_PRECISION (ntype);
4094 hashcode = iterative_hash_object (precision, hashcode);
4096 break;
4097 default:
4098 break;
4101 ntype = type_hash_canon (hashcode, ntype);
4103 /* If the target-dependent attributes make NTYPE different from
4104 its canonical type, we will need to use structural equality
4105 checks for this type. */
4106 if (TYPE_STRUCTURAL_EQUALITY_P (ttype)
4107 || !targetm.comp_type_attributes (ntype, ttype))
4108 SET_TYPE_STRUCTURAL_EQUALITY (ntype);
4109 else if (TYPE_CANONICAL (ntype) == ntype)
4110 TYPE_CANONICAL (ntype) = TYPE_CANONICAL (ttype);
4112 ttype = build_qualified_type (ntype, quals);
4114 else if (TYPE_QUALS (ttype) != quals)
4115 ttype = build_qualified_type (ttype, quals);
4117 return ttype;
4121 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4122 is ATTRIBUTE.
4124 Record such modified types already made so we don't make duplicates. */
4126 tree
4127 build_type_attribute_variant (tree ttype, tree attribute)
4129 return build_type_attribute_qual_variant (ttype, attribute,
4130 TYPE_QUALS (ttype));
4133 /* Reset all language specific information still present in TYPE. */
4135 static void
4136 free_lang_data_in_type (tree type)
4138 gcc_assert (TYPE_P (type));
4140 /* Fill in the alias-set. We need to at least track zeroness here
4141 for correctness. */
4142 if (lang_hooks.get_alias_set (type) == 0)
4143 TYPE_ALIAS_SET (type) = 0;
4145 /* Give the FE a chance to remove its own data first. */
4146 lang_hooks.free_lang_data (type);
4148 TREE_LANG_FLAG_0 (type) = 0;
4149 TREE_LANG_FLAG_1 (type) = 0;
4150 TREE_LANG_FLAG_2 (type) = 0;
4151 TREE_LANG_FLAG_3 (type) = 0;
4152 TREE_LANG_FLAG_4 (type) = 0;
4153 TREE_LANG_FLAG_5 (type) = 0;
4154 TREE_LANG_FLAG_6 (type) = 0;
4156 if (TREE_CODE (type) == FUNCTION_TYPE)
4158 /* Remove the const and volatile qualifiers from arguments. The
4159 C++ front end removes them, but the C front end does not,
4160 leading to false ODR violation errors when merging two
4161 instances of the same function signature compiled by
4162 different front ends. */
4163 tree p;
4165 for (p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
4167 tree arg_type = TREE_VALUE (p);
4169 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
4171 int quals = TYPE_QUALS (arg_type)
4172 & ~TYPE_QUAL_CONST
4173 & ~TYPE_QUAL_VOLATILE;
4174 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
4175 free_lang_data_in_type (TREE_VALUE (p));
4180 /* Remove members that are not actually FIELD_DECLs from the field
4181 list of an aggregate. These occur in C++. */
4182 if (TREE_CODE (type) == RECORD_TYPE
4183 || TREE_CODE (type) == UNION_TYPE
4184 || TREE_CODE (type) == QUAL_UNION_TYPE)
4186 tree prev, member;
4188 /* Note that TYPE_FIELDS can be shared across distinct
4189 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
4190 to be removed, we cannot set its TREE_CHAIN to NULL.
4191 Otherwise, we would not be able to find all the other fields
4192 in the other instances of this TREE_TYPE.
4194 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
4195 prev = NULL_TREE;
4196 member = TYPE_FIELDS (type);
4197 while (member)
4199 if (TREE_CODE (member) == FIELD_DECL)
4201 if (prev)
4202 TREE_CHAIN (prev) = member;
4203 else
4204 TYPE_FIELDS (type) = member;
4205 prev = member;
4208 member = TREE_CHAIN (member);
4211 if (prev)
4212 TREE_CHAIN (prev) = NULL_TREE;
4213 else
4214 TYPE_FIELDS (type) = NULL_TREE;
4216 TYPE_METHODS (type) = NULL_TREE;
4217 if (TYPE_BINFO (type))
4219 tree binfo = TYPE_BINFO (type);
4221 if (BINFO_VIRTUALS (binfo))
4223 /* If the virtual function table for BINFO contains
4224 entries, these may be useful for folding OBJ_TYPE_REF
4225 expressions (see gimple_fold_obj_type_ref). In that
4226 case, we only clear the unused fields in the BINFO
4227 structure. */
4228 BINFO_OFFSET (binfo) = NULL_TREE;
4229 BINFO_VTABLE (binfo) = NULL_TREE;
4230 BINFO_VPTR_FIELD (binfo) = NULL_TREE;
4231 BINFO_BASE_ACCESSES (binfo) = NULL;
4232 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
4233 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
4234 BINFO_VPTR_FIELD (binfo) = NULL_TREE;
4236 else
4238 /* Otherwise, get rid of the whole binfo data. */
4239 TYPE_BINFO (type) = NULL_TREE;
4243 else
4245 /* For non-aggregate types, clear out the language slot (which
4246 overloads TYPE_BINFO). */
4247 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
4250 TYPE_CONTEXT (type) = NULL_TREE;
4251 TYPE_STUB_DECL (type) = NULL_TREE;
4255 /* Return true if DECL may need an assembler name to be set. */
4257 static inline bool
4258 need_assembler_name_p (tree decl)
4260 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
4261 if (TREE_CODE (decl) != FUNCTION_DECL
4262 && TREE_CODE (decl) != VAR_DECL)
4263 return false;
4265 /* If DECL already has its assembler name set, it does not need a
4266 new one. */
4267 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
4268 || DECL_ASSEMBLER_NAME_SET_P (decl))
4269 return false;
4271 /* For VAR_DECLs, only static, public and external symbols need an
4272 assembler name. */
4273 if (TREE_CODE (decl) == VAR_DECL
4274 && !TREE_STATIC (decl)
4275 && !TREE_PUBLIC (decl)
4276 && !DECL_EXTERNAL (decl))
4277 return false;
4279 /* Do not set assembler name on builtins. Allow RTL expansion to
4280 decide whether to expand inline or via a regular call. */
4281 if (TREE_CODE (decl) == FUNCTION_DECL
4282 && DECL_BUILT_IN (decl)
4283 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
4284 return false;
4286 /* For FUNCTION_DECLs, only used functions and functions
4287 represented in the callgraph need an assembler name. */
4288 if (TREE_CODE (decl) == FUNCTION_DECL
4289 && cgraph_node_for_decl (decl) == NULL
4290 && !TREE_USED (decl))
4291 return false;
4293 return true;
4297 /* Remove all the non-variable decls from BLOCK. LOCALS is the set of
4298 variables in DECL_STRUCT_FUNCTION (FN)->local_decls. Every decl
4299 in BLOCK that is not in LOCALS is removed. */
4301 static void
4302 free_lang_data_in_block (tree fn, tree block, struct pointer_set_t *locals)
4304 tree *tp, t;
4306 tp = &BLOCK_VARS (block);
4307 while (*tp)
4309 if (!pointer_set_contains (locals, *tp))
4310 *tp = TREE_CHAIN (*tp);
4311 else
4312 tp = &TREE_CHAIN (*tp);
4315 for (t = BLOCK_SUBBLOCKS (block); t; t = BLOCK_CHAIN (t))
4316 free_lang_data_in_block (fn, t, locals);
4320 /* Reset all language specific information still present in symbol
4321 DECL. */
4323 static void
4324 free_lang_data_in_decl (tree decl)
4326 gcc_assert (DECL_P (decl));
4328 /* Give the FE a chance to remove its own data first. */
4329 lang_hooks.free_lang_data (decl);
4331 TREE_LANG_FLAG_0 (decl) = 0;
4332 TREE_LANG_FLAG_1 (decl) = 0;
4333 TREE_LANG_FLAG_2 (decl) = 0;
4334 TREE_LANG_FLAG_3 (decl) = 0;
4335 TREE_LANG_FLAG_4 (decl) = 0;
4336 TREE_LANG_FLAG_5 (decl) = 0;
4337 TREE_LANG_FLAG_6 (decl) = 0;
4339 /* Identifiers need not have a type. */
4340 if (DECL_NAME (decl))
4341 TREE_TYPE (DECL_NAME (decl)) = NULL_TREE;
4343 if (TREE_CODE (decl) == CONST_DECL)
4344 DECL_CONTEXT (decl) = NULL_TREE;
4346 /* Ignore any intervening types, because we are going to clear their
4347 TYPE_CONTEXT fields. */
4348 if (TREE_CODE (decl) != FIELD_DECL)
4349 DECL_CONTEXT (decl) = decl_function_context (decl);
4351 if (DECL_CONTEXT (decl)
4352 && TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
4353 DECL_CONTEXT (decl) = NULL_TREE;
4355 if (TREE_CODE (decl) == VAR_DECL)
4357 tree context = DECL_CONTEXT (decl);
4359 if (context)
4361 enum tree_code code = TREE_CODE (context);
4362 if (code == FUNCTION_DECL && DECL_ABSTRACT (context))
4364 /* Do not clear the decl context here, that will promote
4365 all vars to global ones. */
4366 DECL_INITIAL (decl) = NULL_TREE;
4369 if (TREE_STATIC (decl))
4370 DECL_CONTEXT (decl) = NULL_TREE;
4374 if (TREE_CODE (decl) == PARM_DECL
4375 || TREE_CODE (decl) == FIELD_DECL
4376 || TREE_CODE (decl) == RESULT_DECL)
4378 tree unit_size = DECL_SIZE_UNIT (decl);
4379 tree size = DECL_SIZE (decl);
4380 if ((unit_size && TREE_CODE (unit_size) != INTEGER_CST)
4381 || (size && TREE_CODE (size) != INTEGER_CST))
4383 DECL_SIZE_UNIT (decl) = NULL_TREE;
4384 DECL_SIZE (decl) = NULL_TREE;
4387 if (TREE_CODE (decl) == FIELD_DECL
4388 && DECL_FIELD_OFFSET (decl)
4389 && TREE_CODE (DECL_FIELD_OFFSET (decl)) != INTEGER_CST)
4390 DECL_FIELD_OFFSET (decl) = NULL_TREE;
4392 else if (TREE_CODE (decl) == FUNCTION_DECL)
4394 if (gimple_has_body_p (decl))
4396 tree t;
4397 struct pointer_set_t *locals;
4399 /* If DECL has a gimple body, then the context for its
4400 arguments must be DECL. Otherwise, it doesn't really
4401 matter, as we will not be emitting any code for DECL. In
4402 general, there may be other instances of DECL created by
4403 the front end and since PARM_DECLs are generally shared,
4404 their DECL_CONTEXT changes as the replicas of DECL are
4405 created. The only time where DECL_CONTEXT is important
4406 is for the FUNCTION_DECLs that have a gimple body (since
4407 the PARM_DECL will be used in the function's body). */
4408 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
4409 DECL_CONTEXT (t) = decl;
4411 /* Collect all the symbols declared in DECL. */
4412 locals = pointer_set_create ();
4413 t = DECL_STRUCT_FUNCTION (decl)->local_decls;
4414 for (; t; t = TREE_CHAIN (t))
4416 pointer_set_insert (locals, TREE_VALUE (t));
4418 /* All the local symbols should have DECL as their
4419 context. */
4420 DECL_CONTEXT (TREE_VALUE (t)) = decl;
4423 /* Get rid of any decl not in local_decls. */
4424 free_lang_data_in_block (decl, DECL_INITIAL (decl), locals);
4426 pointer_set_destroy (locals);
4429 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
4430 At this point, it is not needed anymore. */
4431 DECL_SAVED_TREE (decl) = NULL_TREE;
4433 else if (TREE_CODE (decl) == VAR_DECL)
4435 tree expr = DECL_DEBUG_EXPR (decl);
4436 if (expr
4437 && TREE_CODE (expr) == VAR_DECL
4438 && !TREE_STATIC (expr) && !DECL_EXTERNAL (expr))
4439 SET_DECL_DEBUG_EXPR (decl, NULL_TREE);
4441 if (DECL_EXTERNAL (decl))
4442 DECL_INITIAL (decl) = NULL_TREE;
4444 else if (TREE_CODE (decl) == TYPE_DECL)
4446 DECL_INITIAL (decl) = NULL_TREE;
4448 /* DECL_CONTEXT is overloaded as DECL_FIELD_CONTEXT for
4449 FIELD_DECLs, which should be preserved. Otherwise,
4450 we shouldn't be concerned with source-level lexical
4451 nesting beyond this point. */
4452 DECL_CONTEXT (decl) = NULL_TREE;
4457 /* Data used when collecting DECLs and TYPEs for language data removal. */
4459 struct free_lang_data_d
4461 /* Worklist to avoid excessive recursion. */
4462 VEC(tree,heap) *worklist;
4464 /* Set of traversed objects. Used to avoid duplicate visits. */
4465 struct pointer_set_t *pset;
4467 /* Array of symbols to process with free_lang_data_in_decl. */
4468 VEC(tree,heap) *decls;
4470 /* Array of types to process with free_lang_data_in_type. */
4471 VEC(tree,heap) *types;
4475 /* Save all language fields needed to generate proper debug information
4476 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
4478 static void
4479 save_debug_info_for_decl (tree t)
4481 /*struct saved_debug_info_d *sdi;*/
4483 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && DECL_P (t));
4485 /* FIXME. Partial implementation for saving debug info removed. */
4489 /* Save all language fields needed to generate proper debug information
4490 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
4492 static void
4493 save_debug_info_for_type (tree t)
4495 /*struct saved_debug_info_d *sdi;*/
4497 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && TYPE_P (t));
4499 /* FIXME. Partial implementation for saving debug info removed. */
4503 /* Add type or decl T to one of the list of tree nodes that need their
4504 language data removed. The lists are held inside FLD. */
4506 static void
4507 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
4509 if (DECL_P (t))
4511 VEC_safe_push (tree, heap, fld->decls, t);
4512 if (debug_info_level > DINFO_LEVEL_TERSE)
4513 save_debug_info_for_decl (t);
4515 else if (TYPE_P (t))
4517 VEC_safe_push (tree, heap, fld->types, t);
4518 if (debug_info_level > DINFO_LEVEL_TERSE)
4519 save_debug_info_for_type (t);
4521 else
4522 gcc_unreachable ();
4525 #define PUSH(t) \
4526 if (t && !pointer_set_contains (fld->pset, t)) \
4527 VEC_safe_push (tree, heap, fld->worklist, (t))
4529 /* Operand callback helper for free_lang_data_in_node. *TP is the
4530 subtree operand being considered. */
4532 static tree
4533 find_decls_types_r (tree *tp, int *ws ATTRIBUTE_UNUSED, void *data)
4535 tree t = *tp;
4536 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
4538 if (TREE_CODE (t) == TREE_LIST)
4539 return NULL_TREE;
4541 if (DECL_P (t))
4543 /* Note that walk_tree does not traverse every possible field in
4544 decls, so we have to do our own traversals here. */
4545 add_tree_to_fld_list (t, fld);
4547 PUSH (DECL_NAME (t));
4548 PUSH (DECL_CONTEXT (t));
4549 PUSH (DECL_SIZE (t));
4550 PUSH (DECL_SIZE_UNIT (t));
4551 PUSH (DECL_INITIAL(t));
4552 PUSH (DECL_ATTRIBUTES (t));
4553 PUSH (DECL_ABSTRACT_ORIGIN (t));
4555 if (TREE_CODE (t) == FUNCTION_DECL)
4557 PUSH (DECL_ARGUMENTS (t));
4558 PUSH (DECL_RESULT (t));
4560 else if (TREE_CODE (t) == TYPE_DECL)
4562 PUSH (DECL_ARGUMENT_FLD (t));
4563 PUSH (DECL_VINDEX (t));
4565 else if (TREE_CODE (t) == FIELD_DECL)
4567 PUSH (DECL_FIELD_OFFSET (t));
4568 PUSH (DECL_BIT_FIELD_TYPE (t));
4569 PUSH (DECL_QUALIFIER (t));
4570 PUSH (DECL_FIELD_BIT_OFFSET (t));
4571 PUSH (DECL_FCONTEXT (t));
4573 else if (TREE_CODE (t) == VAR_DECL)
4575 PUSH (DECL_SECTION_NAME (t));
4576 PUSH (DECL_COMDAT_GROUP (t));
4579 PUSH (TREE_CHAIN (t));
4580 *ws = 0;
4582 else if (TYPE_P (t))
4584 /* Note that walk_tree does not traverse every possible field in
4585 types, so we have to do our own traversals here. */
4586 add_tree_to_fld_list (t, fld);
4588 PUSH (TYPE_CACHED_VALUES (t));
4589 PUSH (TYPE_SIZE (t));
4590 PUSH (TYPE_SIZE_UNIT (t));
4591 PUSH (TYPE_ATTRIBUTES (t));
4592 PUSH (TYPE_POINTER_TO (t));
4593 PUSH (TYPE_REFERENCE_TO (t));
4594 PUSH (TYPE_NAME (t));
4595 PUSH (TYPE_MINVAL (t));
4596 PUSH (TYPE_MAXVAL (t));
4597 PUSH (TYPE_MAIN_VARIANT (t));
4598 PUSH (TYPE_NEXT_VARIANT (t));
4599 PUSH (TYPE_CONTEXT (t));
4600 PUSH (TYPE_CANONICAL (t));
4602 if (RECORD_OR_UNION_TYPE_P (t)
4603 && TYPE_BINFO (t))
4605 unsigned i;
4606 tree tem;
4607 for (i = 0; VEC_iterate (tree, BINFO_BASE_BINFOS (TYPE_BINFO (t)),
4608 i, tem); ++i)
4609 PUSH (TREE_TYPE (tem));
4612 PUSH (TREE_CHAIN (t));
4613 *ws = 0;
4616 PUSH (TREE_TYPE (t));
4618 return NULL_TREE;
4621 #undef PUSH
4623 /* Find decls and types in T. */
4625 static void
4626 find_decls_types (tree t, struct free_lang_data_d *fld)
4628 while (1)
4630 if (!pointer_set_contains (fld->pset, t))
4631 walk_tree (&t, find_decls_types_r, fld, fld->pset);
4632 if (VEC_empty (tree, fld->worklist))
4633 break;
4634 t = VEC_pop (tree, fld->worklist);
4638 /* Translate all the types in LIST with the corresponding runtime
4639 types. */
4641 static tree
4642 get_eh_types_for_runtime (tree list)
4644 tree head, prev;
4646 if (list == NULL_TREE)
4647 return NULL_TREE;
4649 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
4650 prev = head;
4651 list = TREE_CHAIN (list);
4652 while (list)
4654 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
4655 TREE_CHAIN (prev) = n;
4656 prev = TREE_CHAIN (prev);
4657 list = TREE_CHAIN (list);
4660 return head;
4664 /* Find decls and types referenced in EH region R and store them in
4665 FLD->DECLS and FLD->TYPES. */
4667 static void
4668 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
4670 if (r == NULL)
4671 return;
4673 /* The types referenced in R must first be changed to the EH types
4674 used at runtime. This removes references to FE types in the
4675 region. */
4676 if (r->type == ERT_CATCH)
4678 tree list = r->u.eh_catch.type_list;
4679 r->u.eh_catch.type_list = get_eh_types_for_runtime (list);
4680 find_decls_types (r->u.eh_catch.type_list, fld);
4682 else if (r->type == ERT_ALLOWED_EXCEPTIONS)
4684 tree list = r->u.allowed.type_list;
4685 r->u.allowed.type_list = get_eh_types_for_runtime (list);
4686 find_decls_types (r->u.allowed.type_list, fld);
4691 /* Find decls and types referenced in cgraph node N and store them in
4692 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
4693 look for *every* kind of DECL and TYPE node reachable from N,
4694 including those embedded inside types and decls (i.e,, TYPE_DECLs,
4695 NAMESPACE_DECLs, etc). */
4697 static void
4698 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
4700 basic_block bb;
4701 struct function *fn;
4702 tree t;
4704 find_decls_types (n->decl, fld);
4706 if (!gimple_has_body_p (n->decl))
4707 return;
4709 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
4711 fn = DECL_STRUCT_FUNCTION (n->decl);
4713 /* Traverse locals. */
4714 for (t = fn->local_decls; t; t = TREE_CHAIN (t))
4715 find_decls_types (TREE_VALUE (t), fld);
4717 /* Traverse EH regions in FN. */
4718 if (fn->eh->region_array)
4720 unsigned i;
4721 eh_region r;
4723 for (i = 0; VEC_iterate (eh_region, fn->eh->region_array, i, r); i++)
4724 find_decls_types_in_eh_region (r, fld);
4727 /* Traverse every statement in FN. */
4728 FOR_EACH_BB_FN (bb, fn)
4730 gimple_stmt_iterator si;
4731 unsigned i;
4733 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
4735 gimple phi = gsi_stmt (si);
4737 for (i = 0; i < gimple_phi_num_args (phi); i++)
4739 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
4740 find_decls_types (*arg_p, fld);
4744 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
4746 gimple stmt = gsi_stmt (si);
4748 for (i = 0; i < gimple_num_ops (stmt); i++)
4750 tree arg = gimple_op (stmt, i);
4751 find_decls_types (arg, fld);
4758 /* Find decls and types referenced in varpool node N and store them in
4759 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
4760 look for *every* kind of DECL and TYPE node reachable from N,
4761 including those embedded inside types and decls (i.e,, TYPE_DECLs,
4762 NAMESPACE_DECLs, etc). */
4764 static void
4765 find_decls_types_in_var (struct varpool_node *v, struct free_lang_data_d *fld)
4767 find_decls_types (v->decl, fld);
4771 /* Free language specific information for every operand and expression
4772 in every node of the call graph. This process operates in three stages:
4774 1- Every callgraph node and varpool node is traversed looking for
4775 decls and types embedded in them. This is a more exhaustive
4776 search than that done by find_referenced_vars, because it will
4777 also collect individual fields, decls embedded in types, etc.
4779 2- All the decls found are sent to free_lang_data_in_decl.
4781 3- All the types found are sent to free_lang_data_in_type.
4783 The ordering between decls and types is important because
4784 free_lang_data_in_decl sets assembler names, which includes
4785 mangling. So types cannot be freed up until assembler names have
4786 been set up. */
4788 static void
4789 free_lang_data_in_cgraph (void)
4791 struct cgraph_node *n;
4792 struct varpool_node *v;
4793 struct free_lang_data_d fld;
4794 tree t;
4795 unsigned i;
4796 alias_pair *p;
4798 /* Initialize sets and arrays to store referenced decls and types. */
4799 fld.pset = pointer_set_create ();
4800 fld.worklist = NULL;
4801 fld.decls = VEC_alloc (tree, heap, 100);
4802 fld.types = VEC_alloc (tree, heap, 100);
4804 /* Find decls and types in the body of every function in the callgraph. */
4805 for (n = cgraph_nodes; n; n = n->next)
4806 find_decls_types_in_node (n, &fld);
4808 for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); i++)
4809 find_decls_types (p->decl, &fld);
4811 /* Find decls and types in every varpool symbol. */
4812 for (v = varpool_nodes_queue; v; v = v->next_needed)
4813 find_decls_types_in_var (v, &fld);
4815 /* Set the assembler name on every decl found. We need to do this
4816 now because free_lang_data_in_decl will invalidate data needed
4817 for mangling. This breaks mangling on interdependent decls. */
4818 for (i = 0; VEC_iterate (tree, fld.decls, i, t); i++)
4819 if (need_assembler_name_p (t))
4821 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
4822 diagnostics that use input_location to show locus
4823 information. The problem here is that, at this point,
4824 input_location is generally anchored to the end of the file
4825 (since the parser is long gone), so we don't have a good
4826 position to pin it to.
4828 To alleviate this problem, this uses the location of T's
4829 declaration. Examples of this are
4830 testsuite/g++.dg/template/cond2.C and
4831 testsuite/g++.dg/template/pr35240.C. */
4832 location_t saved_location = input_location;
4833 input_location = DECL_SOURCE_LOCATION (t);
4835 decl_assembler_name (t);
4837 input_location = saved_location;
4840 /* Traverse every decl found freeing its language data. */
4841 for (i = 0; VEC_iterate (tree, fld.decls, i, t); i++)
4842 free_lang_data_in_decl (t);
4844 /* Traverse every type found freeing its language data. */
4845 for (i = 0; VEC_iterate (tree, fld.types, i, t); i++)
4846 free_lang_data_in_type (t);
4848 pointer_set_destroy (fld.pset);
4849 VEC_free (tree, heap, fld.worklist);
4850 VEC_free (tree, heap, fld.decls);
4851 VEC_free (tree, heap, fld.types);
4855 /* Free resources that are used by FE but are not needed once they are done. */
4857 static unsigned
4858 free_lang_data (void)
4860 /* Traverse the IL resetting language specific information for
4861 operands, expressions, etc. */
4862 free_lang_data_in_cgraph ();
4864 /* Create gimple variants for common types. */
4865 ptrdiff_type_node = integer_type_node;
4866 fileptr_type_node = ptr_type_node;
4867 if (TREE_CODE (boolean_type_node) != BOOLEAN_TYPE
4868 || (TYPE_MODE (boolean_type_node)
4869 != mode_for_size (BOOL_TYPE_SIZE, MODE_INT, 0))
4870 || TYPE_PRECISION (boolean_type_node) != 1
4871 || !TYPE_UNSIGNED (boolean_type_node))
4873 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
4874 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
4875 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
4876 TYPE_PRECISION (boolean_type_node) = 1;
4877 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
4878 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
4881 /* Unify char_type_node with its properly signed variant. */
4882 if (TYPE_UNSIGNED (char_type_node))
4883 unsigned_char_type_node = char_type_node;
4884 else
4885 signed_char_type_node = char_type_node;
4887 /* Reset some langhooks. */
4888 lang_hooks.callgraph.analyze_expr = NULL;
4889 lang_hooks.types_compatible_p = NULL;
4890 lang_hooks.dwarf_name = lhd_dwarf_name;
4891 lang_hooks.decl_printable_name = gimple_decl_printable_name;
4892 lang_hooks.set_decl_assembler_name = lhd_set_decl_assembler_name;
4893 lang_hooks.fold_obj_type_ref = gimple_fold_obj_type_ref;
4895 /* Reset diagnostic machinery. */
4896 diagnostic_starter (global_dc) = default_diagnostic_starter;
4897 diagnostic_finalizer (global_dc) = default_diagnostic_finalizer;
4898 diagnostic_format_decoder (global_dc) = default_tree_printer;
4900 return 0;
4904 /* Gate function for free_lang_data. */
4906 static bool
4907 gate_free_lang_data (void)
4909 /* FIXME. Remove after save_debug_info is working. */
4910 return !flag_gtoggle && debug_info_level <= DINFO_LEVEL_TERSE;
4914 struct simple_ipa_opt_pass pass_ipa_free_lang_data =
4917 SIMPLE_IPA_PASS,
4918 NULL, /* name */
4919 gate_free_lang_data, /* gate */
4920 free_lang_data, /* execute */
4921 NULL, /* sub */
4922 NULL, /* next */
4923 0, /* static_pass_number */
4924 TV_IPA_FREE_LANG_DATA, /* tv_id */
4925 0, /* properties_required */
4926 0, /* properties_provided */
4927 0, /* properties_destroyed */
4928 0, /* todo_flags_start */
4929 TODO_ggc_collect /* todo_flags_finish */
4933 /* Return nonzero if IDENT is a valid name for attribute ATTR,
4934 or zero if not.
4936 We try both `text' and `__text__', ATTR may be either one. */
4937 /* ??? It might be a reasonable simplification to require ATTR to be only
4938 `text'. One might then also require attribute lists to be stored in
4939 their canonicalized form. */
4941 static int
4942 is_attribute_with_length_p (const char *attr, int attr_len, const_tree ident)
4944 int ident_len;
4945 const char *p;
4947 if (TREE_CODE (ident) != IDENTIFIER_NODE)
4948 return 0;
4950 p = IDENTIFIER_POINTER (ident);
4951 ident_len = IDENTIFIER_LENGTH (ident);
4953 if (ident_len == attr_len
4954 && strcmp (attr, p) == 0)
4955 return 1;
4957 /* If ATTR is `__text__', IDENT must be `text'; and vice versa. */
4958 if (attr[0] == '_')
4960 gcc_assert (attr[1] == '_');
4961 gcc_assert (attr[attr_len - 2] == '_');
4962 gcc_assert (attr[attr_len - 1] == '_');
4963 if (ident_len == attr_len - 4
4964 && strncmp (attr + 2, p, attr_len - 4) == 0)
4965 return 1;
4967 else
4969 if (ident_len == attr_len + 4
4970 && p[0] == '_' && p[1] == '_'
4971 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
4972 && strncmp (attr, p + 2, attr_len) == 0)
4973 return 1;
4976 return 0;
4979 /* Return nonzero if IDENT is a valid name for attribute ATTR,
4980 or zero if not.
4982 We try both `text' and `__text__', ATTR may be either one. */
4985 is_attribute_p (const char *attr, const_tree ident)
4987 return is_attribute_with_length_p (attr, strlen (attr), ident);
4990 /* Given an attribute name and a list of attributes, return a pointer to the
4991 attribute's list element if the attribute is part of the list, or NULL_TREE
4992 if not found. If the attribute appears more than once, this only
4993 returns the first occurrence; the TREE_CHAIN of the return value should
4994 be passed back in if further occurrences are wanted. */
4996 tree
4997 lookup_attribute (const char *attr_name, tree list)
4999 tree l;
5000 size_t attr_len = strlen (attr_name);
5002 for (l = list; l; l = TREE_CHAIN (l))
5004 gcc_assert (TREE_CODE (TREE_PURPOSE (l)) == IDENTIFIER_NODE);
5005 if (is_attribute_with_length_p (attr_name, attr_len, TREE_PURPOSE (l)))
5006 return l;
5008 return NULL_TREE;
5011 /* Remove any instances of attribute ATTR_NAME in LIST and return the
5012 modified list. */
5014 tree
5015 remove_attribute (const char *attr_name, tree list)
5017 tree *p;
5018 size_t attr_len = strlen (attr_name);
5020 for (p = &list; *p; )
5022 tree l = *p;
5023 gcc_assert (TREE_CODE (TREE_PURPOSE (l)) == IDENTIFIER_NODE);
5024 if (is_attribute_with_length_p (attr_name, attr_len, TREE_PURPOSE (l)))
5025 *p = TREE_CHAIN (l);
5026 else
5027 p = &TREE_CHAIN (l);
5030 return list;
5033 /* Return an attribute list that is the union of a1 and a2. */
5035 tree
5036 merge_attributes (tree a1, tree a2)
5038 tree attributes;
5040 /* Either one unset? Take the set one. */
5042 if ((attributes = a1) == 0)
5043 attributes = a2;
5045 /* One that completely contains the other? Take it. */
5047 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
5049 if (attribute_list_contained (a2, a1))
5050 attributes = a2;
5051 else
5053 /* Pick the longest list, and hang on the other list. */
5055 if (list_length (a1) < list_length (a2))
5056 attributes = a2, a2 = a1;
5058 for (; a2 != 0; a2 = TREE_CHAIN (a2))
5060 tree a;
5061 for (a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
5062 attributes);
5063 a != NULL_TREE;
5064 a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
5065 TREE_CHAIN (a)))
5067 if (TREE_VALUE (a) != NULL
5068 && TREE_CODE (TREE_VALUE (a)) == TREE_LIST
5069 && TREE_VALUE (a2) != NULL
5070 && TREE_CODE (TREE_VALUE (a2)) == TREE_LIST)
5072 if (simple_cst_list_equal (TREE_VALUE (a),
5073 TREE_VALUE (a2)) == 1)
5074 break;
5076 else if (simple_cst_equal (TREE_VALUE (a),
5077 TREE_VALUE (a2)) == 1)
5078 break;
5080 if (a == NULL_TREE)
5082 a1 = copy_node (a2);
5083 TREE_CHAIN (a1) = attributes;
5084 attributes = a1;
5089 return attributes;
5092 /* Given types T1 and T2, merge their attributes and return
5093 the result. */
5095 tree
5096 merge_type_attributes (tree t1, tree t2)
5098 return merge_attributes (TYPE_ATTRIBUTES (t1),
5099 TYPE_ATTRIBUTES (t2));
5102 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
5103 the result. */
5105 tree
5106 merge_decl_attributes (tree olddecl, tree newdecl)
5108 return merge_attributes (DECL_ATTRIBUTES (olddecl),
5109 DECL_ATTRIBUTES (newdecl));
5112 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
5114 /* Specialization of merge_decl_attributes for various Windows targets.
5116 This handles the following situation:
5118 __declspec (dllimport) int foo;
5119 int foo;
5121 The second instance of `foo' nullifies the dllimport. */
5123 tree
5124 merge_dllimport_decl_attributes (tree old, tree new_tree)
5126 tree a;
5127 int delete_dllimport_p = 1;
5129 /* What we need to do here is remove from `old' dllimport if it doesn't
5130 appear in `new'. dllimport behaves like extern: if a declaration is
5131 marked dllimport and a definition appears later, then the object
5132 is not dllimport'd. We also remove a `new' dllimport if the old list
5133 contains dllexport: dllexport always overrides dllimport, regardless
5134 of the order of declaration. */
5135 if (!VAR_OR_FUNCTION_DECL_P (new_tree))
5136 delete_dllimport_p = 0;
5137 else if (DECL_DLLIMPORT_P (new_tree)
5138 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old)))
5140 DECL_DLLIMPORT_P (new_tree) = 0;
5141 warning (OPT_Wattributes, "%q+D already declared with dllexport attribute: "
5142 "dllimport ignored", new_tree);
5144 else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new_tree))
5146 /* Warn about overriding a symbol that has already been used, e.g.:
5147 extern int __attribute__ ((dllimport)) foo;
5148 int* bar () {return &foo;}
5149 int foo;
5151 if (TREE_USED (old))
5153 warning (0, "%q+D redeclared without dllimport attribute "
5154 "after being referenced with dll linkage", new_tree);
5155 /* If we have used a variable's address with dllimport linkage,
5156 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
5157 decl may already have had TREE_CONSTANT computed.
5158 We still remove the attribute so that assembler code refers
5159 to '&foo rather than '_imp__foo'. */
5160 if (TREE_CODE (old) == VAR_DECL && TREE_ADDRESSABLE (old))
5161 DECL_DLLIMPORT_P (new_tree) = 1;
5164 /* Let an inline definition silently override the external reference,
5165 but otherwise warn about attribute inconsistency. */
5166 else if (TREE_CODE (new_tree) == VAR_DECL
5167 || !DECL_DECLARED_INLINE_P (new_tree))
5168 warning (OPT_Wattributes, "%q+D redeclared without dllimport attribute: "
5169 "previous dllimport ignored", new_tree);
5171 else
5172 delete_dllimport_p = 0;
5174 a = merge_attributes (DECL_ATTRIBUTES (old), DECL_ATTRIBUTES (new_tree));
5176 if (delete_dllimport_p)
5178 tree prev, t;
5179 const size_t attr_len = strlen ("dllimport");
5181 /* Scan the list for dllimport and delete it. */
5182 for (prev = NULL_TREE, t = a; t; prev = t, t = TREE_CHAIN (t))
5184 if (is_attribute_with_length_p ("dllimport", attr_len,
5185 TREE_PURPOSE (t)))
5187 if (prev == NULL_TREE)
5188 a = TREE_CHAIN (a);
5189 else
5190 TREE_CHAIN (prev) = TREE_CHAIN (t);
5191 break;
5196 return a;
5199 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
5200 struct attribute_spec.handler. */
5202 tree
5203 handle_dll_attribute (tree * pnode, tree name, tree args, int flags,
5204 bool *no_add_attrs)
5206 tree node = *pnode;
5207 bool is_dllimport;
5209 /* These attributes may apply to structure and union types being created,
5210 but otherwise should pass to the declaration involved. */
5211 if (!DECL_P (node))
5213 if (flags & ((int) ATTR_FLAG_DECL_NEXT | (int) ATTR_FLAG_FUNCTION_NEXT
5214 | (int) ATTR_FLAG_ARRAY_NEXT))
5216 *no_add_attrs = true;
5217 return tree_cons (name, args, NULL_TREE);
5219 if (TREE_CODE (node) == RECORD_TYPE
5220 || TREE_CODE (node) == UNION_TYPE)
5222 node = TYPE_NAME (node);
5223 if (!node)
5224 return NULL_TREE;
5226 else
5228 warning (OPT_Wattributes, "%qE attribute ignored",
5229 name);
5230 *no_add_attrs = true;
5231 return NULL_TREE;
5235 if (TREE_CODE (node) != FUNCTION_DECL
5236 && TREE_CODE (node) != VAR_DECL
5237 && TREE_CODE (node) != TYPE_DECL)
5239 *no_add_attrs = true;
5240 warning (OPT_Wattributes, "%qE attribute ignored",
5241 name);
5242 return NULL_TREE;
5245 if (TREE_CODE (node) == TYPE_DECL
5246 && TREE_CODE (TREE_TYPE (node)) != RECORD_TYPE
5247 && TREE_CODE (TREE_TYPE (node)) != UNION_TYPE)
5249 *no_add_attrs = true;
5250 warning (OPT_Wattributes, "%qE attribute ignored",
5251 name);
5252 return NULL_TREE;
5255 is_dllimport = is_attribute_p ("dllimport", name);
5257 /* Report error on dllimport ambiguities seen now before they cause
5258 any damage. */
5259 if (is_dllimport)
5261 /* Honor any target-specific overrides. */
5262 if (!targetm.valid_dllimport_attribute_p (node))
5263 *no_add_attrs = true;
5265 else if (TREE_CODE (node) == FUNCTION_DECL
5266 && DECL_DECLARED_INLINE_P (node))
5268 warning (OPT_Wattributes, "inline function %q+D declared as "
5269 " dllimport: attribute ignored", node);
5270 *no_add_attrs = true;
5272 /* Like MS, treat definition of dllimported variables and
5273 non-inlined functions on declaration as syntax errors. */
5274 else if (TREE_CODE (node) == FUNCTION_DECL && DECL_INITIAL (node))
5276 error ("function %q+D definition is marked dllimport", node);
5277 *no_add_attrs = true;
5280 else if (TREE_CODE (node) == VAR_DECL)
5282 if (DECL_INITIAL (node))
5284 error ("variable %q+D definition is marked dllimport",
5285 node);
5286 *no_add_attrs = true;
5289 /* `extern' needn't be specified with dllimport.
5290 Specify `extern' now and hope for the best. Sigh. */
5291 DECL_EXTERNAL (node) = 1;
5292 /* Also, implicitly give dllimport'd variables declared within
5293 a function global scope, unless declared static. */
5294 if (current_function_decl != NULL_TREE && !TREE_STATIC (node))
5295 TREE_PUBLIC (node) = 1;
5298 if (*no_add_attrs == false)
5299 DECL_DLLIMPORT_P (node) = 1;
5301 else if (TREE_CODE (node) == FUNCTION_DECL
5302 && DECL_DECLARED_INLINE_P (node))
5303 /* An exported function, even if inline, must be emitted. */
5304 DECL_EXTERNAL (node) = 0;
5306 /* Report error if symbol is not accessible at global scope. */
5307 if (!TREE_PUBLIC (node)
5308 && (TREE_CODE (node) == VAR_DECL
5309 || TREE_CODE (node) == FUNCTION_DECL))
5311 error ("external linkage required for symbol %q+D because of "
5312 "%qE attribute", node, name);
5313 *no_add_attrs = true;
5316 /* A dllexport'd entity must have default visibility so that other
5317 program units (shared libraries or the main executable) can see
5318 it. A dllimport'd entity must have default visibility so that
5319 the linker knows that undefined references within this program
5320 unit can be resolved by the dynamic linker. */
5321 if (!*no_add_attrs)
5323 if (DECL_VISIBILITY_SPECIFIED (node)
5324 && DECL_VISIBILITY (node) != VISIBILITY_DEFAULT)
5325 error ("%qE implies default visibility, but %qD has already "
5326 "been declared with a different visibility",
5327 name, node);
5328 DECL_VISIBILITY (node) = VISIBILITY_DEFAULT;
5329 DECL_VISIBILITY_SPECIFIED (node) = 1;
5332 return NULL_TREE;
5335 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
5337 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5338 of the various TYPE_QUAL values. */
5340 static void
5341 set_type_quals (tree type, int type_quals)
5343 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
5344 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
5345 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
5348 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
5350 bool
5351 check_qualified_type (const_tree cand, const_tree base, int type_quals)
5353 return (TYPE_QUALS (cand) == type_quals
5354 && TYPE_NAME (cand) == TYPE_NAME (base)
5355 /* Apparently this is needed for Objective-C. */
5356 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5357 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5358 TYPE_ATTRIBUTES (base)));
5361 /* Return a version of the TYPE, qualified as indicated by the
5362 TYPE_QUALS, if one exists. If no qualified version exists yet,
5363 return NULL_TREE. */
5365 tree
5366 get_qualified_type (tree type, int type_quals)
5368 tree t;
5370 if (TYPE_QUALS (type) == type_quals)
5371 return type;
5373 /* Search the chain of variants to see if there is already one there just
5374 like the one we need to have. If so, use that existing one. We must
5375 preserve the TYPE_NAME, since there is code that depends on this. */
5376 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5377 if (check_qualified_type (t, type, type_quals))
5378 return t;
5380 return NULL_TREE;
5383 /* Like get_qualified_type, but creates the type if it does not
5384 exist. This function never returns NULL_TREE. */
5386 tree
5387 build_qualified_type (tree type, int type_quals)
5389 tree t;
5391 /* See if we already have the appropriate qualified variant. */
5392 t = get_qualified_type (type, type_quals);
5394 /* If not, build it. */
5395 if (!t)
5397 t = build_variant_type_copy (type);
5398 set_type_quals (t, type_quals);
5400 if (TYPE_STRUCTURAL_EQUALITY_P (type))
5401 /* Propagate structural equality. */
5402 SET_TYPE_STRUCTURAL_EQUALITY (t);
5403 else if (TYPE_CANONICAL (type) != type)
5404 /* Build the underlying canonical type, since it is different
5405 from TYPE. */
5406 TYPE_CANONICAL (t) = build_qualified_type (TYPE_CANONICAL (type),
5407 type_quals);
5408 else
5409 /* T is its own canonical type. */
5410 TYPE_CANONICAL (t) = t;
5414 return t;
5417 /* Create a new distinct copy of TYPE. The new type is made its own
5418 MAIN_VARIANT. If TYPE requires structural equality checks, the
5419 resulting type requires structural equality checks; otherwise, its
5420 TYPE_CANONICAL points to itself. */
5422 tree
5423 build_distinct_type_copy (tree type)
5425 tree t = copy_node (type);
5427 TYPE_POINTER_TO (t) = 0;
5428 TYPE_REFERENCE_TO (t) = 0;
5430 /* Set the canonical type either to a new equivalence class, or
5431 propagate the need for structural equality checks. */
5432 if (TYPE_STRUCTURAL_EQUALITY_P (type))
5433 SET_TYPE_STRUCTURAL_EQUALITY (t);
5434 else
5435 TYPE_CANONICAL (t) = t;
5437 /* Make it its own variant. */
5438 TYPE_MAIN_VARIANT (t) = t;
5439 TYPE_NEXT_VARIANT (t) = 0;
5441 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
5442 whose TREE_TYPE is not t. This can also happen in the Ada
5443 frontend when using subtypes. */
5445 return t;
5448 /* Create a new variant of TYPE, equivalent but distinct. This is so
5449 the caller can modify it. TYPE_CANONICAL for the return type will
5450 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
5451 are considered equal by the language itself (or that both types
5452 require structural equality checks). */
5454 tree
5455 build_variant_type_copy (tree type)
5457 tree t, m = TYPE_MAIN_VARIANT (type);
5459 t = build_distinct_type_copy (type);
5461 /* Since we're building a variant, assume that it is a non-semantic
5462 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
5463 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
5465 /* Add the new type to the chain of variants of TYPE. */
5466 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
5467 TYPE_NEXT_VARIANT (m) = t;
5468 TYPE_MAIN_VARIANT (t) = m;
5470 return t;
5473 /* Return true if the from tree in both tree maps are equal. */
5476 tree_map_base_eq (const void *va, const void *vb)
5478 const struct tree_map_base *const a = (const struct tree_map_base *) va,
5479 *const b = (const struct tree_map_base *) vb;
5480 return (a->from == b->from);
5483 /* Hash a from tree in a tree_map. */
5485 unsigned int
5486 tree_map_base_hash (const void *item)
5488 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
5491 /* Return true if this tree map structure is marked for garbage collection
5492 purposes. We simply return true if the from tree is marked, so that this
5493 structure goes away when the from tree goes away. */
5496 tree_map_base_marked_p (const void *p)
5498 return ggc_marked_p (((const struct tree_map_base *) p)->from);
5501 unsigned int
5502 tree_map_hash (const void *item)
5504 return (((const struct tree_map *) item)->hash);
5507 /* Return the initialization priority for DECL. */
5509 priority_type
5510 decl_init_priority_lookup (tree decl)
5512 struct tree_priority_map *h;
5513 struct tree_map_base in;
5515 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
5516 in.from = decl;
5517 h = (struct tree_priority_map *) htab_find (init_priority_for_decl, &in);
5518 return h ? h->init : DEFAULT_INIT_PRIORITY;
5521 /* Return the finalization priority for DECL. */
5523 priority_type
5524 decl_fini_priority_lookup (tree decl)
5526 struct tree_priority_map *h;
5527 struct tree_map_base in;
5529 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
5530 in.from = decl;
5531 h = (struct tree_priority_map *) htab_find (init_priority_for_decl, &in);
5532 return h ? h->fini : DEFAULT_INIT_PRIORITY;
5535 /* Return the initialization and finalization priority information for
5536 DECL. If there is no previous priority information, a freshly
5537 allocated structure is returned. */
5539 static struct tree_priority_map *
5540 decl_priority_info (tree decl)
5542 struct tree_priority_map in;
5543 struct tree_priority_map *h;
5544 void **loc;
5546 in.base.from = decl;
5547 loc = htab_find_slot (init_priority_for_decl, &in, INSERT);
5548 h = (struct tree_priority_map *) *loc;
5549 if (!h)
5551 h = GGC_CNEW (struct tree_priority_map);
5552 *loc = h;
5553 h->base.from = decl;
5554 h->init = DEFAULT_INIT_PRIORITY;
5555 h->fini = DEFAULT_INIT_PRIORITY;
5558 return h;
5561 /* Set the initialization priority for DECL to PRIORITY. */
5563 void
5564 decl_init_priority_insert (tree decl, priority_type priority)
5566 struct tree_priority_map *h;
5568 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
5569 h = decl_priority_info (decl);
5570 h->init = priority;
5573 /* Set the finalization priority for DECL to PRIORITY. */
5575 void
5576 decl_fini_priority_insert (tree decl, priority_type priority)
5578 struct tree_priority_map *h;
5580 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
5581 h = decl_priority_info (decl);
5582 h->fini = priority;
5585 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
5587 static void
5588 print_debug_expr_statistics (void)
5590 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
5591 (long) htab_size (debug_expr_for_decl),
5592 (long) htab_elements (debug_expr_for_decl),
5593 htab_collisions (debug_expr_for_decl));
5596 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
5598 static void
5599 print_value_expr_statistics (void)
5601 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
5602 (long) htab_size (value_expr_for_decl),
5603 (long) htab_elements (value_expr_for_decl),
5604 htab_collisions (value_expr_for_decl));
5607 /* Lookup a debug expression for FROM, and return it if we find one. */
5609 tree
5610 decl_debug_expr_lookup (tree from)
5612 struct tree_map *h, in;
5613 in.base.from = from;
5615 h = (struct tree_map *) htab_find_with_hash (debug_expr_for_decl, &in,
5616 htab_hash_pointer (from));
5617 if (h)
5618 return h->to;
5619 return NULL_TREE;
5622 /* Insert a mapping FROM->TO in the debug expression hashtable. */
5624 void
5625 decl_debug_expr_insert (tree from, tree to)
5627 struct tree_map *h;
5628 void **loc;
5630 h = GGC_NEW (struct tree_map);
5631 h->hash = htab_hash_pointer (from);
5632 h->base.from = from;
5633 h->to = to;
5634 loc = htab_find_slot_with_hash (debug_expr_for_decl, h, h->hash, INSERT);
5635 *(struct tree_map **) loc = h;
5638 /* Lookup a value expression for FROM, and return it if we find one. */
5640 tree
5641 decl_value_expr_lookup (tree from)
5643 struct tree_map *h, in;
5644 in.base.from = from;
5646 h = (struct tree_map *) htab_find_with_hash (value_expr_for_decl, &in,
5647 htab_hash_pointer (from));
5648 if (h)
5649 return h->to;
5650 return NULL_TREE;
5653 /* Insert a mapping FROM->TO in the value expression hashtable. */
5655 void
5656 decl_value_expr_insert (tree from, tree to)
5658 struct tree_map *h;
5659 void **loc;
5661 h = GGC_NEW (struct tree_map);
5662 h->hash = htab_hash_pointer (from);
5663 h->base.from = from;
5664 h->to = to;
5665 loc = htab_find_slot_with_hash (value_expr_for_decl, h, h->hash, INSERT);
5666 *(struct tree_map **) loc = h;
5669 /* Hashing of types so that we don't make duplicates.
5670 The entry point is `type_hash_canon'. */
5672 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
5673 with types in the TREE_VALUE slots), by adding the hash codes
5674 of the individual types. */
5676 static unsigned int
5677 type_hash_list (const_tree list, hashval_t hashcode)
5679 const_tree tail;
5681 for (tail = list; tail; tail = TREE_CHAIN (tail))
5682 if (TREE_VALUE (tail) != error_mark_node)
5683 hashcode = iterative_hash_object (TYPE_HASH (TREE_VALUE (tail)),
5684 hashcode);
5686 return hashcode;
5689 /* These are the Hashtable callback functions. */
5691 /* Returns true iff the types are equivalent. */
5693 static int
5694 type_hash_eq (const void *va, const void *vb)
5696 const struct type_hash *const a = (const struct type_hash *) va,
5697 *const b = (const struct type_hash *) vb;
5699 /* First test the things that are the same for all types. */
5700 if (a->hash != b->hash
5701 || TREE_CODE (a->type) != TREE_CODE (b->type)
5702 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
5703 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
5704 TYPE_ATTRIBUTES (b->type))
5705 || TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
5706 || TYPE_MODE (a->type) != TYPE_MODE (b->type)
5707 || (TREE_CODE (a->type) != COMPLEX_TYPE
5708 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
5709 return 0;
5711 switch (TREE_CODE (a->type))
5713 case VOID_TYPE:
5714 case COMPLEX_TYPE:
5715 case POINTER_TYPE:
5716 case REFERENCE_TYPE:
5717 return 1;
5719 case VECTOR_TYPE:
5720 return TYPE_VECTOR_SUBPARTS (a->type) == TYPE_VECTOR_SUBPARTS (b->type);
5722 case ENUMERAL_TYPE:
5723 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
5724 && !(TYPE_VALUES (a->type)
5725 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
5726 && TYPE_VALUES (b->type)
5727 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
5728 && type_list_equal (TYPE_VALUES (a->type),
5729 TYPE_VALUES (b->type))))
5730 return 0;
5732 /* ... fall through ... */
5734 case INTEGER_TYPE:
5735 case REAL_TYPE:
5736 case BOOLEAN_TYPE:
5737 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
5738 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
5739 TYPE_MAX_VALUE (b->type)))
5740 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
5741 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
5742 TYPE_MIN_VALUE (b->type))));
5744 case FIXED_POINT_TYPE:
5745 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
5747 case OFFSET_TYPE:
5748 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
5750 case METHOD_TYPE:
5751 return (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
5752 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
5753 || (TYPE_ARG_TYPES (a->type)
5754 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
5755 && TYPE_ARG_TYPES (b->type)
5756 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
5757 && type_list_equal (TYPE_ARG_TYPES (a->type),
5758 TYPE_ARG_TYPES (b->type)))));
5760 case ARRAY_TYPE:
5761 return TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type);
5763 case RECORD_TYPE:
5764 case UNION_TYPE:
5765 case QUAL_UNION_TYPE:
5766 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
5767 || (TYPE_FIELDS (a->type)
5768 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
5769 && TYPE_FIELDS (b->type)
5770 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
5771 && type_list_equal (TYPE_FIELDS (a->type),
5772 TYPE_FIELDS (b->type))));
5774 case FUNCTION_TYPE:
5775 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
5776 || (TYPE_ARG_TYPES (a->type)
5777 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
5778 && TYPE_ARG_TYPES (b->type)
5779 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
5780 && type_list_equal (TYPE_ARG_TYPES (a->type),
5781 TYPE_ARG_TYPES (b->type))))
5782 break;
5783 return 0;
5785 default:
5786 return 0;
5789 if (lang_hooks.types.type_hash_eq != NULL)
5790 return lang_hooks.types.type_hash_eq (a->type, b->type);
5792 return 1;
5795 /* Return the cached hash value. */
5797 static hashval_t
5798 type_hash_hash (const void *item)
5800 return ((const struct type_hash *) item)->hash;
5803 /* Look in the type hash table for a type isomorphic to TYPE.
5804 If one is found, return it. Otherwise return 0. */
5806 tree
5807 type_hash_lookup (hashval_t hashcode, tree type)
5809 struct type_hash *h, in;
5811 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
5812 must call that routine before comparing TYPE_ALIGNs. */
5813 layout_type (type);
5815 in.hash = hashcode;
5816 in.type = type;
5818 h = (struct type_hash *) htab_find_with_hash (type_hash_table, &in,
5819 hashcode);
5820 if (h)
5821 return h->type;
5822 return NULL_TREE;
5825 /* Add an entry to the type-hash-table
5826 for a type TYPE whose hash code is HASHCODE. */
5828 void
5829 type_hash_add (hashval_t hashcode, tree type)
5831 struct type_hash *h;
5832 void **loc;
5834 h = GGC_NEW (struct type_hash);
5835 h->hash = hashcode;
5836 h->type = type;
5837 loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT);
5838 *loc = (void *)h;
5841 /* Given TYPE, and HASHCODE its hash code, return the canonical
5842 object for an identical type if one already exists.
5843 Otherwise, return TYPE, and record it as the canonical object.
5845 To use this function, first create a type of the sort you want.
5846 Then compute its hash code from the fields of the type that
5847 make it different from other similar types.
5848 Then call this function and use the value. */
5850 tree
5851 type_hash_canon (unsigned int hashcode, tree type)
5853 tree t1;
5855 /* The hash table only contains main variants, so ensure that's what we're
5856 being passed. */
5857 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
5859 if (!lang_hooks.types.hash_types)
5860 return type;
5862 /* See if the type is in the hash table already. If so, return it.
5863 Otherwise, add the type. */
5864 t1 = type_hash_lookup (hashcode, type);
5865 if (t1 != 0)
5867 #ifdef GATHER_STATISTICS
5868 tree_node_counts[(int) t_kind]--;
5869 tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type);
5870 #endif
5871 return t1;
5873 else
5875 type_hash_add (hashcode, type);
5876 return type;
5880 /* See if the data pointed to by the type hash table is marked. We consider
5881 it marked if the type is marked or if a debug type number or symbol
5882 table entry has been made for the type. This reduces the amount of
5883 debugging output and eliminates that dependency of the debug output on
5884 the number of garbage collections. */
5886 static int
5887 type_hash_marked_p (const void *p)
5889 const_tree const type = ((const struct type_hash *) p)->type;
5891 return ggc_marked_p (type) || TYPE_SYMTAB_POINTER (type);
5894 static void
5895 print_type_hash_statistics (void)
5897 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
5898 (long) htab_size (type_hash_table),
5899 (long) htab_elements (type_hash_table),
5900 htab_collisions (type_hash_table));
5903 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
5904 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
5905 by adding the hash codes of the individual attributes. */
5907 static unsigned int
5908 attribute_hash_list (const_tree list, hashval_t hashcode)
5910 const_tree tail;
5912 for (tail = list; tail; tail = TREE_CHAIN (tail))
5913 /* ??? Do we want to add in TREE_VALUE too? */
5914 hashcode = iterative_hash_object
5915 (IDENTIFIER_HASH_VALUE (TREE_PURPOSE (tail)), hashcode);
5916 return hashcode;
5919 /* Given two lists of attributes, return true if list l2 is
5920 equivalent to l1. */
5923 attribute_list_equal (const_tree l1, const_tree l2)
5925 return attribute_list_contained (l1, l2)
5926 && attribute_list_contained (l2, l1);
5929 /* Given two lists of attributes, return true if list L2 is
5930 completely contained within L1. */
5931 /* ??? This would be faster if attribute names were stored in a canonicalized
5932 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
5933 must be used to show these elements are equivalent (which they are). */
5934 /* ??? It's not clear that attributes with arguments will always be handled
5935 correctly. */
5938 attribute_list_contained (const_tree l1, const_tree l2)
5940 const_tree t1, t2;
5942 /* First check the obvious, maybe the lists are identical. */
5943 if (l1 == l2)
5944 return 1;
5946 /* Maybe the lists are similar. */
5947 for (t1 = l1, t2 = l2;
5948 t1 != 0 && t2 != 0
5949 && TREE_PURPOSE (t1) == TREE_PURPOSE (t2)
5950 && TREE_VALUE (t1) == TREE_VALUE (t2);
5951 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2));
5953 /* Maybe the lists are equal. */
5954 if (t1 == 0 && t2 == 0)
5955 return 1;
5957 for (; t2 != 0; t2 = TREE_CHAIN (t2))
5959 const_tree attr;
5960 /* This CONST_CAST is okay because lookup_attribute does not
5961 modify its argument and the return value is assigned to a
5962 const_tree. */
5963 for (attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
5964 CONST_CAST_TREE(l1));
5965 attr != NULL_TREE;
5966 attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
5967 TREE_CHAIN (attr)))
5969 if (TREE_VALUE (t2) != NULL
5970 && TREE_CODE (TREE_VALUE (t2)) == TREE_LIST
5971 && TREE_VALUE (attr) != NULL
5972 && TREE_CODE (TREE_VALUE (attr)) == TREE_LIST)
5974 if (simple_cst_list_equal (TREE_VALUE (t2),
5975 TREE_VALUE (attr)) == 1)
5976 break;
5978 else if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) == 1)
5979 break;
5982 if (attr == 0)
5983 return 0;
5986 return 1;
5989 /* Given two lists of types
5990 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
5991 return 1 if the lists contain the same types in the same order.
5992 Also, the TREE_PURPOSEs must match. */
5995 type_list_equal (const_tree l1, const_tree l2)
5997 const_tree t1, t2;
5999 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
6000 if (TREE_VALUE (t1) != TREE_VALUE (t2)
6001 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
6002 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
6003 && (TREE_TYPE (TREE_PURPOSE (t1))
6004 == TREE_TYPE (TREE_PURPOSE (t2))))))
6005 return 0;
6007 return t1 == t2;
6010 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6011 given by TYPE. If the argument list accepts variable arguments,
6012 then this function counts only the ordinary arguments. */
6015 type_num_arguments (const_tree type)
6017 int i = 0;
6018 tree t;
6020 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6021 /* If the function does not take a variable number of arguments,
6022 the last element in the list will have type `void'. */
6023 if (VOID_TYPE_P (TREE_VALUE (t)))
6024 break;
6025 else
6026 ++i;
6028 return i;
6031 /* Nonzero if integer constants T1 and T2
6032 represent the same constant value. */
6035 tree_int_cst_equal (const_tree t1, const_tree t2)
6037 if (t1 == t2)
6038 return 1;
6040 if (t1 == 0 || t2 == 0)
6041 return 0;
6043 if (TREE_CODE (t1) == INTEGER_CST
6044 && TREE_CODE (t2) == INTEGER_CST
6045 && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
6046 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
6047 return 1;
6049 return 0;
6052 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
6053 The precise way of comparison depends on their data type. */
6056 tree_int_cst_lt (const_tree t1, const_tree t2)
6058 if (t1 == t2)
6059 return 0;
6061 if (TYPE_UNSIGNED (TREE_TYPE (t1)) != TYPE_UNSIGNED (TREE_TYPE (t2)))
6063 int t1_sgn = tree_int_cst_sgn (t1);
6064 int t2_sgn = tree_int_cst_sgn (t2);
6066 if (t1_sgn < t2_sgn)
6067 return 1;
6068 else if (t1_sgn > t2_sgn)
6069 return 0;
6070 /* Otherwise, both are non-negative, so we compare them as
6071 unsigned just in case one of them would overflow a signed
6072 type. */
6074 else if (!TYPE_UNSIGNED (TREE_TYPE (t1)))
6075 return INT_CST_LT (t1, t2);
6077 return INT_CST_LT_UNSIGNED (t1, t2);
6080 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
6083 tree_int_cst_compare (const_tree t1, const_tree t2)
6085 if (tree_int_cst_lt (t1, t2))
6086 return -1;
6087 else if (tree_int_cst_lt (t2, t1))
6088 return 1;
6089 else
6090 return 0;
6093 /* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
6094 the host. If POS is zero, the value can be represented in a single
6095 HOST_WIDE_INT. If POS is nonzero, the value must be non-negative and can
6096 be represented in a single unsigned HOST_WIDE_INT. */
6099 host_integerp (const_tree t, int pos)
6101 if (t == NULL_TREE)
6102 return 0;
6104 return (TREE_CODE (t) == INTEGER_CST
6105 && ((TREE_INT_CST_HIGH (t) == 0
6106 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) >= 0)
6107 || (! pos && TREE_INT_CST_HIGH (t) == -1
6108 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0
6109 && (!TYPE_UNSIGNED (TREE_TYPE (t))
6110 || (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
6111 && TYPE_IS_SIZETYPE (TREE_TYPE (t)))))
6112 || (pos && TREE_INT_CST_HIGH (t) == 0)));
6115 /* Return the HOST_WIDE_INT least significant bits of T if it is an
6116 INTEGER_CST and there is no overflow. POS is nonzero if the result must
6117 be non-negative. We must be able to satisfy the above conditions. */
6119 HOST_WIDE_INT
6120 tree_low_cst (const_tree t, int pos)
6122 gcc_assert (host_integerp (t, pos));
6123 return TREE_INT_CST_LOW (t);
6126 /* Return the most significant bit of the integer constant T. */
6129 tree_int_cst_msb (const_tree t)
6131 int prec;
6132 HOST_WIDE_INT h;
6133 unsigned HOST_WIDE_INT l;
6135 /* Note that using TYPE_PRECISION here is wrong. We care about the
6136 actual bits, not the (arbitrary) range of the type. */
6137 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t))) - 1;
6138 rshift_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t), prec,
6139 2 * HOST_BITS_PER_WIDE_INT, &l, &h, 0);
6140 return (l & 1) == 1;
6143 /* Return an indication of the sign of the integer constant T.
6144 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6145 Note that -1 will never be returned if T's type is unsigned. */
6148 tree_int_cst_sgn (const_tree t)
6150 if (TREE_INT_CST_LOW (t) == 0 && TREE_INT_CST_HIGH (t) == 0)
6151 return 0;
6152 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
6153 return 1;
6154 else if (TREE_INT_CST_HIGH (t) < 0)
6155 return -1;
6156 else
6157 return 1;
6160 /* Return the minimum number of bits needed to represent VALUE in a
6161 signed or unsigned type, UNSIGNEDP says which. */
6163 unsigned int
6164 tree_int_cst_min_precision (tree value, bool unsignedp)
6166 int log;
6168 /* If the value is negative, compute its negative minus 1. The latter
6169 adjustment is because the absolute value of the largest negative value
6170 is one larger than the largest positive value. This is equivalent to
6171 a bit-wise negation, so use that operation instead. */
6173 if (tree_int_cst_sgn (value) < 0)
6174 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
6176 /* Return the number of bits needed, taking into account the fact
6177 that we need one more bit for a signed than unsigned type. */
6179 if (integer_zerop (value))
6180 log = 0;
6181 else
6182 log = tree_floor_log2 (value);
6184 return log + 1 + !unsignedp;
6187 /* Compare two constructor-element-type constants. Return 1 if the lists
6188 are known to be equal; otherwise return 0. */
6191 simple_cst_list_equal (const_tree l1, const_tree l2)
6193 while (l1 != NULL_TREE && l2 != NULL_TREE)
6195 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
6196 return 0;
6198 l1 = TREE_CHAIN (l1);
6199 l2 = TREE_CHAIN (l2);
6202 return l1 == l2;
6205 /* Return truthvalue of whether T1 is the same tree structure as T2.
6206 Return 1 if they are the same.
6207 Return 0 if they are understandably different.
6208 Return -1 if either contains tree structure not understood by
6209 this function. */
6212 simple_cst_equal (const_tree t1, const_tree t2)
6214 enum tree_code code1, code2;
6215 int cmp;
6216 int i;
6218 if (t1 == t2)
6219 return 1;
6220 if (t1 == 0 || t2 == 0)
6221 return 0;
6223 code1 = TREE_CODE (t1);
6224 code2 = TREE_CODE (t2);
6226 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
6228 if (CONVERT_EXPR_CODE_P (code2)
6229 || code2 == NON_LVALUE_EXPR)
6230 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6231 else
6232 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
6235 else if (CONVERT_EXPR_CODE_P (code2)
6236 || code2 == NON_LVALUE_EXPR)
6237 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
6239 if (code1 != code2)
6240 return 0;
6242 switch (code1)
6244 case INTEGER_CST:
6245 return (TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
6246 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2));
6248 case REAL_CST:
6249 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
6251 case FIXED_CST:
6252 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
6254 case STRING_CST:
6255 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
6256 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
6257 TREE_STRING_LENGTH (t1)));
6259 case CONSTRUCTOR:
6261 unsigned HOST_WIDE_INT idx;
6262 VEC(constructor_elt, gc) *v1 = CONSTRUCTOR_ELTS (t1);
6263 VEC(constructor_elt, gc) *v2 = CONSTRUCTOR_ELTS (t2);
6265 if (VEC_length (constructor_elt, v1) != VEC_length (constructor_elt, v2))
6266 return false;
6268 for (idx = 0; idx < VEC_length (constructor_elt, v1); ++idx)
6269 /* ??? Should we handle also fields here? */
6270 if (!simple_cst_equal (VEC_index (constructor_elt, v1, idx)->value,
6271 VEC_index (constructor_elt, v2, idx)->value))
6272 return false;
6273 return true;
6276 case SAVE_EXPR:
6277 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6279 case CALL_EXPR:
6280 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
6281 if (cmp <= 0)
6282 return cmp;
6283 if (call_expr_nargs (t1) != call_expr_nargs (t2))
6284 return 0;
6286 const_tree arg1, arg2;
6287 const_call_expr_arg_iterator iter1, iter2;
6288 for (arg1 = first_const_call_expr_arg (t1, &iter1),
6289 arg2 = first_const_call_expr_arg (t2, &iter2);
6290 arg1 && arg2;
6291 arg1 = next_const_call_expr_arg (&iter1),
6292 arg2 = next_const_call_expr_arg (&iter2))
6294 cmp = simple_cst_equal (arg1, arg2);
6295 if (cmp <= 0)
6296 return cmp;
6298 return arg1 == arg2;
6301 case TARGET_EXPR:
6302 /* Special case: if either target is an unallocated VAR_DECL,
6303 it means that it's going to be unified with whatever the
6304 TARGET_EXPR is really supposed to initialize, so treat it
6305 as being equivalent to anything. */
6306 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
6307 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
6308 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
6309 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
6310 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
6311 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
6312 cmp = 1;
6313 else
6314 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6316 if (cmp <= 0)
6317 return cmp;
6319 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
6321 case WITH_CLEANUP_EXPR:
6322 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6323 if (cmp <= 0)
6324 return cmp;
6326 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
6328 case COMPONENT_REF:
6329 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
6330 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6332 return 0;
6334 case VAR_DECL:
6335 case PARM_DECL:
6336 case CONST_DECL:
6337 case FUNCTION_DECL:
6338 return 0;
6340 default:
6341 break;
6344 /* This general rule works for most tree codes. All exceptions should be
6345 handled above. If this is a language-specific tree code, we can't
6346 trust what might be in the operand, so say we don't know
6347 the situation. */
6348 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
6349 return -1;
6351 switch (TREE_CODE_CLASS (code1))
6353 case tcc_unary:
6354 case tcc_binary:
6355 case tcc_comparison:
6356 case tcc_expression:
6357 case tcc_reference:
6358 case tcc_statement:
6359 cmp = 1;
6360 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
6362 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
6363 if (cmp <= 0)
6364 return cmp;
6367 return cmp;
6369 default:
6370 return -1;
6374 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
6375 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
6376 than U, respectively. */
6379 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
6381 if (tree_int_cst_sgn (t) < 0)
6382 return -1;
6383 else if (TREE_INT_CST_HIGH (t) != 0)
6384 return 1;
6385 else if (TREE_INT_CST_LOW (t) == u)
6386 return 0;
6387 else if (TREE_INT_CST_LOW (t) < u)
6388 return -1;
6389 else
6390 return 1;
6393 /* Return true if CODE represents an associative tree code. Otherwise
6394 return false. */
6395 bool
6396 associative_tree_code (enum tree_code code)
6398 switch (code)
6400 case BIT_IOR_EXPR:
6401 case BIT_AND_EXPR:
6402 case BIT_XOR_EXPR:
6403 case PLUS_EXPR:
6404 case MULT_EXPR:
6405 case MIN_EXPR:
6406 case MAX_EXPR:
6407 return true;
6409 default:
6410 break;
6412 return false;
6415 /* Return true if CODE represents a commutative tree code. Otherwise
6416 return false. */
6417 bool
6418 commutative_tree_code (enum tree_code code)
6420 switch (code)
6422 case PLUS_EXPR:
6423 case MULT_EXPR:
6424 case MIN_EXPR:
6425 case MAX_EXPR:
6426 case BIT_IOR_EXPR:
6427 case BIT_XOR_EXPR:
6428 case BIT_AND_EXPR:
6429 case NE_EXPR:
6430 case EQ_EXPR:
6431 case UNORDERED_EXPR:
6432 case ORDERED_EXPR:
6433 case UNEQ_EXPR:
6434 case LTGT_EXPR:
6435 case TRUTH_AND_EXPR:
6436 case TRUTH_XOR_EXPR:
6437 case TRUTH_OR_EXPR:
6438 return true;
6440 default:
6441 break;
6443 return false;
6446 /* Generate a hash value for an expression. This can be used iteratively
6447 by passing a previous result as the VAL argument.
6449 This function is intended to produce the same hash for expressions which
6450 would compare equal using operand_equal_p. */
6452 hashval_t
6453 iterative_hash_expr (const_tree t, hashval_t val)
6455 int i;
6456 enum tree_code code;
6457 char tclass;
6459 if (t == NULL_TREE)
6460 return iterative_hash_hashval_t (0, val);
6462 code = TREE_CODE (t);
6464 switch (code)
6466 /* Alas, constants aren't shared, so we can't rely on pointer
6467 identity. */
6468 case INTEGER_CST:
6469 val = iterative_hash_host_wide_int (TREE_INT_CST_LOW (t), val);
6470 return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t), val);
6471 case REAL_CST:
6473 unsigned int val2 = real_hash (TREE_REAL_CST_PTR (t));
6475 return iterative_hash_hashval_t (val2, val);
6477 case FIXED_CST:
6479 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
6481 return iterative_hash_hashval_t (val2, val);
6483 case STRING_CST:
6484 return iterative_hash (TREE_STRING_POINTER (t),
6485 TREE_STRING_LENGTH (t), val);
6486 case COMPLEX_CST:
6487 val = iterative_hash_expr (TREE_REALPART (t), val);
6488 return iterative_hash_expr (TREE_IMAGPART (t), val);
6489 case VECTOR_CST:
6490 return iterative_hash_expr (TREE_VECTOR_CST_ELTS (t), val);
6492 case SSA_NAME:
6493 /* we can just compare by pointer. */
6494 return iterative_hash_host_wide_int (SSA_NAME_VERSION (t), val);
6496 case TREE_LIST:
6497 /* A list of expressions, for a CALL_EXPR or as the elements of a
6498 VECTOR_CST. */
6499 for (; t; t = TREE_CHAIN (t))
6500 val = iterative_hash_expr (TREE_VALUE (t), val);
6501 return val;
6502 case CONSTRUCTOR:
6504 unsigned HOST_WIDE_INT idx;
6505 tree field, value;
6506 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
6508 val = iterative_hash_expr (field, val);
6509 val = iterative_hash_expr (value, val);
6511 return val;
6513 case FUNCTION_DECL:
6514 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
6515 Otherwise nodes that compare equal according to operand_equal_p might
6516 get different hash codes. However, don't do this for machine specific
6517 or front end builtins, since the function code is overloaded in those
6518 cases. */
6519 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
6520 && built_in_decls[DECL_FUNCTION_CODE (t)])
6522 t = built_in_decls[DECL_FUNCTION_CODE (t)];
6523 code = TREE_CODE (t);
6525 /* FALL THROUGH */
6526 default:
6527 tclass = TREE_CODE_CLASS (code);
6529 if (tclass == tcc_declaration)
6531 /* DECL's have a unique ID */
6532 val = iterative_hash_host_wide_int (DECL_UID (t), val);
6534 else
6536 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
6538 val = iterative_hash_object (code, val);
6540 /* Don't hash the type, that can lead to having nodes which
6541 compare equal according to operand_equal_p, but which
6542 have different hash codes. */
6543 if (CONVERT_EXPR_CODE_P (code)
6544 || code == NON_LVALUE_EXPR)
6546 /* Make sure to include signness in the hash computation. */
6547 val += TYPE_UNSIGNED (TREE_TYPE (t));
6548 val = iterative_hash_expr (TREE_OPERAND (t, 0), val);
6551 else if (commutative_tree_code (code))
6553 /* It's a commutative expression. We want to hash it the same
6554 however it appears. We do this by first hashing both operands
6555 and then rehashing based on the order of their independent
6556 hashes. */
6557 hashval_t one = iterative_hash_expr (TREE_OPERAND (t, 0), 0);
6558 hashval_t two = iterative_hash_expr (TREE_OPERAND (t, 1), 0);
6559 hashval_t t;
6561 if (one > two)
6562 t = one, one = two, two = t;
6564 val = iterative_hash_hashval_t (one, val);
6565 val = iterative_hash_hashval_t (two, val);
6567 else
6568 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
6569 val = iterative_hash_expr (TREE_OPERAND (t, i), val);
6571 return val;
6572 break;
6576 /* Generate a hash value for a pair of expressions. This can be used
6577 iteratively by passing a previous result as the VAL argument.
6579 The same hash value is always returned for a given pair of expressions,
6580 regardless of the order in which they are presented. This is useful in
6581 hashing the operands of commutative functions. */
6583 hashval_t
6584 iterative_hash_exprs_commutative (const_tree t1,
6585 const_tree t2, hashval_t val)
6587 hashval_t one = iterative_hash_expr (t1, 0);
6588 hashval_t two = iterative_hash_expr (t2, 0);
6589 hashval_t t;
6591 if (one > two)
6592 t = one, one = two, two = t;
6593 val = iterative_hash_hashval_t (one, val);
6594 val = iterative_hash_hashval_t (two, val);
6596 return val;
6599 /* Constructors for pointer, array and function types.
6600 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
6601 constructed by language-dependent code, not here.) */
6603 /* Construct, lay out and return the type of pointers to TO_TYPE with
6604 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
6605 reference all of memory. If such a type has already been
6606 constructed, reuse it. */
6608 tree
6609 build_pointer_type_for_mode (tree to_type, enum machine_mode mode,
6610 bool can_alias_all)
6612 tree t;
6614 if (to_type == error_mark_node)
6615 return error_mark_node;
6617 /* If the pointed-to type has the may_alias attribute set, force
6618 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
6619 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
6620 can_alias_all = true;
6622 /* In some cases, languages will have things that aren't a POINTER_TYPE
6623 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
6624 In that case, return that type without regard to the rest of our
6625 operands.
6627 ??? This is a kludge, but consistent with the way this function has
6628 always operated and there doesn't seem to be a good way to avoid this
6629 at the moment. */
6630 if (TYPE_POINTER_TO (to_type) != 0
6631 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
6632 return TYPE_POINTER_TO (to_type);
6634 /* First, if we already have a type for pointers to TO_TYPE and it's
6635 the proper mode, use it. */
6636 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
6637 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
6638 return t;
6640 t = make_node (POINTER_TYPE);
6642 TREE_TYPE (t) = to_type;
6643 SET_TYPE_MODE (t, mode);
6644 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
6645 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
6646 TYPE_POINTER_TO (to_type) = t;
6648 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
6649 SET_TYPE_STRUCTURAL_EQUALITY (t);
6650 else if (TYPE_CANONICAL (to_type) != to_type)
6651 TYPE_CANONICAL (t)
6652 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
6653 mode, can_alias_all);
6655 /* Lay out the type. This function has many callers that are concerned
6656 with expression-construction, and this simplifies them all. */
6657 layout_type (t);
6659 return t;
6662 /* By default build pointers in ptr_mode. */
6664 tree
6665 build_pointer_type (tree to_type)
6667 return build_pointer_type_for_mode (to_type, ptr_mode, false);
6670 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
6672 tree
6673 build_reference_type_for_mode (tree to_type, enum machine_mode mode,
6674 bool can_alias_all)
6676 tree t;
6678 if (to_type == error_mark_node)
6679 return error_mark_node;
6681 /* If the pointed-to type has the may_alias attribute set, force
6682 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
6683 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
6684 can_alias_all = true;
6686 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
6687 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
6688 In that case, return that type without regard to the rest of our
6689 operands.
6691 ??? This is a kludge, but consistent with the way this function has
6692 always operated and there doesn't seem to be a good way to avoid this
6693 at the moment. */
6694 if (TYPE_REFERENCE_TO (to_type) != 0
6695 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
6696 return TYPE_REFERENCE_TO (to_type);
6698 /* First, if we already have a type for pointers to TO_TYPE and it's
6699 the proper mode, use it. */
6700 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
6701 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
6702 return t;
6704 t = make_node (REFERENCE_TYPE);
6706 TREE_TYPE (t) = to_type;
6707 SET_TYPE_MODE (t, mode);
6708 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
6709 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
6710 TYPE_REFERENCE_TO (to_type) = t;
6712 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
6713 SET_TYPE_STRUCTURAL_EQUALITY (t);
6714 else if (TYPE_CANONICAL (to_type) != to_type)
6715 TYPE_CANONICAL (t)
6716 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
6717 mode, can_alias_all);
6719 layout_type (t);
6721 return t;
6725 /* Build the node for the type of references-to-TO_TYPE by default
6726 in ptr_mode. */
6728 tree
6729 build_reference_type (tree to_type)
6731 return build_reference_type_for_mode (to_type, ptr_mode, false);
6734 /* Build a type that is compatible with t but has no cv quals anywhere
6735 in its type, thus
6737 const char *const *const * -> char ***. */
6739 tree
6740 build_type_no_quals (tree t)
6742 switch (TREE_CODE (t))
6744 case POINTER_TYPE:
6745 return build_pointer_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
6746 TYPE_MODE (t),
6747 TYPE_REF_CAN_ALIAS_ALL (t));
6748 case REFERENCE_TYPE:
6749 return
6750 build_reference_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
6751 TYPE_MODE (t),
6752 TYPE_REF_CAN_ALIAS_ALL (t));
6753 default:
6754 return TYPE_MAIN_VARIANT (t);
6758 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
6759 MAXVAL should be the maximum value in the domain
6760 (one less than the length of the array).
6762 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
6763 We don't enforce this limit, that is up to caller (e.g. language front end).
6764 The limit exists because the result is a signed type and we don't handle
6765 sizes that use more than one HOST_WIDE_INT. */
6767 tree
6768 build_index_type (tree maxval)
6770 tree itype = make_node (INTEGER_TYPE);
6772 TREE_TYPE (itype) = sizetype;
6773 TYPE_PRECISION (itype) = TYPE_PRECISION (sizetype);
6774 TYPE_MIN_VALUE (itype) = size_zero_node;
6775 TYPE_MAX_VALUE (itype) = fold_convert (sizetype, maxval);
6776 SET_TYPE_MODE (itype, TYPE_MODE (sizetype));
6777 TYPE_SIZE (itype) = TYPE_SIZE (sizetype);
6778 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (sizetype);
6779 TYPE_ALIGN (itype) = TYPE_ALIGN (sizetype);
6780 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (sizetype);
6782 if (host_integerp (maxval, 1))
6783 return type_hash_canon (tree_low_cst (maxval, 1), itype);
6784 else
6786 /* Since we cannot hash this type, we need to compare it using
6787 structural equality checks. */
6788 SET_TYPE_STRUCTURAL_EQUALITY (itype);
6789 return itype;
6793 /* Builds a signed or unsigned integer type of precision PRECISION.
6794 Used for C bitfields whose precision does not match that of
6795 built-in target types. */
6796 tree
6797 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
6798 int unsignedp)
6800 tree itype = make_node (INTEGER_TYPE);
6802 TYPE_PRECISION (itype) = precision;
6804 if (unsignedp)
6805 fixup_unsigned_type (itype);
6806 else
6807 fixup_signed_type (itype);
6809 if (host_integerp (TYPE_MAX_VALUE (itype), 1))
6810 return type_hash_canon (tree_low_cst (TYPE_MAX_VALUE (itype), 1), itype);
6812 return itype;
6815 /* Create a range of some discrete type TYPE (an INTEGER_TYPE,
6816 ENUMERAL_TYPE or BOOLEAN_TYPE), with low bound LOWVAL and
6817 high bound HIGHVAL. If TYPE is NULL, sizetype is used. */
6819 tree
6820 build_range_type (tree type, tree lowval, tree highval)
6822 tree itype = make_node (INTEGER_TYPE);
6824 TREE_TYPE (itype) = type;
6825 if (type == NULL_TREE)
6826 type = sizetype;
6828 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
6829 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
6831 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
6832 SET_TYPE_MODE (itype, TYPE_MODE (type));
6833 TYPE_SIZE (itype) = TYPE_SIZE (type);
6834 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
6835 TYPE_ALIGN (itype) = TYPE_ALIGN (type);
6836 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
6838 if (host_integerp (lowval, 0) && highval != 0 && host_integerp (highval, 0))
6839 return type_hash_canon (tree_low_cst (highval, 0)
6840 - tree_low_cst (lowval, 0),
6841 itype);
6842 else
6843 return itype;
6846 /* Return true if the debug information for TYPE, a subtype, should be emitted
6847 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
6848 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
6849 debug info and doesn't reflect the source code. */
6851 bool
6852 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
6854 tree base_type = TREE_TYPE (type), low, high;
6856 /* Subrange types have a base type which is an integral type. */
6857 if (!INTEGRAL_TYPE_P (base_type))
6858 return false;
6860 /* Get the real bounds of the subtype. */
6861 if (lang_hooks.types.get_subrange_bounds)
6862 lang_hooks.types.get_subrange_bounds (type, &low, &high);
6863 else
6865 low = TYPE_MIN_VALUE (type);
6866 high = TYPE_MAX_VALUE (type);
6869 /* If the type and its base type have the same representation and the same
6870 name, then the type is not a subrange but a copy of the base type. */
6871 if ((TREE_CODE (base_type) == INTEGER_TYPE
6872 || TREE_CODE (base_type) == BOOLEAN_TYPE)
6873 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
6874 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
6875 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type)))
6877 tree type_name = TYPE_NAME (type);
6878 tree base_type_name = TYPE_NAME (base_type);
6880 if (type_name && TREE_CODE (type_name) == TYPE_DECL)
6881 type_name = DECL_NAME (type_name);
6883 if (base_type_name && TREE_CODE (base_type_name) == TYPE_DECL)
6884 base_type_name = DECL_NAME (base_type_name);
6886 if (type_name == base_type_name)
6887 return false;
6890 if (lowval)
6891 *lowval = low;
6892 if (highval)
6893 *highval = high;
6894 return true;
6897 /* Just like build_index_type, but takes lowval and highval instead
6898 of just highval (maxval). */
6900 tree
6901 build_index_2_type (tree lowval, tree highval)
6903 return build_range_type (sizetype, lowval, highval);
6906 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
6907 and number of elements specified by the range of values of INDEX_TYPE.
6908 If such a type has already been constructed, reuse it. */
6910 tree
6911 build_array_type (tree elt_type, tree index_type)
6913 tree t;
6914 hashval_t hashcode = 0;
6916 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
6918 error ("arrays of functions are not meaningful");
6919 elt_type = integer_type_node;
6922 t = make_node (ARRAY_TYPE);
6923 TREE_TYPE (t) = elt_type;
6924 TYPE_DOMAIN (t) = index_type;
6925 layout_type (t);
6927 /* If the element type is incomplete at this point we get marked for
6928 structural equality. Do not record these types in the canonical
6929 type hashtable. */
6930 if (TYPE_STRUCTURAL_EQUALITY_P (t))
6931 return t;
6933 hashcode = iterative_hash_object (TYPE_HASH (elt_type), hashcode);
6934 if (index_type)
6935 hashcode = iterative_hash_object (TYPE_HASH (index_type), hashcode);
6936 t = type_hash_canon (hashcode, t);
6938 if (TYPE_CANONICAL (t) == t)
6940 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
6941 || (index_type && TYPE_STRUCTURAL_EQUALITY_P (index_type)))
6942 SET_TYPE_STRUCTURAL_EQUALITY (t);
6943 else if (TYPE_CANONICAL (elt_type) != elt_type
6944 || (index_type && TYPE_CANONICAL (index_type) != index_type))
6945 TYPE_CANONICAL (t)
6946 = build_array_type (TYPE_CANONICAL (elt_type),
6947 index_type ? TYPE_CANONICAL (index_type) : NULL);
6950 return t;
6953 /* Recursively examines the array elements of TYPE, until a non-array
6954 element type is found. */
6956 tree
6957 strip_array_types (tree type)
6959 while (TREE_CODE (type) == ARRAY_TYPE)
6960 type = TREE_TYPE (type);
6962 return type;
6965 /* Computes the canonical argument types from the argument type list
6966 ARGTYPES.
6968 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
6969 on entry to this function, or if any of the ARGTYPES are
6970 structural.
6972 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
6973 true on entry to this function, or if any of the ARGTYPES are
6974 non-canonical.
6976 Returns a canonical argument list, which may be ARGTYPES when the
6977 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
6978 true) or would not differ from ARGTYPES. */
6980 static tree
6981 maybe_canonicalize_argtypes(tree argtypes,
6982 bool *any_structural_p,
6983 bool *any_noncanonical_p)
6985 tree arg;
6986 bool any_noncanonical_argtypes_p = false;
6988 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
6990 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
6991 /* Fail gracefully by stating that the type is structural. */
6992 *any_structural_p = true;
6993 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
6994 *any_structural_p = true;
6995 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
6996 || TREE_PURPOSE (arg))
6997 /* If the argument has a default argument, we consider it
6998 non-canonical even though the type itself is canonical.
6999 That way, different variants of function and method types
7000 with default arguments will all point to the variant with
7001 no defaults as their canonical type. */
7002 any_noncanonical_argtypes_p = true;
7005 if (*any_structural_p)
7006 return argtypes;
7008 if (any_noncanonical_argtypes_p)
7010 /* Build the canonical list of argument types. */
7011 tree canon_argtypes = NULL_TREE;
7012 bool is_void = false;
7014 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
7016 if (arg == void_list_node)
7017 is_void = true;
7018 else
7019 canon_argtypes = tree_cons (NULL_TREE,
7020 TYPE_CANONICAL (TREE_VALUE (arg)),
7021 canon_argtypes);
7024 canon_argtypes = nreverse (canon_argtypes);
7025 if (is_void)
7026 canon_argtypes = chainon (canon_argtypes, void_list_node);
7028 /* There is a non-canonical type. */
7029 *any_noncanonical_p = true;
7030 return canon_argtypes;
7033 /* The canonical argument types are the same as ARGTYPES. */
7034 return argtypes;
7037 /* Construct, lay out and return
7038 the type of functions returning type VALUE_TYPE
7039 given arguments of types ARG_TYPES.
7040 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
7041 are data type nodes for the arguments of the function.
7042 If such a type has already been constructed, reuse it. */
7044 tree
7045 build_function_type (tree value_type, tree arg_types)
7047 tree t;
7048 hashval_t hashcode = 0;
7049 bool any_structural_p, any_noncanonical_p;
7050 tree canon_argtypes;
7052 if (TREE_CODE (value_type) == FUNCTION_TYPE)
7054 error ("function return type cannot be function");
7055 value_type = integer_type_node;
7058 /* Make a node of the sort we want. */
7059 t = make_node (FUNCTION_TYPE);
7060 TREE_TYPE (t) = value_type;
7061 TYPE_ARG_TYPES (t) = arg_types;
7063 /* If we already have such a type, use the old one. */
7064 hashcode = iterative_hash_object (TYPE_HASH (value_type), hashcode);
7065 hashcode = type_hash_list (arg_types, hashcode);
7066 t = type_hash_canon (hashcode, t);
7068 /* Set up the canonical type. */
7069 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
7070 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
7071 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
7072 &any_structural_p,
7073 &any_noncanonical_p);
7074 if (any_structural_p)
7075 SET_TYPE_STRUCTURAL_EQUALITY (t);
7076 else if (any_noncanonical_p)
7077 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
7078 canon_argtypes);
7080 if (!COMPLETE_TYPE_P (t))
7081 layout_type (t);
7082 return t;
7085 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP. */
7087 tree
7088 build_function_type_skip_args (tree orig_type, bitmap args_to_skip)
7090 tree new_type = NULL;
7091 tree args, new_args = NULL, t;
7092 tree new_reversed;
7093 int i = 0;
7095 for (args = TYPE_ARG_TYPES (orig_type); args && args != void_list_node;
7096 args = TREE_CHAIN (args), i++)
7097 if (!bitmap_bit_p (args_to_skip, i))
7098 new_args = tree_cons (NULL_TREE, TREE_VALUE (args), new_args);
7100 new_reversed = nreverse (new_args);
7101 if (args)
7103 if (new_reversed)
7104 TREE_CHAIN (new_args) = void_list_node;
7105 else
7106 new_reversed = void_list_node;
7109 /* Use copy_node to preserve as much as possible from original type
7110 (debug info, attribute lists etc.)
7111 Exception is METHOD_TYPEs must have THIS argument.
7112 When we are asked to remove it, we need to build new FUNCTION_TYPE
7113 instead. */
7114 if (TREE_CODE (orig_type) != METHOD_TYPE
7115 || !bitmap_bit_p (args_to_skip, 0))
7117 new_type = copy_node (orig_type);
7118 TYPE_ARG_TYPES (new_type) = new_reversed;
7120 else
7122 new_type
7123 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type),
7124 new_reversed));
7125 TYPE_CONTEXT (new_type) = TYPE_CONTEXT (orig_type);
7128 /* This is a new type, not a copy of an old type. Need to reassociate
7129 variants. We can handle everything except the main variant lazily. */
7130 t = TYPE_MAIN_VARIANT (orig_type);
7131 if (orig_type != t)
7133 TYPE_MAIN_VARIANT (new_type) = t;
7134 TYPE_NEXT_VARIANT (new_type) = TYPE_NEXT_VARIANT (t);
7135 TYPE_NEXT_VARIANT (t) = new_type;
7137 else
7139 TYPE_MAIN_VARIANT (new_type) = new_type;
7140 TYPE_NEXT_VARIANT (new_type) = NULL;
7142 return new_type;
7145 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP.
7147 Arguments from DECL_ARGUMENTS list can't be removed now, since they are
7148 linked by TREE_CHAIN directly. It is caller responsibility to eliminate
7149 them when they are being duplicated (i.e. copy_arguments_for_versioning). */
7151 tree
7152 build_function_decl_skip_args (tree orig_decl, bitmap args_to_skip)
7154 tree new_decl = copy_node (orig_decl);
7155 tree new_type;
7157 new_type = TREE_TYPE (orig_decl);
7158 if (prototype_p (new_type))
7159 new_type = build_function_type_skip_args (new_type, args_to_skip);
7160 TREE_TYPE (new_decl) = new_type;
7162 /* For declarations setting DECL_VINDEX (i.e. methods)
7163 we expect first argument to be THIS pointer. */
7164 if (bitmap_bit_p (args_to_skip, 0))
7165 DECL_VINDEX (new_decl) = NULL_TREE;
7166 return new_decl;
7169 /* Build a function type. The RETURN_TYPE is the type returned by the
7170 function. If VAARGS is set, no void_type_node is appended to the
7171 the list. ARGP muse be alway be terminated be a NULL_TREE. */
7173 static tree
7174 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
7176 tree t, args, last;
7178 t = va_arg (argp, tree);
7179 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
7180 args = tree_cons (NULL_TREE, t, args);
7182 if (vaargs)
7184 last = args;
7185 if (args != NULL_TREE)
7186 args = nreverse (args);
7187 gcc_assert (args != NULL_TREE && last != void_list_node);
7189 else if (args == NULL_TREE)
7190 args = void_list_node;
7191 else
7193 last = args;
7194 args = nreverse (args);
7195 TREE_CHAIN (last) = void_list_node;
7197 args = build_function_type (return_type, args);
7199 return args;
7202 /* Build a function type. The RETURN_TYPE is the type returned by the
7203 function. If additional arguments are provided, they are
7204 additional argument types. The list of argument types must always
7205 be terminated by NULL_TREE. */
7207 tree
7208 build_function_type_list (tree return_type, ...)
7210 tree args;
7211 va_list p;
7213 va_start (p, return_type);
7214 args = build_function_type_list_1 (false, return_type, p);
7215 va_end (p);
7216 return args;
7219 /* Build a variable argument function type. The RETURN_TYPE is the
7220 type returned by the function. If additional arguments are provided,
7221 they are additional argument types. The list of argument types must
7222 always be terminated by NULL_TREE. */
7224 tree
7225 build_varargs_function_type_list (tree return_type, ...)
7227 tree args;
7228 va_list p;
7230 va_start (p, return_type);
7231 args = build_function_type_list_1 (true, return_type, p);
7232 va_end (p);
7234 return args;
7237 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
7238 and ARGTYPES (a TREE_LIST) are the return type and arguments types
7239 for the method. An implicit additional parameter (of type
7240 pointer-to-BASETYPE) is added to the ARGTYPES. */
7242 tree
7243 build_method_type_directly (tree basetype,
7244 tree rettype,
7245 tree argtypes)
7247 tree t;
7248 tree ptype;
7249 int hashcode = 0;
7250 bool any_structural_p, any_noncanonical_p;
7251 tree canon_argtypes;
7253 /* Make a node of the sort we want. */
7254 t = make_node (METHOD_TYPE);
7256 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
7257 TREE_TYPE (t) = rettype;
7258 ptype = build_pointer_type (basetype);
7260 /* The actual arglist for this function includes a "hidden" argument
7261 which is "this". Put it into the list of argument types. */
7262 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
7263 TYPE_ARG_TYPES (t) = argtypes;
7265 /* If we already have such a type, use the old one. */
7266 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
7267 hashcode = iterative_hash_object (TYPE_HASH (rettype), hashcode);
7268 hashcode = type_hash_list (argtypes, hashcode);
7269 t = type_hash_canon (hashcode, t);
7271 /* Set up the canonical type. */
7272 any_structural_p
7273 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
7274 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
7275 any_noncanonical_p
7276 = (TYPE_CANONICAL (basetype) != basetype
7277 || TYPE_CANONICAL (rettype) != rettype);
7278 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
7279 &any_structural_p,
7280 &any_noncanonical_p);
7281 if (any_structural_p)
7282 SET_TYPE_STRUCTURAL_EQUALITY (t);
7283 else if (any_noncanonical_p)
7284 TYPE_CANONICAL (t)
7285 = build_method_type_directly (TYPE_CANONICAL (basetype),
7286 TYPE_CANONICAL (rettype),
7287 canon_argtypes);
7288 if (!COMPLETE_TYPE_P (t))
7289 layout_type (t);
7291 return t;
7294 /* Construct, lay out and return the type of methods belonging to class
7295 BASETYPE and whose arguments and values are described by TYPE.
7296 If that type exists already, reuse it.
7297 TYPE must be a FUNCTION_TYPE node. */
7299 tree
7300 build_method_type (tree basetype, tree type)
7302 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
7304 return build_method_type_directly (basetype,
7305 TREE_TYPE (type),
7306 TYPE_ARG_TYPES (type));
7309 /* Construct, lay out and return the type of offsets to a value
7310 of type TYPE, within an object of type BASETYPE.
7311 If a suitable offset type exists already, reuse it. */
7313 tree
7314 build_offset_type (tree basetype, tree type)
7316 tree t;
7317 hashval_t hashcode = 0;
7319 /* Make a node of the sort we want. */
7320 t = make_node (OFFSET_TYPE);
7322 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
7323 TREE_TYPE (t) = type;
7325 /* If we already have such a type, use the old one. */
7326 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
7327 hashcode = iterative_hash_object (TYPE_HASH (type), hashcode);
7328 t = type_hash_canon (hashcode, t);
7330 if (!COMPLETE_TYPE_P (t))
7331 layout_type (t);
7333 if (TYPE_CANONICAL (t) == t)
7335 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
7336 || TYPE_STRUCTURAL_EQUALITY_P (type))
7337 SET_TYPE_STRUCTURAL_EQUALITY (t);
7338 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
7339 || TYPE_CANONICAL (type) != type)
7340 TYPE_CANONICAL (t)
7341 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
7342 TYPE_CANONICAL (type));
7345 return t;
7348 /* Create a complex type whose components are COMPONENT_TYPE. */
7350 tree
7351 build_complex_type (tree component_type)
7353 tree t;
7354 hashval_t hashcode;
7356 gcc_assert (INTEGRAL_TYPE_P (component_type)
7357 || SCALAR_FLOAT_TYPE_P (component_type)
7358 || FIXED_POINT_TYPE_P (component_type));
7360 /* Make a node of the sort we want. */
7361 t = make_node (COMPLEX_TYPE);
7363 TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
7365 /* If we already have such a type, use the old one. */
7366 hashcode = iterative_hash_object (TYPE_HASH (component_type), 0);
7367 t = type_hash_canon (hashcode, t);
7369 if (!COMPLETE_TYPE_P (t))
7370 layout_type (t);
7372 if (TYPE_CANONICAL (t) == t)
7374 if (TYPE_STRUCTURAL_EQUALITY_P (component_type))
7375 SET_TYPE_STRUCTURAL_EQUALITY (t);
7376 else if (TYPE_CANONICAL (component_type) != component_type)
7377 TYPE_CANONICAL (t)
7378 = build_complex_type (TYPE_CANONICAL (component_type));
7381 /* We need to create a name, since complex is a fundamental type. */
7382 if (! TYPE_NAME (t))
7384 const char *name;
7385 if (component_type == char_type_node)
7386 name = "complex char";
7387 else if (component_type == signed_char_type_node)
7388 name = "complex signed char";
7389 else if (component_type == unsigned_char_type_node)
7390 name = "complex unsigned char";
7391 else if (component_type == short_integer_type_node)
7392 name = "complex short int";
7393 else if (component_type == short_unsigned_type_node)
7394 name = "complex short unsigned int";
7395 else if (component_type == integer_type_node)
7396 name = "complex int";
7397 else if (component_type == unsigned_type_node)
7398 name = "complex unsigned int";
7399 else if (component_type == long_integer_type_node)
7400 name = "complex long int";
7401 else if (component_type == long_unsigned_type_node)
7402 name = "complex long unsigned int";
7403 else if (component_type == long_long_integer_type_node)
7404 name = "complex long long int";
7405 else if (component_type == long_long_unsigned_type_node)
7406 name = "complex long long unsigned int";
7407 else
7408 name = 0;
7410 if (name != 0)
7411 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
7412 get_identifier (name), t);
7415 return build_qualified_type (t, TYPE_QUALS (component_type));
7418 /* If TYPE is a real or complex floating-point type and the target
7419 does not directly support arithmetic on TYPE then return the wider
7420 type to be used for arithmetic on TYPE. Otherwise, return
7421 NULL_TREE. */
7423 tree
7424 excess_precision_type (tree type)
7426 if (flag_excess_precision != EXCESS_PRECISION_FAST)
7428 int flt_eval_method = TARGET_FLT_EVAL_METHOD;
7429 switch (TREE_CODE (type))
7431 case REAL_TYPE:
7432 switch (flt_eval_method)
7434 case 1:
7435 if (TYPE_MODE (type) == TYPE_MODE (float_type_node))
7436 return double_type_node;
7437 break;
7438 case 2:
7439 if (TYPE_MODE (type) == TYPE_MODE (float_type_node)
7440 || TYPE_MODE (type) == TYPE_MODE (double_type_node))
7441 return long_double_type_node;
7442 break;
7443 default:
7444 gcc_unreachable ();
7446 break;
7447 case COMPLEX_TYPE:
7448 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
7449 return NULL_TREE;
7450 switch (flt_eval_method)
7452 case 1:
7453 if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node))
7454 return complex_double_type_node;
7455 break;
7456 case 2:
7457 if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node)
7458 || (TYPE_MODE (TREE_TYPE (type))
7459 == TYPE_MODE (double_type_node)))
7460 return complex_long_double_type_node;
7461 break;
7462 default:
7463 gcc_unreachable ();
7465 break;
7466 default:
7467 break;
7470 return NULL_TREE;
7473 /* Return OP, stripped of any conversions to wider types as much as is safe.
7474 Converting the value back to OP's type makes a value equivalent to OP.
7476 If FOR_TYPE is nonzero, we return a value which, if converted to
7477 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
7479 OP must have integer, real or enumeral type. Pointers are not allowed!
7481 There are some cases where the obvious value we could return
7482 would regenerate to OP if converted to OP's type,
7483 but would not extend like OP to wider types.
7484 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
7485 For example, if OP is (unsigned short)(signed char)-1,
7486 we avoid returning (signed char)-1 if FOR_TYPE is int,
7487 even though extending that to an unsigned short would regenerate OP,
7488 since the result of extending (signed char)-1 to (int)
7489 is different from (int) OP. */
7491 tree
7492 get_unwidened (tree op, tree for_type)
7494 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
7495 tree type = TREE_TYPE (op);
7496 unsigned final_prec
7497 = TYPE_PRECISION (for_type != 0 ? for_type : type);
7498 int uns
7499 = (for_type != 0 && for_type != type
7500 && final_prec > TYPE_PRECISION (type)
7501 && TYPE_UNSIGNED (type));
7502 tree win = op;
7504 while (CONVERT_EXPR_P (op))
7506 int bitschange;
7508 /* TYPE_PRECISION on vector types has different meaning
7509 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
7510 so avoid them here. */
7511 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
7512 break;
7514 bitschange = TYPE_PRECISION (TREE_TYPE (op))
7515 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
7517 /* Truncations are many-one so cannot be removed.
7518 Unless we are later going to truncate down even farther. */
7519 if (bitschange < 0
7520 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
7521 break;
7523 /* See what's inside this conversion. If we decide to strip it,
7524 we will set WIN. */
7525 op = TREE_OPERAND (op, 0);
7527 /* If we have not stripped any zero-extensions (uns is 0),
7528 we can strip any kind of extension.
7529 If we have previously stripped a zero-extension,
7530 only zero-extensions can safely be stripped.
7531 Any extension can be stripped if the bits it would produce
7532 are all going to be discarded later by truncating to FOR_TYPE. */
7534 if (bitschange > 0)
7536 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
7537 win = op;
7538 /* TYPE_UNSIGNED says whether this is a zero-extension.
7539 Let's avoid computing it if it does not affect WIN
7540 and if UNS will not be needed again. */
7541 if ((uns
7542 || CONVERT_EXPR_P (op))
7543 && TYPE_UNSIGNED (TREE_TYPE (op)))
7545 uns = 1;
7546 win = op;
7551 return win;
7554 /* Return OP or a simpler expression for a narrower value
7555 which can be sign-extended or zero-extended to give back OP.
7556 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
7557 or 0 if the value should be sign-extended. */
7559 tree
7560 get_narrower (tree op, int *unsignedp_ptr)
7562 int uns = 0;
7563 int first = 1;
7564 tree win = op;
7565 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
7567 while (TREE_CODE (op) == NOP_EXPR)
7569 int bitschange
7570 = (TYPE_PRECISION (TREE_TYPE (op))
7571 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
7573 /* Truncations are many-one so cannot be removed. */
7574 if (bitschange < 0)
7575 break;
7577 /* See what's inside this conversion. If we decide to strip it,
7578 we will set WIN. */
7580 if (bitschange > 0)
7582 op = TREE_OPERAND (op, 0);
7583 /* An extension: the outermost one can be stripped,
7584 but remember whether it is zero or sign extension. */
7585 if (first)
7586 uns = TYPE_UNSIGNED (TREE_TYPE (op));
7587 /* Otherwise, if a sign extension has been stripped,
7588 only sign extensions can now be stripped;
7589 if a zero extension has been stripped, only zero-extensions. */
7590 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
7591 break;
7592 first = 0;
7594 else /* bitschange == 0 */
7596 /* A change in nominal type can always be stripped, but we must
7597 preserve the unsignedness. */
7598 if (first)
7599 uns = TYPE_UNSIGNED (TREE_TYPE (op));
7600 first = 0;
7601 op = TREE_OPERAND (op, 0);
7602 /* Keep trying to narrow, but don't assign op to win if it
7603 would turn an integral type into something else. */
7604 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
7605 continue;
7608 win = op;
7611 if (TREE_CODE (op) == COMPONENT_REF
7612 /* Since type_for_size always gives an integer type. */
7613 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
7614 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
7615 /* Ensure field is laid out already. */
7616 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
7617 && host_integerp (DECL_SIZE (TREE_OPERAND (op, 1)), 1))
7619 unsigned HOST_WIDE_INT innerprec
7620 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
7621 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
7622 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
7623 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
7625 /* We can get this structure field in a narrower type that fits it,
7626 but the resulting extension to its nominal type (a fullword type)
7627 must satisfy the same conditions as for other extensions.
7629 Do this only for fields that are aligned (not bit-fields),
7630 because when bit-field insns will be used there is no
7631 advantage in doing this. */
7633 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
7634 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
7635 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
7636 && type != 0)
7638 if (first)
7639 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
7640 win = fold_convert (type, op);
7644 *unsignedp_ptr = uns;
7645 return win;
7648 /* Nonzero if integer constant C has a value that is permissible
7649 for type TYPE (an INTEGER_TYPE). */
7652 int_fits_type_p (const_tree c, const_tree type)
7654 tree type_low_bound, type_high_bound;
7655 bool ok_for_low_bound, ok_for_high_bound, unsc;
7656 double_int dc, dd;
7658 dc = tree_to_double_int (c);
7659 unsc = TYPE_UNSIGNED (TREE_TYPE (c));
7661 if (TREE_CODE (TREE_TYPE (c)) == INTEGER_TYPE
7662 && TYPE_IS_SIZETYPE (TREE_TYPE (c))
7663 && unsc)
7664 /* So c is an unsigned integer whose type is sizetype and type is not.
7665 sizetype'd integers are sign extended even though they are
7666 unsigned. If the integer value fits in the lower end word of c,
7667 and if the higher end word has all its bits set to 1, that
7668 means the higher end bits are set to 1 only for sign extension.
7669 So let's convert c into an equivalent zero extended unsigned
7670 integer. */
7671 dc = double_int_zext (dc, TYPE_PRECISION (TREE_TYPE (c)));
7673 retry:
7674 type_low_bound = TYPE_MIN_VALUE (type);
7675 type_high_bound = TYPE_MAX_VALUE (type);
7677 /* If at least one bound of the type is a constant integer, we can check
7678 ourselves and maybe make a decision. If no such decision is possible, but
7679 this type is a subtype, try checking against that. Otherwise, use
7680 fit_double_type, which checks against the precision.
7682 Compute the status for each possibly constant bound, and return if we see
7683 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
7684 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
7685 for "constant known to fit". */
7687 /* Check if c >= type_low_bound. */
7688 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
7690 dd = tree_to_double_int (type_low_bound);
7691 if (TREE_CODE (type) == INTEGER_TYPE
7692 && TYPE_IS_SIZETYPE (type)
7693 && TYPE_UNSIGNED (type))
7694 dd = double_int_zext (dd, TYPE_PRECISION (type));
7695 if (unsc != TYPE_UNSIGNED (TREE_TYPE (type_low_bound)))
7697 int c_neg = (!unsc && double_int_negative_p (dc));
7698 int t_neg = (unsc && double_int_negative_p (dd));
7700 if (c_neg && !t_neg)
7701 return 0;
7702 if ((c_neg || !t_neg) && double_int_ucmp (dc, dd) < 0)
7703 return 0;
7705 else if (double_int_cmp (dc, dd, unsc) < 0)
7706 return 0;
7707 ok_for_low_bound = true;
7709 else
7710 ok_for_low_bound = false;
7712 /* Check if c <= type_high_bound. */
7713 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
7715 dd = tree_to_double_int (type_high_bound);
7716 if (TREE_CODE (type) == INTEGER_TYPE
7717 && TYPE_IS_SIZETYPE (type)
7718 && TYPE_UNSIGNED (type))
7719 dd = double_int_zext (dd, TYPE_PRECISION (type));
7720 if (unsc != TYPE_UNSIGNED (TREE_TYPE (type_high_bound)))
7722 int c_neg = (!unsc && double_int_negative_p (dc));
7723 int t_neg = (unsc && double_int_negative_p (dd));
7725 if (t_neg && !c_neg)
7726 return 0;
7727 if ((t_neg || !c_neg) && double_int_ucmp (dc, dd) > 0)
7728 return 0;
7730 else if (double_int_cmp (dc, dd, unsc) > 0)
7731 return 0;
7732 ok_for_high_bound = true;
7734 else
7735 ok_for_high_bound = false;
7737 /* If the constant fits both bounds, the result is known. */
7738 if (ok_for_low_bound && ok_for_high_bound)
7739 return 1;
7741 /* Perform some generic filtering which may allow making a decision
7742 even if the bounds are not constant. First, negative integers
7743 never fit in unsigned types, */
7744 if (TYPE_UNSIGNED (type) && !unsc && double_int_negative_p (dc))
7745 return 0;
7747 /* Second, narrower types always fit in wider ones. */
7748 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
7749 return 1;
7751 /* Third, unsigned integers with top bit set never fit signed types. */
7752 if (! TYPE_UNSIGNED (type) && unsc)
7754 int prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (c))) - 1;
7755 if (prec < HOST_BITS_PER_WIDE_INT)
7757 if (((((unsigned HOST_WIDE_INT) 1) << prec) & dc.low) != 0)
7758 return 0;
7760 else if (((((unsigned HOST_WIDE_INT) 1)
7761 << (prec - HOST_BITS_PER_WIDE_INT)) & dc.high) != 0)
7762 return 0;
7765 /* If we haven't been able to decide at this point, there nothing more we
7766 can check ourselves here. Look at the base type if we have one and it
7767 has the same precision. */
7768 if (TREE_CODE (type) == INTEGER_TYPE
7769 && TREE_TYPE (type) != 0
7770 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
7772 type = TREE_TYPE (type);
7773 goto retry;
7776 /* Or to fit_double_type, if nothing else. */
7777 return !fit_double_type (dc.low, dc.high, &dc.low, &dc.high, type);
7780 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
7781 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
7782 represented (assuming two's-complement arithmetic) within the bit
7783 precision of the type are returned instead. */
7785 void
7786 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
7788 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
7789 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
7790 mpz_set_double_int (min, tree_to_double_int (TYPE_MIN_VALUE (type)),
7791 TYPE_UNSIGNED (type));
7792 else
7794 if (TYPE_UNSIGNED (type))
7795 mpz_set_ui (min, 0);
7796 else
7798 double_int mn;
7799 mn = double_int_mask (TYPE_PRECISION (type) - 1);
7800 mn = double_int_sext (double_int_add (mn, double_int_one),
7801 TYPE_PRECISION (type));
7802 mpz_set_double_int (min, mn, false);
7806 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
7807 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
7808 mpz_set_double_int (max, tree_to_double_int (TYPE_MAX_VALUE (type)),
7809 TYPE_UNSIGNED (type));
7810 else
7812 if (TYPE_UNSIGNED (type))
7813 mpz_set_double_int (max, double_int_mask (TYPE_PRECISION (type)),
7814 true);
7815 else
7816 mpz_set_double_int (max, double_int_mask (TYPE_PRECISION (type) - 1),
7817 true);
7821 /* Return true if VAR is an automatic variable defined in function FN. */
7823 bool
7824 auto_var_in_fn_p (const_tree var, const_tree fn)
7826 return (DECL_P (var) && DECL_CONTEXT (var) == fn
7827 && (((TREE_CODE (var) == VAR_DECL || TREE_CODE (var) == PARM_DECL)
7828 && ! TREE_STATIC (var))
7829 || TREE_CODE (var) == LABEL_DECL
7830 || TREE_CODE (var) == RESULT_DECL));
7833 /* Subprogram of following function. Called by walk_tree.
7835 Return *TP if it is an automatic variable or parameter of the
7836 function passed in as DATA. */
7838 static tree
7839 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
7841 tree fn = (tree) data;
7843 if (TYPE_P (*tp))
7844 *walk_subtrees = 0;
7846 else if (DECL_P (*tp)
7847 && auto_var_in_fn_p (*tp, fn))
7848 return *tp;
7850 return NULL_TREE;
7853 /* Returns true if T is, contains, or refers to a type with variable
7854 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
7855 arguments, but not the return type. If FN is nonzero, only return
7856 true if a modifier of the type or position of FN is a variable or
7857 parameter inside FN.
7859 This concept is more general than that of C99 'variably modified types':
7860 in C99, a struct type is never variably modified because a VLA may not
7861 appear as a structure member. However, in GNU C code like:
7863 struct S { int i[f()]; };
7865 is valid, and other languages may define similar constructs. */
7867 bool
7868 variably_modified_type_p (tree type, tree fn)
7870 tree t;
7872 /* Test if T is either variable (if FN is zero) or an expression containing
7873 a variable in FN. */
7874 #define RETURN_TRUE_IF_VAR(T) \
7875 do { tree _t = (T); \
7876 if (_t && _t != error_mark_node && TREE_CODE (_t) != INTEGER_CST \
7877 && (!fn || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
7878 return true; } while (0)
7880 if (type == error_mark_node)
7881 return false;
7883 /* If TYPE itself has variable size, it is variably modified. */
7884 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
7885 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
7887 switch (TREE_CODE (type))
7889 case POINTER_TYPE:
7890 case REFERENCE_TYPE:
7891 case VECTOR_TYPE:
7892 if (variably_modified_type_p (TREE_TYPE (type), fn))
7893 return true;
7894 break;
7896 case FUNCTION_TYPE:
7897 case METHOD_TYPE:
7898 /* If TYPE is a function type, it is variably modified if the
7899 return type is variably modified. */
7900 if (variably_modified_type_p (TREE_TYPE (type), fn))
7901 return true;
7902 break;
7904 case INTEGER_TYPE:
7905 case REAL_TYPE:
7906 case FIXED_POINT_TYPE:
7907 case ENUMERAL_TYPE:
7908 case BOOLEAN_TYPE:
7909 /* Scalar types are variably modified if their end points
7910 aren't constant. */
7911 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
7912 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
7913 break;
7915 case RECORD_TYPE:
7916 case UNION_TYPE:
7917 case QUAL_UNION_TYPE:
7918 /* We can't see if any of the fields are variably-modified by the
7919 definition we normally use, since that would produce infinite
7920 recursion via pointers. */
7921 /* This is variably modified if some field's type is. */
7922 for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
7923 if (TREE_CODE (t) == FIELD_DECL)
7925 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
7926 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
7927 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
7929 if (TREE_CODE (type) == QUAL_UNION_TYPE)
7930 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
7932 break;
7934 case ARRAY_TYPE:
7935 /* Do not call ourselves to avoid infinite recursion. This is
7936 variably modified if the element type is. */
7937 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
7938 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
7939 break;
7941 default:
7942 break;
7945 /* The current language may have other cases to check, but in general,
7946 all other types are not variably modified. */
7947 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
7949 #undef RETURN_TRUE_IF_VAR
7952 /* Given a DECL or TYPE, return the scope in which it was declared, or
7953 NULL_TREE if there is no containing scope. */
7955 tree
7956 get_containing_scope (const_tree t)
7958 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
7961 /* Return the innermost context enclosing DECL that is
7962 a FUNCTION_DECL, or zero if none. */
7964 tree
7965 decl_function_context (const_tree decl)
7967 tree context;
7969 if (TREE_CODE (decl) == ERROR_MARK)
7970 return 0;
7972 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
7973 where we look up the function at runtime. Such functions always take
7974 a first argument of type 'pointer to real context'.
7976 C++ should really be fixed to use DECL_CONTEXT for the real context,
7977 and use something else for the "virtual context". */
7978 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
7979 context
7980 = TYPE_MAIN_VARIANT
7981 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
7982 else
7983 context = DECL_CONTEXT (decl);
7985 while (context && TREE_CODE (context) != FUNCTION_DECL)
7987 if (TREE_CODE (context) == BLOCK)
7988 context = BLOCK_SUPERCONTEXT (context);
7989 else
7990 context = get_containing_scope (context);
7993 return context;
7996 /* Return the innermost context enclosing DECL that is
7997 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
7998 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8000 tree
8001 decl_type_context (const_tree decl)
8003 tree context = DECL_CONTEXT (decl);
8005 while (context)
8006 switch (TREE_CODE (context))
8008 case NAMESPACE_DECL:
8009 case TRANSLATION_UNIT_DECL:
8010 return NULL_TREE;
8012 case RECORD_TYPE:
8013 case UNION_TYPE:
8014 case QUAL_UNION_TYPE:
8015 return context;
8017 case TYPE_DECL:
8018 case FUNCTION_DECL:
8019 context = DECL_CONTEXT (context);
8020 break;
8022 case BLOCK:
8023 context = BLOCK_SUPERCONTEXT (context);
8024 break;
8026 default:
8027 gcc_unreachable ();
8030 return NULL_TREE;
8033 /* CALL is a CALL_EXPR. Return the declaration for the function
8034 called, or NULL_TREE if the called function cannot be
8035 determined. */
8037 tree
8038 get_callee_fndecl (const_tree call)
8040 tree addr;
8042 if (call == error_mark_node)
8043 return error_mark_node;
8045 /* It's invalid to call this function with anything but a
8046 CALL_EXPR. */
8047 gcc_assert (TREE_CODE (call) == CALL_EXPR);
8049 /* The first operand to the CALL is the address of the function
8050 called. */
8051 addr = CALL_EXPR_FN (call);
8053 STRIP_NOPS (addr);
8055 /* If this is a readonly function pointer, extract its initial value. */
8056 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
8057 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
8058 && DECL_INITIAL (addr))
8059 addr = DECL_INITIAL (addr);
8061 /* If the address is just `&f' for some function `f', then we know
8062 that `f' is being called. */
8063 if (TREE_CODE (addr) == ADDR_EXPR
8064 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
8065 return TREE_OPERAND (addr, 0);
8067 /* We couldn't figure out what was being called. */
8068 return NULL_TREE;
8071 /* Print debugging information about tree nodes generated during the compile,
8072 and any language-specific information. */
8074 void
8075 dump_tree_statistics (void)
8077 #ifdef GATHER_STATISTICS
8078 int i;
8079 int total_nodes, total_bytes;
8080 #endif
8082 fprintf (stderr, "\n??? tree nodes created\n\n");
8083 #ifdef GATHER_STATISTICS
8084 fprintf (stderr, "Kind Nodes Bytes\n");
8085 fprintf (stderr, "---------------------------------------\n");
8086 total_nodes = total_bytes = 0;
8087 for (i = 0; i < (int) all_kinds; i++)
8089 fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
8090 tree_node_counts[i], tree_node_sizes[i]);
8091 total_nodes += tree_node_counts[i];
8092 total_bytes += tree_node_sizes[i];
8094 fprintf (stderr, "---------------------------------------\n");
8095 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
8096 fprintf (stderr, "---------------------------------------\n");
8097 ssanames_print_statistics ();
8098 phinodes_print_statistics ();
8099 #else
8100 fprintf (stderr, "(No per-node statistics)\n");
8101 #endif
8102 print_type_hash_statistics ();
8103 print_debug_expr_statistics ();
8104 print_value_expr_statistics ();
8105 lang_hooks.print_statistics ();
8108 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
8110 /* Generate a crc32 of a string. */
8112 unsigned
8113 crc32_string (unsigned chksum, const char *string)
8117 unsigned value = *string << 24;
8118 unsigned ix;
8120 for (ix = 8; ix--; value <<= 1)
8122 unsigned feedback;
8124 feedback = (value ^ chksum) & 0x80000000 ? 0x04c11db7 : 0;
8125 chksum <<= 1;
8126 chksum ^= feedback;
8129 while (*string++);
8130 return chksum;
8133 /* P is a string that will be used in a symbol. Mask out any characters
8134 that are not valid in that context. */
8136 void
8137 clean_symbol_name (char *p)
8139 for (; *p; p++)
8140 if (! (ISALNUM (*p)
8141 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
8142 || *p == '$'
8143 #endif
8144 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
8145 || *p == '.'
8146 #endif
8148 *p = '_';
8151 /* Generate a name for a special-purpose function function.
8152 The generated name may need to be unique across the whole link.
8153 TYPE is some string to identify the purpose of this function to the
8154 linker or collect2; it must start with an uppercase letter,
8155 one of:
8156 I - for constructors
8157 D - for destructors
8158 N - for C++ anonymous namespaces
8159 F - for DWARF unwind frame information. */
8161 tree
8162 get_file_function_name (const char *type)
8164 char *buf;
8165 const char *p;
8166 char *q;
8168 /* If we already have a name we know to be unique, just use that. */
8169 if (first_global_object_name)
8170 p = q = ASTRDUP (first_global_object_name);
8171 /* If the target is handling the constructors/destructors, they
8172 will be local to this file and the name is only necessary for
8173 debugging purposes. */
8174 else if ((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
8176 const char *file = main_input_filename;
8177 if (! file)
8178 file = input_filename;
8179 /* Just use the file's basename, because the full pathname
8180 might be quite long. */
8181 p = strrchr (file, '/');
8182 if (p)
8183 p++;
8184 else
8185 p = file;
8186 p = q = ASTRDUP (p);
8188 else
8190 /* Otherwise, the name must be unique across the entire link.
8191 We don't have anything that we know to be unique to this translation
8192 unit, so use what we do have and throw in some randomness. */
8193 unsigned len;
8194 const char *name = weak_global_object_name;
8195 const char *file = main_input_filename;
8197 if (! name)
8198 name = "";
8199 if (! file)
8200 file = input_filename;
8202 len = strlen (file);
8203 q = (char *) alloca (9 * 2 + len + 1);
8204 memcpy (q, file, len + 1);
8206 sprintf (q + len, "_%08X_%08X", crc32_string (0, name),
8207 crc32_string (0, get_random_seed (false)));
8209 p = q;
8212 clean_symbol_name (q);
8213 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
8214 + strlen (type));
8216 /* Set up the name of the file-level functions we may need.
8217 Use a global object (which is already required to be unique over
8218 the program) rather than the file name (which imposes extra
8219 constraints). */
8220 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
8222 return get_identifier (buf);
8225 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
8227 /* Complain that the tree code of NODE does not match the expected 0
8228 terminated list of trailing codes. The trailing code list can be
8229 empty, for a more vague error message. FILE, LINE, and FUNCTION
8230 are of the caller. */
8232 void
8233 tree_check_failed (const_tree node, const char *file,
8234 int line, const char *function, ...)
8236 va_list args;
8237 const char *buffer;
8238 unsigned length = 0;
8239 int code;
8241 va_start (args, function);
8242 while ((code = va_arg (args, int)))
8243 length += 4 + strlen (tree_code_name[code]);
8244 va_end (args);
8245 if (length)
8247 char *tmp;
8248 va_start (args, function);
8249 length += strlen ("expected ");
8250 buffer = tmp = (char *) alloca (length);
8251 length = 0;
8252 while ((code = va_arg (args, int)))
8254 const char *prefix = length ? " or " : "expected ";
8256 strcpy (tmp + length, prefix);
8257 length += strlen (prefix);
8258 strcpy (tmp + length, tree_code_name[code]);
8259 length += strlen (tree_code_name[code]);
8261 va_end (args);
8263 else
8264 buffer = "unexpected node";
8266 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8267 buffer, tree_code_name[TREE_CODE (node)],
8268 function, trim_filename (file), line);
8271 /* Complain that the tree code of NODE does match the expected 0
8272 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
8273 the caller. */
8275 void
8276 tree_not_check_failed (const_tree node, const char *file,
8277 int line, const char *function, ...)
8279 va_list args;
8280 char *buffer;
8281 unsigned length = 0;
8282 int code;
8284 va_start (args, function);
8285 while ((code = va_arg (args, int)))
8286 length += 4 + strlen (tree_code_name[code]);
8287 va_end (args);
8288 va_start (args, function);
8289 buffer = (char *) alloca (length);
8290 length = 0;
8291 while ((code = va_arg (args, int)))
8293 if (length)
8295 strcpy (buffer + length, " or ");
8296 length += 4;
8298 strcpy (buffer + length, tree_code_name[code]);
8299 length += strlen (tree_code_name[code]);
8301 va_end (args);
8303 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
8304 buffer, tree_code_name[TREE_CODE (node)],
8305 function, trim_filename (file), line);
8308 /* Similar to tree_check_failed, except that we check for a class of tree
8309 code, given in CL. */
8311 void
8312 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
8313 const char *file, int line, const char *function)
8315 internal_error
8316 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
8317 TREE_CODE_CLASS_STRING (cl),
8318 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
8319 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8322 /* Similar to tree_check_failed, except that instead of specifying a
8323 dozen codes, use the knowledge that they're all sequential. */
8325 void
8326 tree_range_check_failed (const_tree node, const char *file, int line,
8327 const char *function, enum tree_code c1,
8328 enum tree_code c2)
8330 char *buffer;
8331 unsigned length = 0;
8332 unsigned int c;
8334 for (c = c1; c <= c2; ++c)
8335 length += 4 + strlen (tree_code_name[c]);
8337 length += strlen ("expected ");
8338 buffer = (char *) alloca (length);
8339 length = 0;
8341 for (c = c1; c <= c2; ++c)
8343 const char *prefix = length ? " or " : "expected ";
8345 strcpy (buffer + length, prefix);
8346 length += strlen (prefix);
8347 strcpy (buffer + length, tree_code_name[c]);
8348 length += strlen (tree_code_name[c]);
8351 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8352 buffer, tree_code_name[TREE_CODE (node)],
8353 function, trim_filename (file), line);
8357 /* Similar to tree_check_failed, except that we check that a tree does
8358 not have the specified code, given in CL. */
8360 void
8361 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
8362 const char *file, int line, const char *function)
8364 internal_error
8365 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
8366 TREE_CODE_CLASS_STRING (cl),
8367 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
8368 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8372 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
8374 void
8375 omp_clause_check_failed (const_tree node, const char *file, int line,
8376 const char *function, enum omp_clause_code code)
8378 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
8379 omp_clause_code_name[code], tree_code_name[TREE_CODE (node)],
8380 function, trim_filename (file), line);
8384 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
8386 void
8387 omp_clause_range_check_failed (const_tree node, const char *file, int line,
8388 const char *function, enum omp_clause_code c1,
8389 enum omp_clause_code c2)
8391 char *buffer;
8392 unsigned length = 0;
8393 unsigned int c;
8395 for (c = c1; c <= c2; ++c)
8396 length += 4 + strlen (omp_clause_code_name[c]);
8398 length += strlen ("expected ");
8399 buffer = (char *) alloca (length);
8400 length = 0;
8402 for (c = c1; c <= c2; ++c)
8404 const char *prefix = length ? " or " : "expected ";
8406 strcpy (buffer + length, prefix);
8407 length += strlen (prefix);
8408 strcpy (buffer + length, omp_clause_code_name[c]);
8409 length += strlen (omp_clause_code_name[c]);
8412 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8413 buffer, omp_clause_code_name[TREE_CODE (node)],
8414 function, trim_filename (file), line);
8418 #undef DEFTREESTRUCT
8419 #define DEFTREESTRUCT(VAL, NAME) NAME,
8421 static const char *ts_enum_names[] = {
8422 #include "treestruct.def"
8424 #undef DEFTREESTRUCT
8426 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
8428 /* Similar to tree_class_check_failed, except that we check for
8429 whether CODE contains the tree structure identified by EN. */
8431 void
8432 tree_contains_struct_check_failed (const_tree node,
8433 const enum tree_node_structure_enum en,
8434 const char *file, int line,
8435 const char *function)
8437 internal_error
8438 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
8439 TS_ENUM_NAME(en),
8440 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8444 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
8445 (dynamically sized) vector. */
8447 void
8448 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
8449 const char *function)
8451 internal_error
8452 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
8453 idx + 1, len, function, trim_filename (file), line);
8456 /* Similar to above, except that the check is for the bounds of the operand
8457 vector of an expression node EXP. */
8459 void
8460 tree_operand_check_failed (int idx, const_tree exp, const char *file,
8461 int line, const char *function)
8463 int code = TREE_CODE (exp);
8464 internal_error
8465 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
8466 idx + 1, tree_code_name[code], TREE_OPERAND_LENGTH (exp),
8467 function, trim_filename (file), line);
8470 /* Similar to above, except that the check is for the number of
8471 operands of an OMP_CLAUSE node. */
8473 void
8474 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
8475 int line, const char *function)
8477 internal_error
8478 ("tree check: accessed operand %d of omp_clause %s with %d operands "
8479 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
8480 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
8481 trim_filename (file), line);
8483 #endif /* ENABLE_TREE_CHECKING */
8485 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
8486 and mapped to the machine mode MODE. Initialize its fields and build
8487 the information necessary for debugging output. */
8489 static tree
8490 make_vector_type (tree innertype, int nunits, enum machine_mode mode)
8492 tree t;
8493 hashval_t hashcode = 0;
8495 t = make_node (VECTOR_TYPE);
8496 TREE_TYPE (t) = TYPE_MAIN_VARIANT (innertype);
8497 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
8498 SET_TYPE_MODE (t, mode);
8500 if (TYPE_STRUCTURAL_EQUALITY_P (innertype))
8501 SET_TYPE_STRUCTURAL_EQUALITY (t);
8502 else if (TYPE_CANONICAL (innertype) != innertype
8503 || mode != VOIDmode)
8504 TYPE_CANONICAL (t)
8505 = make_vector_type (TYPE_CANONICAL (innertype), nunits, VOIDmode);
8507 layout_type (t);
8510 tree index = build_int_cst (NULL_TREE, nunits - 1);
8511 tree array = build_array_type (TYPE_MAIN_VARIANT (innertype),
8512 build_index_type (index));
8513 tree rt = make_node (RECORD_TYPE);
8515 TYPE_FIELDS (rt) = build_decl (UNKNOWN_LOCATION, FIELD_DECL,
8516 get_identifier ("f"), array);
8517 DECL_CONTEXT (TYPE_FIELDS (rt)) = rt;
8518 layout_type (rt);
8519 TYPE_DEBUG_REPRESENTATION_TYPE (t) = rt;
8520 /* In dwarfout.c, type lookup uses TYPE_UID numbers. We want to output
8521 the representation type, and we want to find that die when looking up
8522 the vector type. This is most easily achieved by making the TYPE_UID
8523 numbers equal. */
8524 TYPE_UID (rt) = TYPE_UID (t);
8527 hashcode = iterative_hash_host_wide_int (VECTOR_TYPE, hashcode);
8528 hashcode = iterative_hash_host_wide_int (nunits, hashcode);
8529 hashcode = iterative_hash_host_wide_int (mode, hashcode);
8530 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (t)), hashcode);
8531 t = type_hash_canon (hashcode, t);
8533 /* We have built a main variant, based on the main variant of the
8534 inner type. Use it to build the variant we return. */
8535 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
8536 && TREE_TYPE (t) != innertype)
8537 return build_type_attribute_qual_variant (t,
8538 TYPE_ATTRIBUTES (innertype),
8539 TYPE_QUALS (innertype));
8541 return t;
8544 static tree
8545 make_or_reuse_type (unsigned size, int unsignedp)
8547 if (size == INT_TYPE_SIZE)
8548 return unsignedp ? unsigned_type_node : integer_type_node;
8549 if (size == CHAR_TYPE_SIZE)
8550 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
8551 if (size == SHORT_TYPE_SIZE)
8552 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
8553 if (size == LONG_TYPE_SIZE)
8554 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
8555 if (size == LONG_LONG_TYPE_SIZE)
8556 return (unsignedp ? long_long_unsigned_type_node
8557 : long_long_integer_type_node);
8559 if (unsignedp)
8560 return make_unsigned_type (size);
8561 else
8562 return make_signed_type (size);
8565 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
8567 static tree
8568 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
8570 if (satp)
8572 if (size == SHORT_FRACT_TYPE_SIZE)
8573 return unsignedp ? sat_unsigned_short_fract_type_node
8574 : sat_short_fract_type_node;
8575 if (size == FRACT_TYPE_SIZE)
8576 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
8577 if (size == LONG_FRACT_TYPE_SIZE)
8578 return unsignedp ? sat_unsigned_long_fract_type_node
8579 : sat_long_fract_type_node;
8580 if (size == LONG_LONG_FRACT_TYPE_SIZE)
8581 return unsignedp ? sat_unsigned_long_long_fract_type_node
8582 : sat_long_long_fract_type_node;
8584 else
8586 if (size == SHORT_FRACT_TYPE_SIZE)
8587 return unsignedp ? unsigned_short_fract_type_node
8588 : short_fract_type_node;
8589 if (size == FRACT_TYPE_SIZE)
8590 return unsignedp ? unsigned_fract_type_node : fract_type_node;
8591 if (size == LONG_FRACT_TYPE_SIZE)
8592 return unsignedp ? unsigned_long_fract_type_node
8593 : long_fract_type_node;
8594 if (size == LONG_LONG_FRACT_TYPE_SIZE)
8595 return unsignedp ? unsigned_long_long_fract_type_node
8596 : long_long_fract_type_node;
8599 return make_fract_type (size, unsignedp, satp);
8602 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
8604 static tree
8605 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
8607 if (satp)
8609 if (size == SHORT_ACCUM_TYPE_SIZE)
8610 return unsignedp ? sat_unsigned_short_accum_type_node
8611 : sat_short_accum_type_node;
8612 if (size == ACCUM_TYPE_SIZE)
8613 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
8614 if (size == LONG_ACCUM_TYPE_SIZE)
8615 return unsignedp ? sat_unsigned_long_accum_type_node
8616 : sat_long_accum_type_node;
8617 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
8618 return unsignedp ? sat_unsigned_long_long_accum_type_node
8619 : sat_long_long_accum_type_node;
8621 else
8623 if (size == SHORT_ACCUM_TYPE_SIZE)
8624 return unsignedp ? unsigned_short_accum_type_node
8625 : short_accum_type_node;
8626 if (size == ACCUM_TYPE_SIZE)
8627 return unsignedp ? unsigned_accum_type_node : accum_type_node;
8628 if (size == LONG_ACCUM_TYPE_SIZE)
8629 return unsignedp ? unsigned_long_accum_type_node
8630 : long_accum_type_node;
8631 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
8632 return unsignedp ? unsigned_long_long_accum_type_node
8633 : long_long_accum_type_node;
8636 return make_accum_type (size, unsignedp, satp);
8639 /* Create nodes for all integer types (and error_mark_node) using the sizes
8640 of C datatypes. The caller should call set_sizetype soon after calling
8641 this function to select one of the types as sizetype. */
8643 void
8644 build_common_tree_nodes (bool signed_char, bool signed_sizetype)
8646 error_mark_node = make_node (ERROR_MARK);
8647 TREE_TYPE (error_mark_node) = error_mark_node;
8649 initialize_sizetypes (signed_sizetype);
8651 /* Define both `signed char' and `unsigned char'. */
8652 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
8653 TYPE_STRING_FLAG (signed_char_type_node) = 1;
8654 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
8655 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
8657 /* Define `char', which is like either `signed char' or `unsigned char'
8658 but not the same as either. */
8659 char_type_node
8660 = (signed_char
8661 ? make_signed_type (CHAR_TYPE_SIZE)
8662 : make_unsigned_type (CHAR_TYPE_SIZE));
8663 TYPE_STRING_FLAG (char_type_node) = 1;
8665 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
8666 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
8667 integer_type_node = make_signed_type (INT_TYPE_SIZE);
8668 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
8669 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
8670 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
8671 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
8672 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
8674 /* Define a boolean type. This type only represents boolean values but
8675 may be larger than char depending on the value of BOOL_TYPE_SIZE.
8676 Front ends which want to override this size (i.e. Java) can redefine
8677 boolean_type_node before calling build_common_tree_nodes_2. */
8678 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
8679 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
8680 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
8681 TYPE_PRECISION (boolean_type_node) = 1;
8683 /* Fill in the rest of the sized types. Reuse existing type nodes
8684 when possible. */
8685 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
8686 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
8687 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
8688 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
8689 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
8691 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
8692 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
8693 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
8694 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
8695 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
8697 access_public_node = get_identifier ("public");
8698 access_protected_node = get_identifier ("protected");
8699 access_private_node = get_identifier ("private");
8702 /* Call this function after calling build_common_tree_nodes and set_sizetype.
8703 It will create several other common tree nodes. */
8705 void
8706 build_common_tree_nodes_2 (int short_double)
8708 /* Define these next since types below may used them. */
8709 integer_zero_node = build_int_cst (NULL_TREE, 0);
8710 integer_one_node = build_int_cst (NULL_TREE, 1);
8711 integer_minus_one_node = build_int_cst (NULL_TREE, -1);
8713 size_zero_node = size_int (0);
8714 size_one_node = size_int (1);
8715 bitsize_zero_node = bitsize_int (0);
8716 bitsize_one_node = bitsize_int (1);
8717 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
8719 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
8720 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
8722 void_type_node = make_node (VOID_TYPE);
8723 layout_type (void_type_node);
8725 /* We are not going to have real types in C with less than byte alignment,
8726 so we might as well not have any types that claim to have it. */
8727 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
8728 TYPE_USER_ALIGN (void_type_node) = 0;
8730 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
8731 layout_type (TREE_TYPE (null_pointer_node));
8733 ptr_type_node = build_pointer_type (void_type_node);
8734 const_ptr_type_node
8735 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
8736 fileptr_type_node = ptr_type_node;
8738 float_type_node = make_node (REAL_TYPE);
8739 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
8740 layout_type (float_type_node);
8742 double_type_node = make_node (REAL_TYPE);
8743 if (short_double)
8744 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
8745 else
8746 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
8747 layout_type (double_type_node);
8749 long_double_type_node = make_node (REAL_TYPE);
8750 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
8751 layout_type (long_double_type_node);
8753 float_ptr_type_node = build_pointer_type (float_type_node);
8754 double_ptr_type_node = build_pointer_type (double_type_node);
8755 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
8756 integer_ptr_type_node = build_pointer_type (integer_type_node);
8758 /* Fixed size integer types. */
8759 uint32_type_node = build_nonstandard_integer_type (32, true);
8760 uint64_type_node = build_nonstandard_integer_type (64, true);
8762 /* Decimal float types. */
8763 dfloat32_type_node = make_node (REAL_TYPE);
8764 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
8765 layout_type (dfloat32_type_node);
8766 SET_TYPE_MODE (dfloat32_type_node, SDmode);
8767 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
8769 dfloat64_type_node = make_node (REAL_TYPE);
8770 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
8771 layout_type (dfloat64_type_node);
8772 SET_TYPE_MODE (dfloat64_type_node, DDmode);
8773 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
8775 dfloat128_type_node = make_node (REAL_TYPE);
8776 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
8777 layout_type (dfloat128_type_node);
8778 SET_TYPE_MODE (dfloat128_type_node, TDmode);
8779 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
8781 complex_integer_type_node = build_complex_type (integer_type_node);
8782 complex_float_type_node = build_complex_type (float_type_node);
8783 complex_double_type_node = build_complex_type (double_type_node);
8784 complex_long_double_type_node = build_complex_type (long_double_type_node);
8786 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
8787 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
8788 sat_ ## KIND ## _type_node = \
8789 make_sat_signed_ ## KIND ## _type (SIZE); \
8790 sat_unsigned_ ## KIND ## _type_node = \
8791 make_sat_unsigned_ ## KIND ## _type (SIZE); \
8792 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
8793 unsigned_ ## KIND ## _type_node = \
8794 make_unsigned_ ## KIND ## _type (SIZE);
8796 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
8797 sat_ ## WIDTH ## KIND ## _type_node = \
8798 make_sat_signed_ ## KIND ## _type (SIZE); \
8799 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
8800 make_sat_unsigned_ ## KIND ## _type (SIZE); \
8801 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
8802 unsigned_ ## WIDTH ## KIND ## _type_node = \
8803 make_unsigned_ ## KIND ## _type (SIZE);
8805 /* Make fixed-point type nodes based on four different widths. */
8806 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
8807 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
8808 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
8809 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
8810 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
8812 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
8813 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
8814 NAME ## _type_node = \
8815 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
8816 u ## NAME ## _type_node = \
8817 make_or_reuse_unsigned_ ## KIND ## _type \
8818 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
8819 sat_ ## NAME ## _type_node = \
8820 make_or_reuse_sat_signed_ ## KIND ## _type \
8821 (GET_MODE_BITSIZE (MODE ## mode)); \
8822 sat_u ## NAME ## _type_node = \
8823 make_or_reuse_sat_unsigned_ ## KIND ## _type \
8824 (GET_MODE_BITSIZE (U ## MODE ## mode));
8826 /* Fixed-point type and mode nodes. */
8827 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
8828 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
8829 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
8830 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
8831 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
8832 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
8833 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
8834 MAKE_FIXED_MODE_NODE (accum, ha, HA)
8835 MAKE_FIXED_MODE_NODE (accum, sa, SA)
8836 MAKE_FIXED_MODE_NODE (accum, da, DA)
8837 MAKE_FIXED_MODE_NODE (accum, ta, TA)
8840 tree t = targetm.build_builtin_va_list ();
8842 /* Many back-ends define record types without setting TYPE_NAME.
8843 If we copied the record type here, we'd keep the original
8844 record type without a name. This breaks name mangling. So,
8845 don't copy record types and let c_common_nodes_and_builtins()
8846 declare the type to be __builtin_va_list. */
8847 if (TREE_CODE (t) != RECORD_TYPE)
8848 t = build_variant_type_copy (t);
8850 va_list_type_node = t;
8854 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
8856 static void
8857 local_define_builtin (const char *name, tree type, enum built_in_function code,
8858 const char *library_name, int ecf_flags)
8860 tree decl;
8862 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
8863 library_name, NULL_TREE);
8864 if (ecf_flags & ECF_CONST)
8865 TREE_READONLY (decl) = 1;
8866 if (ecf_flags & ECF_PURE)
8867 DECL_PURE_P (decl) = 1;
8868 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
8869 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
8870 if (ecf_flags & ECF_NORETURN)
8871 TREE_THIS_VOLATILE (decl) = 1;
8872 if (ecf_flags & ECF_NOTHROW)
8873 TREE_NOTHROW (decl) = 1;
8874 if (ecf_flags & ECF_MALLOC)
8875 DECL_IS_MALLOC (decl) = 1;
8877 built_in_decls[code] = decl;
8878 implicit_built_in_decls[code] = decl;
8881 /* Call this function after instantiating all builtins that the language
8882 front end cares about. This will build the rest of the builtins that
8883 are relied upon by the tree optimizers and the middle-end. */
8885 void
8886 build_common_builtin_nodes (void)
8888 tree tmp, ftype;
8890 if (built_in_decls[BUILT_IN_MEMCPY] == NULL
8891 || built_in_decls[BUILT_IN_MEMMOVE] == NULL)
8893 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
8894 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
8895 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
8896 ftype = build_function_type (ptr_type_node, tmp);
8898 if (built_in_decls[BUILT_IN_MEMCPY] == NULL)
8899 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
8900 "memcpy", ECF_NOTHROW);
8901 if (built_in_decls[BUILT_IN_MEMMOVE] == NULL)
8902 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
8903 "memmove", ECF_NOTHROW);
8906 if (built_in_decls[BUILT_IN_MEMCMP] == NULL)
8908 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
8909 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
8910 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
8911 ftype = build_function_type (integer_type_node, tmp);
8912 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
8913 "memcmp", ECF_PURE | ECF_NOTHROW);
8916 if (built_in_decls[BUILT_IN_MEMSET] == NULL)
8918 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
8919 tmp = tree_cons (NULL_TREE, integer_type_node, tmp);
8920 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
8921 ftype = build_function_type (ptr_type_node, tmp);
8922 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
8923 "memset", ECF_NOTHROW);
8926 if (built_in_decls[BUILT_IN_ALLOCA] == NULL)
8928 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
8929 ftype = build_function_type (ptr_type_node, tmp);
8930 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
8931 "alloca", ECF_NOTHROW | ECF_MALLOC);
8934 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8935 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
8936 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
8937 ftype = build_function_type (void_type_node, tmp);
8938 local_define_builtin ("__builtin_init_trampoline", ftype,
8939 BUILT_IN_INIT_TRAMPOLINE,
8940 "__builtin_init_trampoline", ECF_NOTHROW);
8942 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8943 ftype = build_function_type (ptr_type_node, tmp);
8944 local_define_builtin ("__builtin_adjust_trampoline", ftype,
8945 BUILT_IN_ADJUST_TRAMPOLINE,
8946 "__builtin_adjust_trampoline",
8947 ECF_CONST | ECF_NOTHROW);
8949 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8950 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
8951 ftype = build_function_type (void_type_node, tmp);
8952 local_define_builtin ("__builtin_nonlocal_goto", ftype,
8953 BUILT_IN_NONLOCAL_GOTO,
8954 "__builtin_nonlocal_goto",
8955 ECF_NORETURN | ECF_NOTHROW);
8957 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8958 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
8959 ftype = build_function_type (void_type_node, tmp);
8960 local_define_builtin ("__builtin_setjmp_setup", ftype,
8961 BUILT_IN_SETJMP_SETUP,
8962 "__builtin_setjmp_setup", ECF_NOTHROW);
8964 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8965 ftype = build_function_type (ptr_type_node, tmp);
8966 local_define_builtin ("__builtin_setjmp_dispatcher", ftype,
8967 BUILT_IN_SETJMP_DISPATCHER,
8968 "__builtin_setjmp_dispatcher",
8969 ECF_PURE | ECF_NOTHROW);
8971 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8972 ftype = build_function_type (void_type_node, tmp);
8973 local_define_builtin ("__builtin_setjmp_receiver", ftype,
8974 BUILT_IN_SETJMP_RECEIVER,
8975 "__builtin_setjmp_receiver", ECF_NOTHROW);
8977 ftype = build_function_type (ptr_type_node, void_list_node);
8978 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
8979 "__builtin_stack_save", ECF_NOTHROW);
8981 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8982 ftype = build_function_type (void_type_node, tmp);
8983 local_define_builtin ("__builtin_stack_restore", ftype,
8984 BUILT_IN_STACK_RESTORE,
8985 "__builtin_stack_restore", ECF_NOTHROW);
8987 ftype = build_function_type (void_type_node, void_list_node);
8988 local_define_builtin ("__builtin_profile_func_enter", ftype,
8989 BUILT_IN_PROFILE_FUNC_ENTER, "profile_func_enter", 0);
8990 local_define_builtin ("__builtin_profile_func_exit", ftype,
8991 BUILT_IN_PROFILE_FUNC_EXIT, "profile_func_exit", 0);
8993 /* Complex multiplication and division. These are handled as builtins
8994 rather than optabs because emit_library_call_value doesn't support
8995 complex. Further, we can do slightly better with folding these
8996 beasties if the real and complex parts of the arguments are separate. */
8998 int mode;
9000 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
9002 char mode_name_buf[4], *q;
9003 const char *p;
9004 enum built_in_function mcode, dcode;
9005 tree type, inner_type;
9007 type = lang_hooks.types.type_for_mode ((enum machine_mode) mode, 0);
9008 if (type == NULL)
9009 continue;
9010 inner_type = TREE_TYPE (type);
9012 tmp = tree_cons (NULL_TREE, inner_type, void_list_node);
9013 tmp = tree_cons (NULL_TREE, inner_type, tmp);
9014 tmp = tree_cons (NULL_TREE, inner_type, tmp);
9015 tmp = tree_cons (NULL_TREE, inner_type, tmp);
9016 ftype = build_function_type (type, tmp);
9018 mcode = ((enum built_in_function)
9019 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
9020 dcode = ((enum built_in_function)
9021 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
9023 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
9024 *q = TOLOWER (*p);
9025 *q = '\0';
9027 built_in_names[mcode] = concat ("__mul", mode_name_buf, "3", NULL);
9028 local_define_builtin (built_in_names[mcode], ftype, mcode,
9029 built_in_names[mcode], ECF_CONST | ECF_NOTHROW);
9031 built_in_names[dcode] = concat ("__div", mode_name_buf, "3", NULL);
9032 local_define_builtin (built_in_names[dcode], ftype, dcode,
9033 built_in_names[dcode], ECF_CONST | ECF_NOTHROW);
9038 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
9039 better way.
9041 If we requested a pointer to a vector, build up the pointers that
9042 we stripped off while looking for the inner type. Similarly for
9043 return values from functions.
9045 The argument TYPE is the top of the chain, and BOTTOM is the
9046 new type which we will point to. */
9048 tree
9049 reconstruct_complex_type (tree type, tree bottom)
9051 tree inner, outer;
9053 if (TREE_CODE (type) == POINTER_TYPE)
9055 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9056 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
9057 TYPE_REF_CAN_ALIAS_ALL (type));
9059 else if (TREE_CODE (type) == REFERENCE_TYPE)
9061 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9062 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
9063 TYPE_REF_CAN_ALIAS_ALL (type));
9065 else if (TREE_CODE (type) == ARRAY_TYPE)
9067 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9068 outer = build_array_type (inner, TYPE_DOMAIN (type));
9070 else if (TREE_CODE (type) == FUNCTION_TYPE)
9072 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9073 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
9075 else if (TREE_CODE (type) == METHOD_TYPE)
9077 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9078 /* The build_method_type_directly() routine prepends 'this' to argument list,
9079 so we must compensate by getting rid of it. */
9080 outer
9081 = build_method_type_directly
9082 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
9083 inner,
9084 TREE_CHAIN (TYPE_ARG_TYPES (type)));
9086 else if (TREE_CODE (type) == OFFSET_TYPE)
9088 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9089 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
9091 else
9092 return bottom;
9094 return build_qualified_type (outer, TYPE_QUALS (type));
9097 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
9098 the inner type. */
9099 tree
9100 build_vector_type_for_mode (tree innertype, enum machine_mode mode)
9102 int nunits;
9104 switch (GET_MODE_CLASS (mode))
9106 case MODE_VECTOR_INT:
9107 case MODE_VECTOR_FLOAT:
9108 case MODE_VECTOR_FRACT:
9109 case MODE_VECTOR_UFRACT:
9110 case MODE_VECTOR_ACCUM:
9111 case MODE_VECTOR_UACCUM:
9112 nunits = GET_MODE_NUNITS (mode);
9113 break;
9115 case MODE_INT:
9116 /* Check that there are no leftover bits. */
9117 gcc_assert (GET_MODE_BITSIZE (mode)
9118 % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
9120 nunits = GET_MODE_BITSIZE (mode)
9121 / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
9122 break;
9124 default:
9125 gcc_unreachable ();
9128 return make_vector_type (innertype, nunits, mode);
9131 /* Similarly, but takes the inner type and number of units, which must be
9132 a power of two. */
9134 tree
9135 build_vector_type (tree innertype, int nunits)
9137 return make_vector_type (innertype, nunits, VOIDmode);
9140 /* Similarly, but takes the inner type and number of units, which must be
9141 a power of two. */
9143 tree
9144 build_opaque_vector_type (tree innertype, int nunits)
9146 tree t;
9147 innertype = build_distinct_type_copy (innertype);
9148 t = make_vector_type (innertype, nunits, VOIDmode);
9149 TYPE_VECTOR_OPAQUE (t) = true;
9150 return t;
9154 /* Build RESX_EXPR with given REGION_NUMBER. */
9155 tree
9156 build_resx (int region_number)
9158 tree t;
9159 t = build1 (RESX_EXPR, void_type_node,
9160 build_int_cst (NULL_TREE, region_number));
9161 return t;
9164 /* Given an initializer INIT, return TRUE if INIT is zero or some
9165 aggregate of zeros. Otherwise return FALSE. */
9166 bool
9167 initializer_zerop (const_tree init)
9169 tree elt;
9171 STRIP_NOPS (init);
9173 switch (TREE_CODE (init))
9175 case INTEGER_CST:
9176 return integer_zerop (init);
9178 case REAL_CST:
9179 /* ??? Note that this is not correct for C4X float formats. There,
9180 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
9181 negative exponent. */
9182 return real_zerop (init)
9183 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
9185 case FIXED_CST:
9186 return fixed_zerop (init);
9188 case COMPLEX_CST:
9189 return integer_zerop (init)
9190 || (real_zerop (init)
9191 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
9192 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
9194 case VECTOR_CST:
9195 for (elt = TREE_VECTOR_CST_ELTS (init); elt; elt = TREE_CHAIN (elt))
9196 if (!initializer_zerop (TREE_VALUE (elt)))
9197 return false;
9198 return true;
9200 case CONSTRUCTOR:
9202 unsigned HOST_WIDE_INT idx;
9204 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
9205 if (!initializer_zerop (elt))
9206 return false;
9207 return true;
9210 default:
9211 return false;
9215 /* Build an empty statement at location LOC. */
9217 tree
9218 build_empty_stmt (location_t loc)
9220 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
9221 SET_EXPR_LOCATION (t, loc);
9222 return t;
9226 /* Build an OpenMP clause with code CODE. LOC is the location of the
9227 clause. */
9229 tree
9230 build_omp_clause (location_t loc, enum omp_clause_code code)
9232 tree t;
9233 int size, length;
9235 length = omp_clause_num_ops[code];
9236 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
9238 t = GGC_NEWVAR (union tree_node, size);
9239 memset (t, 0, size);
9240 TREE_SET_CODE (t, OMP_CLAUSE);
9241 OMP_CLAUSE_SET_CODE (t, code);
9242 OMP_CLAUSE_LOCATION (t) = loc;
9244 #ifdef GATHER_STATISTICS
9245 tree_node_counts[(int) omp_clause_kind]++;
9246 tree_node_sizes[(int) omp_clause_kind] += size;
9247 #endif
9249 return t;
9252 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
9253 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
9254 Except for the CODE and operand count field, other storage for the
9255 object is initialized to zeros. */
9257 tree
9258 build_vl_exp_stat (enum tree_code code, int len MEM_STAT_DECL)
9260 tree t;
9261 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
9263 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
9264 gcc_assert (len >= 1);
9266 #ifdef GATHER_STATISTICS
9267 tree_node_counts[(int) e_kind]++;
9268 tree_node_sizes[(int) e_kind] += length;
9269 #endif
9271 t = (tree) ggc_alloc_zone_pass_stat (length, &tree_zone);
9273 memset (t, 0, length);
9275 TREE_SET_CODE (t, code);
9277 /* Can't use TREE_OPERAND to store the length because if checking is
9278 enabled, it will try to check the length before we store it. :-P */
9279 t->exp.operands[0] = build_int_cst (sizetype, len);
9281 return t;
9285 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE
9286 and FN and a null static chain slot. ARGLIST is a TREE_LIST of the
9287 arguments. */
9289 tree
9290 build_call_list (tree return_type, tree fn, tree arglist)
9292 tree t;
9293 int i;
9295 t = build_vl_exp (CALL_EXPR, list_length (arglist) + 3);
9296 TREE_TYPE (t) = return_type;
9297 CALL_EXPR_FN (t) = fn;
9298 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
9299 for (i = 0; arglist; arglist = TREE_CHAIN (arglist), i++)
9300 CALL_EXPR_ARG (t, i) = TREE_VALUE (arglist);
9301 process_call_operands (t);
9302 return t;
9305 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9306 FN and a null static chain slot. NARGS is the number of call arguments
9307 which are specified as "..." arguments. */
9309 tree
9310 build_call_nary (tree return_type, tree fn, int nargs, ...)
9312 tree ret;
9313 va_list args;
9314 va_start (args, nargs);
9315 ret = build_call_valist (return_type, fn, nargs, args);
9316 va_end (args);
9317 return ret;
9320 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9321 FN and a null static chain slot. NARGS is the number of call arguments
9322 which are specified as a va_list ARGS. */
9324 tree
9325 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
9327 tree t;
9328 int i;
9330 t = build_vl_exp (CALL_EXPR, nargs + 3);
9331 TREE_TYPE (t) = return_type;
9332 CALL_EXPR_FN (t) = fn;
9333 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
9334 for (i = 0; i < nargs; i++)
9335 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
9336 process_call_operands (t);
9337 return t;
9340 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9341 FN and a null static chain slot. NARGS is the number of call arguments
9342 which are specified as a tree array ARGS. */
9344 tree
9345 build_call_array_loc (location_t loc, tree return_type, tree fn,
9346 int nargs, const tree *args)
9348 tree t;
9349 int i;
9351 t = build_vl_exp (CALL_EXPR, nargs + 3);
9352 TREE_TYPE (t) = return_type;
9353 CALL_EXPR_FN (t) = fn;
9354 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
9355 for (i = 0; i < nargs; i++)
9356 CALL_EXPR_ARG (t, i) = args[i];
9357 process_call_operands (t);
9358 SET_EXPR_LOCATION (t, loc);
9359 return t;
9362 /* Like build_call_array, but takes a VEC. */
9364 tree
9365 build_call_vec (tree return_type, tree fn, VEC(tree,gc) *args)
9367 tree ret, t;
9368 unsigned int ix;
9370 ret = build_vl_exp (CALL_EXPR, VEC_length (tree, args) + 3);
9371 TREE_TYPE (ret) = return_type;
9372 CALL_EXPR_FN (ret) = fn;
9373 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
9374 for (ix = 0; VEC_iterate (tree, args, ix, t); ++ix)
9375 CALL_EXPR_ARG (ret, ix) = t;
9376 process_call_operands (ret);
9377 return ret;
9381 /* Returns true if it is possible to prove that the index of
9382 an array access REF (an ARRAY_REF expression) falls into the
9383 array bounds. */
9385 bool
9386 in_array_bounds_p (tree ref)
9388 tree idx = TREE_OPERAND (ref, 1);
9389 tree min, max;
9391 if (TREE_CODE (idx) != INTEGER_CST)
9392 return false;
9394 min = array_ref_low_bound (ref);
9395 max = array_ref_up_bound (ref);
9396 if (!min
9397 || !max
9398 || TREE_CODE (min) != INTEGER_CST
9399 || TREE_CODE (max) != INTEGER_CST)
9400 return false;
9402 if (tree_int_cst_lt (idx, min)
9403 || tree_int_cst_lt (max, idx))
9404 return false;
9406 return true;
9409 /* Returns true if it is possible to prove that the range of
9410 an array access REF (an ARRAY_RANGE_REF expression) falls
9411 into the array bounds. */
9413 bool
9414 range_in_array_bounds_p (tree ref)
9416 tree domain_type = TYPE_DOMAIN (TREE_TYPE (ref));
9417 tree range_min, range_max, min, max;
9419 range_min = TYPE_MIN_VALUE (domain_type);
9420 range_max = TYPE_MAX_VALUE (domain_type);
9421 if (!range_min
9422 || !range_max
9423 || TREE_CODE (range_min) != INTEGER_CST
9424 || TREE_CODE (range_max) != INTEGER_CST)
9425 return false;
9427 min = array_ref_low_bound (ref);
9428 max = array_ref_up_bound (ref);
9429 if (!min
9430 || !max
9431 || TREE_CODE (min) != INTEGER_CST
9432 || TREE_CODE (max) != INTEGER_CST)
9433 return false;
9435 if (tree_int_cst_lt (range_min, min)
9436 || tree_int_cst_lt (max, range_max))
9437 return false;
9439 return true;
9442 /* Return true if T (assumed to be a DECL) must be assigned a memory
9443 location. */
9445 bool
9446 needs_to_live_in_memory (const_tree t)
9448 if (TREE_CODE (t) == SSA_NAME)
9449 t = SSA_NAME_VAR (t);
9451 return (TREE_ADDRESSABLE (t)
9452 || is_global_var (t)
9453 || (TREE_CODE (t) == RESULT_DECL
9454 && aggregate_value_p (t, current_function_decl)));
9457 /* There are situations in which a language considers record types
9458 compatible which have different field lists. Decide if two fields
9459 are compatible. It is assumed that the parent records are compatible. */
9461 bool
9462 fields_compatible_p (const_tree f1, const_tree f2)
9464 if (!operand_equal_p (DECL_FIELD_BIT_OFFSET (f1),
9465 DECL_FIELD_BIT_OFFSET (f2), OEP_ONLY_CONST))
9466 return false;
9468 if (!operand_equal_p (DECL_FIELD_OFFSET (f1),
9469 DECL_FIELD_OFFSET (f2), OEP_ONLY_CONST))
9470 return false;
9472 if (!types_compatible_p (TREE_TYPE (f1), TREE_TYPE (f2)))
9473 return false;
9475 return true;
9478 /* Locate within RECORD a field that is compatible with ORIG_FIELD. */
9480 tree
9481 find_compatible_field (tree record, tree orig_field)
9483 tree f;
9485 for (f = TYPE_FIELDS (record); f ; f = TREE_CHAIN (f))
9486 if (TREE_CODE (f) == FIELD_DECL
9487 && fields_compatible_p (f, orig_field))
9488 return f;
9490 /* ??? Why isn't this on the main fields list? */
9491 f = TYPE_VFIELD (record);
9492 if (f && TREE_CODE (f) == FIELD_DECL
9493 && fields_compatible_p (f, orig_field))
9494 return f;
9496 /* ??? We should abort here, but Java appears to do Bad Things
9497 with inherited fields. */
9498 return orig_field;
9501 /* Return value of a constant X and sign-extend it. */
9503 HOST_WIDE_INT
9504 int_cst_value (const_tree x)
9506 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
9507 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
9509 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
9510 gcc_assert (TREE_INT_CST_HIGH (x) == 0
9511 || TREE_INT_CST_HIGH (x) == -1);
9513 if (bits < HOST_BITS_PER_WIDE_INT)
9515 bool negative = ((val >> (bits - 1)) & 1) != 0;
9516 if (negative)
9517 val |= (~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1;
9518 else
9519 val &= ~((~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1);
9522 return val;
9525 /* Return value of a constant X and sign-extend it. */
9527 HOST_WIDEST_INT
9528 widest_int_cst_value (const_tree x)
9530 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
9531 unsigned HOST_WIDEST_INT val = TREE_INT_CST_LOW (x);
9533 #if HOST_BITS_PER_WIDEST_INT > HOST_BITS_PER_WIDE_INT
9534 gcc_assert (HOST_BITS_PER_WIDEST_INT >= 2 * HOST_BITS_PER_WIDE_INT);
9535 val |= (((unsigned HOST_WIDEST_INT) TREE_INT_CST_HIGH (x))
9536 << HOST_BITS_PER_WIDE_INT);
9537 #else
9538 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
9539 gcc_assert (TREE_INT_CST_HIGH (x) == 0
9540 || TREE_INT_CST_HIGH (x) == -1);
9541 #endif
9543 if (bits < HOST_BITS_PER_WIDEST_INT)
9545 bool negative = ((val >> (bits - 1)) & 1) != 0;
9546 if (negative)
9547 val |= (~(unsigned HOST_WIDEST_INT) 0) << (bits - 1) << 1;
9548 else
9549 val &= ~((~(unsigned HOST_WIDEST_INT) 0) << (bits - 1) << 1);
9552 return val;
9555 /* If TYPE is an integral type, return an equivalent type which is
9556 unsigned iff UNSIGNEDP is true. If TYPE is not an integral type,
9557 return TYPE itself. */
9559 tree
9560 signed_or_unsigned_type_for (int unsignedp, tree type)
9562 tree t = type;
9563 if (POINTER_TYPE_P (type))
9564 t = size_type_node;
9566 if (!INTEGRAL_TYPE_P (t) || TYPE_UNSIGNED (t) == unsignedp)
9567 return t;
9569 return lang_hooks.types.type_for_size (TYPE_PRECISION (t), unsignedp);
9572 /* Returns unsigned variant of TYPE. */
9574 tree
9575 unsigned_type_for (tree type)
9577 return signed_or_unsigned_type_for (1, type);
9580 /* Returns signed variant of TYPE. */
9582 tree
9583 signed_type_for (tree type)
9585 return signed_or_unsigned_type_for (0, type);
9588 /* Returns the largest value obtainable by casting something in INNER type to
9589 OUTER type. */
9591 tree
9592 upper_bound_in_type (tree outer, tree inner)
9594 unsigned HOST_WIDE_INT lo, hi;
9595 unsigned int det = 0;
9596 unsigned oprec = TYPE_PRECISION (outer);
9597 unsigned iprec = TYPE_PRECISION (inner);
9598 unsigned prec;
9600 /* Compute a unique number for every combination. */
9601 det |= (oprec > iprec) ? 4 : 0;
9602 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
9603 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
9605 /* Determine the exponent to use. */
9606 switch (det)
9608 case 0:
9609 case 1:
9610 /* oprec <= iprec, outer: signed, inner: don't care. */
9611 prec = oprec - 1;
9612 break;
9613 case 2:
9614 case 3:
9615 /* oprec <= iprec, outer: unsigned, inner: don't care. */
9616 prec = oprec;
9617 break;
9618 case 4:
9619 /* oprec > iprec, outer: signed, inner: signed. */
9620 prec = iprec - 1;
9621 break;
9622 case 5:
9623 /* oprec > iprec, outer: signed, inner: unsigned. */
9624 prec = iprec;
9625 break;
9626 case 6:
9627 /* oprec > iprec, outer: unsigned, inner: signed. */
9628 prec = oprec;
9629 break;
9630 case 7:
9631 /* oprec > iprec, outer: unsigned, inner: unsigned. */
9632 prec = iprec;
9633 break;
9634 default:
9635 gcc_unreachable ();
9638 /* Compute 2^^prec - 1. */
9639 if (prec <= HOST_BITS_PER_WIDE_INT)
9641 hi = 0;
9642 lo = ((~(unsigned HOST_WIDE_INT) 0)
9643 >> (HOST_BITS_PER_WIDE_INT - prec));
9645 else
9647 hi = ((~(unsigned HOST_WIDE_INT) 0)
9648 >> (2 * HOST_BITS_PER_WIDE_INT - prec));
9649 lo = ~(unsigned HOST_WIDE_INT) 0;
9652 return build_int_cst_wide (outer, lo, hi);
9655 /* Returns the smallest value obtainable by casting something in INNER type to
9656 OUTER type. */
9658 tree
9659 lower_bound_in_type (tree outer, tree inner)
9661 unsigned HOST_WIDE_INT lo, hi;
9662 unsigned oprec = TYPE_PRECISION (outer);
9663 unsigned iprec = TYPE_PRECISION (inner);
9665 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
9666 and obtain 0. */
9667 if (TYPE_UNSIGNED (outer)
9668 /* If we are widening something of an unsigned type, OUTER type
9669 contains all values of INNER type. In particular, both INNER
9670 and OUTER types have zero in common. */
9671 || (oprec > iprec && TYPE_UNSIGNED (inner)))
9672 lo = hi = 0;
9673 else
9675 /* If we are widening a signed type to another signed type, we
9676 want to obtain -2^^(iprec-1). If we are keeping the
9677 precision or narrowing to a signed type, we want to obtain
9678 -2^(oprec-1). */
9679 unsigned prec = oprec > iprec ? iprec : oprec;
9681 if (prec <= HOST_BITS_PER_WIDE_INT)
9683 hi = ~(unsigned HOST_WIDE_INT) 0;
9684 lo = (~(unsigned HOST_WIDE_INT) 0) << (prec - 1);
9686 else
9688 hi = ((~(unsigned HOST_WIDE_INT) 0)
9689 << (prec - HOST_BITS_PER_WIDE_INT - 1));
9690 lo = 0;
9694 return build_int_cst_wide (outer, lo, hi);
9697 /* Return nonzero if two operands that are suitable for PHI nodes are
9698 necessarily equal. Specifically, both ARG0 and ARG1 must be either
9699 SSA_NAME or invariant. Note that this is strictly an optimization.
9700 That is, callers of this function can directly call operand_equal_p
9701 and get the same result, only slower. */
9704 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
9706 if (arg0 == arg1)
9707 return 1;
9708 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
9709 return 0;
9710 return operand_equal_p (arg0, arg1, 0);
9713 /* Returns number of zeros at the end of binary representation of X.
9715 ??? Use ffs if available? */
9717 tree
9718 num_ending_zeros (const_tree x)
9720 unsigned HOST_WIDE_INT fr, nfr;
9721 unsigned num, abits;
9722 tree type = TREE_TYPE (x);
9724 if (TREE_INT_CST_LOW (x) == 0)
9726 num = HOST_BITS_PER_WIDE_INT;
9727 fr = TREE_INT_CST_HIGH (x);
9729 else
9731 num = 0;
9732 fr = TREE_INT_CST_LOW (x);
9735 for (abits = HOST_BITS_PER_WIDE_INT / 2; abits; abits /= 2)
9737 nfr = fr >> abits;
9738 if (nfr << abits == fr)
9740 num += abits;
9741 fr = nfr;
9745 if (num > TYPE_PRECISION (type))
9746 num = TYPE_PRECISION (type);
9748 return build_int_cst_type (type, num);
9752 #define WALK_SUBTREE(NODE) \
9753 do \
9755 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
9756 if (result) \
9757 return result; \
9759 while (0)
9761 /* This is a subroutine of walk_tree that walks field of TYPE that are to
9762 be walked whenever a type is seen in the tree. Rest of operands and return
9763 value are as for walk_tree. */
9765 static tree
9766 walk_type_fields (tree type, walk_tree_fn func, void *data,
9767 struct pointer_set_t *pset, walk_tree_lh lh)
9769 tree result = NULL_TREE;
9771 switch (TREE_CODE (type))
9773 case POINTER_TYPE:
9774 case REFERENCE_TYPE:
9775 /* We have to worry about mutually recursive pointers. These can't
9776 be written in C. They can in Ada. It's pathological, but
9777 there's an ACATS test (c38102a) that checks it. Deal with this
9778 by checking if we're pointing to another pointer, that one
9779 points to another pointer, that one does too, and we have no htab.
9780 If so, get a hash table. We check three levels deep to avoid
9781 the cost of the hash table if we don't need one. */
9782 if (POINTER_TYPE_P (TREE_TYPE (type))
9783 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
9784 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
9785 && !pset)
9787 result = walk_tree_without_duplicates (&TREE_TYPE (type),
9788 func, data);
9789 if (result)
9790 return result;
9792 break;
9795 /* ... fall through ... */
9797 case COMPLEX_TYPE:
9798 WALK_SUBTREE (TREE_TYPE (type));
9799 break;
9801 case METHOD_TYPE:
9802 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
9804 /* Fall through. */
9806 case FUNCTION_TYPE:
9807 WALK_SUBTREE (TREE_TYPE (type));
9809 tree arg;
9811 /* We never want to walk into default arguments. */
9812 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
9813 WALK_SUBTREE (TREE_VALUE (arg));
9815 break;
9817 case ARRAY_TYPE:
9818 /* Don't follow this nodes's type if a pointer for fear that
9819 we'll have infinite recursion. If we have a PSET, then we
9820 need not fear. */
9821 if (pset
9822 || (!POINTER_TYPE_P (TREE_TYPE (type))
9823 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
9824 WALK_SUBTREE (TREE_TYPE (type));
9825 WALK_SUBTREE (TYPE_DOMAIN (type));
9826 break;
9828 case OFFSET_TYPE:
9829 WALK_SUBTREE (TREE_TYPE (type));
9830 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
9831 break;
9833 default:
9834 break;
9837 return NULL_TREE;
9840 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
9841 called with the DATA and the address of each sub-tree. If FUNC returns a
9842 non-NULL value, the traversal is stopped, and the value returned by FUNC
9843 is returned. If PSET is non-NULL it is used to record the nodes visited,
9844 and to avoid visiting a node more than once. */
9846 tree
9847 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
9848 struct pointer_set_t *pset, walk_tree_lh lh)
9850 enum tree_code code;
9851 int walk_subtrees;
9852 tree result;
9854 #define WALK_SUBTREE_TAIL(NODE) \
9855 do \
9857 tp = & (NODE); \
9858 goto tail_recurse; \
9860 while (0)
9862 tail_recurse:
9863 /* Skip empty subtrees. */
9864 if (!*tp)
9865 return NULL_TREE;
9867 /* Don't walk the same tree twice, if the user has requested
9868 that we avoid doing so. */
9869 if (pset && pointer_set_insert (pset, *tp))
9870 return NULL_TREE;
9872 /* Call the function. */
9873 walk_subtrees = 1;
9874 result = (*func) (tp, &walk_subtrees, data);
9876 /* If we found something, return it. */
9877 if (result)
9878 return result;
9880 code = TREE_CODE (*tp);
9882 /* Even if we didn't, FUNC may have decided that there was nothing
9883 interesting below this point in the tree. */
9884 if (!walk_subtrees)
9886 /* But we still need to check our siblings. */
9887 if (code == TREE_LIST)
9888 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
9889 else if (code == OMP_CLAUSE)
9890 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
9891 else
9892 return NULL_TREE;
9895 if (lh)
9897 result = (*lh) (tp, &walk_subtrees, func, data, pset);
9898 if (result || !walk_subtrees)
9899 return result;
9902 switch (code)
9904 case ERROR_MARK:
9905 case IDENTIFIER_NODE:
9906 case INTEGER_CST:
9907 case REAL_CST:
9908 case FIXED_CST:
9909 case VECTOR_CST:
9910 case STRING_CST:
9911 case BLOCK:
9912 case PLACEHOLDER_EXPR:
9913 case SSA_NAME:
9914 case FIELD_DECL:
9915 case RESULT_DECL:
9916 /* None of these have subtrees other than those already walked
9917 above. */
9918 break;
9920 case TREE_LIST:
9921 WALK_SUBTREE (TREE_VALUE (*tp));
9922 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
9923 break;
9925 case TREE_VEC:
9927 int len = TREE_VEC_LENGTH (*tp);
9929 if (len == 0)
9930 break;
9932 /* Walk all elements but the first. */
9933 while (--len)
9934 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
9936 /* Now walk the first one as a tail call. */
9937 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
9940 case COMPLEX_CST:
9941 WALK_SUBTREE (TREE_REALPART (*tp));
9942 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
9944 case CONSTRUCTOR:
9946 unsigned HOST_WIDE_INT idx;
9947 constructor_elt *ce;
9949 for (idx = 0;
9950 VEC_iterate(constructor_elt, CONSTRUCTOR_ELTS (*tp), idx, ce);
9951 idx++)
9952 WALK_SUBTREE (ce->value);
9954 break;
9956 case SAVE_EXPR:
9957 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
9959 case BIND_EXPR:
9961 tree decl;
9962 for (decl = BIND_EXPR_VARS (*tp); decl; decl = TREE_CHAIN (decl))
9964 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
9965 into declarations that are just mentioned, rather than
9966 declared; they don't really belong to this part of the tree.
9967 And, we can see cycles: the initializer for a declaration
9968 can refer to the declaration itself. */
9969 WALK_SUBTREE (DECL_INITIAL (decl));
9970 WALK_SUBTREE (DECL_SIZE (decl));
9971 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
9973 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
9976 case STATEMENT_LIST:
9978 tree_stmt_iterator i;
9979 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
9980 WALK_SUBTREE (*tsi_stmt_ptr (i));
9982 break;
9984 case OMP_CLAUSE:
9985 switch (OMP_CLAUSE_CODE (*tp))
9987 case OMP_CLAUSE_PRIVATE:
9988 case OMP_CLAUSE_SHARED:
9989 case OMP_CLAUSE_FIRSTPRIVATE:
9990 case OMP_CLAUSE_COPYIN:
9991 case OMP_CLAUSE_COPYPRIVATE:
9992 case OMP_CLAUSE_IF:
9993 case OMP_CLAUSE_NUM_THREADS:
9994 case OMP_CLAUSE_SCHEDULE:
9995 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
9996 /* FALLTHRU */
9998 case OMP_CLAUSE_NOWAIT:
9999 case OMP_CLAUSE_ORDERED:
10000 case OMP_CLAUSE_DEFAULT:
10001 case OMP_CLAUSE_UNTIED:
10002 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10004 case OMP_CLAUSE_LASTPRIVATE:
10005 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
10006 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
10007 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10009 case OMP_CLAUSE_COLLAPSE:
10011 int i;
10012 for (i = 0; i < 3; i++)
10013 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
10014 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10017 case OMP_CLAUSE_REDUCTION:
10019 int i;
10020 for (i = 0; i < 4; i++)
10021 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
10022 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10025 default:
10026 gcc_unreachable ();
10028 break;
10030 case TARGET_EXPR:
10032 int i, len;
10034 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
10035 But, we only want to walk once. */
10036 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
10037 for (i = 0; i < len; ++i)
10038 WALK_SUBTREE (TREE_OPERAND (*tp, i));
10039 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
10042 case DECL_EXPR:
10043 /* If this is a TYPE_DECL, walk into the fields of the type that it's
10044 defining. We only want to walk into these fields of a type in this
10045 case and not in the general case of a mere reference to the type.
10047 The criterion is as follows: if the field can be an expression, it
10048 must be walked only here. This should be in keeping with the fields
10049 that are directly gimplified in gimplify_type_sizes in order for the
10050 mark/copy-if-shared/unmark machinery of the gimplifier to work with
10051 variable-sized types.
10053 Note that DECLs get walked as part of processing the BIND_EXPR. */
10054 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
10056 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
10057 if (TREE_CODE (*type_p) == ERROR_MARK)
10058 return NULL_TREE;
10060 /* Call the function for the type. See if it returns anything or
10061 doesn't want us to continue. If we are to continue, walk both
10062 the normal fields and those for the declaration case. */
10063 result = (*func) (type_p, &walk_subtrees, data);
10064 if (result || !walk_subtrees)
10065 return result;
10067 result = walk_type_fields (*type_p, func, data, pset, lh);
10068 if (result)
10069 return result;
10071 /* If this is a record type, also walk the fields. */
10072 if (TREE_CODE (*type_p) == RECORD_TYPE
10073 || TREE_CODE (*type_p) == UNION_TYPE
10074 || TREE_CODE (*type_p) == QUAL_UNION_TYPE)
10076 tree field;
10078 for (field = TYPE_FIELDS (*type_p); field;
10079 field = TREE_CHAIN (field))
10081 /* We'd like to look at the type of the field, but we can
10082 easily get infinite recursion. So assume it's pointed
10083 to elsewhere in the tree. Also, ignore things that
10084 aren't fields. */
10085 if (TREE_CODE (field) != FIELD_DECL)
10086 continue;
10088 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
10089 WALK_SUBTREE (DECL_SIZE (field));
10090 WALK_SUBTREE (DECL_SIZE_UNIT (field));
10091 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
10092 WALK_SUBTREE (DECL_QUALIFIER (field));
10096 /* Same for scalar types. */
10097 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
10098 || TREE_CODE (*type_p) == ENUMERAL_TYPE
10099 || TREE_CODE (*type_p) == INTEGER_TYPE
10100 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
10101 || TREE_CODE (*type_p) == REAL_TYPE)
10103 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
10104 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
10107 WALK_SUBTREE (TYPE_SIZE (*type_p));
10108 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
10110 /* FALLTHRU */
10112 default:
10113 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
10115 int i, len;
10117 /* Walk over all the sub-trees of this operand. */
10118 len = TREE_OPERAND_LENGTH (*tp);
10120 /* Go through the subtrees. We need to do this in forward order so
10121 that the scope of a FOR_EXPR is handled properly. */
10122 if (len)
10124 for (i = 0; i < len - 1; ++i)
10125 WALK_SUBTREE (TREE_OPERAND (*tp, i));
10126 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
10129 /* If this is a type, walk the needed fields in the type. */
10130 else if (TYPE_P (*tp))
10131 return walk_type_fields (*tp, func, data, pset, lh);
10132 break;
10135 /* We didn't find what we were looking for. */
10136 return NULL_TREE;
10138 #undef WALK_SUBTREE_TAIL
10140 #undef WALK_SUBTREE
10142 /* Like walk_tree, but does not walk duplicate nodes more than once. */
10144 tree
10145 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
10146 walk_tree_lh lh)
10148 tree result;
10149 struct pointer_set_t *pset;
10151 pset = pointer_set_create ();
10152 result = walk_tree_1 (tp, func, data, pset, lh);
10153 pointer_set_destroy (pset);
10154 return result;
10158 tree *
10159 tree_block (tree t)
10161 char const c = TREE_CODE_CLASS (TREE_CODE (t));
10163 if (IS_EXPR_CODE_CLASS (c))
10164 return &t->exp.block;
10165 gcc_unreachable ();
10166 return NULL;
10169 /* Build and return a TREE_LIST of arguments in the CALL_EXPR exp.
10170 FIXME: don't use this function. It exists for compatibility with
10171 the old representation of CALL_EXPRs where a list was used to hold the
10172 arguments. Places that currently extract the arglist from a CALL_EXPR
10173 ought to be rewritten to use the CALL_EXPR itself. */
10174 tree
10175 call_expr_arglist (tree exp)
10177 tree arglist = NULL_TREE;
10178 int i;
10179 for (i = call_expr_nargs (exp) - 1; i >= 0; i--)
10180 arglist = tree_cons (NULL_TREE, CALL_EXPR_ARG (exp, i), arglist);
10181 return arglist;
10185 /* Create a nameless artificial label and put it in the current
10186 function context. The label has a location of LOC. Returns the
10187 newly created label. */
10189 tree
10190 create_artificial_label (location_t loc)
10192 tree lab = build_decl (loc,
10193 LABEL_DECL, NULL_TREE, void_type_node);
10195 DECL_ARTIFICIAL (lab) = 1;
10196 DECL_IGNORED_P (lab) = 1;
10197 DECL_CONTEXT (lab) = current_function_decl;
10198 return lab;
10201 /* Given a tree, try to return a useful variable name that we can use
10202 to prefix a temporary that is being assigned the value of the tree.
10203 I.E. given <temp> = &A, return A. */
10205 const char *
10206 get_name (tree t)
10208 tree stripped_decl;
10210 stripped_decl = t;
10211 STRIP_NOPS (stripped_decl);
10212 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
10213 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
10214 else
10216 switch (TREE_CODE (stripped_decl))
10218 case ADDR_EXPR:
10219 return get_name (TREE_OPERAND (stripped_decl, 0));
10220 default:
10221 return NULL;
10226 /* Return true if TYPE has a variable argument list. */
10228 bool
10229 stdarg_p (tree fntype)
10231 function_args_iterator args_iter;
10232 tree n = NULL_TREE, t;
10234 if (!fntype)
10235 return false;
10237 FOREACH_FUNCTION_ARGS(fntype, t, args_iter)
10239 n = t;
10242 return n != NULL_TREE && n != void_type_node;
10245 /* Return true if TYPE has a prototype. */
10247 bool
10248 prototype_p (tree fntype)
10250 tree t;
10252 gcc_assert (fntype != NULL_TREE);
10254 t = TYPE_ARG_TYPES (fntype);
10255 return (t != NULL_TREE);
10258 /* If BLOCK is inlined from an __attribute__((__artificial__))
10259 routine, return pointer to location from where it has been
10260 called. */
10261 location_t *
10262 block_nonartificial_location (tree block)
10264 location_t *ret = NULL;
10266 while (block && TREE_CODE (block) == BLOCK
10267 && BLOCK_ABSTRACT_ORIGIN (block))
10269 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
10271 while (TREE_CODE (ao) == BLOCK
10272 && BLOCK_ABSTRACT_ORIGIN (ao)
10273 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
10274 ao = BLOCK_ABSTRACT_ORIGIN (ao);
10276 if (TREE_CODE (ao) == FUNCTION_DECL)
10278 /* If AO is an artificial inline, point RET to the
10279 call site locus at which it has been inlined and continue
10280 the loop, in case AO's caller is also an artificial
10281 inline. */
10282 if (DECL_DECLARED_INLINE_P (ao)
10283 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
10284 ret = &BLOCK_SOURCE_LOCATION (block);
10285 else
10286 break;
10288 else if (TREE_CODE (ao) != BLOCK)
10289 break;
10291 block = BLOCK_SUPERCONTEXT (block);
10293 return ret;
10297 /* If EXP is inlined from an __attribute__((__artificial__))
10298 function, return the location of the original call expression. */
10300 location_t
10301 tree_nonartificial_location (tree exp)
10303 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
10305 if (loc)
10306 return *loc;
10307 else
10308 return EXPR_LOCATION (exp);
10312 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
10313 nodes. */
10315 /* Return the hash code code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
10317 static hashval_t
10318 cl_option_hash_hash (const void *x)
10320 const_tree const t = (const_tree) x;
10321 const char *p;
10322 size_t i;
10323 size_t len = 0;
10324 hashval_t hash = 0;
10326 if (TREE_CODE (t) == OPTIMIZATION_NODE)
10328 p = (const char *)TREE_OPTIMIZATION (t);
10329 len = sizeof (struct cl_optimization);
10332 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
10334 p = (const char *)TREE_TARGET_OPTION (t);
10335 len = sizeof (struct cl_target_option);
10338 else
10339 gcc_unreachable ();
10341 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
10342 something else. */
10343 for (i = 0; i < len; i++)
10344 if (p[i])
10345 hash = (hash << 4) ^ ((i << 2) | p[i]);
10347 return hash;
10350 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
10351 TARGET_OPTION tree node) is the same as that given by *Y, which is the
10352 same. */
10354 static int
10355 cl_option_hash_eq (const void *x, const void *y)
10357 const_tree const xt = (const_tree) x;
10358 const_tree const yt = (const_tree) y;
10359 const char *xp;
10360 const char *yp;
10361 size_t len;
10363 if (TREE_CODE (xt) != TREE_CODE (yt))
10364 return 0;
10366 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
10368 xp = (const char *)TREE_OPTIMIZATION (xt);
10369 yp = (const char *)TREE_OPTIMIZATION (yt);
10370 len = sizeof (struct cl_optimization);
10373 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
10375 xp = (const char *)TREE_TARGET_OPTION (xt);
10376 yp = (const char *)TREE_TARGET_OPTION (yt);
10377 len = sizeof (struct cl_target_option);
10380 else
10381 gcc_unreachable ();
10383 return (memcmp (xp, yp, len) == 0);
10386 /* Build an OPTIMIZATION_NODE based on the current options. */
10388 tree
10389 build_optimization_node (void)
10391 tree t;
10392 void **slot;
10394 /* Use the cache of optimization nodes. */
10396 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node));
10398 slot = htab_find_slot (cl_option_hash_table, cl_optimization_node, INSERT);
10399 t = (tree) *slot;
10400 if (!t)
10402 /* Insert this one into the hash table. */
10403 t = cl_optimization_node;
10404 *slot = t;
10406 /* Make a new node for next time round. */
10407 cl_optimization_node = make_node (OPTIMIZATION_NODE);
10410 return t;
10413 /* Build a TARGET_OPTION_NODE based on the current options. */
10415 tree
10416 build_target_option_node (void)
10418 tree t;
10419 void **slot;
10421 /* Use the cache of optimization nodes. */
10423 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node));
10425 slot = htab_find_slot (cl_option_hash_table, cl_target_option_node, INSERT);
10426 t = (tree) *slot;
10427 if (!t)
10429 /* Insert this one into the hash table. */
10430 t = cl_target_option_node;
10431 *slot = t;
10433 /* Make a new node for next time round. */
10434 cl_target_option_node = make_node (TARGET_OPTION_NODE);
10437 return t;
10440 /* Determine the "ultimate origin" of a block. The block may be an inlined
10441 instance of an inlined instance of a block which is local to an inline
10442 function, so we have to trace all of the way back through the origin chain
10443 to find out what sort of node actually served as the original seed for the
10444 given block. */
10446 tree
10447 block_ultimate_origin (const_tree block)
10449 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
10451 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
10452 nodes in the function to point to themselves; ignore that if
10453 we're trying to output the abstract instance of this function. */
10454 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
10455 return NULL_TREE;
10457 if (immediate_origin == NULL_TREE)
10458 return NULL_TREE;
10459 else
10461 tree ret_val;
10462 tree lookahead = immediate_origin;
10466 ret_val = lookahead;
10467 lookahead = (TREE_CODE (ret_val) == BLOCK
10468 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
10470 while (lookahead != NULL && lookahead != ret_val);
10472 /* The block's abstract origin chain may not be the *ultimate* origin of
10473 the block. It could lead to a DECL that has an abstract origin set.
10474 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
10475 will give us if it has one). Note that DECL's abstract origins are
10476 supposed to be the most distant ancestor (or so decl_ultimate_origin
10477 claims), so we don't need to loop following the DECL origins. */
10478 if (DECL_P (ret_val))
10479 return DECL_ORIGIN (ret_val);
10481 return ret_val;
10485 /* Return true if T1 and T2 are equivalent lists. */
10487 bool
10488 list_equal_p (const_tree t1, const_tree t2)
10490 for (; t1 && t2; t1 = TREE_CHAIN (t1) , t2 = TREE_CHAIN (t2))
10491 if (TREE_VALUE (t1) != TREE_VALUE (t2))
10492 return false;
10493 return !t1 && !t2;
10496 /* Return true iff conversion in EXP generates no instruction. Mark
10497 it inline so that we fully inline into the stripping functions even
10498 though we have two uses of this function. */
10500 static inline bool
10501 tree_nop_conversion (const_tree exp)
10503 tree outer_type, inner_type;
10505 if (!CONVERT_EXPR_P (exp)
10506 && TREE_CODE (exp) != NON_LVALUE_EXPR)
10507 return false;
10508 if (TREE_OPERAND (exp, 0) == error_mark_node)
10509 return false;
10511 outer_type = TREE_TYPE (exp);
10512 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
10514 /* Use precision rather then machine mode when we can, which gives
10515 the correct answer even for submode (bit-field) types. */
10516 if ((INTEGRAL_TYPE_P (outer_type)
10517 || POINTER_TYPE_P (outer_type)
10518 || TREE_CODE (outer_type) == OFFSET_TYPE)
10519 && (INTEGRAL_TYPE_P (inner_type)
10520 || POINTER_TYPE_P (inner_type)
10521 || TREE_CODE (inner_type) == OFFSET_TYPE))
10522 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
10524 /* Otherwise fall back on comparing machine modes (e.g. for
10525 aggregate types, floats). */
10526 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
10529 /* Return true iff conversion in EXP generates no instruction. Don't
10530 consider conversions changing the signedness. */
10532 static bool
10533 tree_sign_nop_conversion (const_tree exp)
10535 tree outer_type, inner_type;
10537 if (!tree_nop_conversion (exp))
10538 return false;
10540 outer_type = TREE_TYPE (exp);
10541 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
10543 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
10544 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
10547 /* Strip conversions from EXP according to tree_nop_conversion and
10548 return the resulting expression. */
10550 tree
10551 tree_strip_nop_conversions (tree exp)
10553 while (tree_nop_conversion (exp))
10554 exp = TREE_OPERAND (exp, 0);
10555 return exp;
10558 /* Strip conversions from EXP according to tree_sign_nop_conversion
10559 and return the resulting expression. */
10561 tree
10562 tree_strip_sign_nop_conversions (tree exp)
10564 while (tree_sign_nop_conversion (exp))
10565 exp = TREE_OPERAND (exp, 0);
10566 return exp;
10569 static GTY(()) tree gcc_eh_personality_decl;
10571 /* Return the GCC personality function decl. */
10573 tree
10574 lhd_gcc_personality (void)
10576 if (!gcc_eh_personality_decl)
10577 gcc_eh_personality_decl
10578 = build_personality_function (USING_SJLJ_EXCEPTIONS
10579 ? "__gcc_personality_sj0"
10580 : "__gcc_personality_v0");
10582 return gcc_eh_personality_decl;
10585 #include "gt-tree.h"