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, 2010
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
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
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
29 It is intended to be language-independent, but occasionally
30 calls language-dependent routines defined (for C) in typecheck.c. */
34 #include "coretypes.h"
46 #include "langhooks.h"
47 #include "tree-inline.h"
48 #include "tree-iterator.h"
49 #include "basic-block.h"
50 #include "tree-flow.h"
52 #include "pointer-set.h"
53 #include "tree-pass.h"
54 #include "langhooks-def.h"
55 #include "diagnostic.h"
56 #include "tree-diagnostic.h"
57 #include "tree-pretty-print.h"
64 /* Tree code classes. */
66 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
67 #define END_OF_BASE_TREE_CODES tcc_exceptional,
69 const enum tree_code_class tree_code_type
[] = {
70 #include "all-tree.def"
74 #undef END_OF_BASE_TREE_CODES
76 /* Table indexed by tree code giving number of expression
77 operands beyond the fixed part of the node structure.
78 Not used for types or decls. */
80 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
81 #define END_OF_BASE_TREE_CODES 0,
83 const unsigned char tree_code_length
[] = {
84 #include "all-tree.def"
88 #undef END_OF_BASE_TREE_CODES
90 /* Names of tree components.
91 Used for printing out the tree and error messages. */
92 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
93 #define END_OF_BASE_TREE_CODES "@dummy",
95 const char *const tree_code_name
[] = {
96 #include "all-tree.def"
100 #undef END_OF_BASE_TREE_CODES
102 /* Each tree code class has an associated string representation.
103 These must correspond to the tree_code_class entries. */
105 const char *const tree_code_class_strings
[] =
120 /* obstack.[ch] explicitly declined to prototype this. */
121 extern int _obstack_allocated_p (struct obstack
*h
, void *obj
);
123 #ifdef GATHER_STATISTICS
124 /* Statistics-gathering stuff. */
126 int tree_node_counts
[(int) all_kinds
];
127 int tree_node_sizes
[(int) all_kinds
];
129 /* Keep in sync with tree.h:enum tree_node_kind. */
130 static const char * const tree_node_kind_names
[] = {
148 #endif /* GATHER_STATISTICS */
150 /* Unique id for next decl created. */
151 static GTY(()) int next_decl_uid
;
152 /* Unique id for next type created. */
153 static GTY(()) int next_type_uid
= 1;
154 /* Unique id for next debug decl created. Use negative numbers,
155 to catch erroneous uses. */
156 static GTY(()) int next_debug_decl_uid
;
158 /* Since we cannot rehash a type after it is in the table, we have to
159 keep the hash code. */
161 struct GTY(()) type_hash
{
166 /* Initial size of the hash table (rounded to next prime). */
167 #define TYPE_HASH_INITIAL_SIZE 1000
169 /* Now here is the hash table. When recording a type, it is added to
170 the slot whose index is the hash code. Note that the hash table is
171 used for several kinds of types (function types, array types and
172 array index range types, for now). While all these live in the
173 same table, they are completely independent, and the hash code is
174 computed differently for each of these. */
176 static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash
)))
177 htab_t type_hash_table
;
179 /* Hash table and temporary node for larger integer const values. */
180 static GTY (()) tree int_cst_node
;
181 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node
)))
182 htab_t int_cst_hash_table
;
184 /* Hash table for optimization flags and target option flags. Use the same
185 hash table for both sets of options. Nodes for building the current
186 optimization and target option nodes. The assumption is most of the time
187 the options created will already be in the hash table, so we avoid
188 allocating and freeing up a node repeatably. */
189 static GTY (()) tree cl_optimization_node
;
190 static GTY (()) tree cl_target_option_node
;
191 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node
)))
192 htab_t cl_option_hash_table
;
194 /* General tree->tree mapping structure for use in hash tables. */
197 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map
)))
198 htab_t debug_expr_for_decl
;
200 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map
)))
201 htab_t value_expr_for_decl
;
203 static GTY ((if_marked ("tree_priority_map_marked_p"),
204 param_is (struct tree_priority_map
)))
205 htab_t init_priority_for_decl
;
207 static void set_type_quals (tree
, int);
208 static int type_hash_eq (const void *, const void *);
209 static hashval_t
type_hash_hash (const void *);
210 static hashval_t
int_cst_hash_hash (const void *);
211 static int int_cst_hash_eq (const void *, const void *);
212 static hashval_t
cl_option_hash_hash (const void *);
213 static int cl_option_hash_eq (const void *, const void *);
214 static void print_type_hash_statistics (void);
215 static void print_debug_expr_statistics (void);
216 static void print_value_expr_statistics (void);
217 static int type_hash_marked_p (const void *);
218 static unsigned int type_hash_list (const_tree
, hashval_t
);
219 static unsigned int attribute_hash_list (const_tree
, hashval_t
);
221 tree global_trees
[TI_MAX
];
222 tree integer_types
[itk_none
];
224 unsigned char tree_contains_struct
[MAX_TREE_CODES
][64];
226 /* Number of operands for each OpenMP clause. */
227 unsigned const char omp_clause_num_ops
[] =
229 0, /* OMP_CLAUSE_ERROR */
230 1, /* OMP_CLAUSE_PRIVATE */
231 1, /* OMP_CLAUSE_SHARED */
232 1, /* OMP_CLAUSE_FIRSTPRIVATE */
233 2, /* OMP_CLAUSE_LASTPRIVATE */
234 4, /* OMP_CLAUSE_REDUCTION */
235 1, /* OMP_CLAUSE_COPYIN */
236 1, /* OMP_CLAUSE_COPYPRIVATE */
237 1, /* OMP_CLAUSE_IF */
238 1, /* OMP_CLAUSE_NUM_THREADS */
239 1, /* OMP_CLAUSE_SCHEDULE */
240 0, /* OMP_CLAUSE_NOWAIT */
241 0, /* OMP_CLAUSE_ORDERED */
242 0, /* OMP_CLAUSE_DEFAULT */
243 3, /* OMP_CLAUSE_COLLAPSE */
244 0 /* OMP_CLAUSE_UNTIED */
247 const char * const omp_clause_code_name
[] =
268 /* Return the tree node structure used by tree code CODE. */
270 static inline enum tree_node_structure_enum
271 tree_node_structure_for_code (enum tree_code code
)
273 switch (TREE_CODE_CLASS (code
))
275 case tcc_declaration
:
280 return TS_FIELD_DECL
;
286 return TS_LABEL_DECL
;
288 return TS_RESULT_DECL
;
289 case DEBUG_EXPR_DECL
:
292 return TS_CONST_DECL
;
296 return TS_FUNCTION_DECL
;
297 case TRANSLATION_UNIT_DECL
:
298 return TS_TRANSLATION_UNIT_DECL
;
300 return TS_DECL_NON_COMMON
;
313 default: /* tcc_constant and tcc_exceptional */
318 /* tcc_constant cases. */
319 case INTEGER_CST
: return TS_INT_CST
;
320 case REAL_CST
: return TS_REAL_CST
;
321 case FIXED_CST
: return TS_FIXED_CST
;
322 case COMPLEX_CST
: return TS_COMPLEX
;
323 case VECTOR_CST
: return TS_VECTOR
;
324 case STRING_CST
: return TS_STRING
;
325 /* tcc_exceptional cases. */
326 case ERROR_MARK
: return TS_COMMON
;
327 case IDENTIFIER_NODE
: return TS_IDENTIFIER
;
328 case TREE_LIST
: return TS_LIST
;
329 case TREE_VEC
: return TS_VEC
;
330 case SSA_NAME
: return TS_SSA_NAME
;
331 case PLACEHOLDER_EXPR
: return TS_COMMON
;
332 case STATEMENT_LIST
: return TS_STATEMENT_LIST
;
333 case BLOCK
: return TS_BLOCK
;
334 case CONSTRUCTOR
: return TS_CONSTRUCTOR
;
335 case TREE_BINFO
: return TS_BINFO
;
336 case OMP_CLAUSE
: return TS_OMP_CLAUSE
;
337 case OPTIMIZATION_NODE
: return TS_OPTIMIZATION
;
338 case TARGET_OPTION_NODE
: return TS_TARGET_OPTION
;
346 /* Initialize tree_contains_struct to describe the hierarchy of tree
350 initialize_tree_contains_struct (void)
354 #define MARK_TS_BASE(C) \
356 tree_contains_struct[C][TS_BASE] = 1; \
359 #define MARK_TS_COMMON(C) \
362 tree_contains_struct[C][TS_COMMON] = 1; \
365 #define MARK_TS_DECL_MINIMAL(C) \
367 MARK_TS_COMMON (C); \
368 tree_contains_struct[C][TS_DECL_MINIMAL] = 1; \
371 #define MARK_TS_DECL_COMMON(C) \
373 MARK_TS_DECL_MINIMAL (C); \
374 tree_contains_struct[C][TS_DECL_COMMON] = 1; \
377 #define MARK_TS_DECL_WRTL(C) \
379 MARK_TS_DECL_COMMON (C); \
380 tree_contains_struct[C][TS_DECL_WRTL] = 1; \
383 #define MARK_TS_DECL_WITH_VIS(C) \
385 MARK_TS_DECL_WRTL (C); \
386 tree_contains_struct[C][TS_DECL_WITH_VIS] = 1; \
389 #define MARK_TS_DECL_NON_COMMON(C) \
391 MARK_TS_DECL_WITH_VIS (C); \
392 tree_contains_struct[C][TS_DECL_NON_COMMON] = 1; \
395 for (i
= ERROR_MARK
; i
< LAST_AND_UNUSED_TREE_CODE
; i
++)
398 enum tree_node_structure_enum ts_code
;
400 code
= (enum tree_code
) i
;
401 ts_code
= tree_node_structure_for_code (code
);
403 /* Mark the TS structure itself. */
404 tree_contains_struct
[code
][ts_code
] = 1;
406 /* Mark all the structures that TS is derived from. */
420 case TS_DECL_MINIMAL
:
428 case TS_STATEMENT_LIST
:
431 case TS_OPTIMIZATION
:
432 case TS_TARGET_OPTION
:
433 MARK_TS_COMMON (code
);
437 MARK_TS_DECL_MINIMAL (code
);
441 MARK_TS_DECL_COMMON (code
);
444 case TS_DECL_NON_COMMON
:
445 MARK_TS_DECL_WITH_VIS (code
);
448 case TS_DECL_WITH_VIS
:
453 MARK_TS_DECL_WRTL (code
);
457 MARK_TS_DECL_COMMON (code
);
461 MARK_TS_DECL_WITH_VIS (code
);
465 case TS_FUNCTION_DECL
:
466 MARK_TS_DECL_NON_COMMON (code
);
469 case TS_TRANSLATION_UNIT_DECL
:
470 MARK_TS_DECL_COMMON (code
);
478 /* Basic consistency checks for attributes used in fold. */
479 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_NON_COMMON
]);
480 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_NON_COMMON
]);
481 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_COMMON
]);
482 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_COMMON
]);
483 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_COMMON
]);
484 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_COMMON
]);
485 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_COMMON
]);
486 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_COMMON
]);
487 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_COMMON
]);
488 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_COMMON
]);
489 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_COMMON
]);
490 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_WRTL
]);
491 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WRTL
]);
492 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_WRTL
]);
493 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_WRTL
]);
494 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WRTL
]);
495 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_WRTL
]);
496 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_MINIMAL
]);
497 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_MINIMAL
]);
498 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_MINIMAL
]);
499 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_MINIMAL
]);
500 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_MINIMAL
]);
501 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_MINIMAL
]);
502 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_MINIMAL
]);
503 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_MINIMAL
]);
504 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_MINIMAL
]);
505 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WITH_VIS
]);
506 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WITH_VIS
]);
507 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_WITH_VIS
]);
508 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_VAR_DECL
]);
509 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_FIELD_DECL
]);
510 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_PARM_DECL
]);
511 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_LABEL_DECL
]);
512 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_RESULT_DECL
]);
513 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_CONST_DECL
]);
514 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_TYPE_DECL
]);
515 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_FUNCTION_DECL
]);
516 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_MINIMAL
]);
517 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_COMMON
]);
520 #undef MARK_TS_COMMON
521 #undef MARK_TS_DECL_MINIMAL
522 #undef MARK_TS_DECL_COMMON
523 #undef MARK_TS_DECL_WRTL
524 #undef MARK_TS_DECL_WITH_VIS
525 #undef MARK_TS_DECL_NON_COMMON
534 /* Initialize the hash table of types. */
535 type_hash_table
= htab_create_ggc (TYPE_HASH_INITIAL_SIZE
, type_hash_hash
,
538 debug_expr_for_decl
= htab_create_ggc (512, tree_decl_map_hash
,
539 tree_decl_map_eq
, 0);
541 value_expr_for_decl
= htab_create_ggc (512, tree_decl_map_hash
,
542 tree_decl_map_eq
, 0);
543 init_priority_for_decl
= htab_create_ggc (512, tree_priority_map_hash
,
544 tree_priority_map_eq
, 0);
546 int_cst_hash_table
= htab_create_ggc (1024, int_cst_hash_hash
,
547 int_cst_hash_eq
, NULL
);
549 int_cst_node
= make_node (INTEGER_CST
);
551 cl_option_hash_table
= htab_create_ggc (64, cl_option_hash_hash
,
552 cl_option_hash_eq
, NULL
);
554 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
555 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
557 /* Initialize the tree_contains_struct array. */
558 initialize_tree_contains_struct ();
559 lang_hooks
.init_ts ();
563 /* The name of the object as the assembler will see it (but before any
564 translations made by ASM_OUTPUT_LABELREF). Often this is the same
565 as DECL_NAME. It is an IDENTIFIER_NODE. */
567 decl_assembler_name (tree decl
)
569 if (!DECL_ASSEMBLER_NAME_SET_P (decl
))
570 lang_hooks
.set_decl_assembler_name (decl
);
571 return DECL_WITH_VIS_CHECK (decl
)->decl_with_vis
.assembler_name
;
574 /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */
577 decl_assembler_name_equal (tree decl
, const_tree asmname
)
579 tree decl_asmname
= DECL_ASSEMBLER_NAME (decl
);
580 const char *decl_str
;
581 const char *asmname_str
;
584 if (decl_asmname
== asmname
)
587 decl_str
= IDENTIFIER_POINTER (decl_asmname
);
588 asmname_str
= IDENTIFIER_POINTER (asmname
);
591 /* If the target assembler name was set by the user, things are trickier.
592 We have a leading '*' to begin with. After that, it's arguable what
593 is the correct thing to do with -fleading-underscore. Arguably, we've
594 historically been doing the wrong thing in assemble_alias by always
595 printing the leading underscore. Since we're not changing that, make
596 sure user_label_prefix follows the '*' before matching. */
597 if (decl_str
[0] == '*')
599 size_t ulp_len
= strlen (user_label_prefix
);
605 else if (strncmp (decl_str
, user_label_prefix
, ulp_len
) == 0)
606 decl_str
+= ulp_len
, test
=true;
610 if (asmname_str
[0] == '*')
612 size_t ulp_len
= strlen (user_label_prefix
);
618 else if (strncmp (asmname_str
, user_label_prefix
, ulp_len
) == 0)
619 asmname_str
+= ulp_len
, test
=true;
626 return strcmp (decl_str
, asmname_str
) == 0;
629 /* Hash asmnames ignoring the user specified marks. */
632 decl_assembler_name_hash (const_tree asmname
)
634 if (IDENTIFIER_POINTER (asmname
)[0] == '*')
636 const char *decl_str
= IDENTIFIER_POINTER (asmname
) + 1;
637 size_t ulp_len
= strlen (user_label_prefix
);
641 else if (strncmp (decl_str
, user_label_prefix
, ulp_len
) == 0)
644 return htab_hash_string (decl_str
);
647 return htab_hash_string (IDENTIFIER_POINTER (asmname
));
650 /* Compute the number of bytes occupied by a tree with code CODE.
651 This function cannot be used for nodes that have variable sizes,
652 including TREE_VEC, STRING_CST, and CALL_EXPR. */
654 tree_code_size (enum tree_code code
)
656 switch (TREE_CODE_CLASS (code
))
658 case tcc_declaration
: /* A decl node */
663 return sizeof (struct tree_field_decl
);
665 return sizeof (struct tree_parm_decl
);
667 return sizeof (struct tree_var_decl
);
669 return sizeof (struct tree_label_decl
);
671 return sizeof (struct tree_result_decl
);
673 return sizeof (struct tree_const_decl
);
675 return sizeof (struct tree_type_decl
);
677 return sizeof (struct tree_function_decl
);
678 case DEBUG_EXPR_DECL
:
679 return sizeof (struct tree_decl_with_rtl
);
681 return sizeof (struct tree_decl_non_common
);
685 case tcc_type
: /* a type node */
686 return sizeof (struct tree_type
);
688 case tcc_reference
: /* a reference */
689 case tcc_expression
: /* an expression */
690 case tcc_statement
: /* an expression with side effects */
691 case tcc_comparison
: /* a comparison expression */
692 case tcc_unary
: /* a unary arithmetic expression */
693 case tcc_binary
: /* a binary arithmetic expression */
694 return (sizeof (struct tree_exp
)
695 + (TREE_CODE_LENGTH (code
) - 1) * sizeof (tree
));
697 case tcc_constant
: /* a constant */
700 case INTEGER_CST
: return sizeof (struct tree_int_cst
);
701 case REAL_CST
: return sizeof (struct tree_real_cst
);
702 case FIXED_CST
: return sizeof (struct tree_fixed_cst
);
703 case COMPLEX_CST
: return sizeof (struct tree_complex
);
704 case VECTOR_CST
: return sizeof (struct tree_vector
);
705 case STRING_CST
: gcc_unreachable ();
707 return lang_hooks
.tree_size (code
);
710 case tcc_exceptional
: /* something random, like an identifier. */
713 case IDENTIFIER_NODE
: return lang_hooks
.identifier_size
;
714 case TREE_LIST
: return sizeof (struct tree_list
);
717 case PLACEHOLDER_EXPR
: return sizeof (struct tree_common
);
720 case OMP_CLAUSE
: gcc_unreachable ();
722 case SSA_NAME
: return sizeof (struct tree_ssa_name
);
724 case STATEMENT_LIST
: return sizeof (struct tree_statement_list
);
725 case BLOCK
: return sizeof (struct tree_block
);
726 case CONSTRUCTOR
: return sizeof (struct tree_constructor
);
727 case OPTIMIZATION_NODE
: return sizeof (struct tree_optimization_option
);
728 case TARGET_OPTION_NODE
: return sizeof (struct tree_target_option
);
731 return lang_hooks
.tree_size (code
);
739 /* Compute the number of bytes occupied by NODE. This routine only
740 looks at TREE_CODE, except for those nodes that have variable sizes. */
742 tree_size (const_tree node
)
744 const enum tree_code code
= TREE_CODE (node
);
748 return (offsetof (struct tree_binfo
, base_binfos
)
749 + VEC_embedded_size (tree
, BINFO_N_BASE_BINFOS (node
)));
752 return (sizeof (struct tree_vec
)
753 + (TREE_VEC_LENGTH (node
) - 1) * sizeof (tree
));
756 return TREE_STRING_LENGTH (node
) + offsetof (struct tree_string
, str
) + 1;
759 return (sizeof (struct tree_omp_clause
)
760 + (omp_clause_num_ops
[OMP_CLAUSE_CODE (node
)] - 1)
764 if (TREE_CODE_CLASS (code
) == tcc_vl_exp
)
765 return (sizeof (struct tree_exp
)
766 + (VL_EXP_OPERAND_LENGTH (node
) - 1) * sizeof (tree
));
768 return tree_code_size (code
);
772 /* Return a newly allocated node of code CODE. For decl and type
773 nodes, some other fields are initialized. The rest of the node is
774 initialized to zero. This function cannot be used for TREE_VEC or
775 OMP_CLAUSE nodes, which is enforced by asserts in tree_code_size.
777 Achoo! I got a code in the node. */
780 make_node_stat (enum tree_code code MEM_STAT_DECL
)
783 enum tree_code_class type
= TREE_CODE_CLASS (code
);
784 size_t length
= tree_code_size (code
);
785 #ifdef GATHER_STATISTICS
790 case tcc_declaration
: /* A decl node */
794 case tcc_type
: /* a type node */
798 case tcc_statement
: /* an expression with side effects */
802 case tcc_reference
: /* a reference */
806 case tcc_expression
: /* an expression */
807 case tcc_comparison
: /* a comparison expression */
808 case tcc_unary
: /* a unary arithmetic expression */
809 case tcc_binary
: /* a binary arithmetic expression */
813 case tcc_constant
: /* a constant */
817 case tcc_exceptional
: /* something random, like an identifier. */
820 case IDENTIFIER_NODE
:
833 kind
= ssa_name_kind
;
854 tree_node_counts
[(int) kind
]++;
855 tree_node_sizes
[(int) kind
] += length
;
858 t
= ggc_alloc_zone_cleared_tree_node_stat (
859 (code
== IDENTIFIER_NODE
) ? &tree_id_zone
: &tree_zone
,
860 length PASS_MEM_STAT
);
861 TREE_SET_CODE (t
, code
);
866 TREE_SIDE_EFFECTS (t
) = 1;
869 case tcc_declaration
:
870 if (CODE_CONTAINS_STRUCT (code
, TS_DECL_COMMON
))
872 if (code
== FUNCTION_DECL
)
874 DECL_ALIGN (t
) = FUNCTION_BOUNDARY
;
875 DECL_MODE (t
) = FUNCTION_MODE
;
880 DECL_SOURCE_LOCATION (t
) = input_location
;
881 if (TREE_CODE (t
) == DEBUG_EXPR_DECL
)
882 DECL_UID (t
) = --next_debug_decl_uid
;
885 DECL_UID (t
) = next_decl_uid
++;
886 SET_DECL_PT_UID (t
, -1);
888 if (TREE_CODE (t
) == LABEL_DECL
)
889 LABEL_DECL_UID (t
) = -1;
894 TYPE_UID (t
) = next_type_uid
++;
895 TYPE_ALIGN (t
) = BITS_PER_UNIT
;
896 TYPE_USER_ALIGN (t
) = 0;
897 TYPE_MAIN_VARIANT (t
) = t
;
898 TYPE_CANONICAL (t
) = t
;
900 /* Default to no attributes for type, but let target change that. */
901 TYPE_ATTRIBUTES (t
) = NULL_TREE
;
902 targetm
.set_default_type_attributes (t
);
904 /* We have not yet computed the alias set for this type. */
905 TYPE_ALIAS_SET (t
) = -1;
909 TREE_CONSTANT (t
) = 1;
918 case PREDECREMENT_EXPR
:
919 case PREINCREMENT_EXPR
:
920 case POSTDECREMENT_EXPR
:
921 case POSTINCREMENT_EXPR
:
922 /* All of these have side-effects, no matter what their
924 TREE_SIDE_EFFECTS (t
) = 1;
933 /* Other classes need no special treatment. */
940 /* Return a new node with the same contents as NODE except that its
941 TREE_CHAIN is zero and it has a fresh uid. */
944 copy_node_stat (tree node MEM_STAT_DECL
)
947 enum tree_code code
= TREE_CODE (node
);
950 gcc_assert (code
!= STATEMENT_LIST
);
952 length
= tree_size (node
);
953 t
= ggc_alloc_zone_tree_node_stat (&tree_zone
, length PASS_MEM_STAT
);
954 memcpy (t
, node
, length
);
957 TREE_ASM_WRITTEN (t
) = 0;
958 TREE_VISITED (t
) = 0;
959 if (code
== VAR_DECL
|| code
== PARM_DECL
|| code
== RESULT_DECL
)
960 *DECL_VAR_ANN_PTR (t
) = 0;
962 if (TREE_CODE_CLASS (code
) == tcc_declaration
)
964 if (code
== DEBUG_EXPR_DECL
)
965 DECL_UID (t
) = --next_debug_decl_uid
;
968 DECL_UID (t
) = next_decl_uid
++;
969 if (DECL_PT_UID_SET_P (node
))
970 SET_DECL_PT_UID (t
, DECL_PT_UID (node
));
972 if ((TREE_CODE (node
) == PARM_DECL
|| TREE_CODE (node
) == VAR_DECL
)
973 && DECL_HAS_VALUE_EXPR_P (node
))
975 SET_DECL_VALUE_EXPR (t
, DECL_VALUE_EXPR (node
));
976 DECL_HAS_VALUE_EXPR_P (t
) = 1;
978 if (TREE_CODE (node
) == VAR_DECL
&& DECL_HAS_INIT_PRIORITY_P (node
))
980 SET_DECL_INIT_PRIORITY (t
, DECL_INIT_PRIORITY (node
));
981 DECL_HAS_INIT_PRIORITY_P (t
) = 1;
984 else if (TREE_CODE_CLASS (code
) == tcc_type
)
986 TYPE_UID (t
) = next_type_uid
++;
987 /* The following is so that the debug code for
988 the copy is different from the original type.
989 The two statements usually duplicate each other
990 (because they clear fields of the same union),
991 but the optimizer should catch that. */
992 TYPE_SYMTAB_POINTER (t
) = 0;
993 TYPE_SYMTAB_ADDRESS (t
) = 0;
995 /* Do not copy the values cache. */
996 if (TYPE_CACHED_VALUES_P(t
))
998 TYPE_CACHED_VALUES_P (t
) = 0;
999 TYPE_CACHED_VALUES (t
) = NULL_TREE
;
1006 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1007 For example, this can copy a list made of TREE_LIST nodes. */
1010 copy_list (tree list
)
1018 head
= prev
= copy_node (list
);
1019 next
= TREE_CHAIN (list
);
1022 TREE_CHAIN (prev
) = copy_node (next
);
1023 prev
= TREE_CHAIN (prev
);
1024 next
= TREE_CHAIN (next
);
1030 /* Create an INT_CST node with a LOW value sign extended. */
1033 build_int_cst (tree type
, HOST_WIDE_INT low
)
1035 /* Support legacy code. */
1037 type
= integer_type_node
;
1039 return build_int_cst_wide (type
, low
, low
< 0 ? -1 : 0);
1042 /* Create an INT_CST node with a LOW value in TYPE. The value is sign extended
1043 if it is negative. This function is similar to build_int_cst, but
1044 the extra bits outside of the type precision are cleared. Constants
1045 with these extra bits may confuse the fold so that it detects overflows
1046 even in cases when they do not occur, and in general should be avoided.
1047 We cannot however make this a default behavior of build_int_cst without
1048 more intrusive changes, since there are parts of gcc that rely on the extra
1049 precision of the integer constants. */
1052 build_int_cst_type (tree type
, HOST_WIDE_INT low
)
1056 return double_int_to_tree (type
, shwi_to_double_int (low
));
1059 /* Constructs tree in type TYPE from with value given by CST. Signedness
1060 of CST is assumed to be the same as the signedness of TYPE. */
1063 double_int_to_tree (tree type
, double_int cst
)
1065 /* Size types *are* sign extended. */
1066 bool sign_extended_type
= (!TYPE_UNSIGNED (type
)
1067 || (TREE_CODE (type
) == INTEGER_TYPE
1068 && TYPE_IS_SIZETYPE (type
)));
1070 cst
= double_int_ext (cst
, TYPE_PRECISION (type
), !sign_extended_type
);
1072 return build_int_cst_wide (type
, cst
.low
, cst
.high
);
1075 /* Returns true if CST fits into range of TYPE. Signedness of CST is assumed
1076 to be the same as the signedness of TYPE. */
1079 double_int_fits_to_tree_p (const_tree type
, double_int cst
)
1081 /* Size types *are* sign extended. */
1082 bool sign_extended_type
= (!TYPE_UNSIGNED (type
)
1083 || (TREE_CODE (type
) == INTEGER_TYPE
1084 && TYPE_IS_SIZETYPE (type
)));
1087 = double_int_ext (cst
, TYPE_PRECISION (type
), !sign_extended_type
);
1089 return double_int_equal_p (cst
, ext
);
1092 /* We force the double_int CST to the range of the type TYPE by sign or
1093 zero extending it. OVERFLOWABLE indicates if we are interested in
1094 overflow of the value, when >0 we are only interested in signed
1095 overflow, for <0 we are interested in any overflow. OVERFLOWED
1096 indicates whether overflow has already occurred. CONST_OVERFLOWED
1097 indicates whether constant overflow has already occurred. We force
1098 T's value to be within range of T's type (by setting to 0 or 1 all
1099 the bits outside the type's range). We set TREE_OVERFLOWED if,
1100 OVERFLOWED is nonzero,
1101 or OVERFLOWABLE is >0 and signed overflow occurs
1102 or OVERFLOWABLE is <0 and any overflow occurs
1103 We return a new tree node for the extended double_int. The node
1104 is shared if no overflow flags are set. */
1108 force_fit_type_double (tree type
, double_int cst
, int overflowable
,
1111 bool sign_extended_type
;
1113 /* Size types *are* sign extended. */
1114 sign_extended_type
= (!TYPE_UNSIGNED (type
)
1115 || (TREE_CODE (type
) == INTEGER_TYPE
1116 && TYPE_IS_SIZETYPE (type
)));
1118 /* If we need to set overflow flags, return a new unshared node. */
1119 if (overflowed
|| !double_int_fits_to_tree_p(type
, cst
))
1123 || (overflowable
> 0 && sign_extended_type
))
1125 tree t
= make_node (INTEGER_CST
);
1126 TREE_INT_CST (t
) = double_int_ext (cst
, TYPE_PRECISION (type
),
1127 !sign_extended_type
);
1128 TREE_TYPE (t
) = type
;
1129 TREE_OVERFLOW (t
) = 1;
1134 /* Else build a shared node. */
1135 return double_int_to_tree (type
, cst
);
1138 /* These are the hash table functions for the hash table of INTEGER_CST
1139 nodes of a sizetype. */
1141 /* Return the hash code code X, an INTEGER_CST. */
1144 int_cst_hash_hash (const void *x
)
1146 const_tree
const t
= (const_tree
) x
;
1148 return (TREE_INT_CST_HIGH (t
) ^ TREE_INT_CST_LOW (t
)
1149 ^ htab_hash_pointer (TREE_TYPE (t
)));
1152 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1153 is the same as that given by *Y, which is the same. */
1156 int_cst_hash_eq (const void *x
, const void *y
)
1158 const_tree
const xt
= (const_tree
) x
;
1159 const_tree
const yt
= (const_tree
) y
;
1161 return (TREE_TYPE (xt
) == TREE_TYPE (yt
)
1162 && TREE_INT_CST_HIGH (xt
) == TREE_INT_CST_HIGH (yt
)
1163 && TREE_INT_CST_LOW (xt
) == TREE_INT_CST_LOW (yt
));
1166 /* Create an INT_CST node of TYPE and value HI:LOW.
1167 The returned node is always shared. For small integers we use a
1168 per-type vector cache, for larger ones we use a single hash table. */
1171 build_int_cst_wide (tree type
, unsigned HOST_WIDE_INT low
, HOST_WIDE_INT hi
)
1179 switch (TREE_CODE (type
))
1182 gcc_assert (hi
== 0 && low
== 0);
1186 case REFERENCE_TYPE
:
1187 /* Cache NULL pointer. */
1196 /* Cache false or true. */
1204 if (TYPE_UNSIGNED (type
))
1207 limit
= INTEGER_SHARE_LIMIT
;
1208 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1214 limit
= INTEGER_SHARE_LIMIT
+ 1;
1215 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1217 else if (hi
== -1 && low
== -(unsigned HOST_WIDE_INT
)1)
1231 /* Look for it in the type's vector of small shared ints. */
1232 if (!TYPE_CACHED_VALUES_P (type
))
1234 TYPE_CACHED_VALUES_P (type
) = 1;
1235 TYPE_CACHED_VALUES (type
) = make_tree_vec (limit
);
1238 t
= TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
);
1241 /* Make sure no one is clobbering the shared constant. */
1242 gcc_assert (TREE_TYPE (t
) == type
);
1243 gcc_assert (TREE_INT_CST_LOW (t
) == low
);
1244 gcc_assert (TREE_INT_CST_HIGH (t
) == hi
);
1248 /* Create a new shared int. */
1249 t
= make_node (INTEGER_CST
);
1251 TREE_INT_CST_LOW (t
) = low
;
1252 TREE_INT_CST_HIGH (t
) = hi
;
1253 TREE_TYPE (t
) = type
;
1255 TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) = t
;
1260 /* Use the cache of larger shared ints. */
1263 TREE_INT_CST_LOW (int_cst_node
) = low
;
1264 TREE_INT_CST_HIGH (int_cst_node
) = hi
;
1265 TREE_TYPE (int_cst_node
) = type
;
1267 slot
= htab_find_slot (int_cst_hash_table
, int_cst_node
, INSERT
);
1271 /* Insert this one into the hash table. */
1274 /* Make a new node for next time round. */
1275 int_cst_node
= make_node (INTEGER_CST
);
1282 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1283 and the rest are zeros. */
1286 build_low_bits_mask (tree type
, unsigned bits
)
1290 gcc_assert (bits
<= TYPE_PRECISION (type
));
1292 if (bits
== TYPE_PRECISION (type
)
1293 && !TYPE_UNSIGNED (type
))
1294 /* Sign extended all-ones mask. */
1295 mask
= double_int_minus_one
;
1297 mask
= double_int_mask (bits
);
1299 return build_int_cst_wide (type
, mask
.low
, mask
.high
);
1302 /* Checks that X is integer constant that can be expressed in (unsigned)
1303 HOST_WIDE_INT without loss of precision. */
1306 cst_and_fits_in_hwi (const_tree x
)
1308 if (TREE_CODE (x
) != INTEGER_CST
)
1311 if (TYPE_PRECISION (TREE_TYPE (x
)) > HOST_BITS_PER_WIDE_INT
)
1314 return (TREE_INT_CST_HIGH (x
) == 0
1315 || TREE_INT_CST_HIGH (x
) == -1);
1318 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1319 are in a list pointed to by VALS. */
1322 build_vector (tree type
, tree vals
)
1324 tree v
= make_node (VECTOR_CST
);
1329 TREE_VECTOR_CST_ELTS (v
) = vals
;
1330 TREE_TYPE (v
) = type
;
1332 /* Iterate through elements and check for overflow. */
1333 for (link
= vals
; link
; link
= TREE_CHAIN (link
))
1335 tree value
= TREE_VALUE (link
);
1338 /* Don't crash if we get an address constant. */
1339 if (!CONSTANT_CLASS_P (value
))
1342 over
|= TREE_OVERFLOW (value
);
1345 gcc_assert (cnt
== TYPE_VECTOR_SUBPARTS (type
));
1347 TREE_OVERFLOW (v
) = over
;
1351 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1352 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1355 build_vector_from_ctor (tree type
, VEC(constructor_elt
,gc
) *v
)
1357 tree list
= NULL_TREE
;
1358 unsigned HOST_WIDE_INT idx
;
1361 FOR_EACH_CONSTRUCTOR_VALUE (v
, idx
, value
)
1362 list
= tree_cons (NULL_TREE
, value
, list
);
1363 for (; idx
< TYPE_VECTOR_SUBPARTS (type
); ++idx
)
1364 list
= tree_cons (NULL_TREE
,
1365 fold_convert (TREE_TYPE (type
), integer_zero_node
), list
);
1366 return build_vector (type
, nreverse (list
));
1369 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1370 are in the VEC pointed to by VALS. */
1372 build_constructor (tree type
, VEC(constructor_elt
,gc
) *vals
)
1374 tree c
= make_node (CONSTRUCTOR
);
1376 constructor_elt
*elt
;
1377 bool constant_p
= true;
1379 TREE_TYPE (c
) = type
;
1380 CONSTRUCTOR_ELTS (c
) = vals
;
1382 FOR_EACH_VEC_ELT (constructor_elt
, vals
, i
, elt
)
1383 if (!TREE_CONSTANT (elt
->value
))
1389 TREE_CONSTANT (c
) = constant_p
;
1394 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1397 build_constructor_single (tree type
, tree index
, tree value
)
1399 VEC(constructor_elt
,gc
) *v
;
1400 constructor_elt
*elt
;
1402 v
= VEC_alloc (constructor_elt
, gc
, 1);
1403 elt
= VEC_quick_push (constructor_elt
, v
, NULL
);
1407 return build_constructor (type
, v
);
1411 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1412 are in a list pointed to by VALS. */
1414 build_constructor_from_list (tree type
, tree vals
)
1417 VEC(constructor_elt
,gc
) *v
= NULL
;
1421 v
= VEC_alloc (constructor_elt
, gc
, list_length (vals
));
1422 for (t
= vals
; t
; t
= TREE_CHAIN (t
))
1423 CONSTRUCTOR_APPEND_ELT (v
, TREE_PURPOSE (t
), TREE_VALUE (t
));
1426 return build_constructor (type
, v
);
1429 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1432 build_fixed (tree type
, FIXED_VALUE_TYPE f
)
1435 FIXED_VALUE_TYPE
*fp
;
1437 v
= make_node (FIXED_CST
);
1438 fp
= ggc_alloc_fixed_value ();
1439 memcpy (fp
, &f
, sizeof (FIXED_VALUE_TYPE
));
1441 TREE_TYPE (v
) = type
;
1442 TREE_FIXED_CST_PTR (v
) = fp
;
1446 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1449 build_real (tree type
, REAL_VALUE_TYPE d
)
1452 REAL_VALUE_TYPE
*dp
;
1455 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1456 Consider doing it via real_convert now. */
1458 v
= make_node (REAL_CST
);
1459 dp
= ggc_alloc_real_value ();
1460 memcpy (dp
, &d
, sizeof (REAL_VALUE_TYPE
));
1462 TREE_TYPE (v
) = type
;
1463 TREE_REAL_CST_PTR (v
) = dp
;
1464 TREE_OVERFLOW (v
) = overflow
;
1468 /* Return a new REAL_CST node whose type is TYPE
1469 and whose value is the integer value of the INTEGER_CST node I. */
1472 real_value_from_int_cst (const_tree type
, const_tree i
)
1476 /* Clear all bits of the real value type so that we can later do
1477 bitwise comparisons to see if two values are the same. */
1478 memset (&d
, 0, sizeof d
);
1480 real_from_integer (&d
, type
? TYPE_MODE (type
) : VOIDmode
,
1481 TREE_INT_CST_LOW (i
), TREE_INT_CST_HIGH (i
),
1482 TYPE_UNSIGNED (TREE_TYPE (i
)));
1486 /* Given a tree representing an integer constant I, return a tree
1487 representing the same value as a floating-point constant of type TYPE. */
1490 build_real_from_int_cst (tree type
, const_tree i
)
1493 int overflow
= TREE_OVERFLOW (i
);
1495 v
= build_real (type
, real_value_from_int_cst (type
, i
));
1497 TREE_OVERFLOW (v
) |= overflow
;
1501 /* Return a newly constructed STRING_CST node whose value is
1502 the LEN characters at STR.
1503 The TREE_TYPE is not initialized. */
1506 build_string (int len
, const char *str
)
1511 /* Do not waste bytes provided by padding of struct tree_string. */
1512 length
= len
+ offsetof (struct tree_string
, str
) + 1;
1514 #ifdef GATHER_STATISTICS
1515 tree_node_counts
[(int) c_kind
]++;
1516 tree_node_sizes
[(int) c_kind
] += length
;
1519 s
= ggc_alloc_tree_node (length
);
1521 memset (s
, 0, sizeof (struct tree_common
));
1522 TREE_SET_CODE (s
, STRING_CST
);
1523 TREE_CONSTANT (s
) = 1;
1524 TREE_STRING_LENGTH (s
) = len
;
1525 memcpy (s
->string
.str
, str
, len
);
1526 s
->string
.str
[len
] = '\0';
1531 /* Return a newly constructed COMPLEX_CST node whose value is
1532 specified by the real and imaginary parts REAL and IMAG.
1533 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1534 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
1537 build_complex (tree type
, tree real
, tree imag
)
1539 tree t
= make_node (COMPLEX_CST
);
1541 TREE_REALPART (t
) = real
;
1542 TREE_IMAGPART (t
) = imag
;
1543 TREE_TYPE (t
) = type
? type
: build_complex_type (TREE_TYPE (real
));
1544 TREE_OVERFLOW (t
) = TREE_OVERFLOW (real
) | TREE_OVERFLOW (imag
);
1548 /* Return a constant of arithmetic type TYPE which is the
1549 multiplicative identity of the set TYPE. */
1552 build_one_cst (tree type
)
1554 switch (TREE_CODE (type
))
1556 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
1557 case POINTER_TYPE
: case REFERENCE_TYPE
:
1559 return build_int_cst (type
, 1);
1562 return build_real (type
, dconst1
);
1564 case FIXED_POINT_TYPE
:
1565 /* We can only generate 1 for accum types. */
1566 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)));
1567 return build_fixed (type
, FCONST1(TYPE_MODE (type
)));
1574 scalar
= build_one_cst (TREE_TYPE (type
));
1576 /* Create 'vect_cst_ = {cst,cst,...,cst}' */
1578 for (i
= TYPE_VECTOR_SUBPARTS (type
); --i
>= 0; )
1579 cst
= tree_cons (NULL_TREE
, scalar
, cst
);
1581 return build_vector (type
, cst
);
1585 return build_complex (type
,
1586 build_one_cst (TREE_TYPE (type
)),
1587 fold_convert (TREE_TYPE (type
), integer_zero_node
));
1594 /* Build 0 constant of type TYPE. This is used by constructor folding and thus
1595 the constant should correspond zero in memory representation. */
1598 build_zero_cst (tree type
)
1600 if (!AGGREGATE_TYPE_P (type
))
1601 return fold_convert (type
, integer_zero_node
);
1602 return build_constructor (type
, NULL
);
1606 /* Build a BINFO with LEN language slots. */
1609 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL
)
1612 size_t length
= (offsetof (struct tree_binfo
, base_binfos
)
1613 + VEC_embedded_size (tree
, base_binfos
));
1615 #ifdef GATHER_STATISTICS
1616 tree_node_counts
[(int) binfo_kind
]++;
1617 tree_node_sizes
[(int) binfo_kind
] += length
;
1620 t
= ggc_alloc_zone_tree_node_stat (&tree_zone
, length PASS_MEM_STAT
);
1622 memset (t
, 0, offsetof (struct tree_binfo
, base_binfos
));
1624 TREE_SET_CODE (t
, TREE_BINFO
);
1626 VEC_embedded_init (tree
, BINFO_BASE_BINFOS (t
), base_binfos
);
1632 /* Build a newly constructed TREE_VEC node of length LEN. */
1635 make_tree_vec_stat (int len MEM_STAT_DECL
)
1638 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
1640 #ifdef GATHER_STATISTICS
1641 tree_node_counts
[(int) vec_kind
]++;
1642 tree_node_sizes
[(int) vec_kind
] += length
;
1645 t
= ggc_alloc_zone_cleared_tree_node_stat (&tree_zone
, length PASS_MEM_STAT
);
1647 TREE_SET_CODE (t
, TREE_VEC
);
1648 TREE_VEC_LENGTH (t
) = len
;
1653 /* Return 1 if EXPR is the integer constant zero or a complex constant
1657 integer_zerop (const_tree expr
)
1661 return ((TREE_CODE (expr
) == INTEGER_CST
1662 && TREE_INT_CST_LOW (expr
) == 0
1663 && TREE_INT_CST_HIGH (expr
) == 0)
1664 || (TREE_CODE (expr
) == COMPLEX_CST
1665 && integer_zerop (TREE_REALPART (expr
))
1666 && integer_zerop (TREE_IMAGPART (expr
))));
1669 /* Return 1 if EXPR is the integer constant one or the corresponding
1670 complex constant. */
1673 integer_onep (const_tree expr
)
1677 return ((TREE_CODE (expr
) == INTEGER_CST
1678 && TREE_INT_CST_LOW (expr
) == 1
1679 && TREE_INT_CST_HIGH (expr
) == 0)
1680 || (TREE_CODE (expr
) == COMPLEX_CST
1681 && integer_onep (TREE_REALPART (expr
))
1682 && integer_zerop (TREE_IMAGPART (expr
))));
1685 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
1686 it contains. Likewise for the corresponding complex constant. */
1689 integer_all_onesp (const_tree expr
)
1696 if (TREE_CODE (expr
) == COMPLEX_CST
1697 && integer_all_onesp (TREE_REALPART (expr
))
1698 && integer_zerop (TREE_IMAGPART (expr
)))
1701 else if (TREE_CODE (expr
) != INTEGER_CST
)
1704 uns
= TYPE_UNSIGNED (TREE_TYPE (expr
));
1705 if (TREE_INT_CST_LOW (expr
) == ~(unsigned HOST_WIDE_INT
) 0
1706 && TREE_INT_CST_HIGH (expr
) == -1)
1711 /* Note that using TYPE_PRECISION here is wrong. We care about the
1712 actual bits, not the (arbitrary) range of the type. */
1713 prec
= GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (expr
)));
1714 if (prec
>= HOST_BITS_PER_WIDE_INT
)
1716 HOST_WIDE_INT high_value
;
1719 shift_amount
= prec
- HOST_BITS_PER_WIDE_INT
;
1721 /* Can not handle precisions greater than twice the host int size. */
1722 gcc_assert (shift_amount
<= HOST_BITS_PER_WIDE_INT
);
1723 if (shift_amount
== HOST_BITS_PER_WIDE_INT
)
1724 /* Shifting by the host word size is undefined according to the ANSI
1725 standard, so we must handle this as a special case. */
1728 high_value
= ((HOST_WIDE_INT
) 1 << shift_amount
) - 1;
1730 return (TREE_INT_CST_LOW (expr
) == ~(unsigned HOST_WIDE_INT
) 0
1731 && TREE_INT_CST_HIGH (expr
) == high_value
);
1734 return TREE_INT_CST_LOW (expr
) == ((unsigned HOST_WIDE_INT
) 1 << prec
) - 1;
1737 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
1741 integer_pow2p (const_tree expr
)
1744 HOST_WIDE_INT high
, low
;
1748 if (TREE_CODE (expr
) == COMPLEX_CST
1749 && integer_pow2p (TREE_REALPART (expr
))
1750 && integer_zerop (TREE_IMAGPART (expr
)))
1753 if (TREE_CODE (expr
) != INTEGER_CST
)
1756 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
1757 high
= TREE_INT_CST_HIGH (expr
);
1758 low
= TREE_INT_CST_LOW (expr
);
1760 /* First clear all bits that are beyond the type's precision in case
1761 we've been sign extended. */
1763 if (prec
== 2 * HOST_BITS_PER_WIDE_INT
)
1765 else if (prec
> HOST_BITS_PER_WIDE_INT
)
1766 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
1770 if (prec
< HOST_BITS_PER_WIDE_INT
)
1771 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
1774 if (high
== 0 && low
== 0)
1777 return ((high
== 0 && (low
& (low
- 1)) == 0)
1778 || (low
== 0 && (high
& (high
- 1)) == 0));
1781 /* Return 1 if EXPR is an integer constant other than zero or a
1782 complex constant other than zero. */
1785 integer_nonzerop (const_tree expr
)
1789 return ((TREE_CODE (expr
) == INTEGER_CST
1790 && (TREE_INT_CST_LOW (expr
) != 0
1791 || TREE_INT_CST_HIGH (expr
) != 0))
1792 || (TREE_CODE (expr
) == COMPLEX_CST
1793 && (integer_nonzerop (TREE_REALPART (expr
))
1794 || integer_nonzerop (TREE_IMAGPART (expr
)))));
1797 /* Return 1 if EXPR is the fixed-point constant zero. */
1800 fixed_zerop (const_tree expr
)
1802 return (TREE_CODE (expr
) == FIXED_CST
1803 && double_int_zero_p (TREE_FIXED_CST (expr
).data
));
1806 /* Return the power of two represented by a tree node known to be a
1810 tree_log2 (const_tree expr
)
1813 HOST_WIDE_INT high
, low
;
1817 if (TREE_CODE (expr
) == COMPLEX_CST
)
1818 return tree_log2 (TREE_REALPART (expr
));
1820 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
1821 high
= TREE_INT_CST_HIGH (expr
);
1822 low
= TREE_INT_CST_LOW (expr
);
1824 /* First clear all bits that are beyond the type's precision in case
1825 we've been sign extended. */
1827 if (prec
== 2 * HOST_BITS_PER_WIDE_INT
)
1829 else if (prec
> HOST_BITS_PER_WIDE_INT
)
1830 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
1834 if (prec
< HOST_BITS_PER_WIDE_INT
)
1835 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
1838 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ exact_log2 (high
)
1839 : exact_log2 (low
));
1842 /* Similar, but return the largest integer Y such that 2 ** Y is less
1843 than or equal to EXPR. */
1846 tree_floor_log2 (const_tree expr
)
1849 HOST_WIDE_INT high
, low
;
1853 if (TREE_CODE (expr
) == COMPLEX_CST
)
1854 return tree_log2 (TREE_REALPART (expr
));
1856 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
1857 high
= TREE_INT_CST_HIGH (expr
);
1858 low
= TREE_INT_CST_LOW (expr
);
1860 /* First clear all bits that are beyond the type's precision in case
1861 we've been sign extended. Ignore if type's precision hasn't been set
1862 since what we are doing is setting it. */
1864 if (prec
== 2 * HOST_BITS_PER_WIDE_INT
|| prec
== 0)
1866 else if (prec
> HOST_BITS_PER_WIDE_INT
)
1867 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
1871 if (prec
< HOST_BITS_PER_WIDE_INT
)
1872 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
1875 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ floor_log2 (high
)
1876 : floor_log2 (low
));
1879 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
1880 decimal float constants, so don't return 1 for them. */
1883 real_zerop (const_tree expr
)
1887 return ((TREE_CODE (expr
) == REAL_CST
1888 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst0
)
1889 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
)))))
1890 || (TREE_CODE (expr
) == COMPLEX_CST
1891 && real_zerop (TREE_REALPART (expr
))
1892 && real_zerop (TREE_IMAGPART (expr
))));
1895 /* Return 1 if EXPR is the real constant one in real or complex form.
1896 Trailing zeroes matter for decimal float constants, so don't return
1900 real_onep (const_tree expr
)
1904 return ((TREE_CODE (expr
) == REAL_CST
1905 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst1
)
1906 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
)))))
1907 || (TREE_CODE (expr
) == COMPLEX_CST
1908 && real_onep (TREE_REALPART (expr
))
1909 && real_zerop (TREE_IMAGPART (expr
))));
1912 /* Return 1 if EXPR is the real constant two. Trailing zeroes matter
1913 for decimal float constants, so don't return 1 for them. */
1916 real_twop (const_tree expr
)
1920 return ((TREE_CODE (expr
) == REAL_CST
1921 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst2
)
1922 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
)))))
1923 || (TREE_CODE (expr
) == COMPLEX_CST
1924 && real_twop (TREE_REALPART (expr
))
1925 && real_zerop (TREE_IMAGPART (expr
))));
1928 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
1929 matter for decimal float constants, so don't return 1 for them. */
1932 real_minus_onep (const_tree expr
)
1936 return ((TREE_CODE (expr
) == REAL_CST
1937 && REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconstm1
)
1938 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
)))))
1939 || (TREE_CODE (expr
) == COMPLEX_CST
1940 && real_minus_onep (TREE_REALPART (expr
))
1941 && real_zerop (TREE_IMAGPART (expr
))));
1944 /* Nonzero if EXP is a constant or a cast of a constant. */
1947 really_constant_p (const_tree exp
)
1949 /* This is not quite the same as STRIP_NOPS. It does more. */
1950 while (CONVERT_EXPR_P (exp
)
1951 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
1952 exp
= TREE_OPERAND (exp
, 0);
1953 return TREE_CONSTANT (exp
);
1956 /* Return first list element whose TREE_VALUE is ELEM.
1957 Return 0 if ELEM is not in LIST. */
1960 value_member (tree elem
, tree list
)
1964 if (elem
== TREE_VALUE (list
))
1966 list
= TREE_CHAIN (list
);
1971 /* Return first list element whose TREE_PURPOSE is ELEM.
1972 Return 0 if ELEM is not in LIST. */
1975 purpose_member (const_tree elem
, tree list
)
1979 if (elem
== TREE_PURPOSE (list
))
1981 list
= TREE_CHAIN (list
);
1986 /* Return true if ELEM is in V. */
1989 vec_member (const_tree elem
, VEC(tree
,gc
) *v
)
1993 FOR_EACH_VEC_ELT (tree
, v
, ix
, t
)
1999 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2003 chain_index (int idx
, tree chain
)
2005 for (; chain
&& idx
> 0; --idx
)
2006 chain
= TREE_CHAIN (chain
);
2010 /* Return nonzero if ELEM is part of the chain CHAIN. */
2013 chain_member (const_tree elem
, const_tree chain
)
2019 chain
= DECL_CHAIN (chain
);
2025 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2026 We expect a null pointer to mark the end of the chain.
2027 This is the Lisp primitive `length'. */
2030 list_length (const_tree t
)
2033 #ifdef ENABLE_TREE_CHECKING
2041 #ifdef ENABLE_TREE_CHECKING
2044 gcc_assert (p
!= q
);
2052 /* Returns the number of FIELD_DECLs in TYPE. */
2055 fields_length (const_tree type
)
2057 tree t
= TYPE_FIELDS (type
);
2060 for (; t
; t
= DECL_CHAIN (t
))
2061 if (TREE_CODE (t
) == FIELD_DECL
)
2067 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2068 UNION_TYPE TYPE, or NULL_TREE if none. */
2071 first_field (const_tree type
)
2073 tree t
= TYPE_FIELDS (type
);
2074 while (t
&& TREE_CODE (t
) != FIELD_DECL
)
2079 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2080 by modifying the last node in chain 1 to point to chain 2.
2081 This is the Lisp primitive `nconc'. */
2084 chainon (tree op1
, tree op2
)
2093 for (t1
= op1
; TREE_CHAIN (t1
); t1
= TREE_CHAIN (t1
))
2095 TREE_CHAIN (t1
) = op2
;
2097 #ifdef ENABLE_TREE_CHECKING
2100 for (t2
= op2
; t2
; t2
= TREE_CHAIN (t2
))
2101 gcc_assert (t2
!= t1
);
2108 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2111 tree_last (tree chain
)
2115 while ((next
= TREE_CHAIN (chain
)))
2120 /* Reverse the order of elements in the chain T,
2121 and return the new head of the chain (old last element). */
2126 tree prev
= 0, decl
, next
;
2127 for (decl
= t
; decl
; decl
= next
)
2129 /* We shouldn't be using this function to reverse BLOCK chains; we
2130 have blocks_nreverse for that. */
2131 gcc_checking_assert (TREE_CODE (decl
) != BLOCK
);
2132 next
= TREE_CHAIN (decl
);
2133 TREE_CHAIN (decl
) = prev
;
2139 /* Return a newly created TREE_LIST node whose
2140 purpose and value fields are PARM and VALUE. */
2143 build_tree_list_stat (tree parm
, tree value MEM_STAT_DECL
)
2145 tree t
= make_node_stat (TREE_LIST PASS_MEM_STAT
);
2146 TREE_PURPOSE (t
) = parm
;
2147 TREE_VALUE (t
) = value
;
2151 /* Build a chain of TREE_LIST nodes from a vector. */
2154 build_tree_list_vec_stat (const VEC(tree
,gc
) *vec MEM_STAT_DECL
)
2156 tree ret
= NULL_TREE
;
2160 FOR_EACH_VEC_ELT (tree
, vec
, i
, t
)
2162 *pp
= build_tree_list_stat (NULL
, t PASS_MEM_STAT
);
2163 pp
= &TREE_CHAIN (*pp
);
2168 /* Return a newly created TREE_LIST node whose
2169 purpose and value fields are PURPOSE and VALUE
2170 and whose TREE_CHAIN is CHAIN. */
2173 tree_cons_stat (tree purpose
, tree value
, tree chain MEM_STAT_DECL
)
2177 node
= ggc_alloc_zone_tree_node_stat (&tree_zone
, sizeof (struct tree_list
)
2179 memset (node
, 0, sizeof (struct tree_common
));
2181 #ifdef GATHER_STATISTICS
2182 tree_node_counts
[(int) x_kind
]++;
2183 tree_node_sizes
[(int) x_kind
] += sizeof (struct tree_list
);
2186 TREE_SET_CODE (node
, TREE_LIST
);
2187 TREE_CHAIN (node
) = chain
;
2188 TREE_PURPOSE (node
) = purpose
;
2189 TREE_VALUE (node
) = value
;
2193 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2197 ctor_to_vec (tree ctor
)
2199 VEC(tree
, gc
) *vec
= VEC_alloc (tree
, gc
, CONSTRUCTOR_NELTS (ctor
));
2203 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor
), ix
, val
)
2204 VEC_quick_push (tree
, vec
, val
);
2209 /* Return the size nominally occupied by an object of type TYPE
2210 when it resides in memory. The value is measured in units of bytes,
2211 and its data type is that normally used for type sizes
2212 (which is the first type created by make_signed_type or
2213 make_unsigned_type). */
2216 size_in_bytes (const_tree type
)
2220 if (type
== error_mark_node
)
2221 return integer_zero_node
;
2223 type
= TYPE_MAIN_VARIANT (type
);
2224 t
= TYPE_SIZE_UNIT (type
);
2228 lang_hooks
.types
.incomplete_type_error (NULL_TREE
, type
);
2229 return size_zero_node
;
2235 /* Return the size of TYPE (in bytes) as a wide integer
2236 or return -1 if the size can vary or is larger than an integer. */
2239 int_size_in_bytes (const_tree type
)
2243 if (type
== error_mark_node
)
2246 type
= TYPE_MAIN_VARIANT (type
);
2247 t
= TYPE_SIZE_UNIT (type
);
2249 || TREE_CODE (t
) != INTEGER_CST
2250 || TREE_INT_CST_HIGH (t
) != 0
2251 /* If the result would appear negative, it's too big to represent. */
2252 || (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0)
2255 return TREE_INT_CST_LOW (t
);
2258 /* Return the maximum size of TYPE (in bytes) as a wide integer
2259 or return -1 if the size can vary or is larger than an integer. */
2262 max_int_size_in_bytes (const_tree type
)
2264 HOST_WIDE_INT size
= -1;
2267 /* If this is an array type, check for a possible MAX_SIZE attached. */
2269 if (TREE_CODE (type
) == ARRAY_TYPE
)
2271 size_tree
= TYPE_ARRAY_MAX_SIZE (type
);
2273 if (size_tree
&& host_integerp (size_tree
, 1))
2274 size
= tree_low_cst (size_tree
, 1);
2277 /* If we still haven't been able to get a size, see if the language
2278 can compute a maximum size. */
2282 size_tree
= lang_hooks
.types
.max_size (type
);
2284 if (size_tree
&& host_integerp (size_tree
, 1))
2285 size
= tree_low_cst (size_tree
, 1);
2291 /* Returns a tree for the size of EXP in bytes. */
2294 tree_expr_size (const_tree exp
)
2297 && DECL_SIZE_UNIT (exp
) != 0)
2298 return DECL_SIZE_UNIT (exp
);
2300 return size_in_bytes (TREE_TYPE (exp
));
2303 /* Return the bit position of FIELD, in bits from the start of the record.
2304 This is a tree of type bitsizetype. */
2307 bit_position (const_tree field
)
2309 return bit_from_pos (DECL_FIELD_OFFSET (field
),
2310 DECL_FIELD_BIT_OFFSET (field
));
2313 /* Likewise, but return as an integer. It must be representable in
2314 that way (since it could be a signed value, we don't have the
2315 option of returning -1 like int_size_in_byte can. */
2318 int_bit_position (const_tree field
)
2320 return tree_low_cst (bit_position (field
), 0);
2323 /* Return the byte position of FIELD, in bytes from the start of the record.
2324 This is a tree of type sizetype. */
2327 byte_position (const_tree field
)
2329 return byte_from_pos (DECL_FIELD_OFFSET (field
),
2330 DECL_FIELD_BIT_OFFSET (field
));
2333 /* Likewise, but return as an integer. It must be representable in
2334 that way (since it could be a signed value, we don't have the
2335 option of returning -1 like int_size_in_byte can. */
2338 int_byte_position (const_tree field
)
2340 return tree_low_cst (byte_position (field
), 0);
2343 /* Return the strictest alignment, in bits, that T is known to have. */
2346 expr_align (const_tree t
)
2348 unsigned int align0
, align1
;
2350 switch (TREE_CODE (t
))
2352 CASE_CONVERT
: case NON_LVALUE_EXPR
:
2353 /* If we have conversions, we know that the alignment of the
2354 object must meet each of the alignments of the types. */
2355 align0
= expr_align (TREE_OPERAND (t
, 0));
2356 align1
= TYPE_ALIGN (TREE_TYPE (t
));
2357 return MAX (align0
, align1
);
2359 case SAVE_EXPR
: case COMPOUND_EXPR
: case MODIFY_EXPR
:
2360 case INIT_EXPR
: case TARGET_EXPR
: case WITH_CLEANUP_EXPR
:
2361 case CLEANUP_POINT_EXPR
:
2362 /* These don't change the alignment of an object. */
2363 return expr_align (TREE_OPERAND (t
, 0));
2366 /* The best we can do is say that the alignment is the least aligned
2368 align0
= expr_align (TREE_OPERAND (t
, 1));
2369 align1
= expr_align (TREE_OPERAND (t
, 2));
2370 return MIN (align0
, align1
);
2372 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
2373 meaningfully, it's always 1. */
2374 case LABEL_DECL
: case CONST_DECL
:
2375 case VAR_DECL
: case PARM_DECL
: case RESULT_DECL
:
2377 gcc_assert (DECL_ALIGN (t
) != 0);
2378 return DECL_ALIGN (t
);
2384 /* Otherwise take the alignment from that of the type. */
2385 return TYPE_ALIGN (TREE_TYPE (t
));
2388 /* Return, as a tree node, the number of elements for TYPE (which is an
2389 ARRAY_TYPE) minus one. This counts only elements of the top array. */
2392 array_type_nelts (const_tree type
)
2394 tree index_type
, min
, max
;
2396 /* If they did it with unspecified bounds, then we should have already
2397 given an error about it before we got here. */
2398 if (! TYPE_DOMAIN (type
))
2399 return error_mark_node
;
2401 index_type
= TYPE_DOMAIN (type
);
2402 min
= TYPE_MIN_VALUE (index_type
);
2403 max
= TYPE_MAX_VALUE (index_type
);
2405 return (integer_zerop (min
)
2407 : fold_build2 (MINUS_EXPR
, TREE_TYPE (max
), max
, min
));
2410 /* If arg is static -- a reference to an object in static storage -- then
2411 return the object. This is not the same as the C meaning of `static'.
2412 If arg isn't static, return NULL. */
2417 switch (TREE_CODE (arg
))
2420 /* Nested functions are static, even though taking their address will
2421 involve a trampoline as we unnest the nested function and create
2422 the trampoline on the tree level. */
2426 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
2427 && ! DECL_THREAD_LOCAL_P (arg
)
2428 && ! DECL_DLLIMPORT_P (arg
)
2432 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
2436 return TREE_STATIC (arg
) ? arg
: NULL
;
2443 /* If the thing being referenced is not a field, then it is
2444 something language specific. */
2445 gcc_assert (TREE_CODE (TREE_OPERAND (arg
, 1)) == FIELD_DECL
);
2447 /* If we are referencing a bitfield, we can't evaluate an
2448 ADDR_EXPR at compile time and so it isn't a constant. */
2449 if (DECL_BIT_FIELD (TREE_OPERAND (arg
, 1)))
2452 return staticp (TREE_OPERAND (arg
, 0));
2458 return TREE_CONSTANT (TREE_OPERAND (arg
, 0)) ? arg
: NULL
;
2461 case ARRAY_RANGE_REF
:
2462 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg
))) == INTEGER_CST
2463 && TREE_CODE (TREE_OPERAND (arg
, 1)) == INTEGER_CST
)
2464 return staticp (TREE_OPERAND (arg
, 0));
2468 case COMPOUND_LITERAL_EXPR
:
2469 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg
)) ? arg
: NULL
;
2479 /* Return whether OP is a DECL whose address is function-invariant. */
2482 decl_address_invariant_p (const_tree op
)
2484 /* The conditions below are slightly less strict than the one in
2487 switch (TREE_CODE (op
))
2496 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2497 || DECL_THREAD_LOCAL_P (op
)
2498 || DECL_CONTEXT (op
) == current_function_decl
2499 || decl_function_context (op
) == current_function_decl
)
2504 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2505 || decl_function_context (op
) == current_function_decl
)
2516 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
2519 decl_address_ip_invariant_p (const_tree op
)
2521 /* The conditions below are slightly less strict than the one in
2524 switch (TREE_CODE (op
))
2532 if (((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2533 && !DECL_DLLIMPORT_P (op
))
2534 || DECL_THREAD_LOCAL_P (op
))
2539 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
)))
2551 /* Return true if T is function-invariant (internal function, does
2552 not handle arithmetic; that's handled in skip_simple_arithmetic and
2553 tree_invariant_p). */
2555 static bool tree_invariant_p (tree t
);
2558 tree_invariant_p_1 (tree t
)
2562 if (TREE_CONSTANT (t
)
2563 || (TREE_READONLY (t
) && !TREE_SIDE_EFFECTS (t
)))
2566 switch (TREE_CODE (t
))
2572 op
= TREE_OPERAND (t
, 0);
2573 while (handled_component_p (op
))
2575 switch (TREE_CODE (op
))
2578 case ARRAY_RANGE_REF
:
2579 if (!tree_invariant_p (TREE_OPERAND (op
, 1))
2580 || TREE_OPERAND (op
, 2) != NULL_TREE
2581 || TREE_OPERAND (op
, 3) != NULL_TREE
)
2586 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
2592 op
= TREE_OPERAND (op
, 0);
2595 return CONSTANT_CLASS_P (op
) || decl_address_invariant_p (op
);
2604 /* Return true if T is function-invariant. */
2607 tree_invariant_p (tree t
)
2609 tree inner
= skip_simple_arithmetic (t
);
2610 return tree_invariant_p_1 (inner
);
2613 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
2614 Do this to any expression which may be used in more than one place,
2615 but must be evaluated only once.
2617 Normally, expand_expr would reevaluate the expression each time.
2618 Calling save_expr produces something that is evaluated and recorded
2619 the first time expand_expr is called on it. Subsequent calls to
2620 expand_expr just reuse the recorded value.
2622 The call to expand_expr that generates code that actually computes
2623 the value is the first call *at compile time*. Subsequent calls
2624 *at compile time* generate code to use the saved value.
2625 This produces correct result provided that *at run time* control
2626 always flows through the insns made by the first expand_expr
2627 before reaching the other places where the save_expr was evaluated.
2628 You, the caller of save_expr, must make sure this is so.
2630 Constants, and certain read-only nodes, are returned with no
2631 SAVE_EXPR because that is safe. Expressions containing placeholders
2632 are not touched; see tree.def for an explanation of what these
2636 save_expr (tree expr
)
2638 tree t
= fold (expr
);
2641 /* If the tree evaluates to a constant, then we don't want to hide that
2642 fact (i.e. this allows further folding, and direct checks for constants).
2643 However, a read-only object that has side effects cannot be bypassed.
2644 Since it is no problem to reevaluate literals, we just return the
2646 inner
= skip_simple_arithmetic (t
);
2647 if (TREE_CODE (inner
) == ERROR_MARK
)
2650 if (tree_invariant_p_1 (inner
))
2653 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
2654 it means that the size or offset of some field of an object depends on
2655 the value within another field.
2657 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
2658 and some variable since it would then need to be both evaluated once and
2659 evaluated more than once. Front-ends must assure this case cannot
2660 happen by surrounding any such subexpressions in their own SAVE_EXPR
2661 and forcing evaluation at the proper time. */
2662 if (contains_placeholder_p (inner
))
2665 t
= build1 (SAVE_EXPR
, TREE_TYPE (expr
), t
);
2666 SET_EXPR_LOCATION (t
, EXPR_LOCATION (expr
));
2668 /* This expression might be placed ahead of a jump to ensure that the
2669 value was computed on both sides of the jump. So make sure it isn't
2670 eliminated as dead. */
2671 TREE_SIDE_EFFECTS (t
) = 1;
2675 /* Look inside EXPR and into any simple arithmetic operations. Return
2676 the innermost non-arithmetic node. */
2679 skip_simple_arithmetic (tree expr
)
2683 /* We don't care about whether this can be used as an lvalue in this
2685 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
2686 expr
= TREE_OPERAND (expr
, 0);
2688 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
2689 a constant, it will be more efficient to not make another SAVE_EXPR since
2690 it will allow better simplification and GCSE will be able to merge the
2691 computations if they actually occur. */
2695 if (UNARY_CLASS_P (inner
))
2696 inner
= TREE_OPERAND (inner
, 0);
2697 else if (BINARY_CLASS_P (inner
))
2699 if (tree_invariant_p (TREE_OPERAND (inner
, 1)))
2700 inner
= TREE_OPERAND (inner
, 0);
2701 else if (tree_invariant_p (TREE_OPERAND (inner
, 0)))
2702 inner
= TREE_OPERAND (inner
, 1);
2714 /* Return which tree structure is used by T. */
2716 enum tree_node_structure_enum
2717 tree_node_structure (const_tree t
)
2719 const enum tree_code code
= TREE_CODE (t
);
2720 return tree_node_structure_for_code (code
);
2723 /* Set various status flags when building a CALL_EXPR object T. */
2726 process_call_operands (tree t
)
2728 bool side_effects
= TREE_SIDE_EFFECTS (t
);
2729 bool read_only
= false;
2730 int i
= call_expr_flags (t
);
2732 /* Calls have side-effects, except those to const or pure functions. */
2733 if ((i
& ECF_LOOPING_CONST_OR_PURE
) || !(i
& (ECF_CONST
| ECF_PURE
)))
2734 side_effects
= true;
2735 /* Propagate TREE_READONLY of arguments for const functions. */
2739 if (!side_effects
|| read_only
)
2740 for (i
= 1; i
< TREE_OPERAND_LENGTH (t
); i
++)
2742 tree op
= TREE_OPERAND (t
, i
);
2743 if (op
&& TREE_SIDE_EFFECTS (op
))
2744 side_effects
= true;
2745 if (op
&& !TREE_READONLY (op
) && !CONSTANT_CLASS_P (op
))
2749 TREE_SIDE_EFFECTS (t
) = side_effects
;
2750 TREE_READONLY (t
) = read_only
;
2753 /* Return 1 if EXP contains a PLACEHOLDER_EXPR; i.e., if it represents a size
2754 or offset that depends on a field within a record. */
2757 contains_placeholder_p (const_tree exp
)
2759 enum tree_code code
;
2764 code
= TREE_CODE (exp
);
2765 if (code
== PLACEHOLDER_EXPR
)
2768 switch (TREE_CODE_CLASS (code
))
2771 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
2772 position computations since they will be converted into a
2773 WITH_RECORD_EXPR involving the reference, which will assume
2774 here will be valid. */
2775 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
2777 case tcc_exceptional
:
2778 if (code
== TREE_LIST
)
2779 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp
))
2780 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp
)));
2785 case tcc_comparison
:
2786 case tcc_expression
:
2790 /* Ignoring the first operand isn't quite right, but works best. */
2791 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1));
2794 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
2795 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1))
2796 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 2)));
2799 /* The save_expr function never wraps anything containing
2800 a PLACEHOLDER_EXPR. */
2807 switch (TREE_CODE_LENGTH (code
))
2810 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
2812 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
2813 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1)));
2824 const_call_expr_arg_iterator iter
;
2825 FOR_EACH_CONST_CALL_EXPR_ARG (arg
, iter
, exp
)
2826 if (CONTAINS_PLACEHOLDER_P (arg
))
2840 /* Return true if any part of the computation of TYPE involves a
2841 PLACEHOLDER_EXPR. This includes size, bounds, qualifiers
2842 (for QUAL_UNION_TYPE) and field positions. */
2845 type_contains_placeholder_1 (const_tree type
)
2847 /* If the size contains a placeholder or the parent type (component type in
2848 the case of arrays) type involves a placeholder, this type does. */
2849 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type
))
2850 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type
))
2851 || (TREE_TYPE (type
) != 0
2852 && type_contains_placeholder_p (TREE_TYPE (type
))))
2855 /* Now do type-specific checks. Note that the last part of the check above
2856 greatly limits what we have to do below. */
2857 switch (TREE_CODE (type
))
2865 case REFERENCE_TYPE
:
2873 case FIXED_POINT_TYPE
:
2874 /* Here we just check the bounds. */
2875 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type
))
2876 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type
)));
2879 /* We're already checked the component type (TREE_TYPE), so just check
2881 return type_contains_placeholder_p (TYPE_DOMAIN (type
));
2885 case QUAL_UNION_TYPE
:
2889 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
2890 if (TREE_CODE (field
) == FIELD_DECL
2891 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field
))
2892 || (TREE_CODE (type
) == QUAL_UNION_TYPE
2893 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field
)))
2894 || type_contains_placeholder_p (TREE_TYPE (field
))))
2906 type_contains_placeholder_p (tree type
)
2910 /* If the contains_placeholder_bits field has been initialized,
2911 then we know the answer. */
2912 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) > 0)
2913 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) - 1;
2915 /* Indicate that we've seen this type node, and the answer is false.
2916 This is what we want to return if we run into recursion via fields. */
2917 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = 1;
2919 /* Compute the real value. */
2920 result
= type_contains_placeholder_1 (type
);
2922 /* Store the real value. */
2923 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = result
+ 1;
2928 /* Push tree EXP onto vector QUEUE if it is not already present. */
2931 push_without_duplicates (tree exp
, VEC (tree
, heap
) **queue
)
2936 FOR_EACH_VEC_ELT (tree
, *queue
, i
, iter
)
2937 if (simple_cst_equal (iter
, exp
) == 1)
2941 VEC_safe_push (tree
, heap
, *queue
, exp
);
2944 /* Given a tree EXP, find all occurences of references to fields
2945 in a PLACEHOLDER_EXPR and place them in vector REFS without
2946 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
2947 we assume here that EXP contains only arithmetic expressions
2948 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
2952 find_placeholder_in_expr (tree exp
, VEC (tree
, heap
) **refs
)
2954 enum tree_code code
= TREE_CODE (exp
);
2958 /* We handle TREE_LIST and COMPONENT_REF separately. */
2959 if (code
== TREE_LIST
)
2961 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), refs
);
2962 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), refs
);
2964 else if (code
== COMPONENT_REF
)
2966 for (inner
= TREE_OPERAND (exp
, 0);
2967 REFERENCE_CLASS_P (inner
);
2968 inner
= TREE_OPERAND (inner
, 0))
2971 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
)
2972 push_without_duplicates (exp
, refs
);
2974 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), refs
);
2977 switch (TREE_CODE_CLASS (code
))
2982 case tcc_declaration
:
2983 /* Variables allocated to static storage can stay. */
2984 if (!TREE_STATIC (exp
))
2985 push_without_duplicates (exp
, refs
);
2988 case tcc_expression
:
2989 /* This is the pattern built in ada/make_aligning_type. */
2990 if (code
== ADDR_EXPR
2991 && TREE_CODE (TREE_OPERAND (exp
, 0)) == PLACEHOLDER_EXPR
)
2993 push_without_duplicates (exp
, refs
);
2997 /* Fall through... */
2999 case tcc_exceptional
:
3002 case tcc_comparison
:
3004 for (i
= 0; i
< TREE_CODE_LENGTH (code
); i
++)
3005 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3009 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3010 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3018 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3019 return a tree with all occurrences of references to F in a
3020 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3021 CONST_DECLs. Note that we assume here that EXP contains only
3022 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3023 occurring only in their argument list. */
3026 substitute_in_expr (tree exp
, tree f
, tree r
)
3028 enum tree_code code
= TREE_CODE (exp
);
3029 tree op0
, op1
, op2
, op3
;
3032 /* We handle TREE_LIST and COMPONENT_REF separately. */
3033 if (code
== TREE_LIST
)
3035 op0
= SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp
), f
, r
);
3036 op1
= SUBSTITUTE_IN_EXPR (TREE_VALUE (exp
), f
, r
);
3037 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3040 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3042 else if (code
== COMPONENT_REF
)
3046 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3047 and it is the right field, replace it with R. */
3048 for (inner
= TREE_OPERAND (exp
, 0);
3049 REFERENCE_CLASS_P (inner
);
3050 inner
= TREE_OPERAND (inner
, 0))
3054 op1
= TREE_OPERAND (exp
, 1);
3056 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& op1
== f
)
3059 /* If this expression hasn't been completed let, leave it alone. */
3060 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& !TREE_TYPE (inner
))
3063 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3064 if (op0
== TREE_OPERAND (exp
, 0))
3068 = fold_build3 (COMPONENT_REF
, TREE_TYPE (exp
), op0
, op1
, NULL_TREE
);
3071 switch (TREE_CODE_CLASS (code
))
3076 case tcc_declaration
:
3082 case tcc_expression
:
3086 /* Fall through... */
3088 case tcc_exceptional
:
3091 case tcc_comparison
:
3093 switch (TREE_CODE_LENGTH (code
))
3099 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3100 if (op0
== TREE_OPERAND (exp
, 0))
3103 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3107 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3108 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3110 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3113 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3117 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3118 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3119 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3121 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3122 && op2
== TREE_OPERAND (exp
, 2))
3125 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3129 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3130 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3131 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3132 op3
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 3), f
, r
);
3134 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3135 && op2
== TREE_OPERAND (exp
, 2)
3136 && op3
== TREE_OPERAND (exp
, 3))
3140 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3152 new_tree
= NULL_TREE
;
3154 /* If we are trying to replace F with a constant, inline back
3155 functions which do nothing else than computing a value from
3156 the arguments they are passed. This makes it possible to
3157 fold partially or entirely the replacement expression. */
3158 if (CONSTANT_CLASS_P (r
) && code
== CALL_EXPR
)
3160 tree t
= maybe_inline_call_in_expr (exp
);
3162 return SUBSTITUTE_IN_EXPR (t
, f
, r
);
3165 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3167 tree op
= TREE_OPERAND (exp
, i
);
3168 tree new_op
= SUBSTITUTE_IN_EXPR (op
, f
, r
);
3172 new_tree
= copy_node (exp
);
3173 TREE_OPERAND (new_tree
, i
) = new_op
;
3179 new_tree
= fold (new_tree
);
3180 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3181 process_call_operands (new_tree
);
3192 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3194 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3195 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3200 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3201 for it within OBJ, a tree that is an object or a chain of references. */
3204 substitute_placeholder_in_expr (tree exp
, tree obj
)
3206 enum tree_code code
= TREE_CODE (exp
);
3207 tree op0
, op1
, op2
, op3
;
3210 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3211 in the chain of OBJ. */
3212 if (code
== PLACEHOLDER_EXPR
)
3214 tree need_type
= TYPE_MAIN_VARIANT (TREE_TYPE (exp
));
3217 for (elt
= obj
; elt
!= 0;
3218 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3219 || TREE_CODE (elt
) == COND_EXPR
)
3220 ? TREE_OPERAND (elt
, 1)
3221 : (REFERENCE_CLASS_P (elt
)
3222 || UNARY_CLASS_P (elt
)
3223 || BINARY_CLASS_P (elt
)
3224 || VL_EXP_CLASS_P (elt
)
3225 || EXPRESSION_CLASS_P (elt
))
3226 ? TREE_OPERAND (elt
, 0) : 0))
3227 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt
)) == need_type
)
3230 for (elt
= obj
; elt
!= 0;
3231 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3232 || TREE_CODE (elt
) == COND_EXPR
)
3233 ? TREE_OPERAND (elt
, 1)
3234 : (REFERENCE_CLASS_P (elt
)
3235 || UNARY_CLASS_P (elt
)
3236 || BINARY_CLASS_P (elt
)
3237 || VL_EXP_CLASS_P (elt
)
3238 || EXPRESSION_CLASS_P (elt
))
3239 ? TREE_OPERAND (elt
, 0) : 0))
3240 if (POINTER_TYPE_P (TREE_TYPE (elt
))
3241 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt
)))
3243 return fold_build1 (INDIRECT_REF
, need_type
, elt
);
3245 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3246 survives until RTL generation, there will be an error. */
3250 /* TREE_LIST is special because we need to look at TREE_VALUE
3251 and TREE_CHAIN, not TREE_OPERANDS. */
3252 else if (code
== TREE_LIST
)
3254 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), obj
);
3255 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), obj
);
3256 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3259 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3262 switch (TREE_CODE_CLASS (code
))
3265 case tcc_declaration
:
3268 case tcc_exceptional
:
3271 case tcc_comparison
:
3272 case tcc_expression
:
3275 switch (TREE_CODE_LENGTH (code
))
3281 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3282 if (op0
== TREE_OPERAND (exp
, 0))
3285 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3289 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3290 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3292 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3295 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3299 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3300 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3301 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3303 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3304 && op2
== TREE_OPERAND (exp
, 2))
3307 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3311 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3312 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3313 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3314 op3
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 3), obj
);
3316 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3317 && op2
== TREE_OPERAND (exp
, 2)
3318 && op3
== TREE_OPERAND (exp
, 3))
3322 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3334 new_tree
= NULL_TREE
;
3336 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3338 tree op
= TREE_OPERAND (exp
, i
);
3339 tree new_op
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (op
, obj
);
3343 new_tree
= copy_node (exp
);
3344 TREE_OPERAND (new_tree
, i
) = new_op
;
3350 new_tree
= fold (new_tree
);
3351 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3352 process_call_operands (new_tree
);
3363 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3365 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3366 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3371 /* Stabilize a reference so that we can use it any number of times
3372 without causing its operands to be evaluated more than once.
3373 Returns the stabilized reference. This works by means of save_expr,
3374 so see the caveats in the comments about save_expr.
3376 Also allows conversion expressions whose operands are references.
3377 Any other kind of expression is returned unchanged. */
3380 stabilize_reference (tree ref
)
3383 enum tree_code code
= TREE_CODE (ref
);
3390 /* No action is needed in this case. */
3395 case FIX_TRUNC_EXPR
:
3396 result
= build_nt (code
, stabilize_reference (TREE_OPERAND (ref
, 0)));
3400 result
= build_nt (INDIRECT_REF
,
3401 stabilize_reference_1 (TREE_OPERAND (ref
, 0)));
3405 result
= build_nt (COMPONENT_REF
,
3406 stabilize_reference (TREE_OPERAND (ref
, 0)),
3407 TREE_OPERAND (ref
, 1), NULL_TREE
);
3411 result
= build_nt (BIT_FIELD_REF
,
3412 stabilize_reference (TREE_OPERAND (ref
, 0)),
3413 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3414 stabilize_reference_1 (TREE_OPERAND (ref
, 2)));
3418 result
= build_nt (ARRAY_REF
,
3419 stabilize_reference (TREE_OPERAND (ref
, 0)),
3420 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3421 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
3424 case ARRAY_RANGE_REF
:
3425 result
= build_nt (ARRAY_RANGE_REF
,
3426 stabilize_reference (TREE_OPERAND (ref
, 0)),
3427 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3428 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
3432 /* We cannot wrap the first expression in a SAVE_EXPR, as then
3433 it wouldn't be ignored. This matters when dealing with
3435 return stabilize_reference_1 (ref
);
3437 /* If arg isn't a kind of lvalue we recognize, make no change.
3438 Caller should recognize the error for an invalid lvalue. */
3443 return error_mark_node
;
3446 TREE_TYPE (result
) = TREE_TYPE (ref
);
3447 TREE_READONLY (result
) = TREE_READONLY (ref
);
3448 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (ref
);
3449 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (ref
);
3454 /* Subroutine of stabilize_reference; this is called for subtrees of
3455 references. Any expression with side-effects must be put in a SAVE_EXPR
3456 to ensure that it is only evaluated once.
3458 We don't put SAVE_EXPR nodes around everything, because assigning very
3459 simple expressions to temporaries causes us to miss good opportunities
3460 for optimizations. Among other things, the opportunity to fold in the
3461 addition of a constant into an addressing mode often gets lost, e.g.
3462 "y[i+1] += x;". In general, we take the approach that we should not make
3463 an assignment unless we are forced into it - i.e., that any non-side effect
3464 operator should be allowed, and that cse should take care of coalescing
3465 multiple utterances of the same expression should that prove fruitful. */
3468 stabilize_reference_1 (tree e
)
3471 enum tree_code code
= TREE_CODE (e
);
3473 /* We cannot ignore const expressions because it might be a reference
3474 to a const array but whose index contains side-effects. But we can
3475 ignore things that are actual constant or that already have been
3476 handled by this function. */
3478 if (tree_invariant_p (e
))
3481 switch (TREE_CODE_CLASS (code
))
3483 case tcc_exceptional
:
3485 case tcc_declaration
:
3486 case tcc_comparison
:
3488 case tcc_expression
:
3491 /* If the expression has side-effects, then encase it in a SAVE_EXPR
3492 so that it will only be evaluated once. */
3493 /* The reference (r) and comparison (<) classes could be handled as
3494 below, but it is generally faster to only evaluate them once. */
3495 if (TREE_SIDE_EFFECTS (e
))
3496 return save_expr (e
);
3500 /* Constants need no processing. In fact, we should never reach
3505 /* Division is slow and tends to be compiled with jumps,
3506 especially the division by powers of 2 that is often
3507 found inside of an array reference. So do it just once. */
3508 if (code
== TRUNC_DIV_EXPR
|| code
== TRUNC_MOD_EXPR
3509 || code
== FLOOR_DIV_EXPR
|| code
== FLOOR_MOD_EXPR
3510 || code
== CEIL_DIV_EXPR
|| code
== CEIL_MOD_EXPR
3511 || code
== ROUND_DIV_EXPR
|| code
== ROUND_MOD_EXPR
)
3512 return save_expr (e
);
3513 /* Recursively stabilize each operand. */
3514 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)),
3515 stabilize_reference_1 (TREE_OPERAND (e
, 1)));
3519 /* Recursively stabilize each operand. */
3520 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)));
3527 TREE_TYPE (result
) = TREE_TYPE (e
);
3528 TREE_READONLY (result
) = TREE_READONLY (e
);
3529 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (e
);
3530 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (e
);
3535 /* Low-level constructors for expressions. */
3537 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
3538 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
3541 recompute_tree_invariant_for_addr_expr (tree t
)
3544 bool tc
= true, se
= false;
3546 /* We started out assuming this address is both invariant and constant, but
3547 does not have side effects. Now go down any handled components and see if
3548 any of them involve offsets that are either non-constant or non-invariant.
3549 Also check for side-effects.
3551 ??? Note that this code makes no attempt to deal with the case where
3552 taking the address of something causes a copy due to misalignment. */
3554 #define UPDATE_FLAGS(NODE) \
3555 do { tree _node = (NODE); \
3556 if (_node && !TREE_CONSTANT (_node)) tc = false; \
3557 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
3559 for (node
= TREE_OPERAND (t
, 0); handled_component_p (node
);
3560 node
= TREE_OPERAND (node
, 0))
3562 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
3563 array reference (probably made temporarily by the G++ front end),
3564 so ignore all the operands. */
3565 if ((TREE_CODE (node
) == ARRAY_REF
3566 || TREE_CODE (node
) == ARRAY_RANGE_REF
)
3567 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node
, 0))) == ARRAY_TYPE
)
3569 UPDATE_FLAGS (TREE_OPERAND (node
, 1));
3570 if (TREE_OPERAND (node
, 2))
3571 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
3572 if (TREE_OPERAND (node
, 3))
3573 UPDATE_FLAGS (TREE_OPERAND (node
, 3));
3575 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
3576 FIELD_DECL, apparently. The G++ front end can put something else
3577 there, at least temporarily. */
3578 else if (TREE_CODE (node
) == COMPONENT_REF
3579 && TREE_CODE (TREE_OPERAND (node
, 1)) == FIELD_DECL
)
3581 if (TREE_OPERAND (node
, 2))
3582 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
3584 else if (TREE_CODE (node
) == BIT_FIELD_REF
)
3585 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
3588 node
= lang_hooks
.expr_to_decl (node
, &tc
, &se
);
3590 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
3591 the address, since &(*a)->b is a form of addition. If it's a constant, the
3592 address is constant too. If it's a decl, its address is constant if the
3593 decl is static. Everything else is not constant and, furthermore,
3594 taking the address of a volatile variable is not volatile. */
3595 if (TREE_CODE (node
) == INDIRECT_REF
3596 || TREE_CODE (node
) == MEM_REF
)
3597 UPDATE_FLAGS (TREE_OPERAND (node
, 0));
3598 else if (CONSTANT_CLASS_P (node
))
3600 else if (DECL_P (node
))
3601 tc
&= (staticp (node
) != NULL_TREE
);
3605 se
|= TREE_SIDE_EFFECTS (node
);
3609 TREE_CONSTANT (t
) = tc
;
3610 TREE_SIDE_EFFECTS (t
) = se
;
3614 /* Build an expression of code CODE, data type TYPE, and operands as
3615 specified. Expressions and reference nodes can be created this way.
3616 Constants, decls, types and misc nodes cannot be.
3618 We define 5 non-variadic functions, from 0 to 4 arguments. This is
3619 enough for all extant tree codes. */
3622 build0_stat (enum tree_code code
, tree tt MEM_STAT_DECL
)
3626 gcc_assert (TREE_CODE_LENGTH (code
) == 0);
3628 t
= make_node_stat (code PASS_MEM_STAT
);
3635 build1_stat (enum tree_code code
, tree type
, tree node MEM_STAT_DECL
)
3637 int length
= sizeof (struct tree_exp
);
3638 #ifdef GATHER_STATISTICS
3639 tree_node_kind kind
;
3643 #ifdef GATHER_STATISTICS
3644 switch (TREE_CODE_CLASS (code
))
3646 case tcc_statement
: /* an expression with side effects */
3649 case tcc_reference
: /* a reference */
3657 tree_node_counts
[(int) kind
]++;
3658 tree_node_sizes
[(int) kind
] += length
;
3661 gcc_assert (TREE_CODE_LENGTH (code
) == 1);
3663 t
= ggc_alloc_zone_tree_node_stat (&tree_zone
, length PASS_MEM_STAT
);
3665 memset (t
, 0, sizeof (struct tree_common
));
3667 TREE_SET_CODE (t
, code
);
3669 TREE_TYPE (t
) = type
;
3670 SET_EXPR_LOCATION (t
, UNKNOWN_LOCATION
);
3671 TREE_OPERAND (t
, 0) = node
;
3672 TREE_BLOCK (t
) = NULL_TREE
;
3673 if (node
&& !TYPE_P (node
))
3675 TREE_SIDE_EFFECTS (t
) = TREE_SIDE_EFFECTS (node
);
3676 TREE_READONLY (t
) = TREE_READONLY (node
);
3679 if (TREE_CODE_CLASS (code
) == tcc_statement
)
3680 TREE_SIDE_EFFECTS (t
) = 1;
3684 /* All of these have side-effects, no matter what their
3686 TREE_SIDE_EFFECTS (t
) = 1;
3687 TREE_READONLY (t
) = 0;
3691 /* Whether a dereference is readonly has nothing to do with whether
3692 its operand is readonly. */
3693 TREE_READONLY (t
) = 0;
3698 recompute_tree_invariant_for_addr_expr (t
);
3702 if ((TREE_CODE_CLASS (code
) == tcc_unary
|| code
== VIEW_CONVERT_EXPR
)
3703 && node
&& !TYPE_P (node
)
3704 && TREE_CONSTANT (node
))
3705 TREE_CONSTANT (t
) = 1;
3706 if (TREE_CODE_CLASS (code
) == tcc_reference
3707 && node
&& TREE_THIS_VOLATILE (node
))
3708 TREE_THIS_VOLATILE (t
) = 1;
3715 #define PROCESS_ARG(N) \
3717 TREE_OPERAND (t, N) = arg##N; \
3718 if (arg##N &&!TYPE_P (arg##N)) \
3720 if (TREE_SIDE_EFFECTS (arg##N)) \
3722 if (!TREE_READONLY (arg##N) \
3723 && !CONSTANT_CLASS_P (arg##N)) \
3724 (void) (read_only = 0); \
3725 if (!TREE_CONSTANT (arg##N)) \
3726 (void) (constant = 0); \
3731 build2_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1 MEM_STAT_DECL
)
3733 bool constant
, read_only
, side_effects
;
3736 gcc_assert (TREE_CODE_LENGTH (code
) == 2);
3738 if ((code
== MINUS_EXPR
|| code
== PLUS_EXPR
|| code
== MULT_EXPR
)
3739 && arg0
&& arg1
&& tt
&& POINTER_TYPE_P (tt
)
3740 /* When sizetype precision doesn't match that of pointers
3741 we need to be able to build explicit extensions or truncations
3742 of the offset argument. */
3743 && TYPE_PRECISION (sizetype
) == TYPE_PRECISION (tt
))
3744 gcc_assert (TREE_CODE (arg0
) == INTEGER_CST
3745 && TREE_CODE (arg1
) == INTEGER_CST
);
3747 if (code
== POINTER_PLUS_EXPR
&& arg0
&& arg1
&& tt
)
3748 gcc_assert (POINTER_TYPE_P (tt
) && POINTER_TYPE_P (TREE_TYPE (arg0
))
3749 && INTEGRAL_TYPE_P (TREE_TYPE (arg1
))
3750 && useless_type_conversion_p (sizetype
, TREE_TYPE (arg1
)));
3752 t
= make_node_stat (code PASS_MEM_STAT
);
3755 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
3756 result based on those same flags for the arguments. But if the
3757 arguments aren't really even `tree' expressions, we shouldn't be trying
3760 /* Expressions without side effects may be constant if their
3761 arguments are as well. */
3762 constant
= (TREE_CODE_CLASS (code
) == tcc_comparison
3763 || TREE_CODE_CLASS (code
) == tcc_binary
);
3765 side_effects
= TREE_SIDE_EFFECTS (t
);
3770 TREE_READONLY (t
) = read_only
;
3771 TREE_CONSTANT (t
) = constant
;
3772 TREE_SIDE_EFFECTS (t
) = side_effects
;
3773 TREE_THIS_VOLATILE (t
)
3774 = (TREE_CODE_CLASS (code
) == tcc_reference
3775 && arg0
&& TREE_THIS_VOLATILE (arg0
));
3782 build3_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
3783 tree arg2 MEM_STAT_DECL
)
3785 bool constant
, read_only
, side_effects
;
3788 gcc_assert (TREE_CODE_LENGTH (code
) == 3);
3789 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
3791 t
= make_node_stat (code PASS_MEM_STAT
);
3796 /* As a special exception, if COND_EXPR has NULL branches, we
3797 assume that it is a gimple statement and always consider
3798 it to have side effects. */
3799 if (code
== COND_EXPR
3800 && tt
== void_type_node
3801 && arg1
== NULL_TREE
3802 && arg2
== NULL_TREE
)
3803 side_effects
= true;
3805 side_effects
= TREE_SIDE_EFFECTS (t
);
3811 if (code
== COND_EXPR
)
3812 TREE_READONLY (t
) = read_only
;
3814 TREE_SIDE_EFFECTS (t
) = side_effects
;
3815 TREE_THIS_VOLATILE (t
)
3816 = (TREE_CODE_CLASS (code
) == tcc_reference
3817 && arg0
&& TREE_THIS_VOLATILE (arg0
));
3823 build4_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
3824 tree arg2
, tree arg3 MEM_STAT_DECL
)
3826 bool constant
, read_only
, side_effects
;
3829 gcc_assert (TREE_CODE_LENGTH (code
) == 4);
3831 t
= make_node_stat (code PASS_MEM_STAT
);
3834 side_effects
= TREE_SIDE_EFFECTS (t
);
3841 TREE_SIDE_EFFECTS (t
) = side_effects
;
3842 TREE_THIS_VOLATILE (t
)
3843 = (TREE_CODE_CLASS (code
) == tcc_reference
3844 && arg0
&& TREE_THIS_VOLATILE (arg0
));
3850 build5_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
3851 tree arg2
, tree arg3
, tree arg4 MEM_STAT_DECL
)
3853 bool constant
, read_only
, side_effects
;
3856 gcc_assert (TREE_CODE_LENGTH (code
) == 5);
3858 t
= make_node_stat (code PASS_MEM_STAT
);
3861 side_effects
= TREE_SIDE_EFFECTS (t
);
3869 TREE_SIDE_EFFECTS (t
) = side_effects
;
3870 TREE_THIS_VOLATILE (t
)
3871 = (TREE_CODE_CLASS (code
) == tcc_reference
3872 && arg0
&& TREE_THIS_VOLATILE (arg0
));
3878 build6_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
3879 tree arg2
, tree arg3
, tree arg4
, tree arg5 MEM_STAT_DECL
)
3881 bool constant
, read_only
, side_effects
;
3884 gcc_assert (code
== TARGET_MEM_REF
);
3886 t
= make_node_stat (code PASS_MEM_STAT
);
3889 side_effects
= TREE_SIDE_EFFECTS (t
);
3896 if (code
== TARGET_MEM_REF
)
3900 TREE_SIDE_EFFECTS (t
) = side_effects
;
3901 TREE_THIS_VOLATILE (t
)
3902 = (code
== TARGET_MEM_REF
3903 && arg5
&& TREE_THIS_VOLATILE (arg5
));
3908 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
3909 on the pointer PTR. */
3912 build_simple_mem_ref_loc (location_t loc
, tree ptr
)
3914 HOST_WIDE_INT offset
= 0;
3915 tree ptype
= TREE_TYPE (ptr
);
3917 /* For convenience allow addresses that collapse to a simple base
3919 if (TREE_CODE (ptr
) == ADDR_EXPR
3920 && (handled_component_p (TREE_OPERAND (ptr
, 0))
3921 || TREE_CODE (TREE_OPERAND (ptr
, 0)) == MEM_REF
))
3923 ptr
= get_addr_base_and_unit_offset (TREE_OPERAND (ptr
, 0), &offset
);
3925 ptr
= build_fold_addr_expr (ptr
);
3926 gcc_assert (is_gimple_reg (ptr
) || is_gimple_min_invariant (ptr
));
3928 tem
= build2 (MEM_REF
, TREE_TYPE (ptype
),
3929 ptr
, build_int_cst (ptype
, offset
));
3930 SET_EXPR_LOCATION (tem
, loc
);
3934 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
3937 mem_ref_offset (const_tree t
)
3939 tree toff
= TREE_OPERAND (t
, 1);
3940 return double_int_sext (tree_to_double_int (toff
),
3941 TYPE_PRECISION (TREE_TYPE (toff
)));
3944 /* Return the pointer-type relevant for TBAA purposes from the
3945 gimple memory reference tree T. This is the type to be used for
3946 the offset operand of MEM_REF or TARGET_MEM_REF replacements of T. */
3949 reference_alias_ptr_type (const_tree t
)
3951 const_tree base
= t
;
3952 while (handled_component_p (base
))
3953 base
= TREE_OPERAND (base
, 0);
3954 if (TREE_CODE (base
) == MEM_REF
)
3955 return TREE_TYPE (TREE_OPERAND (base
, 1));
3956 else if (TREE_CODE (base
) == TARGET_MEM_REF
)
3957 return TREE_TYPE (TMR_OFFSET (base
));
3959 return build_pointer_type (TYPE_MAIN_VARIANT (TREE_TYPE (base
)));
3962 /* Similar except don't specify the TREE_TYPE
3963 and leave the TREE_SIDE_EFFECTS as 0.
3964 It is permissible for arguments to be null,
3965 or even garbage if their values do not matter. */
3968 build_nt (enum tree_code code
, ...)
3975 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
3979 t
= make_node (code
);
3980 length
= TREE_CODE_LENGTH (code
);
3982 for (i
= 0; i
< length
; i
++)
3983 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
3989 /* Similar to build_nt, but for creating a CALL_EXPR object with a
3993 build_nt_call_vec (tree fn
, VEC(tree
,gc
) *args
)
3998 ret
= build_vl_exp (CALL_EXPR
, VEC_length (tree
, args
) + 3);
3999 CALL_EXPR_FN (ret
) = fn
;
4000 CALL_EXPR_STATIC_CHAIN (ret
) = NULL_TREE
;
4001 FOR_EACH_VEC_ELT (tree
, args
, ix
, t
)
4002 CALL_EXPR_ARG (ret
, ix
) = t
;
4006 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4007 We do NOT enter this node in any sort of symbol table.
4009 LOC is the location of the decl.
4011 layout_decl is used to set up the decl's storage layout.
4012 Other slots are initialized to 0 or null pointers. */
4015 build_decl_stat (location_t loc
, enum tree_code code
, tree name
,
4016 tree type MEM_STAT_DECL
)
4020 t
= make_node_stat (code PASS_MEM_STAT
);
4021 DECL_SOURCE_LOCATION (t
) = loc
;
4023 /* if (type == error_mark_node)
4024 type = integer_type_node; */
4025 /* That is not done, deliberately, so that having error_mark_node
4026 as the type can suppress useless errors in the use of this variable. */
4028 DECL_NAME (t
) = name
;
4029 TREE_TYPE (t
) = type
;
4031 if (code
== VAR_DECL
|| code
== PARM_DECL
|| code
== RESULT_DECL
)
4037 /* Builds and returns function declaration with NAME and TYPE. */
4040 build_fn_decl (const char *name
, tree type
)
4042 tree id
= get_identifier (name
);
4043 tree decl
= build_decl (input_location
, FUNCTION_DECL
, id
, type
);
4045 DECL_EXTERNAL (decl
) = 1;
4046 TREE_PUBLIC (decl
) = 1;
4047 DECL_ARTIFICIAL (decl
) = 1;
4048 TREE_NOTHROW (decl
) = 1;
4053 VEC(tree
,gc
) *all_translation_units
;
4055 /* Builds a new translation-unit decl with name NAME, queues it in the
4056 global list of translation-unit decls and returns it. */
4059 build_translation_unit_decl (tree name
)
4061 tree tu
= build_decl (UNKNOWN_LOCATION
, TRANSLATION_UNIT_DECL
,
4063 TRANSLATION_UNIT_LANGUAGE (tu
) = lang_hooks
.name
;
4064 VEC_safe_push (tree
, gc
, all_translation_units
, tu
);
4069 /* BLOCK nodes are used to represent the structure of binding contours
4070 and declarations, once those contours have been exited and their contents
4071 compiled. This information is used for outputting debugging info. */
4074 build_block (tree vars
, tree subblocks
, tree supercontext
, tree chain
)
4076 tree block
= make_node (BLOCK
);
4078 BLOCK_VARS (block
) = vars
;
4079 BLOCK_SUBBLOCKS (block
) = subblocks
;
4080 BLOCK_SUPERCONTEXT (block
) = supercontext
;
4081 BLOCK_CHAIN (block
) = chain
;
4086 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4088 LOC is the location to use in tree T. */
4091 protected_set_expr_location (tree t
, location_t loc
)
4093 if (t
&& CAN_HAVE_LOCATION_P (t
))
4094 SET_EXPR_LOCATION (t
, loc
);
4097 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
4101 build_decl_attribute_variant (tree ddecl
, tree attribute
)
4103 DECL_ATTRIBUTES (ddecl
) = attribute
;
4107 /* Borrowed from hashtab.c iterative_hash implementation. */
4108 #define mix(a,b,c) \
4110 a -= b; a -= c; a ^= (c>>13); \
4111 b -= c; b -= a; b ^= (a<< 8); \
4112 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
4113 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
4114 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
4115 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
4116 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
4117 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
4118 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
4122 /* Produce good hash value combining VAL and VAL2. */
4124 iterative_hash_hashval_t (hashval_t val
, hashval_t val2
)
4126 /* the golden ratio; an arbitrary value. */
4127 hashval_t a
= 0x9e3779b9;
4133 /* Produce good hash value combining VAL and VAL2. */
4135 iterative_hash_host_wide_int (HOST_WIDE_INT val
, hashval_t val2
)
4137 if (sizeof (HOST_WIDE_INT
) == sizeof (hashval_t
))
4138 return iterative_hash_hashval_t (val
, val2
);
4141 hashval_t a
= (hashval_t
) val
;
4142 /* Avoid warnings about shifting of more than the width of the type on
4143 hosts that won't execute this path. */
4145 hashval_t b
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 8 + zero
));
4147 if (sizeof (HOST_WIDE_INT
) > 2 * sizeof (hashval_t
))
4149 hashval_t a
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 16 + zero
));
4150 hashval_t b
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 24 + zero
));
4157 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4158 is ATTRIBUTE and its qualifiers are QUALS.
4160 Record such modified types already made so we don't make duplicates. */
4163 build_type_attribute_qual_variant (tree ttype
, tree attribute
, int quals
)
4165 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype
), attribute
))
4167 hashval_t hashcode
= 0;
4169 enum tree_code code
= TREE_CODE (ttype
);
4171 /* Building a distinct copy of a tagged type is inappropriate; it
4172 causes breakage in code that expects there to be a one-to-one
4173 relationship between a struct and its fields.
4174 build_duplicate_type is another solution (as used in
4175 handle_transparent_union_attribute), but that doesn't play well
4176 with the stronger C++ type identity model. */
4177 if (TREE_CODE (ttype
) == RECORD_TYPE
4178 || TREE_CODE (ttype
) == UNION_TYPE
4179 || TREE_CODE (ttype
) == QUAL_UNION_TYPE
4180 || TREE_CODE (ttype
) == ENUMERAL_TYPE
)
4182 warning (OPT_Wattributes
,
4183 "ignoring attributes applied to %qT after definition",
4184 TYPE_MAIN_VARIANT (ttype
));
4185 return build_qualified_type (ttype
, quals
);
4188 ttype
= build_qualified_type (ttype
, TYPE_UNQUALIFIED
);
4189 ntype
= build_distinct_type_copy (ttype
);
4191 TYPE_ATTRIBUTES (ntype
) = attribute
;
4193 hashcode
= iterative_hash_object (code
, hashcode
);
4194 if (TREE_TYPE (ntype
))
4195 hashcode
= iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype
)),
4197 hashcode
= attribute_hash_list (attribute
, hashcode
);
4199 switch (TREE_CODE (ntype
))
4202 hashcode
= type_hash_list (TYPE_ARG_TYPES (ntype
), hashcode
);
4205 if (TYPE_DOMAIN (ntype
))
4206 hashcode
= iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype
)),
4210 hashcode
= iterative_hash_object
4211 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype
)), hashcode
);
4212 hashcode
= iterative_hash_object
4213 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype
)), hashcode
);
4216 case FIXED_POINT_TYPE
:
4218 unsigned int precision
= TYPE_PRECISION (ntype
);
4219 hashcode
= iterative_hash_object (precision
, hashcode
);
4226 ntype
= type_hash_canon (hashcode
, ntype
);
4228 /* If the target-dependent attributes make NTYPE different from
4229 its canonical type, we will need to use structural equality
4230 checks for this type. */
4231 if (TYPE_STRUCTURAL_EQUALITY_P (ttype
)
4232 || !targetm
.comp_type_attributes (ntype
, ttype
))
4233 SET_TYPE_STRUCTURAL_EQUALITY (ntype
);
4234 else if (TYPE_CANONICAL (ntype
) == ntype
)
4235 TYPE_CANONICAL (ntype
) = TYPE_CANONICAL (ttype
);
4237 ttype
= build_qualified_type (ntype
, quals
);
4239 else if (TYPE_QUALS (ttype
) != quals
)
4240 ttype
= build_qualified_type (ttype
, quals
);
4246 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4249 Record such modified types already made so we don't make duplicates. */
4252 build_type_attribute_variant (tree ttype
, tree attribute
)
4254 return build_type_attribute_qual_variant (ttype
, attribute
,
4255 TYPE_QUALS (ttype
));
4259 /* Reset the expression *EXPR_P, a size or position.
4261 ??? We could reset all non-constant sizes or positions. But it's cheap
4262 enough to not do so and refrain from adding workarounds to dwarf2out.c.
4264 We need to reset self-referential sizes or positions because they cannot
4265 be gimplified and thus can contain a CALL_EXPR after the gimplification
4266 is finished, which will run afoul of LTO streaming. And they need to be
4267 reset to something essentially dummy but not constant, so as to preserve
4268 the properties of the object they are attached to. */
4271 free_lang_data_in_one_sizepos (tree
*expr_p
)
4273 tree expr
= *expr_p
;
4274 if (CONTAINS_PLACEHOLDER_P (expr
))
4275 *expr_p
= build0 (PLACEHOLDER_EXPR
, TREE_TYPE (expr
));
4279 /* Reset all the fields in a binfo node BINFO. We only keep
4280 BINFO_VIRTUALS, which is used by gimple_fold_obj_type_ref. */
4283 free_lang_data_in_binfo (tree binfo
)
4288 gcc_assert (TREE_CODE (binfo
) == TREE_BINFO
);
4290 BINFO_VTABLE (binfo
) = NULL_TREE
;
4291 BINFO_BASE_ACCESSES (binfo
) = NULL
;
4292 BINFO_INHERITANCE_CHAIN (binfo
) = NULL_TREE
;
4293 BINFO_SUBVTT_INDEX (binfo
) = NULL_TREE
;
4295 FOR_EACH_VEC_ELT (tree
, BINFO_BASE_BINFOS (binfo
), i
, t
)
4296 free_lang_data_in_binfo (t
);
4300 /* Reset all language specific information still present in TYPE. */
4303 free_lang_data_in_type (tree type
)
4305 gcc_assert (TYPE_P (type
));
4307 /* Give the FE a chance to remove its own data first. */
4308 lang_hooks
.free_lang_data (type
);
4310 TREE_LANG_FLAG_0 (type
) = 0;
4311 TREE_LANG_FLAG_1 (type
) = 0;
4312 TREE_LANG_FLAG_2 (type
) = 0;
4313 TREE_LANG_FLAG_3 (type
) = 0;
4314 TREE_LANG_FLAG_4 (type
) = 0;
4315 TREE_LANG_FLAG_5 (type
) = 0;
4316 TREE_LANG_FLAG_6 (type
) = 0;
4318 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4320 /* Remove the const and volatile qualifiers from arguments. The
4321 C++ front end removes them, but the C front end does not,
4322 leading to false ODR violation errors when merging two
4323 instances of the same function signature compiled by
4324 different front ends. */
4327 for (p
= TYPE_ARG_TYPES (type
); p
; p
= TREE_CHAIN (p
))
4329 tree arg_type
= TREE_VALUE (p
);
4331 if (TYPE_READONLY (arg_type
) || TYPE_VOLATILE (arg_type
))
4333 int quals
= TYPE_QUALS (arg_type
)
4335 & ~TYPE_QUAL_VOLATILE
;
4336 TREE_VALUE (p
) = build_qualified_type (arg_type
, quals
);
4337 free_lang_data_in_type (TREE_VALUE (p
));
4342 /* Remove members that are not actually FIELD_DECLs from the field
4343 list of an aggregate. These occur in C++. */
4344 if (RECORD_OR_UNION_TYPE_P (type
))
4348 /* Note that TYPE_FIELDS can be shared across distinct
4349 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
4350 to be removed, we cannot set its TREE_CHAIN to NULL.
4351 Otherwise, we would not be able to find all the other fields
4352 in the other instances of this TREE_TYPE.
4354 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
4356 member
= TYPE_FIELDS (type
);
4359 if (TREE_CODE (member
) == FIELD_DECL
)
4362 TREE_CHAIN (prev
) = member
;
4364 TYPE_FIELDS (type
) = member
;
4368 member
= TREE_CHAIN (member
);
4372 TREE_CHAIN (prev
) = NULL_TREE
;
4374 TYPE_FIELDS (type
) = NULL_TREE
;
4376 TYPE_METHODS (type
) = NULL_TREE
;
4377 if (TYPE_BINFO (type
))
4378 free_lang_data_in_binfo (TYPE_BINFO (type
));
4382 /* For non-aggregate types, clear out the language slot (which
4383 overloads TYPE_BINFO). */
4384 TYPE_LANG_SLOT_1 (type
) = NULL_TREE
;
4386 if (INTEGRAL_TYPE_P (type
)
4387 || SCALAR_FLOAT_TYPE_P (type
)
4388 || FIXED_POINT_TYPE_P (type
))
4390 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type
));
4391 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type
));
4395 free_lang_data_in_one_sizepos (&TYPE_SIZE (type
));
4396 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type
));
4398 if (debug_info_level
< DINFO_LEVEL_TERSE
4399 || (TYPE_CONTEXT (type
)
4400 && TREE_CODE (TYPE_CONTEXT (type
)) != FUNCTION_DECL
4401 && TREE_CODE (TYPE_CONTEXT (type
)) != NAMESPACE_DECL
))
4402 TYPE_CONTEXT (type
) = NULL_TREE
;
4404 if (debug_info_level
< DINFO_LEVEL_TERSE
)
4405 TYPE_STUB_DECL (type
) = NULL_TREE
;
4409 /* Return true if DECL may need an assembler name to be set. */
4412 need_assembler_name_p (tree decl
)
4414 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
4415 if (TREE_CODE (decl
) != FUNCTION_DECL
4416 && TREE_CODE (decl
) != VAR_DECL
)
4419 /* If DECL already has its assembler name set, it does not need a
4421 if (!HAS_DECL_ASSEMBLER_NAME_P (decl
)
4422 || DECL_ASSEMBLER_NAME_SET_P (decl
))
4425 /* Abstract decls do not need an assembler name. */
4426 if (DECL_ABSTRACT (decl
))
4429 /* For VAR_DECLs, only static, public and external symbols need an
4431 if (TREE_CODE (decl
) == VAR_DECL
4432 && !TREE_STATIC (decl
)
4433 && !TREE_PUBLIC (decl
)
4434 && !DECL_EXTERNAL (decl
))
4437 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4439 /* Do not set assembler name on builtins. Allow RTL expansion to
4440 decide whether to expand inline or via a regular call. */
4441 if (DECL_BUILT_IN (decl
)
4442 && DECL_BUILT_IN_CLASS (decl
) != BUILT_IN_FRONTEND
)
4445 /* Functions represented in the callgraph need an assembler name. */
4446 if (cgraph_get_node (decl
) != NULL
)
4449 /* Unused and not public functions don't need an assembler name. */
4450 if (!TREE_USED (decl
) && !TREE_PUBLIC (decl
))
4458 /* Reset all language specific information still present in symbol
4462 free_lang_data_in_decl (tree decl
)
4464 gcc_assert (DECL_P (decl
));
4466 /* Give the FE a chance to remove its own data first. */
4467 lang_hooks
.free_lang_data (decl
);
4469 TREE_LANG_FLAG_0 (decl
) = 0;
4470 TREE_LANG_FLAG_1 (decl
) = 0;
4471 TREE_LANG_FLAG_2 (decl
) = 0;
4472 TREE_LANG_FLAG_3 (decl
) = 0;
4473 TREE_LANG_FLAG_4 (decl
) = 0;
4474 TREE_LANG_FLAG_5 (decl
) = 0;
4475 TREE_LANG_FLAG_6 (decl
) = 0;
4477 /* Identifiers need not have a type. */
4478 if (DECL_NAME (decl
))
4479 TREE_TYPE (DECL_NAME (decl
)) = NULL_TREE
;
4481 free_lang_data_in_one_sizepos (&DECL_SIZE (decl
));
4482 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl
));
4483 if (TREE_CODE (decl
) == FIELD_DECL
)
4484 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl
));
4486 /* DECL_FCONTEXT is only used for debug info generation. */
4487 if (TREE_CODE (decl
) == FIELD_DECL
4488 && debug_info_level
< DINFO_LEVEL_TERSE
)
4489 DECL_FCONTEXT (decl
) = NULL_TREE
;
4491 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4493 if (gimple_has_body_p (decl
))
4497 /* If DECL has a gimple body, then the context for its
4498 arguments must be DECL. Otherwise, it doesn't really
4499 matter, as we will not be emitting any code for DECL. In
4500 general, there may be other instances of DECL created by
4501 the front end and since PARM_DECLs are generally shared,
4502 their DECL_CONTEXT changes as the replicas of DECL are
4503 created. The only time where DECL_CONTEXT is important
4504 is for the FUNCTION_DECLs that have a gimple body (since
4505 the PARM_DECL will be used in the function's body). */
4506 for (t
= DECL_ARGUMENTS (decl
); t
; t
= TREE_CHAIN (t
))
4507 DECL_CONTEXT (t
) = decl
;
4510 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
4511 At this point, it is not needed anymore. */
4512 DECL_SAVED_TREE (decl
) = NULL_TREE
;
4514 /* Clear the abstract origin if it refers to a method. Otherwise
4515 dwarf2out.c will ICE as we clear TYPE_METHODS and thus the
4516 origin will not be output correctly. */
4517 if (DECL_ABSTRACT_ORIGIN (decl
)
4518 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))
4519 && RECORD_OR_UNION_TYPE_P
4520 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))))
4521 DECL_ABSTRACT_ORIGIN (decl
) = NULL_TREE
;
4523 else if (TREE_CODE (decl
) == VAR_DECL
)
4525 if ((DECL_EXTERNAL (decl
)
4526 && (!TREE_STATIC (decl
) || !TREE_READONLY (decl
)))
4527 || (decl_function_context (decl
) && !TREE_STATIC (decl
)))
4528 DECL_INITIAL (decl
) = NULL_TREE
;
4530 else if (TREE_CODE (decl
) == TYPE_DECL
)
4531 DECL_INITIAL (decl
) = NULL_TREE
;
4535 /* Data used when collecting DECLs and TYPEs for language data removal. */
4537 struct free_lang_data_d
4539 /* Worklist to avoid excessive recursion. */
4540 VEC(tree
,heap
) *worklist
;
4542 /* Set of traversed objects. Used to avoid duplicate visits. */
4543 struct pointer_set_t
*pset
;
4545 /* Array of symbols to process with free_lang_data_in_decl. */
4546 VEC(tree
,heap
) *decls
;
4548 /* Array of types to process with free_lang_data_in_type. */
4549 VEC(tree
,heap
) *types
;
4553 /* Save all language fields needed to generate proper debug information
4554 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
4557 save_debug_info_for_decl (tree t
)
4559 /*struct saved_debug_info_d *sdi;*/
4561 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& DECL_P (t
));
4563 /* FIXME. Partial implementation for saving debug info removed. */
4567 /* Save all language fields needed to generate proper debug information
4568 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
4571 save_debug_info_for_type (tree t
)
4573 /*struct saved_debug_info_d *sdi;*/
4575 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& TYPE_P (t
));
4577 /* FIXME. Partial implementation for saving debug info removed. */
4581 /* Add type or decl T to one of the list of tree nodes that need their
4582 language data removed. The lists are held inside FLD. */
4585 add_tree_to_fld_list (tree t
, struct free_lang_data_d
*fld
)
4589 VEC_safe_push (tree
, heap
, fld
->decls
, t
);
4590 if (debug_info_level
> DINFO_LEVEL_TERSE
)
4591 save_debug_info_for_decl (t
);
4593 else if (TYPE_P (t
))
4595 VEC_safe_push (tree
, heap
, fld
->types
, t
);
4596 if (debug_info_level
> DINFO_LEVEL_TERSE
)
4597 save_debug_info_for_type (t
);
4603 /* Push tree node T into FLD->WORKLIST. */
4606 fld_worklist_push (tree t
, struct free_lang_data_d
*fld
)
4608 if (t
&& !is_lang_specific (t
) && !pointer_set_contains (fld
->pset
, t
))
4609 VEC_safe_push (tree
, heap
, fld
->worklist
, (t
));
4613 /* Operand callback helper for free_lang_data_in_node. *TP is the
4614 subtree operand being considered. */
4617 find_decls_types_r (tree
*tp
, int *ws
, void *data
)
4620 struct free_lang_data_d
*fld
= (struct free_lang_data_d
*) data
;
4622 if (TREE_CODE (t
) == TREE_LIST
)
4625 /* Language specific nodes will be removed, so there is no need
4626 to gather anything under them. */
4627 if (is_lang_specific (t
))
4635 /* Note that walk_tree does not traverse every possible field in
4636 decls, so we have to do our own traversals here. */
4637 add_tree_to_fld_list (t
, fld
);
4639 fld_worklist_push (DECL_NAME (t
), fld
);
4640 fld_worklist_push (DECL_CONTEXT (t
), fld
);
4641 fld_worklist_push (DECL_SIZE (t
), fld
);
4642 fld_worklist_push (DECL_SIZE_UNIT (t
), fld
);
4644 /* We are going to remove everything under DECL_INITIAL for
4645 TYPE_DECLs. No point walking them. */
4646 if (TREE_CODE (t
) != TYPE_DECL
)
4647 fld_worklist_push (DECL_INITIAL (t
), fld
);
4649 fld_worklist_push (DECL_ATTRIBUTES (t
), fld
);
4650 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t
), fld
);
4652 if (TREE_CODE (t
) == FUNCTION_DECL
)
4654 fld_worklist_push (DECL_ARGUMENTS (t
), fld
);
4655 fld_worklist_push (DECL_RESULT (t
), fld
);
4657 else if (TREE_CODE (t
) == TYPE_DECL
)
4659 fld_worklist_push (DECL_ARGUMENT_FLD (t
), fld
);
4660 fld_worklist_push (DECL_VINDEX (t
), fld
);
4662 else if (TREE_CODE (t
) == FIELD_DECL
)
4664 fld_worklist_push (DECL_FIELD_OFFSET (t
), fld
);
4665 fld_worklist_push (DECL_BIT_FIELD_TYPE (t
), fld
);
4666 fld_worklist_push (DECL_QUALIFIER (t
), fld
);
4667 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t
), fld
);
4668 fld_worklist_push (DECL_FCONTEXT (t
), fld
);
4670 else if (TREE_CODE (t
) == VAR_DECL
)
4672 fld_worklist_push (DECL_SECTION_NAME (t
), fld
);
4673 fld_worklist_push (DECL_COMDAT_GROUP (t
), fld
);
4676 if ((TREE_CODE (t
) == VAR_DECL
|| TREE_CODE (t
) == PARM_DECL
)
4677 && DECL_HAS_VALUE_EXPR_P (t
))
4678 fld_worklist_push (DECL_VALUE_EXPR (t
), fld
);
4680 if (TREE_CODE (t
) != FIELD_DECL
4681 && TREE_CODE (t
) != TYPE_DECL
)
4682 fld_worklist_push (TREE_CHAIN (t
), fld
);
4685 else if (TYPE_P (t
))
4687 /* Note that walk_tree does not traverse every possible field in
4688 types, so we have to do our own traversals here. */
4689 add_tree_to_fld_list (t
, fld
);
4691 if (!RECORD_OR_UNION_TYPE_P (t
))
4692 fld_worklist_push (TYPE_CACHED_VALUES (t
), fld
);
4693 fld_worklist_push (TYPE_SIZE (t
), fld
);
4694 fld_worklist_push (TYPE_SIZE_UNIT (t
), fld
);
4695 fld_worklist_push (TYPE_ATTRIBUTES (t
), fld
);
4696 fld_worklist_push (TYPE_POINTER_TO (t
), fld
);
4697 fld_worklist_push (TYPE_REFERENCE_TO (t
), fld
);
4698 fld_worklist_push (TYPE_NAME (t
), fld
);
4699 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
4700 them and thus do not and want not to reach unused pointer types
4702 if (!POINTER_TYPE_P (t
))
4703 fld_worklist_push (TYPE_MINVAL (t
), fld
);
4704 if (!RECORD_OR_UNION_TYPE_P (t
))
4705 fld_worklist_push (TYPE_MAXVAL (t
), fld
);
4706 fld_worklist_push (TYPE_MAIN_VARIANT (t
), fld
);
4707 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
4708 do not and want not to reach unused variants this way. */
4709 fld_worklist_push (TYPE_CONTEXT (t
), fld
);
4710 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
4711 and want not to reach unused types this way. */
4713 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_BINFO (t
))
4717 for (i
= 0; VEC_iterate (tree
, BINFO_BASE_BINFOS (TYPE_BINFO (t
)),
4719 fld_worklist_push (TREE_TYPE (tem
), fld
);
4720 tem
= BINFO_VIRTUALS (TYPE_BINFO (t
));
4722 /* The Java FE overloads BINFO_VIRTUALS for its own purpose. */
4723 && TREE_CODE (tem
) == TREE_LIST
)
4726 fld_worklist_push (TREE_VALUE (tem
), fld
);
4727 tem
= TREE_CHAIN (tem
);
4731 if (RECORD_OR_UNION_TYPE_P (t
))
4734 /* Push all TYPE_FIELDS - there can be interleaving interesting
4735 and non-interesting things. */
4736 tem
= TYPE_FIELDS (t
);
4739 if (TREE_CODE (tem
) == FIELD_DECL
)
4740 fld_worklist_push (tem
, fld
);
4741 tem
= TREE_CHAIN (tem
);
4745 fld_worklist_push (TREE_CHAIN (t
), fld
);
4748 else if (TREE_CODE (t
) == BLOCK
)
4751 for (tem
= BLOCK_VARS (t
); tem
; tem
= TREE_CHAIN (tem
))
4752 fld_worklist_push (tem
, fld
);
4753 for (tem
= BLOCK_SUBBLOCKS (t
); tem
; tem
= BLOCK_CHAIN (tem
))
4754 fld_worklist_push (tem
, fld
);
4755 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t
), fld
);
4758 fld_worklist_push (TREE_TYPE (t
), fld
);
4764 /* Find decls and types in T. */
4767 find_decls_types (tree t
, struct free_lang_data_d
*fld
)
4771 if (!pointer_set_contains (fld
->pset
, t
))
4772 walk_tree (&t
, find_decls_types_r
, fld
, fld
->pset
);
4773 if (VEC_empty (tree
, fld
->worklist
))
4775 t
= VEC_pop (tree
, fld
->worklist
);
4779 /* Translate all the types in LIST with the corresponding runtime
4783 get_eh_types_for_runtime (tree list
)
4787 if (list
== NULL_TREE
)
4790 head
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
4792 list
= TREE_CHAIN (list
);
4795 tree n
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
4796 TREE_CHAIN (prev
) = n
;
4797 prev
= TREE_CHAIN (prev
);
4798 list
= TREE_CHAIN (list
);
4805 /* Find decls and types referenced in EH region R and store them in
4806 FLD->DECLS and FLD->TYPES. */
4809 find_decls_types_in_eh_region (eh_region r
, struct free_lang_data_d
*fld
)
4820 /* The types referenced in each catch must first be changed to the
4821 EH types used at runtime. This removes references to FE types
4823 for (c
= r
->u
.eh_try
.first_catch
; c
; c
= c
->next_catch
)
4825 c
->type_list
= get_eh_types_for_runtime (c
->type_list
);
4826 walk_tree (&c
->type_list
, find_decls_types_r
, fld
, fld
->pset
);
4831 case ERT_ALLOWED_EXCEPTIONS
:
4832 r
->u
.allowed
.type_list
4833 = get_eh_types_for_runtime (r
->u
.allowed
.type_list
);
4834 walk_tree (&r
->u
.allowed
.type_list
, find_decls_types_r
, fld
, fld
->pset
);
4837 case ERT_MUST_NOT_THROW
:
4838 walk_tree (&r
->u
.must_not_throw
.failure_decl
,
4839 find_decls_types_r
, fld
, fld
->pset
);
4845 /* Find decls and types referenced in cgraph node N and store them in
4846 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
4847 look for *every* kind of DECL and TYPE node reachable from N,
4848 including those embedded inside types and decls (i.e,, TYPE_DECLs,
4849 NAMESPACE_DECLs, etc). */
4852 find_decls_types_in_node (struct cgraph_node
*n
, struct free_lang_data_d
*fld
)
4855 struct function
*fn
;
4859 find_decls_types (n
->decl
, fld
);
4861 if (!gimple_has_body_p (n
->decl
))
4864 gcc_assert (current_function_decl
== NULL_TREE
&& cfun
== NULL
);
4866 fn
= DECL_STRUCT_FUNCTION (n
->decl
);
4868 /* Traverse locals. */
4869 FOR_EACH_LOCAL_DECL (fn
, ix
, t
)
4870 find_decls_types (t
, fld
);
4872 /* Traverse EH regions in FN. */
4875 FOR_ALL_EH_REGION_FN (r
, fn
)
4876 find_decls_types_in_eh_region (r
, fld
);
4879 /* Traverse every statement in FN. */
4880 FOR_EACH_BB_FN (bb
, fn
)
4882 gimple_stmt_iterator si
;
4885 for (si
= gsi_start_phis (bb
); !gsi_end_p (si
); gsi_next (&si
))
4887 gimple phi
= gsi_stmt (si
);
4889 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
4891 tree
*arg_p
= gimple_phi_arg_def_ptr (phi
, i
);
4892 find_decls_types (*arg_p
, fld
);
4896 for (si
= gsi_start_bb (bb
); !gsi_end_p (si
); gsi_next (&si
))
4898 gimple stmt
= gsi_stmt (si
);
4900 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
4902 tree arg
= gimple_op (stmt
, i
);
4903 find_decls_types (arg
, fld
);
4910 /* Find decls and types referenced in varpool node N and store them in
4911 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
4912 look for *every* kind of DECL and TYPE node reachable from N,
4913 including those embedded inside types and decls (i.e,, TYPE_DECLs,
4914 NAMESPACE_DECLs, etc). */
4917 find_decls_types_in_var (struct varpool_node
*v
, struct free_lang_data_d
*fld
)
4919 find_decls_types (v
->decl
, fld
);
4922 /* If T needs an assembler name, have one created for it. */
4925 assign_assembler_name_if_neeeded (tree t
)
4927 if (need_assembler_name_p (t
))
4929 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
4930 diagnostics that use input_location to show locus
4931 information. The problem here is that, at this point,
4932 input_location is generally anchored to the end of the file
4933 (since the parser is long gone), so we don't have a good
4934 position to pin it to.
4936 To alleviate this problem, this uses the location of T's
4937 declaration. Examples of this are
4938 testsuite/g++.dg/template/cond2.C and
4939 testsuite/g++.dg/template/pr35240.C. */
4940 location_t saved_location
= input_location
;
4941 input_location
= DECL_SOURCE_LOCATION (t
);
4943 decl_assembler_name (t
);
4945 input_location
= saved_location
;
4950 /* Free language specific information for every operand and expression
4951 in every node of the call graph. This process operates in three stages:
4953 1- Every callgraph node and varpool node is traversed looking for
4954 decls and types embedded in them. This is a more exhaustive
4955 search than that done by find_referenced_vars, because it will
4956 also collect individual fields, decls embedded in types, etc.
4958 2- All the decls found are sent to free_lang_data_in_decl.
4960 3- All the types found are sent to free_lang_data_in_type.
4962 The ordering between decls and types is important because
4963 free_lang_data_in_decl sets assembler names, which includes
4964 mangling. So types cannot be freed up until assembler names have
4968 free_lang_data_in_cgraph (void)
4970 struct cgraph_node
*n
;
4971 struct varpool_node
*v
;
4972 struct free_lang_data_d fld
;
4977 /* Initialize sets and arrays to store referenced decls and types. */
4978 fld
.pset
= pointer_set_create ();
4979 fld
.worklist
= NULL
;
4980 fld
.decls
= VEC_alloc (tree
, heap
, 100);
4981 fld
.types
= VEC_alloc (tree
, heap
, 100);
4983 /* Find decls and types in the body of every function in the callgraph. */
4984 for (n
= cgraph_nodes
; n
; n
= n
->next
)
4985 find_decls_types_in_node (n
, &fld
);
4987 FOR_EACH_VEC_ELT (alias_pair
, alias_pairs
, i
, p
)
4988 find_decls_types (p
->decl
, &fld
);
4990 /* Find decls and types in every varpool symbol. */
4991 for (v
= varpool_nodes
; v
; v
= v
->next
)
4992 find_decls_types_in_var (v
, &fld
);
4994 /* Set the assembler name on every decl found. We need to do this
4995 now because free_lang_data_in_decl will invalidate data needed
4996 for mangling. This breaks mangling on interdependent decls. */
4997 FOR_EACH_VEC_ELT (tree
, fld
.decls
, i
, t
)
4998 assign_assembler_name_if_neeeded (t
);
5000 /* Traverse every decl found freeing its language data. */
5001 FOR_EACH_VEC_ELT (tree
, fld
.decls
, i
, t
)
5002 free_lang_data_in_decl (t
);
5004 /* Traverse every type found freeing its language data. */
5005 FOR_EACH_VEC_ELT (tree
, fld
.types
, i
, t
)
5006 free_lang_data_in_type (t
);
5008 pointer_set_destroy (fld
.pset
);
5009 VEC_free (tree
, heap
, fld
.worklist
);
5010 VEC_free (tree
, heap
, fld
.decls
);
5011 VEC_free (tree
, heap
, fld
.types
);
5015 /* Free resources that are used by FE but are not needed once they are done. */
5018 free_lang_data (void)
5022 /* If we are the LTO frontend we have freed lang-specific data already. */
5024 || !flag_generate_lto
)
5027 /* Allocate and assign alias sets to the standard integer types
5028 while the slots are still in the way the frontends generated them. */
5029 for (i
= 0; i
< itk_none
; ++i
)
5030 if (integer_types
[i
])
5031 TYPE_ALIAS_SET (integer_types
[i
]) = get_alias_set (integer_types
[i
]);
5033 /* Traverse the IL resetting language specific information for
5034 operands, expressions, etc. */
5035 free_lang_data_in_cgraph ();
5037 /* Create gimple variants for common types. */
5038 ptrdiff_type_node
= integer_type_node
;
5039 fileptr_type_node
= ptr_type_node
;
5040 if (TREE_CODE (boolean_type_node
) != BOOLEAN_TYPE
5041 || (TYPE_MODE (boolean_type_node
)
5042 != mode_for_size (BOOL_TYPE_SIZE
, MODE_INT
, 0))
5043 || TYPE_PRECISION (boolean_type_node
) != 1
5044 || !TYPE_UNSIGNED (boolean_type_node
))
5046 boolean_type_node
= make_unsigned_type (BOOL_TYPE_SIZE
);
5047 TREE_SET_CODE (boolean_type_node
, BOOLEAN_TYPE
);
5048 TYPE_MAX_VALUE (boolean_type_node
) = build_int_cst (boolean_type_node
, 1);
5049 TYPE_PRECISION (boolean_type_node
) = 1;
5050 boolean_false_node
= TYPE_MIN_VALUE (boolean_type_node
);
5051 boolean_true_node
= TYPE_MAX_VALUE (boolean_type_node
);
5054 /* Unify char_type_node with its properly signed variant. */
5055 if (TYPE_UNSIGNED (char_type_node
))
5056 unsigned_char_type_node
= char_type_node
;
5058 signed_char_type_node
= char_type_node
;
5060 /* Reset some langhooks. Do not reset types_compatible_p, it may
5061 still be used indirectly via the get_alias_set langhook. */
5062 lang_hooks
.callgraph
.analyze_expr
= NULL
;
5063 lang_hooks
.dwarf_name
= lhd_dwarf_name
;
5064 lang_hooks
.decl_printable_name
= gimple_decl_printable_name
;
5065 lang_hooks
.set_decl_assembler_name
= lhd_set_decl_assembler_name
;
5067 /* Reset diagnostic machinery. */
5068 diagnostic_starter (global_dc
) = default_tree_diagnostic_starter
;
5069 diagnostic_finalizer (global_dc
) = default_diagnostic_finalizer
;
5070 diagnostic_format_decoder (global_dc
) = default_tree_printer
;
5076 struct simple_ipa_opt_pass pass_ipa_free_lang_data
=
5080 "*free_lang_data", /* name */
5082 free_lang_data
, /* execute */
5085 0, /* static_pass_number */
5086 TV_IPA_FREE_LANG_DATA
, /* tv_id */
5087 0, /* properties_required */
5088 0, /* properties_provided */
5089 0, /* properties_destroyed */
5090 0, /* todo_flags_start */
5091 TODO_ggc_collect
/* todo_flags_finish */
5095 /* Return nonzero if IDENT is a valid name for attribute ATTR,
5098 We try both `text' and `__text__', ATTR may be either one. */
5099 /* ??? It might be a reasonable simplification to require ATTR to be only
5100 `text'. One might then also require attribute lists to be stored in
5101 their canonicalized form. */
5104 is_attribute_with_length_p (const char *attr
, int attr_len
, const_tree ident
)
5109 if (TREE_CODE (ident
) != IDENTIFIER_NODE
)
5112 p
= IDENTIFIER_POINTER (ident
);
5113 ident_len
= IDENTIFIER_LENGTH (ident
);
5115 if (ident_len
== attr_len
5116 && strcmp (attr
, p
) == 0)
5119 /* If ATTR is `__text__', IDENT must be `text'; and vice versa. */
5122 gcc_assert (attr
[1] == '_');
5123 gcc_assert (attr
[attr_len
- 2] == '_');
5124 gcc_assert (attr
[attr_len
- 1] == '_');
5125 if (ident_len
== attr_len
- 4
5126 && strncmp (attr
+ 2, p
, attr_len
- 4) == 0)
5131 if (ident_len
== attr_len
+ 4
5132 && p
[0] == '_' && p
[1] == '_'
5133 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5134 && strncmp (attr
, p
+ 2, attr_len
) == 0)
5141 /* Return nonzero if IDENT is a valid name for attribute ATTR,
5144 We try both `text' and `__text__', ATTR may be either one. */
5147 is_attribute_p (const char *attr
, const_tree ident
)
5149 return is_attribute_with_length_p (attr
, strlen (attr
), ident
);
5152 /* Given an attribute name and a list of attributes, return a pointer to the
5153 attribute's list element if the attribute is part of the list, or NULL_TREE
5154 if not found. If the attribute appears more than once, this only
5155 returns the first occurrence; the TREE_CHAIN of the return value should
5156 be passed back in if further occurrences are wanted. */
5159 lookup_attribute (const char *attr_name
, tree list
)
5162 size_t attr_len
= strlen (attr_name
);
5164 for (l
= list
; l
; l
= TREE_CHAIN (l
))
5166 gcc_assert (TREE_CODE (TREE_PURPOSE (l
)) == IDENTIFIER_NODE
);
5167 if (is_attribute_with_length_p (attr_name
, attr_len
, TREE_PURPOSE (l
)))
5173 /* Remove any instances of attribute ATTR_NAME in LIST and return the
5177 remove_attribute (const char *attr_name
, tree list
)
5180 size_t attr_len
= strlen (attr_name
);
5182 for (p
= &list
; *p
; )
5185 gcc_assert (TREE_CODE (TREE_PURPOSE (l
)) == IDENTIFIER_NODE
);
5186 if (is_attribute_with_length_p (attr_name
, attr_len
, TREE_PURPOSE (l
)))
5187 *p
= TREE_CHAIN (l
);
5189 p
= &TREE_CHAIN (l
);
5195 /* Return an attribute list that is the union of a1 and a2. */
5198 merge_attributes (tree a1
, tree a2
)
5202 /* Either one unset? Take the set one. */
5204 if ((attributes
= a1
) == 0)
5207 /* One that completely contains the other? Take it. */
5209 else if (a2
!= 0 && ! attribute_list_contained (a1
, a2
))
5211 if (attribute_list_contained (a2
, a1
))
5215 /* Pick the longest list, and hang on the other list. */
5217 if (list_length (a1
) < list_length (a2
))
5218 attributes
= a2
, a2
= a1
;
5220 for (; a2
!= 0; a2
= TREE_CHAIN (a2
))
5223 for (a
= lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2
)),
5226 a
= lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (a2
)),
5229 if (TREE_VALUE (a
) != NULL
5230 && TREE_CODE (TREE_VALUE (a
)) == TREE_LIST
5231 && TREE_VALUE (a2
) != NULL
5232 && TREE_CODE (TREE_VALUE (a2
)) == TREE_LIST
)
5234 if (simple_cst_list_equal (TREE_VALUE (a
),
5235 TREE_VALUE (a2
)) == 1)
5238 else if (simple_cst_equal (TREE_VALUE (a
),
5239 TREE_VALUE (a2
)) == 1)
5244 a1
= copy_node (a2
);
5245 TREE_CHAIN (a1
) = attributes
;
5254 /* Given types T1 and T2, merge their attributes and return
5258 merge_type_attributes (tree t1
, tree t2
)
5260 return merge_attributes (TYPE_ATTRIBUTES (t1
),
5261 TYPE_ATTRIBUTES (t2
));
5264 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
5268 merge_decl_attributes (tree olddecl
, tree newdecl
)
5270 return merge_attributes (DECL_ATTRIBUTES (olddecl
),
5271 DECL_ATTRIBUTES (newdecl
));
5274 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
5276 /* Specialization of merge_decl_attributes for various Windows targets.
5278 This handles the following situation:
5280 __declspec (dllimport) int foo;
5283 The second instance of `foo' nullifies the dllimport. */
5286 merge_dllimport_decl_attributes (tree old
, tree new_tree
)
5289 int delete_dllimport_p
= 1;
5291 /* What we need to do here is remove from `old' dllimport if it doesn't
5292 appear in `new'. dllimport behaves like extern: if a declaration is
5293 marked dllimport and a definition appears later, then the object
5294 is not dllimport'd. We also remove a `new' dllimport if the old list
5295 contains dllexport: dllexport always overrides dllimport, regardless
5296 of the order of declaration. */
5297 if (!VAR_OR_FUNCTION_DECL_P (new_tree
))
5298 delete_dllimport_p
= 0;
5299 else if (DECL_DLLIMPORT_P (new_tree
)
5300 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old
)))
5302 DECL_DLLIMPORT_P (new_tree
) = 0;
5303 warning (OPT_Wattributes
, "%q+D already declared with dllexport attribute: "
5304 "dllimport ignored", new_tree
);
5306 else if (DECL_DLLIMPORT_P (old
) && !DECL_DLLIMPORT_P (new_tree
))
5308 /* Warn about overriding a symbol that has already been used, e.g.:
5309 extern int __attribute__ ((dllimport)) foo;
5310 int* bar () {return &foo;}
5313 if (TREE_USED (old
))
5315 warning (0, "%q+D redeclared without dllimport attribute "
5316 "after being referenced with dll linkage", new_tree
);
5317 /* If we have used a variable's address with dllimport linkage,
5318 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
5319 decl may already have had TREE_CONSTANT computed.
5320 We still remove the attribute so that assembler code refers
5321 to '&foo rather than '_imp__foo'. */
5322 if (TREE_CODE (old
) == VAR_DECL
&& TREE_ADDRESSABLE (old
))
5323 DECL_DLLIMPORT_P (new_tree
) = 1;
5326 /* Let an inline definition silently override the external reference,
5327 but otherwise warn about attribute inconsistency. */
5328 else if (TREE_CODE (new_tree
) == VAR_DECL
5329 || !DECL_DECLARED_INLINE_P (new_tree
))
5330 warning (OPT_Wattributes
, "%q+D redeclared without dllimport attribute: "
5331 "previous dllimport ignored", new_tree
);
5334 delete_dllimport_p
= 0;
5336 a
= merge_attributes (DECL_ATTRIBUTES (old
), DECL_ATTRIBUTES (new_tree
));
5338 if (delete_dllimport_p
)
5341 const size_t attr_len
= strlen ("dllimport");
5343 /* Scan the list for dllimport and delete it. */
5344 for (prev
= NULL_TREE
, t
= a
; t
; prev
= t
, t
= TREE_CHAIN (t
))
5346 if (is_attribute_with_length_p ("dllimport", attr_len
,
5349 if (prev
== NULL_TREE
)
5352 TREE_CHAIN (prev
) = TREE_CHAIN (t
);
5361 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
5362 struct attribute_spec.handler. */
5365 handle_dll_attribute (tree
* pnode
, tree name
, tree args
, int flags
,
5371 /* These attributes may apply to structure and union types being created,
5372 but otherwise should pass to the declaration involved. */
5375 if (flags
& ((int) ATTR_FLAG_DECL_NEXT
| (int) ATTR_FLAG_FUNCTION_NEXT
5376 | (int) ATTR_FLAG_ARRAY_NEXT
))
5378 *no_add_attrs
= true;
5379 return tree_cons (name
, args
, NULL_TREE
);
5381 if (TREE_CODE (node
) == RECORD_TYPE
5382 || TREE_CODE (node
) == UNION_TYPE
)
5384 node
= TYPE_NAME (node
);
5390 warning (OPT_Wattributes
, "%qE attribute ignored",
5392 *no_add_attrs
= true;
5397 if (TREE_CODE (node
) != FUNCTION_DECL
5398 && TREE_CODE (node
) != VAR_DECL
5399 && TREE_CODE (node
) != TYPE_DECL
)
5401 *no_add_attrs
= true;
5402 warning (OPT_Wattributes
, "%qE attribute ignored",
5407 if (TREE_CODE (node
) == TYPE_DECL
5408 && TREE_CODE (TREE_TYPE (node
)) != RECORD_TYPE
5409 && TREE_CODE (TREE_TYPE (node
)) != UNION_TYPE
)
5411 *no_add_attrs
= true;
5412 warning (OPT_Wattributes
, "%qE attribute ignored",
5417 is_dllimport
= is_attribute_p ("dllimport", name
);
5419 /* Report error on dllimport ambiguities seen now before they cause
5423 /* Honor any target-specific overrides. */
5424 if (!targetm
.valid_dllimport_attribute_p (node
))
5425 *no_add_attrs
= true;
5427 else if (TREE_CODE (node
) == FUNCTION_DECL
5428 && DECL_DECLARED_INLINE_P (node
))
5430 warning (OPT_Wattributes
, "inline function %q+D declared as "
5431 " dllimport: attribute ignored", node
);
5432 *no_add_attrs
= true;
5434 /* Like MS, treat definition of dllimported variables and
5435 non-inlined functions on declaration as syntax errors. */
5436 else if (TREE_CODE (node
) == FUNCTION_DECL
&& DECL_INITIAL (node
))
5438 error ("function %q+D definition is marked dllimport", node
);
5439 *no_add_attrs
= true;
5442 else if (TREE_CODE (node
) == VAR_DECL
)
5444 if (DECL_INITIAL (node
))
5446 error ("variable %q+D definition is marked dllimport",
5448 *no_add_attrs
= true;
5451 /* `extern' needn't be specified with dllimport.
5452 Specify `extern' now and hope for the best. Sigh. */
5453 DECL_EXTERNAL (node
) = 1;
5454 /* Also, implicitly give dllimport'd variables declared within
5455 a function global scope, unless declared static. */
5456 if (current_function_decl
!= NULL_TREE
&& !TREE_STATIC (node
))
5457 TREE_PUBLIC (node
) = 1;
5460 if (*no_add_attrs
== false)
5461 DECL_DLLIMPORT_P (node
) = 1;
5463 else if (TREE_CODE (node
) == FUNCTION_DECL
5464 && DECL_DECLARED_INLINE_P (node
))
5465 /* An exported function, even if inline, must be emitted. */
5466 DECL_EXTERNAL (node
) = 0;
5468 /* Report error if symbol is not accessible at global scope. */
5469 if (!TREE_PUBLIC (node
)
5470 && (TREE_CODE (node
) == VAR_DECL
5471 || TREE_CODE (node
) == FUNCTION_DECL
))
5473 error ("external linkage required for symbol %q+D because of "
5474 "%qE attribute", node
, name
);
5475 *no_add_attrs
= true;
5478 /* A dllexport'd entity must have default visibility so that other
5479 program units (shared libraries or the main executable) can see
5480 it. A dllimport'd entity must have default visibility so that
5481 the linker knows that undefined references within this program
5482 unit can be resolved by the dynamic linker. */
5485 if (DECL_VISIBILITY_SPECIFIED (node
)
5486 && DECL_VISIBILITY (node
) != VISIBILITY_DEFAULT
)
5487 error ("%qE implies default visibility, but %qD has already "
5488 "been declared with a different visibility",
5490 DECL_VISIBILITY (node
) = VISIBILITY_DEFAULT
;
5491 DECL_VISIBILITY_SPECIFIED (node
) = 1;
5497 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
5499 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5500 of the various TYPE_QUAL values. */
5503 set_type_quals (tree type
, int type_quals
)
5505 TYPE_READONLY (type
) = (type_quals
& TYPE_QUAL_CONST
) != 0;
5506 TYPE_VOLATILE (type
) = (type_quals
& TYPE_QUAL_VOLATILE
) != 0;
5507 TYPE_RESTRICT (type
) = (type_quals
& TYPE_QUAL_RESTRICT
) != 0;
5508 TYPE_ADDR_SPACE (type
) = DECODE_QUAL_ADDR_SPACE (type_quals
);
5511 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
5514 check_qualified_type (const_tree cand
, const_tree base
, int type_quals
)
5516 return (TYPE_QUALS (cand
) == type_quals
5517 && TYPE_NAME (cand
) == TYPE_NAME (base
)
5518 /* Apparently this is needed for Objective-C. */
5519 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
5520 /* Check alignment. */
5521 && TYPE_ALIGN (cand
) == TYPE_ALIGN (base
)
5522 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
5523 TYPE_ATTRIBUTES (base
)));
5526 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
5529 check_aligned_type (const_tree cand
, const_tree base
, unsigned int align
)
5531 return (TYPE_QUALS (cand
) == TYPE_QUALS (base
)
5532 && TYPE_NAME (cand
) == TYPE_NAME (base
)
5533 /* Apparently this is needed for Objective-C. */
5534 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
5535 /* Check alignment. */
5536 && TYPE_ALIGN (cand
) == align
5537 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
5538 TYPE_ATTRIBUTES (base
)));
5541 /* Return a version of the TYPE, qualified as indicated by the
5542 TYPE_QUALS, if one exists. If no qualified version exists yet,
5543 return NULL_TREE. */
5546 get_qualified_type (tree type
, int type_quals
)
5550 if (TYPE_QUALS (type
) == type_quals
)
5553 /* Search the chain of variants to see if there is already one there just
5554 like the one we need to have. If so, use that existing one. We must
5555 preserve the TYPE_NAME, since there is code that depends on this. */
5556 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
5557 if (check_qualified_type (t
, type
, type_quals
))
5563 /* Like get_qualified_type, but creates the type if it does not
5564 exist. This function never returns NULL_TREE. */
5567 build_qualified_type (tree type
, int type_quals
)
5571 /* See if we already have the appropriate qualified variant. */
5572 t
= get_qualified_type (type
, type_quals
);
5574 /* If not, build it. */
5577 t
= build_variant_type_copy (type
);
5578 set_type_quals (t
, type_quals
);
5580 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
5581 /* Propagate structural equality. */
5582 SET_TYPE_STRUCTURAL_EQUALITY (t
);
5583 else if (TYPE_CANONICAL (type
) != type
)
5584 /* Build the underlying canonical type, since it is different
5586 TYPE_CANONICAL (t
) = build_qualified_type (TYPE_CANONICAL (type
),
5589 /* T is its own canonical type. */
5590 TYPE_CANONICAL (t
) = t
;
5597 /* Create a variant of type T with alignment ALIGN. */
5600 build_aligned_type (tree type
, unsigned int align
)
5604 if (TYPE_PACKED (type
)
5605 || TYPE_ALIGN (type
) == align
)
5608 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
5609 if (check_aligned_type (t
, type
, align
))
5612 t
= build_variant_type_copy (type
);
5613 TYPE_ALIGN (t
) = align
;
5618 /* Create a new distinct copy of TYPE. The new type is made its own
5619 MAIN_VARIANT. If TYPE requires structural equality checks, the
5620 resulting type requires structural equality checks; otherwise, its
5621 TYPE_CANONICAL points to itself. */
5624 build_distinct_type_copy (tree type
)
5626 tree t
= copy_node (type
);
5628 TYPE_POINTER_TO (t
) = 0;
5629 TYPE_REFERENCE_TO (t
) = 0;
5631 /* Set the canonical type either to a new equivalence class, or
5632 propagate the need for structural equality checks. */
5633 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
5634 SET_TYPE_STRUCTURAL_EQUALITY (t
);
5636 TYPE_CANONICAL (t
) = t
;
5638 /* Make it its own variant. */
5639 TYPE_MAIN_VARIANT (t
) = t
;
5640 TYPE_NEXT_VARIANT (t
) = 0;
5642 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
5643 whose TREE_TYPE is not t. This can also happen in the Ada
5644 frontend when using subtypes. */
5649 /* Create a new variant of TYPE, equivalent but distinct. This is so
5650 the caller can modify it. TYPE_CANONICAL for the return type will
5651 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
5652 are considered equal by the language itself (or that both types
5653 require structural equality checks). */
5656 build_variant_type_copy (tree type
)
5658 tree t
, m
= TYPE_MAIN_VARIANT (type
);
5660 t
= build_distinct_type_copy (type
);
5662 /* Since we're building a variant, assume that it is a non-semantic
5663 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
5664 TYPE_CANONICAL (t
) = TYPE_CANONICAL (type
);
5666 /* Add the new type to the chain of variants of TYPE. */
5667 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (m
);
5668 TYPE_NEXT_VARIANT (m
) = t
;
5669 TYPE_MAIN_VARIANT (t
) = m
;
5674 /* Return true if the from tree in both tree maps are equal. */
5677 tree_map_base_eq (const void *va
, const void *vb
)
5679 const struct tree_map_base
*const a
= (const struct tree_map_base
*) va
,
5680 *const b
= (const struct tree_map_base
*) vb
;
5681 return (a
->from
== b
->from
);
5684 /* Hash a from tree in a tree_base_map. */
5687 tree_map_base_hash (const void *item
)
5689 return htab_hash_pointer (((const struct tree_map_base
*)item
)->from
);
5692 /* Return true if this tree map structure is marked for garbage collection
5693 purposes. We simply return true if the from tree is marked, so that this
5694 structure goes away when the from tree goes away. */
5697 tree_map_base_marked_p (const void *p
)
5699 return ggc_marked_p (((const struct tree_map_base
*) p
)->from
);
5702 /* Hash a from tree in a tree_map. */
5705 tree_map_hash (const void *item
)
5707 return (((const struct tree_map
*) item
)->hash
);
5710 /* Hash a from tree in a tree_decl_map. */
5713 tree_decl_map_hash (const void *item
)
5715 return DECL_UID (((const struct tree_decl_map
*) item
)->base
.from
);
5718 /* Return the initialization priority for DECL. */
5721 decl_init_priority_lookup (tree decl
)
5723 struct tree_priority_map
*h
;
5724 struct tree_map_base in
;
5726 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
5728 h
= (struct tree_priority_map
*) htab_find (init_priority_for_decl
, &in
);
5729 return h
? h
->init
: DEFAULT_INIT_PRIORITY
;
5732 /* Return the finalization priority for DECL. */
5735 decl_fini_priority_lookup (tree decl
)
5737 struct tree_priority_map
*h
;
5738 struct tree_map_base in
;
5740 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
5742 h
= (struct tree_priority_map
*) htab_find (init_priority_for_decl
, &in
);
5743 return h
? h
->fini
: DEFAULT_INIT_PRIORITY
;
5746 /* Return the initialization and finalization priority information for
5747 DECL. If there is no previous priority information, a freshly
5748 allocated structure is returned. */
5750 static struct tree_priority_map
*
5751 decl_priority_info (tree decl
)
5753 struct tree_priority_map in
;
5754 struct tree_priority_map
*h
;
5757 in
.base
.from
= decl
;
5758 loc
= htab_find_slot (init_priority_for_decl
, &in
, INSERT
);
5759 h
= (struct tree_priority_map
*) *loc
;
5762 h
= ggc_alloc_cleared_tree_priority_map ();
5764 h
->base
.from
= decl
;
5765 h
->init
= DEFAULT_INIT_PRIORITY
;
5766 h
->fini
= DEFAULT_INIT_PRIORITY
;
5772 /* Set the initialization priority for DECL to PRIORITY. */
5775 decl_init_priority_insert (tree decl
, priority_type priority
)
5777 struct tree_priority_map
*h
;
5779 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
5780 h
= decl_priority_info (decl
);
5784 /* Set the finalization priority for DECL to PRIORITY. */
5787 decl_fini_priority_insert (tree decl
, priority_type priority
)
5789 struct tree_priority_map
*h
;
5791 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
5792 h
= decl_priority_info (decl
);
5796 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
5799 print_debug_expr_statistics (void)
5801 fprintf (stderr
, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
5802 (long) htab_size (debug_expr_for_decl
),
5803 (long) htab_elements (debug_expr_for_decl
),
5804 htab_collisions (debug_expr_for_decl
));
5807 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
5810 print_value_expr_statistics (void)
5812 fprintf (stderr
, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
5813 (long) htab_size (value_expr_for_decl
),
5814 (long) htab_elements (value_expr_for_decl
),
5815 htab_collisions (value_expr_for_decl
));
5818 /* Lookup a debug expression for FROM, and return it if we find one. */
5821 decl_debug_expr_lookup (tree from
)
5823 struct tree_decl_map
*h
, in
;
5824 in
.base
.from
= from
;
5826 h
= (struct tree_decl_map
*)
5827 htab_find_with_hash (debug_expr_for_decl
, &in
, DECL_UID (from
));
5833 /* Insert a mapping FROM->TO in the debug expression hashtable. */
5836 decl_debug_expr_insert (tree from
, tree to
)
5838 struct tree_decl_map
*h
;
5841 h
= ggc_alloc_tree_decl_map ();
5842 h
->base
.from
= from
;
5844 loc
= htab_find_slot_with_hash (debug_expr_for_decl
, h
, DECL_UID (from
),
5846 *(struct tree_decl_map
**) loc
= h
;
5849 /* Lookup a value expression for FROM, and return it if we find one. */
5852 decl_value_expr_lookup (tree from
)
5854 struct tree_decl_map
*h
, in
;
5855 in
.base
.from
= from
;
5857 h
= (struct tree_decl_map
*)
5858 htab_find_with_hash (value_expr_for_decl
, &in
, DECL_UID (from
));
5864 /* Insert a mapping FROM->TO in the value expression hashtable. */
5867 decl_value_expr_insert (tree from
, tree to
)
5869 struct tree_decl_map
*h
;
5872 h
= ggc_alloc_tree_decl_map ();
5873 h
->base
.from
= from
;
5875 loc
= htab_find_slot_with_hash (value_expr_for_decl
, h
, DECL_UID (from
),
5877 *(struct tree_decl_map
**) loc
= h
;
5880 /* Hashing of types so that we don't make duplicates.
5881 The entry point is `type_hash_canon'. */
5883 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
5884 with types in the TREE_VALUE slots), by adding the hash codes
5885 of the individual types. */
5888 type_hash_list (const_tree list
, hashval_t hashcode
)
5892 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
5893 if (TREE_VALUE (tail
) != error_mark_node
)
5894 hashcode
= iterative_hash_object (TYPE_HASH (TREE_VALUE (tail
)),
5900 /* These are the Hashtable callback functions. */
5902 /* Returns true iff the types are equivalent. */
5905 type_hash_eq (const void *va
, const void *vb
)
5907 const struct type_hash
*const a
= (const struct type_hash
*) va
,
5908 *const b
= (const struct type_hash
*) vb
;
5910 /* First test the things that are the same for all types. */
5911 if (a
->hash
!= b
->hash
5912 || TREE_CODE (a
->type
) != TREE_CODE (b
->type
)
5913 || TREE_TYPE (a
->type
) != TREE_TYPE (b
->type
)
5914 || !attribute_list_equal (TYPE_ATTRIBUTES (a
->type
),
5915 TYPE_ATTRIBUTES (b
->type
))
5916 || TYPE_ALIGN (a
->type
) != TYPE_ALIGN (b
->type
)
5917 || TYPE_MODE (a
->type
) != TYPE_MODE (b
->type
)
5918 || (TREE_CODE (a
->type
) != COMPLEX_TYPE
5919 && TYPE_NAME (a
->type
) != TYPE_NAME (b
->type
)))
5922 switch (TREE_CODE (a
->type
))
5927 case REFERENCE_TYPE
:
5931 return TYPE_VECTOR_SUBPARTS (a
->type
) == TYPE_VECTOR_SUBPARTS (b
->type
);
5934 if (TYPE_VALUES (a
->type
) != TYPE_VALUES (b
->type
)
5935 && !(TYPE_VALUES (a
->type
)
5936 && TREE_CODE (TYPE_VALUES (a
->type
)) == TREE_LIST
5937 && TYPE_VALUES (b
->type
)
5938 && TREE_CODE (TYPE_VALUES (b
->type
)) == TREE_LIST
5939 && type_list_equal (TYPE_VALUES (a
->type
),
5940 TYPE_VALUES (b
->type
))))
5943 /* ... fall through ... */
5948 return ((TYPE_MAX_VALUE (a
->type
) == TYPE_MAX_VALUE (b
->type
)
5949 || tree_int_cst_equal (TYPE_MAX_VALUE (a
->type
),
5950 TYPE_MAX_VALUE (b
->type
)))
5951 && (TYPE_MIN_VALUE (a
->type
) == TYPE_MIN_VALUE (b
->type
)
5952 || tree_int_cst_equal (TYPE_MIN_VALUE (a
->type
),
5953 TYPE_MIN_VALUE (b
->type
))));
5955 case FIXED_POINT_TYPE
:
5956 return TYPE_SATURATING (a
->type
) == TYPE_SATURATING (b
->type
);
5959 return TYPE_OFFSET_BASETYPE (a
->type
) == TYPE_OFFSET_BASETYPE (b
->type
);
5962 return (TYPE_METHOD_BASETYPE (a
->type
) == TYPE_METHOD_BASETYPE (b
->type
)
5963 && (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
5964 || (TYPE_ARG_TYPES (a
->type
)
5965 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
5966 && TYPE_ARG_TYPES (b
->type
)
5967 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
5968 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
5969 TYPE_ARG_TYPES (b
->type
)))));
5972 return TYPE_DOMAIN (a
->type
) == TYPE_DOMAIN (b
->type
);
5976 case QUAL_UNION_TYPE
:
5977 return (TYPE_FIELDS (a
->type
) == TYPE_FIELDS (b
->type
)
5978 || (TYPE_FIELDS (a
->type
)
5979 && TREE_CODE (TYPE_FIELDS (a
->type
)) == TREE_LIST
5980 && TYPE_FIELDS (b
->type
)
5981 && TREE_CODE (TYPE_FIELDS (b
->type
)) == TREE_LIST
5982 && type_list_equal (TYPE_FIELDS (a
->type
),
5983 TYPE_FIELDS (b
->type
))));
5986 if (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
5987 || (TYPE_ARG_TYPES (a
->type
)
5988 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
5989 && TYPE_ARG_TYPES (b
->type
)
5990 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
5991 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
5992 TYPE_ARG_TYPES (b
->type
))))
6000 if (lang_hooks
.types
.type_hash_eq
!= NULL
)
6001 return lang_hooks
.types
.type_hash_eq (a
->type
, b
->type
);
6006 /* Return the cached hash value. */
6009 type_hash_hash (const void *item
)
6011 return ((const struct type_hash
*) item
)->hash
;
6014 /* Look in the type hash table for a type isomorphic to TYPE.
6015 If one is found, return it. Otherwise return 0. */
6018 type_hash_lookup (hashval_t hashcode
, tree type
)
6020 struct type_hash
*h
, in
;
6022 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6023 must call that routine before comparing TYPE_ALIGNs. */
6029 h
= (struct type_hash
*) htab_find_with_hash (type_hash_table
, &in
,
6036 /* Add an entry to the type-hash-table
6037 for a type TYPE whose hash code is HASHCODE. */
6040 type_hash_add (hashval_t hashcode
, tree type
)
6042 struct type_hash
*h
;
6045 h
= ggc_alloc_type_hash ();
6048 loc
= htab_find_slot_with_hash (type_hash_table
, h
, hashcode
, INSERT
);
6052 /* Given TYPE, and HASHCODE its hash code, return the canonical
6053 object for an identical type if one already exists.
6054 Otherwise, return TYPE, and record it as the canonical object.
6056 To use this function, first create a type of the sort you want.
6057 Then compute its hash code from the fields of the type that
6058 make it different from other similar types.
6059 Then call this function and use the value. */
6062 type_hash_canon (unsigned int hashcode
, tree type
)
6066 /* The hash table only contains main variants, so ensure that's what we're
6068 gcc_assert (TYPE_MAIN_VARIANT (type
) == type
);
6070 /* See if the type is in the hash table already. If so, return it.
6071 Otherwise, add the type. */
6072 t1
= type_hash_lookup (hashcode
, type
);
6075 #ifdef GATHER_STATISTICS
6076 tree_node_counts
[(int) t_kind
]--;
6077 tree_node_sizes
[(int) t_kind
] -= sizeof (struct tree_type
);
6083 type_hash_add (hashcode
, type
);
6088 /* See if the data pointed to by the type hash table is marked. We consider
6089 it marked if the type is marked or if a debug type number or symbol
6090 table entry has been made for the type. */
6093 type_hash_marked_p (const void *p
)
6095 const_tree
const type
= ((const struct type_hash
*) p
)->type
;
6097 return ggc_marked_p (type
);
6101 print_type_hash_statistics (void)
6103 fprintf (stderr
, "Type hash: size %ld, %ld elements, %f collisions\n",
6104 (long) htab_size (type_hash_table
),
6105 (long) htab_elements (type_hash_table
),
6106 htab_collisions (type_hash_table
));
6109 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
6110 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
6111 by adding the hash codes of the individual attributes. */
6114 attribute_hash_list (const_tree list
, hashval_t hashcode
)
6118 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
6119 /* ??? Do we want to add in TREE_VALUE too? */
6120 hashcode
= iterative_hash_object
6121 (IDENTIFIER_HASH_VALUE (TREE_PURPOSE (tail
)), hashcode
);
6125 /* Given two lists of attributes, return true if list l2 is
6126 equivalent to l1. */
6129 attribute_list_equal (const_tree l1
, const_tree l2
)
6131 return attribute_list_contained (l1
, l2
)
6132 && attribute_list_contained (l2
, l1
);
6135 /* Given two lists of attributes, return true if list L2 is
6136 completely contained within L1. */
6137 /* ??? This would be faster if attribute names were stored in a canonicalized
6138 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
6139 must be used to show these elements are equivalent (which they are). */
6140 /* ??? It's not clear that attributes with arguments will always be handled
6144 attribute_list_contained (const_tree l1
, const_tree l2
)
6148 /* First check the obvious, maybe the lists are identical. */
6152 /* Maybe the lists are similar. */
6153 for (t1
= l1
, t2
= l2
;
6155 && TREE_PURPOSE (t1
) == TREE_PURPOSE (t2
)
6156 && TREE_VALUE (t1
) == TREE_VALUE (t2
);
6157 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
));
6159 /* Maybe the lists are equal. */
6160 if (t1
== 0 && t2
== 0)
6163 for (; t2
!= 0; t2
= TREE_CHAIN (t2
))
6166 /* This CONST_CAST is okay because lookup_attribute does not
6167 modify its argument and the return value is assigned to a
6169 for (attr
= lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2
)),
6170 CONST_CAST_TREE(l1
));
6172 attr
= lookup_attribute (IDENTIFIER_POINTER (TREE_PURPOSE (t2
)),
6175 if (TREE_VALUE (t2
) != NULL
6176 && TREE_CODE (TREE_VALUE (t2
)) == TREE_LIST
6177 && TREE_VALUE (attr
) != NULL
6178 && TREE_CODE (TREE_VALUE (attr
)) == TREE_LIST
)
6180 if (simple_cst_list_equal (TREE_VALUE (t2
),
6181 TREE_VALUE (attr
)) == 1)
6184 else if (simple_cst_equal (TREE_VALUE (t2
), TREE_VALUE (attr
)) == 1)
6195 /* Given two lists of types
6196 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6197 return 1 if the lists contain the same types in the same order.
6198 Also, the TREE_PURPOSEs must match. */
6201 type_list_equal (const_tree l1
, const_tree l2
)
6205 for (t1
= l1
, t2
= l2
; t1
&& t2
; t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
6206 if (TREE_VALUE (t1
) != TREE_VALUE (t2
)
6207 || (TREE_PURPOSE (t1
) != TREE_PURPOSE (t2
)
6208 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1
), TREE_PURPOSE (t2
))
6209 && (TREE_TYPE (TREE_PURPOSE (t1
))
6210 == TREE_TYPE (TREE_PURPOSE (t2
))))))
6216 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6217 given by TYPE. If the argument list accepts variable arguments,
6218 then this function counts only the ordinary arguments. */
6221 type_num_arguments (const_tree type
)
6226 for (t
= TYPE_ARG_TYPES (type
); t
; t
= TREE_CHAIN (t
))
6227 /* If the function does not take a variable number of arguments,
6228 the last element in the list will have type `void'. */
6229 if (VOID_TYPE_P (TREE_VALUE (t
)))
6237 /* Nonzero if integer constants T1 and T2
6238 represent the same constant value. */
6241 tree_int_cst_equal (const_tree t1
, const_tree t2
)
6246 if (t1
== 0 || t2
== 0)
6249 if (TREE_CODE (t1
) == INTEGER_CST
6250 && TREE_CODE (t2
) == INTEGER_CST
6251 && TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
6252 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
))
6258 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
6259 The precise way of comparison depends on their data type. */
6262 tree_int_cst_lt (const_tree t1
, const_tree t2
)
6267 if (TYPE_UNSIGNED (TREE_TYPE (t1
)) != TYPE_UNSIGNED (TREE_TYPE (t2
)))
6269 int t1_sgn
= tree_int_cst_sgn (t1
);
6270 int t2_sgn
= tree_int_cst_sgn (t2
);
6272 if (t1_sgn
< t2_sgn
)
6274 else if (t1_sgn
> t2_sgn
)
6276 /* Otherwise, both are non-negative, so we compare them as
6277 unsigned just in case one of them would overflow a signed
6280 else if (!TYPE_UNSIGNED (TREE_TYPE (t1
)))
6281 return INT_CST_LT (t1
, t2
);
6283 return INT_CST_LT_UNSIGNED (t1
, t2
);
6286 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
6289 tree_int_cst_compare (const_tree t1
, const_tree t2
)
6291 if (tree_int_cst_lt (t1
, t2
))
6293 else if (tree_int_cst_lt (t2
, t1
))
6299 /* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
6300 the host. If POS is zero, the value can be represented in a single
6301 HOST_WIDE_INT. If POS is nonzero, the value must be non-negative and can
6302 be represented in a single unsigned HOST_WIDE_INT. */
6305 host_integerp (const_tree t
, int pos
)
6310 return (TREE_CODE (t
) == INTEGER_CST
6311 && ((TREE_INT_CST_HIGH (t
) == 0
6312 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) >= 0)
6313 || (! pos
&& TREE_INT_CST_HIGH (t
) == -1
6314 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0
6315 && (!TYPE_UNSIGNED (TREE_TYPE (t
))
6316 || (TREE_CODE (TREE_TYPE (t
)) == INTEGER_TYPE
6317 && TYPE_IS_SIZETYPE (TREE_TYPE (t
)))))
6318 || (pos
&& TREE_INT_CST_HIGH (t
) == 0)));
6321 /* Return the HOST_WIDE_INT least significant bits of T if it is an
6322 INTEGER_CST and there is no overflow. POS is nonzero if the result must
6323 be non-negative. We must be able to satisfy the above conditions. */
6326 tree_low_cst (const_tree t
, int pos
)
6328 gcc_assert (host_integerp (t
, pos
));
6329 return TREE_INT_CST_LOW (t
);
6332 /* Return the most significant bit of the integer constant T. */
6335 tree_int_cst_msb (const_tree t
)
6339 unsigned HOST_WIDE_INT l
;
6341 /* Note that using TYPE_PRECISION here is wrong. We care about the
6342 actual bits, not the (arbitrary) range of the type. */
6343 prec
= GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (t
))) - 1;
6344 rshift_double (TREE_INT_CST_LOW (t
), TREE_INT_CST_HIGH (t
), prec
,
6345 2 * HOST_BITS_PER_WIDE_INT
, &l
, &h
, 0);
6346 return (l
& 1) == 1;
6349 /* Return an indication of the sign of the integer constant T.
6350 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6351 Note that -1 will never be returned if T's type is unsigned. */
6354 tree_int_cst_sgn (const_tree t
)
6356 if (TREE_INT_CST_LOW (t
) == 0 && TREE_INT_CST_HIGH (t
) == 0)
6358 else if (TYPE_UNSIGNED (TREE_TYPE (t
)))
6360 else if (TREE_INT_CST_HIGH (t
) < 0)
6366 /* Return the minimum number of bits needed to represent VALUE in a
6367 signed or unsigned type, UNSIGNEDP says which. */
6370 tree_int_cst_min_precision (tree value
, bool unsignedp
)
6374 /* If the value is negative, compute its negative minus 1. The latter
6375 adjustment is because the absolute value of the largest negative value
6376 is one larger than the largest positive value. This is equivalent to
6377 a bit-wise negation, so use that operation instead. */
6379 if (tree_int_cst_sgn (value
) < 0)
6380 value
= fold_build1 (BIT_NOT_EXPR
, TREE_TYPE (value
), value
);
6382 /* Return the number of bits needed, taking into account the fact
6383 that we need one more bit for a signed than unsigned type. */
6385 if (integer_zerop (value
))
6388 log
= tree_floor_log2 (value
);
6390 return log
+ 1 + !unsignedp
;
6393 /* Compare two constructor-element-type constants. Return 1 if the lists
6394 are known to be equal; otherwise return 0. */
6397 simple_cst_list_equal (const_tree l1
, const_tree l2
)
6399 while (l1
!= NULL_TREE
&& l2
!= NULL_TREE
)
6401 if (simple_cst_equal (TREE_VALUE (l1
), TREE_VALUE (l2
)) != 1)
6404 l1
= TREE_CHAIN (l1
);
6405 l2
= TREE_CHAIN (l2
);
6411 /* Return truthvalue of whether T1 is the same tree structure as T2.
6412 Return 1 if they are the same.
6413 Return 0 if they are understandably different.
6414 Return -1 if either contains tree structure not understood by
6418 simple_cst_equal (const_tree t1
, const_tree t2
)
6420 enum tree_code code1
, code2
;
6426 if (t1
== 0 || t2
== 0)
6429 code1
= TREE_CODE (t1
);
6430 code2
= TREE_CODE (t2
);
6432 if (CONVERT_EXPR_CODE_P (code1
) || code1
== NON_LVALUE_EXPR
)
6434 if (CONVERT_EXPR_CODE_P (code2
)
6435 || code2
== NON_LVALUE_EXPR
)
6436 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6438 return simple_cst_equal (TREE_OPERAND (t1
, 0), t2
);
6441 else if (CONVERT_EXPR_CODE_P (code2
)
6442 || code2
== NON_LVALUE_EXPR
)
6443 return simple_cst_equal (t1
, TREE_OPERAND (t2
, 0));
6451 return (TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
6452 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
));
6455 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
6458 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
6461 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
6462 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
6463 TREE_STRING_LENGTH (t1
)));
6467 unsigned HOST_WIDE_INT idx
;
6468 VEC(constructor_elt
, gc
) *v1
= CONSTRUCTOR_ELTS (t1
);
6469 VEC(constructor_elt
, gc
) *v2
= CONSTRUCTOR_ELTS (t2
);
6471 if (VEC_length (constructor_elt
, v1
) != VEC_length (constructor_elt
, v2
))
6474 for (idx
= 0; idx
< VEC_length (constructor_elt
, v1
); ++idx
)
6475 /* ??? Should we handle also fields here? */
6476 if (!simple_cst_equal (VEC_index (constructor_elt
, v1
, idx
)->value
,
6477 VEC_index (constructor_elt
, v2
, idx
)->value
))
6483 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6486 cmp
= simple_cst_equal (CALL_EXPR_FN (t1
), CALL_EXPR_FN (t2
));
6489 if (call_expr_nargs (t1
) != call_expr_nargs (t2
))
6492 const_tree arg1
, arg2
;
6493 const_call_expr_arg_iterator iter1
, iter2
;
6494 for (arg1
= first_const_call_expr_arg (t1
, &iter1
),
6495 arg2
= first_const_call_expr_arg (t2
, &iter2
);
6497 arg1
= next_const_call_expr_arg (&iter1
),
6498 arg2
= next_const_call_expr_arg (&iter2
))
6500 cmp
= simple_cst_equal (arg1
, arg2
);
6504 return arg1
== arg2
;
6508 /* Special case: if either target is an unallocated VAR_DECL,
6509 it means that it's going to be unified with whatever the
6510 TARGET_EXPR is really supposed to initialize, so treat it
6511 as being equivalent to anything. */
6512 if ((TREE_CODE (TREE_OPERAND (t1
, 0)) == VAR_DECL
6513 && DECL_NAME (TREE_OPERAND (t1
, 0)) == NULL_TREE
6514 && !DECL_RTL_SET_P (TREE_OPERAND (t1
, 0)))
6515 || (TREE_CODE (TREE_OPERAND (t2
, 0)) == VAR_DECL
6516 && DECL_NAME (TREE_OPERAND (t2
, 0)) == NULL_TREE
6517 && !DECL_RTL_SET_P (TREE_OPERAND (t2
, 0))))
6520 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6525 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
6527 case WITH_CLEANUP_EXPR
:
6528 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6532 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t1
, 1));
6535 if (TREE_OPERAND (t1
, 1) == TREE_OPERAND (t2
, 1))
6536 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6550 /* This general rule works for most tree codes. All exceptions should be
6551 handled above. If this is a language-specific tree code, we can't
6552 trust what might be in the operand, so say we don't know
6554 if ((int) code1
>= (int) LAST_AND_UNUSED_TREE_CODE
)
6557 switch (TREE_CODE_CLASS (code1
))
6561 case tcc_comparison
:
6562 case tcc_expression
:
6566 for (i
= 0; i
< TREE_CODE_LENGTH (code1
); i
++)
6568 cmp
= simple_cst_equal (TREE_OPERAND (t1
, i
), TREE_OPERAND (t2
, i
));
6580 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
6581 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
6582 than U, respectively. */
6585 compare_tree_int (const_tree t
, unsigned HOST_WIDE_INT u
)
6587 if (tree_int_cst_sgn (t
) < 0)
6589 else if (TREE_INT_CST_HIGH (t
) != 0)
6591 else if (TREE_INT_CST_LOW (t
) == u
)
6593 else if (TREE_INT_CST_LOW (t
) < u
)
6599 /* Return true if CODE represents an associative tree code. Otherwise
6602 associative_tree_code (enum tree_code code
)
6621 /* Return true if CODE represents a commutative tree code. Otherwise
6624 commutative_tree_code (enum tree_code code
)
6637 case UNORDERED_EXPR
:
6641 case TRUTH_AND_EXPR
:
6642 case TRUTH_XOR_EXPR
:
6652 /* Return true if CODE represents a ternary tree code for which the
6653 first two operands are commutative. Otherwise return false. */
6655 commutative_ternary_tree_code (enum tree_code code
)
6659 case WIDEN_MULT_PLUS_EXPR
:
6660 case WIDEN_MULT_MINUS_EXPR
:
6669 /* Generate a hash value for an expression. This can be used iteratively
6670 by passing a previous result as the VAL argument.
6672 This function is intended to produce the same hash for expressions which
6673 would compare equal using operand_equal_p. */
6676 iterative_hash_expr (const_tree t
, hashval_t val
)
6679 enum tree_code code
;
6683 return iterative_hash_hashval_t (0, val
);
6685 code
= TREE_CODE (t
);
6689 /* Alas, constants aren't shared, so we can't rely on pointer
6692 val
= iterative_hash_host_wide_int (TREE_INT_CST_LOW (t
), val
);
6693 return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t
), val
);
6696 unsigned int val2
= real_hash (TREE_REAL_CST_PTR (t
));
6698 return iterative_hash_hashval_t (val2
, val
);
6702 unsigned int val2
= fixed_hash (TREE_FIXED_CST_PTR (t
));
6704 return iterative_hash_hashval_t (val2
, val
);
6707 return iterative_hash (TREE_STRING_POINTER (t
),
6708 TREE_STRING_LENGTH (t
), val
);
6710 val
= iterative_hash_expr (TREE_REALPART (t
), val
);
6711 return iterative_hash_expr (TREE_IMAGPART (t
), val
);
6713 return iterative_hash_expr (TREE_VECTOR_CST_ELTS (t
), val
);
6715 /* We can just compare by pointer. */
6716 return iterative_hash_host_wide_int (SSA_NAME_VERSION (t
), val
);
6717 case PLACEHOLDER_EXPR
:
6718 /* The node itself doesn't matter. */
6721 /* A list of expressions, for a CALL_EXPR or as the elements of a
6723 for (; t
; t
= TREE_CHAIN (t
))
6724 val
= iterative_hash_expr (TREE_VALUE (t
), val
);
6728 unsigned HOST_WIDE_INT idx
;
6730 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t
), idx
, field
, value
)
6732 val
= iterative_hash_expr (field
, val
);
6733 val
= iterative_hash_expr (value
, val
);
6739 /* The type of the second operand is relevant, except for
6740 its top-level qualifiers. */
6741 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (t
, 1)));
6743 val
= iterative_hash_object (TYPE_HASH (type
), val
);
6745 /* We could use the standard hash computation from this point
6747 val
= iterative_hash_object (code
, val
);
6748 val
= iterative_hash_expr (TREE_OPERAND (t
, 1), val
);
6749 val
= iterative_hash_expr (TREE_OPERAND (t
, 0), val
);
6753 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
6754 Otherwise nodes that compare equal according to operand_equal_p might
6755 get different hash codes. However, don't do this for machine specific
6756 or front end builtins, since the function code is overloaded in those
6758 if (DECL_BUILT_IN_CLASS (t
) == BUILT_IN_NORMAL
6759 && built_in_decls
[DECL_FUNCTION_CODE (t
)])
6761 t
= built_in_decls
[DECL_FUNCTION_CODE (t
)];
6762 code
= TREE_CODE (t
);
6766 tclass
= TREE_CODE_CLASS (code
);
6768 if (tclass
== tcc_declaration
)
6770 /* DECL's have a unique ID */
6771 val
= iterative_hash_host_wide_int (DECL_UID (t
), val
);
6775 gcc_assert (IS_EXPR_CODE_CLASS (tclass
));
6777 val
= iterative_hash_object (code
, val
);
6779 /* Don't hash the type, that can lead to having nodes which
6780 compare equal according to operand_equal_p, but which
6781 have different hash codes. */
6782 if (CONVERT_EXPR_CODE_P (code
)
6783 || code
== NON_LVALUE_EXPR
)
6785 /* Make sure to include signness in the hash computation. */
6786 val
+= TYPE_UNSIGNED (TREE_TYPE (t
));
6787 val
= iterative_hash_expr (TREE_OPERAND (t
, 0), val
);
6790 else if (commutative_tree_code (code
))
6792 /* It's a commutative expression. We want to hash it the same
6793 however it appears. We do this by first hashing both operands
6794 and then rehashing based on the order of their independent
6796 hashval_t one
= iterative_hash_expr (TREE_OPERAND (t
, 0), 0);
6797 hashval_t two
= iterative_hash_expr (TREE_OPERAND (t
, 1), 0);
6801 t
= one
, one
= two
, two
= t
;
6803 val
= iterative_hash_hashval_t (one
, val
);
6804 val
= iterative_hash_hashval_t (two
, val
);
6807 for (i
= TREE_OPERAND_LENGTH (t
) - 1; i
>= 0; --i
)
6808 val
= iterative_hash_expr (TREE_OPERAND (t
, i
), val
);
6815 /* Generate a hash value for a pair of expressions. This can be used
6816 iteratively by passing a previous result as the VAL argument.
6818 The same hash value is always returned for a given pair of expressions,
6819 regardless of the order in which they are presented. This is useful in
6820 hashing the operands of commutative functions. */
6823 iterative_hash_exprs_commutative (const_tree t1
,
6824 const_tree t2
, hashval_t val
)
6826 hashval_t one
= iterative_hash_expr (t1
, 0);
6827 hashval_t two
= iterative_hash_expr (t2
, 0);
6831 t
= one
, one
= two
, two
= t
;
6832 val
= iterative_hash_hashval_t (one
, val
);
6833 val
= iterative_hash_hashval_t (two
, val
);
6838 /* Constructors for pointer, array and function types.
6839 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
6840 constructed by language-dependent code, not here.) */
6842 /* Construct, lay out and return the type of pointers to TO_TYPE with
6843 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
6844 reference all of memory. If such a type has already been
6845 constructed, reuse it. */
6848 build_pointer_type_for_mode (tree to_type
, enum machine_mode mode
,
6853 if (to_type
== error_mark_node
)
6854 return error_mark_node
;
6856 /* If the pointed-to type has the may_alias attribute set, force
6857 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
6858 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
6859 can_alias_all
= true;
6861 /* In some cases, languages will have things that aren't a POINTER_TYPE
6862 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
6863 In that case, return that type without regard to the rest of our
6866 ??? This is a kludge, but consistent with the way this function has
6867 always operated and there doesn't seem to be a good way to avoid this
6869 if (TYPE_POINTER_TO (to_type
) != 0
6870 && TREE_CODE (TYPE_POINTER_TO (to_type
)) != POINTER_TYPE
)
6871 return TYPE_POINTER_TO (to_type
);
6873 /* First, if we already have a type for pointers to TO_TYPE and it's
6874 the proper mode, use it. */
6875 for (t
= TYPE_POINTER_TO (to_type
); t
; t
= TYPE_NEXT_PTR_TO (t
))
6876 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
6879 t
= make_node (POINTER_TYPE
);
6881 TREE_TYPE (t
) = to_type
;
6882 SET_TYPE_MODE (t
, mode
);
6883 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
6884 TYPE_NEXT_PTR_TO (t
) = TYPE_POINTER_TO (to_type
);
6885 TYPE_POINTER_TO (to_type
) = t
;
6887 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
6888 SET_TYPE_STRUCTURAL_EQUALITY (t
);
6889 else if (TYPE_CANONICAL (to_type
) != to_type
)
6891 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type
),
6892 mode
, can_alias_all
);
6894 /* Lay out the type. This function has many callers that are concerned
6895 with expression-construction, and this simplifies them all. */
6901 /* By default build pointers in ptr_mode. */
6904 build_pointer_type (tree to_type
)
6906 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
6907 : TYPE_ADDR_SPACE (to_type
);
6908 enum machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
6909 return build_pointer_type_for_mode (to_type
, pointer_mode
, false);
6912 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
6915 build_reference_type_for_mode (tree to_type
, enum machine_mode mode
,
6920 if (to_type
== error_mark_node
)
6921 return error_mark_node
;
6923 /* If the pointed-to type has the may_alias attribute set, force
6924 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
6925 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
6926 can_alias_all
= true;
6928 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
6929 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
6930 In that case, return that type without regard to the rest of our
6933 ??? This is a kludge, but consistent with the way this function has
6934 always operated and there doesn't seem to be a good way to avoid this
6936 if (TYPE_REFERENCE_TO (to_type
) != 0
6937 && TREE_CODE (TYPE_REFERENCE_TO (to_type
)) != REFERENCE_TYPE
)
6938 return TYPE_REFERENCE_TO (to_type
);
6940 /* First, if we already have a type for pointers to TO_TYPE and it's
6941 the proper mode, use it. */
6942 for (t
= TYPE_REFERENCE_TO (to_type
); t
; t
= TYPE_NEXT_REF_TO (t
))
6943 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
6946 t
= make_node (REFERENCE_TYPE
);
6948 TREE_TYPE (t
) = to_type
;
6949 SET_TYPE_MODE (t
, mode
);
6950 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
6951 TYPE_NEXT_REF_TO (t
) = TYPE_REFERENCE_TO (to_type
);
6952 TYPE_REFERENCE_TO (to_type
) = t
;
6954 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
6955 SET_TYPE_STRUCTURAL_EQUALITY (t
);
6956 else if (TYPE_CANONICAL (to_type
) != to_type
)
6958 = build_reference_type_for_mode (TYPE_CANONICAL (to_type
),
6959 mode
, can_alias_all
);
6967 /* Build the node for the type of references-to-TO_TYPE by default
6971 build_reference_type (tree to_type
)
6973 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
6974 : TYPE_ADDR_SPACE (to_type
);
6975 enum machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
6976 return build_reference_type_for_mode (to_type
, pointer_mode
, false);
6979 /* Build a type that is compatible with t but has no cv quals anywhere
6982 const char *const *const * -> char ***. */
6985 build_type_no_quals (tree t
)
6987 switch (TREE_CODE (t
))
6990 return build_pointer_type_for_mode (build_type_no_quals (TREE_TYPE (t
)),
6992 TYPE_REF_CAN_ALIAS_ALL (t
));
6993 case REFERENCE_TYPE
:
6995 build_reference_type_for_mode (build_type_no_quals (TREE_TYPE (t
)),
6997 TYPE_REF_CAN_ALIAS_ALL (t
));
6999 return TYPE_MAIN_VARIANT (t
);
7003 #define MAX_INT_CACHED_PREC \
7004 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7005 static GTY(()) tree nonstandard_integer_type_cache
[2 * MAX_INT_CACHED_PREC
+ 2];
7007 /* Builds a signed or unsigned integer type of precision PRECISION.
7008 Used for C bitfields whose precision does not match that of
7009 built-in target types. */
7011 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision
,
7017 unsignedp
= MAX_INT_CACHED_PREC
+ 1;
7019 if (precision
<= MAX_INT_CACHED_PREC
)
7021 itype
= nonstandard_integer_type_cache
[precision
+ unsignedp
];
7026 itype
= make_node (INTEGER_TYPE
);
7027 TYPE_PRECISION (itype
) = precision
;
7030 fixup_unsigned_type (itype
);
7032 fixup_signed_type (itype
);
7035 if (host_integerp (TYPE_MAX_VALUE (itype
), 1))
7036 ret
= type_hash_canon (tree_low_cst (TYPE_MAX_VALUE (itype
), 1), itype
);
7037 if (precision
<= MAX_INT_CACHED_PREC
)
7038 nonstandard_integer_type_cache
[precision
+ unsignedp
] = ret
;
7043 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7044 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7045 is true, reuse such a type that has already been constructed. */
7048 build_range_type_1 (tree type
, tree lowval
, tree highval
, bool shared
)
7050 tree itype
= make_node (INTEGER_TYPE
);
7052 TREE_TYPE (itype
) = type
;
7054 TYPE_MIN_VALUE (itype
) = fold_convert (type
, lowval
);
7055 TYPE_MAX_VALUE (itype
) = highval
? fold_convert (type
, highval
) : NULL
;
7057 TYPE_PRECISION (itype
) = TYPE_PRECISION (type
);
7058 SET_TYPE_MODE (itype
, TYPE_MODE (type
));
7059 TYPE_SIZE (itype
) = TYPE_SIZE (type
);
7060 TYPE_SIZE_UNIT (itype
) = TYPE_SIZE_UNIT (type
);
7061 TYPE_ALIGN (itype
) = TYPE_ALIGN (type
);
7062 TYPE_USER_ALIGN (itype
) = TYPE_USER_ALIGN (type
);
7064 if ((TYPE_MIN_VALUE (itype
)
7065 && TREE_CODE (TYPE_MIN_VALUE (itype
)) != INTEGER_CST
)
7066 || (TYPE_MAX_VALUE (itype
)
7067 && TREE_CODE (TYPE_MAX_VALUE (itype
)) != INTEGER_CST
))
7069 /* Since we cannot reliably merge this type, we need to compare it using
7070 structural equality checks. */
7071 SET_TYPE_STRUCTURAL_EQUALITY (itype
);
7077 hashval_t hash
= iterative_hash_expr (TYPE_MIN_VALUE (itype
), 0);
7078 hash
= iterative_hash_expr (TYPE_MAX_VALUE (itype
), hash
);
7079 hash
= iterative_hash_hashval_t (TYPE_HASH (type
), hash
);
7080 itype
= type_hash_canon (hash
, itype
);
7086 /* Wrapper around build_range_type_1 with SHARED set to true. */
7089 build_range_type (tree type
, tree lowval
, tree highval
)
7091 return build_range_type_1 (type
, lowval
, highval
, true);
7094 /* Wrapper around build_range_type_1 with SHARED set to false. */
7097 build_nonshared_range_type (tree type
, tree lowval
, tree highval
)
7099 return build_range_type_1 (type
, lowval
, highval
, false);
7102 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7103 MAXVAL should be the maximum value in the domain
7104 (one less than the length of the array).
7106 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7107 We don't enforce this limit, that is up to caller (e.g. language front end).
7108 The limit exists because the result is a signed type and we don't handle
7109 sizes that use more than one HOST_WIDE_INT. */
7112 build_index_type (tree maxval
)
7114 return build_range_type (sizetype
, size_zero_node
, maxval
);
7117 /* Return true if the debug information for TYPE, a subtype, should be emitted
7118 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7119 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7120 debug info and doesn't reflect the source code. */
7123 subrange_type_for_debug_p (const_tree type
, tree
*lowval
, tree
*highval
)
7125 tree base_type
= TREE_TYPE (type
), low
, high
;
7127 /* Subrange types have a base type which is an integral type. */
7128 if (!INTEGRAL_TYPE_P (base_type
))
7131 /* Get the real bounds of the subtype. */
7132 if (lang_hooks
.types
.get_subrange_bounds
)
7133 lang_hooks
.types
.get_subrange_bounds (type
, &low
, &high
);
7136 low
= TYPE_MIN_VALUE (type
);
7137 high
= TYPE_MAX_VALUE (type
);
7140 /* If the type and its base type have the same representation and the same
7141 name, then the type is not a subrange but a copy of the base type. */
7142 if ((TREE_CODE (base_type
) == INTEGER_TYPE
7143 || TREE_CODE (base_type
) == BOOLEAN_TYPE
)
7144 && int_size_in_bytes (type
) == int_size_in_bytes (base_type
)
7145 && tree_int_cst_equal (low
, TYPE_MIN_VALUE (base_type
))
7146 && tree_int_cst_equal (high
, TYPE_MAX_VALUE (base_type
)))
7148 tree type_name
= TYPE_NAME (type
);
7149 tree base_type_name
= TYPE_NAME (base_type
);
7151 if (type_name
&& TREE_CODE (type_name
) == TYPE_DECL
)
7152 type_name
= DECL_NAME (type_name
);
7154 if (base_type_name
&& TREE_CODE (base_type_name
) == TYPE_DECL
)
7155 base_type_name
= DECL_NAME (base_type_name
);
7157 if (type_name
== base_type_name
)
7168 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7169 and number of elements specified by the range of values of INDEX_TYPE.
7170 If SHARED is true, reuse such a type that has already been constructed. */
7173 build_array_type_1 (tree elt_type
, tree index_type
, bool shared
)
7177 if (TREE_CODE (elt_type
) == FUNCTION_TYPE
)
7179 error ("arrays of functions are not meaningful");
7180 elt_type
= integer_type_node
;
7183 t
= make_node (ARRAY_TYPE
);
7184 TREE_TYPE (t
) = elt_type
;
7185 TYPE_DOMAIN (t
) = index_type
;
7186 TYPE_ADDR_SPACE (t
) = TYPE_ADDR_SPACE (elt_type
);
7189 /* If the element type is incomplete at this point we get marked for
7190 structural equality. Do not record these types in the canonical
7192 if (TYPE_STRUCTURAL_EQUALITY_P (t
))
7197 hashval_t hashcode
= iterative_hash_object (TYPE_HASH (elt_type
), 0);
7199 hashcode
= iterative_hash_object (TYPE_HASH (index_type
), hashcode
);
7200 t
= type_hash_canon (hashcode
, t
);
7203 if (TYPE_CANONICAL (t
) == t
)
7205 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type
)
7206 || (index_type
&& TYPE_STRUCTURAL_EQUALITY_P (index_type
)))
7207 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7208 else if (TYPE_CANONICAL (elt_type
) != elt_type
7209 || (index_type
&& TYPE_CANONICAL (index_type
) != index_type
))
7211 = build_array_type_1 (TYPE_CANONICAL (elt_type
),
7213 ? TYPE_CANONICAL (index_type
) : NULL_TREE
,
7220 /* Wrapper around build_array_type_1 with SHARED set to true. */
7223 build_array_type (tree elt_type
, tree index_type
)
7225 return build_array_type_1 (elt_type
, index_type
, true);
7228 /* Wrapper around build_array_type_1 with SHARED set to false. */
7231 build_nonshared_array_type (tree elt_type
, tree index_type
)
7233 return build_array_type_1 (elt_type
, index_type
, false);
7236 /* Recursively examines the array elements of TYPE, until a non-array
7237 element type is found. */
7240 strip_array_types (tree type
)
7242 while (TREE_CODE (type
) == ARRAY_TYPE
)
7243 type
= TREE_TYPE (type
);
7248 /* Computes the canonical argument types from the argument type list
7251 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7252 on entry to this function, or if any of the ARGTYPES are
7255 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7256 true on entry to this function, or if any of the ARGTYPES are
7259 Returns a canonical argument list, which may be ARGTYPES when the
7260 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7261 true) or would not differ from ARGTYPES. */
7264 maybe_canonicalize_argtypes(tree argtypes
,
7265 bool *any_structural_p
,
7266 bool *any_noncanonical_p
)
7269 bool any_noncanonical_argtypes_p
= false;
7271 for (arg
= argtypes
; arg
&& !(*any_structural_p
); arg
= TREE_CHAIN (arg
))
7273 if (!TREE_VALUE (arg
) || TREE_VALUE (arg
) == error_mark_node
)
7274 /* Fail gracefully by stating that the type is structural. */
7275 *any_structural_p
= true;
7276 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg
)))
7277 *any_structural_p
= true;
7278 else if (TYPE_CANONICAL (TREE_VALUE (arg
)) != TREE_VALUE (arg
)
7279 || TREE_PURPOSE (arg
))
7280 /* If the argument has a default argument, we consider it
7281 non-canonical even though the type itself is canonical.
7282 That way, different variants of function and method types
7283 with default arguments will all point to the variant with
7284 no defaults as their canonical type. */
7285 any_noncanonical_argtypes_p
= true;
7288 if (*any_structural_p
)
7291 if (any_noncanonical_argtypes_p
)
7293 /* Build the canonical list of argument types. */
7294 tree canon_argtypes
= NULL_TREE
;
7295 bool is_void
= false;
7297 for (arg
= argtypes
; arg
; arg
= TREE_CHAIN (arg
))
7299 if (arg
== void_list_node
)
7302 canon_argtypes
= tree_cons (NULL_TREE
,
7303 TYPE_CANONICAL (TREE_VALUE (arg
)),
7307 canon_argtypes
= nreverse (canon_argtypes
);
7309 canon_argtypes
= chainon (canon_argtypes
, void_list_node
);
7311 /* There is a non-canonical type. */
7312 *any_noncanonical_p
= true;
7313 return canon_argtypes
;
7316 /* The canonical argument types are the same as ARGTYPES. */
7320 /* Construct, lay out and return
7321 the type of functions returning type VALUE_TYPE
7322 given arguments of types ARG_TYPES.
7323 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
7324 are data type nodes for the arguments of the function.
7325 If such a type has already been constructed, reuse it. */
7328 build_function_type (tree value_type
, tree arg_types
)
7331 hashval_t hashcode
= 0;
7332 bool any_structural_p
, any_noncanonical_p
;
7333 tree canon_argtypes
;
7335 if (TREE_CODE (value_type
) == FUNCTION_TYPE
)
7337 error ("function return type cannot be function");
7338 value_type
= integer_type_node
;
7341 /* Make a node of the sort we want. */
7342 t
= make_node (FUNCTION_TYPE
);
7343 TREE_TYPE (t
) = value_type
;
7344 TYPE_ARG_TYPES (t
) = arg_types
;
7346 /* If we already have such a type, use the old one. */
7347 hashcode
= iterative_hash_object (TYPE_HASH (value_type
), hashcode
);
7348 hashcode
= type_hash_list (arg_types
, hashcode
);
7349 t
= type_hash_canon (hashcode
, t
);
7351 /* Set up the canonical type. */
7352 any_structural_p
= TYPE_STRUCTURAL_EQUALITY_P (value_type
);
7353 any_noncanonical_p
= TYPE_CANONICAL (value_type
) != value_type
;
7354 canon_argtypes
= maybe_canonicalize_argtypes (arg_types
,
7356 &any_noncanonical_p
);
7357 if (any_structural_p
)
7358 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7359 else if (any_noncanonical_p
)
7360 TYPE_CANONICAL (t
) = build_function_type (TYPE_CANONICAL (value_type
),
7363 if (!COMPLETE_TYPE_P (t
))
7368 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP. */
7371 build_function_type_skip_args (tree orig_type
, bitmap args_to_skip
)
7373 tree new_type
= NULL
;
7374 tree args
, new_args
= NULL
, t
;
7378 for (args
= TYPE_ARG_TYPES (orig_type
); args
&& args
!= void_list_node
;
7379 args
= TREE_CHAIN (args
), i
++)
7380 if (!bitmap_bit_p (args_to_skip
, i
))
7381 new_args
= tree_cons (NULL_TREE
, TREE_VALUE (args
), new_args
);
7383 new_reversed
= nreverse (new_args
);
7387 TREE_CHAIN (new_args
) = void_list_node
;
7389 new_reversed
= void_list_node
;
7392 /* Use copy_node to preserve as much as possible from original type
7393 (debug info, attribute lists etc.)
7394 Exception is METHOD_TYPEs must have THIS argument.
7395 When we are asked to remove it, we need to build new FUNCTION_TYPE
7397 if (TREE_CODE (orig_type
) != METHOD_TYPE
7398 || !bitmap_bit_p (args_to_skip
, 0))
7400 new_type
= build_distinct_type_copy (orig_type
);
7401 TYPE_ARG_TYPES (new_type
) = new_reversed
;
7406 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type
),
7408 TYPE_CONTEXT (new_type
) = TYPE_CONTEXT (orig_type
);
7411 /* This is a new type, not a copy of an old type. Need to reassociate
7412 variants. We can handle everything except the main variant lazily. */
7413 t
= TYPE_MAIN_VARIANT (orig_type
);
7416 TYPE_MAIN_VARIANT (new_type
) = t
;
7417 TYPE_NEXT_VARIANT (new_type
) = TYPE_NEXT_VARIANT (t
);
7418 TYPE_NEXT_VARIANT (t
) = new_type
;
7422 TYPE_MAIN_VARIANT (new_type
) = new_type
;
7423 TYPE_NEXT_VARIANT (new_type
) = NULL
;
7428 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP.
7430 Arguments from DECL_ARGUMENTS list can't be removed now, since they are
7431 linked by TREE_CHAIN directly. The caller is responsible for eliminating
7432 them when they are being duplicated (i.e. copy_arguments_for_versioning). */
7435 build_function_decl_skip_args (tree orig_decl
, bitmap args_to_skip
)
7437 tree new_decl
= copy_node (orig_decl
);
7440 new_type
= TREE_TYPE (orig_decl
);
7441 if (prototype_p (new_type
))
7442 new_type
= build_function_type_skip_args (new_type
, args_to_skip
);
7443 TREE_TYPE (new_decl
) = new_type
;
7445 /* For declarations setting DECL_VINDEX (i.e. methods)
7446 we expect first argument to be THIS pointer. */
7447 if (bitmap_bit_p (args_to_skip
, 0))
7448 DECL_VINDEX (new_decl
) = NULL_TREE
;
7450 /* When signature changes, we need to clear builtin info. */
7451 if (DECL_BUILT_IN (new_decl
) && !bitmap_empty_p (args_to_skip
))
7453 DECL_BUILT_IN_CLASS (new_decl
) = NOT_BUILT_IN
;
7454 DECL_FUNCTION_CODE (new_decl
) = (enum built_in_function
) 0;
7459 /* Build a function type. The RETURN_TYPE is the type returned by the
7460 function. If VAARGS is set, no void_type_node is appended to the
7461 the list. ARGP must be always be terminated be a NULL_TREE. */
7464 build_function_type_list_1 (bool vaargs
, tree return_type
, va_list argp
)
7468 t
= va_arg (argp
, tree
);
7469 for (args
= NULL_TREE
; t
!= NULL_TREE
; t
= va_arg (argp
, tree
))
7470 args
= tree_cons (NULL_TREE
, t
, args
);
7475 if (args
!= NULL_TREE
)
7476 args
= nreverse (args
);
7477 gcc_assert (last
!= void_list_node
);
7479 else if (args
== NULL_TREE
)
7480 args
= void_list_node
;
7484 args
= nreverse (args
);
7485 TREE_CHAIN (last
) = void_list_node
;
7487 args
= build_function_type (return_type
, args
);
7492 /* Build a function type. The RETURN_TYPE is the type returned by the
7493 function. If additional arguments are provided, they are
7494 additional argument types. The list of argument types must always
7495 be terminated by NULL_TREE. */
7498 build_function_type_list (tree return_type
, ...)
7503 va_start (p
, return_type
);
7504 args
= build_function_type_list_1 (false, return_type
, p
);
7509 /* Build a variable argument function type. The RETURN_TYPE is the
7510 type returned by the function. If additional arguments are provided,
7511 they are additional argument types. The list of argument types must
7512 always be terminated by NULL_TREE. */
7515 build_varargs_function_type_list (tree return_type
, ...)
7520 va_start (p
, return_type
);
7521 args
= build_function_type_list_1 (true, return_type
, p
);
7527 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
7528 and ARGTYPES (a TREE_LIST) are the return type and arguments types
7529 for the method. An implicit additional parameter (of type
7530 pointer-to-BASETYPE) is added to the ARGTYPES. */
7533 build_method_type_directly (tree basetype
,
7540 bool any_structural_p
, any_noncanonical_p
;
7541 tree canon_argtypes
;
7543 /* Make a node of the sort we want. */
7544 t
= make_node (METHOD_TYPE
);
7546 TYPE_METHOD_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
7547 TREE_TYPE (t
) = rettype
;
7548 ptype
= build_pointer_type (basetype
);
7550 /* The actual arglist for this function includes a "hidden" argument
7551 which is "this". Put it into the list of argument types. */
7552 argtypes
= tree_cons (NULL_TREE
, ptype
, argtypes
);
7553 TYPE_ARG_TYPES (t
) = argtypes
;
7555 /* If we already have such a type, use the old one. */
7556 hashcode
= iterative_hash_object (TYPE_HASH (basetype
), hashcode
);
7557 hashcode
= iterative_hash_object (TYPE_HASH (rettype
), hashcode
);
7558 hashcode
= type_hash_list (argtypes
, hashcode
);
7559 t
= type_hash_canon (hashcode
, t
);
7561 /* Set up the canonical type. */
7563 = (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
7564 || TYPE_STRUCTURAL_EQUALITY_P (rettype
));
7566 = (TYPE_CANONICAL (basetype
) != basetype
7567 || TYPE_CANONICAL (rettype
) != rettype
);
7568 canon_argtypes
= maybe_canonicalize_argtypes (TREE_CHAIN (argtypes
),
7570 &any_noncanonical_p
);
7571 if (any_structural_p
)
7572 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7573 else if (any_noncanonical_p
)
7575 = build_method_type_directly (TYPE_CANONICAL (basetype
),
7576 TYPE_CANONICAL (rettype
),
7578 if (!COMPLETE_TYPE_P (t
))
7584 /* Construct, lay out and return the type of methods belonging to class
7585 BASETYPE and whose arguments and values are described by TYPE.
7586 If that type exists already, reuse it.
7587 TYPE must be a FUNCTION_TYPE node. */
7590 build_method_type (tree basetype
, tree type
)
7592 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
7594 return build_method_type_directly (basetype
,
7596 TYPE_ARG_TYPES (type
));
7599 /* Construct, lay out and return the type of offsets to a value
7600 of type TYPE, within an object of type BASETYPE.
7601 If a suitable offset type exists already, reuse it. */
7604 build_offset_type (tree basetype
, tree type
)
7607 hashval_t hashcode
= 0;
7609 /* Make a node of the sort we want. */
7610 t
= make_node (OFFSET_TYPE
);
7612 TYPE_OFFSET_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
7613 TREE_TYPE (t
) = type
;
7615 /* If we already have such a type, use the old one. */
7616 hashcode
= iterative_hash_object (TYPE_HASH (basetype
), hashcode
);
7617 hashcode
= iterative_hash_object (TYPE_HASH (type
), hashcode
);
7618 t
= type_hash_canon (hashcode
, t
);
7620 if (!COMPLETE_TYPE_P (t
))
7623 if (TYPE_CANONICAL (t
) == t
)
7625 if (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
7626 || TYPE_STRUCTURAL_EQUALITY_P (type
))
7627 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7628 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)) != basetype
7629 || TYPE_CANONICAL (type
) != type
)
7631 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)),
7632 TYPE_CANONICAL (type
));
7638 /* Create a complex type whose components are COMPONENT_TYPE. */
7641 build_complex_type (tree component_type
)
7646 gcc_assert (INTEGRAL_TYPE_P (component_type
)
7647 || SCALAR_FLOAT_TYPE_P (component_type
)
7648 || FIXED_POINT_TYPE_P (component_type
));
7650 /* Make a node of the sort we want. */
7651 t
= make_node (COMPLEX_TYPE
);
7653 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (component_type
);
7655 /* If we already have such a type, use the old one. */
7656 hashcode
= iterative_hash_object (TYPE_HASH (component_type
), 0);
7657 t
= type_hash_canon (hashcode
, t
);
7659 if (!COMPLETE_TYPE_P (t
))
7662 if (TYPE_CANONICAL (t
) == t
)
7664 if (TYPE_STRUCTURAL_EQUALITY_P (component_type
))
7665 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7666 else if (TYPE_CANONICAL (component_type
) != component_type
)
7668 = build_complex_type (TYPE_CANONICAL (component_type
));
7671 /* We need to create a name, since complex is a fundamental type. */
7672 if (! TYPE_NAME (t
))
7675 if (component_type
== char_type_node
)
7676 name
= "complex char";
7677 else if (component_type
== signed_char_type_node
)
7678 name
= "complex signed char";
7679 else if (component_type
== unsigned_char_type_node
)
7680 name
= "complex unsigned char";
7681 else if (component_type
== short_integer_type_node
)
7682 name
= "complex short int";
7683 else if (component_type
== short_unsigned_type_node
)
7684 name
= "complex short unsigned int";
7685 else if (component_type
== integer_type_node
)
7686 name
= "complex int";
7687 else if (component_type
== unsigned_type_node
)
7688 name
= "complex unsigned int";
7689 else if (component_type
== long_integer_type_node
)
7690 name
= "complex long int";
7691 else if (component_type
== long_unsigned_type_node
)
7692 name
= "complex long unsigned int";
7693 else if (component_type
== long_long_integer_type_node
)
7694 name
= "complex long long int";
7695 else if (component_type
== long_long_unsigned_type_node
)
7696 name
= "complex long long unsigned int";
7701 TYPE_NAME (t
) = build_decl (UNKNOWN_LOCATION
, TYPE_DECL
,
7702 get_identifier (name
), t
);
7705 return build_qualified_type (t
, TYPE_QUALS (component_type
));
7708 /* If TYPE is a real or complex floating-point type and the target
7709 does not directly support arithmetic on TYPE then return the wider
7710 type to be used for arithmetic on TYPE. Otherwise, return
7714 excess_precision_type (tree type
)
7716 if (flag_excess_precision
!= EXCESS_PRECISION_FAST
)
7718 int flt_eval_method
= TARGET_FLT_EVAL_METHOD
;
7719 switch (TREE_CODE (type
))
7722 switch (flt_eval_method
)
7725 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
))
7726 return double_type_node
;
7729 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
)
7730 || TYPE_MODE (type
) == TYPE_MODE (double_type_node
))
7731 return long_double_type_node
;
7738 if (TREE_CODE (TREE_TYPE (type
)) != REAL_TYPE
)
7740 switch (flt_eval_method
)
7743 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
))
7744 return complex_double_type_node
;
7747 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
)
7748 || (TYPE_MODE (TREE_TYPE (type
))
7749 == TYPE_MODE (double_type_node
)))
7750 return complex_long_double_type_node
;
7763 /* Return OP, stripped of any conversions to wider types as much as is safe.
7764 Converting the value back to OP's type makes a value equivalent to OP.
7766 If FOR_TYPE is nonzero, we return a value which, if converted to
7767 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
7769 OP must have integer, real or enumeral type. Pointers are not allowed!
7771 There are some cases where the obvious value we could return
7772 would regenerate to OP if converted to OP's type,
7773 but would not extend like OP to wider types.
7774 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
7775 For example, if OP is (unsigned short)(signed char)-1,
7776 we avoid returning (signed char)-1 if FOR_TYPE is int,
7777 even though extending that to an unsigned short would regenerate OP,
7778 since the result of extending (signed char)-1 to (int)
7779 is different from (int) OP. */
7782 get_unwidened (tree op
, tree for_type
)
7784 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
7785 tree type
= TREE_TYPE (op
);
7787 = TYPE_PRECISION (for_type
!= 0 ? for_type
: type
);
7789 = (for_type
!= 0 && for_type
!= type
7790 && final_prec
> TYPE_PRECISION (type
)
7791 && TYPE_UNSIGNED (type
));
7794 while (CONVERT_EXPR_P (op
))
7798 /* TYPE_PRECISION on vector types has different meaning
7799 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
7800 so avoid them here. */
7801 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op
, 0))) == VECTOR_TYPE
)
7804 bitschange
= TYPE_PRECISION (TREE_TYPE (op
))
7805 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0)));
7807 /* Truncations are many-one so cannot be removed.
7808 Unless we are later going to truncate down even farther. */
7810 && final_prec
> TYPE_PRECISION (TREE_TYPE (op
)))
7813 /* See what's inside this conversion. If we decide to strip it,
7815 op
= TREE_OPERAND (op
, 0);
7817 /* If we have not stripped any zero-extensions (uns is 0),
7818 we can strip any kind of extension.
7819 If we have previously stripped a zero-extension,
7820 only zero-extensions can safely be stripped.
7821 Any extension can be stripped if the bits it would produce
7822 are all going to be discarded later by truncating to FOR_TYPE. */
7826 if (! uns
|| final_prec
<= TYPE_PRECISION (TREE_TYPE (op
)))
7828 /* TYPE_UNSIGNED says whether this is a zero-extension.
7829 Let's avoid computing it if it does not affect WIN
7830 and if UNS will not be needed again. */
7832 || CONVERT_EXPR_P (op
))
7833 && TYPE_UNSIGNED (TREE_TYPE (op
)))
7841 /* If we finally reach a constant see if it fits in for_type and
7842 in that case convert it. */
7844 && TREE_CODE (win
) == INTEGER_CST
7845 && TREE_TYPE (win
) != for_type
7846 && int_fits_type_p (win
, for_type
))
7847 win
= fold_convert (for_type
, win
);
7852 /* Return OP or a simpler expression for a narrower value
7853 which can be sign-extended or zero-extended to give back OP.
7854 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
7855 or 0 if the value should be sign-extended. */
7858 get_narrower (tree op
, int *unsignedp_ptr
)
7863 bool integral_p
= INTEGRAL_TYPE_P (TREE_TYPE (op
));
7865 while (TREE_CODE (op
) == NOP_EXPR
)
7868 = (TYPE_PRECISION (TREE_TYPE (op
))
7869 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0))));
7871 /* Truncations are many-one so cannot be removed. */
7875 /* See what's inside this conversion. If we decide to strip it,
7880 op
= TREE_OPERAND (op
, 0);
7881 /* An extension: the outermost one can be stripped,
7882 but remember whether it is zero or sign extension. */
7884 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
7885 /* Otherwise, if a sign extension has been stripped,
7886 only sign extensions can now be stripped;
7887 if a zero extension has been stripped, only zero-extensions. */
7888 else if (uns
!= TYPE_UNSIGNED (TREE_TYPE (op
)))
7892 else /* bitschange == 0 */
7894 /* A change in nominal type can always be stripped, but we must
7895 preserve the unsignedness. */
7897 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
7899 op
= TREE_OPERAND (op
, 0);
7900 /* Keep trying to narrow, but don't assign op to win if it
7901 would turn an integral type into something else. */
7902 if (INTEGRAL_TYPE_P (TREE_TYPE (op
)) != integral_p
)
7909 if (TREE_CODE (op
) == COMPONENT_REF
7910 /* Since type_for_size always gives an integer type. */
7911 && TREE_CODE (TREE_TYPE (op
)) != REAL_TYPE
7912 && TREE_CODE (TREE_TYPE (op
)) != FIXED_POINT_TYPE
7913 /* Ensure field is laid out already. */
7914 && DECL_SIZE (TREE_OPERAND (op
, 1)) != 0
7915 && host_integerp (DECL_SIZE (TREE_OPERAND (op
, 1)), 1))
7917 unsigned HOST_WIDE_INT innerprec
7918 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op
, 1)), 1);
7919 int unsignedp
= (DECL_UNSIGNED (TREE_OPERAND (op
, 1))
7920 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op
, 1))));
7921 tree type
= lang_hooks
.types
.type_for_size (innerprec
, unsignedp
);
7923 /* We can get this structure field in a narrower type that fits it,
7924 but the resulting extension to its nominal type (a fullword type)
7925 must satisfy the same conditions as for other extensions.
7927 Do this only for fields that are aligned (not bit-fields),
7928 because when bit-field insns will be used there is no
7929 advantage in doing this. */
7931 if (innerprec
< TYPE_PRECISION (TREE_TYPE (op
))
7932 && ! DECL_BIT_FIELD (TREE_OPERAND (op
, 1))
7933 && (first
|| uns
== DECL_UNSIGNED (TREE_OPERAND (op
, 1)))
7937 uns
= DECL_UNSIGNED (TREE_OPERAND (op
, 1));
7938 win
= fold_convert (type
, op
);
7942 *unsignedp_ptr
= uns
;
7946 /* Returns true if integer constant C has a value that is permissible
7947 for type TYPE (an INTEGER_TYPE). */
7950 int_fits_type_p (const_tree c
, const_tree type
)
7952 tree type_low_bound
, type_high_bound
;
7953 bool ok_for_low_bound
, ok_for_high_bound
, unsc
;
7956 dc
= tree_to_double_int (c
);
7957 unsc
= TYPE_UNSIGNED (TREE_TYPE (c
));
7959 if (TREE_CODE (TREE_TYPE (c
)) == INTEGER_TYPE
7960 && TYPE_IS_SIZETYPE (TREE_TYPE (c
))
7962 /* So c is an unsigned integer whose type is sizetype and type is not.
7963 sizetype'd integers are sign extended even though they are
7964 unsigned. If the integer value fits in the lower end word of c,
7965 and if the higher end word has all its bits set to 1, that
7966 means the higher end bits are set to 1 only for sign extension.
7967 So let's convert c into an equivalent zero extended unsigned
7969 dc
= double_int_zext (dc
, TYPE_PRECISION (TREE_TYPE (c
)));
7972 type_low_bound
= TYPE_MIN_VALUE (type
);
7973 type_high_bound
= TYPE_MAX_VALUE (type
);
7975 /* If at least one bound of the type is a constant integer, we can check
7976 ourselves and maybe make a decision. If no such decision is possible, but
7977 this type is a subtype, try checking against that. Otherwise, use
7978 double_int_fits_to_tree_p, which checks against the precision.
7980 Compute the status for each possibly constant bound, and return if we see
7981 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
7982 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
7983 for "constant known to fit". */
7985 /* Check if c >= type_low_bound. */
7986 if (type_low_bound
&& TREE_CODE (type_low_bound
) == INTEGER_CST
)
7988 dd
= tree_to_double_int (type_low_bound
);
7989 if (TREE_CODE (type
) == INTEGER_TYPE
7990 && TYPE_IS_SIZETYPE (type
)
7991 && TYPE_UNSIGNED (type
))
7992 dd
= double_int_zext (dd
, TYPE_PRECISION (type
));
7993 if (unsc
!= TYPE_UNSIGNED (TREE_TYPE (type_low_bound
)))
7995 int c_neg
= (!unsc
&& double_int_negative_p (dc
));
7996 int t_neg
= (unsc
&& double_int_negative_p (dd
));
7998 if (c_neg
&& !t_neg
)
8000 if ((c_neg
|| !t_neg
) && double_int_ucmp (dc
, dd
) < 0)
8003 else if (double_int_cmp (dc
, dd
, unsc
) < 0)
8005 ok_for_low_bound
= true;
8008 ok_for_low_bound
= false;
8010 /* Check if c <= type_high_bound. */
8011 if (type_high_bound
&& TREE_CODE (type_high_bound
) == INTEGER_CST
)
8013 dd
= tree_to_double_int (type_high_bound
);
8014 if (TREE_CODE (type
) == INTEGER_TYPE
8015 && TYPE_IS_SIZETYPE (type
)
8016 && TYPE_UNSIGNED (type
))
8017 dd
= double_int_zext (dd
, TYPE_PRECISION (type
));
8018 if (unsc
!= TYPE_UNSIGNED (TREE_TYPE (type_high_bound
)))
8020 int c_neg
= (!unsc
&& double_int_negative_p (dc
));
8021 int t_neg
= (unsc
&& double_int_negative_p (dd
));
8023 if (t_neg
&& !c_neg
)
8025 if ((t_neg
|| !c_neg
) && double_int_ucmp (dc
, dd
) > 0)
8028 else if (double_int_cmp (dc
, dd
, unsc
) > 0)
8030 ok_for_high_bound
= true;
8033 ok_for_high_bound
= false;
8035 /* If the constant fits both bounds, the result is known. */
8036 if (ok_for_low_bound
&& ok_for_high_bound
)
8039 /* Perform some generic filtering which may allow making a decision
8040 even if the bounds are not constant. First, negative integers
8041 never fit in unsigned types, */
8042 if (TYPE_UNSIGNED (type
) && !unsc
&& double_int_negative_p (dc
))
8045 /* Second, narrower types always fit in wider ones. */
8046 if (TYPE_PRECISION (type
) > TYPE_PRECISION (TREE_TYPE (c
)))
8049 /* Third, unsigned integers with top bit set never fit signed types. */
8050 if (! TYPE_UNSIGNED (type
) && unsc
)
8052 int prec
= GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (c
))) - 1;
8053 if (prec
< HOST_BITS_PER_WIDE_INT
)
8055 if (((((unsigned HOST_WIDE_INT
) 1) << prec
) & dc
.low
) != 0)
8058 else if (((((unsigned HOST_WIDE_INT
) 1)
8059 << (prec
- HOST_BITS_PER_WIDE_INT
)) & dc
.high
) != 0)
8063 /* If we haven't been able to decide at this point, there nothing more we
8064 can check ourselves here. Look at the base type if we have one and it
8065 has the same precision. */
8066 if (TREE_CODE (type
) == INTEGER_TYPE
8067 && TREE_TYPE (type
) != 0
8068 && TYPE_PRECISION (type
) == TYPE_PRECISION (TREE_TYPE (type
)))
8070 type
= TREE_TYPE (type
);
8074 /* Or to double_int_fits_to_tree_p, if nothing else. */
8075 return double_int_fits_to_tree_p (type
, dc
);
8078 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8079 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8080 represented (assuming two's-complement arithmetic) within the bit
8081 precision of the type are returned instead. */
8084 get_type_static_bounds (const_tree type
, mpz_t min
, mpz_t max
)
8086 if (!POINTER_TYPE_P (type
) && TYPE_MIN_VALUE (type
)
8087 && TREE_CODE (TYPE_MIN_VALUE (type
)) == INTEGER_CST
)
8088 mpz_set_double_int (min
, tree_to_double_int (TYPE_MIN_VALUE (type
)),
8089 TYPE_UNSIGNED (type
));
8092 if (TYPE_UNSIGNED (type
))
8093 mpz_set_ui (min
, 0);
8097 mn
= double_int_mask (TYPE_PRECISION (type
) - 1);
8098 mn
= double_int_sext (double_int_add (mn
, double_int_one
),
8099 TYPE_PRECISION (type
));
8100 mpz_set_double_int (min
, mn
, false);
8104 if (!POINTER_TYPE_P (type
) && TYPE_MAX_VALUE (type
)
8105 && TREE_CODE (TYPE_MAX_VALUE (type
)) == INTEGER_CST
)
8106 mpz_set_double_int (max
, tree_to_double_int (TYPE_MAX_VALUE (type
)),
8107 TYPE_UNSIGNED (type
));
8110 if (TYPE_UNSIGNED (type
))
8111 mpz_set_double_int (max
, double_int_mask (TYPE_PRECISION (type
)),
8114 mpz_set_double_int (max
, double_int_mask (TYPE_PRECISION (type
) - 1),
8119 /* Return true if VAR is an automatic variable defined in function FN. */
8122 auto_var_in_fn_p (const_tree var
, const_tree fn
)
8124 return (DECL_P (var
) && DECL_CONTEXT (var
) == fn
8125 && ((((TREE_CODE (var
) == VAR_DECL
&& ! DECL_EXTERNAL (var
))
8126 || TREE_CODE (var
) == PARM_DECL
)
8127 && ! TREE_STATIC (var
))
8128 || TREE_CODE (var
) == LABEL_DECL
8129 || TREE_CODE (var
) == RESULT_DECL
));
8132 /* Subprogram of following function. Called by walk_tree.
8134 Return *TP if it is an automatic variable or parameter of the
8135 function passed in as DATA. */
8138 find_var_from_fn (tree
*tp
, int *walk_subtrees
, void *data
)
8140 tree fn
= (tree
) data
;
8145 else if (DECL_P (*tp
)
8146 && auto_var_in_fn_p (*tp
, fn
))
8152 /* Returns true if T is, contains, or refers to a type with variable
8153 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8154 arguments, but not the return type. If FN is nonzero, only return
8155 true if a modifier of the type or position of FN is a variable or
8156 parameter inside FN.
8158 This concept is more general than that of C99 'variably modified types':
8159 in C99, a struct type is never variably modified because a VLA may not
8160 appear as a structure member. However, in GNU C code like:
8162 struct S { int i[f()]; };
8164 is valid, and other languages may define similar constructs. */
8167 variably_modified_type_p (tree type
, tree fn
)
8171 /* Test if T is either variable (if FN is zero) or an expression containing
8172 a variable in FN. */
8173 #define RETURN_TRUE_IF_VAR(T) \
8174 do { tree _t = (T); \
8175 if (_t && _t != error_mark_node && TREE_CODE (_t) != INTEGER_CST \
8176 && (!fn || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8177 return true; } while (0)
8179 if (type
== error_mark_node
)
8182 /* If TYPE itself has variable size, it is variably modified. */
8183 RETURN_TRUE_IF_VAR (TYPE_SIZE (type
));
8184 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type
));
8186 switch (TREE_CODE (type
))
8189 case REFERENCE_TYPE
:
8191 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8197 /* If TYPE is a function type, it is variably modified if the
8198 return type is variably modified. */
8199 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8205 case FIXED_POINT_TYPE
:
8208 /* Scalar types are variably modified if their end points
8210 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type
));
8211 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type
));
8216 case QUAL_UNION_TYPE
:
8217 /* We can't see if any of the fields are variably-modified by the
8218 definition we normally use, since that would produce infinite
8219 recursion via pointers. */
8220 /* This is variably modified if some field's type is. */
8221 for (t
= TYPE_FIELDS (type
); t
; t
= DECL_CHAIN (t
))
8222 if (TREE_CODE (t
) == FIELD_DECL
)
8224 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t
));
8225 RETURN_TRUE_IF_VAR (DECL_SIZE (t
));
8226 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t
));
8228 if (TREE_CODE (type
) == QUAL_UNION_TYPE
)
8229 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t
));
8234 /* Do not call ourselves to avoid infinite recursion. This is
8235 variably modified if the element type is. */
8236 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type
)));
8237 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type
)));
8244 /* The current language may have other cases to check, but in general,
8245 all other types are not variably modified. */
8246 return lang_hooks
.tree_inlining
.var_mod_type_p (type
, fn
);
8248 #undef RETURN_TRUE_IF_VAR
8251 /* Given a DECL or TYPE, return the scope in which it was declared, or
8252 NULL_TREE if there is no containing scope. */
8255 get_containing_scope (const_tree t
)
8257 return (TYPE_P (t
) ? TYPE_CONTEXT (t
) : DECL_CONTEXT (t
));
8260 /* Return the innermost context enclosing DECL that is
8261 a FUNCTION_DECL, or zero if none. */
8264 decl_function_context (const_tree decl
)
8268 if (TREE_CODE (decl
) == ERROR_MARK
)
8271 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8272 where we look up the function at runtime. Such functions always take
8273 a first argument of type 'pointer to real context'.
8275 C++ should really be fixed to use DECL_CONTEXT for the real context,
8276 and use something else for the "virtual context". */
8277 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_VINDEX (decl
))
8280 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
8282 context
= DECL_CONTEXT (decl
);
8284 while (context
&& TREE_CODE (context
) != FUNCTION_DECL
)
8286 if (TREE_CODE (context
) == BLOCK
)
8287 context
= BLOCK_SUPERCONTEXT (context
);
8289 context
= get_containing_scope (context
);
8295 /* Return the innermost context enclosing DECL that is
8296 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8297 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8300 decl_type_context (const_tree decl
)
8302 tree context
= DECL_CONTEXT (decl
);
8305 switch (TREE_CODE (context
))
8307 case NAMESPACE_DECL
:
8308 case TRANSLATION_UNIT_DECL
:
8313 case QUAL_UNION_TYPE
:
8318 context
= DECL_CONTEXT (context
);
8322 context
= BLOCK_SUPERCONTEXT (context
);
8332 /* CALL is a CALL_EXPR. Return the declaration for the function
8333 called, or NULL_TREE if the called function cannot be
8337 get_callee_fndecl (const_tree call
)
8341 if (call
== error_mark_node
)
8342 return error_mark_node
;
8344 /* It's invalid to call this function with anything but a
8346 gcc_assert (TREE_CODE (call
) == CALL_EXPR
);
8348 /* The first operand to the CALL is the address of the function
8350 addr
= CALL_EXPR_FN (call
);
8354 /* If this is a readonly function pointer, extract its initial value. */
8355 if (DECL_P (addr
) && TREE_CODE (addr
) != FUNCTION_DECL
8356 && TREE_READONLY (addr
) && ! TREE_THIS_VOLATILE (addr
)
8357 && DECL_INITIAL (addr
))
8358 addr
= DECL_INITIAL (addr
);
8360 /* If the address is just `&f' for some function `f', then we know
8361 that `f' is being called. */
8362 if (TREE_CODE (addr
) == ADDR_EXPR
8363 && TREE_CODE (TREE_OPERAND (addr
, 0)) == FUNCTION_DECL
)
8364 return TREE_OPERAND (addr
, 0);
8366 /* We couldn't figure out what was being called. */
8370 /* Print debugging information about tree nodes generated during the compile,
8371 and any language-specific information. */
8374 dump_tree_statistics (void)
8376 #ifdef GATHER_STATISTICS
8378 int total_nodes
, total_bytes
;
8381 fprintf (stderr
, "\n??? tree nodes created\n\n");
8382 #ifdef GATHER_STATISTICS
8383 fprintf (stderr
, "Kind Nodes Bytes\n");
8384 fprintf (stderr
, "---------------------------------------\n");
8385 total_nodes
= total_bytes
= 0;
8386 for (i
= 0; i
< (int) all_kinds
; i
++)
8388 fprintf (stderr
, "%-20s %7d %10d\n", tree_node_kind_names
[i
],
8389 tree_node_counts
[i
], tree_node_sizes
[i
]);
8390 total_nodes
+= tree_node_counts
[i
];
8391 total_bytes
+= tree_node_sizes
[i
];
8393 fprintf (stderr
, "---------------------------------------\n");
8394 fprintf (stderr
, "%-20s %7d %10d\n", "Total", total_nodes
, total_bytes
);
8395 fprintf (stderr
, "---------------------------------------\n");
8396 ssanames_print_statistics ();
8397 phinodes_print_statistics ();
8399 fprintf (stderr
, "(No per-node statistics)\n");
8401 print_type_hash_statistics ();
8402 print_debug_expr_statistics ();
8403 print_value_expr_statistics ();
8404 lang_hooks
.print_statistics ();
8407 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
8409 /* Generate a crc32 of a string. */
8412 crc32_string (unsigned chksum
, const char *string
)
8416 unsigned value
= *string
<< 24;
8419 for (ix
= 8; ix
--; value
<<= 1)
8423 feedback
= (value
^ chksum
) & 0x80000000 ? 0x04c11db7 : 0;
8432 /* P is a string that will be used in a symbol. Mask out any characters
8433 that are not valid in that context. */
8436 clean_symbol_name (char *p
)
8440 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
8443 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
8450 /* Generate a name for a special-purpose function function.
8451 The generated name may need to be unique across the whole link.
8452 TYPE is some string to identify the purpose of this function to the
8453 linker or collect2; it must start with an uppercase letter,
8455 I - for constructors
8457 N - for C++ anonymous namespaces
8458 F - for DWARF unwind frame information. */
8461 get_file_function_name (const char *type
)
8467 /* If we already have a name we know to be unique, just use that. */
8468 if (first_global_object_name
)
8469 p
= q
= ASTRDUP (first_global_object_name
);
8470 /* If the target is handling the constructors/destructors, they
8471 will be local to this file and the name is only necessary for
8472 debugging purposes. */
8473 else if ((type
[0] == 'I' || type
[0] == 'D') && targetm
.have_ctors_dtors
)
8475 const char *file
= main_input_filename
;
8477 file
= input_filename
;
8478 /* Just use the file's basename, because the full pathname
8479 might be quite long. */
8480 p
= strrchr (file
, '/');
8485 p
= q
= ASTRDUP (p
);
8489 /* Otherwise, the name must be unique across the entire link.
8490 We don't have anything that we know to be unique to this translation
8491 unit, so use what we do have and throw in some randomness. */
8493 const char *name
= weak_global_object_name
;
8494 const char *file
= main_input_filename
;
8499 file
= input_filename
;
8501 len
= strlen (file
);
8502 q
= (char *) alloca (9 * 2 + len
+ 1);
8503 memcpy (q
, file
, len
+ 1);
8505 sprintf (q
+ len
, "_%08X_%08X", crc32_string (0, name
),
8506 crc32_string (0, get_random_seed (false)));
8511 clean_symbol_name (q
);
8512 buf
= (char *) alloca (sizeof (FILE_FUNCTION_FORMAT
) + strlen (p
)
8515 /* Set up the name of the file-level functions we may need.
8516 Use a global object (which is already required to be unique over
8517 the program) rather than the file name (which imposes extra
8519 sprintf (buf
, FILE_FUNCTION_FORMAT
, type
, p
);
8521 return get_identifier (buf
);
8524 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
8526 /* Complain that the tree code of NODE does not match the expected 0
8527 terminated list of trailing codes. The trailing code list can be
8528 empty, for a more vague error message. FILE, LINE, and FUNCTION
8529 are of the caller. */
8532 tree_check_failed (const_tree node
, const char *file
,
8533 int line
, const char *function
, ...)
8537 unsigned length
= 0;
8540 va_start (args
, function
);
8541 while ((code
= va_arg (args
, int)))
8542 length
+= 4 + strlen (tree_code_name
[code
]);
8547 va_start (args
, function
);
8548 length
+= strlen ("expected ");
8549 buffer
= tmp
= (char *) alloca (length
);
8551 while ((code
= va_arg (args
, int)))
8553 const char *prefix
= length
? " or " : "expected ";
8555 strcpy (tmp
+ length
, prefix
);
8556 length
+= strlen (prefix
);
8557 strcpy (tmp
+ length
, tree_code_name
[code
]);
8558 length
+= strlen (tree_code_name
[code
]);
8563 buffer
= "unexpected node";
8565 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8566 buffer
, tree_code_name
[TREE_CODE (node
)],
8567 function
, trim_filename (file
), line
);
8570 /* Complain that the tree code of NODE does match the expected 0
8571 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
8575 tree_not_check_failed (const_tree node
, const char *file
,
8576 int line
, const char *function
, ...)
8580 unsigned length
= 0;
8583 va_start (args
, function
);
8584 while ((code
= va_arg (args
, int)))
8585 length
+= 4 + strlen (tree_code_name
[code
]);
8587 va_start (args
, function
);
8588 buffer
= (char *) alloca (length
);
8590 while ((code
= va_arg (args
, int)))
8594 strcpy (buffer
+ length
, " or ");
8597 strcpy (buffer
+ length
, tree_code_name
[code
]);
8598 length
+= strlen (tree_code_name
[code
]);
8602 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
8603 buffer
, tree_code_name
[TREE_CODE (node
)],
8604 function
, trim_filename (file
), line
);
8607 /* Similar to tree_check_failed, except that we check for a class of tree
8608 code, given in CL. */
8611 tree_class_check_failed (const_tree node
, const enum tree_code_class cl
,
8612 const char *file
, int line
, const char *function
)
8615 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
8616 TREE_CODE_CLASS_STRING (cl
),
8617 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
8618 tree_code_name
[TREE_CODE (node
)], function
, trim_filename (file
), line
);
8621 /* Similar to tree_check_failed, except that instead of specifying a
8622 dozen codes, use the knowledge that they're all sequential. */
8625 tree_range_check_failed (const_tree node
, const char *file
, int line
,
8626 const char *function
, enum tree_code c1
,
8630 unsigned length
= 0;
8633 for (c
= c1
; c
<= c2
; ++c
)
8634 length
+= 4 + strlen (tree_code_name
[c
]);
8636 length
+= strlen ("expected ");
8637 buffer
= (char *) alloca (length
);
8640 for (c
= c1
; c
<= c2
; ++c
)
8642 const char *prefix
= length
? " or " : "expected ";
8644 strcpy (buffer
+ length
, prefix
);
8645 length
+= strlen (prefix
);
8646 strcpy (buffer
+ length
, tree_code_name
[c
]);
8647 length
+= strlen (tree_code_name
[c
]);
8650 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8651 buffer
, tree_code_name
[TREE_CODE (node
)],
8652 function
, trim_filename (file
), line
);
8656 /* Similar to tree_check_failed, except that we check that a tree does
8657 not have the specified code, given in CL. */
8660 tree_not_class_check_failed (const_tree node
, const enum tree_code_class cl
,
8661 const char *file
, int line
, const char *function
)
8664 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
8665 TREE_CODE_CLASS_STRING (cl
),
8666 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
8667 tree_code_name
[TREE_CODE (node
)], function
, trim_filename (file
), line
);
8671 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
8674 omp_clause_check_failed (const_tree node
, const char *file
, int line
,
8675 const char *function
, enum omp_clause_code code
)
8677 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
8678 omp_clause_code_name
[code
], tree_code_name
[TREE_CODE (node
)],
8679 function
, trim_filename (file
), line
);
8683 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
8686 omp_clause_range_check_failed (const_tree node
, const char *file
, int line
,
8687 const char *function
, enum omp_clause_code c1
,
8688 enum omp_clause_code c2
)
8691 unsigned length
= 0;
8694 for (c
= c1
; c
<= c2
; ++c
)
8695 length
+= 4 + strlen (omp_clause_code_name
[c
]);
8697 length
+= strlen ("expected ");
8698 buffer
= (char *) alloca (length
);
8701 for (c
= c1
; c
<= c2
; ++c
)
8703 const char *prefix
= length
? " or " : "expected ";
8705 strcpy (buffer
+ length
, prefix
);
8706 length
+= strlen (prefix
);
8707 strcpy (buffer
+ length
, omp_clause_code_name
[c
]);
8708 length
+= strlen (omp_clause_code_name
[c
]);
8711 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8712 buffer
, omp_clause_code_name
[TREE_CODE (node
)],
8713 function
, trim_filename (file
), line
);
8717 #undef DEFTREESTRUCT
8718 #define DEFTREESTRUCT(VAL, NAME) NAME,
8720 static const char *ts_enum_names
[] = {
8721 #include "treestruct.def"
8723 #undef DEFTREESTRUCT
8725 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
8727 /* Similar to tree_class_check_failed, except that we check for
8728 whether CODE contains the tree structure identified by EN. */
8731 tree_contains_struct_check_failed (const_tree node
,
8732 const enum tree_node_structure_enum en
,
8733 const char *file
, int line
,
8734 const char *function
)
8737 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
8739 tree_code_name
[TREE_CODE (node
)], function
, trim_filename (file
), line
);
8743 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
8744 (dynamically sized) vector. */
8747 tree_vec_elt_check_failed (int idx
, int len
, const char *file
, int line
,
8748 const char *function
)
8751 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
8752 idx
+ 1, len
, function
, trim_filename (file
), line
);
8755 /* Similar to above, except that the check is for the bounds of the operand
8756 vector of an expression node EXP. */
8759 tree_operand_check_failed (int idx
, const_tree exp
, const char *file
,
8760 int line
, const char *function
)
8762 int code
= TREE_CODE (exp
);
8764 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
8765 idx
+ 1, tree_code_name
[code
], TREE_OPERAND_LENGTH (exp
),
8766 function
, trim_filename (file
), line
);
8769 /* Similar to above, except that the check is for the number of
8770 operands of an OMP_CLAUSE node. */
8773 omp_clause_operand_check_failed (int idx
, const_tree t
, const char *file
,
8774 int line
, const char *function
)
8777 ("tree check: accessed operand %d of omp_clause %s with %d operands "
8778 "in %s, at %s:%d", idx
+ 1, omp_clause_code_name
[OMP_CLAUSE_CODE (t
)],
8779 omp_clause_num_ops
[OMP_CLAUSE_CODE (t
)], function
,
8780 trim_filename (file
), line
);
8782 #endif /* ENABLE_TREE_CHECKING */
8784 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
8785 and mapped to the machine mode MODE. Initialize its fields and build
8786 the information necessary for debugging output. */
8789 make_vector_type (tree innertype
, int nunits
, enum machine_mode mode
)
8792 hashval_t hashcode
= 0;
8794 t
= make_node (VECTOR_TYPE
);
8795 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (innertype
);
8796 SET_TYPE_VECTOR_SUBPARTS (t
, nunits
);
8797 SET_TYPE_MODE (t
, mode
);
8799 if (TYPE_STRUCTURAL_EQUALITY_P (innertype
))
8800 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8801 else if (TYPE_CANONICAL (innertype
) != innertype
8802 || mode
!= VOIDmode
)
8804 = make_vector_type (TYPE_CANONICAL (innertype
), nunits
, VOIDmode
);
8808 hashcode
= iterative_hash_host_wide_int (VECTOR_TYPE
, hashcode
);
8809 hashcode
= iterative_hash_host_wide_int (nunits
, hashcode
);
8810 hashcode
= iterative_hash_host_wide_int (mode
, hashcode
);
8811 hashcode
= iterative_hash_object (TYPE_HASH (TREE_TYPE (t
)), hashcode
);
8812 t
= type_hash_canon (hashcode
, t
);
8814 /* We have built a main variant, based on the main variant of the
8815 inner type. Use it to build the variant we return. */
8816 if ((TYPE_ATTRIBUTES (innertype
) || TYPE_QUALS (innertype
))
8817 && TREE_TYPE (t
) != innertype
)
8818 return build_type_attribute_qual_variant (t
,
8819 TYPE_ATTRIBUTES (innertype
),
8820 TYPE_QUALS (innertype
));
8826 make_or_reuse_type (unsigned size
, int unsignedp
)
8828 if (size
== INT_TYPE_SIZE
)
8829 return unsignedp
? unsigned_type_node
: integer_type_node
;
8830 if (size
== CHAR_TYPE_SIZE
)
8831 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
8832 if (size
== SHORT_TYPE_SIZE
)
8833 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
8834 if (size
== LONG_TYPE_SIZE
)
8835 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
8836 if (size
== LONG_LONG_TYPE_SIZE
)
8837 return (unsignedp
? long_long_unsigned_type_node
8838 : long_long_integer_type_node
);
8839 if (size
== 128 && int128_integer_type_node
)
8840 return (unsignedp
? int128_unsigned_type_node
8841 : int128_integer_type_node
);
8844 return make_unsigned_type (size
);
8846 return make_signed_type (size
);
8849 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
8852 make_or_reuse_fract_type (unsigned size
, int unsignedp
, int satp
)
8856 if (size
== SHORT_FRACT_TYPE_SIZE
)
8857 return unsignedp
? sat_unsigned_short_fract_type_node
8858 : sat_short_fract_type_node
;
8859 if (size
== FRACT_TYPE_SIZE
)
8860 return unsignedp
? sat_unsigned_fract_type_node
: sat_fract_type_node
;
8861 if (size
== LONG_FRACT_TYPE_SIZE
)
8862 return unsignedp
? sat_unsigned_long_fract_type_node
8863 : sat_long_fract_type_node
;
8864 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
8865 return unsignedp
? sat_unsigned_long_long_fract_type_node
8866 : sat_long_long_fract_type_node
;
8870 if (size
== SHORT_FRACT_TYPE_SIZE
)
8871 return unsignedp
? unsigned_short_fract_type_node
8872 : short_fract_type_node
;
8873 if (size
== FRACT_TYPE_SIZE
)
8874 return unsignedp
? unsigned_fract_type_node
: fract_type_node
;
8875 if (size
== LONG_FRACT_TYPE_SIZE
)
8876 return unsignedp
? unsigned_long_fract_type_node
8877 : long_fract_type_node
;
8878 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
8879 return unsignedp
? unsigned_long_long_fract_type_node
8880 : long_long_fract_type_node
;
8883 return make_fract_type (size
, unsignedp
, satp
);
8886 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
8889 make_or_reuse_accum_type (unsigned size
, int unsignedp
, int satp
)
8893 if (size
== SHORT_ACCUM_TYPE_SIZE
)
8894 return unsignedp
? sat_unsigned_short_accum_type_node
8895 : sat_short_accum_type_node
;
8896 if (size
== ACCUM_TYPE_SIZE
)
8897 return unsignedp
? sat_unsigned_accum_type_node
: sat_accum_type_node
;
8898 if (size
== LONG_ACCUM_TYPE_SIZE
)
8899 return unsignedp
? sat_unsigned_long_accum_type_node
8900 : sat_long_accum_type_node
;
8901 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
8902 return unsignedp
? sat_unsigned_long_long_accum_type_node
8903 : sat_long_long_accum_type_node
;
8907 if (size
== SHORT_ACCUM_TYPE_SIZE
)
8908 return unsignedp
? unsigned_short_accum_type_node
8909 : short_accum_type_node
;
8910 if (size
== ACCUM_TYPE_SIZE
)
8911 return unsignedp
? unsigned_accum_type_node
: accum_type_node
;
8912 if (size
== LONG_ACCUM_TYPE_SIZE
)
8913 return unsignedp
? unsigned_long_accum_type_node
8914 : long_accum_type_node
;
8915 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
8916 return unsignedp
? unsigned_long_long_accum_type_node
8917 : long_long_accum_type_node
;
8920 return make_accum_type (size
, unsignedp
, satp
);
8923 /* Create nodes for all integer types (and error_mark_node) using the sizes
8924 of C datatypes. The caller should call set_sizetype soon after calling
8925 this function to select one of the types as sizetype. */
8928 build_common_tree_nodes (bool signed_char
)
8930 error_mark_node
= make_node (ERROR_MARK
);
8931 TREE_TYPE (error_mark_node
) = error_mark_node
;
8933 initialize_sizetypes ();
8935 /* Define both `signed char' and `unsigned char'. */
8936 signed_char_type_node
= make_signed_type (CHAR_TYPE_SIZE
);
8937 TYPE_STRING_FLAG (signed_char_type_node
) = 1;
8938 unsigned_char_type_node
= make_unsigned_type (CHAR_TYPE_SIZE
);
8939 TYPE_STRING_FLAG (unsigned_char_type_node
) = 1;
8941 /* Define `char', which is like either `signed char' or `unsigned char'
8942 but not the same as either. */
8945 ? make_signed_type (CHAR_TYPE_SIZE
)
8946 : make_unsigned_type (CHAR_TYPE_SIZE
));
8947 TYPE_STRING_FLAG (char_type_node
) = 1;
8949 short_integer_type_node
= make_signed_type (SHORT_TYPE_SIZE
);
8950 short_unsigned_type_node
= make_unsigned_type (SHORT_TYPE_SIZE
);
8951 integer_type_node
= make_signed_type (INT_TYPE_SIZE
);
8952 unsigned_type_node
= make_unsigned_type (INT_TYPE_SIZE
);
8953 long_integer_type_node
= make_signed_type (LONG_TYPE_SIZE
);
8954 long_unsigned_type_node
= make_unsigned_type (LONG_TYPE_SIZE
);
8955 long_long_integer_type_node
= make_signed_type (LONG_LONG_TYPE_SIZE
);
8956 long_long_unsigned_type_node
= make_unsigned_type (LONG_LONG_TYPE_SIZE
);
8957 #if HOST_BITS_PER_WIDE_INT >= 64
8958 /* TODO: This isn't correct, but as logic depends at the moment on
8959 host's instead of target's wide-integer.
8960 If there is a target not supporting TImode, but has an 128-bit
8961 integer-scalar register, this target check needs to be adjusted. */
8962 if (targetm
.scalar_mode_supported_p (TImode
))
8964 int128_integer_type_node
= make_signed_type (128);
8965 int128_unsigned_type_node
= make_unsigned_type (128);
8968 /* Define a boolean type. This type only represents boolean values but
8969 may be larger than char depending on the value of BOOL_TYPE_SIZE.
8970 Front ends which want to override this size (i.e. Java) can redefine
8971 boolean_type_node before calling build_common_tree_nodes_2. */
8972 boolean_type_node
= make_unsigned_type (BOOL_TYPE_SIZE
);
8973 TREE_SET_CODE (boolean_type_node
, BOOLEAN_TYPE
);
8974 TYPE_MAX_VALUE (boolean_type_node
) = build_int_cst (boolean_type_node
, 1);
8975 TYPE_PRECISION (boolean_type_node
) = 1;
8977 /* Fill in the rest of the sized types. Reuse existing type nodes
8979 intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 0);
8980 intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 0);
8981 intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 0);
8982 intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 0);
8983 intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 0);
8985 unsigned_intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 1);
8986 unsigned_intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 1);
8987 unsigned_intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 1);
8988 unsigned_intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 1);
8989 unsigned_intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 1);
8991 access_public_node
= get_identifier ("public");
8992 access_protected_node
= get_identifier ("protected");
8993 access_private_node
= get_identifier ("private");
8996 /* Call this function after calling build_common_tree_nodes and set_sizetype.
8997 It will create several other common tree nodes. */
9000 build_common_tree_nodes_2 (int short_double
)
9002 /* Define these next since types below may used them. */
9003 integer_zero_node
= build_int_cst (integer_type_node
, 0);
9004 integer_one_node
= build_int_cst (integer_type_node
, 1);
9005 integer_three_node
= build_int_cst (integer_type_node
, 3);
9006 integer_minus_one_node
= build_int_cst (integer_type_node
, -1);
9008 size_zero_node
= size_int (0);
9009 size_one_node
= size_int (1);
9010 bitsize_zero_node
= bitsize_int (0);
9011 bitsize_one_node
= bitsize_int (1);
9012 bitsize_unit_node
= bitsize_int (BITS_PER_UNIT
);
9014 boolean_false_node
= TYPE_MIN_VALUE (boolean_type_node
);
9015 boolean_true_node
= TYPE_MAX_VALUE (boolean_type_node
);
9017 void_type_node
= make_node (VOID_TYPE
);
9018 layout_type (void_type_node
);
9020 /* We are not going to have real types in C with less than byte alignment,
9021 so we might as well not have any types that claim to have it. */
9022 TYPE_ALIGN (void_type_node
) = BITS_PER_UNIT
;
9023 TYPE_USER_ALIGN (void_type_node
) = 0;
9025 null_pointer_node
= build_int_cst (build_pointer_type (void_type_node
), 0);
9026 layout_type (TREE_TYPE (null_pointer_node
));
9028 ptr_type_node
= build_pointer_type (void_type_node
);
9030 = build_pointer_type (build_type_variant (void_type_node
, 1, 0));
9031 fileptr_type_node
= ptr_type_node
;
9033 float_type_node
= make_node (REAL_TYPE
);
9034 TYPE_PRECISION (float_type_node
) = FLOAT_TYPE_SIZE
;
9035 layout_type (float_type_node
);
9037 double_type_node
= make_node (REAL_TYPE
);
9039 TYPE_PRECISION (double_type_node
) = FLOAT_TYPE_SIZE
;
9041 TYPE_PRECISION (double_type_node
) = DOUBLE_TYPE_SIZE
;
9042 layout_type (double_type_node
);
9044 long_double_type_node
= make_node (REAL_TYPE
);
9045 TYPE_PRECISION (long_double_type_node
) = LONG_DOUBLE_TYPE_SIZE
;
9046 layout_type (long_double_type_node
);
9048 float_ptr_type_node
= build_pointer_type (float_type_node
);
9049 double_ptr_type_node
= build_pointer_type (double_type_node
);
9050 long_double_ptr_type_node
= build_pointer_type (long_double_type_node
);
9051 integer_ptr_type_node
= build_pointer_type (integer_type_node
);
9053 /* Fixed size integer types. */
9054 uint32_type_node
= build_nonstandard_integer_type (32, true);
9055 uint64_type_node
= build_nonstandard_integer_type (64, true);
9057 /* Decimal float types. */
9058 dfloat32_type_node
= make_node (REAL_TYPE
);
9059 TYPE_PRECISION (dfloat32_type_node
) = DECIMAL32_TYPE_SIZE
;
9060 layout_type (dfloat32_type_node
);
9061 SET_TYPE_MODE (dfloat32_type_node
, SDmode
);
9062 dfloat32_ptr_type_node
= build_pointer_type (dfloat32_type_node
);
9064 dfloat64_type_node
= make_node (REAL_TYPE
);
9065 TYPE_PRECISION (dfloat64_type_node
) = DECIMAL64_TYPE_SIZE
;
9066 layout_type (dfloat64_type_node
);
9067 SET_TYPE_MODE (dfloat64_type_node
, DDmode
);
9068 dfloat64_ptr_type_node
= build_pointer_type (dfloat64_type_node
);
9070 dfloat128_type_node
= make_node (REAL_TYPE
);
9071 TYPE_PRECISION (dfloat128_type_node
) = DECIMAL128_TYPE_SIZE
;
9072 layout_type (dfloat128_type_node
);
9073 SET_TYPE_MODE (dfloat128_type_node
, TDmode
);
9074 dfloat128_ptr_type_node
= build_pointer_type (dfloat128_type_node
);
9076 complex_integer_type_node
= build_complex_type (integer_type_node
);
9077 complex_float_type_node
= build_complex_type (float_type_node
);
9078 complex_double_type_node
= build_complex_type (double_type_node
);
9079 complex_long_double_type_node
= build_complex_type (long_double_type_node
);
9081 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
9082 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
9083 sat_ ## KIND ## _type_node = \
9084 make_sat_signed_ ## KIND ## _type (SIZE); \
9085 sat_unsigned_ ## KIND ## _type_node = \
9086 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9087 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9088 unsigned_ ## KIND ## _type_node = \
9089 make_unsigned_ ## KIND ## _type (SIZE);
9091 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
9092 sat_ ## WIDTH ## KIND ## _type_node = \
9093 make_sat_signed_ ## KIND ## _type (SIZE); \
9094 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
9095 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9096 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9097 unsigned_ ## WIDTH ## KIND ## _type_node = \
9098 make_unsigned_ ## KIND ## _type (SIZE);
9100 /* Make fixed-point type nodes based on four different widths. */
9101 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
9102 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
9103 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
9104 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
9105 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
9107 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
9108 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
9109 NAME ## _type_node = \
9110 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
9111 u ## NAME ## _type_node = \
9112 make_or_reuse_unsigned_ ## KIND ## _type \
9113 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
9114 sat_ ## NAME ## _type_node = \
9115 make_or_reuse_sat_signed_ ## KIND ## _type \
9116 (GET_MODE_BITSIZE (MODE ## mode)); \
9117 sat_u ## NAME ## _type_node = \
9118 make_or_reuse_sat_unsigned_ ## KIND ## _type \
9119 (GET_MODE_BITSIZE (U ## MODE ## mode));
9121 /* Fixed-point type and mode nodes. */
9122 MAKE_FIXED_TYPE_NODE_FAMILY (fract
, FRACT
)
9123 MAKE_FIXED_TYPE_NODE_FAMILY (accum
, ACCUM
)
9124 MAKE_FIXED_MODE_NODE (fract
, qq
, QQ
)
9125 MAKE_FIXED_MODE_NODE (fract
, hq
, HQ
)
9126 MAKE_FIXED_MODE_NODE (fract
, sq
, SQ
)
9127 MAKE_FIXED_MODE_NODE (fract
, dq
, DQ
)
9128 MAKE_FIXED_MODE_NODE (fract
, tq
, TQ
)
9129 MAKE_FIXED_MODE_NODE (accum
, ha
, HA
)
9130 MAKE_FIXED_MODE_NODE (accum
, sa
, SA
)
9131 MAKE_FIXED_MODE_NODE (accum
, da
, DA
)
9132 MAKE_FIXED_MODE_NODE (accum
, ta
, TA
)
9135 tree t
= targetm
.build_builtin_va_list ();
9137 /* Many back-ends define record types without setting TYPE_NAME.
9138 If we copied the record type here, we'd keep the original
9139 record type without a name. This breaks name mangling. So,
9140 don't copy record types and let c_common_nodes_and_builtins()
9141 declare the type to be __builtin_va_list. */
9142 if (TREE_CODE (t
) != RECORD_TYPE
)
9143 t
= build_variant_type_copy (t
);
9145 va_list_type_node
= t
;
9149 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
9152 local_define_builtin (const char *name
, tree type
, enum built_in_function code
,
9153 const char *library_name
, int ecf_flags
)
9157 decl
= add_builtin_function (name
, type
, code
, BUILT_IN_NORMAL
,
9158 library_name
, NULL_TREE
);
9159 if (ecf_flags
& ECF_CONST
)
9160 TREE_READONLY (decl
) = 1;
9161 if (ecf_flags
& ECF_PURE
)
9162 DECL_PURE_P (decl
) = 1;
9163 if (ecf_flags
& ECF_LOOPING_CONST_OR_PURE
)
9164 DECL_LOOPING_CONST_OR_PURE_P (decl
) = 1;
9165 if (ecf_flags
& ECF_NORETURN
)
9166 TREE_THIS_VOLATILE (decl
) = 1;
9167 if (ecf_flags
& ECF_NOTHROW
)
9168 TREE_NOTHROW (decl
) = 1;
9169 if (ecf_flags
& ECF_MALLOC
)
9170 DECL_IS_MALLOC (decl
) = 1;
9171 if (ecf_flags
& ECF_LEAF
)
9172 DECL_ATTRIBUTES (decl
) = tree_cons (get_identifier ("leaf"),
9173 NULL
, DECL_ATTRIBUTES (decl
));
9175 built_in_decls
[code
] = decl
;
9176 implicit_built_in_decls
[code
] = decl
;
9179 /* Call this function after instantiating all builtins that the language
9180 front end cares about. This will build the rest of the builtins that
9181 are relied upon by the tree optimizers and the middle-end. */
9184 build_common_builtin_nodes (void)
9188 if (built_in_decls
[BUILT_IN_MEMCPY
] == NULL
9189 || built_in_decls
[BUILT_IN_MEMMOVE
] == NULL
)
9191 ftype
= build_function_type_list (ptr_type_node
,
9192 ptr_type_node
, const_ptr_type_node
,
9193 size_type_node
, NULL_TREE
);
9195 if (built_in_decls
[BUILT_IN_MEMCPY
] == NULL
)
9196 local_define_builtin ("__builtin_memcpy", ftype
, BUILT_IN_MEMCPY
,
9197 "memcpy", ECF_NOTHROW
| ECF_LEAF
);
9198 if (built_in_decls
[BUILT_IN_MEMMOVE
] == NULL
)
9199 local_define_builtin ("__builtin_memmove", ftype
, BUILT_IN_MEMMOVE
,
9200 "memmove", ECF_NOTHROW
| ECF_LEAF
);
9203 if (built_in_decls
[BUILT_IN_MEMCMP
] == NULL
)
9205 ftype
= build_function_type_list (integer_type_node
, const_ptr_type_node
,
9206 const_ptr_type_node
, size_type_node
,
9208 local_define_builtin ("__builtin_memcmp", ftype
, BUILT_IN_MEMCMP
,
9209 "memcmp", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
9212 if (built_in_decls
[BUILT_IN_MEMSET
] == NULL
)
9214 ftype
= build_function_type_list (ptr_type_node
,
9215 ptr_type_node
, integer_type_node
,
9216 size_type_node
, NULL_TREE
);
9217 local_define_builtin ("__builtin_memset", ftype
, BUILT_IN_MEMSET
,
9218 "memset", ECF_NOTHROW
| ECF_LEAF
);
9221 if (built_in_decls
[BUILT_IN_ALLOCA
] == NULL
)
9223 ftype
= build_function_type_list (ptr_type_node
,
9224 size_type_node
, NULL_TREE
);
9225 local_define_builtin ("__builtin_alloca", ftype
, BUILT_IN_ALLOCA
,
9226 "alloca", ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
9229 /* If we're checking the stack, `alloca' can throw. */
9230 if (flag_stack_check
)
9231 TREE_NOTHROW (built_in_decls
[BUILT_IN_ALLOCA
]) = 0;
9233 ftype
= build_function_type_list (void_type_node
,
9234 ptr_type_node
, ptr_type_node
,
9235 ptr_type_node
, NULL_TREE
);
9236 local_define_builtin ("__builtin_init_trampoline", ftype
,
9237 BUILT_IN_INIT_TRAMPOLINE
,
9238 "__builtin_init_trampoline", ECF_NOTHROW
| ECF_LEAF
);
9240 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
9241 local_define_builtin ("__builtin_adjust_trampoline", ftype
,
9242 BUILT_IN_ADJUST_TRAMPOLINE
,
9243 "__builtin_adjust_trampoline",
9244 ECF_CONST
| ECF_NOTHROW
);
9246 ftype
= build_function_type_list (void_type_node
,
9247 ptr_type_node
, ptr_type_node
, NULL_TREE
);
9248 local_define_builtin ("__builtin_nonlocal_goto", ftype
,
9249 BUILT_IN_NONLOCAL_GOTO
,
9250 "__builtin_nonlocal_goto",
9251 ECF_NORETURN
| ECF_NOTHROW
);
9253 ftype
= build_function_type_list (void_type_node
,
9254 ptr_type_node
, ptr_type_node
, NULL_TREE
);
9255 local_define_builtin ("__builtin_setjmp_setup", ftype
,
9256 BUILT_IN_SETJMP_SETUP
,
9257 "__builtin_setjmp_setup", ECF_NOTHROW
);
9259 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
9260 local_define_builtin ("__builtin_setjmp_dispatcher", ftype
,
9261 BUILT_IN_SETJMP_DISPATCHER
,
9262 "__builtin_setjmp_dispatcher",
9263 ECF_PURE
| ECF_NOTHROW
);
9265 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9266 local_define_builtin ("__builtin_setjmp_receiver", ftype
,
9267 BUILT_IN_SETJMP_RECEIVER
,
9268 "__builtin_setjmp_receiver", ECF_NOTHROW
);
9270 ftype
= build_function_type_list (ptr_type_node
, NULL_TREE
);
9271 local_define_builtin ("__builtin_stack_save", ftype
, BUILT_IN_STACK_SAVE
,
9272 "__builtin_stack_save", ECF_NOTHROW
| ECF_LEAF
);
9274 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9275 local_define_builtin ("__builtin_stack_restore", ftype
,
9276 BUILT_IN_STACK_RESTORE
,
9277 "__builtin_stack_restore", ECF_NOTHROW
| ECF_LEAF
);
9279 ftype
= build_function_type_list (void_type_node
, NULL_TREE
);
9280 local_define_builtin ("__builtin_profile_func_enter", ftype
,
9281 BUILT_IN_PROFILE_FUNC_ENTER
, "profile_func_enter", 0);
9282 local_define_builtin ("__builtin_profile_func_exit", ftype
,
9283 BUILT_IN_PROFILE_FUNC_EXIT
, "profile_func_exit", 0);
9285 /* If there's a possibility that we might use the ARM EABI, build the
9286 alternate __cxa_end_cleanup node used to resume from C++ and Java. */
9287 if (targetm
.arm_eabi_unwinder
)
9289 ftype
= build_function_type_list (void_type_node
, NULL_TREE
);
9290 local_define_builtin ("__builtin_cxa_end_cleanup", ftype
,
9291 BUILT_IN_CXA_END_CLEANUP
,
9292 "__cxa_end_cleanup", ECF_NORETURN
| ECF_LEAF
);
9295 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9296 local_define_builtin ("__builtin_unwind_resume", ftype
,
9297 BUILT_IN_UNWIND_RESUME
,
9298 (targetm
.except_unwind_info () == UI_SJLJ
9299 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
9302 /* The exception object and filter values from the runtime. The argument
9303 must be zero before exception lowering, i.e. from the front end. After
9304 exception lowering, it will be the region number for the exception
9305 landing pad. These functions are PURE instead of CONST to prevent
9306 them from being hoisted past the exception edge that will initialize
9307 its value in the landing pad. */
9308 ftype
= build_function_type_list (ptr_type_node
,
9309 integer_type_node
, NULL_TREE
);
9310 local_define_builtin ("__builtin_eh_pointer", ftype
, BUILT_IN_EH_POINTER
,
9311 "__builtin_eh_pointer", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
9313 tmp
= lang_hooks
.types
.type_for_mode (targetm
.eh_return_filter_mode (), 0);
9314 ftype
= build_function_type_list (tmp
, integer_type_node
, NULL_TREE
);
9315 local_define_builtin ("__builtin_eh_filter", ftype
, BUILT_IN_EH_FILTER
,
9316 "__builtin_eh_filter", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
9318 ftype
= build_function_type_list (void_type_node
,
9319 integer_type_node
, integer_type_node
,
9321 local_define_builtin ("__builtin_eh_copy_values", ftype
,
9322 BUILT_IN_EH_COPY_VALUES
,
9323 "__builtin_eh_copy_values", ECF_NOTHROW
);
9325 /* Complex multiplication and division. These are handled as builtins
9326 rather than optabs because emit_library_call_value doesn't support
9327 complex. Further, we can do slightly better with folding these
9328 beasties if the real and complex parts of the arguments are separate. */
9332 for (mode
= MIN_MODE_COMPLEX_FLOAT
; mode
<= MAX_MODE_COMPLEX_FLOAT
; ++mode
)
9334 char mode_name_buf
[4], *q
;
9336 enum built_in_function mcode
, dcode
;
9337 tree type
, inner_type
;
9339 type
= lang_hooks
.types
.type_for_mode ((enum machine_mode
) mode
, 0);
9342 inner_type
= TREE_TYPE (type
);
9344 ftype
= build_function_type_list (type
, inner_type
, inner_type
,
9345 inner_type
, inner_type
, NULL_TREE
);
9347 mcode
= ((enum built_in_function
)
9348 (BUILT_IN_COMPLEX_MUL_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
9349 dcode
= ((enum built_in_function
)
9350 (BUILT_IN_COMPLEX_DIV_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
9352 for (p
= GET_MODE_NAME (mode
), q
= mode_name_buf
; *p
; p
++, q
++)
9356 built_in_names
[mcode
] = concat ("__mul", mode_name_buf
, "3", NULL
);
9357 local_define_builtin (built_in_names
[mcode
], ftype
, mcode
,
9358 built_in_names
[mcode
], ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
9360 built_in_names
[dcode
] = concat ("__div", mode_name_buf
, "3", NULL
);
9361 local_define_builtin (built_in_names
[dcode
], ftype
, dcode
,
9362 built_in_names
[dcode
], ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
9367 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
9370 If we requested a pointer to a vector, build up the pointers that
9371 we stripped off while looking for the inner type. Similarly for
9372 return values from functions.
9374 The argument TYPE is the top of the chain, and BOTTOM is the
9375 new type which we will point to. */
9378 reconstruct_complex_type (tree type
, tree bottom
)
9382 if (TREE_CODE (type
) == POINTER_TYPE
)
9384 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9385 outer
= build_pointer_type_for_mode (inner
, TYPE_MODE (type
),
9386 TYPE_REF_CAN_ALIAS_ALL (type
));
9388 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
9390 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9391 outer
= build_reference_type_for_mode (inner
, TYPE_MODE (type
),
9392 TYPE_REF_CAN_ALIAS_ALL (type
));
9394 else if (TREE_CODE (type
) == ARRAY_TYPE
)
9396 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9397 outer
= build_array_type (inner
, TYPE_DOMAIN (type
));
9399 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
9401 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9402 outer
= build_function_type (inner
, TYPE_ARG_TYPES (type
));
9404 else if (TREE_CODE (type
) == METHOD_TYPE
)
9406 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9407 /* The build_method_type_directly() routine prepends 'this' to argument list,
9408 so we must compensate by getting rid of it. */
9410 = build_method_type_directly
9411 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type
))),
9413 TREE_CHAIN (TYPE_ARG_TYPES (type
)));
9415 else if (TREE_CODE (type
) == OFFSET_TYPE
)
9417 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9418 outer
= build_offset_type (TYPE_OFFSET_BASETYPE (type
), inner
);
9423 return build_type_attribute_qual_variant (outer
, TYPE_ATTRIBUTES (type
),
9427 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
9430 build_vector_type_for_mode (tree innertype
, enum machine_mode mode
)
9434 switch (GET_MODE_CLASS (mode
))
9436 case MODE_VECTOR_INT
:
9437 case MODE_VECTOR_FLOAT
:
9438 case MODE_VECTOR_FRACT
:
9439 case MODE_VECTOR_UFRACT
:
9440 case MODE_VECTOR_ACCUM
:
9441 case MODE_VECTOR_UACCUM
:
9442 nunits
= GET_MODE_NUNITS (mode
);
9446 /* Check that there are no leftover bits. */
9447 gcc_assert (GET_MODE_BITSIZE (mode
)
9448 % TREE_INT_CST_LOW (TYPE_SIZE (innertype
)) == 0);
9450 nunits
= GET_MODE_BITSIZE (mode
)
9451 / TREE_INT_CST_LOW (TYPE_SIZE (innertype
));
9458 return make_vector_type (innertype
, nunits
, mode
);
9461 /* Similarly, but takes the inner type and number of units, which must be
9465 build_vector_type (tree innertype
, int nunits
)
9467 return make_vector_type (innertype
, nunits
, VOIDmode
);
9470 /* Similarly, but takes the inner type and number of units, which must be
9474 build_opaque_vector_type (tree innertype
, int nunits
)
9477 innertype
= build_distinct_type_copy (innertype
);
9478 t
= make_vector_type (innertype
, nunits
, VOIDmode
);
9479 TYPE_VECTOR_OPAQUE (t
) = true;
9484 /* Given an initializer INIT, return TRUE if INIT is zero or some
9485 aggregate of zeros. Otherwise return FALSE. */
9487 initializer_zerop (const_tree init
)
9493 switch (TREE_CODE (init
))
9496 return integer_zerop (init
);
9499 /* ??? Note that this is not correct for C4X float formats. There,
9500 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
9501 negative exponent. */
9502 return real_zerop (init
)
9503 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init
));
9506 return fixed_zerop (init
);
9509 return integer_zerop (init
)
9510 || (real_zerop (init
)
9511 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init
)))
9512 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init
))));
9515 for (elt
= TREE_VECTOR_CST_ELTS (init
); elt
; elt
= TREE_CHAIN (elt
))
9516 if (!initializer_zerop (TREE_VALUE (elt
)))
9522 unsigned HOST_WIDE_INT idx
;
9524 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init
), idx
, elt
)
9525 if (!initializer_zerop (elt
))
9534 /* We need to loop through all elements to handle cases like
9535 "\0" and "\0foobar". */
9536 for (i
= 0; i
< TREE_STRING_LENGTH (init
); ++i
)
9537 if (TREE_STRING_POINTER (init
)[i
] != '\0')
9548 /* Build an empty statement at location LOC. */
9551 build_empty_stmt (location_t loc
)
9553 tree t
= build1 (NOP_EXPR
, void_type_node
, size_zero_node
);
9554 SET_EXPR_LOCATION (t
, loc
);
9559 /* Build an OpenMP clause with code CODE. LOC is the location of the
9563 build_omp_clause (location_t loc
, enum omp_clause_code code
)
9568 length
= omp_clause_num_ops
[code
];
9569 size
= (sizeof (struct tree_omp_clause
) + (length
- 1) * sizeof (tree
));
9571 t
= ggc_alloc_tree_node (size
);
9572 memset (t
, 0, size
);
9573 TREE_SET_CODE (t
, OMP_CLAUSE
);
9574 OMP_CLAUSE_SET_CODE (t
, code
);
9575 OMP_CLAUSE_LOCATION (t
) = loc
;
9577 #ifdef GATHER_STATISTICS
9578 tree_node_counts
[(int) omp_clause_kind
]++;
9579 tree_node_sizes
[(int) omp_clause_kind
] += size
;
9585 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
9586 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
9587 Except for the CODE and operand count field, other storage for the
9588 object is initialized to zeros. */
9591 build_vl_exp_stat (enum tree_code code
, int len MEM_STAT_DECL
)
9594 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_exp
);
9596 gcc_assert (TREE_CODE_CLASS (code
) == tcc_vl_exp
);
9597 gcc_assert (len
>= 1);
9599 #ifdef GATHER_STATISTICS
9600 tree_node_counts
[(int) e_kind
]++;
9601 tree_node_sizes
[(int) e_kind
] += length
;
9604 t
= ggc_alloc_zone_cleared_tree_node_stat (&tree_zone
, length PASS_MEM_STAT
);
9606 TREE_SET_CODE (t
, code
);
9608 /* Can't use TREE_OPERAND to store the length because if checking is
9609 enabled, it will try to check the length before we store it. :-P */
9610 t
->exp
.operands
[0] = build_int_cst (sizetype
, len
);
9615 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9616 FN and a null static chain slot. NARGS is the number of call arguments
9617 which are specified as "..." arguments. */
9620 build_call_nary (tree return_type
, tree fn
, int nargs
, ...)
9624 va_start (args
, nargs
);
9625 ret
= build_call_valist (return_type
, fn
, nargs
, args
);
9630 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9631 FN and a null static chain slot. NARGS is the number of call arguments
9632 which are specified as a va_list ARGS. */
9635 build_call_valist (tree return_type
, tree fn
, int nargs
, va_list args
)
9640 t
= build_vl_exp (CALL_EXPR
, nargs
+ 3);
9641 TREE_TYPE (t
) = return_type
;
9642 CALL_EXPR_FN (t
) = fn
;
9643 CALL_EXPR_STATIC_CHAIN (t
) = NULL_TREE
;
9644 for (i
= 0; i
< nargs
; i
++)
9645 CALL_EXPR_ARG (t
, i
) = va_arg (args
, tree
);
9646 process_call_operands (t
);
9650 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
9651 FN and a null static chain slot. NARGS is the number of call arguments
9652 which are specified as a tree array ARGS. */
9655 build_call_array_loc (location_t loc
, tree return_type
, tree fn
,
9656 int nargs
, const tree
*args
)
9661 t
= build_vl_exp (CALL_EXPR
, nargs
+ 3);
9662 TREE_TYPE (t
) = return_type
;
9663 CALL_EXPR_FN (t
) = fn
;
9664 CALL_EXPR_STATIC_CHAIN (t
) = NULL_TREE
;
9665 for (i
= 0; i
< nargs
; i
++)
9666 CALL_EXPR_ARG (t
, i
) = args
[i
];
9667 process_call_operands (t
);
9668 SET_EXPR_LOCATION (t
, loc
);
9672 /* Like build_call_array, but takes a VEC. */
9675 build_call_vec (tree return_type
, tree fn
, VEC(tree
,gc
) *args
)
9680 ret
= build_vl_exp (CALL_EXPR
, VEC_length (tree
, args
) + 3);
9681 TREE_TYPE (ret
) = return_type
;
9682 CALL_EXPR_FN (ret
) = fn
;
9683 CALL_EXPR_STATIC_CHAIN (ret
) = NULL_TREE
;
9684 FOR_EACH_VEC_ELT (tree
, args
, ix
, t
)
9685 CALL_EXPR_ARG (ret
, ix
) = t
;
9686 process_call_operands (ret
);
9691 /* Returns true if it is possible to prove that the index of
9692 an array access REF (an ARRAY_REF expression) falls into the
9696 in_array_bounds_p (tree ref
)
9698 tree idx
= TREE_OPERAND (ref
, 1);
9701 if (TREE_CODE (idx
) != INTEGER_CST
)
9704 min
= array_ref_low_bound (ref
);
9705 max
= array_ref_up_bound (ref
);
9708 || TREE_CODE (min
) != INTEGER_CST
9709 || TREE_CODE (max
) != INTEGER_CST
)
9712 if (tree_int_cst_lt (idx
, min
)
9713 || tree_int_cst_lt (max
, idx
))
9719 /* Returns true if it is possible to prove that the range of
9720 an array access REF (an ARRAY_RANGE_REF expression) falls
9721 into the array bounds. */
9724 range_in_array_bounds_p (tree ref
)
9726 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (ref
));
9727 tree range_min
, range_max
, min
, max
;
9729 range_min
= TYPE_MIN_VALUE (domain_type
);
9730 range_max
= TYPE_MAX_VALUE (domain_type
);
9733 || TREE_CODE (range_min
) != INTEGER_CST
9734 || TREE_CODE (range_max
) != INTEGER_CST
)
9737 min
= array_ref_low_bound (ref
);
9738 max
= array_ref_up_bound (ref
);
9741 || TREE_CODE (min
) != INTEGER_CST
9742 || TREE_CODE (max
) != INTEGER_CST
)
9745 if (tree_int_cst_lt (range_min
, min
)
9746 || tree_int_cst_lt (max
, range_max
))
9752 /* Return true if T (assumed to be a DECL) must be assigned a memory
9756 needs_to_live_in_memory (const_tree t
)
9758 if (TREE_CODE (t
) == SSA_NAME
)
9759 t
= SSA_NAME_VAR (t
);
9761 return (TREE_ADDRESSABLE (t
)
9762 || is_global_var (t
)
9763 || (TREE_CODE (t
) == RESULT_DECL
9764 && !DECL_BY_REFERENCE (t
)
9765 && aggregate_value_p (t
, current_function_decl
)));
9768 /* There are situations in which a language considers record types
9769 compatible which have different field lists. Decide if two fields
9770 are compatible. It is assumed that the parent records are compatible. */
9773 fields_compatible_p (const_tree f1
, const_tree f2
)
9775 if (!operand_equal_p (DECL_FIELD_BIT_OFFSET (f1
),
9776 DECL_FIELD_BIT_OFFSET (f2
), OEP_ONLY_CONST
))
9779 if (!operand_equal_p (DECL_FIELD_OFFSET (f1
),
9780 DECL_FIELD_OFFSET (f2
), OEP_ONLY_CONST
))
9783 if (!types_compatible_p (TREE_TYPE (f1
), TREE_TYPE (f2
)))
9789 /* Locate within RECORD a field that is compatible with ORIG_FIELD. */
9792 find_compatible_field (tree record
, tree orig_field
)
9796 for (f
= TYPE_FIELDS (record
); f
; f
= TREE_CHAIN (f
))
9797 if (TREE_CODE (f
) == FIELD_DECL
9798 && fields_compatible_p (f
, orig_field
))
9801 /* ??? Why isn't this on the main fields list? */
9802 f
= TYPE_VFIELD (record
);
9803 if (f
&& TREE_CODE (f
) == FIELD_DECL
9804 && fields_compatible_p (f
, orig_field
))
9807 /* ??? We should abort here, but Java appears to do Bad Things
9808 with inherited fields. */
9812 /* Return value of a constant X and sign-extend it. */
9815 int_cst_value (const_tree x
)
9817 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
9818 unsigned HOST_WIDE_INT val
= TREE_INT_CST_LOW (x
);
9820 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
9821 gcc_assert (TREE_INT_CST_HIGH (x
) == 0
9822 || TREE_INT_CST_HIGH (x
) == -1);
9824 if (bits
< HOST_BITS_PER_WIDE_INT
)
9826 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
9828 val
|= (~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1;
9830 val
&= ~((~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1);
9836 /* Return value of a constant X and sign-extend it. */
9839 widest_int_cst_value (const_tree x
)
9841 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
9842 unsigned HOST_WIDEST_INT val
= TREE_INT_CST_LOW (x
);
9844 #if HOST_BITS_PER_WIDEST_INT > HOST_BITS_PER_WIDE_INT
9845 gcc_assert (HOST_BITS_PER_WIDEST_INT
>= 2 * HOST_BITS_PER_WIDE_INT
);
9846 val
|= (((unsigned HOST_WIDEST_INT
) TREE_INT_CST_HIGH (x
))
9847 << HOST_BITS_PER_WIDE_INT
);
9849 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
9850 gcc_assert (TREE_INT_CST_HIGH (x
) == 0
9851 || TREE_INT_CST_HIGH (x
) == -1);
9854 if (bits
< HOST_BITS_PER_WIDEST_INT
)
9856 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
9858 val
|= (~(unsigned HOST_WIDEST_INT
) 0) << (bits
- 1) << 1;
9860 val
&= ~((~(unsigned HOST_WIDEST_INT
) 0) << (bits
- 1) << 1);
9866 /* If TYPE is an integral type, return an equivalent type which is
9867 unsigned iff UNSIGNEDP is true. If TYPE is not an integral type,
9868 return TYPE itself. */
9871 signed_or_unsigned_type_for (int unsignedp
, tree type
)
9874 if (POINTER_TYPE_P (type
))
9876 /* If the pointer points to the normal address space, use the
9877 size_type_node. Otherwise use an appropriate size for the pointer
9878 based on the named address space it points to. */
9879 if (!TYPE_ADDR_SPACE (TREE_TYPE (t
)))
9882 return lang_hooks
.types
.type_for_size (TYPE_PRECISION (t
), unsignedp
);
9885 if (!INTEGRAL_TYPE_P (t
) || TYPE_UNSIGNED (t
) == unsignedp
)
9888 return lang_hooks
.types
.type_for_size (TYPE_PRECISION (t
), unsignedp
);
9891 /* Returns unsigned variant of TYPE. */
9894 unsigned_type_for (tree type
)
9896 return signed_or_unsigned_type_for (1, type
);
9899 /* Returns signed variant of TYPE. */
9902 signed_type_for (tree type
)
9904 return signed_or_unsigned_type_for (0, type
);
9907 /* Returns the largest value obtainable by casting something in INNER type to
9911 upper_bound_in_type (tree outer
, tree inner
)
9913 unsigned HOST_WIDE_INT lo
, hi
;
9914 unsigned int det
= 0;
9915 unsigned oprec
= TYPE_PRECISION (outer
);
9916 unsigned iprec
= TYPE_PRECISION (inner
);
9919 /* Compute a unique number for every combination. */
9920 det
|= (oprec
> iprec
) ? 4 : 0;
9921 det
|= TYPE_UNSIGNED (outer
) ? 2 : 0;
9922 det
|= TYPE_UNSIGNED (inner
) ? 1 : 0;
9924 /* Determine the exponent to use. */
9929 /* oprec <= iprec, outer: signed, inner: don't care. */
9934 /* oprec <= iprec, outer: unsigned, inner: don't care. */
9938 /* oprec > iprec, outer: signed, inner: signed. */
9942 /* oprec > iprec, outer: signed, inner: unsigned. */
9946 /* oprec > iprec, outer: unsigned, inner: signed. */
9950 /* oprec > iprec, outer: unsigned, inner: unsigned. */
9957 /* Compute 2^^prec - 1. */
9958 if (prec
<= HOST_BITS_PER_WIDE_INT
)
9961 lo
= ((~(unsigned HOST_WIDE_INT
) 0)
9962 >> (HOST_BITS_PER_WIDE_INT
- prec
));
9966 hi
= ((~(unsigned HOST_WIDE_INT
) 0)
9967 >> (2 * HOST_BITS_PER_WIDE_INT
- prec
));
9968 lo
= ~(unsigned HOST_WIDE_INT
) 0;
9971 return build_int_cst_wide (outer
, lo
, hi
);
9974 /* Returns the smallest value obtainable by casting something in INNER type to
9978 lower_bound_in_type (tree outer
, tree inner
)
9980 unsigned HOST_WIDE_INT lo
, hi
;
9981 unsigned oprec
= TYPE_PRECISION (outer
);
9982 unsigned iprec
= TYPE_PRECISION (inner
);
9984 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
9986 if (TYPE_UNSIGNED (outer
)
9987 /* If we are widening something of an unsigned type, OUTER type
9988 contains all values of INNER type. In particular, both INNER
9989 and OUTER types have zero in common. */
9990 || (oprec
> iprec
&& TYPE_UNSIGNED (inner
)))
9994 /* If we are widening a signed type to another signed type, we
9995 want to obtain -2^^(iprec-1). If we are keeping the
9996 precision or narrowing to a signed type, we want to obtain
9998 unsigned prec
= oprec
> iprec
? iprec
: oprec
;
10000 if (prec
<= HOST_BITS_PER_WIDE_INT
)
10002 hi
= ~(unsigned HOST_WIDE_INT
) 0;
10003 lo
= (~(unsigned HOST_WIDE_INT
) 0) << (prec
- 1);
10007 hi
= ((~(unsigned HOST_WIDE_INT
) 0)
10008 << (prec
- HOST_BITS_PER_WIDE_INT
- 1));
10013 return build_int_cst_wide (outer
, lo
, hi
);
10016 /* Return nonzero if two operands that are suitable for PHI nodes are
10017 necessarily equal. Specifically, both ARG0 and ARG1 must be either
10018 SSA_NAME or invariant. Note that this is strictly an optimization.
10019 That is, callers of this function can directly call operand_equal_p
10020 and get the same result, only slower. */
10023 operand_equal_for_phi_arg_p (const_tree arg0
, const_tree arg1
)
10027 if (TREE_CODE (arg0
) == SSA_NAME
|| TREE_CODE (arg1
) == SSA_NAME
)
10029 return operand_equal_p (arg0
, arg1
, 0);
10032 /* Returns number of zeros at the end of binary representation of X.
10034 ??? Use ffs if available? */
10037 num_ending_zeros (const_tree x
)
10039 unsigned HOST_WIDE_INT fr
, nfr
;
10040 unsigned num
, abits
;
10041 tree type
= TREE_TYPE (x
);
10043 if (TREE_INT_CST_LOW (x
) == 0)
10045 num
= HOST_BITS_PER_WIDE_INT
;
10046 fr
= TREE_INT_CST_HIGH (x
);
10051 fr
= TREE_INT_CST_LOW (x
);
10054 for (abits
= HOST_BITS_PER_WIDE_INT
/ 2; abits
; abits
/= 2)
10057 if (nfr
<< abits
== fr
)
10064 if (num
> TYPE_PRECISION (type
))
10065 num
= TYPE_PRECISION (type
);
10067 return build_int_cst_type (type
, num
);
10071 #define WALK_SUBTREE(NODE) \
10074 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
10080 /* This is a subroutine of walk_tree that walks field of TYPE that are to
10081 be walked whenever a type is seen in the tree. Rest of operands and return
10082 value are as for walk_tree. */
10085 walk_type_fields (tree type
, walk_tree_fn func
, void *data
,
10086 struct pointer_set_t
*pset
, walk_tree_lh lh
)
10088 tree result
= NULL_TREE
;
10090 switch (TREE_CODE (type
))
10093 case REFERENCE_TYPE
:
10094 /* We have to worry about mutually recursive pointers. These can't
10095 be written in C. They can in Ada. It's pathological, but
10096 there's an ACATS test (c38102a) that checks it. Deal with this
10097 by checking if we're pointing to another pointer, that one
10098 points to another pointer, that one does too, and we have no htab.
10099 If so, get a hash table. We check three levels deep to avoid
10100 the cost of the hash table if we don't need one. */
10101 if (POINTER_TYPE_P (TREE_TYPE (type
))
10102 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type
)))
10103 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type
))))
10106 result
= walk_tree_without_duplicates (&TREE_TYPE (type
),
10114 /* ... fall through ... */
10117 WALK_SUBTREE (TREE_TYPE (type
));
10121 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type
));
10123 /* Fall through. */
10125 case FUNCTION_TYPE
:
10126 WALK_SUBTREE (TREE_TYPE (type
));
10130 /* We never want to walk into default arguments. */
10131 for (arg
= TYPE_ARG_TYPES (type
); arg
; arg
= TREE_CHAIN (arg
))
10132 WALK_SUBTREE (TREE_VALUE (arg
));
10137 /* Don't follow this nodes's type if a pointer for fear that
10138 we'll have infinite recursion. If we have a PSET, then we
10141 || (!POINTER_TYPE_P (TREE_TYPE (type
))
10142 && TREE_CODE (TREE_TYPE (type
)) != OFFSET_TYPE
))
10143 WALK_SUBTREE (TREE_TYPE (type
));
10144 WALK_SUBTREE (TYPE_DOMAIN (type
));
10148 WALK_SUBTREE (TREE_TYPE (type
));
10149 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type
));
10159 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
10160 called with the DATA and the address of each sub-tree. If FUNC returns a
10161 non-NULL value, the traversal is stopped, and the value returned by FUNC
10162 is returned. If PSET is non-NULL it is used to record the nodes visited,
10163 and to avoid visiting a node more than once. */
10166 walk_tree_1 (tree
*tp
, walk_tree_fn func
, void *data
,
10167 struct pointer_set_t
*pset
, walk_tree_lh lh
)
10169 enum tree_code code
;
10173 #define WALK_SUBTREE_TAIL(NODE) \
10177 goto tail_recurse; \
10182 /* Skip empty subtrees. */
10186 /* Don't walk the same tree twice, if the user has requested
10187 that we avoid doing so. */
10188 if (pset
&& pointer_set_insert (pset
, *tp
))
10191 /* Call the function. */
10193 result
= (*func
) (tp
, &walk_subtrees
, data
);
10195 /* If we found something, return it. */
10199 code
= TREE_CODE (*tp
);
10201 /* Even if we didn't, FUNC may have decided that there was nothing
10202 interesting below this point in the tree. */
10203 if (!walk_subtrees
)
10205 /* But we still need to check our siblings. */
10206 if (code
== TREE_LIST
)
10207 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
10208 else if (code
== OMP_CLAUSE
)
10209 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10216 result
= (*lh
) (tp
, &walk_subtrees
, func
, data
, pset
);
10217 if (result
|| !walk_subtrees
)
10224 case IDENTIFIER_NODE
:
10231 case PLACEHOLDER_EXPR
:
10235 /* None of these have subtrees other than those already walked
10240 WALK_SUBTREE (TREE_VALUE (*tp
));
10241 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
10246 int len
= TREE_VEC_LENGTH (*tp
);
10251 /* Walk all elements but the first. */
10253 WALK_SUBTREE (TREE_VEC_ELT (*tp
, len
));
10255 /* Now walk the first one as a tail call. */
10256 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp
, 0));
10260 WALK_SUBTREE (TREE_REALPART (*tp
));
10261 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp
));
10265 unsigned HOST_WIDE_INT idx
;
10266 constructor_elt
*ce
;
10269 VEC_iterate(constructor_elt
, CONSTRUCTOR_ELTS (*tp
), idx
, ce
);
10271 WALK_SUBTREE (ce
->value
);
10276 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, 0));
10281 for (decl
= BIND_EXPR_VARS (*tp
); decl
; decl
= DECL_CHAIN (decl
))
10283 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
10284 into declarations that are just mentioned, rather than
10285 declared; they don't really belong to this part of the tree.
10286 And, we can see cycles: the initializer for a declaration
10287 can refer to the declaration itself. */
10288 WALK_SUBTREE (DECL_INITIAL (decl
));
10289 WALK_SUBTREE (DECL_SIZE (decl
));
10290 WALK_SUBTREE (DECL_SIZE_UNIT (decl
));
10292 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp
));
10295 case STATEMENT_LIST
:
10297 tree_stmt_iterator i
;
10298 for (i
= tsi_start (*tp
); !tsi_end_p (i
); tsi_next (&i
))
10299 WALK_SUBTREE (*tsi_stmt_ptr (i
));
10304 switch (OMP_CLAUSE_CODE (*tp
))
10306 case OMP_CLAUSE_PRIVATE
:
10307 case OMP_CLAUSE_SHARED
:
10308 case OMP_CLAUSE_FIRSTPRIVATE
:
10309 case OMP_CLAUSE_COPYIN
:
10310 case OMP_CLAUSE_COPYPRIVATE
:
10311 case OMP_CLAUSE_IF
:
10312 case OMP_CLAUSE_NUM_THREADS
:
10313 case OMP_CLAUSE_SCHEDULE
:
10314 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 0));
10317 case OMP_CLAUSE_NOWAIT
:
10318 case OMP_CLAUSE_ORDERED
:
10319 case OMP_CLAUSE_DEFAULT
:
10320 case OMP_CLAUSE_UNTIED
:
10321 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10323 case OMP_CLAUSE_LASTPRIVATE
:
10324 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
10325 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp
));
10326 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10328 case OMP_CLAUSE_COLLAPSE
:
10331 for (i
= 0; i
< 3; i
++)
10332 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
10333 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10336 case OMP_CLAUSE_REDUCTION
:
10339 for (i
= 0; i
< 4; i
++)
10340 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
10341 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10345 gcc_unreachable ();
10353 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
10354 But, we only want to walk once. */
10355 len
= (TREE_OPERAND (*tp
, 3) == TREE_OPERAND (*tp
, 1)) ? 2 : 3;
10356 for (i
= 0; i
< len
; ++i
)
10357 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
10358 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
));
10362 /* If this is a TYPE_DECL, walk into the fields of the type that it's
10363 defining. We only want to walk into these fields of a type in this
10364 case and not in the general case of a mere reference to the type.
10366 The criterion is as follows: if the field can be an expression, it
10367 must be walked only here. This should be in keeping with the fields
10368 that are directly gimplified in gimplify_type_sizes in order for the
10369 mark/copy-if-shared/unmark machinery of the gimplifier to work with
10370 variable-sized types.
10372 Note that DECLs get walked as part of processing the BIND_EXPR. */
10373 if (TREE_CODE (DECL_EXPR_DECL (*tp
)) == TYPE_DECL
)
10375 tree
*type_p
= &TREE_TYPE (DECL_EXPR_DECL (*tp
));
10376 if (TREE_CODE (*type_p
) == ERROR_MARK
)
10379 /* Call the function for the type. See if it returns anything or
10380 doesn't want us to continue. If we are to continue, walk both
10381 the normal fields and those for the declaration case. */
10382 result
= (*func
) (type_p
, &walk_subtrees
, data
);
10383 if (result
|| !walk_subtrees
)
10386 result
= walk_type_fields (*type_p
, func
, data
, pset
, lh
);
10390 /* If this is a record type, also walk the fields. */
10391 if (RECORD_OR_UNION_TYPE_P (*type_p
))
10395 for (field
= TYPE_FIELDS (*type_p
); field
;
10396 field
= DECL_CHAIN (field
))
10398 /* We'd like to look at the type of the field, but we can
10399 easily get infinite recursion. So assume it's pointed
10400 to elsewhere in the tree. Also, ignore things that
10402 if (TREE_CODE (field
) != FIELD_DECL
)
10405 WALK_SUBTREE (DECL_FIELD_OFFSET (field
));
10406 WALK_SUBTREE (DECL_SIZE (field
));
10407 WALK_SUBTREE (DECL_SIZE_UNIT (field
));
10408 if (TREE_CODE (*type_p
) == QUAL_UNION_TYPE
)
10409 WALK_SUBTREE (DECL_QUALIFIER (field
));
10413 /* Same for scalar types. */
10414 else if (TREE_CODE (*type_p
) == BOOLEAN_TYPE
10415 || TREE_CODE (*type_p
) == ENUMERAL_TYPE
10416 || TREE_CODE (*type_p
) == INTEGER_TYPE
10417 || TREE_CODE (*type_p
) == FIXED_POINT_TYPE
10418 || TREE_CODE (*type_p
) == REAL_TYPE
)
10420 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p
));
10421 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p
));
10424 WALK_SUBTREE (TYPE_SIZE (*type_p
));
10425 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p
));
10430 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code
)))
10434 /* Walk over all the sub-trees of this operand. */
10435 len
= TREE_OPERAND_LENGTH (*tp
);
10437 /* Go through the subtrees. We need to do this in forward order so
10438 that the scope of a FOR_EXPR is handled properly. */
10441 for (i
= 0; i
< len
- 1; ++i
)
10442 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
10443 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
- 1));
10446 /* If this is a type, walk the needed fields in the type. */
10447 else if (TYPE_P (*tp
))
10448 return walk_type_fields (*tp
, func
, data
, pset
, lh
);
10452 /* We didn't find what we were looking for. */
10455 #undef WALK_SUBTREE_TAIL
10457 #undef WALK_SUBTREE
10459 /* Like walk_tree, but does not walk duplicate nodes more than once. */
10462 walk_tree_without_duplicates_1 (tree
*tp
, walk_tree_fn func
, void *data
,
10466 struct pointer_set_t
*pset
;
10468 pset
= pointer_set_create ();
10469 result
= walk_tree_1 (tp
, func
, data
, pset
, lh
);
10470 pointer_set_destroy (pset
);
10476 tree_block (tree t
)
10478 char const c
= TREE_CODE_CLASS (TREE_CODE (t
));
10480 if (IS_EXPR_CODE_CLASS (c
))
10481 return &t
->exp
.block
;
10482 gcc_unreachable ();
10486 /* Create a nameless artificial label and put it in the current
10487 function context. The label has a location of LOC. Returns the
10488 newly created label. */
10491 create_artificial_label (location_t loc
)
10493 tree lab
= build_decl (loc
,
10494 LABEL_DECL
, NULL_TREE
, void_type_node
);
10496 DECL_ARTIFICIAL (lab
) = 1;
10497 DECL_IGNORED_P (lab
) = 1;
10498 DECL_CONTEXT (lab
) = current_function_decl
;
10502 /* Given a tree, try to return a useful variable name that we can use
10503 to prefix a temporary that is being assigned the value of the tree.
10504 I.E. given <temp> = &A, return A. */
10509 tree stripped_decl
;
10512 STRIP_NOPS (stripped_decl
);
10513 if (DECL_P (stripped_decl
) && DECL_NAME (stripped_decl
))
10514 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl
));
10517 switch (TREE_CODE (stripped_decl
))
10520 return get_name (TREE_OPERAND (stripped_decl
, 0));
10527 /* Return true if TYPE has a variable argument list. */
10530 stdarg_p (const_tree fntype
)
10532 function_args_iterator args_iter
;
10533 tree n
= NULL_TREE
, t
;
10538 FOREACH_FUNCTION_ARGS(fntype
, t
, args_iter
)
10543 return n
!= NULL_TREE
&& n
!= void_type_node
;
10546 /* Return true if TYPE has a prototype. */
10549 prototype_p (tree fntype
)
10553 gcc_assert (fntype
!= NULL_TREE
);
10555 t
= TYPE_ARG_TYPES (fntype
);
10556 return (t
!= NULL_TREE
);
10559 /* If BLOCK is inlined from an __attribute__((__artificial__))
10560 routine, return pointer to location from where it has been
10563 block_nonartificial_location (tree block
)
10565 location_t
*ret
= NULL
;
10567 while (block
&& TREE_CODE (block
) == BLOCK
10568 && BLOCK_ABSTRACT_ORIGIN (block
))
10570 tree ao
= BLOCK_ABSTRACT_ORIGIN (block
);
10572 while (TREE_CODE (ao
) == BLOCK
10573 && BLOCK_ABSTRACT_ORIGIN (ao
)
10574 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
10575 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
10577 if (TREE_CODE (ao
) == FUNCTION_DECL
)
10579 /* If AO is an artificial inline, point RET to the
10580 call site locus at which it has been inlined and continue
10581 the loop, in case AO's caller is also an artificial
10583 if (DECL_DECLARED_INLINE_P (ao
)
10584 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao
)))
10585 ret
= &BLOCK_SOURCE_LOCATION (block
);
10589 else if (TREE_CODE (ao
) != BLOCK
)
10592 block
= BLOCK_SUPERCONTEXT (block
);
10598 /* If EXP is inlined from an __attribute__((__artificial__))
10599 function, return the location of the original call expression. */
10602 tree_nonartificial_location (tree exp
)
10604 location_t
*loc
= block_nonartificial_location (TREE_BLOCK (exp
));
10609 return EXPR_LOCATION (exp
);
10613 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
10616 /* Return the hash code code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
10619 cl_option_hash_hash (const void *x
)
10621 const_tree
const t
= (const_tree
) x
;
10625 hashval_t hash
= 0;
10627 if (TREE_CODE (t
) == OPTIMIZATION_NODE
)
10629 p
= (const char *)TREE_OPTIMIZATION (t
);
10630 len
= sizeof (struct cl_optimization
);
10633 else if (TREE_CODE (t
) == TARGET_OPTION_NODE
)
10635 p
= (const char *)TREE_TARGET_OPTION (t
);
10636 len
= sizeof (struct cl_target_option
);
10640 gcc_unreachable ();
10642 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
10644 for (i
= 0; i
< len
; i
++)
10646 hash
= (hash
<< 4) ^ ((i
<< 2) | p
[i
]);
10651 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
10652 TARGET_OPTION tree node) is the same as that given by *Y, which is the
10656 cl_option_hash_eq (const void *x
, const void *y
)
10658 const_tree
const xt
= (const_tree
) x
;
10659 const_tree
const yt
= (const_tree
) y
;
10664 if (TREE_CODE (xt
) != TREE_CODE (yt
))
10667 if (TREE_CODE (xt
) == OPTIMIZATION_NODE
)
10669 xp
= (const char *)TREE_OPTIMIZATION (xt
);
10670 yp
= (const char *)TREE_OPTIMIZATION (yt
);
10671 len
= sizeof (struct cl_optimization
);
10674 else if (TREE_CODE (xt
) == TARGET_OPTION_NODE
)
10676 xp
= (const char *)TREE_TARGET_OPTION (xt
);
10677 yp
= (const char *)TREE_TARGET_OPTION (yt
);
10678 len
= sizeof (struct cl_target_option
);
10682 gcc_unreachable ();
10684 return (memcmp (xp
, yp
, len
) == 0);
10687 /* Build an OPTIMIZATION_NODE based on the current options. */
10690 build_optimization_node (void)
10695 /* Use the cache of optimization nodes. */
10697 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node
),
10700 slot
= htab_find_slot (cl_option_hash_table
, cl_optimization_node
, INSERT
);
10704 /* Insert this one into the hash table. */
10705 t
= cl_optimization_node
;
10708 /* Make a new node for next time round. */
10709 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
10715 /* Build a TARGET_OPTION_NODE based on the current options. */
10718 build_target_option_node (void)
10723 /* Use the cache of optimization nodes. */
10725 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node
),
10728 slot
= htab_find_slot (cl_option_hash_table
, cl_target_option_node
, INSERT
);
10732 /* Insert this one into the hash table. */
10733 t
= cl_target_option_node
;
10736 /* Make a new node for next time round. */
10737 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
10743 /* Determine the "ultimate origin" of a block. The block may be an inlined
10744 instance of an inlined instance of a block which is local to an inline
10745 function, so we have to trace all of the way back through the origin chain
10746 to find out what sort of node actually served as the original seed for the
10750 block_ultimate_origin (const_tree block
)
10752 tree immediate_origin
= BLOCK_ABSTRACT_ORIGIN (block
);
10754 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
10755 nodes in the function to point to themselves; ignore that if
10756 we're trying to output the abstract instance of this function. */
10757 if (BLOCK_ABSTRACT (block
) && immediate_origin
== block
)
10760 if (immediate_origin
== NULL_TREE
)
10765 tree lookahead
= immediate_origin
;
10769 ret_val
= lookahead
;
10770 lookahead
= (TREE_CODE (ret_val
) == BLOCK
10771 ? BLOCK_ABSTRACT_ORIGIN (ret_val
) : NULL
);
10773 while (lookahead
!= NULL
&& lookahead
!= ret_val
);
10775 /* The block's abstract origin chain may not be the *ultimate* origin of
10776 the block. It could lead to a DECL that has an abstract origin set.
10777 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
10778 will give us if it has one). Note that DECL's abstract origins are
10779 supposed to be the most distant ancestor (or so decl_ultimate_origin
10780 claims), so we don't need to loop following the DECL origins. */
10781 if (DECL_P (ret_val
))
10782 return DECL_ORIGIN (ret_val
);
10788 /* Return true if T1 and T2 are equivalent lists. */
10791 list_equal_p (const_tree t1
, const_tree t2
)
10793 for (; t1
&& t2
; t1
= TREE_CHAIN (t1
) , t2
= TREE_CHAIN (t2
))
10794 if (TREE_VALUE (t1
) != TREE_VALUE (t2
))
10799 /* Return true iff conversion in EXP generates no instruction. Mark
10800 it inline so that we fully inline into the stripping functions even
10801 though we have two uses of this function. */
10804 tree_nop_conversion (const_tree exp
)
10806 tree outer_type
, inner_type
;
10808 if (!CONVERT_EXPR_P (exp
)
10809 && TREE_CODE (exp
) != NON_LVALUE_EXPR
)
10811 if (TREE_OPERAND (exp
, 0) == error_mark_node
)
10814 outer_type
= TREE_TYPE (exp
);
10815 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
10820 /* Use precision rather then machine mode when we can, which gives
10821 the correct answer even for submode (bit-field) types. */
10822 if ((INTEGRAL_TYPE_P (outer_type
)
10823 || POINTER_TYPE_P (outer_type
)
10824 || TREE_CODE (outer_type
) == OFFSET_TYPE
)
10825 && (INTEGRAL_TYPE_P (inner_type
)
10826 || POINTER_TYPE_P (inner_type
)
10827 || TREE_CODE (inner_type
) == OFFSET_TYPE
))
10828 return TYPE_PRECISION (outer_type
) == TYPE_PRECISION (inner_type
);
10830 /* Otherwise fall back on comparing machine modes (e.g. for
10831 aggregate types, floats). */
10832 return TYPE_MODE (outer_type
) == TYPE_MODE (inner_type
);
10835 /* Return true iff conversion in EXP generates no instruction. Don't
10836 consider conversions changing the signedness. */
10839 tree_sign_nop_conversion (const_tree exp
)
10841 tree outer_type
, inner_type
;
10843 if (!tree_nop_conversion (exp
))
10846 outer_type
= TREE_TYPE (exp
);
10847 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
10849 return (TYPE_UNSIGNED (outer_type
) == TYPE_UNSIGNED (inner_type
)
10850 && POINTER_TYPE_P (outer_type
) == POINTER_TYPE_P (inner_type
));
10853 /* Strip conversions from EXP according to tree_nop_conversion and
10854 return the resulting expression. */
10857 tree_strip_nop_conversions (tree exp
)
10859 while (tree_nop_conversion (exp
))
10860 exp
= TREE_OPERAND (exp
, 0);
10864 /* Strip conversions from EXP according to tree_sign_nop_conversion
10865 and return the resulting expression. */
10868 tree_strip_sign_nop_conversions (tree exp
)
10870 while (tree_sign_nop_conversion (exp
))
10871 exp
= TREE_OPERAND (exp
, 0);
10875 static GTY(()) tree gcc_eh_personality_decl
;
10877 /* Return the GCC personality function decl. */
10880 lhd_gcc_personality (void)
10882 if (!gcc_eh_personality_decl
)
10883 gcc_eh_personality_decl
= build_personality_function ("gcc");
10884 return gcc_eh_personality_decl
;
10887 /* Try to find a base info of BINFO that would have its field decl at offset
10888 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
10889 found, return, otherwise return NULL_TREE. */
10892 get_binfo_at_offset (tree binfo
, HOST_WIDE_INT offset
, tree expected_type
)
10896 type
= TREE_TYPE (binfo
);
10899 tree base_binfo
, found_binfo
;
10900 HOST_WIDE_INT pos
, size
;
10904 if (TREE_CODE (type
) != RECORD_TYPE
)
10907 for (fld
= TYPE_FIELDS (type
); fld
; fld
= DECL_CHAIN (fld
))
10909 if (TREE_CODE (fld
) != FIELD_DECL
)
10912 pos
= int_bit_position (fld
);
10913 size
= tree_low_cst (DECL_SIZE (fld
), 1);
10914 if (pos
<= offset
&& (pos
+ size
) > offset
)
10920 found_binfo
= NULL_TREE
;
10921 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
10922 if (TREE_TYPE (base_binfo
) == TREE_TYPE (fld
))
10924 found_binfo
= base_binfo
;
10931 type
= TREE_TYPE (fld
);
10932 binfo
= found_binfo
;
10935 if (type
!= expected_type
)
10940 /* Returns true if X is a typedef decl. */
10943 is_typedef_decl (tree x
)
10945 return (x
&& TREE_CODE (x
) == TYPE_DECL
10946 && DECL_ORIGINAL_TYPE (x
) != NULL_TREE
);
10949 /* Returns true iff TYPE is a type variant created for a typedef. */
10952 typedef_variant_p (tree type
)
10954 return is_typedef_decl (TYPE_NAME (type
));
10957 #include "gt-tree.h"