Enable dumping of alias graphs.
[official-gcc/Ramakrishna.git] / gcc / tree.c
blob1db7d0a86c33b97bac93b0f7e9f61863fdfba136
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 /* Return nonzero if ELEM is part of the chain CHAIN. */
1911 chain_member (const_tree elem, const_tree chain)
1913 while (chain)
1915 if (elem == chain)
1916 return 1;
1917 chain = TREE_CHAIN (chain);
1920 return 0;
1923 /* Return the length of a chain of nodes chained through TREE_CHAIN.
1924 We expect a null pointer to mark the end of the chain.
1925 This is the Lisp primitive `length'. */
1928 list_length (const_tree t)
1930 const_tree p = t;
1931 #ifdef ENABLE_TREE_CHECKING
1932 const_tree q = t;
1933 #endif
1934 int len = 0;
1936 while (p)
1938 p = TREE_CHAIN (p);
1939 #ifdef ENABLE_TREE_CHECKING
1940 if (len % 2)
1941 q = TREE_CHAIN (q);
1942 gcc_assert (p != q);
1943 #endif
1944 len++;
1947 return len;
1950 /* Returns the number of FIELD_DECLs in TYPE. */
1953 fields_length (const_tree type)
1955 tree t = TYPE_FIELDS (type);
1956 int count = 0;
1958 for (; t; t = TREE_CHAIN (t))
1959 if (TREE_CODE (t) == FIELD_DECL)
1960 ++count;
1962 return count;
1965 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
1966 by modifying the last node in chain 1 to point to chain 2.
1967 This is the Lisp primitive `nconc'. */
1969 tree
1970 chainon (tree op1, tree op2)
1972 tree t1;
1974 if (!op1)
1975 return op2;
1976 if (!op2)
1977 return op1;
1979 for (t1 = op1; TREE_CHAIN (t1); t1 = TREE_CHAIN (t1))
1980 continue;
1981 TREE_CHAIN (t1) = op2;
1983 #ifdef ENABLE_TREE_CHECKING
1985 tree t2;
1986 for (t2 = op2; t2; t2 = TREE_CHAIN (t2))
1987 gcc_assert (t2 != t1);
1989 #endif
1991 return op1;
1994 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
1996 tree
1997 tree_last (tree chain)
1999 tree next;
2000 if (chain)
2001 while ((next = TREE_CHAIN (chain)))
2002 chain = next;
2003 return chain;
2006 /* Return the node in a chain of nodes whose value is x, NULL if not found. */
2008 tree
2009 tree_find_value (tree chain, tree x)
2011 tree list;
2012 for (list = chain; list; list = TREE_CHAIN (list))
2013 if (TREE_VALUE (list) == x)
2014 return list;
2015 return NULL;
2018 /* Reverse the order of elements in the chain T,
2019 and return the new head of the chain (old last element). */
2021 tree
2022 nreverse (tree t)
2024 tree prev = 0, decl, next;
2025 for (decl = t; decl; decl = next)
2027 next = TREE_CHAIN (decl);
2028 TREE_CHAIN (decl) = prev;
2029 prev = decl;
2031 return prev;
2034 /* Return a newly created TREE_LIST node whose
2035 purpose and value fields are PARM and VALUE. */
2037 tree
2038 build_tree_list_stat (tree parm, tree value MEM_STAT_DECL)
2040 tree t = make_node_stat (TREE_LIST PASS_MEM_STAT);
2041 TREE_PURPOSE (t) = parm;
2042 TREE_VALUE (t) = value;
2043 return t;
2046 /* Build a chain of TREE_LIST nodes from a vector. */
2048 tree
2049 build_tree_list_vec_stat (const VEC(tree,gc) *vec MEM_STAT_DECL)
2051 tree ret = NULL_TREE;
2052 tree *pp = &ret;
2053 unsigned int i;
2054 tree t;
2055 for (i = 0; VEC_iterate (tree, vec, i, t); ++i)
2057 *pp = build_tree_list_stat (NULL, t PASS_MEM_STAT);
2058 pp = &TREE_CHAIN (*pp);
2060 return ret;
2063 /* Return a newly created TREE_LIST node whose
2064 purpose and value fields are PURPOSE and VALUE
2065 and whose TREE_CHAIN is CHAIN. */
2067 tree
2068 tree_cons_stat (tree purpose, tree value, tree chain MEM_STAT_DECL)
2070 tree node;
2072 node = (tree) ggc_alloc_zone_pass_stat (sizeof (struct tree_list), &tree_zone);
2074 memset (node, 0, sizeof (struct tree_common));
2076 #ifdef GATHER_STATISTICS
2077 tree_node_counts[(int) x_kind]++;
2078 tree_node_sizes[(int) x_kind] += sizeof (struct tree_list);
2079 #endif
2081 TREE_SET_CODE (node, TREE_LIST);
2082 TREE_CHAIN (node) = chain;
2083 TREE_PURPOSE (node) = purpose;
2084 TREE_VALUE (node) = value;
2085 return node;
2088 /* Return the elements of a CONSTRUCTOR as a TREE_LIST. */
2090 tree
2091 ctor_to_list (tree ctor)
2093 tree list = NULL_TREE;
2094 tree *p = &list;
2095 unsigned ix;
2096 tree purpose, val;
2098 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), ix, purpose, val)
2100 *p = build_tree_list (purpose, val);
2101 p = &TREE_CHAIN (*p);
2104 return list;
2107 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2108 trees. */
2110 VEC(tree,gc) *
2111 ctor_to_vec (tree ctor)
2113 VEC(tree, gc) *vec = VEC_alloc (tree, gc, CONSTRUCTOR_NELTS (ctor));
2114 unsigned int ix;
2115 tree val;
2117 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor), ix, val)
2118 VEC_quick_push (tree, vec, val);
2120 return vec;
2123 /* Return the size nominally occupied by an object of type TYPE
2124 when it resides in memory. The value is measured in units of bytes,
2125 and its data type is that normally used for type sizes
2126 (which is the first type created by make_signed_type or
2127 make_unsigned_type). */
2129 tree
2130 size_in_bytes (const_tree type)
2132 tree t;
2134 if (type == error_mark_node)
2135 return integer_zero_node;
2137 type = TYPE_MAIN_VARIANT (type);
2138 t = TYPE_SIZE_UNIT (type);
2140 if (t == 0)
2142 lang_hooks.types.incomplete_type_error (NULL_TREE, type);
2143 return size_zero_node;
2146 return t;
2149 /* Return the size of TYPE (in bytes) as a wide integer
2150 or return -1 if the size can vary or is larger than an integer. */
2152 HOST_WIDE_INT
2153 int_size_in_bytes (const_tree type)
2155 tree t;
2157 if (type == error_mark_node)
2158 return 0;
2160 type = TYPE_MAIN_VARIANT (type);
2161 t = TYPE_SIZE_UNIT (type);
2162 if (t == 0
2163 || TREE_CODE (t) != INTEGER_CST
2164 || TREE_INT_CST_HIGH (t) != 0
2165 /* If the result would appear negative, it's too big to represent. */
2166 || (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0)
2167 return -1;
2169 return TREE_INT_CST_LOW (t);
2172 /* Return the maximum size of TYPE (in bytes) as a wide integer
2173 or return -1 if the size can vary or is larger than an integer. */
2175 HOST_WIDE_INT
2176 max_int_size_in_bytes (const_tree type)
2178 HOST_WIDE_INT size = -1;
2179 tree size_tree;
2181 /* If this is an array type, check for a possible MAX_SIZE attached. */
2183 if (TREE_CODE (type) == ARRAY_TYPE)
2185 size_tree = TYPE_ARRAY_MAX_SIZE (type);
2187 if (size_tree && host_integerp (size_tree, 1))
2188 size = tree_low_cst (size_tree, 1);
2191 /* If we still haven't been able to get a size, see if the language
2192 can compute a maximum size. */
2194 if (size == -1)
2196 size_tree = lang_hooks.types.max_size (type);
2198 if (size_tree && host_integerp (size_tree, 1))
2199 size = tree_low_cst (size_tree, 1);
2202 return size;
2205 /* Returns a tree for the size of EXP in bytes. */
2207 tree
2208 tree_expr_size (const_tree exp)
2210 if (DECL_P (exp)
2211 && DECL_SIZE_UNIT (exp) != 0)
2212 return DECL_SIZE_UNIT (exp);
2213 else
2214 return size_in_bytes (TREE_TYPE (exp));
2217 /* Return the bit position of FIELD, in bits from the start of the record.
2218 This is a tree of type bitsizetype. */
2220 tree
2221 bit_position (const_tree field)
2223 return bit_from_pos (DECL_FIELD_OFFSET (field),
2224 DECL_FIELD_BIT_OFFSET (field));
2227 /* Likewise, but return as an integer. It must be representable in
2228 that way (since it could be a signed value, we don't have the
2229 option of returning -1 like int_size_in_byte can. */
2231 HOST_WIDE_INT
2232 int_bit_position (const_tree field)
2234 return tree_low_cst (bit_position (field), 0);
2237 /* Return the byte position of FIELD, in bytes from the start of the record.
2238 This is a tree of type sizetype. */
2240 tree
2241 byte_position (const_tree field)
2243 return byte_from_pos (DECL_FIELD_OFFSET (field),
2244 DECL_FIELD_BIT_OFFSET (field));
2247 /* Likewise, but return as an integer. It must be representable in
2248 that way (since it could be a signed value, we don't have the
2249 option of returning -1 like int_size_in_byte can. */
2251 HOST_WIDE_INT
2252 int_byte_position (const_tree field)
2254 return tree_low_cst (byte_position (field), 0);
2257 /* Return the strictest alignment, in bits, that T is known to have. */
2259 unsigned int
2260 expr_align (const_tree t)
2262 unsigned int align0, align1;
2264 switch (TREE_CODE (t))
2266 CASE_CONVERT: case NON_LVALUE_EXPR:
2267 /* If we have conversions, we know that the alignment of the
2268 object must meet each of the alignments of the types. */
2269 align0 = expr_align (TREE_OPERAND (t, 0));
2270 align1 = TYPE_ALIGN (TREE_TYPE (t));
2271 return MAX (align0, align1);
2273 case SAVE_EXPR: case COMPOUND_EXPR: case MODIFY_EXPR:
2274 case INIT_EXPR: case TARGET_EXPR: case WITH_CLEANUP_EXPR:
2275 case CLEANUP_POINT_EXPR:
2276 /* These don't change the alignment of an object. */
2277 return expr_align (TREE_OPERAND (t, 0));
2279 case COND_EXPR:
2280 /* The best we can do is say that the alignment is the least aligned
2281 of the two arms. */
2282 align0 = expr_align (TREE_OPERAND (t, 1));
2283 align1 = expr_align (TREE_OPERAND (t, 2));
2284 return MIN (align0, align1);
2286 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
2287 meaningfully, it's always 1. */
2288 case LABEL_DECL: case CONST_DECL:
2289 case VAR_DECL: case PARM_DECL: case RESULT_DECL:
2290 case FUNCTION_DECL:
2291 gcc_assert (DECL_ALIGN (t) != 0);
2292 return DECL_ALIGN (t);
2294 default:
2295 break;
2298 /* Otherwise take the alignment from that of the type. */
2299 return TYPE_ALIGN (TREE_TYPE (t));
2302 /* Return, as a tree node, the number of elements for TYPE (which is an
2303 ARRAY_TYPE) minus one. This counts only elements of the top array. */
2305 tree
2306 array_type_nelts (const_tree type)
2308 tree index_type, min, max;
2310 /* If they did it with unspecified bounds, then we should have already
2311 given an error about it before we got here. */
2312 if (! TYPE_DOMAIN (type))
2313 return error_mark_node;
2315 index_type = TYPE_DOMAIN (type);
2316 min = TYPE_MIN_VALUE (index_type);
2317 max = TYPE_MAX_VALUE (index_type);
2319 return (integer_zerop (min)
2320 ? max
2321 : fold_build2 (MINUS_EXPR, TREE_TYPE (max), max, min));
2324 /* If arg is static -- a reference to an object in static storage -- then
2325 return the object. This is not the same as the C meaning of `static'.
2326 If arg isn't static, return NULL. */
2328 tree
2329 staticp (tree arg)
2331 switch (TREE_CODE (arg))
2333 case FUNCTION_DECL:
2334 /* Nested functions are static, even though taking their address will
2335 involve a trampoline as we unnest the nested function and create
2336 the trampoline on the tree level. */
2337 return arg;
2339 case VAR_DECL:
2340 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
2341 && ! DECL_THREAD_LOCAL_P (arg)
2342 && ! DECL_DLLIMPORT_P (arg)
2343 ? arg : NULL);
2345 case CONST_DECL:
2346 return ((TREE_STATIC (arg) || DECL_EXTERNAL (arg))
2347 ? arg : NULL);
2349 case CONSTRUCTOR:
2350 return TREE_STATIC (arg) ? arg : NULL;
2352 case LABEL_DECL:
2353 case STRING_CST:
2354 return arg;
2356 case COMPONENT_REF:
2357 /* If the thing being referenced is not a field, then it is
2358 something language specific. */
2359 gcc_assert (TREE_CODE (TREE_OPERAND (arg, 1)) == FIELD_DECL);
2361 /* If we are referencing a bitfield, we can't evaluate an
2362 ADDR_EXPR at compile time and so it isn't a constant. */
2363 if (DECL_BIT_FIELD (TREE_OPERAND (arg, 1)))
2364 return NULL;
2366 return staticp (TREE_OPERAND (arg, 0));
2368 case BIT_FIELD_REF:
2369 return NULL;
2371 case MISALIGNED_INDIRECT_REF:
2372 case ALIGN_INDIRECT_REF:
2373 case INDIRECT_REF:
2374 return TREE_CONSTANT (TREE_OPERAND (arg, 0)) ? arg : NULL;
2376 case ARRAY_REF:
2377 case ARRAY_RANGE_REF:
2378 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg))) == INTEGER_CST
2379 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST)
2380 return staticp (TREE_OPERAND (arg, 0));
2381 else
2382 return NULL;
2384 case COMPOUND_LITERAL_EXPR:
2385 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg)) ? arg : NULL;
2387 default:
2388 return NULL;
2395 /* Return whether OP is a DECL whose address is function-invariant. */
2397 bool
2398 decl_address_invariant_p (const_tree op)
2400 /* The conditions below are slightly less strict than the one in
2401 staticp. */
2403 switch (TREE_CODE (op))
2405 case PARM_DECL:
2406 case RESULT_DECL:
2407 case LABEL_DECL:
2408 case FUNCTION_DECL:
2409 return true;
2411 case VAR_DECL:
2412 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
2413 && !DECL_DLLIMPORT_P (op))
2414 || DECL_THREAD_LOCAL_P (op)
2415 || DECL_CONTEXT (op) == current_function_decl
2416 || decl_function_context (op) == current_function_decl)
2417 return true;
2418 break;
2420 case CONST_DECL:
2421 if ((TREE_STATIC (op) || DECL_EXTERNAL (op))
2422 || decl_function_context (op) == current_function_decl)
2423 return true;
2424 break;
2426 default:
2427 break;
2430 return false;
2433 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
2435 bool
2436 decl_address_ip_invariant_p (const_tree op)
2438 /* The conditions below are slightly less strict than the one in
2439 staticp. */
2441 switch (TREE_CODE (op))
2443 case LABEL_DECL:
2444 case FUNCTION_DECL:
2445 case STRING_CST:
2446 return true;
2448 case VAR_DECL:
2449 if (((TREE_STATIC (op) || DECL_EXTERNAL (op))
2450 && !DECL_DLLIMPORT_P (op))
2451 || DECL_THREAD_LOCAL_P (op))
2452 return true;
2453 break;
2455 case CONST_DECL:
2456 if ((TREE_STATIC (op) || DECL_EXTERNAL (op)))
2457 return true;
2458 break;
2460 default:
2461 break;
2464 return false;
2468 /* Return true if T is function-invariant (internal function, does
2469 not handle arithmetic; that's handled in skip_simple_arithmetic and
2470 tree_invariant_p). */
2472 static bool tree_invariant_p (tree t);
2474 static bool
2475 tree_invariant_p_1 (tree t)
2477 tree op;
2479 if (TREE_CONSTANT (t)
2480 || (TREE_READONLY (t) && !TREE_SIDE_EFFECTS (t)))
2481 return true;
2483 switch (TREE_CODE (t))
2485 case SAVE_EXPR:
2486 return true;
2488 case ADDR_EXPR:
2489 op = TREE_OPERAND (t, 0);
2490 while (handled_component_p (op))
2492 switch (TREE_CODE (op))
2494 case ARRAY_REF:
2495 case ARRAY_RANGE_REF:
2496 if (!tree_invariant_p (TREE_OPERAND (op, 1))
2497 || TREE_OPERAND (op, 2) != NULL_TREE
2498 || TREE_OPERAND (op, 3) != NULL_TREE)
2499 return false;
2500 break;
2502 case COMPONENT_REF:
2503 if (TREE_OPERAND (op, 2) != NULL_TREE)
2504 return false;
2505 break;
2507 default:;
2509 op = TREE_OPERAND (op, 0);
2512 return CONSTANT_CLASS_P (op) || decl_address_invariant_p (op);
2514 default:
2515 break;
2518 return false;
2521 /* Return true if T is function-invariant. */
2523 static bool
2524 tree_invariant_p (tree t)
2526 tree inner = skip_simple_arithmetic (t);
2527 return tree_invariant_p_1 (inner);
2530 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
2531 Do this to any expression which may be used in more than one place,
2532 but must be evaluated only once.
2534 Normally, expand_expr would reevaluate the expression each time.
2535 Calling save_expr produces something that is evaluated and recorded
2536 the first time expand_expr is called on it. Subsequent calls to
2537 expand_expr just reuse the recorded value.
2539 The call to expand_expr that generates code that actually computes
2540 the value is the first call *at compile time*. Subsequent calls
2541 *at compile time* generate code to use the saved value.
2542 This produces correct result provided that *at run time* control
2543 always flows through the insns made by the first expand_expr
2544 before reaching the other places where the save_expr was evaluated.
2545 You, the caller of save_expr, must make sure this is so.
2547 Constants, and certain read-only nodes, are returned with no
2548 SAVE_EXPR because that is safe. Expressions containing placeholders
2549 are not touched; see tree.def for an explanation of what these
2550 are used for. */
2552 tree
2553 save_expr (tree expr)
2555 tree t = fold (expr);
2556 tree inner;
2558 /* If the tree evaluates to a constant, then we don't want to hide that
2559 fact (i.e. this allows further folding, and direct checks for constants).
2560 However, a read-only object that has side effects cannot be bypassed.
2561 Since it is no problem to reevaluate literals, we just return the
2562 literal node. */
2563 inner = skip_simple_arithmetic (t);
2564 if (TREE_CODE (inner) == ERROR_MARK)
2565 return inner;
2567 if (tree_invariant_p_1 (inner))
2568 return t;
2570 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
2571 it means that the size or offset of some field of an object depends on
2572 the value within another field.
2574 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
2575 and some variable since it would then need to be both evaluated once and
2576 evaluated more than once. Front-ends must assure this case cannot
2577 happen by surrounding any such subexpressions in their own SAVE_EXPR
2578 and forcing evaluation at the proper time. */
2579 if (contains_placeholder_p (inner))
2580 return t;
2582 t = build1 (SAVE_EXPR, TREE_TYPE (expr), t);
2583 SET_EXPR_LOCATION (t, EXPR_LOCATION (expr));
2585 /* This expression might be placed ahead of a jump to ensure that the
2586 value was computed on both sides of the jump. So make sure it isn't
2587 eliminated as dead. */
2588 TREE_SIDE_EFFECTS (t) = 1;
2589 return t;
2592 /* Look inside EXPR and into any simple arithmetic operations. Return
2593 the innermost non-arithmetic node. */
2595 tree
2596 skip_simple_arithmetic (tree expr)
2598 tree inner;
2600 /* We don't care about whether this can be used as an lvalue in this
2601 context. */
2602 while (TREE_CODE (expr) == NON_LVALUE_EXPR)
2603 expr = TREE_OPERAND (expr, 0);
2605 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
2606 a constant, it will be more efficient to not make another SAVE_EXPR since
2607 it will allow better simplification and GCSE will be able to merge the
2608 computations if they actually occur. */
2609 inner = expr;
2610 while (1)
2612 if (UNARY_CLASS_P (inner))
2613 inner = TREE_OPERAND (inner, 0);
2614 else if (BINARY_CLASS_P (inner))
2616 if (tree_invariant_p (TREE_OPERAND (inner, 1)))
2617 inner = TREE_OPERAND (inner, 0);
2618 else if (tree_invariant_p (TREE_OPERAND (inner, 0)))
2619 inner = TREE_OPERAND (inner, 1);
2620 else
2621 break;
2623 else
2624 break;
2627 return inner;
2631 /* Return which tree structure is used by T. */
2633 enum tree_node_structure_enum
2634 tree_node_structure (const_tree t)
2636 const enum tree_code code = TREE_CODE (t);
2637 return tree_node_structure_for_code (code);
2640 /* Set various status flags when building a CALL_EXPR object T. */
2642 static void
2643 process_call_operands (tree t)
2645 bool side_effects = TREE_SIDE_EFFECTS (t);
2646 bool read_only = false;
2647 int i = call_expr_flags (t);
2649 /* Calls have side-effects, except those to const or pure functions. */
2650 if ((i & ECF_LOOPING_CONST_OR_PURE) || !(i & (ECF_CONST | ECF_PURE)))
2651 side_effects = true;
2652 /* Propagate TREE_READONLY of arguments for const functions. */
2653 if (i & ECF_CONST)
2654 read_only = true;
2656 if (!side_effects || read_only)
2657 for (i = 1; i < TREE_OPERAND_LENGTH (t); i++)
2659 tree op = TREE_OPERAND (t, i);
2660 if (op && TREE_SIDE_EFFECTS (op))
2661 side_effects = true;
2662 if (op && !TREE_READONLY (op) && !CONSTANT_CLASS_P (op))
2663 read_only = false;
2666 TREE_SIDE_EFFECTS (t) = side_effects;
2667 TREE_READONLY (t) = read_only;
2670 /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
2671 or offset that depends on a field within a record. */
2673 bool
2674 contains_placeholder_p (const_tree exp)
2676 enum tree_code code;
2678 if (!exp)
2679 return 0;
2681 code = TREE_CODE (exp);
2682 if (code == PLACEHOLDER_EXPR)
2683 return 1;
2685 switch (TREE_CODE_CLASS (code))
2687 case tcc_reference:
2688 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
2689 position computations since they will be converted into a
2690 WITH_RECORD_EXPR involving the reference, which will assume
2691 here will be valid. */
2692 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
2694 case tcc_exceptional:
2695 if (code == TREE_LIST)
2696 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp))
2697 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp)));
2698 break;
2700 case tcc_unary:
2701 case tcc_binary:
2702 case tcc_comparison:
2703 case tcc_expression:
2704 switch (code)
2706 case COMPOUND_EXPR:
2707 /* Ignoring the first operand isn't quite right, but works best. */
2708 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1));
2710 case COND_EXPR:
2711 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
2712 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1))
2713 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 2)));
2715 case SAVE_EXPR:
2716 /* The save_expr function never wraps anything containing
2717 a PLACEHOLDER_EXPR. */
2718 return 0;
2720 default:
2721 break;
2724 switch (TREE_CODE_LENGTH (code))
2726 case 1:
2727 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0));
2728 case 2:
2729 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 0))
2730 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp, 1)));
2731 default:
2732 return 0;
2735 case tcc_vl_exp:
2736 switch (code)
2738 case CALL_EXPR:
2740 const_tree arg;
2741 const_call_expr_arg_iterator iter;
2742 FOR_EACH_CONST_CALL_EXPR_ARG (arg, iter, exp)
2743 if (CONTAINS_PLACEHOLDER_P (arg))
2744 return 1;
2745 return 0;
2747 default:
2748 return 0;
2751 default:
2752 return 0;
2754 return 0;
2757 /* Return true if any part of the computation of TYPE involves a
2758 PLACEHOLDER_EXPR. This includes size, bounds, qualifiers
2759 (for QUAL_UNION_TYPE) and field positions. */
2761 static bool
2762 type_contains_placeholder_1 (const_tree type)
2764 /* If the size contains a placeholder or the parent type (component type in
2765 the case of arrays) type involves a placeholder, this type does. */
2766 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type))
2767 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type))
2768 || (TREE_TYPE (type) != 0
2769 && type_contains_placeholder_p (TREE_TYPE (type))))
2770 return true;
2772 /* Now do type-specific checks. Note that the last part of the check above
2773 greatly limits what we have to do below. */
2774 switch (TREE_CODE (type))
2776 case VOID_TYPE:
2777 case COMPLEX_TYPE:
2778 case ENUMERAL_TYPE:
2779 case BOOLEAN_TYPE:
2780 case POINTER_TYPE:
2781 case OFFSET_TYPE:
2782 case REFERENCE_TYPE:
2783 case METHOD_TYPE:
2784 case FUNCTION_TYPE:
2785 case VECTOR_TYPE:
2786 return false;
2788 case INTEGER_TYPE:
2789 case REAL_TYPE:
2790 case FIXED_POINT_TYPE:
2791 /* Here we just check the bounds. */
2792 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type))
2793 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type)));
2795 case ARRAY_TYPE:
2796 /* We're already checked the component type (TREE_TYPE), so just check
2797 the index type. */
2798 return type_contains_placeholder_p (TYPE_DOMAIN (type));
2800 case RECORD_TYPE:
2801 case UNION_TYPE:
2802 case QUAL_UNION_TYPE:
2804 tree field;
2806 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
2807 if (TREE_CODE (field) == FIELD_DECL
2808 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field))
2809 || (TREE_CODE (type) == QUAL_UNION_TYPE
2810 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field)))
2811 || type_contains_placeholder_p (TREE_TYPE (field))))
2812 return true;
2814 return false;
2817 default:
2818 gcc_unreachable ();
2822 bool
2823 type_contains_placeholder_p (tree type)
2825 bool result;
2827 /* If the contains_placeholder_bits field has been initialized,
2828 then we know the answer. */
2829 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) > 0)
2830 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) - 1;
2832 /* Indicate that we've seen this type node, and the answer is false.
2833 This is what we want to return if we run into recursion via fields. */
2834 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = 1;
2836 /* Compute the real value. */
2837 result = type_contains_placeholder_1 (type);
2839 /* Store the real value. */
2840 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type) = result + 1;
2842 return result;
2845 /* Push tree EXP onto vector QUEUE if it is not already present. */
2847 static void
2848 push_without_duplicates (tree exp, VEC (tree, heap) **queue)
2850 unsigned int i;
2851 tree iter;
2853 for (i = 0; VEC_iterate (tree, *queue, i, iter); i++)
2854 if (simple_cst_equal (iter, exp) == 1)
2855 break;
2857 if (!iter)
2858 VEC_safe_push (tree, heap, *queue, exp);
2861 /* Given a tree EXP, find all occurences of references to fields
2862 in a PLACEHOLDER_EXPR and place them in vector REFS without
2863 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
2864 we assume here that EXP contains only arithmetic expressions
2865 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
2866 argument list. */
2868 void
2869 find_placeholder_in_expr (tree exp, VEC (tree, heap) **refs)
2871 enum tree_code code = TREE_CODE (exp);
2872 tree inner;
2873 int i;
2875 /* We handle TREE_LIST and COMPONENT_REF separately. */
2876 if (code == TREE_LIST)
2878 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), refs);
2879 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), refs);
2881 else if (code == COMPONENT_REF)
2883 for (inner = TREE_OPERAND (exp, 0);
2884 REFERENCE_CLASS_P (inner);
2885 inner = TREE_OPERAND (inner, 0))
2888 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
2889 push_without_duplicates (exp, refs);
2890 else
2891 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), refs);
2893 else
2894 switch (TREE_CODE_CLASS (code))
2896 case tcc_constant:
2897 break;
2899 case tcc_declaration:
2900 /* Variables allocated to static storage can stay. */
2901 if (!TREE_STATIC (exp))
2902 push_without_duplicates (exp, refs);
2903 break;
2905 case tcc_expression:
2906 /* This is the pattern built in ada/make_aligning_type. */
2907 if (code == ADDR_EXPR
2908 && TREE_CODE (TREE_OPERAND (exp, 0)) == PLACEHOLDER_EXPR)
2910 push_without_duplicates (exp, refs);
2911 break;
2914 /* Fall through... */
2916 case tcc_exceptional:
2917 case tcc_unary:
2918 case tcc_binary:
2919 case tcc_comparison:
2920 case tcc_reference:
2921 for (i = 0; i < TREE_CODE_LENGTH (code); i++)
2922 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
2923 break;
2925 case tcc_vl_exp:
2926 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
2927 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, i), refs);
2928 break;
2930 default:
2931 gcc_unreachable ();
2935 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
2936 return a tree with all occurrences of references to F in a
2937 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
2938 CONST_DECLs. Note that we assume here that EXP contains only
2939 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
2940 occurring only in their argument list. */
2942 tree
2943 substitute_in_expr (tree exp, tree f, tree r)
2945 enum tree_code code = TREE_CODE (exp);
2946 tree op0, op1, op2, op3;
2947 tree new_tree;
2949 /* We handle TREE_LIST and COMPONENT_REF separately. */
2950 if (code == TREE_LIST)
2952 op0 = SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp), f, r);
2953 op1 = SUBSTITUTE_IN_EXPR (TREE_VALUE (exp), f, r);
2954 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
2955 return exp;
2957 return tree_cons (TREE_PURPOSE (exp), op1, op0);
2959 else if (code == COMPONENT_REF)
2961 tree inner;
2963 /* If this expression is getting a value from a PLACEHOLDER_EXPR
2964 and it is the right field, replace it with R. */
2965 for (inner = TREE_OPERAND (exp, 0);
2966 REFERENCE_CLASS_P (inner);
2967 inner = TREE_OPERAND (inner, 0))
2970 /* The field. */
2971 op1 = TREE_OPERAND (exp, 1);
2973 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && op1 == f)
2974 return r;
2976 /* If this expression hasn't been completed let, leave it alone. */
2977 if (TREE_CODE (inner) == PLACEHOLDER_EXPR && !TREE_TYPE (inner))
2978 return exp;
2980 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
2981 if (op0 == TREE_OPERAND (exp, 0))
2982 return exp;
2984 new_tree
2985 = fold_build3 (COMPONENT_REF, TREE_TYPE (exp), op0, op1, NULL_TREE);
2987 else
2988 switch (TREE_CODE_CLASS (code))
2990 case tcc_constant:
2991 return exp;
2993 case tcc_declaration:
2994 if (exp == f)
2995 return r;
2996 else
2997 return exp;
2999 case tcc_expression:
3000 if (exp == f)
3001 return r;
3003 /* Fall through... */
3005 case tcc_exceptional:
3006 case tcc_unary:
3007 case tcc_binary:
3008 case tcc_comparison:
3009 case tcc_reference:
3010 switch (TREE_CODE_LENGTH (code))
3012 case 0:
3013 return exp;
3015 case 1:
3016 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3017 if (op0 == TREE_OPERAND (exp, 0))
3018 return exp;
3020 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3021 break;
3023 case 2:
3024 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3025 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3027 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3028 return exp;
3030 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3031 break;
3033 case 3:
3034 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3035 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3036 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3038 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3039 && op2 == TREE_OPERAND (exp, 2))
3040 return exp;
3042 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3043 break;
3045 case 4:
3046 op0 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 0), f, r);
3047 op1 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 1), f, r);
3048 op2 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 2), f, r);
3049 op3 = SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp, 3), f, r);
3051 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3052 && op2 == TREE_OPERAND (exp, 2)
3053 && op3 == TREE_OPERAND (exp, 3))
3054 return exp;
3056 new_tree
3057 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3058 break;
3060 default:
3061 gcc_unreachable ();
3063 break;
3065 case tcc_vl_exp:
3067 int i;
3069 new_tree = NULL_TREE;
3071 /* If we are trying to replace F with a constant, inline back
3072 functions which do nothing else than computing a value from
3073 the arguments they are passed. This makes it possible to
3074 fold partially or entirely the replacement expression. */
3075 if (CONSTANT_CLASS_P (r) && code == CALL_EXPR)
3077 tree t = maybe_inline_call_in_expr (exp);
3078 if (t)
3079 return SUBSTITUTE_IN_EXPR (t, f, r);
3082 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3084 tree op = TREE_OPERAND (exp, i);
3085 tree new_op = SUBSTITUTE_IN_EXPR (op, f, r);
3086 if (new_op != op)
3088 if (!new_tree)
3089 new_tree = copy_node (exp);
3090 TREE_OPERAND (new_tree, i) = new_op;
3094 if (new_tree)
3096 new_tree = fold (new_tree);
3097 if (TREE_CODE (new_tree) == CALL_EXPR)
3098 process_call_operands (new_tree);
3100 else
3101 return exp;
3103 break;
3105 default:
3106 gcc_unreachable ();
3109 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
3110 return new_tree;
3113 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3114 for it within OBJ, a tree that is an object or a chain of references. */
3116 tree
3117 substitute_placeholder_in_expr (tree exp, tree obj)
3119 enum tree_code code = TREE_CODE (exp);
3120 tree op0, op1, op2, op3;
3121 tree new_tree;
3123 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3124 in the chain of OBJ. */
3125 if (code == PLACEHOLDER_EXPR)
3127 tree need_type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
3128 tree elt;
3130 for (elt = obj; elt != 0;
3131 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3132 || TREE_CODE (elt) == COND_EXPR)
3133 ? TREE_OPERAND (elt, 1)
3134 : (REFERENCE_CLASS_P (elt)
3135 || UNARY_CLASS_P (elt)
3136 || BINARY_CLASS_P (elt)
3137 || VL_EXP_CLASS_P (elt)
3138 || EXPRESSION_CLASS_P (elt))
3139 ? TREE_OPERAND (elt, 0) : 0))
3140 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt)) == need_type)
3141 return elt;
3143 for (elt = obj; elt != 0;
3144 elt = ((TREE_CODE (elt) == COMPOUND_EXPR
3145 || TREE_CODE (elt) == COND_EXPR)
3146 ? TREE_OPERAND (elt, 1)
3147 : (REFERENCE_CLASS_P (elt)
3148 || UNARY_CLASS_P (elt)
3149 || BINARY_CLASS_P (elt)
3150 || VL_EXP_CLASS_P (elt)
3151 || EXPRESSION_CLASS_P (elt))
3152 ? TREE_OPERAND (elt, 0) : 0))
3153 if (POINTER_TYPE_P (TREE_TYPE (elt))
3154 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt)))
3155 == need_type))
3156 return fold_build1 (INDIRECT_REF, need_type, elt);
3158 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3159 survives until RTL generation, there will be an error. */
3160 return exp;
3163 /* TREE_LIST is special because we need to look at TREE_VALUE
3164 and TREE_CHAIN, not TREE_OPERANDS. */
3165 else if (code == TREE_LIST)
3167 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp), obj);
3168 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp), obj);
3169 if (op0 == TREE_CHAIN (exp) && op1 == TREE_VALUE (exp))
3170 return exp;
3172 return tree_cons (TREE_PURPOSE (exp), op1, op0);
3174 else
3175 switch (TREE_CODE_CLASS (code))
3177 case tcc_constant:
3178 case tcc_declaration:
3179 return exp;
3181 case tcc_exceptional:
3182 case tcc_unary:
3183 case tcc_binary:
3184 case tcc_comparison:
3185 case tcc_expression:
3186 case tcc_reference:
3187 case tcc_statement:
3188 switch (TREE_CODE_LENGTH (code))
3190 case 0:
3191 return exp;
3193 case 1:
3194 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3195 if (op0 == TREE_OPERAND (exp, 0))
3196 return exp;
3198 new_tree = fold_build1 (code, TREE_TYPE (exp), op0);
3199 break;
3201 case 2:
3202 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3203 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3205 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1))
3206 return exp;
3208 new_tree = fold_build2 (code, TREE_TYPE (exp), op0, op1);
3209 break;
3211 case 3:
3212 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3213 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3214 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
3216 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3217 && op2 == TREE_OPERAND (exp, 2))
3218 return exp;
3220 new_tree = fold_build3 (code, TREE_TYPE (exp), op0, op1, op2);
3221 break;
3223 case 4:
3224 op0 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 0), obj);
3225 op1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 1), obj);
3226 op2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 2), obj);
3227 op3 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp, 3), obj);
3229 if (op0 == TREE_OPERAND (exp, 0) && op1 == TREE_OPERAND (exp, 1)
3230 && op2 == TREE_OPERAND (exp, 2)
3231 && op3 == TREE_OPERAND (exp, 3))
3232 return exp;
3234 new_tree
3235 = fold (build4 (code, TREE_TYPE (exp), op0, op1, op2, op3));
3236 break;
3238 default:
3239 gcc_unreachable ();
3241 break;
3243 case tcc_vl_exp:
3245 int i;
3247 new_tree = NULL_TREE;
3249 for (i = 1; i < TREE_OPERAND_LENGTH (exp); i++)
3251 tree op = TREE_OPERAND (exp, i);
3252 tree new_op = SUBSTITUTE_PLACEHOLDER_IN_EXPR (op, obj);
3253 if (new_op != op)
3255 if (!new_tree)
3256 new_tree = copy_node (exp);
3257 TREE_OPERAND (new_tree, i) = new_op;
3261 if (new_tree)
3263 new_tree = fold (new_tree);
3264 if (TREE_CODE (new_tree) == CALL_EXPR)
3265 process_call_operands (new_tree);
3267 else
3268 return exp;
3270 break;
3272 default:
3273 gcc_unreachable ();
3276 TREE_READONLY (new_tree) |= TREE_READONLY (exp);
3277 return new_tree;
3280 /* Stabilize a reference so that we can use it any number of times
3281 without causing its operands to be evaluated more than once.
3282 Returns the stabilized reference. This works by means of save_expr,
3283 so see the caveats in the comments about save_expr.
3285 Also allows conversion expressions whose operands are references.
3286 Any other kind of expression is returned unchanged. */
3288 tree
3289 stabilize_reference (tree ref)
3291 tree result;
3292 enum tree_code code = TREE_CODE (ref);
3294 switch (code)
3296 case VAR_DECL:
3297 case PARM_DECL:
3298 case RESULT_DECL:
3299 /* No action is needed in this case. */
3300 return ref;
3302 CASE_CONVERT:
3303 case FLOAT_EXPR:
3304 case FIX_TRUNC_EXPR:
3305 result = build_nt (code, stabilize_reference (TREE_OPERAND (ref, 0)));
3306 break;
3308 case INDIRECT_REF:
3309 result = build_nt (INDIRECT_REF,
3310 stabilize_reference_1 (TREE_OPERAND (ref, 0)));
3311 break;
3313 case COMPONENT_REF:
3314 result = build_nt (COMPONENT_REF,
3315 stabilize_reference (TREE_OPERAND (ref, 0)),
3316 TREE_OPERAND (ref, 1), NULL_TREE);
3317 break;
3319 case BIT_FIELD_REF:
3320 result = build_nt (BIT_FIELD_REF,
3321 stabilize_reference (TREE_OPERAND (ref, 0)),
3322 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3323 stabilize_reference_1 (TREE_OPERAND (ref, 2)));
3324 break;
3326 case ARRAY_REF:
3327 result = build_nt (ARRAY_REF,
3328 stabilize_reference (TREE_OPERAND (ref, 0)),
3329 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3330 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
3331 break;
3333 case ARRAY_RANGE_REF:
3334 result = build_nt (ARRAY_RANGE_REF,
3335 stabilize_reference (TREE_OPERAND (ref, 0)),
3336 stabilize_reference_1 (TREE_OPERAND (ref, 1)),
3337 TREE_OPERAND (ref, 2), TREE_OPERAND (ref, 3));
3338 break;
3340 case COMPOUND_EXPR:
3341 /* We cannot wrap the first expression in a SAVE_EXPR, as then
3342 it wouldn't be ignored. This matters when dealing with
3343 volatiles. */
3344 return stabilize_reference_1 (ref);
3346 /* If arg isn't a kind of lvalue we recognize, make no change.
3347 Caller should recognize the error for an invalid lvalue. */
3348 default:
3349 return ref;
3351 case ERROR_MARK:
3352 return error_mark_node;
3355 TREE_TYPE (result) = TREE_TYPE (ref);
3356 TREE_READONLY (result) = TREE_READONLY (ref);
3357 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (ref);
3358 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
3360 return result;
3363 /* Subroutine of stabilize_reference; this is called for subtrees of
3364 references. Any expression with side-effects must be put in a SAVE_EXPR
3365 to ensure that it is only evaluated once.
3367 We don't put SAVE_EXPR nodes around everything, because assigning very
3368 simple expressions to temporaries causes us to miss good opportunities
3369 for optimizations. Among other things, the opportunity to fold in the
3370 addition of a constant into an addressing mode often gets lost, e.g.
3371 "y[i+1] += x;". In general, we take the approach that we should not make
3372 an assignment unless we are forced into it - i.e., that any non-side effect
3373 operator should be allowed, and that cse should take care of coalescing
3374 multiple utterances of the same expression should that prove fruitful. */
3376 tree
3377 stabilize_reference_1 (tree e)
3379 tree result;
3380 enum tree_code code = TREE_CODE (e);
3382 /* We cannot ignore const expressions because it might be a reference
3383 to a const array but whose index contains side-effects. But we can
3384 ignore things that are actual constant or that already have been
3385 handled by this function. */
3387 if (tree_invariant_p (e))
3388 return e;
3390 switch (TREE_CODE_CLASS (code))
3392 case tcc_exceptional:
3393 case tcc_type:
3394 case tcc_declaration:
3395 case tcc_comparison:
3396 case tcc_statement:
3397 case tcc_expression:
3398 case tcc_reference:
3399 case tcc_vl_exp:
3400 /* If the expression has side-effects, then encase it in a SAVE_EXPR
3401 so that it will only be evaluated once. */
3402 /* The reference (r) and comparison (<) classes could be handled as
3403 below, but it is generally faster to only evaluate them once. */
3404 if (TREE_SIDE_EFFECTS (e))
3405 return save_expr (e);
3406 return e;
3408 case tcc_constant:
3409 /* Constants need no processing. In fact, we should never reach
3410 here. */
3411 return e;
3413 case tcc_binary:
3414 /* Division is slow and tends to be compiled with jumps,
3415 especially the division by powers of 2 that is often
3416 found inside of an array reference. So do it just once. */
3417 if (code == TRUNC_DIV_EXPR || code == TRUNC_MOD_EXPR
3418 || code == FLOOR_DIV_EXPR || code == FLOOR_MOD_EXPR
3419 || code == CEIL_DIV_EXPR || code == CEIL_MOD_EXPR
3420 || code == ROUND_DIV_EXPR || code == ROUND_MOD_EXPR)
3421 return save_expr (e);
3422 /* Recursively stabilize each operand. */
3423 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)),
3424 stabilize_reference_1 (TREE_OPERAND (e, 1)));
3425 break;
3427 case tcc_unary:
3428 /* Recursively stabilize each operand. */
3429 result = build_nt (code, stabilize_reference_1 (TREE_OPERAND (e, 0)));
3430 break;
3432 default:
3433 gcc_unreachable ();
3436 TREE_TYPE (result) = TREE_TYPE (e);
3437 TREE_READONLY (result) = TREE_READONLY (e);
3438 TREE_SIDE_EFFECTS (result) = TREE_SIDE_EFFECTS (e);
3439 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
3441 return result;
3444 /* Low-level constructors for expressions. */
3446 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
3447 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
3449 void
3450 recompute_tree_invariant_for_addr_expr (tree t)
3452 tree node;
3453 bool tc = true, se = false;
3455 /* We started out assuming this address is both invariant and constant, but
3456 does not have side effects. Now go down any handled components and see if
3457 any of them involve offsets that are either non-constant or non-invariant.
3458 Also check for side-effects.
3460 ??? Note that this code makes no attempt to deal with the case where
3461 taking the address of something causes a copy due to misalignment. */
3463 #define UPDATE_FLAGS(NODE) \
3464 do { tree _node = (NODE); \
3465 if (_node && !TREE_CONSTANT (_node)) tc = false; \
3466 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
3468 for (node = TREE_OPERAND (t, 0); handled_component_p (node);
3469 node = TREE_OPERAND (node, 0))
3471 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
3472 array reference (probably made temporarily by the G++ front end),
3473 so ignore all the operands. */
3474 if ((TREE_CODE (node) == ARRAY_REF
3475 || TREE_CODE (node) == ARRAY_RANGE_REF)
3476 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node, 0))) == ARRAY_TYPE)
3478 UPDATE_FLAGS (TREE_OPERAND (node, 1));
3479 if (TREE_OPERAND (node, 2))
3480 UPDATE_FLAGS (TREE_OPERAND (node, 2));
3481 if (TREE_OPERAND (node, 3))
3482 UPDATE_FLAGS (TREE_OPERAND (node, 3));
3484 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
3485 FIELD_DECL, apparently. The G++ front end can put something else
3486 there, at least temporarily. */
3487 else if (TREE_CODE (node) == COMPONENT_REF
3488 && TREE_CODE (TREE_OPERAND (node, 1)) == FIELD_DECL)
3490 if (TREE_OPERAND (node, 2))
3491 UPDATE_FLAGS (TREE_OPERAND (node, 2));
3493 else if (TREE_CODE (node) == BIT_FIELD_REF)
3494 UPDATE_FLAGS (TREE_OPERAND (node, 2));
3497 node = lang_hooks.expr_to_decl (node, &tc, &se);
3499 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
3500 the address, since &(*a)->b is a form of addition. If it's a constant, the
3501 address is constant too. If it's a decl, its address is constant if the
3502 decl is static. Everything else is not constant and, furthermore,
3503 taking the address of a volatile variable is not volatile. */
3504 if (TREE_CODE (node) == INDIRECT_REF)
3505 UPDATE_FLAGS (TREE_OPERAND (node, 0));
3506 else if (CONSTANT_CLASS_P (node))
3508 else if (DECL_P (node))
3509 tc &= (staticp (node) != NULL_TREE);
3510 else
3512 tc = false;
3513 se |= TREE_SIDE_EFFECTS (node);
3517 TREE_CONSTANT (t) = tc;
3518 TREE_SIDE_EFFECTS (t) = se;
3519 #undef UPDATE_FLAGS
3522 /* Build an expression of code CODE, data type TYPE, and operands as
3523 specified. Expressions and reference nodes can be created this way.
3524 Constants, decls, types and misc nodes cannot be.
3526 We define 5 non-variadic functions, from 0 to 4 arguments. This is
3527 enough for all extant tree codes. */
3529 tree
3530 build0_stat (enum tree_code code, tree tt MEM_STAT_DECL)
3532 tree t;
3534 gcc_assert (TREE_CODE_LENGTH (code) == 0);
3536 t = make_node_stat (code PASS_MEM_STAT);
3537 TREE_TYPE (t) = tt;
3539 return t;
3542 tree
3543 build1_stat (enum tree_code code, tree type, tree node MEM_STAT_DECL)
3545 int length = sizeof (struct tree_exp);
3546 #ifdef GATHER_STATISTICS
3547 tree_node_kind kind;
3548 #endif
3549 tree t;
3551 #ifdef GATHER_STATISTICS
3552 switch (TREE_CODE_CLASS (code))
3554 case tcc_statement: /* an expression with side effects */
3555 kind = s_kind;
3556 break;
3557 case tcc_reference: /* a reference */
3558 kind = r_kind;
3559 break;
3560 default:
3561 kind = e_kind;
3562 break;
3565 tree_node_counts[(int) kind]++;
3566 tree_node_sizes[(int) kind] += length;
3567 #endif
3569 gcc_assert (TREE_CODE_LENGTH (code) == 1);
3571 t = (tree) ggc_alloc_zone_pass_stat (length, &tree_zone);
3573 memset (t, 0, sizeof (struct tree_common));
3575 TREE_SET_CODE (t, code);
3577 TREE_TYPE (t) = type;
3578 SET_EXPR_LOCATION (t, UNKNOWN_LOCATION);
3579 TREE_OPERAND (t, 0) = node;
3580 TREE_BLOCK (t) = NULL_TREE;
3581 if (node && !TYPE_P (node))
3583 TREE_SIDE_EFFECTS (t) = TREE_SIDE_EFFECTS (node);
3584 TREE_READONLY (t) = TREE_READONLY (node);
3587 if (TREE_CODE_CLASS (code) == tcc_statement)
3588 TREE_SIDE_EFFECTS (t) = 1;
3589 else switch (code)
3591 case VA_ARG_EXPR:
3592 /* All of these have side-effects, no matter what their
3593 operands are. */
3594 TREE_SIDE_EFFECTS (t) = 1;
3595 TREE_READONLY (t) = 0;
3596 break;
3598 case MISALIGNED_INDIRECT_REF:
3599 case ALIGN_INDIRECT_REF:
3600 case INDIRECT_REF:
3601 /* Whether a dereference is readonly has nothing to do with whether
3602 its operand is readonly. */
3603 TREE_READONLY (t) = 0;
3604 break;
3606 case ADDR_EXPR:
3607 if (node)
3608 recompute_tree_invariant_for_addr_expr (t);
3609 break;
3611 default:
3612 if ((TREE_CODE_CLASS (code) == tcc_unary || code == VIEW_CONVERT_EXPR)
3613 && node && !TYPE_P (node)
3614 && TREE_CONSTANT (node))
3615 TREE_CONSTANT (t) = 1;
3616 if (TREE_CODE_CLASS (code) == tcc_reference
3617 && node && TREE_THIS_VOLATILE (node))
3618 TREE_THIS_VOLATILE (t) = 1;
3619 break;
3622 return t;
3625 #define PROCESS_ARG(N) \
3626 do { \
3627 TREE_OPERAND (t, N) = arg##N; \
3628 if (arg##N &&!TYPE_P (arg##N)) \
3630 if (TREE_SIDE_EFFECTS (arg##N)) \
3631 side_effects = 1; \
3632 if (!TREE_READONLY (arg##N) \
3633 && !CONSTANT_CLASS_P (arg##N)) \
3634 read_only = 0; \
3635 if (!TREE_CONSTANT (arg##N)) \
3636 constant = 0; \
3638 } while (0)
3640 tree
3641 build2_stat (enum tree_code code, tree tt, tree arg0, tree arg1 MEM_STAT_DECL)
3643 bool constant, read_only, side_effects;
3644 tree t;
3646 gcc_assert (TREE_CODE_LENGTH (code) == 2);
3648 if ((code == MINUS_EXPR || code == PLUS_EXPR || code == MULT_EXPR)
3649 && arg0 && arg1 && tt && POINTER_TYPE_P (tt)
3650 /* When sizetype precision doesn't match that of pointers
3651 we need to be able to build explicit extensions or truncations
3652 of the offset argument. */
3653 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (tt))
3654 gcc_assert (TREE_CODE (arg0) == INTEGER_CST
3655 && TREE_CODE (arg1) == INTEGER_CST);
3657 if (code == POINTER_PLUS_EXPR && arg0 && arg1 && tt)
3658 gcc_assert (POINTER_TYPE_P (tt) && POINTER_TYPE_P (TREE_TYPE (arg0))
3659 && INTEGRAL_TYPE_P (TREE_TYPE (arg1))
3660 && useless_type_conversion_p (sizetype, TREE_TYPE (arg1)));
3662 t = make_node_stat (code PASS_MEM_STAT);
3663 TREE_TYPE (t) = tt;
3665 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
3666 result based on those same flags for the arguments. But if the
3667 arguments aren't really even `tree' expressions, we shouldn't be trying
3668 to do this. */
3670 /* Expressions without side effects may be constant if their
3671 arguments are as well. */
3672 constant = (TREE_CODE_CLASS (code) == tcc_comparison
3673 || TREE_CODE_CLASS (code) == tcc_binary);
3674 read_only = 1;
3675 side_effects = TREE_SIDE_EFFECTS (t);
3677 PROCESS_ARG(0);
3678 PROCESS_ARG(1);
3680 TREE_READONLY (t) = read_only;
3681 TREE_CONSTANT (t) = constant;
3682 TREE_SIDE_EFFECTS (t) = side_effects;
3683 TREE_THIS_VOLATILE (t)
3684 = (TREE_CODE_CLASS (code) == tcc_reference
3685 && arg0 && TREE_THIS_VOLATILE (arg0));
3687 return t;
3691 tree
3692 build3_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3693 tree arg2 MEM_STAT_DECL)
3695 bool constant, read_only, side_effects;
3696 tree t;
3698 gcc_assert (TREE_CODE_LENGTH (code) == 3);
3699 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3701 t = make_node_stat (code PASS_MEM_STAT);
3702 TREE_TYPE (t) = tt;
3704 read_only = 1;
3706 /* As a special exception, if COND_EXPR has NULL branches, we
3707 assume that it is a gimple statement and always consider
3708 it to have side effects. */
3709 if (code == COND_EXPR
3710 && tt == void_type_node
3711 && arg1 == NULL_TREE
3712 && arg2 == NULL_TREE)
3713 side_effects = true;
3714 else
3715 side_effects = TREE_SIDE_EFFECTS (t);
3717 PROCESS_ARG(0);
3718 PROCESS_ARG(1);
3719 PROCESS_ARG(2);
3721 if (code == COND_EXPR)
3722 TREE_READONLY (t) = read_only;
3724 TREE_SIDE_EFFECTS (t) = side_effects;
3725 TREE_THIS_VOLATILE (t)
3726 = (TREE_CODE_CLASS (code) == tcc_reference
3727 && arg0 && TREE_THIS_VOLATILE (arg0));
3729 return t;
3732 tree
3733 build4_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3734 tree arg2, tree arg3 MEM_STAT_DECL)
3736 bool constant, read_only, side_effects;
3737 tree t;
3739 gcc_assert (TREE_CODE_LENGTH (code) == 4);
3741 t = make_node_stat (code PASS_MEM_STAT);
3742 TREE_TYPE (t) = tt;
3744 side_effects = TREE_SIDE_EFFECTS (t);
3746 PROCESS_ARG(0);
3747 PROCESS_ARG(1);
3748 PROCESS_ARG(2);
3749 PROCESS_ARG(3);
3751 TREE_SIDE_EFFECTS (t) = side_effects;
3752 TREE_THIS_VOLATILE (t)
3753 = (TREE_CODE_CLASS (code) == tcc_reference
3754 && arg0 && TREE_THIS_VOLATILE (arg0));
3756 return t;
3759 tree
3760 build5_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3761 tree arg2, tree arg3, tree arg4 MEM_STAT_DECL)
3763 bool constant, read_only, side_effects;
3764 tree t;
3766 gcc_assert (TREE_CODE_LENGTH (code) == 5);
3768 t = make_node_stat (code PASS_MEM_STAT);
3769 TREE_TYPE (t) = tt;
3771 side_effects = TREE_SIDE_EFFECTS (t);
3773 PROCESS_ARG(0);
3774 PROCESS_ARG(1);
3775 PROCESS_ARG(2);
3776 PROCESS_ARG(3);
3777 PROCESS_ARG(4);
3779 TREE_SIDE_EFFECTS (t) = side_effects;
3780 TREE_THIS_VOLATILE (t)
3781 = (TREE_CODE_CLASS (code) == tcc_reference
3782 && arg0 && TREE_THIS_VOLATILE (arg0));
3784 return t;
3787 tree
3788 build6_stat (enum tree_code code, tree tt, tree arg0, tree arg1,
3789 tree arg2, tree arg3, tree arg4, tree arg5 MEM_STAT_DECL)
3791 bool constant, read_only, side_effects;
3792 tree t;
3794 gcc_assert (code == TARGET_MEM_REF);
3796 t = make_node_stat (code PASS_MEM_STAT);
3797 TREE_TYPE (t) = tt;
3799 side_effects = TREE_SIDE_EFFECTS (t);
3801 PROCESS_ARG(0);
3802 PROCESS_ARG(1);
3803 PROCESS_ARG(2);
3804 PROCESS_ARG(3);
3805 PROCESS_ARG(4);
3806 PROCESS_ARG(5);
3808 TREE_SIDE_EFFECTS (t) = side_effects;
3809 TREE_THIS_VOLATILE (t) = 0;
3811 return t;
3814 /* Similar except don't specify the TREE_TYPE
3815 and leave the TREE_SIDE_EFFECTS as 0.
3816 It is permissible for arguments to be null,
3817 or even garbage if their values do not matter. */
3819 tree
3820 build_nt (enum tree_code code, ...)
3822 tree t;
3823 int length;
3824 int i;
3825 va_list p;
3827 gcc_assert (TREE_CODE_CLASS (code) != tcc_vl_exp);
3829 va_start (p, code);
3831 t = make_node (code);
3832 length = TREE_CODE_LENGTH (code);
3834 for (i = 0; i < length; i++)
3835 TREE_OPERAND (t, i) = va_arg (p, tree);
3837 va_end (p);
3838 return t;
3841 /* Similar to build_nt, but for creating a CALL_EXPR object with
3842 ARGLIST passed as a list. */
3844 tree
3845 build_nt_call_list (tree fn, tree arglist)
3847 tree t;
3848 int i;
3850 t = build_vl_exp (CALL_EXPR, list_length (arglist) + 3);
3851 CALL_EXPR_FN (t) = fn;
3852 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
3853 for (i = 0; arglist; arglist = TREE_CHAIN (arglist), i++)
3854 CALL_EXPR_ARG (t, i) = TREE_VALUE (arglist);
3855 return t;
3858 /* Similar to build_nt, but for creating a CALL_EXPR object with a
3859 tree VEC. */
3861 tree
3862 build_nt_call_vec (tree fn, VEC(tree,gc) *args)
3864 tree ret, t;
3865 unsigned int ix;
3867 ret = build_vl_exp (CALL_EXPR, VEC_length (tree, args) + 3);
3868 CALL_EXPR_FN (ret) = fn;
3869 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
3870 for (ix = 0; VEC_iterate (tree, args, ix, t); ++ix)
3871 CALL_EXPR_ARG (ret, ix) = t;
3872 return ret;
3875 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
3876 We do NOT enter this node in any sort of symbol table.
3878 LOC is the location of the decl.
3880 layout_decl is used to set up the decl's storage layout.
3881 Other slots are initialized to 0 or null pointers. */
3883 tree
3884 build_decl_stat (location_t loc, enum tree_code code, tree name,
3885 tree type MEM_STAT_DECL)
3887 tree t;
3889 t = make_node_stat (code PASS_MEM_STAT);
3890 DECL_SOURCE_LOCATION (t) = loc;
3892 /* if (type == error_mark_node)
3893 type = integer_type_node; */
3894 /* That is not done, deliberately, so that having error_mark_node
3895 as the type can suppress useless errors in the use of this variable. */
3897 DECL_NAME (t) = name;
3898 TREE_TYPE (t) = type;
3900 if (code == VAR_DECL || code == PARM_DECL || code == RESULT_DECL)
3901 layout_decl (t, 0);
3903 return t;
3906 /* Builds and returns function declaration with NAME and TYPE. */
3908 tree
3909 build_fn_decl (const char *name, tree type)
3911 tree id = get_identifier (name);
3912 tree decl = build_decl (input_location, FUNCTION_DECL, id, type);
3914 DECL_EXTERNAL (decl) = 1;
3915 TREE_PUBLIC (decl) = 1;
3916 DECL_ARTIFICIAL (decl) = 1;
3917 TREE_NOTHROW (decl) = 1;
3919 return decl;
3923 /* BLOCK nodes are used to represent the structure of binding contours
3924 and declarations, once those contours have been exited and their contents
3925 compiled. This information is used for outputting debugging info. */
3927 tree
3928 build_block (tree vars, tree subblocks, tree supercontext, tree chain)
3930 tree block = make_node (BLOCK);
3932 BLOCK_VARS (block) = vars;
3933 BLOCK_SUBBLOCKS (block) = subblocks;
3934 BLOCK_SUPERCONTEXT (block) = supercontext;
3935 BLOCK_CHAIN (block) = chain;
3936 return block;
3939 expanded_location
3940 expand_location (source_location loc)
3942 expanded_location xloc;
3943 if (loc == 0)
3945 xloc.file = NULL;
3946 xloc.line = 0;
3947 xloc.column = 0;
3948 xloc.sysp = 0;
3950 else
3952 const struct line_map *map = linemap_lookup (line_table, loc);
3953 xloc.file = map->to_file;
3954 xloc.line = SOURCE_LINE (map, loc);
3955 xloc.column = SOURCE_COLUMN (map, loc);
3956 xloc.sysp = map->sysp != 0;
3958 return xloc;
3962 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
3964 LOC is the location to use in tree T. */
3966 void
3967 protected_set_expr_location (tree t, location_t loc)
3969 if (t && CAN_HAVE_LOCATION_P (t))
3970 SET_EXPR_LOCATION (t, loc);
3973 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
3974 is ATTRIBUTE. */
3976 tree
3977 build_decl_attribute_variant (tree ddecl, tree attribute)
3979 DECL_ATTRIBUTES (ddecl) = attribute;
3980 return ddecl;
3983 /* Borrowed from hashtab.c iterative_hash implementation. */
3984 #define mix(a,b,c) \
3986 a -= b; a -= c; a ^= (c>>13); \
3987 b -= c; b -= a; b ^= (a<< 8); \
3988 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
3989 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
3990 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
3991 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
3992 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
3993 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
3994 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
3998 /* Produce good hash value combining VAL and VAL2. */
3999 hashval_t
4000 iterative_hash_hashval_t (hashval_t val, hashval_t val2)
4002 /* the golden ratio; an arbitrary value. */
4003 hashval_t a = 0x9e3779b9;
4005 mix (a, val, val2);
4006 return val2;
4009 /* Produce good hash value combining VAL and VAL2. */
4010 hashval_t
4011 iterative_hash_host_wide_int (HOST_WIDE_INT val, hashval_t val2)
4013 if (sizeof (HOST_WIDE_INT) == sizeof (hashval_t))
4014 return iterative_hash_hashval_t (val, val2);
4015 else
4017 hashval_t a = (hashval_t) val;
4018 /* Avoid warnings about shifting of more than the width of the type on
4019 hosts that won't execute this path. */
4020 int zero = 0;
4021 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 8 + zero));
4022 mix (a, b, val2);
4023 if (sizeof (HOST_WIDE_INT) > 2 * sizeof (hashval_t))
4025 hashval_t a = (hashval_t) (val >> (sizeof (hashval_t) * 16 + zero));
4026 hashval_t b = (hashval_t) (val >> (sizeof (hashval_t) * 24 + zero));
4027 mix (a, b, val2);
4029 return val2;
4033 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4034 is ATTRIBUTE and its qualifiers are QUALS.
4036 Record such modified types already made so we don't make duplicates. */
4038 static tree
4039 build_type_attribute_qual_variant (tree ttype, tree attribute, int quals)
4041 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
4043 hashval_t hashcode = 0;
4044 tree ntype;
4045 enum tree_code code = TREE_CODE (ttype);
4047 /* Building a distinct copy of a tagged type is inappropriate; it
4048 causes breakage in code that expects there to be a one-to-one
4049 relationship between a struct and its fields.
4050 build_duplicate_type is another solution (as used in
4051 handle_transparent_union_attribute), but that doesn't play well
4052 with the stronger C++ type identity model. */
4053 if (TREE_CODE (ttype) == RECORD_TYPE
4054 || TREE_CODE (ttype) == UNION_TYPE
4055 || TREE_CODE (ttype) == QUAL_UNION_TYPE
4056 || TREE_CODE (ttype) == ENUMERAL_TYPE)
4058 warning (OPT_Wattributes,
4059 "ignoring attributes applied to %qT after definition",
4060 TYPE_MAIN_VARIANT (ttype));
4061 return build_qualified_type (ttype, quals);
4064 ttype = build_qualified_type (ttype, TYPE_UNQUALIFIED);
4065 ntype = build_distinct_type_copy (ttype);
4067 TYPE_ATTRIBUTES (ntype) = attribute;
4069 hashcode = iterative_hash_object (code, hashcode);
4070 if (TREE_TYPE (ntype))
4071 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype)),
4072 hashcode);
4073 hashcode = attribute_hash_list (attribute, hashcode);
4075 switch (TREE_CODE (ntype))
4077 case FUNCTION_TYPE:
4078 hashcode = type_hash_list (TYPE_ARG_TYPES (ntype), hashcode);
4079 break;
4080 case ARRAY_TYPE:
4081 if (TYPE_DOMAIN (ntype))
4082 hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype)),
4083 hashcode);
4084 break;
4085 case INTEGER_TYPE:
4086 hashcode = iterative_hash_object
4087 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype)), hashcode);
4088 hashcode = iterative_hash_object
4089 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype)), hashcode);
4090 break;
4091 case REAL_TYPE:
4092 case FIXED_POINT_TYPE:
4094 unsigned int precision = TYPE_PRECISION (ntype);
4095 hashcode = iterative_hash_object (precision, hashcode);
4097 break;
4098 default:
4099 break;
4102 ntype = type_hash_canon (hashcode, ntype);
4104 /* If the target-dependent attributes make NTYPE different from
4105 its canonical type, we will need to use structural equality
4106 checks for this type. */
4107 if (TYPE_STRUCTURAL_EQUALITY_P (ttype)
4108 || !targetm.comp_type_attributes (ntype, ttype))
4109 SET_TYPE_STRUCTURAL_EQUALITY (ntype);
4110 else if (TYPE_CANONICAL (ntype) == ntype)
4111 TYPE_CANONICAL (ntype) = TYPE_CANONICAL (ttype);
4113 ttype = build_qualified_type (ntype, quals);
4115 else if (TYPE_QUALS (ttype) != quals)
4116 ttype = build_qualified_type (ttype, quals);
4118 return ttype;
4122 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4123 is ATTRIBUTE.
4125 Record such modified types already made so we don't make duplicates. */
4127 tree
4128 build_type_attribute_variant (tree ttype, tree attribute)
4130 return build_type_attribute_qual_variant (ttype, attribute,
4131 TYPE_QUALS (ttype));
4134 /* Reset all language specific information still present in TYPE. */
4136 static void
4137 free_lang_data_in_type (tree type)
4139 gcc_assert (TYPE_P (type));
4141 /* Fill in the alias-set. We need to at least track zeroness here
4142 for correctness. */
4143 if (lang_hooks.get_alias_set (type) == 0)
4144 TYPE_ALIAS_SET (type) = 0;
4146 /* Give the FE a chance to remove its own data first. */
4147 lang_hooks.free_lang_data (type);
4149 TREE_LANG_FLAG_0 (type) = 0;
4150 TREE_LANG_FLAG_1 (type) = 0;
4151 TREE_LANG_FLAG_2 (type) = 0;
4152 TREE_LANG_FLAG_3 (type) = 0;
4153 TREE_LANG_FLAG_4 (type) = 0;
4154 TREE_LANG_FLAG_5 (type) = 0;
4155 TREE_LANG_FLAG_6 (type) = 0;
4157 if (TREE_CODE (type) == FUNCTION_TYPE)
4159 /* Remove the const and volatile qualifiers from arguments. The
4160 C++ front end removes them, but the C front end does not,
4161 leading to false ODR violation errors when merging two
4162 instances of the same function signature compiled by
4163 different front ends. */
4164 tree p;
4166 for (p = TYPE_ARG_TYPES (type); p; p = TREE_CHAIN (p))
4168 tree arg_type = TREE_VALUE (p);
4170 if (TYPE_READONLY (arg_type) || TYPE_VOLATILE (arg_type))
4172 int quals = TYPE_QUALS (arg_type)
4173 & ~TYPE_QUAL_CONST
4174 & ~TYPE_QUAL_VOLATILE;
4175 TREE_VALUE (p) = build_qualified_type (arg_type, quals);
4176 free_lang_data_in_type (TREE_VALUE (p));
4181 /* Remove members that are not actually FIELD_DECLs from the field
4182 list of an aggregate. These occur in C++. */
4183 if (TREE_CODE (type) == RECORD_TYPE
4184 || TREE_CODE (type) == UNION_TYPE
4185 || TREE_CODE (type) == QUAL_UNION_TYPE)
4187 tree prev, member;
4189 /* Note that TYPE_FIELDS can be shared across distinct
4190 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
4191 to be removed, we cannot set its TREE_CHAIN to NULL.
4192 Otherwise, we would not be able to find all the other fields
4193 in the other instances of this TREE_TYPE.
4195 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
4196 prev = NULL_TREE;
4197 member = TYPE_FIELDS (type);
4198 while (member)
4200 if (TREE_CODE (member) == FIELD_DECL)
4202 if (prev)
4203 TREE_CHAIN (prev) = member;
4204 else
4205 TYPE_FIELDS (type) = member;
4206 prev = member;
4209 member = TREE_CHAIN (member);
4212 if (prev)
4213 TREE_CHAIN (prev) = NULL_TREE;
4214 else
4215 TYPE_FIELDS (type) = NULL_TREE;
4217 TYPE_METHODS (type) = NULL_TREE;
4218 if (TYPE_BINFO (type))
4220 tree binfo = TYPE_BINFO (type);
4222 if (BINFO_VIRTUALS (binfo))
4224 /* If the virtual function table for BINFO contains
4225 entries, these may be useful for folding OBJ_TYPE_REF
4226 expressions (see gimple_fold_obj_type_ref). In that
4227 case, we only clear the unused fields in the BINFO
4228 structure. */
4229 BINFO_OFFSET (binfo) = NULL_TREE;
4230 BINFO_VTABLE (binfo) = NULL_TREE;
4231 BINFO_VPTR_FIELD (binfo) = NULL_TREE;
4232 BINFO_BASE_ACCESSES (binfo) = NULL;
4233 BINFO_INHERITANCE_CHAIN (binfo) = NULL_TREE;
4234 BINFO_SUBVTT_INDEX (binfo) = NULL_TREE;
4235 BINFO_VPTR_FIELD (binfo) = NULL_TREE;
4237 else
4239 /* Otherwise, get rid of the whole binfo data. */
4240 TYPE_BINFO (type) = NULL_TREE;
4244 else
4246 /* For non-aggregate types, clear out the language slot (which
4247 overloads TYPE_BINFO). */
4248 TYPE_LANG_SLOT_1 (type) = NULL_TREE;
4251 TYPE_CONTEXT (type) = NULL_TREE;
4252 TYPE_STUB_DECL (type) = NULL_TREE;
4254 /* Remove type variants other than the main variant. This is both
4255 wasteful and it may introduce infinite loops when the types are
4256 read from disk and merged (since the variant will be the same
4257 type as the main variant, traversing type variants will get into
4258 an infinite loop). */
4259 if (TYPE_MAIN_VARIANT (type))
4260 TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (type)) = NULL_TREE;
4262 TYPE_NEXT_VARIANT (type) = NULL_TREE;
4266 /* Return true if DECL may need an assembler name to be set. */
4268 static inline bool
4269 need_assembler_name_p (tree decl)
4271 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
4272 if (TREE_CODE (decl) != FUNCTION_DECL
4273 && TREE_CODE (decl) != VAR_DECL)
4274 return false;
4276 /* If DECL already has its assembler name set, it does not need a
4277 new one. */
4278 if (!HAS_DECL_ASSEMBLER_NAME_P (decl)
4279 || DECL_ASSEMBLER_NAME_SET_P (decl))
4280 return false;
4282 /* For VAR_DECLs, only static, public and external symbols need an
4283 assembler name. */
4284 if (TREE_CODE (decl) == VAR_DECL
4285 && !TREE_STATIC (decl)
4286 && !TREE_PUBLIC (decl)
4287 && !DECL_EXTERNAL (decl))
4288 return false;
4290 /* Do not set assembler name on builtins. Allow RTL expansion to
4291 decide whether to expand inline or via a regular call. */
4292 if (TREE_CODE (decl) == FUNCTION_DECL
4293 && DECL_BUILT_IN (decl)
4294 && DECL_BUILT_IN_CLASS (decl) != BUILT_IN_FRONTEND)
4295 return false;
4297 /* For FUNCTION_DECLs, only used functions and functions
4298 represented in the callgraph need an assembler name. */
4299 if (TREE_CODE (decl) == FUNCTION_DECL
4300 && cgraph_node_for_decl (decl) == NULL
4301 && !TREE_USED (decl))
4302 return false;
4304 return true;
4308 /* Remove all the non-variable decls from BLOCK. LOCALS is the set of
4309 variables in DECL_STRUCT_FUNCTION (FN)->local_decls. Every decl
4310 in BLOCK that is not in LOCALS is removed. */
4312 static void
4313 free_lang_data_in_block (tree fn, tree block, struct pointer_set_t *locals)
4315 tree *tp, t;
4317 tp = &BLOCK_VARS (block);
4318 while (*tp)
4320 if (!pointer_set_contains (locals, *tp))
4321 *tp = TREE_CHAIN (*tp);
4322 else
4323 tp = &TREE_CHAIN (*tp);
4326 for (t = BLOCK_SUBBLOCKS (block); t; t = BLOCK_CHAIN (t))
4327 free_lang_data_in_block (fn, t, locals);
4331 /* Reset all language specific information still present in symbol
4332 DECL. */
4334 static void
4335 free_lang_data_in_decl (tree decl)
4337 gcc_assert (DECL_P (decl));
4339 /* Give the FE a chance to remove its own data first. */
4340 lang_hooks.free_lang_data (decl);
4342 TREE_LANG_FLAG_0 (decl) = 0;
4343 TREE_LANG_FLAG_1 (decl) = 0;
4344 TREE_LANG_FLAG_2 (decl) = 0;
4345 TREE_LANG_FLAG_3 (decl) = 0;
4346 TREE_LANG_FLAG_4 (decl) = 0;
4347 TREE_LANG_FLAG_5 (decl) = 0;
4348 TREE_LANG_FLAG_6 (decl) = 0;
4350 /* Identifiers need not have a type. */
4351 if (DECL_NAME (decl))
4352 TREE_TYPE (DECL_NAME (decl)) = NULL_TREE;
4354 if (TREE_CODE (decl) == CONST_DECL)
4355 DECL_CONTEXT (decl) = NULL_TREE;
4357 /* Ignore any intervening types, because we are going to clear their
4358 TYPE_CONTEXT fields. */
4359 if (TREE_CODE (decl) != FIELD_DECL)
4360 DECL_CONTEXT (decl) = decl_function_context (decl);
4362 if (DECL_CONTEXT (decl)
4363 && TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
4364 DECL_CONTEXT (decl) = NULL_TREE;
4366 if (TREE_CODE (decl) == VAR_DECL)
4368 tree context = DECL_CONTEXT (decl);
4370 if (context)
4372 enum tree_code code = TREE_CODE (context);
4373 if (code == FUNCTION_DECL && DECL_ABSTRACT (context))
4375 /* Do not clear the decl context here, that will promote
4376 all vars to global ones. */
4377 DECL_INITIAL (decl) = NULL_TREE;
4380 if (TREE_STATIC (decl))
4381 DECL_CONTEXT (decl) = NULL_TREE;
4385 if (TREE_CODE (decl) == PARM_DECL
4386 || TREE_CODE (decl) == FIELD_DECL
4387 || TREE_CODE (decl) == RESULT_DECL)
4389 tree unit_size = DECL_SIZE_UNIT (decl);
4390 tree size = DECL_SIZE (decl);
4391 if ((unit_size && TREE_CODE (unit_size) != INTEGER_CST)
4392 || (size && TREE_CODE (size) != INTEGER_CST))
4394 DECL_SIZE_UNIT (decl) = NULL_TREE;
4395 DECL_SIZE (decl) = NULL_TREE;
4398 if (TREE_CODE (decl) == FIELD_DECL
4399 && DECL_FIELD_OFFSET (decl)
4400 && TREE_CODE (DECL_FIELD_OFFSET (decl)) != INTEGER_CST)
4401 DECL_FIELD_OFFSET (decl) = NULL_TREE;
4403 else if (TREE_CODE (decl) == FUNCTION_DECL)
4405 if (gimple_has_body_p (decl))
4407 tree t;
4408 struct pointer_set_t *locals;
4410 /* If DECL has a gimple body, then the context for its
4411 arguments must be DECL. Otherwise, it doesn't really
4412 matter, as we will not be emitting any code for DECL. In
4413 general, there may be other instances of DECL created by
4414 the front end and since PARM_DECLs are generally shared,
4415 their DECL_CONTEXT changes as the replicas of DECL are
4416 created. The only time where DECL_CONTEXT is important
4417 is for the FUNCTION_DECLs that have a gimple body (since
4418 the PARM_DECL will be used in the function's body). */
4419 for (t = DECL_ARGUMENTS (decl); t; t = TREE_CHAIN (t))
4420 DECL_CONTEXT (t) = decl;
4422 /* Collect all the symbols declared in DECL. */
4423 locals = pointer_set_create ();
4424 t = DECL_STRUCT_FUNCTION (decl)->local_decls;
4425 for (; t; t = TREE_CHAIN (t))
4427 pointer_set_insert (locals, TREE_VALUE (t));
4429 /* All the local symbols should have DECL as their
4430 context. */
4431 DECL_CONTEXT (TREE_VALUE (t)) = decl;
4434 /* Get rid of any decl not in local_decls. */
4435 free_lang_data_in_block (decl, DECL_INITIAL (decl), locals);
4437 pointer_set_destroy (locals);
4440 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
4441 At this point, it is not needed anymore. */
4442 DECL_SAVED_TREE (decl) = NULL_TREE;
4444 else if (TREE_CODE (decl) == VAR_DECL)
4446 tree expr = DECL_DEBUG_EXPR (decl);
4447 if (expr
4448 && TREE_CODE (expr) == VAR_DECL
4449 && !TREE_STATIC (expr) && !DECL_EXTERNAL (expr))
4450 SET_DECL_DEBUG_EXPR (decl, NULL_TREE);
4452 if (DECL_EXTERNAL (decl))
4453 DECL_INITIAL (decl) = NULL_TREE;
4455 else if (TREE_CODE (decl) == TYPE_DECL)
4457 DECL_INITIAL (decl) = NULL_TREE;
4459 /* DECL_CONTEXT is overloaded as DECL_FIELD_CONTEXT for
4460 FIELD_DECLs, which should be preserved. Otherwise,
4461 we shouldn't be concerned with source-level lexical
4462 nesting beyond this point. */
4463 DECL_CONTEXT (decl) = NULL_TREE;
4468 /* Data used when collecting DECLs and TYPEs for language data removal. */
4470 struct free_lang_data_d
4472 /* Set of traversed objects. Used to avoid duplicate visits. */
4473 struct pointer_set_t *pset;
4475 /* Array of symbols to process with free_lang_data_in_decl. */
4476 VEC(tree,heap) *decls;
4478 /* Array of types to process with free_lang_data_in_type. */
4479 VEC(tree,heap) *types;
4483 /* Save all language fields needed to generate proper debug information
4484 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
4486 static void
4487 save_debug_info_for_decl (tree t)
4489 /*struct saved_debug_info_d *sdi;*/
4491 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && DECL_P (t));
4493 /* FIXME. Partial implementation for saving debug info removed. */
4497 /* Save all language fields needed to generate proper debug information
4498 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
4500 static void
4501 save_debug_info_for_type (tree t)
4503 /*struct saved_debug_info_d *sdi;*/
4505 gcc_assert (debug_info_level > DINFO_LEVEL_TERSE && t && TYPE_P (t));
4507 /* FIXME. Partial implementation for saving debug info removed. */
4511 /* Add type or decl T to one of the list of tree nodes that need their
4512 language data removed. The lists are held inside FLD. */
4514 static void
4515 add_tree_to_fld_list (tree t, struct free_lang_data_d *fld)
4517 if (DECL_P (t))
4519 VEC_safe_push (tree, heap, fld->decls, t);
4520 if (debug_info_level > DINFO_LEVEL_TERSE)
4521 save_debug_info_for_decl (t);
4523 else if (TYPE_P (t))
4525 VEC_safe_push (tree, heap, fld->types, t);
4526 if (debug_info_level > DINFO_LEVEL_TERSE)
4527 save_debug_info_for_type (t);
4529 else
4530 gcc_unreachable ();
4534 /* Operand callback helper for free_lang_data_in_node. *TP is the
4535 subtree operand being considered. */
4537 static tree
4538 find_decls_types_r (tree *tp, int *ws ATTRIBUTE_UNUSED, void *data)
4540 tree t = *tp;
4541 struct free_lang_data_d *fld = (struct free_lang_data_d *) data;
4543 if (DECL_P (t))
4545 /* Note that walk_tree does not traverse every possible field in
4546 decls, so we have to do our own traversals here. */
4547 add_tree_to_fld_list (t, fld);
4549 walk_tree (&DECL_NAME (t), find_decls_types_r, fld, fld->pset);
4550 walk_tree (&DECL_CONTEXT (t), find_decls_types_r, fld, fld->pset);
4551 walk_tree (&DECL_SIZE (t), find_decls_types_r, fld, fld->pset);
4552 walk_tree (&DECL_SIZE_UNIT (t), find_decls_types_r, fld, fld->pset);
4553 walk_tree (&DECL_INITIAL (t), find_decls_types_r, fld, fld->pset);
4554 walk_tree (&DECL_ATTRIBUTES (t), find_decls_types_r, fld, fld->pset);
4555 walk_tree (&DECL_ABSTRACT_ORIGIN (t), find_decls_types_r, fld, fld->pset);
4557 if (TREE_CODE (t) == FUNCTION_DECL)
4559 walk_tree (&DECL_ARGUMENTS (t), find_decls_types_r, fld, fld->pset);
4560 walk_tree (&DECL_RESULT (t), find_decls_types_r, fld, fld->pset);
4562 else if (TREE_CODE (t) == TYPE_DECL)
4564 walk_tree (&DECL_ARGUMENT_FLD (t), find_decls_types_r, fld,
4565 fld->pset);
4566 walk_tree (&DECL_VINDEX (t), find_decls_types_r, fld, fld->pset);
4568 else if (TREE_CODE (t) == FIELD_DECL)
4570 walk_tree (&DECL_FIELD_OFFSET (t), find_decls_types_r, fld,
4571 fld->pset);
4572 walk_tree (&DECL_BIT_FIELD_TYPE (t), find_decls_types_r, fld,
4573 fld->pset);
4574 walk_tree (&DECL_QUALIFIER (t), find_decls_types_r, fld, fld->pset);
4575 walk_tree (&DECL_FIELD_BIT_OFFSET (t), find_decls_types_r, fld,
4576 fld->pset);
4577 walk_tree (&DECL_FCONTEXT (t), find_decls_types_r, fld, fld->pset);
4579 else if (TREE_CODE (t) == VAR_DECL)
4581 walk_tree (&DECL_SECTION_NAME (t), find_decls_types_r, fld,
4582 fld->pset);
4583 walk_tree (&DECL_COMDAT_GROUP (t), find_decls_types_r, fld,
4584 fld->pset);
4587 else if (TYPE_P (t))
4589 /* Note that walk_tree does not traverse every possible field in
4590 types, so we have to do our own traversals here. */
4591 add_tree_to_fld_list (t, fld);
4593 walk_tree (&TYPE_CACHED_VALUES (t), find_decls_types_r, fld, fld->pset);
4594 walk_tree (&TYPE_SIZE (t), find_decls_types_r, fld, fld->pset);
4595 walk_tree (&TYPE_SIZE_UNIT (t), find_decls_types_r, fld, fld->pset);
4596 walk_tree (&TYPE_ATTRIBUTES (t), find_decls_types_r, fld, fld->pset);
4597 walk_tree (&TYPE_POINTER_TO (t), find_decls_types_r, fld, fld->pset);
4598 walk_tree (&TYPE_REFERENCE_TO (t), find_decls_types_r, fld, fld->pset);
4599 walk_tree (&TYPE_NAME (t), find_decls_types_r, fld, fld->pset);
4600 walk_tree (&TYPE_MINVAL (t), find_decls_types_r, fld, fld->pset);
4601 walk_tree (&TYPE_MAXVAL (t), find_decls_types_r, fld, fld->pset);
4602 walk_tree (&TYPE_NEXT_VARIANT (t), find_decls_types_r, fld, fld->pset);
4603 walk_tree (&TYPE_MAIN_VARIANT (t), find_decls_types_r, fld, fld->pset);
4604 walk_tree (&TYPE_CONTEXT (t), find_decls_types_r, fld, fld->pset);
4605 walk_tree (&TYPE_CANONICAL (t), find_decls_types_r, fld, fld->pset);
4608 if (TREE_TYPE (t))
4609 walk_tree (&TREE_TYPE (t), find_decls_types_r, fld, fld->pset);
4611 /* Do not recurse into TREE_CHAIN to avoid blowing up the stack. */
4612 for (tp = &TREE_CHAIN (t); *tp; tp = &TREE_CHAIN (*tp))
4614 tree saved_chain = TREE_CHAIN (*tp);
4615 TREE_CHAIN (*tp) = NULL_TREE;
4616 walk_tree (tp, find_decls_types_r, fld, fld->pset);
4617 TREE_CHAIN (*tp) = saved_chain;
4620 return NULL_TREE;
4624 /* Translate all the types in LIST with the corresponding runtime
4625 types. */
4627 static tree
4628 get_eh_types_for_runtime (tree list)
4630 tree head, prev;
4632 if (list == NULL_TREE)
4633 return NULL_TREE;
4635 head = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
4636 prev = head;
4637 list = TREE_CHAIN (list);
4638 while (list)
4640 tree n = build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list)));
4641 TREE_CHAIN (prev) = n;
4642 prev = TREE_CHAIN (prev);
4643 list = TREE_CHAIN (list);
4646 return head;
4650 /* Find decls and types referenced in EH region R and store them in
4651 FLD->DECLS and FLD->TYPES. */
4653 static void
4654 find_decls_types_in_eh_region (eh_region r, struct free_lang_data_d *fld)
4656 if (r == NULL)
4657 return;
4659 /* The types referenced in R must first be changed to the EH types
4660 used at runtime. This removes references to FE types in the
4661 region. */
4662 if (r->type == ERT_CATCH)
4664 tree list = r->u.eh_catch.type_list;
4665 r->u.eh_catch.type_list = get_eh_types_for_runtime (list);
4666 walk_tree (&r->u.eh_catch.type_list, find_decls_types_r, fld, fld->pset);
4668 else if (r->type == ERT_ALLOWED_EXCEPTIONS)
4670 tree list = r->u.allowed.type_list;
4671 r->u.allowed.type_list = get_eh_types_for_runtime (list);
4672 walk_tree (&r->u.allowed.type_list, find_decls_types_r, fld, fld->pset);
4677 /* Find decls and types referenced in cgraph node N and store them in
4678 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
4679 look for *every* kind of DECL and TYPE node reachable from N,
4680 including those embedded inside types and decls (i.e,, TYPE_DECLs,
4681 NAMESPACE_DECLs, etc). */
4683 static void
4684 find_decls_types_in_node (struct cgraph_node *n, struct free_lang_data_d *fld)
4686 basic_block bb;
4687 struct function *fn;
4688 tree t;
4690 walk_tree (&n->decl, find_decls_types_r, fld, fld->pset);
4692 if (!gimple_has_body_p (n->decl))
4693 return;
4695 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
4697 fn = DECL_STRUCT_FUNCTION (n->decl);
4699 /* Traverse locals. */
4700 for (t = fn->local_decls; t; t = TREE_CHAIN (t))
4702 tree *tp = &TREE_VALUE (t);
4703 tree saved_chain = TREE_CHAIN (*tp);
4704 TREE_CHAIN (*tp) = NULL_TREE;
4705 walk_tree (tp, find_decls_types_r, fld, fld->pset);
4706 TREE_CHAIN (*tp) = saved_chain;
4709 /* Traverse EH regions in FN. */
4710 if (fn->eh->region_array)
4712 unsigned i;
4713 eh_region r;
4715 for (i = 0; VEC_iterate (eh_region, fn->eh->region_array, i, r); i++)
4716 find_decls_types_in_eh_region (r, fld);
4719 /* Traverse every statement in FN. */
4720 FOR_EACH_BB_FN (bb, fn)
4722 gimple_stmt_iterator si;
4723 unsigned i;
4725 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
4727 gimple phi = gsi_stmt (si);
4729 for (i = 0; i < gimple_phi_num_args (phi); i++)
4731 tree *arg_p = gimple_phi_arg_def_ptr (phi, i);
4732 walk_tree (arg_p, find_decls_types_r, fld, fld->pset);
4736 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
4738 gimple stmt = gsi_stmt (si);
4740 for (i = 0; i < gimple_num_ops (stmt); i++)
4742 tree *arg_p = gimple_op_ptr (stmt, i);
4743 walk_tree (arg_p, find_decls_types_r, fld, fld->pset);
4750 /* Find decls and types referenced in varpool node N and store them in
4751 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
4752 look for *every* kind of DECL and TYPE node reachable from N,
4753 including those embedded inside types and decls (i.e,, TYPE_DECLs,
4754 NAMESPACE_DECLs, etc). */
4756 static void
4757 find_decls_types_in_var (struct varpool_node *v, struct free_lang_data_d *fld)
4759 walk_tree (&v->decl, find_decls_types_r, fld, fld->pset);
4763 /* Free language specific information for every operand and expression
4764 in every node of the call graph. This process operates in three stages:
4766 1- Every callgraph node and varpool node is traversed looking for
4767 decls and types embedded in them. This is a more exhaustive
4768 search than that done by find_referenced_vars, because it will
4769 also collect individual fields, decls embedded in types, etc.
4771 2- All the decls found are sent to free_lang_data_in_decl.
4773 3- All the types found are sent to free_lang_data_in_type.
4775 The ordering between decls and types is important because
4776 free_lang_data_in_decl sets assembler names, which includes
4777 mangling. So types cannot be freed up until assembler names have
4778 been set up. */
4780 static void
4781 free_lang_data_in_cgraph (void)
4783 struct cgraph_node *n;
4784 struct varpool_node *v;
4785 struct free_lang_data_d fld;
4786 tree t;
4787 unsigned i;
4788 alias_pair *p;
4790 /* Initialize sets and arrays to store referenced decls and types. */
4791 fld.pset = pointer_set_create ();
4792 fld.decls = VEC_alloc (tree, heap, 100);
4793 fld.types = VEC_alloc (tree, heap, 100);
4795 /* Find decls and types in the body of every function in the callgraph. */
4796 for (n = cgraph_nodes; n; n = n->next)
4797 find_decls_types_in_node (n, &fld);
4799 for (i = 0; VEC_iterate (alias_pair, alias_pairs, i, p); i++)
4800 walk_tree (&p->decl, find_decls_types_r, &fld, fld.pset);
4802 /* Find decls and types in every varpool symbol. */
4803 for (v = varpool_nodes_queue; v; v = v->next_needed)
4804 find_decls_types_in_var (v, &fld);
4806 /* Set the assembler name on every decl found. We need to do this
4807 now because free_lang_data_in_decl will invalidate data needed
4808 for mangling. This breaks mangling on interdependent decls. */
4809 for (i = 0; VEC_iterate (tree, fld.decls, i, t); i++)
4810 if (need_assembler_name_p (t))
4812 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
4813 diagnostics that use input_location to show locus
4814 information. The problem here is that, at this point,
4815 input_location is generally anchored to the end of the file
4816 (since the parser is long gone), so we don't have a good
4817 position to pin it to.
4819 To alleviate this problem, this uses the location of T's
4820 declaration. Examples of this are
4821 testsuite/g++.dg/template/cond2.C and
4822 testsuite/g++.dg/template/pr35240.C. */
4823 location_t saved_location = input_location;
4824 input_location = DECL_SOURCE_LOCATION (t);
4826 decl_assembler_name (t);
4828 input_location = saved_location;
4831 /* Traverse every decl found freeing its language data. */
4832 for (i = 0; VEC_iterate (tree, fld.decls, i, t); i++)
4833 free_lang_data_in_decl (t);
4835 /* Traverse every type found freeing its language data. */
4836 for (i = 0; VEC_iterate (tree, fld.types, i, t); i++)
4837 free_lang_data_in_type (t);
4839 pointer_set_destroy (fld.pset);
4840 VEC_free (tree, heap, fld.decls);
4841 VEC_free (tree, heap, fld.types);
4845 /* Free resources that are used by FE but are not needed once they are done. */
4847 static unsigned
4848 free_lang_data (void)
4850 /* Traverse the IL resetting language specific information for
4851 operands, expressions, etc. */
4852 free_lang_data_in_cgraph ();
4854 /* Create gimple variants for common types. */
4855 ptrdiff_type_node = integer_type_node;
4856 fileptr_type_node = ptr_type_node;
4857 if (TREE_CODE (boolean_type_node) != BOOLEAN_TYPE
4858 || (TYPE_MODE (boolean_type_node)
4859 != mode_for_size (BOOL_TYPE_SIZE, MODE_INT, 0))
4860 || TYPE_PRECISION (boolean_type_node) != 1
4861 || !TYPE_UNSIGNED (boolean_type_node))
4863 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
4864 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
4865 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
4866 TYPE_PRECISION (boolean_type_node) = 1;
4867 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
4868 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
4871 /* Reset some langhooks. */
4872 lang_hooks.callgraph.analyze_expr = NULL;
4873 lang_hooks.types_compatible_p = NULL;
4874 lang_hooks.dwarf_name = lhd_dwarf_name;
4875 lang_hooks.decl_printable_name = gimple_decl_printable_name;
4876 lang_hooks.set_decl_assembler_name = lhd_set_decl_assembler_name;
4877 lang_hooks.fold_obj_type_ref = gimple_fold_obj_type_ref;
4879 /* Reset diagnostic machinery. */
4880 diagnostic_starter (global_dc) = default_diagnostic_starter;
4881 diagnostic_finalizer (global_dc) = default_diagnostic_finalizer;
4882 diagnostic_format_decoder (global_dc) = default_tree_printer;
4884 return 0;
4888 /* Gate function for free_lang_data. */
4890 static bool
4891 gate_free_lang_data (void)
4893 /* FIXME. Remove after save_debug_info is working. */
4894 return !flag_gtoggle && debug_info_level <= DINFO_LEVEL_TERSE;
4898 struct simple_ipa_opt_pass pass_ipa_free_lang_data =
4901 SIMPLE_IPA_PASS,
4902 NULL, /* name */
4903 gate_free_lang_data, /* gate */
4904 free_lang_data, /* execute */
4905 NULL, /* sub */
4906 NULL, /* next */
4907 0, /* static_pass_number */
4908 TV_IPA_FREE_LANG_DATA, /* tv_id */
4909 0, /* properties_required */
4910 0, /* properties_provided */
4911 0, /* properties_destroyed */
4912 0, /* todo_flags_start */
4913 0 /* todo_flags_finish */
4917 /* Return nonzero if IDENT is a valid name for attribute ATTR,
4918 or zero if not.
4920 We try both `text' and `__text__', ATTR may be either one. */
4921 /* ??? It might be a reasonable simplification to require ATTR to be only
4922 `text'. One might then also require attribute lists to be stored in
4923 their canonicalized form. */
4925 static int
4926 is_attribute_with_length_p (const char *attr, int attr_len, const_tree ident)
4928 int ident_len;
4929 const char *p;
4931 if (TREE_CODE (ident) != IDENTIFIER_NODE)
4932 return 0;
4934 p = IDENTIFIER_POINTER (ident);
4935 ident_len = IDENTIFIER_LENGTH (ident);
4937 if (ident_len == attr_len
4938 && strcmp (attr, p) == 0)
4939 return 1;
4941 /* If ATTR is `__text__', IDENT must be `text'; and vice versa. */
4942 if (attr[0] == '_')
4944 gcc_assert (attr[1] == '_');
4945 gcc_assert (attr[attr_len - 2] == '_');
4946 gcc_assert (attr[attr_len - 1] == '_');
4947 if (ident_len == attr_len - 4
4948 && strncmp (attr + 2, p, attr_len - 4) == 0)
4949 return 1;
4951 else
4953 if (ident_len == attr_len + 4
4954 && p[0] == '_' && p[1] == '_'
4955 && p[ident_len - 2] == '_' && p[ident_len - 1] == '_'
4956 && strncmp (attr, p + 2, attr_len) == 0)
4957 return 1;
4960 return 0;
4963 /* Return nonzero if IDENT is a valid name for attribute ATTR,
4964 or zero if not.
4966 We try both `text' and `__text__', ATTR may be either one. */
4969 is_attribute_p (const char *attr, const_tree ident)
4971 return is_attribute_with_length_p (attr, strlen (attr), ident);
4974 /* Given an attribute name and a list of attributes, return a pointer to the
4975 attribute's list element if the attribute is part of the list, or NULL_TREE
4976 if not found. If the attribute appears more than once, this only
4977 returns the first occurrence; the TREE_CHAIN of the return value should
4978 be passed back in if further occurrences are wanted. */
4980 tree
4981 lookup_attribute (const char *attr_name, tree list)
4983 tree l;
4984 size_t attr_len = strlen (attr_name);
4986 for (l = list; l; l = TREE_CHAIN (l))
4988 gcc_assert (TREE_CODE (TREE_PURPOSE (l)) == IDENTIFIER_NODE);
4989 if (is_attribute_with_length_p (attr_name, attr_len, TREE_PURPOSE (l)))
4990 return l;
4992 return NULL_TREE;
4995 /* Remove any instances of attribute ATTR_NAME in LIST and return the
4996 modified list. */
4998 tree
4999 remove_attribute (const char *attr_name, tree list)
5001 tree *p;
5002 size_t attr_len = strlen (attr_name);
5004 for (p = &list; *p; )
5006 tree l = *p;
5007 gcc_assert (TREE_CODE (TREE_PURPOSE (l)) == IDENTIFIER_NODE);
5008 if (is_attribute_with_length_p (attr_name, attr_len, TREE_PURPOSE (l)))
5009 *p = TREE_CHAIN (l);
5010 else
5011 p = &TREE_CHAIN (l);
5014 return list;
5017 /* Return an attribute list that is the union of a1 and a2. */
5019 tree
5020 merge_attributes (tree a1, tree a2)
5022 tree attributes;
5024 /* Either one unset? Take the set one. */
5026 if ((attributes = a1) == 0)
5027 attributes = a2;
5029 /* One that completely contains the other? Take it. */
5031 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
5033 if (attribute_list_contained (a2, a1))
5034 attributes = a2;
5035 else
5037 /* Pick the longest list, and hang on the other list. */
5039 if (list_length (a1) < list_length (a2))
5040 attributes = a2, a2 = a1;
5042 for (; a2 != 0; a2 = TREE_CHAIN (a2))
5044 tree a;
5045 for (a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
5046 attributes);
5047 a != NULL_TREE;
5048 a = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2)),
5049 TREE_CHAIN (a)))
5051 if (TREE_VALUE (a) != NULL
5052 && TREE_CODE (TREE_VALUE (a)) == TREE_LIST
5053 && TREE_VALUE (a2) != NULL
5054 && TREE_CODE (TREE_VALUE (a2)) == TREE_LIST)
5056 if (simple_cst_list_equal (TREE_VALUE (a),
5057 TREE_VALUE (a2)) == 1)
5058 break;
5060 else if (simple_cst_equal (TREE_VALUE (a),
5061 TREE_VALUE (a2)) == 1)
5062 break;
5064 if (a == NULL_TREE)
5066 a1 = copy_node (a2);
5067 TREE_CHAIN (a1) = attributes;
5068 attributes = a1;
5073 return attributes;
5076 /* Given types T1 and T2, merge their attributes and return
5077 the result. */
5079 tree
5080 merge_type_attributes (tree t1, tree t2)
5082 return merge_attributes (TYPE_ATTRIBUTES (t1),
5083 TYPE_ATTRIBUTES (t2));
5086 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
5087 the result. */
5089 tree
5090 merge_decl_attributes (tree olddecl, tree newdecl)
5092 return merge_attributes (DECL_ATTRIBUTES (olddecl),
5093 DECL_ATTRIBUTES (newdecl));
5096 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
5098 /* Specialization of merge_decl_attributes for various Windows targets.
5100 This handles the following situation:
5102 __declspec (dllimport) int foo;
5103 int foo;
5105 The second instance of `foo' nullifies the dllimport. */
5107 tree
5108 merge_dllimport_decl_attributes (tree old, tree new_tree)
5110 tree a;
5111 int delete_dllimport_p = 1;
5113 /* What we need to do here is remove from `old' dllimport if it doesn't
5114 appear in `new'. dllimport behaves like extern: if a declaration is
5115 marked dllimport and a definition appears later, then the object
5116 is not dllimport'd. We also remove a `new' dllimport if the old list
5117 contains dllexport: dllexport always overrides dllimport, regardless
5118 of the order of declaration. */
5119 if (!VAR_OR_FUNCTION_DECL_P (new_tree))
5120 delete_dllimport_p = 0;
5121 else if (DECL_DLLIMPORT_P (new_tree)
5122 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old)))
5124 DECL_DLLIMPORT_P (new_tree) = 0;
5125 warning (OPT_Wattributes, "%q+D already declared with dllexport attribute: "
5126 "dllimport ignored", new_tree);
5128 else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new_tree))
5130 /* Warn about overriding a symbol that has already been used, e.g.:
5131 extern int __attribute__ ((dllimport)) foo;
5132 int* bar () {return &foo;}
5133 int foo;
5135 if (TREE_USED (old))
5137 warning (0, "%q+D redeclared without dllimport attribute "
5138 "after being referenced with dll linkage", new_tree);
5139 /* If we have used a variable's address with dllimport linkage,
5140 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
5141 decl may already have had TREE_CONSTANT computed.
5142 We still remove the attribute so that assembler code refers
5143 to '&foo rather than '_imp__foo'. */
5144 if (TREE_CODE (old) == VAR_DECL && TREE_ADDRESSABLE (old))
5145 DECL_DLLIMPORT_P (new_tree) = 1;
5148 /* Let an inline definition silently override the external reference,
5149 but otherwise warn about attribute inconsistency. */
5150 else if (TREE_CODE (new_tree) == VAR_DECL
5151 || !DECL_DECLARED_INLINE_P (new_tree))
5152 warning (OPT_Wattributes, "%q+D redeclared without dllimport attribute: "
5153 "previous dllimport ignored", new_tree);
5155 else
5156 delete_dllimport_p = 0;
5158 a = merge_attributes (DECL_ATTRIBUTES (old), DECL_ATTRIBUTES (new_tree));
5160 if (delete_dllimport_p)
5162 tree prev, t;
5163 const size_t attr_len = strlen ("dllimport");
5165 /* Scan the list for dllimport and delete it. */
5166 for (prev = NULL_TREE, t = a; t; prev = t, t = TREE_CHAIN (t))
5168 if (is_attribute_with_length_p ("dllimport", attr_len,
5169 TREE_PURPOSE (t)))
5171 if (prev == NULL_TREE)
5172 a = TREE_CHAIN (a);
5173 else
5174 TREE_CHAIN (prev) = TREE_CHAIN (t);
5175 break;
5180 return a;
5183 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
5184 struct attribute_spec.handler. */
5186 tree
5187 handle_dll_attribute (tree * pnode, tree name, tree args, int flags,
5188 bool *no_add_attrs)
5190 tree node = *pnode;
5191 bool is_dllimport;
5193 /* These attributes may apply to structure and union types being created,
5194 but otherwise should pass to the declaration involved. */
5195 if (!DECL_P (node))
5197 if (flags & ((int) ATTR_FLAG_DECL_NEXT | (int) ATTR_FLAG_FUNCTION_NEXT
5198 | (int) ATTR_FLAG_ARRAY_NEXT))
5200 *no_add_attrs = true;
5201 return tree_cons (name, args, NULL_TREE);
5203 if (TREE_CODE (node) == RECORD_TYPE
5204 || TREE_CODE (node) == UNION_TYPE)
5206 node = TYPE_NAME (node);
5207 if (!node)
5208 return NULL_TREE;
5210 else
5212 warning (OPT_Wattributes, "%qE attribute ignored",
5213 name);
5214 *no_add_attrs = true;
5215 return NULL_TREE;
5219 if (TREE_CODE (node) != FUNCTION_DECL
5220 && TREE_CODE (node) != VAR_DECL
5221 && TREE_CODE (node) != TYPE_DECL)
5223 *no_add_attrs = true;
5224 warning (OPT_Wattributes, "%qE attribute ignored",
5225 name);
5226 return NULL_TREE;
5229 if (TREE_CODE (node) == TYPE_DECL
5230 && TREE_CODE (TREE_TYPE (node)) != RECORD_TYPE
5231 && TREE_CODE (TREE_TYPE (node)) != UNION_TYPE)
5233 *no_add_attrs = true;
5234 warning (OPT_Wattributes, "%qE attribute ignored",
5235 name);
5236 return NULL_TREE;
5239 is_dllimport = is_attribute_p ("dllimport", name);
5241 /* Report error on dllimport ambiguities seen now before they cause
5242 any damage. */
5243 if (is_dllimport)
5245 /* Honor any target-specific overrides. */
5246 if (!targetm.valid_dllimport_attribute_p (node))
5247 *no_add_attrs = true;
5249 else if (TREE_CODE (node) == FUNCTION_DECL
5250 && DECL_DECLARED_INLINE_P (node))
5252 warning (OPT_Wattributes, "inline function %q+D declared as "
5253 " dllimport: attribute ignored", node);
5254 *no_add_attrs = true;
5256 /* Like MS, treat definition of dllimported variables and
5257 non-inlined functions on declaration as syntax errors. */
5258 else if (TREE_CODE (node) == FUNCTION_DECL && DECL_INITIAL (node))
5260 error ("function %q+D definition is marked dllimport", node);
5261 *no_add_attrs = true;
5264 else if (TREE_CODE (node) == VAR_DECL)
5266 if (DECL_INITIAL (node))
5268 error ("variable %q+D definition is marked dllimport",
5269 node);
5270 *no_add_attrs = true;
5273 /* `extern' needn't be specified with dllimport.
5274 Specify `extern' now and hope for the best. Sigh. */
5275 DECL_EXTERNAL (node) = 1;
5276 /* Also, implicitly give dllimport'd variables declared within
5277 a function global scope, unless declared static. */
5278 if (current_function_decl != NULL_TREE && !TREE_STATIC (node))
5279 TREE_PUBLIC (node) = 1;
5282 if (*no_add_attrs == false)
5283 DECL_DLLIMPORT_P (node) = 1;
5285 else if (TREE_CODE (node) == FUNCTION_DECL
5286 && DECL_DECLARED_INLINE_P (node))
5287 /* An exported function, even if inline, must be emitted. */
5288 DECL_EXTERNAL (node) = 0;
5290 /* Report error if symbol is not accessible at global scope. */
5291 if (!TREE_PUBLIC (node)
5292 && (TREE_CODE (node) == VAR_DECL
5293 || TREE_CODE (node) == FUNCTION_DECL))
5295 error ("external linkage required for symbol %q+D because of "
5296 "%qE attribute", node, name);
5297 *no_add_attrs = true;
5300 /* A dllexport'd entity must have default visibility so that other
5301 program units (shared libraries or the main executable) can see
5302 it. A dllimport'd entity must have default visibility so that
5303 the linker knows that undefined references within this program
5304 unit can be resolved by the dynamic linker. */
5305 if (!*no_add_attrs)
5307 if (DECL_VISIBILITY_SPECIFIED (node)
5308 && DECL_VISIBILITY (node) != VISIBILITY_DEFAULT)
5309 error ("%qE implies default visibility, but %qD has already "
5310 "been declared with a different visibility",
5311 name, node);
5312 DECL_VISIBILITY (node) = VISIBILITY_DEFAULT;
5313 DECL_VISIBILITY_SPECIFIED (node) = 1;
5316 return NULL_TREE;
5319 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
5321 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5322 of the various TYPE_QUAL values. */
5324 static void
5325 set_type_quals (tree type, int type_quals)
5327 TYPE_READONLY (type) = (type_quals & TYPE_QUAL_CONST) != 0;
5328 TYPE_VOLATILE (type) = (type_quals & TYPE_QUAL_VOLATILE) != 0;
5329 TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0;
5332 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
5334 bool
5335 check_qualified_type (const_tree cand, const_tree base, int type_quals)
5337 return (TYPE_QUALS (cand) == type_quals
5338 && TYPE_NAME (cand) == TYPE_NAME (base)
5339 /* Apparently this is needed for Objective-C. */
5340 && TYPE_CONTEXT (cand) == TYPE_CONTEXT (base)
5341 && attribute_list_equal (TYPE_ATTRIBUTES (cand),
5342 TYPE_ATTRIBUTES (base)));
5345 /* Return a version of the TYPE, qualified as indicated by the
5346 TYPE_QUALS, if one exists. If no qualified version exists yet,
5347 return NULL_TREE. */
5349 tree
5350 get_qualified_type (tree type, int type_quals)
5352 tree t;
5354 if (TYPE_QUALS (type) == type_quals)
5355 return type;
5357 /* Search the chain of variants to see if there is already one there just
5358 like the one we need to have. If so, use that existing one. We must
5359 preserve the TYPE_NAME, since there is code that depends on this. */
5360 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
5361 if (check_qualified_type (t, type, type_quals))
5362 return t;
5364 return NULL_TREE;
5367 /* Like get_qualified_type, but creates the type if it does not
5368 exist. This function never returns NULL_TREE. */
5370 tree
5371 build_qualified_type (tree type, int type_quals)
5373 tree t;
5375 /* See if we already have the appropriate qualified variant. */
5376 t = get_qualified_type (type, type_quals);
5378 /* If not, build it. */
5379 if (!t)
5381 t = build_variant_type_copy (type);
5382 set_type_quals (t, type_quals);
5384 if (TYPE_STRUCTURAL_EQUALITY_P (type))
5385 /* Propagate structural equality. */
5386 SET_TYPE_STRUCTURAL_EQUALITY (t);
5387 else if (TYPE_CANONICAL (type) != type)
5388 /* Build the underlying canonical type, since it is different
5389 from TYPE. */
5390 TYPE_CANONICAL (t) = build_qualified_type (TYPE_CANONICAL (type),
5391 type_quals);
5392 else
5393 /* T is its own canonical type. */
5394 TYPE_CANONICAL (t) = t;
5398 return t;
5401 /* Create a new distinct copy of TYPE. The new type is made its own
5402 MAIN_VARIANT. If TYPE requires structural equality checks, the
5403 resulting type requires structural equality checks; otherwise, its
5404 TYPE_CANONICAL points to itself. */
5406 tree
5407 build_distinct_type_copy (tree type)
5409 tree t = copy_node (type);
5411 TYPE_POINTER_TO (t) = 0;
5412 TYPE_REFERENCE_TO (t) = 0;
5414 /* Set the canonical type either to a new equivalence class, or
5415 propagate the need for structural equality checks. */
5416 if (TYPE_STRUCTURAL_EQUALITY_P (type))
5417 SET_TYPE_STRUCTURAL_EQUALITY (t);
5418 else
5419 TYPE_CANONICAL (t) = t;
5421 /* Make it its own variant. */
5422 TYPE_MAIN_VARIANT (t) = t;
5423 TYPE_NEXT_VARIANT (t) = 0;
5425 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
5426 whose TREE_TYPE is not t. This can also happen in the Ada
5427 frontend when using subtypes. */
5429 return t;
5432 /* Create a new variant of TYPE, equivalent but distinct. This is so
5433 the caller can modify it. TYPE_CANONICAL for the return type will
5434 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
5435 are considered equal by the language itself (or that both types
5436 require structural equality checks). */
5438 tree
5439 build_variant_type_copy (tree type)
5441 tree t, m = TYPE_MAIN_VARIANT (type);
5443 t = build_distinct_type_copy (type);
5445 /* Since we're building a variant, assume that it is a non-semantic
5446 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
5447 TYPE_CANONICAL (t) = TYPE_CANONICAL (type);
5449 /* Add the new type to the chain of variants of TYPE. */
5450 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (m);
5451 TYPE_NEXT_VARIANT (m) = t;
5452 TYPE_MAIN_VARIANT (t) = m;
5454 return t;
5457 /* Return true if the from tree in both tree maps are equal. */
5460 tree_map_base_eq (const void *va, const void *vb)
5462 const struct tree_map_base *const a = (const struct tree_map_base *) va,
5463 *const b = (const struct tree_map_base *) vb;
5464 return (a->from == b->from);
5467 /* Hash a from tree in a tree_map. */
5469 unsigned int
5470 tree_map_base_hash (const void *item)
5472 return htab_hash_pointer (((const struct tree_map_base *)item)->from);
5475 /* Return true if this tree map structure is marked for garbage collection
5476 purposes. We simply return true if the from tree is marked, so that this
5477 structure goes away when the from tree goes away. */
5480 tree_map_base_marked_p (const void *p)
5482 return ggc_marked_p (((const struct tree_map_base *) p)->from);
5485 unsigned int
5486 tree_map_hash (const void *item)
5488 return (((const struct tree_map *) item)->hash);
5491 /* Return the initialization priority for DECL. */
5493 priority_type
5494 decl_init_priority_lookup (tree decl)
5496 struct tree_priority_map *h;
5497 struct tree_map_base in;
5499 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
5500 in.from = decl;
5501 h = (struct tree_priority_map *) htab_find (init_priority_for_decl, &in);
5502 return h ? h->init : DEFAULT_INIT_PRIORITY;
5505 /* Return the finalization priority for DECL. */
5507 priority_type
5508 decl_fini_priority_lookup (tree decl)
5510 struct tree_priority_map *h;
5511 struct tree_map_base in;
5513 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
5514 in.from = decl;
5515 h = (struct tree_priority_map *) htab_find (init_priority_for_decl, &in);
5516 return h ? h->fini : DEFAULT_INIT_PRIORITY;
5519 /* Return the initialization and finalization priority information for
5520 DECL. If there is no previous priority information, a freshly
5521 allocated structure is returned. */
5523 static struct tree_priority_map *
5524 decl_priority_info (tree decl)
5526 struct tree_priority_map in;
5527 struct tree_priority_map *h;
5528 void **loc;
5530 in.base.from = decl;
5531 loc = htab_find_slot (init_priority_for_decl, &in, INSERT);
5532 h = (struct tree_priority_map *) *loc;
5533 if (!h)
5535 h = GGC_CNEW (struct tree_priority_map);
5536 *loc = h;
5537 h->base.from = decl;
5538 h->init = DEFAULT_INIT_PRIORITY;
5539 h->fini = DEFAULT_INIT_PRIORITY;
5542 return h;
5545 /* Set the initialization priority for DECL to PRIORITY. */
5547 void
5548 decl_init_priority_insert (tree decl, priority_type priority)
5550 struct tree_priority_map *h;
5552 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
5553 h = decl_priority_info (decl);
5554 h->init = priority;
5557 /* Set the finalization priority for DECL to PRIORITY. */
5559 void
5560 decl_fini_priority_insert (tree decl, priority_type priority)
5562 struct tree_priority_map *h;
5564 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
5565 h = decl_priority_info (decl);
5566 h->fini = priority;
5569 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
5571 static void
5572 print_debug_expr_statistics (void)
5574 fprintf (stderr, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
5575 (long) htab_size (debug_expr_for_decl),
5576 (long) htab_elements (debug_expr_for_decl),
5577 htab_collisions (debug_expr_for_decl));
5580 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
5582 static void
5583 print_value_expr_statistics (void)
5585 fprintf (stderr, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
5586 (long) htab_size (value_expr_for_decl),
5587 (long) htab_elements (value_expr_for_decl),
5588 htab_collisions (value_expr_for_decl));
5591 /* Lookup a debug expression for FROM, and return it if we find one. */
5593 tree
5594 decl_debug_expr_lookup (tree from)
5596 struct tree_map *h, in;
5597 in.base.from = from;
5599 h = (struct tree_map *) htab_find_with_hash (debug_expr_for_decl, &in,
5600 htab_hash_pointer (from));
5601 if (h)
5602 return h->to;
5603 return NULL_TREE;
5606 /* Insert a mapping FROM->TO in the debug expression hashtable. */
5608 void
5609 decl_debug_expr_insert (tree from, tree to)
5611 struct tree_map *h;
5612 void **loc;
5614 h = GGC_NEW (struct tree_map);
5615 h->hash = htab_hash_pointer (from);
5616 h->base.from = from;
5617 h->to = to;
5618 loc = htab_find_slot_with_hash (debug_expr_for_decl, h, h->hash, INSERT);
5619 *(struct tree_map **) loc = h;
5622 /* Lookup a value expression for FROM, and return it if we find one. */
5624 tree
5625 decl_value_expr_lookup (tree from)
5627 struct tree_map *h, in;
5628 in.base.from = from;
5630 h = (struct tree_map *) htab_find_with_hash (value_expr_for_decl, &in,
5631 htab_hash_pointer (from));
5632 if (h)
5633 return h->to;
5634 return NULL_TREE;
5637 /* Insert a mapping FROM->TO in the value expression hashtable. */
5639 void
5640 decl_value_expr_insert (tree from, tree to)
5642 struct tree_map *h;
5643 void **loc;
5645 h = GGC_NEW (struct tree_map);
5646 h->hash = htab_hash_pointer (from);
5647 h->base.from = from;
5648 h->to = to;
5649 loc = htab_find_slot_with_hash (value_expr_for_decl, h, h->hash, INSERT);
5650 *(struct tree_map **) loc = h;
5653 /* Hashing of types so that we don't make duplicates.
5654 The entry point is `type_hash_canon'. */
5656 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
5657 with types in the TREE_VALUE slots), by adding the hash codes
5658 of the individual types. */
5660 static unsigned int
5661 type_hash_list (const_tree list, hashval_t hashcode)
5663 const_tree tail;
5665 for (tail = list; tail; tail = TREE_CHAIN (tail))
5666 if (TREE_VALUE (tail) != error_mark_node)
5667 hashcode = iterative_hash_object (TYPE_HASH (TREE_VALUE (tail)),
5668 hashcode);
5670 return hashcode;
5673 /* These are the Hashtable callback functions. */
5675 /* Returns true iff the types are equivalent. */
5677 static int
5678 type_hash_eq (const void *va, const void *vb)
5680 const struct type_hash *const a = (const struct type_hash *) va,
5681 *const b = (const struct type_hash *) vb;
5683 /* First test the things that are the same for all types. */
5684 if (a->hash != b->hash
5685 || TREE_CODE (a->type) != TREE_CODE (b->type)
5686 || TREE_TYPE (a->type) != TREE_TYPE (b->type)
5687 || !attribute_list_equal (TYPE_ATTRIBUTES (a->type),
5688 TYPE_ATTRIBUTES (b->type))
5689 || TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type)
5690 || TYPE_MODE (a->type) != TYPE_MODE (b->type)
5691 || (TREE_CODE (a->type) != COMPLEX_TYPE
5692 && TYPE_NAME (a->type) != TYPE_NAME (b->type)))
5693 return 0;
5695 switch (TREE_CODE (a->type))
5697 case VOID_TYPE:
5698 case COMPLEX_TYPE:
5699 case POINTER_TYPE:
5700 case REFERENCE_TYPE:
5701 return 1;
5703 case VECTOR_TYPE:
5704 return TYPE_VECTOR_SUBPARTS (a->type) == TYPE_VECTOR_SUBPARTS (b->type);
5706 case ENUMERAL_TYPE:
5707 if (TYPE_VALUES (a->type) != TYPE_VALUES (b->type)
5708 && !(TYPE_VALUES (a->type)
5709 && TREE_CODE (TYPE_VALUES (a->type)) == TREE_LIST
5710 && TYPE_VALUES (b->type)
5711 && TREE_CODE (TYPE_VALUES (b->type)) == TREE_LIST
5712 && type_list_equal (TYPE_VALUES (a->type),
5713 TYPE_VALUES (b->type))))
5714 return 0;
5716 /* ... fall through ... */
5718 case INTEGER_TYPE:
5719 case REAL_TYPE:
5720 case BOOLEAN_TYPE:
5721 return ((TYPE_MAX_VALUE (a->type) == TYPE_MAX_VALUE (b->type)
5722 || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
5723 TYPE_MAX_VALUE (b->type)))
5724 && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type)
5725 || tree_int_cst_equal (TYPE_MIN_VALUE (a->type),
5726 TYPE_MIN_VALUE (b->type))));
5728 case FIXED_POINT_TYPE:
5729 return TYPE_SATURATING (a->type) == TYPE_SATURATING (b->type);
5731 case OFFSET_TYPE:
5732 return TYPE_OFFSET_BASETYPE (a->type) == TYPE_OFFSET_BASETYPE (b->type);
5734 case METHOD_TYPE:
5735 return (TYPE_METHOD_BASETYPE (a->type) == TYPE_METHOD_BASETYPE (b->type)
5736 && (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
5737 || (TYPE_ARG_TYPES (a->type)
5738 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
5739 && TYPE_ARG_TYPES (b->type)
5740 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
5741 && type_list_equal (TYPE_ARG_TYPES (a->type),
5742 TYPE_ARG_TYPES (b->type)))));
5744 case ARRAY_TYPE:
5745 return TYPE_DOMAIN (a->type) == TYPE_DOMAIN (b->type);
5747 case RECORD_TYPE:
5748 case UNION_TYPE:
5749 case QUAL_UNION_TYPE:
5750 return (TYPE_FIELDS (a->type) == TYPE_FIELDS (b->type)
5751 || (TYPE_FIELDS (a->type)
5752 && TREE_CODE (TYPE_FIELDS (a->type)) == TREE_LIST
5753 && TYPE_FIELDS (b->type)
5754 && TREE_CODE (TYPE_FIELDS (b->type)) == TREE_LIST
5755 && type_list_equal (TYPE_FIELDS (a->type),
5756 TYPE_FIELDS (b->type))));
5758 case FUNCTION_TYPE:
5759 if (TYPE_ARG_TYPES (a->type) == TYPE_ARG_TYPES (b->type)
5760 || (TYPE_ARG_TYPES (a->type)
5761 && TREE_CODE (TYPE_ARG_TYPES (a->type)) == TREE_LIST
5762 && TYPE_ARG_TYPES (b->type)
5763 && TREE_CODE (TYPE_ARG_TYPES (b->type)) == TREE_LIST
5764 && type_list_equal (TYPE_ARG_TYPES (a->type),
5765 TYPE_ARG_TYPES (b->type))))
5766 break;
5767 return 0;
5769 default:
5770 return 0;
5773 if (lang_hooks.types.type_hash_eq != NULL)
5774 return lang_hooks.types.type_hash_eq (a->type, b->type);
5776 return 1;
5779 /* Return the cached hash value. */
5781 static hashval_t
5782 type_hash_hash (const void *item)
5784 return ((const struct type_hash *) item)->hash;
5787 /* Look in the type hash table for a type isomorphic to TYPE.
5788 If one is found, return it. Otherwise return 0. */
5790 tree
5791 type_hash_lookup (hashval_t hashcode, tree type)
5793 struct type_hash *h, in;
5795 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
5796 must call that routine before comparing TYPE_ALIGNs. */
5797 layout_type (type);
5799 in.hash = hashcode;
5800 in.type = type;
5802 h = (struct type_hash *) htab_find_with_hash (type_hash_table, &in,
5803 hashcode);
5804 if (h)
5805 return h->type;
5806 return NULL_TREE;
5809 /* Add an entry to the type-hash-table
5810 for a type TYPE whose hash code is HASHCODE. */
5812 void
5813 type_hash_add (hashval_t hashcode, tree type)
5815 struct type_hash *h;
5816 void **loc;
5818 h = GGC_NEW (struct type_hash);
5819 h->hash = hashcode;
5820 h->type = type;
5821 loc = htab_find_slot_with_hash (type_hash_table, h, hashcode, INSERT);
5822 *loc = (void *)h;
5825 /* Given TYPE, and HASHCODE its hash code, return the canonical
5826 object for an identical type if one already exists.
5827 Otherwise, return TYPE, and record it as the canonical object.
5829 To use this function, first create a type of the sort you want.
5830 Then compute its hash code from the fields of the type that
5831 make it different from other similar types.
5832 Then call this function and use the value. */
5834 tree
5835 type_hash_canon (unsigned int hashcode, tree type)
5837 tree t1;
5839 /* The hash table only contains main variants, so ensure that's what we're
5840 being passed. */
5841 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
5843 if (!lang_hooks.types.hash_types)
5844 return type;
5846 /* See if the type is in the hash table already. If so, return it.
5847 Otherwise, add the type. */
5848 t1 = type_hash_lookup (hashcode, type);
5849 if (t1 != 0)
5851 #ifdef GATHER_STATISTICS
5852 tree_node_counts[(int) t_kind]--;
5853 tree_node_sizes[(int) t_kind] -= sizeof (struct tree_type);
5854 #endif
5855 return t1;
5857 else
5859 type_hash_add (hashcode, type);
5860 return type;
5864 /* See if the data pointed to by the type hash table is marked. We consider
5865 it marked if the type is marked or if a debug type number or symbol
5866 table entry has been made for the type. This reduces the amount of
5867 debugging output and eliminates that dependency of the debug output on
5868 the number of garbage collections. */
5870 static int
5871 type_hash_marked_p (const void *p)
5873 const_tree const type = ((const struct type_hash *) p)->type;
5875 return ggc_marked_p (type) || TYPE_SYMTAB_POINTER (type);
5878 static void
5879 print_type_hash_statistics (void)
5881 fprintf (stderr, "Type hash: size %ld, %ld elements, %f collisions\n",
5882 (long) htab_size (type_hash_table),
5883 (long) htab_elements (type_hash_table),
5884 htab_collisions (type_hash_table));
5887 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
5888 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
5889 by adding the hash codes of the individual attributes. */
5891 static unsigned int
5892 attribute_hash_list (const_tree list, hashval_t hashcode)
5894 const_tree tail;
5896 for (tail = list; tail; tail = TREE_CHAIN (tail))
5897 /* ??? Do we want to add in TREE_VALUE too? */
5898 hashcode = iterative_hash_object
5899 (IDENTIFIER_HASH_VALUE (TREE_PURPOSE (tail)), hashcode);
5900 return hashcode;
5903 /* Given two lists of attributes, return true if list l2 is
5904 equivalent to l1. */
5907 attribute_list_equal (const_tree l1, const_tree l2)
5909 return attribute_list_contained (l1, l2)
5910 && attribute_list_contained (l2, l1);
5913 /* Given two lists of attributes, return true if list L2 is
5914 completely contained within L1. */
5915 /* ??? This would be faster if attribute names were stored in a canonicalized
5916 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
5917 must be used to show these elements are equivalent (which they are). */
5918 /* ??? It's not clear that attributes with arguments will always be handled
5919 correctly. */
5922 attribute_list_contained (const_tree l1, const_tree l2)
5924 const_tree t1, t2;
5926 /* First check the obvious, maybe the lists are identical. */
5927 if (l1 == l2)
5928 return 1;
5930 /* Maybe the lists are similar. */
5931 for (t1 = l1, t2 = l2;
5932 t1 != 0 && t2 != 0
5933 && TREE_PURPOSE (t1) == TREE_PURPOSE (t2)
5934 && TREE_VALUE (t1) == TREE_VALUE (t2);
5935 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2));
5937 /* Maybe the lists are equal. */
5938 if (t1 == 0 && t2 == 0)
5939 return 1;
5941 for (; t2 != 0; t2 = TREE_CHAIN (t2))
5943 const_tree attr;
5944 /* This CONST_CAST is okay because lookup_attribute does not
5945 modify its argument and the return value is assigned to a
5946 const_tree. */
5947 for (attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
5948 CONST_CAST_TREE(l1));
5949 attr != NULL_TREE;
5950 attr = lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2)),
5951 TREE_CHAIN (attr)))
5953 if (TREE_VALUE (t2) != NULL
5954 && TREE_CODE (TREE_VALUE (t2)) == TREE_LIST
5955 && TREE_VALUE (attr) != NULL
5956 && TREE_CODE (TREE_VALUE (attr)) == TREE_LIST)
5958 if (simple_cst_list_equal (TREE_VALUE (t2),
5959 TREE_VALUE (attr)) == 1)
5960 break;
5962 else if (simple_cst_equal (TREE_VALUE (t2), TREE_VALUE (attr)) == 1)
5963 break;
5966 if (attr == 0)
5967 return 0;
5970 return 1;
5973 /* Given two lists of types
5974 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
5975 return 1 if the lists contain the same types in the same order.
5976 Also, the TREE_PURPOSEs must match. */
5979 type_list_equal (const_tree l1, const_tree l2)
5981 const_tree t1, t2;
5983 for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
5984 if (TREE_VALUE (t1) != TREE_VALUE (t2)
5985 || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
5986 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
5987 && (TREE_TYPE (TREE_PURPOSE (t1))
5988 == TREE_TYPE (TREE_PURPOSE (t2))))))
5989 return 0;
5991 return t1 == t2;
5994 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
5995 given by TYPE. If the argument list accepts variable arguments,
5996 then this function counts only the ordinary arguments. */
5999 type_num_arguments (const_tree type)
6001 int i = 0;
6002 tree t;
6004 for (t = TYPE_ARG_TYPES (type); t; t = TREE_CHAIN (t))
6005 /* If the function does not take a variable number of arguments,
6006 the last element in the list will have type `void'. */
6007 if (VOID_TYPE_P (TREE_VALUE (t)))
6008 break;
6009 else
6010 ++i;
6012 return i;
6015 /* Nonzero if integer constants T1 and T2
6016 represent the same constant value. */
6019 tree_int_cst_equal (const_tree t1, const_tree t2)
6021 if (t1 == t2)
6022 return 1;
6024 if (t1 == 0 || t2 == 0)
6025 return 0;
6027 if (TREE_CODE (t1) == INTEGER_CST
6028 && TREE_CODE (t2) == INTEGER_CST
6029 && TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
6030 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2))
6031 return 1;
6033 return 0;
6036 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
6037 The precise way of comparison depends on their data type. */
6040 tree_int_cst_lt (const_tree t1, const_tree t2)
6042 if (t1 == t2)
6043 return 0;
6045 if (TYPE_UNSIGNED (TREE_TYPE (t1)) != TYPE_UNSIGNED (TREE_TYPE (t2)))
6047 int t1_sgn = tree_int_cst_sgn (t1);
6048 int t2_sgn = tree_int_cst_sgn (t2);
6050 if (t1_sgn < t2_sgn)
6051 return 1;
6052 else if (t1_sgn > t2_sgn)
6053 return 0;
6054 /* Otherwise, both are non-negative, so we compare them as
6055 unsigned just in case one of them would overflow a signed
6056 type. */
6058 else if (!TYPE_UNSIGNED (TREE_TYPE (t1)))
6059 return INT_CST_LT (t1, t2);
6061 return INT_CST_LT_UNSIGNED (t1, t2);
6064 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
6067 tree_int_cst_compare (const_tree t1, const_tree t2)
6069 if (tree_int_cst_lt (t1, t2))
6070 return -1;
6071 else if (tree_int_cst_lt (t2, t1))
6072 return 1;
6073 else
6074 return 0;
6077 /* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
6078 the host. If POS is zero, the value can be represented in a single
6079 HOST_WIDE_INT. If POS is nonzero, the value must be non-negative and can
6080 be represented in a single unsigned HOST_WIDE_INT. */
6083 host_integerp (const_tree t, int pos)
6085 if (t == NULL_TREE)
6086 return 0;
6088 return (TREE_CODE (t) == INTEGER_CST
6089 && ((TREE_INT_CST_HIGH (t) == 0
6090 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) >= 0)
6091 || (! pos && TREE_INT_CST_HIGH (t) == -1
6092 && (HOST_WIDE_INT) TREE_INT_CST_LOW (t) < 0
6093 && (!TYPE_UNSIGNED (TREE_TYPE (t))
6094 || (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
6095 && TYPE_IS_SIZETYPE (TREE_TYPE (t)))))
6096 || (pos && TREE_INT_CST_HIGH (t) == 0)));
6099 /* Return the HOST_WIDE_INT least significant bits of T if it is an
6100 INTEGER_CST and there is no overflow. POS is nonzero if the result must
6101 be non-negative. We must be able to satisfy the above conditions. */
6103 HOST_WIDE_INT
6104 tree_low_cst (const_tree t, int pos)
6106 gcc_assert (host_integerp (t, pos));
6107 return TREE_INT_CST_LOW (t);
6110 /* Return the most significant bit of the integer constant T. */
6113 tree_int_cst_msb (const_tree t)
6115 int prec;
6116 HOST_WIDE_INT h;
6117 unsigned HOST_WIDE_INT l;
6119 /* Note that using TYPE_PRECISION here is wrong. We care about the
6120 actual bits, not the (arbitrary) range of the type. */
6121 prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t))) - 1;
6122 rshift_double (TREE_INT_CST_LOW (t), TREE_INT_CST_HIGH (t), prec,
6123 2 * HOST_BITS_PER_WIDE_INT, &l, &h, 0);
6124 return (l & 1) == 1;
6127 /* Return an indication of the sign of the integer constant T.
6128 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6129 Note that -1 will never be returned if T's type is unsigned. */
6132 tree_int_cst_sgn (const_tree t)
6134 if (TREE_INT_CST_LOW (t) == 0 && TREE_INT_CST_HIGH (t) == 0)
6135 return 0;
6136 else if (TYPE_UNSIGNED (TREE_TYPE (t)))
6137 return 1;
6138 else if (TREE_INT_CST_HIGH (t) < 0)
6139 return -1;
6140 else
6141 return 1;
6144 /* Return the minimum number of bits needed to represent VALUE in a
6145 signed or unsigned type, UNSIGNEDP says which. */
6147 unsigned int
6148 tree_int_cst_min_precision (tree value, bool unsignedp)
6150 int log;
6152 /* If the value is negative, compute its negative minus 1. The latter
6153 adjustment is because the absolute value of the largest negative value
6154 is one larger than the largest positive value. This is equivalent to
6155 a bit-wise negation, so use that operation instead. */
6157 if (tree_int_cst_sgn (value) < 0)
6158 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
6160 /* Return the number of bits needed, taking into account the fact
6161 that we need one more bit for a signed than unsigned type. */
6163 if (integer_zerop (value))
6164 log = 0;
6165 else
6166 log = tree_floor_log2 (value);
6168 return log + 1 + !unsignedp;
6171 /* Compare two constructor-element-type constants. Return 1 if the lists
6172 are known to be equal; otherwise return 0. */
6175 simple_cst_list_equal (const_tree l1, const_tree l2)
6177 while (l1 != NULL_TREE && l2 != NULL_TREE)
6179 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
6180 return 0;
6182 l1 = TREE_CHAIN (l1);
6183 l2 = TREE_CHAIN (l2);
6186 return l1 == l2;
6189 /* Return truthvalue of whether T1 is the same tree structure as T2.
6190 Return 1 if they are the same.
6191 Return 0 if they are understandably different.
6192 Return -1 if either contains tree structure not understood by
6193 this function. */
6196 simple_cst_equal (const_tree t1, const_tree t2)
6198 enum tree_code code1, code2;
6199 int cmp;
6200 int i;
6202 if (t1 == t2)
6203 return 1;
6204 if (t1 == 0 || t2 == 0)
6205 return 0;
6207 code1 = TREE_CODE (t1);
6208 code2 = TREE_CODE (t2);
6210 if (CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR)
6212 if (CONVERT_EXPR_CODE_P (code2)
6213 || code2 == NON_LVALUE_EXPR)
6214 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6215 else
6216 return simple_cst_equal (TREE_OPERAND (t1, 0), t2);
6219 else if (CONVERT_EXPR_CODE_P (code2)
6220 || code2 == NON_LVALUE_EXPR)
6221 return simple_cst_equal (t1, TREE_OPERAND (t2, 0));
6223 if (code1 != code2)
6224 return 0;
6226 switch (code1)
6228 case INTEGER_CST:
6229 return (TREE_INT_CST_LOW (t1) == TREE_INT_CST_LOW (t2)
6230 && TREE_INT_CST_HIGH (t1) == TREE_INT_CST_HIGH (t2));
6232 case REAL_CST:
6233 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
6235 case FIXED_CST:
6236 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1), TREE_FIXED_CST (t2));
6238 case STRING_CST:
6239 return (TREE_STRING_LENGTH (t1) == TREE_STRING_LENGTH (t2)
6240 && ! memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
6241 TREE_STRING_LENGTH (t1)));
6243 case CONSTRUCTOR:
6245 unsigned HOST_WIDE_INT idx;
6246 VEC(constructor_elt, gc) *v1 = CONSTRUCTOR_ELTS (t1);
6247 VEC(constructor_elt, gc) *v2 = CONSTRUCTOR_ELTS (t2);
6249 if (VEC_length (constructor_elt, v1) != VEC_length (constructor_elt, v2))
6250 return false;
6252 for (idx = 0; idx < VEC_length (constructor_elt, v1); ++idx)
6253 /* ??? Should we handle also fields here? */
6254 if (!simple_cst_equal (VEC_index (constructor_elt, v1, idx)->value,
6255 VEC_index (constructor_elt, v2, idx)->value))
6256 return false;
6257 return true;
6260 case SAVE_EXPR:
6261 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6263 case CALL_EXPR:
6264 cmp = simple_cst_equal (CALL_EXPR_FN (t1), CALL_EXPR_FN (t2));
6265 if (cmp <= 0)
6266 return cmp;
6267 if (call_expr_nargs (t1) != call_expr_nargs (t2))
6268 return 0;
6270 const_tree arg1, arg2;
6271 const_call_expr_arg_iterator iter1, iter2;
6272 for (arg1 = first_const_call_expr_arg (t1, &iter1),
6273 arg2 = first_const_call_expr_arg (t2, &iter2);
6274 arg1 && arg2;
6275 arg1 = next_const_call_expr_arg (&iter1),
6276 arg2 = next_const_call_expr_arg (&iter2))
6278 cmp = simple_cst_equal (arg1, arg2);
6279 if (cmp <= 0)
6280 return cmp;
6282 return arg1 == arg2;
6285 case TARGET_EXPR:
6286 /* Special case: if either target is an unallocated VAR_DECL,
6287 it means that it's going to be unified with whatever the
6288 TARGET_EXPR is really supposed to initialize, so treat it
6289 as being equivalent to anything. */
6290 if ((TREE_CODE (TREE_OPERAND (t1, 0)) == VAR_DECL
6291 && DECL_NAME (TREE_OPERAND (t1, 0)) == NULL_TREE
6292 && !DECL_RTL_SET_P (TREE_OPERAND (t1, 0)))
6293 || (TREE_CODE (TREE_OPERAND (t2, 0)) == VAR_DECL
6294 && DECL_NAME (TREE_OPERAND (t2, 0)) == NULL_TREE
6295 && !DECL_RTL_SET_P (TREE_OPERAND (t2, 0))))
6296 cmp = 1;
6297 else
6298 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6300 if (cmp <= 0)
6301 return cmp;
6303 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t2, 1));
6305 case WITH_CLEANUP_EXPR:
6306 cmp = simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6307 if (cmp <= 0)
6308 return cmp;
6310 return simple_cst_equal (TREE_OPERAND (t1, 1), TREE_OPERAND (t1, 1));
6312 case COMPONENT_REF:
6313 if (TREE_OPERAND (t1, 1) == TREE_OPERAND (t2, 1))
6314 return simple_cst_equal (TREE_OPERAND (t1, 0), TREE_OPERAND (t2, 0));
6316 return 0;
6318 case VAR_DECL:
6319 case PARM_DECL:
6320 case CONST_DECL:
6321 case FUNCTION_DECL:
6322 return 0;
6324 default:
6325 break;
6328 /* This general rule works for most tree codes. All exceptions should be
6329 handled above. If this is a language-specific tree code, we can't
6330 trust what might be in the operand, so say we don't know
6331 the situation. */
6332 if ((int) code1 >= (int) LAST_AND_UNUSED_TREE_CODE)
6333 return -1;
6335 switch (TREE_CODE_CLASS (code1))
6337 case tcc_unary:
6338 case tcc_binary:
6339 case tcc_comparison:
6340 case tcc_expression:
6341 case tcc_reference:
6342 case tcc_statement:
6343 cmp = 1;
6344 for (i = 0; i < TREE_CODE_LENGTH (code1); i++)
6346 cmp = simple_cst_equal (TREE_OPERAND (t1, i), TREE_OPERAND (t2, i));
6347 if (cmp <= 0)
6348 return cmp;
6351 return cmp;
6353 default:
6354 return -1;
6358 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
6359 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
6360 than U, respectively. */
6363 compare_tree_int (const_tree t, unsigned HOST_WIDE_INT u)
6365 if (tree_int_cst_sgn (t) < 0)
6366 return -1;
6367 else if (TREE_INT_CST_HIGH (t) != 0)
6368 return 1;
6369 else if (TREE_INT_CST_LOW (t) == u)
6370 return 0;
6371 else if (TREE_INT_CST_LOW (t) < u)
6372 return -1;
6373 else
6374 return 1;
6377 /* Return true if CODE represents an associative tree code. Otherwise
6378 return false. */
6379 bool
6380 associative_tree_code (enum tree_code code)
6382 switch (code)
6384 case BIT_IOR_EXPR:
6385 case BIT_AND_EXPR:
6386 case BIT_XOR_EXPR:
6387 case PLUS_EXPR:
6388 case MULT_EXPR:
6389 case MIN_EXPR:
6390 case MAX_EXPR:
6391 return true;
6393 default:
6394 break;
6396 return false;
6399 /* Return true if CODE represents a commutative tree code. Otherwise
6400 return false. */
6401 bool
6402 commutative_tree_code (enum tree_code code)
6404 switch (code)
6406 case PLUS_EXPR:
6407 case MULT_EXPR:
6408 case MIN_EXPR:
6409 case MAX_EXPR:
6410 case BIT_IOR_EXPR:
6411 case BIT_XOR_EXPR:
6412 case BIT_AND_EXPR:
6413 case NE_EXPR:
6414 case EQ_EXPR:
6415 case UNORDERED_EXPR:
6416 case ORDERED_EXPR:
6417 case UNEQ_EXPR:
6418 case LTGT_EXPR:
6419 case TRUTH_AND_EXPR:
6420 case TRUTH_XOR_EXPR:
6421 case TRUTH_OR_EXPR:
6422 return true;
6424 default:
6425 break;
6427 return false;
6430 /* Generate a hash value for an expression. This can be used iteratively
6431 by passing a previous result as the VAL argument.
6433 This function is intended to produce the same hash for expressions which
6434 would compare equal using operand_equal_p. */
6436 hashval_t
6437 iterative_hash_expr (const_tree t, hashval_t val)
6439 int i;
6440 enum tree_code code;
6441 char tclass;
6443 if (t == NULL_TREE)
6444 return iterative_hash_hashval_t (0, val);
6446 code = TREE_CODE (t);
6448 switch (code)
6450 /* Alas, constants aren't shared, so we can't rely on pointer
6451 identity. */
6452 case INTEGER_CST:
6453 val = iterative_hash_host_wide_int (TREE_INT_CST_LOW (t), val);
6454 return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t), val);
6455 case REAL_CST:
6457 unsigned int val2 = real_hash (TREE_REAL_CST_PTR (t));
6459 return iterative_hash_hashval_t (val2, val);
6461 case FIXED_CST:
6463 unsigned int val2 = fixed_hash (TREE_FIXED_CST_PTR (t));
6465 return iterative_hash_hashval_t (val2, val);
6467 case STRING_CST:
6468 return iterative_hash (TREE_STRING_POINTER (t),
6469 TREE_STRING_LENGTH (t), val);
6470 case COMPLEX_CST:
6471 val = iterative_hash_expr (TREE_REALPART (t), val);
6472 return iterative_hash_expr (TREE_IMAGPART (t), val);
6473 case VECTOR_CST:
6474 return iterative_hash_expr (TREE_VECTOR_CST_ELTS (t), val);
6476 case SSA_NAME:
6477 /* we can just compare by pointer. */
6478 return iterative_hash_host_wide_int (SSA_NAME_VERSION (t), val);
6480 case TREE_LIST:
6481 /* A list of expressions, for a CALL_EXPR or as the elements of a
6482 VECTOR_CST. */
6483 for (; t; t = TREE_CHAIN (t))
6484 val = iterative_hash_expr (TREE_VALUE (t), val);
6485 return val;
6486 case CONSTRUCTOR:
6488 unsigned HOST_WIDE_INT idx;
6489 tree field, value;
6490 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), idx, field, value)
6492 val = iterative_hash_expr (field, val);
6493 val = iterative_hash_expr (value, val);
6495 return val;
6497 case FUNCTION_DECL:
6498 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
6499 Otherwise nodes that compare equal according to operand_equal_p might
6500 get different hash codes. However, don't do this for machine specific
6501 or front end builtins, since the function code is overloaded in those
6502 cases. */
6503 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL
6504 && built_in_decls[DECL_FUNCTION_CODE (t)])
6506 t = built_in_decls[DECL_FUNCTION_CODE (t)];
6507 code = TREE_CODE (t);
6509 /* FALL THROUGH */
6510 default:
6511 tclass = TREE_CODE_CLASS (code);
6513 if (tclass == tcc_declaration)
6515 /* DECL's have a unique ID */
6516 val = iterative_hash_host_wide_int (DECL_UID (t), val);
6518 else
6520 gcc_assert (IS_EXPR_CODE_CLASS (tclass));
6522 val = iterative_hash_object (code, val);
6524 /* Don't hash the type, that can lead to having nodes which
6525 compare equal according to operand_equal_p, but which
6526 have different hash codes. */
6527 if (CONVERT_EXPR_CODE_P (code)
6528 || code == NON_LVALUE_EXPR)
6530 /* Make sure to include signness in the hash computation. */
6531 val += TYPE_UNSIGNED (TREE_TYPE (t));
6532 val = iterative_hash_expr (TREE_OPERAND (t, 0), val);
6535 else if (commutative_tree_code (code))
6537 /* It's a commutative expression. We want to hash it the same
6538 however it appears. We do this by first hashing both operands
6539 and then rehashing based on the order of their independent
6540 hashes. */
6541 hashval_t one = iterative_hash_expr (TREE_OPERAND (t, 0), 0);
6542 hashval_t two = iterative_hash_expr (TREE_OPERAND (t, 1), 0);
6543 hashval_t t;
6545 if (one > two)
6546 t = one, one = two, two = t;
6548 val = iterative_hash_hashval_t (one, val);
6549 val = iterative_hash_hashval_t (two, val);
6551 else
6552 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
6553 val = iterative_hash_expr (TREE_OPERAND (t, i), val);
6555 return val;
6556 break;
6560 /* Generate a hash value for a pair of expressions. This can be used
6561 iteratively by passing a previous result as the VAL argument.
6563 The same hash value is always returned for a given pair of expressions,
6564 regardless of the order in which they are presented. This is useful in
6565 hashing the operands of commutative functions. */
6567 hashval_t
6568 iterative_hash_exprs_commutative (const_tree t1,
6569 const_tree t2, hashval_t val)
6571 hashval_t one = iterative_hash_expr (t1, 0);
6572 hashval_t two = iterative_hash_expr (t2, 0);
6573 hashval_t t;
6575 if (one > two)
6576 t = one, one = two, two = t;
6577 val = iterative_hash_hashval_t (one, val);
6578 val = iterative_hash_hashval_t (two, val);
6580 return val;
6583 /* Constructors for pointer, array and function types.
6584 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
6585 constructed by language-dependent code, not here.) */
6587 /* Construct, lay out and return the type of pointers to TO_TYPE with
6588 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
6589 reference all of memory. If such a type has already been
6590 constructed, reuse it. */
6592 tree
6593 build_pointer_type_for_mode (tree to_type, enum machine_mode mode,
6594 bool can_alias_all)
6596 tree t;
6598 if (to_type == error_mark_node)
6599 return error_mark_node;
6601 /* If the pointed-to type has the may_alias attribute set, force
6602 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
6603 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
6604 can_alias_all = true;
6606 /* In some cases, languages will have things that aren't a POINTER_TYPE
6607 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
6608 In that case, return that type without regard to the rest of our
6609 operands.
6611 ??? This is a kludge, but consistent with the way this function has
6612 always operated and there doesn't seem to be a good way to avoid this
6613 at the moment. */
6614 if (TYPE_POINTER_TO (to_type) != 0
6615 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
6616 return TYPE_POINTER_TO (to_type);
6618 /* First, if we already have a type for pointers to TO_TYPE and it's
6619 the proper mode, use it. */
6620 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
6621 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
6622 return t;
6624 t = make_node (POINTER_TYPE);
6626 TREE_TYPE (t) = to_type;
6627 SET_TYPE_MODE (t, mode);
6628 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
6629 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
6630 TYPE_POINTER_TO (to_type) = t;
6632 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
6633 SET_TYPE_STRUCTURAL_EQUALITY (t);
6634 else if (TYPE_CANONICAL (to_type) != to_type)
6635 TYPE_CANONICAL (t)
6636 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type),
6637 mode, can_alias_all);
6639 /* Lay out the type. This function has many callers that are concerned
6640 with expression-construction, and this simplifies them all. */
6641 layout_type (t);
6643 return t;
6646 /* By default build pointers in ptr_mode. */
6648 tree
6649 build_pointer_type (tree to_type)
6651 return build_pointer_type_for_mode (to_type, ptr_mode, false);
6654 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
6656 tree
6657 build_reference_type_for_mode (tree to_type, enum machine_mode mode,
6658 bool can_alias_all)
6660 tree t;
6662 if (to_type == error_mark_node)
6663 return error_mark_node;
6665 /* If the pointed-to type has the may_alias attribute set, force
6666 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
6667 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
6668 can_alias_all = true;
6670 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
6671 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
6672 In that case, return that type without regard to the rest of our
6673 operands.
6675 ??? This is a kludge, but consistent with the way this function has
6676 always operated and there doesn't seem to be a good way to avoid this
6677 at the moment. */
6678 if (TYPE_REFERENCE_TO (to_type) != 0
6679 && TREE_CODE (TYPE_REFERENCE_TO (to_type)) != REFERENCE_TYPE)
6680 return TYPE_REFERENCE_TO (to_type);
6682 /* First, if we already have a type for pointers to TO_TYPE and it's
6683 the proper mode, use it. */
6684 for (t = TYPE_REFERENCE_TO (to_type); t; t = TYPE_NEXT_REF_TO (t))
6685 if (TYPE_MODE (t) == mode && TYPE_REF_CAN_ALIAS_ALL (t) == can_alias_all)
6686 return t;
6688 t = make_node (REFERENCE_TYPE);
6690 TREE_TYPE (t) = to_type;
6691 SET_TYPE_MODE (t, mode);
6692 TYPE_REF_CAN_ALIAS_ALL (t) = can_alias_all;
6693 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (to_type);
6694 TYPE_REFERENCE_TO (to_type) = t;
6696 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
6697 SET_TYPE_STRUCTURAL_EQUALITY (t);
6698 else if (TYPE_CANONICAL (to_type) != to_type)
6699 TYPE_CANONICAL (t)
6700 = build_reference_type_for_mode (TYPE_CANONICAL (to_type),
6701 mode, can_alias_all);
6703 layout_type (t);
6705 return t;
6709 /* Build the node for the type of references-to-TO_TYPE by default
6710 in ptr_mode. */
6712 tree
6713 build_reference_type (tree to_type)
6715 return build_reference_type_for_mode (to_type, ptr_mode, false);
6718 /* Build a type that is compatible with t but has no cv quals anywhere
6719 in its type, thus
6721 const char *const *const * -> char ***. */
6723 tree
6724 build_type_no_quals (tree t)
6726 switch (TREE_CODE (t))
6728 case POINTER_TYPE:
6729 return build_pointer_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
6730 TYPE_MODE (t),
6731 TYPE_REF_CAN_ALIAS_ALL (t));
6732 case REFERENCE_TYPE:
6733 return
6734 build_reference_type_for_mode (build_type_no_quals (TREE_TYPE (t)),
6735 TYPE_MODE (t),
6736 TYPE_REF_CAN_ALIAS_ALL (t));
6737 default:
6738 return TYPE_MAIN_VARIANT (t);
6742 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
6743 MAXVAL should be the maximum value in the domain
6744 (one less than the length of the array).
6746 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
6747 We don't enforce this limit, that is up to caller (e.g. language front end).
6748 The limit exists because the result is a signed type and we don't handle
6749 sizes that use more than one HOST_WIDE_INT. */
6751 tree
6752 build_index_type (tree maxval)
6754 tree itype = make_node (INTEGER_TYPE);
6756 TREE_TYPE (itype) = sizetype;
6757 TYPE_PRECISION (itype) = TYPE_PRECISION (sizetype);
6758 TYPE_MIN_VALUE (itype) = size_zero_node;
6759 TYPE_MAX_VALUE (itype) = fold_convert (sizetype, maxval);
6760 SET_TYPE_MODE (itype, TYPE_MODE (sizetype));
6761 TYPE_SIZE (itype) = TYPE_SIZE (sizetype);
6762 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (sizetype);
6763 TYPE_ALIGN (itype) = TYPE_ALIGN (sizetype);
6764 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (sizetype);
6766 if (host_integerp (maxval, 1))
6767 return type_hash_canon (tree_low_cst (maxval, 1), itype);
6768 else
6770 /* Since we cannot hash this type, we need to compare it using
6771 structural equality checks. */
6772 SET_TYPE_STRUCTURAL_EQUALITY (itype);
6773 return itype;
6777 /* Builds a signed or unsigned integer type of precision PRECISION.
6778 Used for C bitfields whose precision does not match that of
6779 built-in target types. */
6780 tree
6781 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision,
6782 int unsignedp)
6784 tree itype = make_node (INTEGER_TYPE);
6786 TYPE_PRECISION (itype) = precision;
6788 if (unsignedp)
6789 fixup_unsigned_type (itype);
6790 else
6791 fixup_signed_type (itype);
6793 if (host_integerp (TYPE_MAX_VALUE (itype), 1))
6794 return type_hash_canon (tree_low_cst (TYPE_MAX_VALUE (itype), 1), itype);
6796 return itype;
6799 /* Create a range of some discrete type TYPE (an INTEGER_TYPE,
6800 ENUMERAL_TYPE or BOOLEAN_TYPE), with low bound LOWVAL and
6801 high bound HIGHVAL. If TYPE is NULL, sizetype is used. */
6803 tree
6804 build_range_type (tree type, tree lowval, tree highval)
6806 tree itype = make_node (INTEGER_TYPE);
6808 TREE_TYPE (itype) = type;
6809 if (type == NULL_TREE)
6810 type = sizetype;
6812 TYPE_MIN_VALUE (itype) = fold_convert (type, lowval);
6813 TYPE_MAX_VALUE (itype) = highval ? fold_convert (type, highval) : NULL;
6815 TYPE_PRECISION (itype) = TYPE_PRECISION (type);
6816 SET_TYPE_MODE (itype, TYPE_MODE (type));
6817 TYPE_SIZE (itype) = TYPE_SIZE (type);
6818 TYPE_SIZE_UNIT (itype) = TYPE_SIZE_UNIT (type);
6819 TYPE_ALIGN (itype) = TYPE_ALIGN (type);
6820 TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type);
6822 if (host_integerp (lowval, 0) && highval != 0 && host_integerp (highval, 0))
6823 return type_hash_canon (tree_low_cst (highval, 0)
6824 - tree_low_cst (lowval, 0),
6825 itype);
6826 else
6827 return itype;
6830 /* Return true if the debug information for TYPE, a subtype, should be emitted
6831 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
6832 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
6833 debug info and doesn't reflect the source code. */
6835 bool
6836 subrange_type_for_debug_p (const_tree type, tree *lowval, tree *highval)
6838 tree base_type = TREE_TYPE (type), low, high;
6840 /* Subrange types have a base type which is an integral type. */
6841 if (!INTEGRAL_TYPE_P (base_type))
6842 return false;
6844 /* Get the real bounds of the subtype. */
6845 if (lang_hooks.types.get_subrange_bounds)
6846 lang_hooks.types.get_subrange_bounds (type, &low, &high);
6847 else
6849 low = TYPE_MIN_VALUE (type);
6850 high = TYPE_MAX_VALUE (type);
6853 /* If the type and its base type have the same representation and the same
6854 name, then the type is not a subrange but a copy of the base type. */
6855 if ((TREE_CODE (base_type) == INTEGER_TYPE
6856 || TREE_CODE (base_type) == BOOLEAN_TYPE)
6857 && int_size_in_bytes (type) == int_size_in_bytes (base_type)
6858 && tree_int_cst_equal (low, TYPE_MIN_VALUE (base_type))
6859 && tree_int_cst_equal (high, TYPE_MAX_VALUE (base_type)))
6861 tree type_name = TYPE_NAME (type);
6862 tree base_type_name = TYPE_NAME (base_type);
6864 if (type_name && TREE_CODE (type_name) == TYPE_DECL)
6865 type_name = DECL_NAME (type_name);
6867 if (base_type_name && TREE_CODE (base_type_name) == TYPE_DECL)
6868 base_type_name = DECL_NAME (base_type_name);
6870 if (type_name == base_type_name)
6871 return false;
6874 if (lowval)
6875 *lowval = low;
6876 if (highval)
6877 *highval = high;
6878 return true;
6881 /* Just like build_index_type, but takes lowval and highval instead
6882 of just highval (maxval). */
6884 tree
6885 build_index_2_type (tree lowval, tree highval)
6887 return build_range_type (sizetype, lowval, highval);
6890 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
6891 and number of elements specified by the range of values of INDEX_TYPE.
6892 If such a type has already been constructed, reuse it. */
6894 tree
6895 build_array_type (tree elt_type, tree index_type)
6897 tree t;
6898 hashval_t hashcode = 0;
6900 if (TREE_CODE (elt_type) == FUNCTION_TYPE)
6902 error ("arrays of functions are not meaningful");
6903 elt_type = integer_type_node;
6906 t = make_node (ARRAY_TYPE);
6907 TREE_TYPE (t) = elt_type;
6908 TYPE_DOMAIN (t) = index_type;
6910 if (index_type == 0)
6912 tree save = t;
6913 hashcode = iterative_hash_object (TYPE_HASH (elt_type), hashcode);
6914 t = type_hash_canon (hashcode, t);
6915 if (save == t)
6916 layout_type (t);
6918 if (TYPE_CANONICAL (t) == t)
6920 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type))
6921 SET_TYPE_STRUCTURAL_EQUALITY (t);
6922 else if (TYPE_CANONICAL (elt_type) != elt_type)
6923 TYPE_CANONICAL (t)
6924 = build_array_type (TYPE_CANONICAL (elt_type), index_type);
6927 return t;
6930 hashcode = iterative_hash_object (TYPE_HASH (elt_type), hashcode);
6931 hashcode = iterative_hash_object (TYPE_HASH (index_type), hashcode);
6932 t = type_hash_canon (hashcode, t);
6934 if (!COMPLETE_TYPE_P (t))
6935 layout_type (t);
6937 if (TYPE_CANONICAL (t) == t)
6939 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type)
6940 || TYPE_STRUCTURAL_EQUALITY_P (index_type))
6941 SET_TYPE_STRUCTURAL_EQUALITY (t);
6942 else if (TYPE_CANONICAL (elt_type) != elt_type
6943 || TYPE_CANONICAL (index_type) != index_type)
6944 TYPE_CANONICAL (t)
6945 = build_array_type (TYPE_CANONICAL (elt_type),
6946 TYPE_CANONICAL (index_type));
6949 return t;
6952 /* Recursively examines the array elements of TYPE, until a non-array
6953 element type is found. */
6955 tree
6956 strip_array_types (tree type)
6958 while (TREE_CODE (type) == ARRAY_TYPE)
6959 type = TREE_TYPE (type);
6961 return type;
6964 /* Computes the canonical argument types from the argument type list
6965 ARGTYPES.
6967 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
6968 on entry to this function, or if any of the ARGTYPES are
6969 structural.
6971 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
6972 true on entry to this function, or if any of the ARGTYPES are
6973 non-canonical.
6975 Returns a canonical argument list, which may be ARGTYPES when the
6976 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
6977 true) or would not differ from ARGTYPES. */
6979 static tree
6980 maybe_canonicalize_argtypes(tree argtypes,
6981 bool *any_structural_p,
6982 bool *any_noncanonical_p)
6984 tree arg;
6985 bool any_noncanonical_argtypes_p = false;
6987 for (arg = argtypes; arg && !(*any_structural_p); arg = TREE_CHAIN (arg))
6989 if (!TREE_VALUE (arg) || TREE_VALUE (arg) == error_mark_node)
6990 /* Fail gracefully by stating that the type is structural. */
6991 *any_structural_p = true;
6992 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg)))
6993 *any_structural_p = true;
6994 else if (TYPE_CANONICAL (TREE_VALUE (arg)) != TREE_VALUE (arg)
6995 || TREE_PURPOSE (arg))
6996 /* If the argument has a default argument, we consider it
6997 non-canonical even though the type itself is canonical.
6998 That way, different variants of function and method types
6999 with default arguments will all point to the variant with
7000 no defaults as their canonical type. */
7001 any_noncanonical_argtypes_p = true;
7004 if (*any_structural_p)
7005 return argtypes;
7007 if (any_noncanonical_argtypes_p)
7009 /* Build the canonical list of argument types. */
7010 tree canon_argtypes = NULL_TREE;
7011 bool is_void = false;
7013 for (arg = argtypes; arg; arg = TREE_CHAIN (arg))
7015 if (arg == void_list_node)
7016 is_void = true;
7017 else
7018 canon_argtypes = tree_cons (NULL_TREE,
7019 TYPE_CANONICAL (TREE_VALUE (arg)),
7020 canon_argtypes);
7023 canon_argtypes = nreverse (canon_argtypes);
7024 if (is_void)
7025 canon_argtypes = chainon (canon_argtypes, void_list_node);
7027 /* There is a non-canonical type. */
7028 *any_noncanonical_p = true;
7029 return canon_argtypes;
7032 /* The canonical argument types are the same as ARGTYPES. */
7033 return argtypes;
7036 /* Construct, lay out and return
7037 the type of functions returning type VALUE_TYPE
7038 given arguments of types ARG_TYPES.
7039 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
7040 are data type nodes for the arguments of the function.
7041 If such a type has already been constructed, reuse it. */
7043 tree
7044 build_function_type (tree value_type, tree arg_types)
7046 tree t;
7047 hashval_t hashcode = 0;
7048 bool any_structural_p, any_noncanonical_p;
7049 tree canon_argtypes;
7051 if (TREE_CODE (value_type) == FUNCTION_TYPE)
7053 error ("function return type cannot be function");
7054 value_type = integer_type_node;
7057 /* Make a node of the sort we want. */
7058 t = make_node (FUNCTION_TYPE);
7059 TREE_TYPE (t) = value_type;
7060 TYPE_ARG_TYPES (t) = arg_types;
7062 /* If we already have such a type, use the old one. */
7063 hashcode = iterative_hash_object (TYPE_HASH (value_type), hashcode);
7064 hashcode = type_hash_list (arg_types, hashcode);
7065 t = type_hash_canon (hashcode, t);
7067 /* Set up the canonical type. */
7068 any_structural_p = TYPE_STRUCTURAL_EQUALITY_P (value_type);
7069 any_noncanonical_p = TYPE_CANONICAL (value_type) != value_type;
7070 canon_argtypes = maybe_canonicalize_argtypes (arg_types,
7071 &any_structural_p,
7072 &any_noncanonical_p);
7073 if (any_structural_p)
7074 SET_TYPE_STRUCTURAL_EQUALITY (t);
7075 else if (any_noncanonical_p)
7076 TYPE_CANONICAL (t) = build_function_type (TYPE_CANONICAL (value_type),
7077 canon_argtypes);
7079 if (!COMPLETE_TYPE_P (t))
7080 layout_type (t);
7081 return t;
7084 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP. */
7086 tree
7087 build_function_type_skip_args (tree orig_type, bitmap args_to_skip)
7089 tree new_type = NULL;
7090 tree args, new_args = NULL, t;
7091 tree new_reversed;
7092 int i = 0;
7094 for (args = TYPE_ARG_TYPES (orig_type); args && args != void_list_node;
7095 args = TREE_CHAIN (args), i++)
7096 if (!bitmap_bit_p (args_to_skip, i))
7097 new_args = tree_cons (NULL_TREE, TREE_VALUE (args), new_args);
7099 new_reversed = nreverse (new_args);
7100 if (args)
7102 if (new_reversed)
7103 TREE_CHAIN (new_args) = void_list_node;
7104 else
7105 new_reversed = void_list_node;
7108 /* Use copy_node to preserve as much as possible from original type
7109 (debug info, attribute lists etc.)
7110 Exception is METHOD_TYPEs must have THIS argument.
7111 When we are asked to remove it, we need to build new FUNCTION_TYPE
7112 instead. */
7113 if (TREE_CODE (orig_type) != METHOD_TYPE
7114 || !bitmap_bit_p (args_to_skip, 0))
7116 new_type = copy_node (orig_type);
7117 TYPE_ARG_TYPES (new_type) = new_reversed;
7119 else
7121 new_type
7122 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type),
7123 new_reversed));
7124 TYPE_CONTEXT (new_type) = TYPE_CONTEXT (orig_type);
7127 /* This is a new type, not a copy of an old type. Need to reassociate
7128 variants. We can handle everything except the main variant lazily. */
7129 t = TYPE_MAIN_VARIANT (orig_type);
7130 if (orig_type != t)
7132 TYPE_MAIN_VARIANT (new_type) = t;
7133 TYPE_NEXT_VARIANT (new_type) = TYPE_NEXT_VARIANT (t);
7134 TYPE_NEXT_VARIANT (t) = new_type;
7136 else
7138 TYPE_MAIN_VARIANT (new_type) = new_type;
7139 TYPE_NEXT_VARIANT (new_type) = NULL;
7141 return new_type;
7144 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP.
7146 Arguments from DECL_ARGUMENTS list can't be removed now, since they are
7147 linked by TREE_CHAIN directly. It is caller responsibility to eliminate
7148 them when they are being duplicated (i.e. copy_arguments_for_versioning). */
7150 tree
7151 build_function_decl_skip_args (tree orig_decl, bitmap args_to_skip)
7153 tree new_decl = copy_node (orig_decl);
7154 tree new_type;
7156 new_type = TREE_TYPE (orig_decl);
7157 if (prototype_p (new_type))
7158 new_type = build_function_type_skip_args (new_type, args_to_skip);
7159 TREE_TYPE (new_decl) = new_type;
7161 /* For declarations setting DECL_VINDEX (i.e. methods)
7162 we expect first argument to be THIS pointer. */
7163 if (bitmap_bit_p (args_to_skip, 0))
7164 DECL_VINDEX (new_decl) = NULL_TREE;
7165 return new_decl;
7168 /* Build a function type. The RETURN_TYPE is the type returned by the
7169 function. If VAARGS is set, no void_type_node is appended to the
7170 the list. ARGP muse be alway be terminated be a NULL_TREE. */
7172 static tree
7173 build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
7175 tree t, args, last;
7177 t = va_arg (argp, tree);
7178 for (args = NULL_TREE; t != NULL_TREE; t = va_arg (argp, tree))
7179 args = tree_cons (NULL_TREE, t, args);
7181 if (vaargs)
7183 last = args;
7184 if (args != NULL_TREE)
7185 args = nreverse (args);
7186 gcc_assert (args != NULL_TREE && last != void_list_node);
7188 else if (args == NULL_TREE)
7189 args = void_list_node;
7190 else
7192 last = args;
7193 args = nreverse (args);
7194 TREE_CHAIN (last) = void_list_node;
7196 args = build_function_type (return_type, args);
7198 return args;
7201 /* Build a function type. The RETURN_TYPE is the type returned by the
7202 function. If additional arguments are provided, they are
7203 additional argument types. The list of argument types must always
7204 be terminated by NULL_TREE. */
7206 tree
7207 build_function_type_list (tree return_type, ...)
7209 tree args;
7210 va_list p;
7212 va_start (p, return_type);
7213 args = build_function_type_list_1 (false, return_type, p);
7214 va_end (p);
7215 return args;
7218 /* Build a variable argument function type. The RETURN_TYPE is the
7219 type returned by the function. If additional arguments are provided,
7220 they are additional argument types. The list of argument types must
7221 always be terminated by NULL_TREE. */
7223 tree
7224 build_varargs_function_type_list (tree return_type, ...)
7226 tree args;
7227 va_list p;
7229 va_start (p, return_type);
7230 args = build_function_type_list_1 (true, return_type, p);
7231 va_end (p);
7233 return args;
7236 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
7237 and ARGTYPES (a TREE_LIST) are the return type and arguments types
7238 for the method. An implicit additional parameter (of type
7239 pointer-to-BASETYPE) is added to the ARGTYPES. */
7241 tree
7242 build_method_type_directly (tree basetype,
7243 tree rettype,
7244 tree argtypes)
7246 tree t;
7247 tree ptype;
7248 int hashcode = 0;
7249 bool any_structural_p, any_noncanonical_p;
7250 tree canon_argtypes;
7252 /* Make a node of the sort we want. */
7253 t = make_node (METHOD_TYPE);
7255 TYPE_METHOD_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
7256 TREE_TYPE (t) = rettype;
7257 ptype = build_pointer_type (basetype);
7259 /* The actual arglist for this function includes a "hidden" argument
7260 which is "this". Put it into the list of argument types. */
7261 argtypes = tree_cons (NULL_TREE, ptype, argtypes);
7262 TYPE_ARG_TYPES (t) = argtypes;
7264 /* If we already have such a type, use the old one. */
7265 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
7266 hashcode = iterative_hash_object (TYPE_HASH (rettype), hashcode);
7267 hashcode = type_hash_list (argtypes, hashcode);
7268 t = type_hash_canon (hashcode, t);
7270 /* Set up the canonical type. */
7271 any_structural_p
7272 = (TYPE_STRUCTURAL_EQUALITY_P (basetype)
7273 || TYPE_STRUCTURAL_EQUALITY_P (rettype));
7274 any_noncanonical_p
7275 = (TYPE_CANONICAL (basetype) != basetype
7276 || TYPE_CANONICAL (rettype) != rettype);
7277 canon_argtypes = maybe_canonicalize_argtypes (TREE_CHAIN (argtypes),
7278 &any_structural_p,
7279 &any_noncanonical_p);
7280 if (any_structural_p)
7281 SET_TYPE_STRUCTURAL_EQUALITY (t);
7282 else if (any_noncanonical_p)
7283 TYPE_CANONICAL (t)
7284 = build_method_type_directly (TYPE_CANONICAL (basetype),
7285 TYPE_CANONICAL (rettype),
7286 canon_argtypes);
7287 if (!COMPLETE_TYPE_P (t))
7288 layout_type (t);
7290 return t;
7293 /* Construct, lay out and return the type of methods belonging to class
7294 BASETYPE and whose arguments and values are described by TYPE.
7295 If that type exists already, reuse it.
7296 TYPE must be a FUNCTION_TYPE node. */
7298 tree
7299 build_method_type (tree basetype, tree type)
7301 gcc_assert (TREE_CODE (type) == FUNCTION_TYPE);
7303 return build_method_type_directly (basetype,
7304 TREE_TYPE (type),
7305 TYPE_ARG_TYPES (type));
7308 /* Construct, lay out and return the type of offsets to a value
7309 of type TYPE, within an object of type BASETYPE.
7310 If a suitable offset type exists already, reuse it. */
7312 tree
7313 build_offset_type (tree basetype, tree type)
7315 tree t;
7316 hashval_t hashcode = 0;
7318 /* Make a node of the sort we want. */
7319 t = make_node (OFFSET_TYPE);
7321 TYPE_OFFSET_BASETYPE (t) = TYPE_MAIN_VARIANT (basetype);
7322 TREE_TYPE (t) = type;
7324 /* If we already have such a type, use the old one. */
7325 hashcode = iterative_hash_object (TYPE_HASH (basetype), hashcode);
7326 hashcode = iterative_hash_object (TYPE_HASH (type), hashcode);
7327 t = type_hash_canon (hashcode, t);
7329 if (!COMPLETE_TYPE_P (t))
7330 layout_type (t);
7332 if (TYPE_CANONICAL (t) == t)
7334 if (TYPE_STRUCTURAL_EQUALITY_P (basetype)
7335 || TYPE_STRUCTURAL_EQUALITY_P (type))
7336 SET_TYPE_STRUCTURAL_EQUALITY (t);
7337 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)) != basetype
7338 || TYPE_CANONICAL (type) != type)
7339 TYPE_CANONICAL (t)
7340 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype)),
7341 TYPE_CANONICAL (type));
7344 return t;
7347 /* Create a complex type whose components are COMPONENT_TYPE. */
7349 tree
7350 build_complex_type (tree component_type)
7352 tree t;
7353 hashval_t hashcode;
7355 gcc_assert (INTEGRAL_TYPE_P (component_type)
7356 || SCALAR_FLOAT_TYPE_P (component_type)
7357 || FIXED_POINT_TYPE_P (component_type));
7359 /* Make a node of the sort we want. */
7360 t = make_node (COMPLEX_TYPE);
7362 TREE_TYPE (t) = TYPE_MAIN_VARIANT (component_type);
7364 /* If we already have such a type, use the old one. */
7365 hashcode = iterative_hash_object (TYPE_HASH (component_type), 0);
7366 t = type_hash_canon (hashcode, t);
7368 if (!COMPLETE_TYPE_P (t))
7369 layout_type (t);
7371 if (TYPE_CANONICAL (t) == t)
7373 if (TYPE_STRUCTURAL_EQUALITY_P (component_type))
7374 SET_TYPE_STRUCTURAL_EQUALITY (t);
7375 else if (TYPE_CANONICAL (component_type) != component_type)
7376 TYPE_CANONICAL (t)
7377 = build_complex_type (TYPE_CANONICAL (component_type));
7380 /* We need to create a name, since complex is a fundamental type. */
7381 if (! TYPE_NAME (t))
7383 const char *name;
7384 if (component_type == char_type_node)
7385 name = "complex char";
7386 else if (component_type == signed_char_type_node)
7387 name = "complex signed char";
7388 else if (component_type == unsigned_char_type_node)
7389 name = "complex unsigned char";
7390 else if (component_type == short_integer_type_node)
7391 name = "complex short int";
7392 else if (component_type == short_unsigned_type_node)
7393 name = "complex short unsigned int";
7394 else if (component_type == integer_type_node)
7395 name = "complex int";
7396 else if (component_type == unsigned_type_node)
7397 name = "complex unsigned int";
7398 else if (component_type == long_integer_type_node)
7399 name = "complex long int";
7400 else if (component_type == long_unsigned_type_node)
7401 name = "complex long unsigned int";
7402 else if (component_type == long_long_integer_type_node)
7403 name = "complex long long int";
7404 else if (component_type == long_long_unsigned_type_node)
7405 name = "complex long long unsigned int";
7406 else
7407 name = 0;
7409 if (name != 0)
7410 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
7411 get_identifier (name), t);
7414 return build_qualified_type (t, TYPE_QUALS (component_type));
7417 /* If TYPE is a real or complex floating-point type and the target
7418 does not directly support arithmetic on TYPE then return the wider
7419 type to be used for arithmetic on TYPE. Otherwise, return
7420 NULL_TREE. */
7422 tree
7423 excess_precision_type (tree type)
7425 if (flag_excess_precision != EXCESS_PRECISION_FAST)
7427 int flt_eval_method = TARGET_FLT_EVAL_METHOD;
7428 switch (TREE_CODE (type))
7430 case REAL_TYPE:
7431 switch (flt_eval_method)
7433 case 1:
7434 if (TYPE_MODE (type) == TYPE_MODE (float_type_node))
7435 return double_type_node;
7436 break;
7437 case 2:
7438 if (TYPE_MODE (type) == TYPE_MODE (float_type_node)
7439 || TYPE_MODE (type) == TYPE_MODE (double_type_node))
7440 return long_double_type_node;
7441 break;
7442 default:
7443 gcc_unreachable ();
7445 break;
7446 case COMPLEX_TYPE:
7447 if (TREE_CODE (TREE_TYPE (type)) != REAL_TYPE)
7448 return NULL_TREE;
7449 switch (flt_eval_method)
7451 case 1:
7452 if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node))
7453 return complex_double_type_node;
7454 break;
7455 case 2:
7456 if (TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (float_type_node)
7457 || (TYPE_MODE (TREE_TYPE (type))
7458 == TYPE_MODE (double_type_node)))
7459 return complex_long_double_type_node;
7460 break;
7461 default:
7462 gcc_unreachable ();
7464 break;
7465 default:
7466 break;
7469 return NULL_TREE;
7472 /* Return OP, stripped of any conversions to wider types as much as is safe.
7473 Converting the value back to OP's type makes a value equivalent to OP.
7475 If FOR_TYPE is nonzero, we return a value which, if converted to
7476 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
7478 OP must have integer, real or enumeral type. Pointers are not allowed!
7480 There are some cases where the obvious value we could return
7481 would regenerate to OP if converted to OP's type,
7482 but would not extend like OP to wider types.
7483 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
7484 For example, if OP is (unsigned short)(signed char)-1,
7485 we avoid returning (signed char)-1 if FOR_TYPE is int,
7486 even though extending that to an unsigned short would regenerate OP,
7487 since the result of extending (signed char)-1 to (int)
7488 is different from (int) OP. */
7490 tree
7491 get_unwidened (tree op, tree for_type)
7493 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
7494 tree type = TREE_TYPE (op);
7495 unsigned final_prec
7496 = TYPE_PRECISION (for_type != 0 ? for_type : type);
7497 int uns
7498 = (for_type != 0 && for_type != type
7499 && final_prec > TYPE_PRECISION (type)
7500 && TYPE_UNSIGNED (type));
7501 tree win = op;
7503 while (CONVERT_EXPR_P (op))
7505 int bitschange;
7507 /* TYPE_PRECISION on vector types has different meaning
7508 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
7509 so avoid them here. */
7510 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op, 0))) == VECTOR_TYPE)
7511 break;
7513 bitschange = TYPE_PRECISION (TREE_TYPE (op))
7514 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0)));
7516 /* Truncations are many-one so cannot be removed.
7517 Unless we are later going to truncate down even farther. */
7518 if (bitschange < 0
7519 && final_prec > TYPE_PRECISION (TREE_TYPE (op)))
7520 break;
7522 /* See what's inside this conversion. If we decide to strip it,
7523 we will set WIN. */
7524 op = TREE_OPERAND (op, 0);
7526 /* If we have not stripped any zero-extensions (uns is 0),
7527 we can strip any kind of extension.
7528 If we have previously stripped a zero-extension,
7529 only zero-extensions can safely be stripped.
7530 Any extension can be stripped if the bits it would produce
7531 are all going to be discarded later by truncating to FOR_TYPE. */
7533 if (bitschange > 0)
7535 if (! uns || final_prec <= TYPE_PRECISION (TREE_TYPE (op)))
7536 win = op;
7537 /* TYPE_UNSIGNED says whether this is a zero-extension.
7538 Let's avoid computing it if it does not affect WIN
7539 and if UNS will not be needed again. */
7540 if ((uns
7541 || CONVERT_EXPR_P (op))
7542 && TYPE_UNSIGNED (TREE_TYPE (op)))
7544 uns = 1;
7545 win = op;
7550 return win;
7553 /* Return OP or a simpler expression for a narrower value
7554 which can be sign-extended or zero-extended to give back OP.
7555 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
7556 or 0 if the value should be sign-extended. */
7558 tree
7559 get_narrower (tree op, int *unsignedp_ptr)
7561 int uns = 0;
7562 int first = 1;
7563 tree win = op;
7564 bool integral_p = INTEGRAL_TYPE_P (TREE_TYPE (op));
7566 while (TREE_CODE (op) == NOP_EXPR)
7568 int bitschange
7569 = (TYPE_PRECISION (TREE_TYPE (op))
7570 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op, 0))));
7572 /* Truncations are many-one so cannot be removed. */
7573 if (bitschange < 0)
7574 break;
7576 /* See what's inside this conversion. If we decide to strip it,
7577 we will set WIN. */
7579 if (bitschange > 0)
7581 op = TREE_OPERAND (op, 0);
7582 /* An extension: the outermost one can be stripped,
7583 but remember whether it is zero or sign extension. */
7584 if (first)
7585 uns = TYPE_UNSIGNED (TREE_TYPE (op));
7586 /* Otherwise, if a sign extension has been stripped,
7587 only sign extensions can now be stripped;
7588 if a zero extension has been stripped, only zero-extensions. */
7589 else if (uns != TYPE_UNSIGNED (TREE_TYPE (op)))
7590 break;
7591 first = 0;
7593 else /* bitschange == 0 */
7595 /* A change in nominal type can always be stripped, but we must
7596 preserve the unsignedness. */
7597 if (first)
7598 uns = TYPE_UNSIGNED (TREE_TYPE (op));
7599 first = 0;
7600 op = TREE_OPERAND (op, 0);
7601 /* Keep trying to narrow, but don't assign op to win if it
7602 would turn an integral type into something else. */
7603 if (INTEGRAL_TYPE_P (TREE_TYPE (op)) != integral_p)
7604 continue;
7607 win = op;
7610 if (TREE_CODE (op) == COMPONENT_REF
7611 /* Since type_for_size always gives an integer type. */
7612 && TREE_CODE (TREE_TYPE (op)) != REAL_TYPE
7613 && TREE_CODE (TREE_TYPE (op)) != FIXED_POINT_TYPE
7614 /* Ensure field is laid out already. */
7615 && DECL_SIZE (TREE_OPERAND (op, 1)) != 0
7616 && host_integerp (DECL_SIZE (TREE_OPERAND (op, 1)), 1))
7618 unsigned HOST_WIDE_INT innerprec
7619 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op, 1)), 1);
7620 int unsignedp = (DECL_UNSIGNED (TREE_OPERAND (op, 1))
7621 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op, 1))));
7622 tree type = lang_hooks.types.type_for_size (innerprec, unsignedp);
7624 /* We can get this structure field in a narrower type that fits it,
7625 but the resulting extension to its nominal type (a fullword type)
7626 must satisfy the same conditions as for other extensions.
7628 Do this only for fields that are aligned (not bit-fields),
7629 because when bit-field insns will be used there is no
7630 advantage in doing this. */
7632 if (innerprec < TYPE_PRECISION (TREE_TYPE (op))
7633 && ! DECL_BIT_FIELD (TREE_OPERAND (op, 1))
7634 && (first || uns == DECL_UNSIGNED (TREE_OPERAND (op, 1)))
7635 && type != 0)
7637 if (first)
7638 uns = DECL_UNSIGNED (TREE_OPERAND (op, 1));
7639 win = fold_convert (type, op);
7643 *unsignedp_ptr = uns;
7644 return win;
7647 /* Nonzero if integer constant C has a value that is permissible
7648 for type TYPE (an INTEGER_TYPE). */
7651 int_fits_type_p (const_tree c, const_tree type)
7653 tree type_low_bound, type_high_bound;
7654 bool ok_for_low_bound, ok_for_high_bound, unsc;
7655 double_int dc, dd;
7657 dc = tree_to_double_int (c);
7658 unsc = TYPE_UNSIGNED (TREE_TYPE (c));
7660 if (TREE_CODE (TREE_TYPE (c)) == INTEGER_TYPE
7661 && TYPE_IS_SIZETYPE (TREE_TYPE (c))
7662 && unsc)
7663 /* So c is an unsigned integer whose type is sizetype and type is not.
7664 sizetype'd integers are sign extended even though they are
7665 unsigned. If the integer value fits in the lower end word of c,
7666 and if the higher end word has all its bits set to 1, that
7667 means the higher end bits are set to 1 only for sign extension.
7668 So let's convert c into an equivalent zero extended unsigned
7669 integer. */
7670 dc = double_int_zext (dc, TYPE_PRECISION (TREE_TYPE (c)));
7672 retry:
7673 type_low_bound = TYPE_MIN_VALUE (type);
7674 type_high_bound = TYPE_MAX_VALUE (type);
7676 /* If at least one bound of the type is a constant integer, we can check
7677 ourselves and maybe make a decision. If no such decision is possible, but
7678 this type is a subtype, try checking against that. Otherwise, use
7679 fit_double_type, which checks against the precision.
7681 Compute the status for each possibly constant bound, and return if we see
7682 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
7683 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
7684 for "constant known to fit". */
7686 /* Check if c >= type_low_bound. */
7687 if (type_low_bound && TREE_CODE (type_low_bound) == INTEGER_CST)
7689 dd = tree_to_double_int (type_low_bound);
7690 if (TREE_CODE (type) == INTEGER_TYPE
7691 && TYPE_IS_SIZETYPE (type)
7692 && TYPE_UNSIGNED (type))
7693 dd = double_int_zext (dd, TYPE_PRECISION (type));
7694 if (unsc != TYPE_UNSIGNED (TREE_TYPE (type_low_bound)))
7696 int c_neg = (!unsc && double_int_negative_p (dc));
7697 int t_neg = (unsc && double_int_negative_p (dd));
7699 if (c_neg && !t_neg)
7700 return 0;
7701 if ((c_neg || !t_neg) && double_int_ucmp (dc, dd) < 0)
7702 return 0;
7704 else if (double_int_cmp (dc, dd, unsc) < 0)
7705 return 0;
7706 ok_for_low_bound = true;
7708 else
7709 ok_for_low_bound = false;
7711 /* Check if c <= type_high_bound. */
7712 if (type_high_bound && TREE_CODE (type_high_bound) == INTEGER_CST)
7714 dd = tree_to_double_int (type_high_bound);
7715 if (TREE_CODE (type) == INTEGER_TYPE
7716 && TYPE_IS_SIZETYPE (type)
7717 && TYPE_UNSIGNED (type))
7718 dd = double_int_zext (dd, TYPE_PRECISION (type));
7719 if (unsc != TYPE_UNSIGNED (TREE_TYPE (type_high_bound)))
7721 int c_neg = (!unsc && double_int_negative_p (dc));
7722 int t_neg = (unsc && double_int_negative_p (dd));
7724 if (t_neg && !c_neg)
7725 return 0;
7726 if ((t_neg || !c_neg) && double_int_ucmp (dc, dd) > 0)
7727 return 0;
7729 else if (double_int_cmp (dc, dd, unsc) > 0)
7730 return 0;
7731 ok_for_high_bound = true;
7733 else
7734 ok_for_high_bound = false;
7736 /* If the constant fits both bounds, the result is known. */
7737 if (ok_for_low_bound && ok_for_high_bound)
7738 return 1;
7740 /* Perform some generic filtering which may allow making a decision
7741 even if the bounds are not constant. First, negative integers
7742 never fit in unsigned types, */
7743 if (TYPE_UNSIGNED (type) && !unsc && double_int_negative_p (dc))
7744 return 0;
7746 /* Second, narrower types always fit in wider ones. */
7747 if (TYPE_PRECISION (type) > TYPE_PRECISION (TREE_TYPE (c)))
7748 return 1;
7750 /* Third, unsigned integers with top bit set never fit signed types. */
7751 if (! TYPE_UNSIGNED (type) && unsc)
7753 int prec = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (c))) - 1;
7754 if (prec < HOST_BITS_PER_WIDE_INT)
7756 if (((((unsigned HOST_WIDE_INT) 1) << prec) & dc.low) != 0)
7757 return 0;
7759 else if (((((unsigned HOST_WIDE_INT) 1)
7760 << (prec - HOST_BITS_PER_WIDE_INT)) & dc.high) != 0)
7761 return 0;
7764 /* If we haven't been able to decide at this point, there nothing more we
7765 can check ourselves here. Look at the base type if we have one and it
7766 has the same precision. */
7767 if (TREE_CODE (type) == INTEGER_TYPE
7768 && TREE_TYPE (type) != 0
7769 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (type)))
7771 type = TREE_TYPE (type);
7772 goto retry;
7775 /* Or to fit_double_type, if nothing else. */
7776 return !fit_double_type (dc.low, dc.high, &dc.low, &dc.high, type);
7779 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
7780 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
7781 represented (assuming two's-complement arithmetic) within the bit
7782 precision of the type are returned instead. */
7784 void
7785 get_type_static_bounds (const_tree type, mpz_t min, mpz_t max)
7787 if (!POINTER_TYPE_P (type) && TYPE_MIN_VALUE (type)
7788 && TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST)
7789 mpz_set_double_int (min, tree_to_double_int (TYPE_MIN_VALUE (type)),
7790 TYPE_UNSIGNED (type));
7791 else
7793 if (TYPE_UNSIGNED (type))
7794 mpz_set_ui (min, 0);
7795 else
7797 double_int mn;
7798 mn = double_int_mask (TYPE_PRECISION (type) - 1);
7799 mn = double_int_sext (double_int_add (mn, double_int_one),
7800 TYPE_PRECISION (type));
7801 mpz_set_double_int (min, mn, false);
7805 if (!POINTER_TYPE_P (type) && TYPE_MAX_VALUE (type)
7806 && TREE_CODE (TYPE_MAX_VALUE (type)) == INTEGER_CST)
7807 mpz_set_double_int (max, tree_to_double_int (TYPE_MAX_VALUE (type)),
7808 TYPE_UNSIGNED (type));
7809 else
7811 if (TYPE_UNSIGNED (type))
7812 mpz_set_double_int (max, double_int_mask (TYPE_PRECISION (type)),
7813 true);
7814 else
7815 mpz_set_double_int (max, double_int_mask (TYPE_PRECISION (type) - 1),
7816 true);
7820 /* Return true if VAR is an automatic variable defined in function FN. */
7822 bool
7823 auto_var_in_fn_p (const_tree var, const_tree fn)
7825 return (DECL_P (var) && DECL_CONTEXT (var) == fn
7826 && (((TREE_CODE (var) == VAR_DECL || TREE_CODE (var) == PARM_DECL)
7827 && ! TREE_STATIC (var))
7828 || TREE_CODE (var) == LABEL_DECL
7829 || TREE_CODE (var) == RESULT_DECL));
7832 /* Subprogram of following function. Called by walk_tree.
7834 Return *TP if it is an automatic variable or parameter of the
7835 function passed in as DATA. */
7837 static tree
7838 find_var_from_fn (tree *tp, int *walk_subtrees, void *data)
7840 tree fn = (tree) data;
7842 if (TYPE_P (*tp))
7843 *walk_subtrees = 0;
7845 else if (DECL_P (*tp)
7846 && auto_var_in_fn_p (*tp, fn))
7847 return *tp;
7849 return NULL_TREE;
7852 /* Returns true if T is, contains, or refers to a type with variable
7853 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
7854 arguments, but not the return type. If FN is nonzero, only return
7855 true if a modifier of the type or position of FN is a variable or
7856 parameter inside FN.
7858 This concept is more general than that of C99 'variably modified types':
7859 in C99, a struct type is never variably modified because a VLA may not
7860 appear as a structure member. However, in GNU C code like:
7862 struct S { int i[f()]; };
7864 is valid, and other languages may define similar constructs. */
7866 bool
7867 variably_modified_type_p (tree type, tree fn)
7869 tree t;
7871 /* Test if T is either variable (if FN is zero) or an expression containing
7872 a variable in FN. */
7873 #define RETURN_TRUE_IF_VAR(T) \
7874 do { tree _t = (T); \
7875 if (_t && _t != error_mark_node && TREE_CODE (_t) != INTEGER_CST \
7876 && (!fn || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
7877 return true; } while (0)
7879 if (type == error_mark_node)
7880 return false;
7882 /* If TYPE itself has variable size, it is variably modified. */
7883 RETURN_TRUE_IF_VAR (TYPE_SIZE (type));
7884 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type));
7886 switch (TREE_CODE (type))
7888 case POINTER_TYPE:
7889 case REFERENCE_TYPE:
7890 case VECTOR_TYPE:
7891 if (variably_modified_type_p (TREE_TYPE (type), fn))
7892 return true;
7893 break;
7895 case FUNCTION_TYPE:
7896 case METHOD_TYPE:
7897 /* If TYPE is a function type, it is variably modified if the
7898 return type is variably modified. */
7899 if (variably_modified_type_p (TREE_TYPE (type), fn))
7900 return true;
7901 break;
7903 case INTEGER_TYPE:
7904 case REAL_TYPE:
7905 case FIXED_POINT_TYPE:
7906 case ENUMERAL_TYPE:
7907 case BOOLEAN_TYPE:
7908 /* Scalar types are variably modified if their end points
7909 aren't constant. */
7910 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type));
7911 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type));
7912 break;
7914 case RECORD_TYPE:
7915 case UNION_TYPE:
7916 case QUAL_UNION_TYPE:
7917 /* We can't see if any of the fields are variably-modified by the
7918 definition we normally use, since that would produce infinite
7919 recursion via pointers. */
7920 /* This is variably modified if some field's type is. */
7921 for (t = TYPE_FIELDS (type); t; t = TREE_CHAIN (t))
7922 if (TREE_CODE (t) == FIELD_DECL)
7924 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t));
7925 RETURN_TRUE_IF_VAR (DECL_SIZE (t));
7926 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t));
7928 if (TREE_CODE (type) == QUAL_UNION_TYPE)
7929 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t));
7931 break;
7933 case ARRAY_TYPE:
7934 /* Do not call ourselves to avoid infinite recursion. This is
7935 variably modified if the element type is. */
7936 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type)));
7937 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type)));
7938 break;
7940 default:
7941 break;
7944 /* The current language may have other cases to check, but in general,
7945 all other types are not variably modified. */
7946 return lang_hooks.tree_inlining.var_mod_type_p (type, fn);
7948 #undef RETURN_TRUE_IF_VAR
7951 /* Given a DECL or TYPE, return the scope in which it was declared, or
7952 NULL_TREE if there is no containing scope. */
7954 tree
7955 get_containing_scope (const_tree t)
7957 return (TYPE_P (t) ? TYPE_CONTEXT (t) : DECL_CONTEXT (t));
7960 /* Return the innermost context enclosing DECL that is
7961 a FUNCTION_DECL, or zero if none. */
7963 tree
7964 decl_function_context (const_tree decl)
7966 tree context;
7968 if (TREE_CODE (decl) == ERROR_MARK)
7969 return 0;
7971 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
7972 where we look up the function at runtime. Such functions always take
7973 a first argument of type 'pointer to real context'.
7975 C++ should really be fixed to use DECL_CONTEXT for the real context,
7976 and use something else for the "virtual context". */
7977 else if (TREE_CODE (decl) == FUNCTION_DECL && DECL_VINDEX (decl))
7978 context
7979 = TYPE_MAIN_VARIANT
7980 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
7981 else
7982 context = DECL_CONTEXT (decl);
7984 while (context && TREE_CODE (context) != FUNCTION_DECL)
7986 if (TREE_CODE (context) == BLOCK)
7987 context = BLOCK_SUPERCONTEXT (context);
7988 else
7989 context = get_containing_scope (context);
7992 return context;
7995 /* Return the innermost context enclosing DECL that is
7996 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
7997 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
7999 tree
8000 decl_type_context (const_tree decl)
8002 tree context = DECL_CONTEXT (decl);
8004 while (context)
8005 switch (TREE_CODE (context))
8007 case NAMESPACE_DECL:
8008 case TRANSLATION_UNIT_DECL:
8009 return NULL_TREE;
8011 case RECORD_TYPE:
8012 case UNION_TYPE:
8013 case QUAL_UNION_TYPE:
8014 return context;
8016 case TYPE_DECL:
8017 case FUNCTION_DECL:
8018 context = DECL_CONTEXT (context);
8019 break;
8021 case BLOCK:
8022 context = BLOCK_SUPERCONTEXT (context);
8023 break;
8025 default:
8026 gcc_unreachable ();
8029 return NULL_TREE;
8032 /* CALL is a CALL_EXPR. Return the declaration for the function
8033 called, or NULL_TREE if the called function cannot be
8034 determined. */
8036 tree
8037 get_callee_fndecl (const_tree call)
8039 tree addr;
8041 if (call == error_mark_node)
8042 return error_mark_node;
8044 /* It's invalid to call this function with anything but a
8045 CALL_EXPR. */
8046 gcc_assert (TREE_CODE (call) == CALL_EXPR);
8048 /* The first operand to the CALL is the address of the function
8049 called. */
8050 addr = CALL_EXPR_FN (call);
8052 STRIP_NOPS (addr);
8054 /* If this is a readonly function pointer, extract its initial value. */
8055 if (DECL_P (addr) && TREE_CODE (addr) != FUNCTION_DECL
8056 && TREE_READONLY (addr) && ! TREE_THIS_VOLATILE (addr)
8057 && DECL_INITIAL (addr))
8058 addr = DECL_INITIAL (addr);
8060 /* If the address is just `&f' for some function `f', then we know
8061 that `f' is being called. */
8062 if (TREE_CODE (addr) == ADDR_EXPR
8063 && TREE_CODE (TREE_OPERAND (addr, 0)) == FUNCTION_DECL)
8064 return TREE_OPERAND (addr, 0);
8066 /* We couldn't figure out what was being called. */
8067 return NULL_TREE;
8070 /* Print debugging information about tree nodes generated during the compile,
8071 and any language-specific information. */
8073 void
8074 dump_tree_statistics (void)
8076 #ifdef GATHER_STATISTICS
8077 int i;
8078 int total_nodes, total_bytes;
8079 #endif
8081 fprintf (stderr, "\n??? tree nodes created\n\n");
8082 #ifdef GATHER_STATISTICS
8083 fprintf (stderr, "Kind Nodes Bytes\n");
8084 fprintf (stderr, "---------------------------------------\n");
8085 total_nodes = total_bytes = 0;
8086 for (i = 0; i < (int) all_kinds; i++)
8088 fprintf (stderr, "%-20s %7d %10d\n", tree_node_kind_names[i],
8089 tree_node_counts[i], tree_node_sizes[i]);
8090 total_nodes += tree_node_counts[i];
8091 total_bytes += tree_node_sizes[i];
8093 fprintf (stderr, "---------------------------------------\n");
8094 fprintf (stderr, "%-20s %7d %10d\n", "Total", total_nodes, total_bytes);
8095 fprintf (stderr, "---------------------------------------\n");
8096 ssanames_print_statistics ();
8097 phinodes_print_statistics ();
8098 #else
8099 fprintf (stderr, "(No per-node statistics)\n");
8100 #endif
8101 print_type_hash_statistics ();
8102 print_debug_expr_statistics ();
8103 print_value_expr_statistics ();
8104 lang_hooks.print_statistics ();
8107 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
8109 /* Generate a crc32 of a string. */
8111 unsigned
8112 crc32_string (unsigned chksum, const char *string)
8116 unsigned value = *string << 24;
8117 unsigned ix;
8119 for (ix = 8; ix--; value <<= 1)
8121 unsigned feedback;
8123 feedback = (value ^ chksum) & 0x80000000 ? 0x04c11db7 : 0;
8124 chksum <<= 1;
8125 chksum ^= feedback;
8128 while (*string++);
8129 return chksum;
8132 /* P is a string that will be used in a symbol. Mask out any characters
8133 that are not valid in that context. */
8135 void
8136 clean_symbol_name (char *p)
8138 for (; *p; p++)
8139 if (! (ISALNUM (*p)
8140 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
8141 || *p == '$'
8142 #endif
8143 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
8144 || *p == '.'
8145 #endif
8147 *p = '_';
8150 /* Generate a name for a special-purpose function function.
8151 The generated name may need to be unique across the whole link.
8152 TYPE is some string to identify the purpose of this function to the
8153 linker or collect2; it must start with an uppercase letter,
8154 one of:
8155 I - for constructors
8156 D - for destructors
8157 N - for C++ anonymous namespaces
8158 F - for DWARF unwind frame information. */
8160 tree
8161 get_file_function_name (const char *type)
8163 char *buf;
8164 const char *p;
8165 char *q;
8167 /* If we already have a name we know to be unique, just use that. */
8168 if (first_global_object_name)
8169 p = q = ASTRDUP (first_global_object_name);
8170 /* If the target is handling the constructors/destructors, they
8171 will be local to this file and the name is only necessary for
8172 debugging purposes. */
8173 else if ((type[0] == 'I' || type[0] == 'D') && targetm.have_ctors_dtors)
8175 const char *file = main_input_filename;
8176 if (! file)
8177 file = input_filename;
8178 /* Just use the file's basename, because the full pathname
8179 might be quite long. */
8180 p = strrchr (file, '/');
8181 if (p)
8182 p++;
8183 else
8184 p = file;
8185 p = q = ASTRDUP (p);
8187 else
8189 /* Otherwise, the name must be unique across the entire link.
8190 We don't have anything that we know to be unique to this translation
8191 unit, so use what we do have and throw in some randomness. */
8192 unsigned len;
8193 const char *name = weak_global_object_name;
8194 const char *file = main_input_filename;
8196 if (! name)
8197 name = "";
8198 if (! file)
8199 file = input_filename;
8201 len = strlen (file);
8202 q = (char *) alloca (9 * 2 + len + 1);
8203 memcpy (q, file, len + 1);
8205 sprintf (q + len, "_%08X_%08X", crc32_string (0, name),
8206 crc32_string (0, get_random_seed (false)));
8208 p = q;
8211 clean_symbol_name (q);
8212 buf = (char *) alloca (sizeof (FILE_FUNCTION_FORMAT) + strlen (p)
8213 + strlen (type));
8215 /* Set up the name of the file-level functions we may need.
8216 Use a global object (which is already required to be unique over
8217 the program) rather than the file name (which imposes extra
8218 constraints). */
8219 sprintf (buf, FILE_FUNCTION_FORMAT, type, p);
8221 return get_identifier (buf);
8224 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
8226 /* Complain that the tree code of NODE does not match the expected 0
8227 terminated list of trailing codes. The trailing code list can be
8228 empty, for a more vague error message. FILE, LINE, and FUNCTION
8229 are of the caller. */
8231 void
8232 tree_check_failed (const_tree node, const char *file,
8233 int line, const char *function, ...)
8235 va_list args;
8236 const char *buffer;
8237 unsigned length = 0;
8238 int code;
8240 va_start (args, function);
8241 while ((code = va_arg (args, int)))
8242 length += 4 + strlen (tree_code_name[code]);
8243 va_end (args);
8244 if (length)
8246 char *tmp;
8247 va_start (args, function);
8248 length += strlen ("expected ");
8249 buffer = tmp = (char *) alloca (length);
8250 length = 0;
8251 while ((code = va_arg (args, int)))
8253 const char *prefix = length ? " or " : "expected ";
8255 strcpy (tmp + length, prefix);
8256 length += strlen (prefix);
8257 strcpy (tmp + length, tree_code_name[code]);
8258 length += strlen (tree_code_name[code]);
8260 va_end (args);
8262 else
8263 buffer = "unexpected node";
8265 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8266 buffer, tree_code_name[TREE_CODE (node)],
8267 function, trim_filename (file), line);
8270 /* Complain that the tree code of NODE does match the expected 0
8271 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
8272 the caller. */
8274 void
8275 tree_not_check_failed (const_tree node, const char *file,
8276 int line, const char *function, ...)
8278 va_list args;
8279 char *buffer;
8280 unsigned length = 0;
8281 int code;
8283 va_start (args, function);
8284 while ((code = va_arg (args, int)))
8285 length += 4 + strlen (tree_code_name[code]);
8286 va_end (args);
8287 va_start (args, function);
8288 buffer = (char *) alloca (length);
8289 length = 0;
8290 while ((code = va_arg (args, int)))
8292 if (length)
8294 strcpy (buffer + length, " or ");
8295 length += 4;
8297 strcpy (buffer + length, tree_code_name[code]);
8298 length += strlen (tree_code_name[code]);
8300 va_end (args);
8302 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
8303 buffer, tree_code_name[TREE_CODE (node)],
8304 function, trim_filename (file), line);
8307 /* Similar to tree_check_failed, except that we check for a class of tree
8308 code, given in CL. */
8310 void
8311 tree_class_check_failed (const_tree node, const enum tree_code_class cl,
8312 const char *file, int line, const char *function)
8314 internal_error
8315 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
8316 TREE_CODE_CLASS_STRING (cl),
8317 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
8318 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8321 /* Similar to tree_check_failed, except that instead of specifying a
8322 dozen codes, use the knowledge that they're all sequential. */
8324 void
8325 tree_range_check_failed (const_tree node, const char *file, int line,
8326 const char *function, enum tree_code c1,
8327 enum tree_code c2)
8329 char *buffer;
8330 unsigned length = 0;
8331 unsigned int c;
8333 for (c = c1; c <= c2; ++c)
8334 length += 4 + strlen (tree_code_name[c]);
8336 length += strlen ("expected ");
8337 buffer = (char *) alloca (length);
8338 length = 0;
8340 for (c = c1; c <= c2; ++c)
8342 const char *prefix = length ? " or " : "expected ";
8344 strcpy (buffer + length, prefix);
8345 length += strlen (prefix);
8346 strcpy (buffer + length, tree_code_name[c]);
8347 length += strlen (tree_code_name[c]);
8350 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8351 buffer, tree_code_name[TREE_CODE (node)],
8352 function, trim_filename (file), line);
8356 /* Similar to tree_check_failed, except that we check that a tree does
8357 not have the specified code, given in CL. */
8359 void
8360 tree_not_class_check_failed (const_tree node, const enum tree_code_class cl,
8361 const char *file, int line, const char *function)
8363 internal_error
8364 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
8365 TREE_CODE_CLASS_STRING (cl),
8366 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node))),
8367 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8371 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
8373 void
8374 omp_clause_check_failed (const_tree node, const char *file, int line,
8375 const char *function, enum omp_clause_code code)
8377 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
8378 omp_clause_code_name[code], tree_code_name[TREE_CODE (node)],
8379 function, trim_filename (file), line);
8383 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
8385 void
8386 omp_clause_range_check_failed (const_tree node, const char *file, int line,
8387 const char *function, enum omp_clause_code c1,
8388 enum omp_clause_code c2)
8390 char *buffer;
8391 unsigned length = 0;
8392 unsigned int c;
8394 for (c = c1; c <= c2; ++c)
8395 length += 4 + strlen (omp_clause_code_name[c]);
8397 length += strlen ("expected ");
8398 buffer = (char *) alloca (length);
8399 length = 0;
8401 for (c = c1; c <= c2; ++c)
8403 const char *prefix = length ? " or " : "expected ";
8405 strcpy (buffer + length, prefix);
8406 length += strlen (prefix);
8407 strcpy (buffer + length, omp_clause_code_name[c]);
8408 length += strlen (omp_clause_code_name[c]);
8411 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8412 buffer, omp_clause_code_name[TREE_CODE (node)],
8413 function, trim_filename (file), line);
8417 #undef DEFTREESTRUCT
8418 #define DEFTREESTRUCT(VAL, NAME) NAME,
8420 static const char *ts_enum_names[] = {
8421 #include "treestruct.def"
8423 #undef DEFTREESTRUCT
8425 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
8427 /* Similar to tree_class_check_failed, except that we check for
8428 whether CODE contains the tree structure identified by EN. */
8430 void
8431 tree_contains_struct_check_failed (const_tree node,
8432 const enum tree_node_structure_enum en,
8433 const char *file, int line,
8434 const char *function)
8436 internal_error
8437 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
8438 TS_ENUM_NAME(en),
8439 tree_code_name[TREE_CODE (node)], function, trim_filename (file), line);
8443 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
8444 (dynamically sized) vector. */
8446 void
8447 tree_vec_elt_check_failed (int idx, int len, const char *file, int line,
8448 const char *function)
8450 internal_error
8451 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
8452 idx + 1, len, function, trim_filename (file), line);
8455 /* Similar to above, except that the check is for the bounds of the operand
8456 vector of an expression node EXP. */
8458 void
8459 tree_operand_check_failed (int idx, const_tree exp, const char *file,
8460 int line, const char *function)
8462 int code = TREE_CODE (exp);
8463 internal_error
8464 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
8465 idx + 1, tree_code_name[code], TREE_OPERAND_LENGTH (exp),
8466 function, trim_filename (file), line);
8469 /* Similar to above, except that the check is for the number of
8470 operands of an OMP_CLAUSE node. */
8472 void
8473 omp_clause_operand_check_failed (int idx, const_tree t, const char *file,
8474 int line, const char *function)
8476 internal_error
8477 ("tree check: accessed operand %d of omp_clause %s with %d operands "
8478 "in %s, at %s:%d", idx + 1, omp_clause_code_name[OMP_CLAUSE_CODE (t)],
8479 omp_clause_num_ops [OMP_CLAUSE_CODE (t)], function,
8480 trim_filename (file), line);
8482 #endif /* ENABLE_TREE_CHECKING */
8484 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
8485 and mapped to the machine mode MODE. Initialize its fields and build
8486 the information necessary for debugging output. */
8488 static tree
8489 make_vector_type (tree innertype, int nunits, enum machine_mode mode)
8491 tree t;
8492 hashval_t hashcode = 0;
8494 t = make_node (VECTOR_TYPE);
8495 TREE_TYPE (t) = TYPE_MAIN_VARIANT (innertype);
8496 SET_TYPE_VECTOR_SUBPARTS (t, nunits);
8497 SET_TYPE_MODE (t, mode);
8499 if (TYPE_STRUCTURAL_EQUALITY_P (innertype))
8500 SET_TYPE_STRUCTURAL_EQUALITY (t);
8501 else if (TYPE_CANONICAL (innertype) != innertype
8502 || mode != VOIDmode)
8503 TYPE_CANONICAL (t)
8504 = make_vector_type (TYPE_CANONICAL (innertype), nunits, VOIDmode);
8506 layout_type (t);
8509 tree index = build_int_cst (NULL_TREE, nunits - 1);
8510 tree array = build_array_type (TYPE_MAIN_VARIANT (innertype),
8511 build_index_type (index));
8512 tree rt = make_node (RECORD_TYPE);
8514 TYPE_FIELDS (rt) = build_decl (UNKNOWN_LOCATION, FIELD_DECL,
8515 get_identifier ("f"), array);
8516 DECL_CONTEXT (TYPE_FIELDS (rt)) = rt;
8517 layout_type (rt);
8518 TYPE_DEBUG_REPRESENTATION_TYPE (t) = rt;
8519 /* In dwarfout.c, type lookup uses TYPE_UID numbers. We want to output
8520 the representation type, and we want to find that die when looking up
8521 the vector type. This is most easily achieved by making the TYPE_UID
8522 numbers equal. */
8523 TYPE_UID (rt) = TYPE_UID (t);
8526 hashcode = iterative_hash_host_wide_int (VECTOR_TYPE, hashcode);
8527 hashcode = iterative_hash_host_wide_int (nunits, hashcode);
8528 hashcode = iterative_hash_host_wide_int (mode, hashcode);
8529 hashcode = iterative_hash_object (TYPE_HASH (TREE_TYPE (t)), hashcode);
8530 t = type_hash_canon (hashcode, t);
8532 /* We have built a main variant, based on the main variant of the
8533 inner type. Use it to build the variant we return. */
8534 if ((TYPE_ATTRIBUTES (innertype) || TYPE_QUALS (innertype))
8535 && TREE_TYPE (t) != innertype)
8536 return build_type_attribute_qual_variant (t,
8537 TYPE_ATTRIBUTES (innertype),
8538 TYPE_QUALS (innertype));
8540 return t;
8543 static tree
8544 make_or_reuse_type (unsigned size, int unsignedp)
8546 if (size == INT_TYPE_SIZE)
8547 return unsignedp ? unsigned_type_node : integer_type_node;
8548 if (size == CHAR_TYPE_SIZE)
8549 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
8550 if (size == SHORT_TYPE_SIZE)
8551 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
8552 if (size == LONG_TYPE_SIZE)
8553 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
8554 if (size == LONG_LONG_TYPE_SIZE)
8555 return (unsignedp ? long_long_unsigned_type_node
8556 : long_long_integer_type_node);
8558 if (unsignedp)
8559 return make_unsigned_type (size);
8560 else
8561 return make_signed_type (size);
8564 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
8566 static tree
8567 make_or_reuse_fract_type (unsigned size, int unsignedp, int satp)
8569 if (satp)
8571 if (size == SHORT_FRACT_TYPE_SIZE)
8572 return unsignedp ? sat_unsigned_short_fract_type_node
8573 : sat_short_fract_type_node;
8574 if (size == FRACT_TYPE_SIZE)
8575 return unsignedp ? sat_unsigned_fract_type_node : sat_fract_type_node;
8576 if (size == LONG_FRACT_TYPE_SIZE)
8577 return unsignedp ? sat_unsigned_long_fract_type_node
8578 : sat_long_fract_type_node;
8579 if (size == LONG_LONG_FRACT_TYPE_SIZE)
8580 return unsignedp ? sat_unsigned_long_long_fract_type_node
8581 : sat_long_long_fract_type_node;
8583 else
8585 if (size == SHORT_FRACT_TYPE_SIZE)
8586 return unsignedp ? unsigned_short_fract_type_node
8587 : short_fract_type_node;
8588 if (size == FRACT_TYPE_SIZE)
8589 return unsignedp ? unsigned_fract_type_node : fract_type_node;
8590 if (size == LONG_FRACT_TYPE_SIZE)
8591 return unsignedp ? unsigned_long_fract_type_node
8592 : long_fract_type_node;
8593 if (size == LONG_LONG_FRACT_TYPE_SIZE)
8594 return unsignedp ? unsigned_long_long_fract_type_node
8595 : long_long_fract_type_node;
8598 return make_fract_type (size, unsignedp, satp);
8601 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
8603 static tree
8604 make_or_reuse_accum_type (unsigned size, int unsignedp, int satp)
8606 if (satp)
8608 if (size == SHORT_ACCUM_TYPE_SIZE)
8609 return unsignedp ? sat_unsigned_short_accum_type_node
8610 : sat_short_accum_type_node;
8611 if (size == ACCUM_TYPE_SIZE)
8612 return unsignedp ? sat_unsigned_accum_type_node : sat_accum_type_node;
8613 if (size == LONG_ACCUM_TYPE_SIZE)
8614 return unsignedp ? sat_unsigned_long_accum_type_node
8615 : sat_long_accum_type_node;
8616 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
8617 return unsignedp ? sat_unsigned_long_long_accum_type_node
8618 : sat_long_long_accum_type_node;
8620 else
8622 if (size == SHORT_ACCUM_TYPE_SIZE)
8623 return unsignedp ? unsigned_short_accum_type_node
8624 : short_accum_type_node;
8625 if (size == ACCUM_TYPE_SIZE)
8626 return unsignedp ? unsigned_accum_type_node : accum_type_node;
8627 if (size == LONG_ACCUM_TYPE_SIZE)
8628 return unsignedp ? unsigned_long_accum_type_node
8629 : long_accum_type_node;
8630 if (size == LONG_LONG_ACCUM_TYPE_SIZE)
8631 return unsignedp ? unsigned_long_long_accum_type_node
8632 : long_long_accum_type_node;
8635 return make_accum_type (size, unsignedp, satp);
8638 /* Create nodes for all integer types (and error_mark_node) using the sizes
8639 of C datatypes. The caller should call set_sizetype soon after calling
8640 this function to select one of the types as sizetype. */
8642 void
8643 build_common_tree_nodes (bool signed_char, bool signed_sizetype)
8645 error_mark_node = make_node (ERROR_MARK);
8646 TREE_TYPE (error_mark_node) = error_mark_node;
8648 initialize_sizetypes (signed_sizetype);
8650 /* Define both `signed char' and `unsigned char'. */
8651 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
8652 TYPE_STRING_FLAG (signed_char_type_node) = 1;
8653 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
8654 TYPE_STRING_FLAG (unsigned_char_type_node) = 1;
8656 /* Define `char', which is like either `signed char' or `unsigned char'
8657 but not the same as either. */
8658 char_type_node
8659 = (signed_char
8660 ? make_signed_type (CHAR_TYPE_SIZE)
8661 : make_unsigned_type (CHAR_TYPE_SIZE));
8662 TYPE_STRING_FLAG (char_type_node) = 1;
8664 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
8665 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
8666 integer_type_node = make_signed_type (INT_TYPE_SIZE);
8667 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
8668 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
8669 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
8670 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
8671 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
8673 /* Define a boolean type. This type only represents boolean values but
8674 may be larger than char depending on the value of BOOL_TYPE_SIZE.
8675 Front ends which want to override this size (i.e. Java) can redefine
8676 boolean_type_node before calling build_common_tree_nodes_2. */
8677 boolean_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
8678 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
8679 TYPE_MAX_VALUE (boolean_type_node) = build_int_cst (boolean_type_node, 1);
8680 TYPE_PRECISION (boolean_type_node) = 1;
8682 /* Fill in the rest of the sized types. Reuse existing type nodes
8683 when possible. */
8684 intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 0);
8685 intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 0);
8686 intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 0);
8687 intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 0);
8688 intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 0);
8690 unsigned_intQI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (QImode), 1);
8691 unsigned_intHI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (HImode), 1);
8692 unsigned_intSI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (SImode), 1);
8693 unsigned_intDI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (DImode), 1);
8694 unsigned_intTI_type_node = make_or_reuse_type (GET_MODE_BITSIZE (TImode), 1);
8696 access_public_node = get_identifier ("public");
8697 access_protected_node = get_identifier ("protected");
8698 access_private_node = get_identifier ("private");
8701 /* Call this function after calling build_common_tree_nodes and set_sizetype.
8702 It will create several other common tree nodes. */
8704 void
8705 build_common_tree_nodes_2 (int short_double)
8707 /* Define these next since types below may used them. */
8708 integer_zero_node = build_int_cst (NULL_TREE, 0);
8709 integer_one_node = build_int_cst (NULL_TREE, 1);
8710 integer_minus_one_node = build_int_cst (NULL_TREE, -1);
8712 size_zero_node = size_int (0);
8713 size_one_node = size_int (1);
8714 bitsize_zero_node = bitsize_int (0);
8715 bitsize_one_node = bitsize_int (1);
8716 bitsize_unit_node = bitsize_int (BITS_PER_UNIT);
8718 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
8719 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
8721 void_type_node = make_node (VOID_TYPE);
8722 layout_type (void_type_node);
8724 /* We are not going to have real types in C with less than byte alignment,
8725 so we might as well not have any types that claim to have it. */
8726 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
8727 TYPE_USER_ALIGN (void_type_node) = 0;
8729 null_pointer_node = build_int_cst (build_pointer_type (void_type_node), 0);
8730 layout_type (TREE_TYPE (null_pointer_node));
8732 ptr_type_node = build_pointer_type (void_type_node);
8733 const_ptr_type_node
8734 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
8735 fileptr_type_node = ptr_type_node;
8737 float_type_node = make_node (REAL_TYPE);
8738 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
8739 layout_type (float_type_node);
8741 double_type_node = make_node (REAL_TYPE);
8742 if (short_double)
8743 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
8744 else
8745 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
8746 layout_type (double_type_node);
8748 long_double_type_node = make_node (REAL_TYPE);
8749 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
8750 layout_type (long_double_type_node);
8752 float_ptr_type_node = build_pointer_type (float_type_node);
8753 double_ptr_type_node = build_pointer_type (double_type_node);
8754 long_double_ptr_type_node = build_pointer_type (long_double_type_node);
8755 integer_ptr_type_node = build_pointer_type (integer_type_node);
8757 /* Fixed size integer types. */
8758 uint32_type_node = build_nonstandard_integer_type (32, true);
8759 uint64_type_node = build_nonstandard_integer_type (64, true);
8761 /* Decimal float types. */
8762 dfloat32_type_node = make_node (REAL_TYPE);
8763 TYPE_PRECISION (dfloat32_type_node) = DECIMAL32_TYPE_SIZE;
8764 layout_type (dfloat32_type_node);
8765 SET_TYPE_MODE (dfloat32_type_node, SDmode);
8766 dfloat32_ptr_type_node = build_pointer_type (dfloat32_type_node);
8768 dfloat64_type_node = make_node (REAL_TYPE);
8769 TYPE_PRECISION (dfloat64_type_node) = DECIMAL64_TYPE_SIZE;
8770 layout_type (dfloat64_type_node);
8771 SET_TYPE_MODE (dfloat64_type_node, DDmode);
8772 dfloat64_ptr_type_node = build_pointer_type (dfloat64_type_node);
8774 dfloat128_type_node = make_node (REAL_TYPE);
8775 TYPE_PRECISION (dfloat128_type_node) = DECIMAL128_TYPE_SIZE;
8776 layout_type (dfloat128_type_node);
8777 SET_TYPE_MODE (dfloat128_type_node, TDmode);
8778 dfloat128_ptr_type_node = build_pointer_type (dfloat128_type_node);
8780 complex_integer_type_node = build_complex_type (integer_type_node);
8781 complex_float_type_node = build_complex_type (float_type_node);
8782 complex_double_type_node = build_complex_type (double_type_node);
8783 complex_long_double_type_node = build_complex_type (long_double_type_node);
8785 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
8786 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
8787 sat_ ## KIND ## _type_node = \
8788 make_sat_signed_ ## KIND ## _type (SIZE); \
8789 sat_unsigned_ ## KIND ## _type_node = \
8790 make_sat_unsigned_ ## KIND ## _type (SIZE); \
8791 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
8792 unsigned_ ## KIND ## _type_node = \
8793 make_unsigned_ ## KIND ## _type (SIZE);
8795 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
8796 sat_ ## WIDTH ## KIND ## _type_node = \
8797 make_sat_signed_ ## KIND ## _type (SIZE); \
8798 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
8799 make_sat_unsigned_ ## KIND ## _type (SIZE); \
8800 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
8801 unsigned_ ## WIDTH ## KIND ## _type_node = \
8802 make_unsigned_ ## KIND ## _type (SIZE);
8804 /* Make fixed-point type nodes based on four different widths. */
8805 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
8806 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
8807 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
8808 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
8809 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
8811 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
8812 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
8813 NAME ## _type_node = \
8814 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
8815 u ## NAME ## _type_node = \
8816 make_or_reuse_unsigned_ ## KIND ## _type \
8817 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
8818 sat_ ## NAME ## _type_node = \
8819 make_or_reuse_sat_signed_ ## KIND ## _type \
8820 (GET_MODE_BITSIZE (MODE ## mode)); \
8821 sat_u ## NAME ## _type_node = \
8822 make_or_reuse_sat_unsigned_ ## KIND ## _type \
8823 (GET_MODE_BITSIZE (U ## MODE ## mode));
8825 /* Fixed-point type and mode nodes. */
8826 MAKE_FIXED_TYPE_NODE_FAMILY (fract, FRACT)
8827 MAKE_FIXED_TYPE_NODE_FAMILY (accum, ACCUM)
8828 MAKE_FIXED_MODE_NODE (fract, qq, QQ)
8829 MAKE_FIXED_MODE_NODE (fract, hq, HQ)
8830 MAKE_FIXED_MODE_NODE (fract, sq, SQ)
8831 MAKE_FIXED_MODE_NODE (fract, dq, DQ)
8832 MAKE_FIXED_MODE_NODE (fract, tq, TQ)
8833 MAKE_FIXED_MODE_NODE (accum, ha, HA)
8834 MAKE_FIXED_MODE_NODE (accum, sa, SA)
8835 MAKE_FIXED_MODE_NODE (accum, da, DA)
8836 MAKE_FIXED_MODE_NODE (accum, ta, TA)
8839 tree t = targetm.build_builtin_va_list ();
8841 /* Many back-ends define record types without setting TYPE_NAME.
8842 If we copied the record type here, we'd keep the original
8843 record type without a name. This breaks name mangling. So,
8844 don't copy record types and let c_common_nodes_and_builtins()
8845 declare the type to be __builtin_va_list. */
8846 if (TREE_CODE (t) != RECORD_TYPE)
8847 t = build_variant_type_copy (t);
8849 va_list_type_node = t;
8853 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
8855 static void
8856 local_define_builtin (const char *name, tree type, enum built_in_function code,
8857 const char *library_name, int ecf_flags)
8859 tree decl;
8861 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
8862 library_name, NULL_TREE);
8863 if (ecf_flags & ECF_CONST)
8864 TREE_READONLY (decl) = 1;
8865 if (ecf_flags & ECF_PURE)
8866 DECL_PURE_P (decl) = 1;
8867 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
8868 DECL_LOOPING_CONST_OR_PURE_P (decl) = 1;
8869 if (ecf_flags & ECF_NORETURN)
8870 TREE_THIS_VOLATILE (decl) = 1;
8871 if (ecf_flags & ECF_NOTHROW)
8872 TREE_NOTHROW (decl) = 1;
8873 if (ecf_flags & ECF_MALLOC)
8874 DECL_IS_MALLOC (decl) = 1;
8876 built_in_decls[code] = decl;
8877 implicit_built_in_decls[code] = decl;
8880 /* Call this function after instantiating all builtins that the language
8881 front end cares about. This will build the rest of the builtins that
8882 are relied upon by the tree optimizers and the middle-end. */
8884 void
8885 build_common_builtin_nodes (void)
8887 tree tmp, ftype;
8889 if (built_in_decls[BUILT_IN_MEMCPY] == NULL
8890 || built_in_decls[BUILT_IN_MEMMOVE] == NULL)
8892 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
8893 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
8894 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
8895 ftype = build_function_type (ptr_type_node, tmp);
8897 if (built_in_decls[BUILT_IN_MEMCPY] == NULL)
8898 local_define_builtin ("__builtin_memcpy", ftype, BUILT_IN_MEMCPY,
8899 "memcpy", ECF_NOTHROW);
8900 if (built_in_decls[BUILT_IN_MEMMOVE] == NULL)
8901 local_define_builtin ("__builtin_memmove", ftype, BUILT_IN_MEMMOVE,
8902 "memmove", ECF_NOTHROW);
8905 if (built_in_decls[BUILT_IN_MEMCMP] == NULL)
8907 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
8908 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
8909 tmp = tree_cons (NULL_TREE, const_ptr_type_node, tmp);
8910 ftype = build_function_type (integer_type_node, tmp);
8911 local_define_builtin ("__builtin_memcmp", ftype, BUILT_IN_MEMCMP,
8912 "memcmp", ECF_PURE | ECF_NOTHROW);
8915 if (built_in_decls[BUILT_IN_MEMSET] == NULL)
8917 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
8918 tmp = tree_cons (NULL_TREE, integer_type_node, tmp);
8919 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
8920 ftype = build_function_type (ptr_type_node, tmp);
8921 local_define_builtin ("__builtin_memset", ftype, BUILT_IN_MEMSET,
8922 "memset", ECF_NOTHROW);
8925 if (built_in_decls[BUILT_IN_ALLOCA] == NULL)
8927 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
8928 ftype = build_function_type (ptr_type_node, tmp);
8929 local_define_builtin ("__builtin_alloca", ftype, BUILT_IN_ALLOCA,
8930 "alloca", ECF_NOTHROW | ECF_MALLOC);
8933 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8934 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
8935 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
8936 ftype = build_function_type (void_type_node, tmp);
8937 local_define_builtin ("__builtin_init_trampoline", ftype,
8938 BUILT_IN_INIT_TRAMPOLINE,
8939 "__builtin_init_trampoline", ECF_NOTHROW);
8941 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8942 ftype = build_function_type (ptr_type_node, tmp);
8943 local_define_builtin ("__builtin_adjust_trampoline", ftype,
8944 BUILT_IN_ADJUST_TRAMPOLINE,
8945 "__builtin_adjust_trampoline",
8946 ECF_CONST | ECF_NOTHROW);
8948 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8949 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
8950 ftype = build_function_type (void_type_node, tmp);
8951 local_define_builtin ("__builtin_nonlocal_goto", ftype,
8952 BUILT_IN_NONLOCAL_GOTO,
8953 "__builtin_nonlocal_goto",
8954 ECF_NORETURN | ECF_NOTHROW);
8956 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8957 tmp = tree_cons (NULL_TREE, ptr_type_node, tmp);
8958 ftype = build_function_type (void_type_node, tmp);
8959 local_define_builtin ("__builtin_setjmp_setup", ftype,
8960 BUILT_IN_SETJMP_SETUP,
8961 "__builtin_setjmp_setup", ECF_NOTHROW);
8963 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8964 ftype = build_function_type (ptr_type_node, tmp);
8965 local_define_builtin ("__builtin_setjmp_dispatcher", ftype,
8966 BUILT_IN_SETJMP_DISPATCHER,
8967 "__builtin_setjmp_dispatcher",
8968 ECF_PURE | ECF_NOTHROW);
8970 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8971 ftype = build_function_type (void_type_node, tmp);
8972 local_define_builtin ("__builtin_setjmp_receiver", ftype,
8973 BUILT_IN_SETJMP_RECEIVER,
8974 "__builtin_setjmp_receiver", ECF_NOTHROW);
8976 ftype = build_function_type (ptr_type_node, void_list_node);
8977 local_define_builtin ("__builtin_stack_save", ftype, BUILT_IN_STACK_SAVE,
8978 "__builtin_stack_save", ECF_NOTHROW);
8980 tmp = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
8981 ftype = build_function_type (void_type_node, tmp);
8982 local_define_builtin ("__builtin_stack_restore", ftype,
8983 BUILT_IN_STACK_RESTORE,
8984 "__builtin_stack_restore", ECF_NOTHROW);
8986 ftype = build_function_type (void_type_node, void_list_node);
8987 local_define_builtin ("__builtin_profile_func_enter", ftype,
8988 BUILT_IN_PROFILE_FUNC_ENTER, "profile_func_enter", 0);
8989 local_define_builtin ("__builtin_profile_func_exit", ftype,
8990 BUILT_IN_PROFILE_FUNC_EXIT, "profile_func_exit", 0);
8992 /* Complex multiplication and division. These are handled as builtins
8993 rather than optabs because emit_library_call_value doesn't support
8994 complex. Further, we can do slightly better with folding these
8995 beasties if the real and complex parts of the arguments are separate. */
8997 int mode;
8999 for (mode = MIN_MODE_COMPLEX_FLOAT; mode <= MAX_MODE_COMPLEX_FLOAT; ++mode)
9001 char mode_name_buf[4], *q;
9002 const char *p;
9003 enum built_in_function mcode, dcode;
9004 tree type, inner_type;
9006 type = lang_hooks.types.type_for_mode ((enum machine_mode) mode, 0);
9007 if (type == NULL)
9008 continue;
9009 inner_type = TREE_TYPE (type);
9011 tmp = tree_cons (NULL_TREE, inner_type, void_list_node);
9012 tmp = tree_cons (NULL_TREE, inner_type, tmp);
9013 tmp = tree_cons (NULL_TREE, inner_type, tmp);
9014 tmp = tree_cons (NULL_TREE, inner_type, tmp);
9015 ftype = build_function_type (type, tmp);
9017 mcode = ((enum built_in_function)
9018 (BUILT_IN_COMPLEX_MUL_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
9019 dcode = ((enum built_in_function)
9020 (BUILT_IN_COMPLEX_DIV_MIN + mode - MIN_MODE_COMPLEX_FLOAT));
9022 for (p = GET_MODE_NAME (mode), q = mode_name_buf; *p; p++, q++)
9023 *q = TOLOWER (*p);
9024 *q = '\0';
9026 built_in_names[mcode] = concat ("__mul", mode_name_buf, "3", NULL);
9027 local_define_builtin (built_in_names[mcode], ftype, mcode,
9028 built_in_names[mcode], ECF_CONST | ECF_NOTHROW);
9030 built_in_names[dcode] = concat ("__div", mode_name_buf, "3", NULL);
9031 local_define_builtin (built_in_names[dcode], ftype, dcode,
9032 built_in_names[dcode], ECF_CONST | ECF_NOTHROW);
9037 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
9038 better way.
9040 If we requested a pointer to a vector, build up the pointers that
9041 we stripped off while looking for the inner type. Similarly for
9042 return values from functions.
9044 The argument TYPE is the top of the chain, and BOTTOM is the
9045 new type which we will point to. */
9047 tree
9048 reconstruct_complex_type (tree type, tree bottom)
9050 tree inner, outer;
9052 if (TREE_CODE (type) == POINTER_TYPE)
9054 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9055 outer = build_pointer_type_for_mode (inner, TYPE_MODE (type),
9056 TYPE_REF_CAN_ALIAS_ALL (type));
9058 else if (TREE_CODE (type) == REFERENCE_TYPE)
9060 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9061 outer = build_reference_type_for_mode (inner, TYPE_MODE (type),
9062 TYPE_REF_CAN_ALIAS_ALL (type));
9064 else if (TREE_CODE (type) == ARRAY_TYPE)
9066 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9067 outer = build_array_type (inner, TYPE_DOMAIN (type));
9069 else if (TREE_CODE (type) == FUNCTION_TYPE)
9071 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9072 outer = build_function_type (inner, TYPE_ARG_TYPES (type));
9074 else if (TREE_CODE (type) == METHOD_TYPE)
9076 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9077 /* The build_method_type_directly() routine prepends 'this' to argument list,
9078 so we must compensate by getting rid of it. */
9079 outer
9080 = build_method_type_directly
9081 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type))),
9082 inner,
9083 TREE_CHAIN (TYPE_ARG_TYPES (type)));
9085 else if (TREE_CODE (type) == OFFSET_TYPE)
9087 inner = reconstruct_complex_type (TREE_TYPE (type), bottom);
9088 outer = build_offset_type (TYPE_OFFSET_BASETYPE (type), inner);
9090 else
9091 return bottom;
9093 return build_qualified_type (outer, TYPE_QUALS (type));
9096 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
9097 the inner type. */
9098 tree
9099 build_vector_type_for_mode (tree innertype, enum machine_mode mode)
9101 int nunits;
9103 switch (GET_MODE_CLASS (mode))
9105 case MODE_VECTOR_INT:
9106 case MODE_VECTOR_FLOAT:
9107 case MODE_VECTOR_FRACT:
9108 case MODE_VECTOR_UFRACT:
9109 case MODE_VECTOR_ACCUM:
9110 case MODE_VECTOR_UACCUM:
9111 nunits = GET_MODE_NUNITS (mode);
9112 break;
9114 case MODE_INT:
9115 /* Check that there are no leftover bits. */
9116 gcc_assert (GET_MODE_BITSIZE (mode)
9117 % TREE_INT_CST_LOW (TYPE_SIZE (innertype)) == 0);
9119 nunits = GET_MODE_BITSIZE (mode)
9120 / TREE_INT_CST_LOW (TYPE_SIZE (innertype));
9121 break;
9123 default:
9124 gcc_unreachable ();
9127 return make_vector_type (innertype, nunits, mode);
9130 /* Similarly, but takes the inner type and number of units, which must be
9131 a power of two. */
9133 tree
9134 build_vector_type (tree innertype, int nunits)
9136 return make_vector_type (innertype, nunits, VOIDmode);
9139 /* Similarly, but takes the inner type and number of units, which must be
9140 a power of two. */
9142 tree
9143 build_opaque_vector_type (tree innertype, int nunits)
9145 tree t;
9146 innertype = build_distinct_type_copy (innertype);
9147 t = make_vector_type (innertype, nunits, VOIDmode);
9148 TYPE_VECTOR_OPAQUE (t) = true;
9149 return t;
9153 /* Build RESX_EXPR with given REGION_NUMBER. */
9154 tree
9155 build_resx (int region_number)
9157 tree t;
9158 t = build1 (RESX_EXPR, void_type_node,
9159 build_int_cst (NULL_TREE, region_number));
9160 return t;
9163 /* Given an initializer INIT, return TRUE if INIT is zero or some
9164 aggregate of zeros. Otherwise return FALSE. */
9165 bool
9166 initializer_zerop (const_tree init)
9168 tree elt;
9170 STRIP_NOPS (init);
9172 switch (TREE_CODE (init))
9174 case INTEGER_CST:
9175 return integer_zerop (init);
9177 case REAL_CST:
9178 /* ??? Note that this is not correct for C4X float formats. There,
9179 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
9180 negative exponent. */
9181 return real_zerop (init)
9182 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init));
9184 case FIXED_CST:
9185 return fixed_zerop (init);
9187 case COMPLEX_CST:
9188 return integer_zerop (init)
9189 || (real_zerop (init)
9190 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init)))
9191 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init))));
9193 case VECTOR_CST:
9194 for (elt = TREE_VECTOR_CST_ELTS (init); elt; elt = TREE_CHAIN (elt))
9195 if (!initializer_zerop (TREE_VALUE (elt)))
9196 return false;
9197 return true;
9199 case CONSTRUCTOR:
9201 unsigned HOST_WIDE_INT idx;
9203 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init), idx, elt)
9204 if (!initializer_zerop (elt))
9205 return false;
9206 return true;
9209 default:
9210 return false;
9214 /* Build an empty statement at location LOC. */
9216 tree
9217 build_empty_stmt (location_t loc)
9219 tree t = build1 (NOP_EXPR, void_type_node, size_zero_node);
9220 SET_EXPR_LOCATION (t, loc);
9221 return t;
9225 /* Build an OpenMP clause with code CODE. LOC is the location of the
9226 clause. */
9228 tree
9229 build_omp_clause (location_t loc, enum omp_clause_code code)
9231 tree t;
9232 int size, length;
9234 length = omp_clause_num_ops[code];
9235 size = (sizeof (struct tree_omp_clause) + (length - 1) * sizeof (tree));
9237 t = GGC_NEWVAR (union tree_node, size);
9238 memset (t, 0, size);
9239 TREE_SET_CODE (t, OMP_CLAUSE);
9240 OMP_CLAUSE_SET_CODE (t, code);
9241 OMP_CLAUSE_LOCATION (t) = loc;
9243 #ifdef GATHER_STATISTICS
9244 tree_node_counts[(int) omp_clause_kind]++;
9245 tree_node_sizes[(int) omp_clause_kind] += size;
9246 #endif
9248 return t;
9251 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
9252 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
9253 Except for the CODE and operand count field, other storage for the
9254 object is initialized to zeros. */
9256 tree
9257 build_vl_exp_stat (enum tree_code code, int len MEM_STAT_DECL)
9259 tree t;
9260 int length = (len - 1) * sizeof (tree) + sizeof (struct tree_exp);
9262 gcc_assert (TREE_CODE_CLASS (code) == tcc_vl_exp);
9263 gcc_assert (len >= 1);
9265 #ifdef GATHER_STATISTICS
9266 tree_node_counts[(int) e_kind]++;
9267 tree_node_sizes[(int) e_kind] += length;
9268 #endif
9270 t = (tree) ggc_alloc_zone_pass_stat (length, &tree_zone);
9272 memset (t, 0, length);
9274 TREE_SET_CODE (t, code);
9276 /* Can't use TREE_OPERAND to store the length because if checking is
9277 enabled, it will try to check the length before we store it. :-P */
9278 t->exp.operands[0] = build_int_cst (sizetype, len);
9280 return t;
9284 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE
9285 and FN and a null static chain slot. ARGLIST is a TREE_LIST of the
9286 arguments. */
9288 tree
9289 build_call_list (tree return_type, tree fn, tree arglist)
9291 tree t;
9292 int i;
9294 t = build_vl_exp (CALL_EXPR, list_length (arglist) + 3);
9295 TREE_TYPE (t) = return_type;
9296 CALL_EXPR_FN (t) = fn;
9297 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
9298 for (i = 0; arglist; arglist = TREE_CHAIN (arglist), i++)
9299 CALL_EXPR_ARG (t, i) = TREE_VALUE (arglist);
9300 process_call_operands (t);
9301 return t;
9304 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9305 FN and a null static chain slot. NARGS is the number of call arguments
9306 which are specified as "..." arguments. */
9308 tree
9309 build_call_nary (tree return_type, tree fn, int nargs, ...)
9311 tree ret;
9312 va_list args;
9313 va_start (args, nargs);
9314 ret = build_call_valist (return_type, fn, nargs, args);
9315 va_end (args);
9316 return ret;
9319 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9320 FN and a null static chain slot. NARGS is the number of call arguments
9321 which are specified as a va_list ARGS. */
9323 tree
9324 build_call_valist (tree return_type, tree fn, int nargs, va_list args)
9326 tree t;
9327 int i;
9329 t = build_vl_exp (CALL_EXPR, nargs + 3);
9330 TREE_TYPE (t) = return_type;
9331 CALL_EXPR_FN (t) = fn;
9332 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
9333 for (i = 0; i < nargs; i++)
9334 CALL_EXPR_ARG (t, i) = va_arg (args, tree);
9335 process_call_operands (t);
9336 return t;
9339 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9340 FN and a null static chain slot. NARGS is the number of call arguments
9341 which are specified as a tree array ARGS. */
9343 tree
9344 build_call_array_loc (location_t loc, tree return_type, tree fn,
9345 int nargs, const tree *args)
9347 tree t;
9348 int i;
9350 t = build_vl_exp (CALL_EXPR, nargs + 3);
9351 TREE_TYPE (t) = return_type;
9352 CALL_EXPR_FN (t) = fn;
9353 CALL_EXPR_STATIC_CHAIN (t) = NULL_TREE;
9354 for (i = 0; i < nargs; i++)
9355 CALL_EXPR_ARG (t, i) = args[i];
9356 process_call_operands (t);
9357 SET_EXPR_LOCATION (t, loc);
9358 return t;
9361 /* Like build_call_array, but takes a VEC. */
9363 tree
9364 build_call_vec (tree return_type, tree fn, VEC(tree,gc) *args)
9366 tree ret, t;
9367 unsigned int ix;
9369 ret = build_vl_exp (CALL_EXPR, VEC_length (tree, args) + 3);
9370 TREE_TYPE (ret) = return_type;
9371 CALL_EXPR_FN (ret) = fn;
9372 CALL_EXPR_STATIC_CHAIN (ret) = NULL_TREE;
9373 for (ix = 0; VEC_iterate (tree, args, ix, t); ++ix)
9374 CALL_EXPR_ARG (ret, ix) = t;
9375 process_call_operands (ret);
9376 return ret;
9380 /* Returns true if it is possible to prove that the index of
9381 an array access REF (an ARRAY_REF expression) falls into the
9382 array bounds. */
9384 bool
9385 in_array_bounds_p (tree ref)
9387 tree idx = TREE_OPERAND (ref, 1);
9388 tree min, max;
9390 if (TREE_CODE (idx) != INTEGER_CST)
9391 return false;
9393 min = array_ref_low_bound (ref);
9394 max = array_ref_up_bound (ref);
9395 if (!min
9396 || !max
9397 || TREE_CODE (min) != INTEGER_CST
9398 || TREE_CODE (max) != INTEGER_CST)
9399 return false;
9401 if (tree_int_cst_lt (idx, min)
9402 || tree_int_cst_lt (max, idx))
9403 return false;
9405 return true;
9408 /* Returns true if it is possible to prove that the range of
9409 an array access REF (an ARRAY_RANGE_REF expression) falls
9410 into the array bounds. */
9412 bool
9413 range_in_array_bounds_p (tree ref)
9415 tree domain_type = TYPE_DOMAIN (TREE_TYPE (ref));
9416 tree range_min, range_max, min, max;
9418 range_min = TYPE_MIN_VALUE (domain_type);
9419 range_max = TYPE_MAX_VALUE (domain_type);
9420 if (!range_min
9421 || !range_max
9422 || TREE_CODE (range_min) != INTEGER_CST
9423 || TREE_CODE (range_max) != INTEGER_CST)
9424 return false;
9426 min = array_ref_low_bound (ref);
9427 max = array_ref_up_bound (ref);
9428 if (!min
9429 || !max
9430 || TREE_CODE (min) != INTEGER_CST
9431 || TREE_CODE (max) != INTEGER_CST)
9432 return false;
9434 if (tree_int_cst_lt (range_min, min)
9435 || tree_int_cst_lt (max, range_max))
9436 return false;
9438 return true;
9441 /* Return true if T (assumed to be a DECL) must be assigned a memory
9442 location. */
9444 bool
9445 needs_to_live_in_memory (const_tree t)
9447 if (TREE_CODE (t) == SSA_NAME)
9448 t = SSA_NAME_VAR (t);
9450 return (TREE_ADDRESSABLE (t)
9451 || is_global_var (t)
9452 || (TREE_CODE (t) == RESULT_DECL
9453 && aggregate_value_p (t, current_function_decl)));
9456 /* There are situations in which a language considers record types
9457 compatible which have different field lists. Decide if two fields
9458 are compatible. It is assumed that the parent records are compatible. */
9460 bool
9461 fields_compatible_p (const_tree f1, const_tree f2)
9463 if (!operand_equal_p (DECL_FIELD_BIT_OFFSET (f1),
9464 DECL_FIELD_BIT_OFFSET (f2), OEP_ONLY_CONST))
9465 return false;
9467 if (!operand_equal_p (DECL_FIELD_OFFSET (f1),
9468 DECL_FIELD_OFFSET (f2), OEP_ONLY_CONST))
9469 return false;
9471 if (!types_compatible_p (TREE_TYPE (f1), TREE_TYPE (f2)))
9472 return false;
9474 return true;
9477 /* Locate within RECORD a field that is compatible with ORIG_FIELD. */
9479 tree
9480 find_compatible_field (tree record, tree orig_field)
9482 tree f;
9484 for (f = TYPE_FIELDS (record); f ; f = TREE_CHAIN (f))
9485 if (TREE_CODE (f) == FIELD_DECL
9486 && fields_compatible_p (f, orig_field))
9487 return f;
9489 /* ??? Why isn't this on the main fields list? */
9490 f = TYPE_VFIELD (record);
9491 if (f && TREE_CODE (f) == FIELD_DECL
9492 && fields_compatible_p (f, orig_field))
9493 return f;
9495 /* ??? We should abort here, but Java appears to do Bad Things
9496 with inherited fields. */
9497 return orig_field;
9500 /* Return value of a constant X and sign-extend it. */
9502 HOST_WIDE_INT
9503 int_cst_value (const_tree x)
9505 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
9506 unsigned HOST_WIDE_INT val = TREE_INT_CST_LOW (x);
9508 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
9509 gcc_assert (TREE_INT_CST_HIGH (x) == 0
9510 || TREE_INT_CST_HIGH (x) == -1);
9512 if (bits < HOST_BITS_PER_WIDE_INT)
9514 bool negative = ((val >> (bits - 1)) & 1) != 0;
9515 if (negative)
9516 val |= (~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1;
9517 else
9518 val &= ~((~(unsigned HOST_WIDE_INT) 0) << (bits - 1) << 1);
9521 return val;
9524 /* Return value of a constant X and sign-extend it. */
9526 HOST_WIDEST_INT
9527 widest_int_cst_value (const_tree x)
9529 unsigned bits = TYPE_PRECISION (TREE_TYPE (x));
9530 unsigned HOST_WIDEST_INT val = TREE_INT_CST_LOW (x);
9532 #if HOST_BITS_PER_WIDEST_INT > HOST_BITS_PER_WIDE_INT
9533 gcc_assert (HOST_BITS_PER_WIDEST_INT >= 2 * HOST_BITS_PER_WIDE_INT);
9534 val |= (((unsigned HOST_WIDEST_INT) TREE_INT_CST_HIGH (x))
9535 << HOST_BITS_PER_WIDE_INT);
9536 #else
9537 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
9538 gcc_assert (TREE_INT_CST_HIGH (x) == 0
9539 || TREE_INT_CST_HIGH (x) == -1);
9540 #endif
9542 if (bits < HOST_BITS_PER_WIDEST_INT)
9544 bool negative = ((val >> (bits - 1)) & 1) != 0;
9545 if (negative)
9546 val |= (~(unsigned HOST_WIDEST_INT) 0) << (bits - 1) << 1;
9547 else
9548 val &= ~((~(unsigned HOST_WIDEST_INT) 0) << (bits - 1) << 1);
9551 return val;
9554 /* If TYPE is an integral type, return an equivalent type which is
9555 unsigned iff UNSIGNEDP is true. If TYPE is not an integral type,
9556 return TYPE itself. */
9558 tree
9559 signed_or_unsigned_type_for (int unsignedp, tree type)
9561 tree t = type;
9562 if (POINTER_TYPE_P (type))
9563 t = size_type_node;
9565 if (!INTEGRAL_TYPE_P (t) || TYPE_UNSIGNED (t) == unsignedp)
9566 return t;
9568 return lang_hooks.types.type_for_size (TYPE_PRECISION (t), unsignedp);
9571 /* Returns unsigned variant of TYPE. */
9573 tree
9574 unsigned_type_for (tree type)
9576 return signed_or_unsigned_type_for (1, type);
9579 /* Returns signed variant of TYPE. */
9581 tree
9582 signed_type_for (tree type)
9584 return signed_or_unsigned_type_for (0, type);
9587 /* Returns the largest value obtainable by casting something in INNER type to
9588 OUTER type. */
9590 tree
9591 upper_bound_in_type (tree outer, tree inner)
9593 unsigned HOST_WIDE_INT lo, hi;
9594 unsigned int det = 0;
9595 unsigned oprec = TYPE_PRECISION (outer);
9596 unsigned iprec = TYPE_PRECISION (inner);
9597 unsigned prec;
9599 /* Compute a unique number for every combination. */
9600 det |= (oprec > iprec) ? 4 : 0;
9601 det |= TYPE_UNSIGNED (outer) ? 2 : 0;
9602 det |= TYPE_UNSIGNED (inner) ? 1 : 0;
9604 /* Determine the exponent to use. */
9605 switch (det)
9607 case 0:
9608 case 1:
9609 /* oprec <= iprec, outer: signed, inner: don't care. */
9610 prec = oprec - 1;
9611 break;
9612 case 2:
9613 case 3:
9614 /* oprec <= iprec, outer: unsigned, inner: don't care. */
9615 prec = oprec;
9616 break;
9617 case 4:
9618 /* oprec > iprec, outer: signed, inner: signed. */
9619 prec = iprec - 1;
9620 break;
9621 case 5:
9622 /* oprec > iprec, outer: signed, inner: unsigned. */
9623 prec = iprec;
9624 break;
9625 case 6:
9626 /* oprec > iprec, outer: unsigned, inner: signed. */
9627 prec = oprec;
9628 break;
9629 case 7:
9630 /* oprec > iprec, outer: unsigned, inner: unsigned. */
9631 prec = iprec;
9632 break;
9633 default:
9634 gcc_unreachable ();
9637 /* Compute 2^^prec - 1. */
9638 if (prec <= HOST_BITS_PER_WIDE_INT)
9640 hi = 0;
9641 lo = ((~(unsigned HOST_WIDE_INT) 0)
9642 >> (HOST_BITS_PER_WIDE_INT - prec));
9644 else
9646 hi = ((~(unsigned HOST_WIDE_INT) 0)
9647 >> (2 * HOST_BITS_PER_WIDE_INT - prec));
9648 lo = ~(unsigned HOST_WIDE_INT) 0;
9651 return build_int_cst_wide (outer, lo, hi);
9654 /* Returns the smallest value obtainable by casting something in INNER type to
9655 OUTER type. */
9657 tree
9658 lower_bound_in_type (tree outer, tree inner)
9660 unsigned HOST_WIDE_INT lo, hi;
9661 unsigned oprec = TYPE_PRECISION (outer);
9662 unsigned iprec = TYPE_PRECISION (inner);
9664 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
9665 and obtain 0. */
9666 if (TYPE_UNSIGNED (outer)
9667 /* If we are widening something of an unsigned type, OUTER type
9668 contains all values of INNER type. In particular, both INNER
9669 and OUTER types have zero in common. */
9670 || (oprec > iprec && TYPE_UNSIGNED (inner)))
9671 lo = hi = 0;
9672 else
9674 /* If we are widening a signed type to another signed type, we
9675 want to obtain -2^^(iprec-1). If we are keeping the
9676 precision or narrowing to a signed type, we want to obtain
9677 -2^(oprec-1). */
9678 unsigned prec = oprec > iprec ? iprec : oprec;
9680 if (prec <= HOST_BITS_PER_WIDE_INT)
9682 hi = ~(unsigned HOST_WIDE_INT) 0;
9683 lo = (~(unsigned HOST_WIDE_INT) 0) << (prec - 1);
9685 else
9687 hi = ((~(unsigned HOST_WIDE_INT) 0)
9688 << (prec - HOST_BITS_PER_WIDE_INT - 1));
9689 lo = 0;
9693 return build_int_cst_wide (outer, lo, hi);
9696 /* Return nonzero if two operands that are suitable for PHI nodes are
9697 necessarily equal. Specifically, both ARG0 and ARG1 must be either
9698 SSA_NAME or invariant. Note that this is strictly an optimization.
9699 That is, callers of this function can directly call operand_equal_p
9700 and get the same result, only slower. */
9703 operand_equal_for_phi_arg_p (const_tree arg0, const_tree arg1)
9705 if (arg0 == arg1)
9706 return 1;
9707 if (TREE_CODE (arg0) == SSA_NAME || TREE_CODE (arg1) == SSA_NAME)
9708 return 0;
9709 return operand_equal_p (arg0, arg1, 0);
9712 /* Returns number of zeros at the end of binary representation of X.
9714 ??? Use ffs if available? */
9716 tree
9717 num_ending_zeros (const_tree x)
9719 unsigned HOST_WIDE_INT fr, nfr;
9720 unsigned num, abits;
9721 tree type = TREE_TYPE (x);
9723 if (TREE_INT_CST_LOW (x) == 0)
9725 num = HOST_BITS_PER_WIDE_INT;
9726 fr = TREE_INT_CST_HIGH (x);
9728 else
9730 num = 0;
9731 fr = TREE_INT_CST_LOW (x);
9734 for (abits = HOST_BITS_PER_WIDE_INT / 2; abits; abits /= 2)
9736 nfr = fr >> abits;
9737 if (nfr << abits == fr)
9739 num += abits;
9740 fr = nfr;
9744 if (num > TYPE_PRECISION (type))
9745 num = TYPE_PRECISION (type);
9747 return build_int_cst_type (type, num);
9751 #define WALK_SUBTREE(NODE) \
9752 do \
9754 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
9755 if (result) \
9756 return result; \
9758 while (0)
9760 /* This is a subroutine of walk_tree that walks field of TYPE that are to
9761 be walked whenever a type is seen in the tree. Rest of operands and return
9762 value are as for walk_tree. */
9764 static tree
9765 walk_type_fields (tree type, walk_tree_fn func, void *data,
9766 struct pointer_set_t *pset, walk_tree_lh lh)
9768 tree result = NULL_TREE;
9770 switch (TREE_CODE (type))
9772 case POINTER_TYPE:
9773 case REFERENCE_TYPE:
9774 /* We have to worry about mutually recursive pointers. These can't
9775 be written in C. They can in Ada. It's pathological, but
9776 there's an ACATS test (c38102a) that checks it. Deal with this
9777 by checking if we're pointing to another pointer, that one
9778 points to another pointer, that one does too, and we have no htab.
9779 If so, get a hash table. We check three levels deep to avoid
9780 the cost of the hash table if we don't need one. */
9781 if (POINTER_TYPE_P (TREE_TYPE (type))
9782 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type)))
9783 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type))))
9784 && !pset)
9786 result = walk_tree_without_duplicates (&TREE_TYPE (type),
9787 func, data);
9788 if (result)
9789 return result;
9791 break;
9794 /* ... fall through ... */
9796 case COMPLEX_TYPE:
9797 WALK_SUBTREE (TREE_TYPE (type));
9798 break;
9800 case METHOD_TYPE:
9801 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type));
9803 /* Fall through. */
9805 case FUNCTION_TYPE:
9806 WALK_SUBTREE (TREE_TYPE (type));
9808 tree arg;
9810 /* We never want to walk into default arguments. */
9811 for (arg = TYPE_ARG_TYPES (type); arg; arg = TREE_CHAIN (arg))
9812 WALK_SUBTREE (TREE_VALUE (arg));
9814 break;
9816 case ARRAY_TYPE:
9817 /* Don't follow this nodes's type if a pointer for fear that
9818 we'll have infinite recursion. If we have a PSET, then we
9819 need not fear. */
9820 if (pset
9821 || (!POINTER_TYPE_P (TREE_TYPE (type))
9822 && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE))
9823 WALK_SUBTREE (TREE_TYPE (type));
9824 WALK_SUBTREE (TYPE_DOMAIN (type));
9825 break;
9827 case OFFSET_TYPE:
9828 WALK_SUBTREE (TREE_TYPE (type));
9829 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type));
9830 break;
9832 default:
9833 break;
9836 return NULL_TREE;
9839 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
9840 called with the DATA and the address of each sub-tree. If FUNC returns a
9841 non-NULL value, the traversal is stopped, and the value returned by FUNC
9842 is returned. If PSET is non-NULL it is used to record the nodes visited,
9843 and to avoid visiting a node more than once. */
9845 tree
9846 walk_tree_1 (tree *tp, walk_tree_fn func, void *data,
9847 struct pointer_set_t *pset, walk_tree_lh lh)
9849 enum tree_code code;
9850 int walk_subtrees;
9851 tree result;
9853 #define WALK_SUBTREE_TAIL(NODE) \
9854 do \
9856 tp = & (NODE); \
9857 goto tail_recurse; \
9859 while (0)
9861 tail_recurse:
9862 /* Skip empty subtrees. */
9863 if (!*tp)
9864 return NULL_TREE;
9866 /* Don't walk the same tree twice, if the user has requested
9867 that we avoid doing so. */
9868 if (pset && pointer_set_insert (pset, *tp))
9869 return NULL_TREE;
9871 /* Call the function. */
9872 walk_subtrees = 1;
9873 result = (*func) (tp, &walk_subtrees, data);
9875 /* If we found something, return it. */
9876 if (result)
9877 return result;
9879 code = TREE_CODE (*tp);
9881 /* Even if we didn't, FUNC may have decided that there was nothing
9882 interesting below this point in the tree. */
9883 if (!walk_subtrees)
9885 /* But we still need to check our siblings. */
9886 if (code == TREE_LIST)
9887 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
9888 else if (code == OMP_CLAUSE)
9889 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
9890 else
9891 return NULL_TREE;
9894 if (lh)
9896 result = (*lh) (tp, &walk_subtrees, func, data, pset);
9897 if (result || !walk_subtrees)
9898 return result;
9901 switch (code)
9903 case ERROR_MARK:
9904 case IDENTIFIER_NODE:
9905 case INTEGER_CST:
9906 case REAL_CST:
9907 case FIXED_CST:
9908 case VECTOR_CST:
9909 case STRING_CST:
9910 case BLOCK:
9911 case PLACEHOLDER_EXPR:
9912 case SSA_NAME:
9913 case FIELD_DECL:
9914 case RESULT_DECL:
9915 /* None of these have subtrees other than those already walked
9916 above. */
9917 break;
9919 case TREE_LIST:
9920 WALK_SUBTREE (TREE_VALUE (*tp));
9921 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
9922 break;
9924 case TREE_VEC:
9926 int len = TREE_VEC_LENGTH (*tp);
9928 if (len == 0)
9929 break;
9931 /* Walk all elements but the first. */
9932 while (--len)
9933 WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
9935 /* Now walk the first one as a tail call. */
9936 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
9939 case COMPLEX_CST:
9940 WALK_SUBTREE (TREE_REALPART (*tp));
9941 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
9943 case CONSTRUCTOR:
9945 unsigned HOST_WIDE_INT idx;
9946 constructor_elt *ce;
9948 for (idx = 0;
9949 VEC_iterate(constructor_elt, CONSTRUCTOR_ELTS (*tp), idx, ce);
9950 idx++)
9951 WALK_SUBTREE (ce->value);
9953 break;
9955 case SAVE_EXPR:
9956 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
9958 case BIND_EXPR:
9960 tree decl;
9961 for (decl = BIND_EXPR_VARS (*tp); decl; decl = TREE_CHAIN (decl))
9963 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
9964 into declarations that are just mentioned, rather than
9965 declared; they don't really belong to this part of the tree.
9966 And, we can see cycles: the initializer for a declaration
9967 can refer to the declaration itself. */
9968 WALK_SUBTREE (DECL_INITIAL (decl));
9969 WALK_SUBTREE (DECL_SIZE (decl));
9970 WALK_SUBTREE (DECL_SIZE_UNIT (decl));
9972 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp));
9975 case STATEMENT_LIST:
9977 tree_stmt_iterator i;
9978 for (i = tsi_start (*tp); !tsi_end_p (i); tsi_next (&i))
9979 WALK_SUBTREE (*tsi_stmt_ptr (i));
9981 break;
9983 case OMP_CLAUSE:
9984 switch (OMP_CLAUSE_CODE (*tp))
9986 case OMP_CLAUSE_PRIVATE:
9987 case OMP_CLAUSE_SHARED:
9988 case OMP_CLAUSE_FIRSTPRIVATE:
9989 case OMP_CLAUSE_COPYIN:
9990 case OMP_CLAUSE_COPYPRIVATE:
9991 case OMP_CLAUSE_IF:
9992 case OMP_CLAUSE_NUM_THREADS:
9993 case OMP_CLAUSE_SCHEDULE:
9994 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, 0));
9995 /* FALLTHRU */
9997 case OMP_CLAUSE_NOWAIT:
9998 case OMP_CLAUSE_ORDERED:
9999 case OMP_CLAUSE_DEFAULT:
10000 case OMP_CLAUSE_UNTIED:
10001 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10003 case OMP_CLAUSE_LASTPRIVATE:
10004 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp));
10005 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp));
10006 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10008 case OMP_CLAUSE_COLLAPSE:
10010 int i;
10011 for (i = 0; i < 3; i++)
10012 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
10013 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10016 case OMP_CLAUSE_REDUCTION:
10018 int i;
10019 for (i = 0; i < 4; i++)
10020 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp, i));
10021 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp));
10024 default:
10025 gcc_unreachable ();
10027 break;
10029 case TARGET_EXPR:
10031 int i, len;
10033 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
10034 But, we only want to walk once. */
10035 len = (TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1)) ? 2 : 3;
10036 for (i = 0; i < len; ++i)
10037 WALK_SUBTREE (TREE_OPERAND (*tp, i));
10038 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len));
10041 case DECL_EXPR:
10042 /* If this is a TYPE_DECL, walk into the fields of the type that it's
10043 defining. We only want to walk into these fields of a type in this
10044 case and not in the general case of a mere reference to the type.
10046 The criterion is as follows: if the field can be an expression, it
10047 must be walked only here. This should be in keeping with the fields
10048 that are directly gimplified in gimplify_type_sizes in order for the
10049 mark/copy-if-shared/unmark machinery of the gimplifier to work with
10050 variable-sized types.
10052 Note that DECLs get walked as part of processing the BIND_EXPR. */
10053 if (TREE_CODE (DECL_EXPR_DECL (*tp)) == TYPE_DECL)
10055 tree *type_p = &TREE_TYPE (DECL_EXPR_DECL (*tp));
10056 if (TREE_CODE (*type_p) == ERROR_MARK)
10057 return NULL_TREE;
10059 /* Call the function for the type. See if it returns anything or
10060 doesn't want us to continue. If we are to continue, walk both
10061 the normal fields and those for the declaration case. */
10062 result = (*func) (type_p, &walk_subtrees, data);
10063 if (result || !walk_subtrees)
10064 return result;
10066 result = walk_type_fields (*type_p, func, data, pset, lh);
10067 if (result)
10068 return result;
10070 /* If this is a record type, also walk the fields. */
10071 if (TREE_CODE (*type_p) == RECORD_TYPE
10072 || TREE_CODE (*type_p) == UNION_TYPE
10073 || TREE_CODE (*type_p) == QUAL_UNION_TYPE)
10075 tree field;
10077 for (field = TYPE_FIELDS (*type_p); field;
10078 field = TREE_CHAIN (field))
10080 /* We'd like to look at the type of the field, but we can
10081 easily get infinite recursion. So assume it's pointed
10082 to elsewhere in the tree. Also, ignore things that
10083 aren't fields. */
10084 if (TREE_CODE (field) != FIELD_DECL)
10085 continue;
10087 WALK_SUBTREE (DECL_FIELD_OFFSET (field));
10088 WALK_SUBTREE (DECL_SIZE (field));
10089 WALK_SUBTREE (DECL_SIZE_UNIT (field));
10090 if (TREE_CODE (*type_p) == QUAL_UNION_TYPE)
10091 WALK_SUBTREE (DECL_QUALIFIER (field));
10095 /* Same for scalar types. */
10096 else if (TREE_CODE (*type_p) == BOOLEAN_TYPE
10097 || TREE_CODE (*type_p) == ENUMERAL_TYPE
10098 || TREE_CODE (*type_p) == INTEGER_TYPE
10099 || TREE_CODE (*type_p) == FIXED_POINT_TYPE
10100 || TREE_CODE (*type_p) == REAL_TYPE)
10102 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p));
10103 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p));
10106 WALK_SUBTREE (TYPE_SIZE (*type_p));
10107 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p));
10109 /* FALLTHRU */
10111 default:
10112 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code)))
10114 int i, len;
10116 /* Walk over all the sub-trees of this operand. */
10117 len = TREE_OPERAND_LENGTH (*tp);
10119 /* Go through the subtrees. We need to do this in forward order so
10120 that the scope of a FOR_EXPR is handled properly. */
10121 if (len)
10123 for (i = 0; i < len - 1; ++i)
10124 WALK_SUBTREE (TREE_OPERAND (*tp, i));
10125 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, len - 1));
10128 /* If this is a type, walk the needed fields in the type. */
10129 else if (TYPE_P (*tp))
10130 return walk_type_fields (*tp, func, data, pset, lh);
10131 break;
10134 /* We didn't find what we were looking for. */
10135 return NULL_TREE;
10137 #undef WALK_SUBTREE_TAIL
10139 #undef WALK_SUBTREE
10141 /* Like walk_tree, but does not walk duplicate nodes more than once. */
10143 tree
10144 walk_tree_without_duplicates_1 (tree *tp, walk_tree_fn func, void *data,
10145 walk_tree_lh lh)
10147 tree result;
10148 struct pointer_set_t *pset;
10150 pset = pointer_set_create ();
10151 result = walk_tree_1 (tp, func, data, pset, lh);
10152 pointer_set_destroy (pset);
10153 return result;
10157 tree *
10158 tree_block (tree t)
10160 char const c = TREE_CODE_CLASS (TREE_CODE (t));
10162 if (IS_EXPR_CODE_CLASS (c))
10163 return &t->exp.block;
10164 gcc_unreachable ();
10165 return NULL;
10168 /* Build and return a TREE_LIST of arguments in the CALL_EXPR exp.
10169 FIXME: don't use this function. It exists for compatibility with
10170 the old representation of CALL_EXPRs where a list was used to hold the
10171 arguments. Places that currently extract the arglist from a CALL_EXPR
10172 ought to be rewritten to use the CALL_EXPR itself. */
10173 tree
10174 call_expr_arglist (tree exp)
10176 tree arglist = NULL_TREE;
10177 int i;
10178 for (i = call_expr_nargs (exp) - 1; i >= 0; i--)
10179 arglist = tree_cons (NULL_TREE, CALL_EXPR_ARG (exp, i), arglist);
10180 return arglist;
10184 /* Create a nameless artificial label and put it in the current
10185 function context. The label has a location of LOC. Returns the
10186 newly created label. */
10188 tree
10189 create_artificial_label (location_t loc)
10191 tree lab = build_decl (loc,
10192 LABEL_DECL, NULL_TREE, void_type_node);
10194 DECL_ARTIFICIAL (lab) = 1;
10195 DECL_IGNORED_P (lab) = 1;
10196 DECL_CONTEXT (lab) = current_function_decl;
10197 return lab;
10200 /* Given a tree, try to return a useful variable name that we can use
10201 to prefix a temporary that is being assigned the value of the tree.
10202 I.E. given <temp> = &A, return A. */
10204 const char *
10205 get_name (tree t)
10207 tree stripped_decl;
10209 stripped_decl = t;
10210 STRIP_NOPS (stripped_decl);
10211 if (DECL_P (stripped_decl) && DECL_NAME (stripped_decl))
10212 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl));
10213 else
10215 switch (TREE_CODE (stripped_decl))
10217 case ADDR_EXPR:
10218 return get_name (TREE_OPERAND (stripped_decl, 0));
10219 default:
10220 return NULL;
10225 /* Return true if TYPE has a variable argument list. */
10227 bool
10228 stdarg_p (tree fntype)
10230 function_args_iterator args_iter;
10231 tree n = NULL_TREE, t;
10233 if (!fntype)
10234 return false;
10236 FOREACH_FUNCTION_ARGS(fntype, t, args_iter)
10238 n = t;
10241 return n != NULL_TREE && n != void_type_node;
10244 /* Return true if TYPE has a prototype. */
10246 bool
10247 prototype_p (tree fntype)
10249 tree t;
10251 gcc_assert (fntype != NULL_TREE);
10253 t = TYPE_ARG_TYPES (fntype);
10254 return (t != NULL_TREE);
10257 /* If BLOCK is inlined from an __attribute__((__artificial__))
10258 routine, return pointer to location from where it has been
10259 called. */
10260 location_t *
10261 block_nonartificial_location (tree block)
10263 location_t *ret = NULL;
10265 while (block && TREE_CODE (block) == BLOCK
10266 && BLOCK_ABSTRACT_ORIGIN (block))
10268 tree ao = BLOCK_ABSTRACT_ORIGIN (block);
10270 while (TREE_CODE (ao) == BLOCK
10271 && BLOCK_ABSTRACT_ORIGIN (ao)
10272 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
10273 ao = BLOCK_ABSTRACT_ORIGIN (ao);
10275 if (TREE_CODE (ao) == FUNCTION_DECL)
10277 /* If AO is an artificial inline, point RET to the
10278 call site locus at which it has been inlined and continue
10279 the loop, in case AO's caller is also an artificial
10280 inline. */
10281 if (DECL_DECLARED_INLINE_P (ao)
10282 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
10283 ret = &BLOCK_SOURCE_LOCATION (block);
10284 else
10285 break;
10287 else if (TREE_CODE (ao) != BLOCK)
10288 break;
10290 block = BLOCK_SUPERCONTEXT (block);
10292 return ret;
10296 /* If EXP is inlined from an __attribute__((__artificial__))
10297 function, return the location of the original call expression. */
10299 location_t
10300 tree_nonartificial_location (tree exp)
10302 location_t *loc = block_nonartificial_location (TREE_BLOCK (exp));
10304 if (loc)
10305 return *loc;
10306 else
10307 return EXPR_LOCATION (exp);
10311 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
10312 nodes. */
10314 /* Return the hash code code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
10316 static hashval_t
10317 cl_option_hash_hash (const void *x)
10319 const_tree const t = (const_tree) x;
10320 const char *p;
10321 size_t i;
10322 size_t len = 0;
10323 hashval_t hash = 0;
10325 if (TREE_CODE (t) == OPTIMIZATION_NODE)
10327 p = (const char *)TREE_OPTIMIZATION (t);
10328 len = sizeof (struct cl_optimization);
10331 else if (TREE_CODE (t) == TARGET_OPTION_NODE)
10333 p = (const char *)TREE_TARGET_OPTION (t);
10334 len = sizeof (struct cl_target_option);
10337 else
10338 gcc_unreachable ();
10340 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
10341 something else. */
10342 for (i = 0; i < len; i++)
10343 if (p[i])
10344 hash = (hash << 4) ^ ((i << 2) | p[i]);
10346 return hash;
10349 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
10350 TARGET_OPTION tree node) is the same as that given by *Y, which is the
10351 same. */
10353 static int
10354 cl_option_hash_eq (const void *x, const void *y)
10356 const_tree const xt = (const_tree) x;
10357 const_tree const yt = (const_tree) y;
10358 const char *xp;
10359 const char *yp;
10360 size_t len;
10362 if (TREE_CODE (xt) != TREE_CODE (yt))
10363 return 0;
10365 if (TREE_CODE (xt) == OPTIMIZATION_NODE)
10367 xp = (const char *)TREE_OPTIMIZATION (xt);
10368 yp = (const char *)TREE_OPTIMIZATION (yt);
10369 len = sizeof (struct cl_optimization);
10372 else if (TREE_CODE (xt) == TARGET_OPTION_NODE)
10374 xp = (const char *)TREE_TARGET_OPTION (xt);
10375 yp = (const char *)TREE_TARGET_OPTION (yt);
10376 len = sizeof (struct cl_target_option);
10379 else
10380 gcc_unreachable ();
10382 return (memcmp (xp, yp, len) == 0);
10385 /* Build an OPTIMIZATION_NODE based on the current options. */
10387 tree
10388 build_optimization_node (void)
10390 tree t;
10391 void **slot;
10393 /* Use the cache of optimization nodes. */
10395 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node));
10397 slot = htab_find_slot (cl_option_hash_table, cl_optimization_node, INSERT);
10398 t = (tree) *slot;
10399 if (!t)
10401 /* Insert this one into the hash table. */
10402 t = cl_optimization_node;
10403 *slot = t;
10405 /* Make a new node for next time round. */
10406 cl_optimization_node = make_node (OPTIMIZATION_NODE);
10409 return t;
10412 /* Build a TARGET_OPTION_NODE based on the current options. */
10414 tree
10415 build_target_option_node (void)
10417 tree t;
10418 void **slot;
10420 /* Use the cache of optimization nodes. */
10422 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node));
10424 slot = htab_find_slot (cl_option_hash_table, cl_target_option_node, INSERT);
10425 t = (tree) *slot;
10426 if (!t)
10428 /* Insert this one into the hash table. */
10429 t = cl_target_option_node;
10430 *slot = t;
10432 /* Make a new node for next time round. */
10433 cl_target_option_node = make_node (TARGET_OPTION_NODE);
10436 return t;
10439 /* Determine the "ultimate origin" of a block. The block may be an inlined
10440 instance of an inlined instance of a block which is local to an inline
10441 function, so we have to trace all of the way back through the origin chain
10442 to find out what sort of node actually served as the original seed for the
10443 given block. */
10445 tree
10446 block_ultimate_origin (const_tree block)
10448 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
10450 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
10451 nodes in the function to point to themselves; ignore that if
10452 we're trying to output the abstract instance of this function. */
10453 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
10454 return NULL_TREE;
10456 if (immediate_origin == NULL_TREE)
10457 return NULL_TREE;
10458 else
10460 tree ret_val;
10461 tree lookahead = immediate_origin;
10465 ret_val = lookahead;
10466 lookahead = (TREE_CODE (ret_val) == BLOCK
10467 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
10469 while (lookahead != NULL && lookahead != ret_val);
10471 /* The block's abstract origin chain may not be the *ultimate* origin of
10472 the block. It could lead to a DECL that has an abstract origin set.
10473 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
10474 will give us if it has one). Note that DECL's abstract origins are
10475 supposed to be the most distant ancestor (or so decl_ultimate_origin
10476 claims), so we don't need to loop following the DECL origins. */
10477 if (DECL_P (ret_val))
10478 return DECL_ORIGIN (ret_val);
10480 return ret_val;
10484 /* Return true if T1 and T2 are equivalent lists. */
10486 bool
10487 list_equal_p (const_tree t1, const_tree t2)
10489 for (; t1 && t2; t1 = TREE_CHAIN (t1) , t2 = TREE_CHAIN (t2))
10490 if (TREE_VALUE (t1) != TREE_VALUE (t2))
10491 return false;
10492 return !t1 && !t2;
10495 /* Return true iff conversion in EXP generates no instruction. Mark
10496 it inline so that we fully inline into the stripping functions even
10497 though we have two uses of this function. */
10499 static inline bool
10500 tree_nop_conversion (const_tree exp)
10502 tree outer_type, inner_type;
10504 if (!CONVERT_EXPR_P (exp)
10505 && TREE_CODE (exp) != NON_LVALUE_EXPR)
10506 return false;
10507 if (TREE_OPERAND (exp, 0) == error_mark_node)
10508 return false;
10510 outer_type = TREE_TYPE (exp);
10511 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
10513 /* Use precision rather then machine mode when we can, which gives
10514 the correct answer even for submode (bit-field) types. */
10515 if ((INTEGRAL_TYPE_P (outer_type)
10516 || POINTER_TYPE_P (outer_type)
10517 || TREE_CODE (outer_type) == OFFSET_TYPE)
10518 && (INTEGRAL_TYPE_P (inner_type)
10519 || POINTER_TYPE_P (inner_type)
10520 || TREE_CODE (inner_type) == OFFSET_TYPE))
10521 return TYPE_PRECISION (outer_type) == TYPE_PRECISION (inner_type);
10523 /* Otherwise fall back on comparing machine modes (e.g. for
10524 aggregate types, floats). */
10525 return TYPE_MODE (outer_type) == TYPE_MODE (inner_type);
10528 /* Return true iff conversion in EXP generates no instruction. Don't
10529 consider conversions changing the signedness. */
10531 static bool
10532 tree_sign_nop_conversion (const_tree exp)
10534 tree outer_type, inner_type;
10536 if (!tree_nop_conversion (exp))
10537 return false;
10539 outer_type = TREE_TYPE (exp);
10540 inner_type = TREE_TYPE (TREE_OPERAND (exp, 0));
10542 return (TYPE_UNSIGNED (outer_type) == TYPE_UNSIGNED (inner_type)
10543 && POINTER_TYPE_P (outer_type) == POINTER_TYPE_P (inner_type));
10546 /* Strip conversions from EXP according to tree_nop_conversion and
10547 return the resulting expression. */
10549 tree
10550 tree_strip_nop_conversions (tree exp)
10552 while (tree_nop_conversion (exp))
10553 exp = TREE_OPERAND (exp, 0);
10554 return exp;
10557 /* Strip conversions from EXP according to tree_sign_nop_conversion
10558 and return the resulting expression. */
10560 tree
10561 tree_strip_sign_nop_conversions (tree exp)
10563 while (tree_sign_nop_conversion (exp))
10564 exp = TREE_OPERAND (exp, 0);
10565 return exp;
10569 #include "gt-tree.h"