1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains the low level primitives for operating on tree nodes,
21 including allocation, list operations, interning of identifiers,
22 construction of data type nodes and statement nodes,
23 and construction of type conversion nodes. It also contains
24 tables index by tree code that describe how to take apart
27 It is intended to be language-independent, but occasionally
28 calls language-dependent routines defined (for C) in typecheck.c. */
32 #include "coretypes.h"
39 #include "toplev.h" /* get_random_seed */
42 #include "filenames.h"
45 #include "common/common-target.h"
46 #include "langhooks.h"
47 #include "tree-inline.h"
48 #include "tree-iterator.h"
49 #include "basic-block.h"
52 #include "gimple-iterator.h"
54 #include "gimple-ssa.h"
56 #include "tree-phinodes.h"
57 #include "tree-ssanames.h"
60 #include "pointer-set.h"
61 #include "tree-pass.h"
62 #include "langhooks-def.h"
63 #include "diagnostic.h"
64 #include "tree-diagnostic.h"
65 #include "tree-pretty-print.h"
70 /* Tree code classes. */
72 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
73 #define END_OF_BASE_TREE_CODES tcc_exceptional,
75 const enum tree_code_class tree_code_type
[] = {
76 #include "all-tree.def"
80 #undef END_OF_BASE_TREE_CODES
82 /* Table indexed by tree code giving number of expression
83 operands beyond the fixed part of the node structure.
84 Not used for types or decls. */
86 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
87 #define END_OF_BASE_TREE_CODES 0,
89 const unsigned char tree_code_length
[] = {
90 #include "all-tree.def"
94 #undef END_OF_BASE_TREE_CODES
96 /* Names of tree components.
97 Used for printing out the tree and error messages. */
98 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
99 #define END_OF_BASE_TREE_CODES "@dummy",
101 static const char *const tree_code_name
[] = {
102 #include "all-tree.def"
106 #undef END_OF_BASE_TREE_CODES
108 /* Each tree code class has an associated string representation.
109 These must correspond to the tree_code_class entries. */
111 const char *const tree_code_class_strings
[] =
126 /* obstack.[ch] explicitly declined to prototype this. */
127 extern int _obstack_allocated_p (struct obstack
*h
, void *obj
);
129 /* Statistics-gathering stuff. */
131 static int tree_code_counts
[MAX_TREE_CODES
];
132 int tree_node_counts
[(int) all_kinds
];
133 int tree_node_sizes
[(int) all_kinds
];
135 /* Keep in sync with tree.h:enum tree_node_kind. */
136 static const char * const tree_node_kind_names
[] = {
155 /* Unique id for next decl created. */
156 static GTY(()) int next_decl_uid
;
157 /* Unique id for next type created. */
158 static GTY(()) int next_type_uid
= 1;
159 /* Unique id for next debug decl created. Use negative numbers,
160 to catch erroneous uses. */
161 static GTY(()) int next_debug_decl_uid
;
163 /* Since we cannot rehash a type after it is in the table, we have to
164 keep the hash code. */
166 struct GTY(()) type_hash
{
171 /* Initial size of the hash table (rounded to next prime). */
172 #define TYPE_HASH_INITIAL_SIZE 1000
174 /* Now here is the hash table. When recording a type, it is added to
175 the slot whose index is the hash code. Note that the hash table is
176 used for several kinds of types (function types, array types and
177 array index range types, for now). While all these live in the
178 same table, they are completely independent, and the hash code is
179 computed differently for each of these. */
181 static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash
)))
182 htab_t type_hash_table
;
184 /* Hash table and temporary node for larger integer const values. */
185 static GTY (()) tree int_cst_node
;
186 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node
)))
187 htab_t int_cst_hash_table
;
189 /* Hash table for optimization flags and target option flags. Use the same
190 hash table for both sets of options. Nodes for building the current
191 optimization and target option nodes. The assumption is most of the time
192 the options created will already be in the hash table, so we avoid
193 allocating and freeing up a node repeatably. */
194 static GTY (()) tree cl_optimization_node
;
195 static GTY (()) tree cl_target_option_node
;
196 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node
)))
197 htab_t cl_option_hash_table
;
199 /* General tree->tree mapping structure for use in hash tables. */
202 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map
)))
203 htab_t debug_expr_for_decl
;
205 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map
)))
206 htab_t value_expr_for_decl
;
208 static GTY ((if_marked ("tree_vec_map_marked_p"), param_is (struct tree_vec_map
)))
209 htab_t debug_args_for_decl
;
211 static GTY ((if_marked ("tree_priority_map_marked_p"),
212 param_is (struct tree_priority_map
)))
213 htab_t init_priority_for_decl
;
215 static void set_type_quals (tree
, int);
216 static int type_hash_eq (const void *, const void *);
217 static hashval_t
type_hash_hash (const void *);
218 static hashval_t
int_cst_hash_hash (const void *);
219 static int int_cst_hash_eq (const void *, const void *);
220 static hashval_t
cl_option_hash_hash (const void *);
221 static int cl_option_hash_eq (const void *, const void *);
222 static void print_type_hash_statistics (void);
223 static void print_debug_expr_statistics (void);
224 static void print_value_expr_statistics (void);
225 static int type_hash_marked_p (const void *);
226 static unsigned int type_hash_list (const_tree
, hashval_t
);
227 static unsigned int attribute_hash_list (const_tree
, hashval_t
);
228 static bool decls_same_for_odr (tree decl1
, tree decl2
);
230 tree global_trees
[TI_MAX
];
231 tree integer_types
[itk_none
];
233 unsigned char tree_contains_struct
[MAX_TREE_CODES
][64];
235 /* Number of operands for each OpenMP clause. */
236 unsigned const char omp_clause_num_ops
[] =
238 0, /* OMP_CLAUSE_ERROR */
239 1, /* OMP_CLAUSE_PRIVATE */
240 1, /* OMP_CLAUSE_SHARED */
241 1, /* OMP_CLAUSE_FIRSTPRIVATE */
242 2, /* OMP_CLAUSE_LASTPRIVATE */
243 4, /* OMP_CLAUSE_REDUCTION */
244 1, /* OMP_CLAUSE_COPYIN */
245 1, /* OMP_CLAUSE_COPYPRIVATE */
246 2, /* OMP_CLAUSE_LINEAR */
247 2, /* OMP_CLAUSE_ALIGNED */
248 1, /* OMP_CLAUSE_DEPEND */
249 1, /* OMP_CLAUSE_UNIFORM */
250 2, /* OMP_CLAUSE_FROM */
251 2, /* OMP_CLAUSE_TO */
252 2, /* OMP_CLAUSE_MAP */
253 1, /* OMP_CLAUSE__LOOPTEMP_ */
254 1, /* OMP_CLAUSE_IF */
255 1, /* OMP_CLAUSE_NUM_THREADS */
256 1, /* OMP_CLAUSE_SCHEDULE */
257 0, /* OMP_CLAUSE_NOWAIT */
258 0, /* OMP_CLAUSE_ORDERED */
259 0, /* OMP_CLAUSE_DEFAULT */
260 3, /* OMP_CLAUSE_COLLAPSE */
261 0, /* OMP_CLAUSE_UNTIED */
262 1, /* OMP_CLAUSE_FINAL */
263 0, /* OMP_CLAUSE_MERGEABLE */
264 1, /* OMP_CLAUSE_DEVICE */
265 1, /* OMP_CLAUSE_DIST_SCHEDULE */
266 0, /* OMP_CLAUSE_INBRANCH */
267 0, /* OMP_CLAUSE_NOTINBRANCH */
268 1, /* OMP_CLAUSE_NUM_TEAMS */
269 1, /* OMP_CLAUSE_THREAD_LIMIT */
270 0, /* OMP_CLAUSE_PROC_BIND */
271 1, /* OMP_CLAUSE_SAFELEN */
272 1, /* OMP_CLAUSE_SIMDLEN */
273 0, /* OMP_CLAUSE_FOR */
274 0, /* OMP_CLAUSE_PARALLEL */
275 0, /* OMP_CLAUSE_SECTIONS */
276 0, /* OMP_CLAUSE_TASKGROUP */
277 1, /* OMP_CLAUSE__SIMDUID_ */
280 const char * const omp_clause_code_name
[] =
325 /* Return the tree node structure used by tree code CODE. */
327 static inline enum tree_node_structure_enum
328 tree_node_structure_for_code (enum tree_code code
)
330 switch (TREE_CODE_CLASS (code
))
332 case tcc_declaration
:
337 return TS_FIELD_DECL
;
343 return TS_LABEL_DECL
;
345 return TS_RESULT_DECL
;
346 case DEBUG_EXPR_DECL
:
349 return TS_CONST_DECL
;
353 return TS_FUNCTION_DECL
;
354 case TRANSLATION_UNIT_DECL
:
355 return TS_TRANSLATION_UNIT_DECL
;
357 return TS_DECL_NON_COMMON
;
361 return TS_TYPE_NON_COMMON
;
370 default: /* tcc_constant and tcc_exceptional */
375 /* tcc_constant cases. */
376 case INTEGER_CST
: return TS_INT_CST
;
377 case REAL_CST
: return TS_REAL_CST
;
378 case FIXED_CST
: return TS_FIXED_CST
;
379 case COMPLEX_CST
: return TS_COMPLEX
;
380 case VECTOR_CST
: return TS_VECTOR
;
381 case STRING_CST
: return TS_STRING
;
382 /* tcc_exceptional cases. */
383 case ERROR_MARK
: return TS_COMMON
;
384 case IDENTIFIER_NODE
: return TS_IDENTIFIER
;
385 case TREE_LIST
: return TS_LIST
;
386 case TREE_VEC
: return TS_VEC
;
387 case SSA_NAME
: return TS_SSA_NAME
;
388 case PLACEHOLDER_EXPR
: return TS_COMMON
;
389 case STATEMENT_LIST
: return TS_STATEMENT_LIST
;
390 case BLOCK
: return TS_BLOCK
;
391 case CONSTRUCTOR
: return TS_CONSTRUCTOR
;
392 case TREE_BINFO
: return TS_BINFO
;
393 case OMP_CLAUSE
: return TS_OMP_CLAUSE
;
394 case OPTIMIZATION_NODE
: return TS_OPTIMIZATION
;
395 case TARGET_OPTION_NODE
: return TS_TARGET_OPTION
;
403 /* Initialize tree_contains_struct to describe the hierarchy of tree
407 initialize_tree_contains_struct (void)
411 for (i
= ERROR_MARK
; i
< LAST_AND_UNUSED_TREE_CODE
; i
++)
414 enum tree_node_structure_enum ts_code
;
416 code
= (enum tree_code
) i
;
417 ts_code
= tree_node_structure_for_code (code
);
419 /* Mark the TS structure itself. */
420 tree_contains_struct
[code
][ts_code
] = 1;
422 /* Mark all the structures that TS is derived from. */
440 case TS_STATEMENT_LIST
:
441 MARK_TS_TYPED (code
);
445 case TS_DECL_MINIMAL
:
451 case TS_OPTIMIZATION
:
452 case TS_TARGET_OPTION
:
453 MARK_TS_COMMON (code
);
456 case TS_TYPE_WITH_LANG_SPECIFIC
:
457 MARK_TS_TYPE_COMMON (code
);
460 case TS_TYPE_NON_COMMON
:
461 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code
);
465 MARK_TS_DECL_MINIMAL (code
);
470 MARK_TS_DECL_COMMON (code
);
473 case TS_DECL_NON_COMMON
:
474 MARK_TS_DECL_WITH_VIS (code
);
477 case TS_DECL_WITH_VIS
:
481 MARK_TS_DECL_WRTL (code
);
485 MARK_TS_DECL_COMMON (code
);
489 MARK_TS_DECL_WITH_VIS (code
);
493 case TS_FUNCTION_DECL
:
494 MARK_TS_DECL_NON_COMMON (code
);
497 case TS_TRANSLATION_UNIT_DECL
:
498 MARK_TS_DECL_COMMON (code
);
506 /* Basic consistency checks for attributes used in fold. */
507 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_NON_COMMON
]);
508 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_NON_COMMON
]);
509 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_COMMON
]);
510 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_COMMON
]);
511 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_COMMON
]);
512 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_COMMON
]);
513 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_COMMON
]);
514 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_COMMON
]);
515 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_COMMON
]);
516 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_COMMON
]);
517 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_COMMON
]);
518 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WRTL
]);
519 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_WRTL
]);
520 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_WRTL
]);
521 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WRTL
]);
522 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_WRTL
]);
523 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_MINIMAL
]);
524 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_MINIMAL
]);
525 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_MINIMAL
]);
526 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_MINIMAL
]);
527 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_MINIMAL
]);
528 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_MINIMAL
]);
529 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_MINIMAL
]);
530 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_MINIMAL
]);
531 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_MINIMAL
]);
532 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WITH_VIS
]);
533 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WITH_VIS
]);
534 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_WITH_VIS
]);
535 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_VAR_DECL
]);
536 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_FIELD_DECL
]);
537 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_PARM_DECL
]);
538 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_LABEL_DECL
]);
539 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_RESULT_DECL
]);
540 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_CONST_DECL
]);
541 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_TYPE_DECL
]);
542 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_FUNCTION_DECL
]);
543 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_MINIMAL
]);
544 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_COMMON
]);
553 /* Initialize the hash table of types. */
554 type_hash_table
= htab_create_ggc (TYPE_HASH_INITIAL_SIZE
, type_hash_hash
,
557 debug_expr_for_decl
= htab_create_ggc (512, tree_decl_map_hash
,
558 tree_decl_map_eq
, 0);
560 value_expr_for_decl
= htab_create_ggc (512, tree_decl_map_hash
,
561 tree_decl_map_eq
, 0);
562 init_priority_for_decl
= htab_create_ggc (512, tree_priority_map_hash
,
563 tree_priority_map_eq
, 0);
565 int_cst_hash_table
= htab_create_ggc (1024, int_cst_hash_hash
,
566 int_cst_hash_eq
, NULL
);
568 int_cst_node
= make_node (INTEGER_CST
);
570 cl_option_hash_table
= htab_create_ggc (64, cl_option_hash_hash
,
571 cl_option_hash_eq
, NULL
);
573 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
574 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
576 /* Initialize the tree_contains_struct array. */
577 initialize_tree_contains_struct ();
578 lang_hooks
.init_ts ();
582 /* The name of the object as the assembler will see it (but before any
583 translations made by ASM_OUTPUT_LABELREF). Often this is the same
584 as DECL_NAME. It is an IDENTIFIER_NODE. */
586 decl_assembler_name (tree decl
)
588 if (!DECL_ASSEMBLER_NAME_SET_P (decl
))
589 lang_hooks
.set_decl_assembler_name (decl
);
590 return DECL_WITH_VIS_CHECK (decl
)->decl_with_vis
.assembler_name
;
593 /* Compute the number of bytes occupied by a tree with code CODE.
594 This function cannot be used for nodes that have variable sizes,
595 including TREE_VEC, STRING_CST, and CALL_EXPR. */
597 tree_code_size (enum tree_code code
)
599 switch (TREE_CODE_CLASS (code
))
601 case tcc_declaration
: /* A decl node */
606 return sizeof (struct tree_field_decl
);
608 return sizeof (struct tree_parm_decl
);
610 return sizeof (struct tree_var_decl
);
612 return sizeof (struct tree_label_decl
);
614 return sizeof (struct tree_result_decl
);
616 return sizeof (struct tree_const_decl
);
618 return sizeof (struct tree_type_decl
);
620 return sizeof (struct tree_function_decl
);
621 case DEBUG_EXPR_DECL
:
622 return sizeof (struct tree_decl_with_rtl
);
624 return sizeof (struct tree_decl_non_common
);
628 case tcc_type
: /* a type node */
629 return sizeof (struct tree_type_non_common
);
631 case tcc_reference
: /* a reference */
632 case tcc_expression
: /* an expression */
633 case tcc_statement
: /* an expression with side effects */
634 case tcc_comparison
: /* a comparison expression */
635 case tcc_unary
: /* a unary arithmetic expression */
636 case tcc_binary
: /* a binary arithmetic expression */
637 return (sizeof (struct tree_exp
)
638 + (TREE_CODE_LENGTH (code
) - 1) * sizeof (tree
));
640 case tcc_constant
: /* a constant */
643 case INTEGER_CST
: return sizeof (struct tree_int_cst
);
644 case REAL_CST
: return sizeof (struct tree_real_cst
);
645 case FIXED_CST
: return sizeof (struct tree_fixed_cst
);
646 case COMPLEX_CST
: return sizeof (struct tree_complex
);
647 case VECTOR_CST
: return sizeof (struct tree_vector
);
648 case STRING_CST
: gcc_unreachable ();
650 return lang_hooks
.tree_size (code
);
653 case tcc_exceptional
: /* something random, like an identifier. */
656 case IDENTIFIER_NODE
: return lang_hooks
.identifier_size
;
657 case TREE_LIST
: return sizeof (struct tree_list
);
660 case PLACEHOLDER_EXPR
: return sizeof (struct tree_common
);
663 case OMP_CLAUSE
: gcc_unreachable ();
665 case SSA_NAME
: return sizeof (struct tree_ssa_name
);
667 case STATEMENT_LIST
: return sizeof (struct tree_statement_list
);
668 case BLOCK
: return sizeof (struct tree_block
);
669 case CONSTRUCTOR
: return sizeof (struct tree_constructor
);
670 case OPTIMIZATION_NODE
: return sizeof (struct tree_optimization_option
);
671 case TARGET_OPTION_NODE
: return sizeof (struct tree_target_option
);
674 return lang_hooks
.tree_size (code
);
682 /* Compute the number of bytes occupied by NODE. This routine only
683 looks at TREE_CODE, except for those nodes that have variable sizes. */
685 tree_size (const_tree node
)
687 const enum tree_code code
= TREE_CODE (node
);
691 return (offsetof (struct tree_binfo
, base_binfos
)
693 ::embedded_size (BINFO_N_BASE_BINFOS (node
)));
696 return (sizeof (struct tree_vec
)
697 + (TREE_VEC_LENGTH (node
) - 1) * sizeof (tree
));
700 return (sizeof (struct tree_vector
)
701 + (TYPE_VECTOR_SUBPARTS (TREE_TYPE (node
)) - 1) * sizeof (tree
));
704 return TREE_STRING_LENGTH (node
) + offsetof (struct tree_string
, str
) + 1;
707 return (sizeof (struct tree_omp_clause
)
708 + (omp_clause_num_ops
[OMP_CLAUSE_CODE (node
)] - 1)
712 if (TREE_CODE_CLASS (code
) == tcc_vl_exp
)
713 return (sizeof (struct tree_exp
)
714 + (VL_EXP_OPERAND_LENGTH (node
) - 1) * sizeof (tree
));
716 return tree_code_size (code
);
720 /* Record interesting allocation statistics for a tree node with CODE
724 record_node_allocation_statistics (enum tree_code code ATTRIBUTE_UNUSED
,
725 size_t length ATTRIBUTE_UNUSED
)
727 enum tree_code_class type
= TREE_CODE_CLASS (code
);
730 if (!GATHER_STATISTICS
)
735 case tcc_declaration
: /* A decl node */
739 case tcc_type
: /* a type node */
743 case tcc_statement
: /* an expression with side effects */
747 case tcc_reference
: /* a reference */
751 case tcc_expression
: /* an expression */
752 case tcc_comparison
: /* a comparison expression */
753 case tcc_unary
: /* a unary arithmetic expression */
754 case tcc_binary
: /* a binary arithmetic expression */
758 case tcc_constant
: /* a constant */
762 case tcc_exceptional
: /* something random, like an identifier. */
765 case IDENTIFIER_NODE
:
778 kind
= ssa_name_kind
;
790 kind
= omp_clause_kind
;
807 tree_code_counts
[(int) code
]++;
808 tree_node_counts
[(int) kind
]++;
809 tree_node_sizes
[(int) kind
] += length
;
812 /* Allocate and return a new UID from the DECL_UID namespace. */
815 allocate_decl_uid (void)
817 return next_decl_uid
++;
820 /* Return a newly allocated node of code CODE. For decl and type
821 nodes, some other fields are initialized. The rest of the node is
822 initialized to zero. This function cannot be used for TREE_VEC or
823 OMP_CLAUSE nodes, which is enforced by asserts in tree_code_size.
825 Achoo! I got a code in the node. */
828 make_node_stat (enum tree_code code MEM_STAT_DECL
)
831 enum tree_code_class type
= TREE_CODE_CLASS (code
);
832 size_t length
= tree_code_size (code
);
834 record_node_allocation_statistics (code
, length
);
836 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
837 TREE_SET_CODE (t
, code
);
842 TREE_SIDE_EFFECTS (t
) = 1;
845 case tcc_declaration
:
846 if (CODE_CONTAINS_STRUCT (code
, TS_DECL_COMMON
))
848 if (code
== FUNCTION_DECL
)
850 DECL_ALIGN (t
) = FUNCTION_BOUNDARY
;
851 DECL_MODE (t
) = FUNCTION_MODE
;
856 DECL_SOURCE_LOCATION (t
) = input_location
;
857 if (TREE_CODE (t
) == DEBUG_EXPR_DECL
)
858 DECL_UID (t
) = --next_debug_decl_uid
;
861 DECL_UID (t
) = allocate_decl_uid ();
862 SET_DECL_PT_UID (t
, -1);
864 if (TREE_CODE (t
) == LABEL_DECL
)
865 LABEL_DECL_UID (t
) = -1;
870 TYPE_UID (t
) = next_type_uid
++;
871 TYPE_ALIGN (t
) = BITS_PER_UNIT
;
872 TYPE_USER_ALIGN (t
) = 0;
873 TYPE_MAIN_VARIANT (t
) = t
;
874 TYPE_CANONICAL (t
) = t
;
876 /* Default to no attributes for type, but let target change that. */
877 TYPE_ATTRIBUTES (t
) = NULL_TREE
;
878 targetm
.set_default_type_attributes (t
);
880 /* We have not yet computed the alias set for this type. */
881 TYPE_ALIAS_SET (t
) = -1;
885 TREE_CONSTANT (t
) = 1;
894 case PREDECREMENT_EXPR
:
895 case PREINCREMENT_EXPR
:
896 case POSTDECREMENT_EXPR
:
897 case POSTINCREMENT_EXPR
:
898 /* All of these have side-effects, no matter what their
900 TREE_SIDE_EFFECTS (t
) = 1;
909 /* Other classes need no special treatment. */
916 /* Return a new node with the same contents as NODE except that its
917 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
920 copy_node_stat (tree node MEM_STAT_DECL
)
923 enum tree_code code
= TREE_CODE (node
);
926 gcc_assert (code
!= STATEMENT_LIST
);
928 length
= tree_size (node
);
929 record_node_allocation_statistics (code
, length
);
930 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
931 memcpy (t
, node
, length
);
933 if (CODE_CONTAINS_STRUCT (code
, TS_COMMON
))
935 TREE_ASM_WRITTEN (t
) = 0;
936 TREE_VISITED (t
) = 0;
938 if (TREE_CODE_CLASS (code
) == tcc_declaration
)
940 if (code
== DEBUG_EXPR_DECL
)
941 DECL_UID (t
) = --next_debug_decl_uid
;
944 DECL_UID (t
) = allocate_decl_uid ();
945 if (DECL_PT_UID_SET_P (node
))
946 SET_DECL_PT_UID (t
, DECL_PT_UID (node
));
948 if ((TREE_CODE (node
) == PARM_DECL
|| TREE_CODE (node
) == VAR_DECL
)
949 && DECL_HAS_VALUE_EXPR_P (node
))
951 SET_DECL_VALUE_EXPR (t
, DECL_VALUE_EXPR (node
));
952 DECL_HAS_VALUE_EXPR_P (t
) = 1;
954 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
955 if (TREE_CODE (node
) == VAR_DECL
)
956 DECL_HAS_DEBUG_EXPR_P (t
) = 0;
957 if (TREE_CODE (node
) == VAR_DECL
&& DECL_HAS_INIT_PRIORITY_P (node
))
959 SET_DECL_INIT_PRIORITY (t
, DECL_INIT_PRIORITY (node
));
960 DECL_HAS_INIT_PRIORITY_P (t
) = 1;
962 if (TREE_CODE (node
) == FUNCTION_DECL
)
963 DECL_STRUCT_FUNCTION (t
) = NULL
;
965 else if (TREE_CODE_CLASS (code
) == tcc_type
)
967 TYPE_UID (t
) = next_type_uid
++;
968 /* The following is so that the debug code for
969 the copy is different from the original type.
970 The two statements usually duplicate each other
971 (because they clear fields of the same union),
972 but the optimizer should catch that. */
973 TYPE_SYMTAB_POINTER (t
) = 0;
974 TYPE_SYMTAB_ADDRESS (t
) = 0;
976 /* Do not copy the values cache. */
977 if (TYPE_CACHED_VALUES_P (t
))
979 TYPE_CACHED_VALUES_P (t
) = 0;
980 TYPE_CACHED_VALUES (t
) = NULL_TREE
;
987 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
988 For example, this can copy a list made of TREE_LIST nodes. */
991 copy_list (tree list
)
999 head
= prev
= copy_node (list
);
1000 next
= TREE_CHAIN (list
);
1003 TREE_CHAIN (prev
) = copy_node (next
);
1004 prev
= TREE_CHAIN (prev
);
1005 next
= TREE_CHAIN (next
);
1011 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1014 build_int_cst (tree type
, HOST_WIDE_INT low
)
1016 /* Support legacy code. */
1018 type
= integer_type_node
;
1020 return double_int_to_tree (type
, double_int::from_shwi (low
));
1023 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1026 build_int_cst_type (tree type
, HOST_WIDE_INT low
)
1030 return double_int_to_tree (type
, double_int::from_shwi (low
));
1033 /* Constructs tree in type TYPE from with value given by CST. Signedness
1034 of CST is assumed to be the same as the signedness of TYPE. */
1037 double_int_to_tree (tree type
, double_int cst
)
1039 bool sign_extended_type
= !TYPE_UNSIGNED (type
);
1041 cst
= cst
.ext (TYPE_PRECISION (type
), !sign_extended_type
);
1043 return build_int_cst_wide (type
, cst
.low
, cst
.high
);
1046 /* Returns true if CST fits into range of TYPE. Signedness of CST is assumed
1047 to be the same as the signedness of TYPE. */
1050 double_int_fits_to_tree_p (const_tree type
, double_int cst
)
1052 bool sign_extended_type
= !TYPE_UNSIGNED (type
);
1055 = cst
.ext (TYPE_PRECISION (type
), !sign_extended_type
);
1060 /* We force the double_int CST to the range of the type TYPE by sign or
1061 zero extending it. OVERFLOWABLE indicates if we are interested in
1062 overflow of the value, when >0 we are only interested in signed
1063 overflow, for <0 we are interested in any overflow. OVERFLOWED
1064 indicates whether overflow has already occurred. CONST_OVERFLOWED
1065 indicates whether constant overflow has already occurred. We force
1066 T's value to be within range of T's type (by setting to 0 or 1 all
1067 the bits outside the type's range). We set TREE_OVERFLOWED if,
1068 OVERFLOWED is nonzero,
1069 or OVERFLOWABLE is >0 and signed overflow occurs
1070 or OVERFLOWABLE is <0 and any overflow occurs
1071 We return a new tree node for the extended double_int. The node
1072 is shared if no overflow flags are set. */
1076 force_fit_type_double (tree type
, double_int cst
, int overflowable
,
1079 bool sign_extended_type
= !TYPE_UNSIGNED (type
);
1081 /* If we need to set overflow flags, return a new unshared node. */
1082 if (overflowed
|| !double_int_fits_to_tree_p (type
, cst
))
1086 || (overflowable
> 0 && sign_extended_type
))
1088 tree t
= make_node (INTEGER_CST
);
1090 = cst
.ext (TYPE_PRECISION (type
), !sign_extended_type
);
1091 TREE_TYPE (t
) = type
;
1092 TREE_OVERFLOW (t
) = 1;
1097 /* Else build a shared node. */
1098 return double_int_to_tree (type
, cst
);
1101 /* These are the hash table functions for the hash table of INTEGER_CST
1102 nodes of a sizetype. */
1104 /* Return the hash code code X, an INTEGER_CST. */
1107 int_cst_hash_hash (const void *x
)
1109 const_tree
const t
= (const_tree
) x
;
1111 return (TREE_INT_CST_HIGH (t
) ^ TREE_INT_CST_LOW (t
)
1112 ^ htab_hash_pointer (TREE_TYPE (t
)));
1115 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1116 is the same as that given by *Y, which is the same. */
1119 int_cst_hash_eq (const void *x
, const void *y
)
1121 const_tree
const xt
= (const_tree
) x
;
1122 const_tree
const yt
= (const_tree
) y
;
1124 return (TREE_TYPE (xt
) == TREE_TYPE (yt
)
1125 && TREE_INT_CST_HIGH (xt
) == TREE_INT_CST_HIGH (yt
)
1126 && TREE_INT_CST_LOW (xt
) == TREE_INT_CST_LOW (yt
));
1129 /* Create an INT_CST node of TYPE and value HI:LOW.
1130 The returned node is always shared. For small integers we use a
1131 per-type vector cache, for larger ones we use a single hash table. */
1134 build_int_cst_wide (tree type
, unsigned HOST_WIDE_INT low
, HOST_WIDE_INT hi
)
1142 switch (TREE_CODE (type
))
1145 gcc_assert (hi
== 0 && low
== 0);
1149 case REFERENCE_TYPE
:
1150 case POINTER_BOUNDS_TYPE
:
1151 /* Cache NULL pointer and zero bounds. */
1160 /* Cache false or true. */
1168 if (TYPE_UNSIGNED (type
))
1171 limit
= INTEGER_SHARE_LIMIT
;
1172 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1178 limit
= INTEGER_SHARE_LIMIT
+ 1;
1179 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1181 else if (hi
== -1 && low
== -(unsigned HOST_WIDE_INT
)1)
1195 /* Look for it in the type's vector of small shared ints. */
1196 if (!TYPE_CACHED_VALUES_P (type
))
1198 TYPE_CACHED_VALUES_P (type
) = 1;
1199 TYPE_CACHED_VALUES (type
) = make_tree_vec (limit
);
1202 t
= TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
);
1205 /* Make sure no one is clobbering the shared constant. */
1206 gcc_assert (TREE_TYPE (t
) == type
);
1207 gcc_assert (TREE_INT_CST_LOW (t
) == low
);
1208 gcc_assert (TREE_INT_CST_HIGH (t
) == hi
);
1212 /* Create a new shared int. */
1213 t
= make_node (INTEGER_CST
);
1215 TREE_INT_CST_LOW (t
) = low
;
1216 TREE_INT_CST_HIGH (t
) = hi
;
1217 TREE_TYPE (t
) = type
;
1219 TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) = t
;
1224 /* Use the cache of larger shared ints. */
1227 TREE_INT_CST_LOW (int_cst_node
) = low
;
1228 TREE_INT_CST_HIGH (int_cst_node
) = hi
;
1229 TREE_TYPE (int_cst_node
) = type
;
1231 slot
= htab_find_slot (int_cst_hash_table
, int_cst_node
, INSERT
);
1235 /* Insert this one into the hash table. */
1238 /* Make a new node for next time round. */
1239 int_cst_node
= make_node (INTEGER_CST
);
1247 cache_integer_cst (tree t
)
1249 tree type
= TREE_TYPE (t
);
1250 HOST_WIDE_INT hi
= TREE_INT_CST_HIGH (t
);
1251 unsigned HOST_WIDE_INT low
= TREE_INT_CST_LOW (t
);
1255 gcc_assert (!TREE_OVERFLOW (t
));
1257 switch (TREE_CODE (type
))
1260 gcc_assert (hi
== 0 && low
== 0);
1264 case REFERENCE_TYPE
:
1265 /* Cache NULL pointer. */
1274 /* Cache false or true. */
1282 if (TYPE_UNSIGNED (type
))
1285 limit
= INTEGER_SHARE_LIMIT
;
1286 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1292 limit
= INTEGER_SHARE_LIMIT
+ 1;
1293 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1295 else if (hi
== -1 && low
== -(unsigned HOST_WIDE_INT
)1)
1309 /* Look for it in the type's vector of small shared ints. */
1310 if (!TYPE_CACHED_VALUES_P (type
))
1312 TYPE_CACHED_VALUES_P (type
) = 1;
1313 TYPE_CACHED_VALUES (type
) = make_tree_vec (limit
);
1316 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) == NULL_TREE
);
1317 TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) = t
;
1321 /* Use the cache of larger shared ints. */
1324 slot
= htab_find_slot (int_cst_hash_table
, t
, INSERT
);
1325 /* If there is already an entry for the number verify it's the
1329 gcc_assert (TREE_INT_CST_LOW ((tree
)*slot
) == low
1330 && TREE_INT_CST_HIGH ((tree
)*slot
) == hi
);
1333 /* Otherwise insert this one into the hash table. */
1339 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1340 and the rest are zeros. */
1343 build_low_bits_mask (tree type
, unsigned bits
)
1347 gcc_assert (bits
<= TYPE_PRECISION (type
));
1349 if (bits
== TYPE_PRECISION (type
)
1350 && !TYPE_UNSIGNED (type
))
1351 /* Sign extended all-ones mask. */
1352 mask
= double_int_minus_one
;
1354 mask
= double_int::mask (bits
);
1356 return build_int_cst_wide (type
, mask
.low
, mask
.high
);
1359 /* Checks that X is integer constant that can be expressed in (unsigned)
1360 HOST_WIDE_INT without loss of precision. */
1363 cst_and_fits_in_hwi (const_tree x
)
1365 if (TREE_CODE (x
) != INTEGER_CST
)
1368 if (TYPE_PRECISION (TREE_TYPE (x
)) > HOST_BITS_PER_WIDE_INT
)
1371 return (TREE_INT_CST_HIGH (x
) == 0
1372 || TREE_INT_CST_HIGH (x
) == -1);
1375 /* Build a newly constructed TREE_VEC node of length LEN. */
1378 make_vector_stat (unsigned len MEM_STAT_DECL
)
1381 unsigned length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vector
);
1383 record_node_allocation_statistics (VECTOR_CST
, length
);
1385 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
1387 TREE_SET_CODE (t
, VECTOR_CST
);
1388 TREE_CONSTANT (t
) = 1;
1393 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1394 are in a list pointed to by VALS. */
1397 build_vector_stat (tree type
, tree
*vals MEM_STAT_DECL
)
1401 tree v
= make_vector (TYPE_VECTOR_SUBPARTS (type
));
1402 TREE_TYPE (v
) = type
;
1404 /* Iterate through elements and check for overflow. */
1405 for (cnt
= 0; cnt
< TYPE_VECTOR_SUBPARTS (type
); ++cnt
)
1407 tree value
= vals
[cnt
];
1409 VECTOR_CST_ELT (v
, cnt
) = value
;
1411 /* Don't crash if we get an address constant. */
1412 if (!CONSTANT_CLASS_P (value
))
1415 over
|= TREE_OVERFLOW (value
);
1418 TREE_OVERFLOW (v
) = over
;
1422 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1423 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1426 build_vector_from_ctor (tree type
, vec
<constructor_elt
, va_gc
> *v
)
1428 tree
*vec
= XALLOCAVEC (tree
, TYPE_VECTOR_SUBPARTS (type
));
1429 unsigned HOST_WIDE_INT idx
;
1432 FOR_EACH_CONSTRUCTOR_VALUE (v
, idx
, value
)
1434 for (; idx
< TYPE_VECTOR_SUBPARTS (type
); ++idx
)
1435 vec
[idx
] = build_zero_cst (TREE_TYPE (type
));
1437 return build_vector (type
, vec
);
1440 /* Build a vector of type VECTYPE where all the elements are SCs. */
1442 build_vector_from_val (tree vectype
, tree sc
)
1444 int i
, nunits
= TYPE_VECTOR_SUBPARTS (vectype
);
1446 if (sc
== error_mark_node
)
1449 /* Verify that the vector type is suitable for SC. Note that there
1450 is some inconsistency in the type-system with respect to restrict
1451 qualifications of pointers. Vector types always have a main-variant
1452 element type and the qualification is applied to the vector-type.
1453 So TREE_TYPE (vector-type) does not return a properly qualified
1454 vector element-type. */
1455 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc
)),
1456 TREE_TYPE (vectype
)));
1458 if (CONSTANT_CLASS_P (sc
))
1460 tree
*v
= XALLOCAVEC (tree
, nunits
);
1461 for (i
= 0; i
< nunits
; ++i
)
1463 return build_vector (vectype
, v
);
1467 vec
<constructor_elt
, va_gc
> *v
;
1468 vec_alloc (v
, nunits
);
1469 for (i
= 0; i
< nunits
; ++i
)
1470 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, sc
);
1471 return build_constructor (vectype
, v
);
1475 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1476 are in the vec pointed to by VALS. */
1478 build_constructor (tree type
, vec
<constructor_elt
, va_gc
> *vals
)
1480 tree c
= make_node (CONSTRUCTOR
);
1482 constructor_elt
*elt
;
1483 bool constant_p
= true;
1484 bool side_effects_p
= false;
1486 TREE_TYPE (c
) = type
;
1487 CONSTRUCTOR_ELTS (c
) = vals
;
1489 FOR_EACH_VEC_SAFE_ELT (vals
, i
, elt
)
1491 /* Mostly ctors will have elts that don't have side-effects, so
1492 the usual case is to scan all the elements. Hence a single
1493 loop for both const and side effects, rather than one loop
1494 each (with early outs). */
1495 if (!TREE_CONSTANT (elt
->value
))
1497 if (TREE_SIDE_EFFECTS (elt
->value
))
1498 side_effects_p
= true;
1501 TREE_SIDE_EFFECTS (c
) = side_effects_p
;
1502 TREE_CONSTANT (c
) = constant_p
;
1507 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1510 build_constructor_single (tree type
, tree index
, tree value
)
1512 vec
<constructor_elt
, va_gc
> *v
;
1513 constructor_elt elt
= {index
, value
};
1516 v
->quick_push (elt
);
1518 return build_constructor (type
, v
);
1522 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1523 are in a list pointed to by VALS. */
1525 build_constructor_from_list (tree type
, tree vals
)
1528 vec
<constructor_elt
, va_gc
> *v
= NULL
;
1532 vec_alloc (v
, list_length (vals
));
1533 for (t
= vals
; t
; t
= TREE_CHAIN (t
))
1534 CONSTRUCTOR_APPEND_ELT (v
, TREE_PURPOSE (t
), TREE_VALUE (t
));
1537 return build_constructor (type
, v
);
1540 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
1541 of elements, provided as index/value pairs. */
1544 build_constructor_va (tree type
, int nelts
, ...)
1546 vec
<constructor_elt
, va_gc
> *v
= NULL
;
1549 va_start (p
, nelts
);
1550 vec_alloc (v
, nelts
);
1553 tree index
= va_arg (p
, tree
);
1554 tree value
= va_arg (p
, tree
);
1555 CONSTRUCTOR_APPEND_ELT (v
, index
, value
);
1558 return build_constructor (type
, v
);
1561 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1564 build_fixed (tree type
, FIXED_VALUE_TYPE f
)
1567 FIXED_VALUE_TYPE
*fp
;
1569 v
= make_node (FIXED_CST
);
1570 fp
= ggc_alloc_fixed_value ();
1571 memcpy (fp
, &f
, sizeof (FIXED_VALUE_TYPE
));
1573 TREE_TYPE (v
) = type
;
1574 TREE_FIXED_CST_PTR (v
) = fp
;
1578 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1581 build_real (tree type
, REAL_VALUE_TYPE d
)
1584 REAL_VALUE_TYPE
*dp
;
1587 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1588 Consider doing it via real_convert now. */
1590 v
= make_node (REAL_CST
);
1591 dp
= ggc_alloc_real_value ();
1592 memcpy (dp
, &d
, sizeof (REAL_VALUE_TYPE
));
1594 TREE_TYPE (v
) = type
;
1595 TREE_REAL_CST_PTR (v
) = dp
;
1596 TREE_OVERFLOW (v
) = overflow
;
1600 /* Return a new REAL_CST node whose type is TYPE
1601 and whose value is the integer value of the INTEGER_CST node I. */
1604 real_value_from_int_cst (const_tree type
, const_tree i
)
1608 /* Clear all bits of the real value type so that we can later do
1609 bitwise comparisons to see if two values are the same. */
1610 memset (&d
, 0, sizeof d
);
1612 real_from_integer (&d
, type
? TYPE_MODE (type
) : VOIDmode
,
1613 TREE_INT_CST_LOW (i
), TREE_INT_CST_HIGH (i
),
1614 TYPE_UNSIGNED (TREE_TYPE (i
)));
1618 /* Given a tree representing an integer constant I, return a tree
1619 representing the same value as a floating-point constant of type TYPE. */
1622 build_real_from_int_cst (tree type
, const_tree i
)
1625 int overflow
= TREE_OVERFLOW (i
);
1627 v
= build_real (type
, real_value_from_int_cst (type
, i
));
1629 TREE_OVERFLOW (v
) |= overflow
;
1633 /* Return a newly constructed STRING_CST node whose value is
1634 the LEN characters at STR.
1635 Note that for a C string literal, LEN should include the trailing NUL.
1636 The TREE_TYPE is not initialized. */
1639 build_string (int len
, const char *str
)
1644 /* Do not waste bytes provided by padding of struct tree_string. */
1645 length
= len
+ offsetof (struct tree_string
, str
) + 1;
1647 record_node_allocation_statistics (STRING_CST
, length
);
1649 s
= ggc_alloc_tree_node (length
);
1651 memset (s
, 0, sizeof (struct tree_typed
));
1652 TREE_SET_CODE (s
, STRING_CST
);
1653 TREE_CONSTANT (s
) = 1;
1654 TREE_STRING_LENGTH (s
) = len
;
1655 memcpy (s
->string
.str
, str
, len
);
1656 s
->string
.str
[len
] = '\0';
1661 /* Return a newly constructed COMPLEX_CST node whose value is
1662 specified by the real and imaginary parts REAL and IMAG.
1663 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1664 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
1667 build_complex (tree type
, tree real
, tree imag
)
1669 tree t
= make_node (COMPLEX_CST
);
1671 TREE_REALPART (t
) = real
;
1672 TREE_IMAGPART (t
) = imag
;
1673 TREE_TYPE (t
) = type
? type
: build_complex_type (TREE_TYPE (real
));
1674 TREE_OVERFLOW (t
) = TREE_OVERFLOW (real
) | TREE_OVERFLOW (imag
);
1678 /* Return a constant of arithmetic type TYPE which is the
1679 multiplicative identity of the set TYPE. */
1682 build_one_cst (tree type
)
1684 switch (TREE_CODE (type
))
1686 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
1687 case POINTER_TYPE
: case REFERENCE_TYPE
:
1689 return build_int_cst (type
, 1);
1692 return build_real (type
, dconst1
);
1694 case FIXED_POINT_TYPE
:
1695 /* We can only generate 1 for accum types. */
1696 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)));
1697 return build_fixed (type
, FCONST1 (TYPE_MODE (type
)));
1701 tree scalar
= build_one_cst (TREE_TYPE (type
));
1703 return build_vector_from_val (type
, scalar
);
1707 return build_complex (type
,
1708 build_one_cst (TREE_TYPE (type
)),
1709 build_zero_cst (TREE_TYPE (type
)));
1716 /* Return an integer of type TYPE containing all 1's in as much precision as
1717 it contains, or a complex or vector whose subparts are such integers. */
1720 build_all_ones_cst (tree type
)
1722 if (TREE_CODE (type
) == COMPLEX_TYPE
)
1724 tree scalar
= build_all_ones_cst (TREE_TYPE (type
));
1725 return build_complex (type
, scalar
, scalar
);
1728 return build_minus_one_cst (type
);
1731 /* Return a constant of arithmetic type TYPE which is the
1732 opposite of the multiplicative identity of the set TYPE. */
1735 build_minus_one_cst (tree type
)
1737 switch (TREE_CODE (type
))
1739 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
1740 case POINTER_TYPE
: case REFERENCE_TYPE
:
1742 return build_int_cst (type
, -1);
1745 return build_real (type
, dconstm1
);
1747 case FIXED_POINT_TYPE
:
1748 /* We can only generate 1 for accum types. */
1749 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)));
1750 return build_fixed (type
, fixed_from_double_int (double_int_minus_one
,
1755 tree scalar
= build_minus_one_cst (TREE_TYPE (type
));
1757 return build_vector_from_val (type
, scalar
);
1761 return build_complex (type
,
1762 build_minus_one_cst (TREE_TYPE (type
)),
1763 build_zero_cst (TREE_TYPE (type
)));
1770 /* Build 0 constant of type TYPE. This is used by constructor folding
1771 and thus the constant should be represented in memory by
1775 build_zero_cst (tree type
)
1777 switch (TREE_CODE (type
))
1779 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
1780 case POINTER_TYPE
: case REFERENCE_TYPE
:
1781 case OFFSET_TYPE
: case NULLPTR_TYPE
:
1782 return build_int_cst (type
, 0);
1785 return build_real (type
, dconst0
);
1787 case FIXED_POINT_TYPE
:
1788 return build_fixed (type
, FCONST0 (TYPE_MODE (type
)));
1792 tree scalar
= build_zero_cst (TREE_TYPE (type
));
1794 return build_vector_from_val (type
, scalar
);
1799 tree zero
= build_zero_cst (TREE_TYPE (type
));
1801 return build_complex (type
, zero
, zero
);
1805 if (!AGGREGATE_TYPE_P (type
))
1806 return fold_convert (type
, integer_zero_node
);
1807 return build_constructor (type
, NULL
);
1812 /* Build a BINFO with LEN language slots. */
1815 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL
)
1818 size_t length
= (offsetof (struct tree_binfo
, base_binfos
)
1819 + vec
<tree
, va_gc
>::embedded_size (base_binfos
));
1821 record_node_allocation_statistics (TREE_BINFO
, length
);
1823 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
1825 memset (t
, 0, offsetof (struct tree_binfo
, base_binfos
));
1827 TREE_SET_CODE (t
, TREE_BINFO
);
1829 BINFO_BASE_BINFOS (t
)->embedded_init (base_binfos
);
1834 /* Create a CASE_LABEL_EXPR tree node and return it. */
1837 build_case_label (tree low_value
, tree high_value
, tree label_decl
)
1839 tree t
= make_node (CASE_LABEL_EXPR
);
1841 TREE_TYPE (t
) = void_type_node
;
1842 SET_EXPR_LOCATION (t
, DECL_SOURCE_LOCATION (label_decl
));
1844 CASE_LOW (t
) = low_value
;
1845 CASE_HIGH (t
) = high_value
;
1846 CASE_LABEL (t
) = label_decl
;
1847 CASE_CHAIN (t
) = NULL_TREE
;
1852 /* Build a newly constructed TREE_VEC node of length LEN. */
1855 make_tree_vec_stat (int len MEM_STAT_DECL
)
1858 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
1860 record_node_allocation_statistics (TREE_VEC
, length
);
1862 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
1864 TREE_SET_CODE (t
, TREE_VEC
);
1865 TREE_VEC_LENGTH (t
) = len
;
1870 /* Grow a TREE_VEC node to new length LEN. */
1873 grow_tree_vec_stat (tree v
, int len MEM_STAT_DECL
)
1875 gcc_assert (TREE_CODE (v
) == TREE_VEC
);
1877 int oldlen
= TREE_VEC_LENGTH (v
);
1878 gcc_assert (len
> oldlen
);
1880 int oldlength
= (oldlen
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
1881 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
1883 record_node_allocation_statistics (TREE_VEC
, length
- oldlength
);
1885 v
= (tree
) ggc_realloc_stat (v
, length PASS_MEM_STAT
);
1887 TREE_VEC_LENGTH (v
) = len
;
1892 /* Return 1 if EXPR is the integer constant zero or a complex constant
1896 integer_zerop (const_tree expr
)
1900 switch (TREE_CODE (expr
))
1903 return (TREE_INT_CST_LOW (expr
) == 0
1904 && TREE_INT_CST_HIGH (expr
) == 0);
1906 return (integer_zerop (TREE_REALPART (expr
))
1907 && integer_zerop (TREE_IMAGPART (expr
)));
1911 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
1912 if (!integer_zerop (VECTOR_CST_ELT (expr
, i
)))
1921 /* Return 1 if EXPR is the integer constant one or the corresponding
1922 complex constant. */
1925 integer_onep (const_tree expr
)
1929 switch (TREE_CODE (expr
))
1932 return (TREE_INT_CST_LOW (expr
) == 1
1933 && TREE_INT_CST_HIGH (expr
) == 0);
1935 return (integer_onep (TREE_REALPART (expr
))
1936 && integer_zerop (TREE_IMAGPART (expr
)));
1940 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
1941 if (!integer_onep (VECTOR_CST_ELT (expr
, i
)))
1950 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
1951 it contains, or a complex or vector whose subparts are such integers. */
1954 integer_all_onesp (const_tree expr
)
1961 if (TREE_CODE (expr
) == COMPLEX_CST
1962 && integer_all_onesp (TREE_REALPART (expr
))
1963 && integer_all_onesp (TREE_IMAGPART (expr
)))
1966 else if (TREE_CODE (expr
) == VECTOR_CST
)
1969 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
1970 if (!integer_all_onesp (VECTOR_CST_ELT (expr
, i
)))
1975 else if (TREE_CODE (expr
) != INTEGER_CST
)
1978 uns
= TYPE_UNSIGNED (TREE_TYPE (expr
));
1979 if (TREE_INT_CST_LOW (expr
) == ~(unsigned HOST_WIDE_INT
) 0
1980 && TREE_INT_CST_HIGH (expr
) == -1)
1985 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
1986 if (prec
>= HOST_BITS_PER_WIDE_INT
)
1988 HOST_WIDE_INT high_value
;
1991 shift_amount
= prec
- HOST_BITS_PER_WIDE_INT
;
1993 /* Can not handle precisions greater than twice the host int size. */
1994 gcc_assert (shift_amount
<= HOST_BITS_PER_WIDE_INT
);
1995 if (shift_amount
== HOST_BITS_PER_WIDE_INT
)
1996 /* Shifting by the host word size is undefined according to the ANSI
1997 standard, so we must handle this as a special case. */
2000 high_value
= ((HOST_WIDE_INT
) 1 << shift_amount
) - 1;
2002 return (TREE_INT_CST_LOW (expr
) == ~(unsigned HOST_WIDE_INT
) 0
2003 && TREE_INT_CST_HIGH (expr
) == high_value
);
2006 return TREE_INT_CST_LOW (expr
) == ((unsigned HOST_WIDE_INT
) 1 << prec
) - 1;
2009 /* Return 1 if EXPR is the integer constant minus one. */
2012 integer_minus_onep (const_tree expr
)
2016 if (TREE_CODE (expr
) == COMPLEX_CST
)
2017 return (integer_all_onesp (TREE_REALPART (expr
))
2018 && integer_zerop (TREE_IMAGPART (expr
)));
2020 return integer_all_onesp (expr
);
2023 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2027 integer_pow2p (const_tree expr
)
2030 unsigned HOST_WIDE_INT high
, low
;
2034 if (TREE_CODE (expr
) == COMPLEX_CST
2035 && integer_pow2p (TREE_REALPART (expr
))
2036 && integer_zerop (TREE_IMAGPART (expr
)))
2039 if (TREE_CODE (expr
) != INTEGER_CST
)
2042 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
2043 high
= TREE_INT_CST_HIGH (expr
);
2044 low
= TREE_INT_CST_LOW (expr
);
2046 /* First clear all bits that are beyond the type's precision in case
2047 we've been sign extended. */
2049 if (prec
== HOST_BITS_PER_DOUBLE_INT
)
2051 else if (prec
> HOST_BITS_PER_WIDE_INT
)
2052 high
&= ~(HOST_WIDE_INT_M1U
<< (prec
- HOST_BITS_PER_WIDE_INT
));
2056 if (prec
< HOST_BITS_PER_WIDE_INT
)
2057 low
&= ~(HOST_WIDE_INT_M1U
<< prec
);
2060 if (high
== 0 && low
== 0)
2063 return ((high
== 0 && (low
& (low
- 1)) == 0)
2064 || (low
== 0 && (high
& (high
- 1)) == 0));
2067 /* Return 1 if EXPR is an integer constant other than zero or a
2068 complex constant other than zero. */
2071 integer_nonzerop (const_tree expr
)
2075 return ((TREE_CODE (expr
) == INTEGER_CST
2076 && (TREE_INT_CST_LOW (expr
) != 0
2077 || TREE_INT_CST_HIGH (expr
) != 0))
2078 || (TREE_CODE (expr
) == COMPLEX_CST
2079 && (integer_nonzerop (TREE_REALPART (expr
))
2080 || integer_nonzerop (TREE_IMAGPART (expr
)))));
2083 /* Return 1 if EXPR is the fixed-point constant zero. */
2086 fixed_zerop (const_tree expr
)
2088 return (TREE_CODE (expr
) == FIXED_CST
2089 && TREE_FIXED_CST (expr
).data
.is_zero ());
2092 /* Return the power of two represented by a tree node known to be a
2096 tree_log2 (const_tree expr
)
2099 HOST_WIDE_INT high
, low
;
2103 if (TREE_CODE (expr
) == COMPLEX_CST
)
2104 return tree_log2 (TREE_REALPART (expr
));
2106 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
2107 high
= TREE_INT_CST_HIGH (expr
);
2108 low
= TREE_INT_CST_LOW (expr
);
2110 /* First clear all bits that are beyond the type's precision in case
2111 we've been sign extended. */
2113 if (prec
== HOST_BITS_PER_DOUBLE_INT
)
2115 else if (prec
> HOST_BITS_PER_WIDE_INT
)
2116 high
&= ~(HOST_WIDE_INT_M1U
<< (prec
- HOST_BITS_PER_WIDE_INT
));
2120 if (prec
< HOST_BITS_PER_WIDE_INT
)
2121 low
&= ~(HOST_WIDE_INT_M1U
<< prec
);
2124 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ exact_log2 (high
)
2125 : exact_log2 (low
));
2128 /* Similar, but return the largest integer Y such that 2 ** Y is less
2129 than or equal to EXPR. */
2132 tree_floor_log2 (const_tree expr
)
2135 HOST_WIDE_INT high
, low
;
2139 if (TREE_CODE (expr
) == COMPLEX_CST
)
2140 return tree_log2 (TREE_REALPART (expr
));
2142 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
2143 high
= TREE_INT_CST_HIGH (expr
);
2144 low
= TREE_INT_CST_LOW (expr
);
2146 /* First clear all bits that are beyond the type's precision in case
2147 we've been sign extended. Ignore if type's precision hasn't been set
2148 since what we are doing is setting it. */
2150 if (prec
== HOST_BITS_PER_DOUBLE_INT
|| prec
== 0)
2152 else if (prec
> HOST_BITS_PER_WIDE_INT
)
2153 high
&= ~(HOST_WIDE_INT_M1U
<< (prec
- HOST_BITS_PER_WIDE_INT
));
2157 if (prec
< HOST_BITS_PER_WIDE_INT
)
2158 low
&= ~(HOST_WIDE_INT_M1U
<< prec
);
2161 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ floor_log2 (high
)
2162 : floor_log2 (low
));
2165 /* Return number of known trailing zero bits in EXPR, or, if the value of
2166 EXPR is known to be zero, the precision of it's type. */
2169 tree_ctz (const_tree expr
)
2171 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr
))
2172 && !POINTER_TYPE_P (TREE_TYPE (expr
)))
2175 unsigned int ret1
, ret2
, prec
= TYPE_PRECISION (TREE_TYPE (expr
));
2176 switch (TREE_CODE (expr
))
2179 ret1
= tree_to_double_int (expr
).trailing_zeros ();
2180 return MIN (ret1
, prec
);
2182 ret1
= get_nonzero_bits (expr
).trailing_zeros ();
2183 return MIN (ret1
, prec
);
2190 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2193 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2194 return MIN (ret1
, ret2
);
2195 case POINTER_PLUS_EXPR
:
2196 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2197 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2198 /* Second operand is sizetype, which could be in theory
2199 wider than pointer's precision. Make sure we never
2200 return more than prec. */
2201 ret2
= MIN (ret2
, prec
);
2202 return MIN (ret1
, ret2
);
2204 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2205 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2206 return MAX (ret1
, ret2
);
2208 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2209 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2210 return MIN (ret1
+ ret2
, prec
);
2212 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2213 if (tree_fits_uhwi_p (TREE_OPERAND (expr
, 1))
2214 && (tree_to_uhwi (TREE_OPERAND (expr
, 1)) < prec
))
2216 ret2
= tree_to_uhwi (TREE_OPERAND (expr
, 1));
2217 return MIN (ret1
+ ret2
, prec
);
2221 if (tree_fits_uhwi_p (TREE_OPERAND (expr
, 1))
2222 && (tree_to_uhwi (TREE_OPERAND (expr
, 1)) < prec
))
2224 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2225 ret2
= tree_to_uhwi (TREE_OPERAND (expr
, 1));
2230 case TRUNC_DIV_EXPR
:
2232 case FLOOR_DIV_EXPR
:
2233 case ROUND_DIV_EXPR
:
2234 case EXACT_DIV_EXPR
:
2235 if (TREE_CODE (TREE_OPERAND (expr
, 1)) == INTEGER_CST
2236 && tree_int_cst_sgn (TREE_OPERAND (expr
, 1)) == 1)
2238 int l
= tree_log2 (TREE_OPERAND (expr
, 1));
2241 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2249 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2250 if (ret1
&& ret1
== TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr
, 0))))
2252 return MIN (ret1
, prec
);
2254 return tree_ctz (TREE_OPERAND (expr
, 0));
2256 ret1
= tree_ctz (TREE_OPERAND (expr
, 1));
2259 ret2
= tree_ctz (TREE_OPERAND (expr
, 2));
2260 return MIN (ret1
, ret2
);
2262 return tree_ctz (TREE_OPERAND (expr
, 1));
2264 ret1
= get_pointer_alignment (CONST_CAST_TREE (expr
));
2265 if (ret1
> BITS_PER_UNIT
)
2267 ret1
= ctz_hwi (ret1
/ BITS_PER_UNIT
);
2268 return MIN (ret1
, prec
);
2276 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2277 decimal float constants, so don't return 1 for them. */
2280 real_zerop (const_tree expr
)
2284 switch (TREE_CODE (expr
))
2287 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst0
)
2288 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2290 return real_zerop (TREE_REALPART (expr
))
2291 && real_zerop (TREE_IMAGPART (expr
));
2295 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2296 if (!real_zerop (VECTOR_CST_ELT (expr
, i
)))
2305 /* Return 1 if EXPR is the real constant one in real or complex form.
2306 Trailing zeroes matter for decimal float constants, so don't return
2310 real_onep (const_tree expr
)
2314 switch (TREE_CODE (expr
))
2317 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst1
)
2318 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2320 return real_onep (TREE_REALPART (expr
))
2321 && real_zerop (TREE_IMAGPART (expr
));
2325 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2326 if (!real_onep (VECTOR_CST_ELT (expr
, i
)))
2335 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2336 matter for decimal float constants, so don't return 1 for them. */
2339 real_minus_onep (const_tree expr
)
2343 switch (TREE_CODE (expr
))
2346 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconstm1
)
2347 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2349 return real_minus_onep (TREE_REALPART (expr
))
2350 && real_zerop (TREE_IMAGPART (expr
));
2354 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2355 if (!real_minus_onep (VECTOR_CST_ELT (expr
, i
)))
2364 /* Nonzero if EXP is a constant or a cast of a constant. */
2367 really_constant_p (const_tree exp
)
2369 /* This is not quite the same as STRIP_NOPS. It does more. */
2370 while (CONVERT_EXPR_P (exp
)
2371 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
2372 exp
= TREE_OPERAND (exp
, 0);
2373 return TREE_CONSTANT (exp
);
2376 /* Return first list element whose TREE_VALUE is ELEM.
2377 Return 0 if ELEM is not in LIST. */
2380 value_member (tree elem
, tree list
)
2384 if (elem
== TREE_VALUE (list
))
2386 list
= TREE_CHAIN (list
);
2391 /* Return first list element whose TREE_PURPOSE is ELEM.
2392 Return 0 if ELEM is not in LIST. */
2395 purpose_member (const_tree elem
, tree list
)
2399 if (elem
== TREE_PURPOSE (list
))
2401 list
= TREE_CHAIN (list
);
2406 /* Return true if ELEM is in V. */
2409 vec_member (const_tree elem
, vec
<tree
, va_gc
> *v
)
2413 FOR_EACH_VEC_SAFE_ELT (v
, ix
, t
)
2419 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2423 chain_index (int idx
, tree chain
)
2425 for (; chain
&& idx
> 0; --idx
)
2426 chain
= TREE_CHAIN (chain
);
2430 /* Return nonzero if ELEM is part of the chain CHAIN. */
2433 chain_member (const_tree elem
, const_tree chain
)
2439 chain
= DECL_CHAIN (chain
);
2445 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2446 We expect a null pointer to mark the end of the chain.
2447 This is the Lisp primitive `length'. */
2450 list_length (const_tree t
)
2453 #ifdef ENABLE_TREE_CHECKING
2461 #ifdef ENABLE_TREE_CHECKING
2464 gcc_assert (p
!= q
);
2472 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2473 UNION_TYPE TYPE, or NULL_TREE if none. */
2476 first_field (const_tree type
)
2478 tree t
= TYPE_FIELDS (type
);
2479 while (t
&& TREE_CODE (t
) != FIELD_DECL
)
2484 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2485 by modifying the last node in chain 1 to point to chain 2.
2486 This is the Lisp primitive `nconc'. */
2489 chainon (tree op1
, tree op2
)
2498 for (t1
= op1
; TREE_CHAIN (t1
); t1
= TREE_CHAIN (t1
))
2500 TREE_CHAIN (t1
) = op2
;
2502 #ifdef ENABLE_TREE_CHECKING
2505 for (t2
= op2
; t2
; t2
= TREE_CHAIN (t2
))
2506 gcc_assert (t2
!= t1
);
2513 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2516 tree_last (tree chain
)
2520 while ((next
= TREE_CHAIN (chain
)))
2525 /* Reverse the order of elements in the chain T,
2526 and return the new head of the chain (old last element). */
2531 tree prev
= 0, decl
, next
;
2532 for (decl
= t
; decl
; decl
= next
)
2534 /* We shouldn't be using this function to reverse BLOCK chains; we
2535 have blocks_nreverse for that. */
2536 gcc_checking_assert (TREE_CODE (decl
) != BLOCK
);
2537 next
= TREE_CHAIN (decl
);
2538 TREE_CHAIN (decl
) = prev
;
2544 /* Return a newly created TREE_LIST node whose
2545 purpose and value fields are PARM and VALUE. */
2548 build_tree_list_stat (tree parm
, tree value MEM_STAT_DECL
)
2550 tree t
= make_node_stat (TREE_LIST PASS_MEM_STAT
);
2551 TREE_PURPOSE (t
) = parm
;
2552 TREE_VALUE (t
) = value
;
2556 /* Build a chain of TREE_LIST nodes from a vector. */
2559 build_tree_list_vec_stat (const vec
<tree
, va_gc
> *vec MEM_STAT_DECL
)
2561 tree ret
= NULL_TREE
;
2565 FOR_EACH_VEC_SAFE_ELT (vec
, i
, t
)
2567 *pp
= build_tree_list_stat (NULL
, t PASS_MEM_STAT
);
2568 pp
= &TREE_CHAIN (*pp
);
2573 /* Return a newly created TREE_LIST node whose
2574 purpose and value fields are PURPOSE and VALUE
2575 and whose TREE_CHAIN is CHAIN. */
2578 tree_cons_stat (tree purpose
, tree value
, tree chain MEM_STAT_DECL
)
2582 node
= ggc_alloc_tree_node_stat (sizeof (struct tree_list
) PASS_MEM_STAT
);
2583 memset (node
, 0, sizeof (struct tree_common
));
2585 record_node_allocation_statistics (TREE_LIST
, sizeof (struct tree_list
));
2587 TREE_SET_CODE (node
, TREE_LIST
);
2588 TREE_CHAIN (node
) = chain
;
2589 TREE_PURPOSE (node
) = purpose
;
2590 TREE_VALUE (node
) = value
;
2594 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2598 ctor_to_vec (tree ctor
)
2600 vec
<tree
, va_gc
> *vec
;
2601 vec_alloc (vec
, CONSTRUCTOR_NELTS (ctor
));
2605 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor
), ix
, val
)
2606 vec
->quick_push (val
);
2611 /* Return the size nominally occupied by an object of type TYPE
2612 when it resides in memory. The value is measured in units of bytes,
2613 and its data type is that normally used for type sizes
2614 (which is the first type created by make_signed_type or
2615 make_unsigned_type). */
2618 size_in_bytes (const_tree type
)
2622 if (type
== error_mark_node
)
2623 return integer_zero_node
;
2625 type
= TYPE_MAIN_VARIANT (type
);
2626 t
= TYPE_SIZE_UNIT (type
);
2630 lang_hooks
.types
.incomplete_type_error (NULL_TREE
, type
);
2631 return size_zero_node
;
2637 /* Return the size of TYPE (in bytes) as a wide integer
2638 or return -1 if the size can vary or is larger than an integer. */
2641 int_size_in_bytes (const_tree type
)
2645 if (type
== error_mark_node
)
2648 type
= TYPE_MAIN_VARIANT (type
);
2649 t
= TYPE_SIZE_UNIT (type
);
2651 || TREE_CODE (t
) != INTEGER_CST
2652 || TREE_INT_CST_HIGH (t
) != 0
2653 /* If the result would appear negative, it's too big to represent. */
2654 || (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0)
2657 return TREE_INT_CST_LOW (t
);
2660 /* Return the maximum size of TYPE (in bytes) as a wide integer
2661 or return -1 if the size can vary or is larger than an integer. */
2664 max_int_size_in_bytes (const_tree type
)
2666 HOST_WIDE_INT size
= -1;
2669 /* If this is an array type, check for a possible MAX_SIZE attached. */
2671 if (TREE_CODE (type
) == ARRAY_TYPE
)
2673 size_tree
= TYPE_ARRAY_MAX_SIZE (type
);
2675 if (size_tree
&& tree_fits_uhwi_p (size_tree
))
2676 size
= tree_to_uhwi (size_tree
);
2679 /* If we still haven't been able to get a size, see if the language
2680 can compute a maximum size. */
2684 size_tree
= lang_hooks
.types
.max_size (type
);
2686 if (size_tree
&& tree_fits_uhwi_p (size_tree
))
2687 size
= tree_to_uhwi (size_tree
);
2693 /* Return the bit position of FIELD, in bits from the start of the record.
2694 This is a tree of type bitsizetype. */
2697 bit_position (const_tree field
)
2699 return bit_from_pos (DECL_FIELD_OFFSET (field
),
2700 DECL_FIELD_BIT_OFFSET (field
));
2703 /* Likewise, but return as an integer. It must be representable in
2704 that way (since it could be a signed value, we don't have the
2705 option of returning -1 like int_size_in_byte can. */
2708 int_bit_position (const_tree field
)
2710 return tree_to_shwi (bit_position (field
));
2713 /* Return the byte position of FIELD, in bytes from the start of the record.
2714 This is a tree of type sizetype. */
2717 byte_position (const_tree field
)
2719 return byte_from_pos (DECL_FIELD_OFFSET (field
),
2720 DECL_FIELD_BIT_OFFSET (field
));
2723 /* Likewise, but return as an integer. It must be representable in
2724 that way (since it could be a signed value, we don't have the
2725 option of returning -1 like int_size_in_byte can. */
2728 int_byte_position (const_tree field
)
2730 return tree_to_shwi (byte_position (field
));
2733 /* Return the strictest alignment, in bits, that T is known to have. */
2736 expr_align (const_tree t
)
2738 unsigned int align0
, align1
;
2740 switch (TREE_CODE (t
))
2742 CASE_CONVERT
: case NON_LVALUE_EXPR
:
2743 /* If we have conversions, we know that the alignment of the
2744 object must meet each of the alignments of the types. */
2745 align0
= expr_align (TREE_OPERAND (t
, 0));
2746 align1
= TYPE_ALIGN (TREE_TYPE (t
));
2747 return MAX (align0
, align1
);
2749 case SAVE_EXPR
: case COMPOUND_EXPR
: case MODIFY_EXPR
:
2750 case INIT_EXPR
: case TARGET_EXPR
: case WITH_CLEANUP_EXPR
:
2751 case CLEANUP_POINT_EXPR
:
2752 /* These don't change the alignment of an object. */
2753 return expr_align (TREE_OPERAND (t
, 0));
2756 /* The best we can do is say that the alignment is the least aligned
2758 align0
= expr_align (TREE_OPERAND (t
, 1));
2759 align1
= expr_align (TREE_OPERAND (t
, 2));
2760 return MIN (align0
, align1
);
2762 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
2763 meaningfully, it's always 1. */
2764 case LABEL_DECL
: case CONST_DECL
:
2765 case VAR_DECL
: case PARM_DECL
: case RESULT_DECL
:
2767 gcc_assert (DECL_ALIGN (t
) != 0);
2768 return DECL_ALIGN (t
);
2774 /* Otherwise take the alignment from that of the type. */
2775 return TYPE_ALIGN (TREE_TYPE (t
));
2778 /* Return, as a tree node, the number of elements for TYPE (which is an
2779 ARRAY_TYPE) minus one. This counts only elements of the top array. */
2782 array_type_nelts (const_tree type
)
2784 tree index_type
, min
, max
;
2786 /* If they did it with unspecified bounds, then we should have already
2787 given an error about it before we got here. */
2788 if (! TYPE_DOMAIN (type
))
2789 return error_mark_node
;
2791 index_type
= TYPE_DOMAIN (type
);
2792 min
= TYPE_MIN_VALUE (index_type
);
2793 max
= TYPE_MAX_VALUE (index_type
);
2795 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
2797 return error_mark_node
;
2799 return (integer_zerop (min
)
2801 : fold_build2 (MINUS_EXPR
, TREE_TYPE (max
), max
, min
));
2804 /* If arg is static -- a reference to an object in static storage -- then
2805 return the object. This is not the same as the C meaning of `static'.
2806 If arg isn't static, return NULL. */
2811 switch (TREE_CODE (arg
))
2814 /* Nested functions are static, even though taking their address will
2815 involve a trampoline as we unnest the nested function and create
2816 the trampoline on the tree level. */
2820 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
2821 && ! DECL_THREAD_LOCAL_P (arg
)
2822 && ! DECL_DLLIMPORT_P (arg
)
2826 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
2830 return TREE_STATIC (arg
) ? arg
: NULL
;
2837 /* If the thing being referenced is not a field, then it is
2838 something language specific. */
2839 gcc_assert (TREE_CODE (TREE_OPERAND (arg
, 1)) == FIELD_DECL
);
2841 /* If we are referencing a bitfield, we can't evaluate an
2842 ADDR_EXPR at compile time and so it isn't a constant. */
2843 if (DECL_BIT_FIELD (TREE_OPERAND (arg
, 1)))
2846 return staticp (TREE_OPERAND (arg
, 0));
2852 return TREE_CONSTANT (TREE_OPERAND (arg
, 0)) ? arg
: NULL
;
2855 case ARRAY_RANGE_REF
:
2856 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg
))) == INTEGER_CST
2857 && TREE_CODE (TREE_OPERAND (arg
, 1)) == INTEGER_CST
)
2858 return staticp (TREE_OPERAND (arg
, 0));
2862 case COMPOUND_LITERAL_EXPR
:
2863 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg
)) ? arg
: NULL
;
2873 /* Return whether OP is a DECL whose address is function-invariant. */
2876 decl_address_invariant_p (const_tree op
)
2878 /* The conditions below are slightly less strict than the one in
2881 switch (TREE_CODE (op
))
2890 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2891 || DECL_THREAD_LOCAL_P (op
)
2892 || DECL_CONTEXT (op
) == current_function_decl
2893 || decl_function_context (op
) == current_function_decl
)
2898 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2899 || decl_function_context (op
) == current_function_decl
)
2910 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
2913 decl_address_ip_invariant_p (const_tree op
)
2915 /* The conditions below are slightly less strict than the one in
2918 switch (TREE_CODE (op
))
2926 if (((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2927 && !DECL_DLLIMPORT_P (op
))
2928 || DECL_THREAD_LOCAL_P (op
))
2933 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
)))
2945 /* Return true if T is function-invariant (internal function, does
2946 not handle arithmetic; that's handled in skip_simple_arithmetic and
2947 tree_invariant_p). */
2949 static bool tree_invariant_p (tree t
);
2952 tree_invariant_p_1 (tree t
)
2956 if (TREE_CONSTANT (t
)
2957 || (TREE_READONLY (t
) && !TREE_SIDE_EFFECTS (t
)))
2960 switch (TREE_CODE (t
))
2966 op
= TREE_OPERAND (t
, 0);
2967 while (handled_component_p (op
))
2969 switch (TREE_CODE (op
))
2972 case ARRAY_RANGE_REF
:
2973 if (!tree_invariant_p (TREE_OPERAND (op
, 1))
2974 || TREE_OPERAND (op
, 2) != NULL_TREE
2975 || TREE_OPERAND (op
, 3) != NULL_TREE
)
2980 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
2986 op
= TREE_OPERAND (op
, 0);
2989 return CONSTANT_CLASS_P (op
) || decl_address_invariant_p (op
);
2998 /* Return true if T is function-invariant. */
3001 tree_invariant_p (tree t
)
3003 tree inner
= skip_simple_arithmetic (t
);
3004 return tree_invariant_p_1 (inner
);
3007 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3008 Do this to any expression which may be used in more than one place,
3009 but must be evaluated only once.
3011 Normally, expand_expr would reevaluate the expression each time.
3012 Calling save_expr produces something that is evaluated and recorded
3013 the first time expand_expr is called on it. Subsequent calls to
3014 expand_expr just reuse the recorded value.
3016 The call to expand_expr that generates code that actually computes
3017 the value is the first call *at compile time*. Subsequent calls
3018 *at compile time* generate code to use the saved value.
3019 This produces correct result provided that *at run time* control
3020 always flows through the insns made by the first expand_expr
3021 before reaching the other places where the save_expr was evaluated.
3022 You, the caller of save_expr, must make sure this is so.
3024 Constants, and certain read-only nodes, are returned with no
3025 SAVE_EXPR because that is safe. Expressions containing placeholders
3026 are not touched; see tree.def for an explanation of what these
3030 save_expr (tree expr
)
3032 tree t
= fold (expr
);
3035 /* If the tree evaluates to a constant, then we don't want to hide that
3036 fact (i.e. this allows further folding, and direct checks for constants).
3037 However, a read-only object that has side effects cannot be bypassed.
3038 Since it is no problem to reevaluate literals, we just return the
3040 inner
= skip_simple_arithmetic (t
);
3041 if (TREE_CODE (inner
) == ERROR_MARK
)
3044 if (tree_invariant_p_1 (inner
))
3047 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3048 it means that the size or offset of some field of an object depends on
3049 the value within another field.
3051 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
3052 and some variable since it would then need to be both evaluated once and
3053 evaluated more than once. Front-ends must assure this case cannot
3054 happen by surrounding any such subexpressions in their own SAVE_EXPR
3055 and forcing evaluation at the proper time. */
3056 if (contains_placeholder_p (inner
))
3059 t
= build1 (SAVE_EXPR
, TREE_TYPE (expr
), t
);
3060 SET_EXPR_LOCATION (t
, EXPR_LOCATION (expr
));
3062 /* This expression might be placed ahead of a jump to ensure that the
3063 value was computed on both sides of the jump. So make sure it isn't
3064 eliminated as dead. */
3065 TREE_SIDE_EFFECTS (t
) = 1;
3069 /* Look inside EXPR into any simple arithmetic operations. Return the
3070 outermost non-arithmetic or non-invariant node. */
3073 skip_simple_arithmetic (tree expr
)
3075 /* We don't care about whether this can be used as an lvalue in this
3077 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
3078 expr
= TREE_OPERAND (expr
, 0);
3080 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3081 a constant, it will be more efficient to not make another SAVE_EXPR since
3082 it will allow better simplification and GCSE will be able to merge the
3083 computations if they actually occur. */
3086 if (UNARY_CLASS_P (expr
))
3087 expr
= TREE_OPERAND (expr
, 0);
3088 else if (BINARY_CLASS_P (expr
))
3090 if (tree_invariant_p (TREE_OPERAND (expr
, 1)))
3091 expr
= TREE_OPERAND (expr
, 0);
3092 else if (tree_invariant_p (TREE_OPERAND (expr
, 0)))
3093 expr
= TREE_OPERAND (expr
, 1);
3104 /* Look inside EXPR into simple arithmetic operations involving constants.
3105 Return the outermost non-arithmetic or non-constant node. */
3108 skip_simple_constant_arithmetic (tree expr
)
3110 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
3111 expr
= TREE_OPERAND (expr
, 0);
3115 if (UNARY_CLASS_P (expr
))
3116 expr
= TREE_OPERAND (expr
, 0);
3117 else if (BINARY_CLASS_P (expr
))
3119 if (TREE_CONSTANT (TREE_OPERAND (expr
, 1)))
3120 expr
= TREE_OPERAND (expr
, 0);
3121 else if (TREE_CONSTANT (TREE_OPERAND (expr
, 0)))
3122 expr
= TREE_OPERAND (expr
, 1);
3133 /* Return which tree structure is used by T. */
3135 enum tree_node_structure_enum
3136 tree_node_structure (const_tree t
)
3138 const enum tree_code code
= TREE_CODE (t
);
3139 return tree_node_structure_for_code (code
);
3142 /* Set various status flags when building a CALL_EXPR object T. */
3145 process_call_operands (tree t
)
3147 bool side_effects
= TREE_SIDE_EFFECTS (t
);
3148 bool read_only
= false;
3149 int i
= call_expr_flags (t
);
3151 /* Calls have side-effects, except those to const or pure functions. */
3152 if ((i
& ECF_LOOPING_CONST_OR_PURE
) || !(i
& (ECF_CONST
| ECF_PURE
)))
3153 side_effects
= true;
3154 /* Propagate TREE_READONLY of arguments for const functions. */
3158 if (!side_effects
|| read_only
)
3159 for (i
= 1; i
< TREE_OPERAND_LENGTH (t
); i
++)
3161 tree op
= TREE_OPERAND (t
, i
);
3162 if (op
&& TREE_SIDE_EFFECTS (op
))
3163 side_effects
= true;
3164 if (op
&& !TREE_READONLY (op
) && !CONSTANT_CLASS_P (op
))
3168 TREE_SIDE_EFFECTS (t
) = side_effects
;
3169 TREE_READONLY (t
) = read_only
;
3172 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3173 size or offset that depends on a field within a record. */
3176 contains_placeholder_p (const_tree exp
)
3178 enum tree_code code
;
3183 code
= TREE_CODE (exp
);
3184 if (code
== PLACEHOLDER_EXPR
)
3187 switch (TREE_CODE_CLASS (code
))
3190 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3191 position computations since they will be converted into a
3192 WITH_RECORD_EXPR involving the reference, which will assume
3193 here will be valid. */
3194 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
3196 case tcc_exceptional
:
3197 if (code
== TREE_LIST
)
3198 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp
))
3199 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp
)));
3204 case tcc_comparison
:
3205 case tcc_expression
:
3209 /* Ignoring the first operand isn't quite right, but works best. */
3210 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1));
3213 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
3214 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1))
3215 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 2)));
3218 /* The save_expr function never wraps anything containing
3219 a PLACEHOLDER_EXPR. */
3226 switch (TREE_CODE_LENGTH (code
))
3229 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
3231 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
3232 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1)));
3243 const_call_expr_arg_iterator iter
;
3244 FOR_EACH_CONST_CALL_EXPR_ARG (arg
, iter
, exp
)
3245 if (CONTAINS_PLACEHOLDER_P (arg
))
3259 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3260 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3264 type_contains_placeholder_1 (const_tree type
)
3266 /* If the size contains a placeholder or the parent type (component type in
3267 the case of arrays) type involves a placeholder, this type does. */
3268 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type
))
3269 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type
))
3270 || (!POINTER_TYPE_P (type
)
3272 && type_contains_placeholder_p (TREE_TYPE (type
))))
3275 /* Now do type-specific checks. Note that the last part of the check above
3276 greatly limits what we have to do below. */
3277 switch (TREE_CODE (type
))
3280 case POINTER_BOUNDS_TYPE
:
3286 case REFERENCE_TYPE
:
3295 case FIXED_POINT_TYPE
:
3296 /* Here we just check the bounds. */
3297 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type
))
3298 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type
)));
3301 /* We have already checked the component type above, so just check the
3303 return type_contains_placeholder_p (TYPE_DOMAIN (type
));
3307 case QUAL_UNION_TYPE
:
3311 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
3312 if (TREE_CODE (field
) == FIELD_DECL
3313 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field
))
3314 || (TREE_CODE (type
) == QUAL_UNION_TYPE
3315 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field
)))
3316 || type_contains_placeholder_p (TREE_TYPE (field
))))
3327 /* Wrapper around above function used to cache its result. */
3330 type_contains_placeholder_p (tree type
)
3334 /* If the contains_placeholder_bits field has been initialized,
3335 then we know the answer. */
3336 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) > 0)
3337 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) - 1;
3339 /* Indicate that we've seen this type node, and the answer is false.
3340 This is what we want to return if we run into recursion via fields. */
3341 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = 1;
3343 /* Compute the real value. */
3344 result
= type_contains_placeholder_1 (type
);
3346 /* Store the real value. */
3347 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = result
+ 1;
3352 /* Push tree EXP onto vector QUEUE if it is not already present. */
3355 push_without_duplicates (tree exp
, vec
<tree
> *queue
)
3360 FOR_EACH_VEC_ELT (*queue
, i
, iter
)
3361 if (simple_cst_equal (iter
, exp
) == 1)
3365 queue
->safe_push (exp
);
3368 /* Given a tree EXP, find all occurrences of references to fields
3369 in a PLACEHOLDER_EXPR and place them in vector REFS without
3370 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3371 we assume here that EXP contains only arithmetic expressions
3372 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3376 find_placeholder_in_expr (tree exp
, vec
<tree
> *refs
)
3378 enum tree_code code
= TREE_CODE (exp
);
3382 /* We handle TREE_LIST and COMPONENT_REF separately. */
3383 if (code
== TREE_LIST
)
3385 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), refs
);
3386 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), refs
);
3388 else if (code
== COMPONENT_REF
)
3390 for (inner
= TREE_OPERAND (exp
, 0);
3391 REFERENCE_CLASS_P (inner
);
3392 inner
= TREE_OPERAND (inner
, 0))
3395 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
)
3396 push_without_duplicates (exp
, refs
);
3398 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), refs
);
3401 switch (TREE_CODE_CLASS (code
))
3406 case tcc_declaration
:
3407 /* Variables allocated to static storage can stay. */
3408 if (!TREE_STATIC (exp
))
3409 push_without_duplicates (exp
, refs
);
3412 case tcc_expression
:
3413 /* This is the pattern built in ada/make_aligning_type. */
3414 if (code
== ADDR_EXPR
3415 && TREE_CODE (TREE_OPERAND (exp
, 0)) == PLACEHOLDER_EXPR
)
3417 push_without_duplicates (exp
, refs
);
3421 /* Fall through... */
3423 case tcc_exceptional
:
3426 case tcc_comparison
:
3428 for (i
= 0; i
< TREE_CODE_LENGTH (code
); i
++)
3429 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3433 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3434 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3442 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3443 return a tree with all occurrences of references to F in a
3444 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3445 CONST_DECLs. Note that we assume here that EXP contains only
3446 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3447 occurring only in their argument list. */
3450 substitute_in_expr (tree exp
, tree f
, tree r
)
3452 enum tree_code code
= TREE_CODE (exp
);
3453 tree op0
, op1
, op2
, op3
;
3456 /* We handle TREE_LIST and COMPONENT_REF separately. */
3457 if (code
== TREE_LIST
)
3459 op0
= SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp
), f
, r
);
3460 op1
= SUBSTITUTE_IN_EXPR (TREE_VALUE (exp
), f
, r
);
3461 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3464 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3466 else if (code
== COMPONENT_REF
)
3470 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3471 and it is the right field, replace it with R. */
3472 for (inner
= TREE_OPERAND (exp
, 0);
3473 REFERENCE_CLASS_P (inner
);
3474 inner
= TREE_OPERAND (inner
, 0))
3478 op1
= TREE_OPERAND (exp
, 1);
3480 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& op1
== f
)
3483 /* If this expression hasn't been completed let, leave it alone. */
3484 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& !TREE_TYPE (inner
))
3487 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3488 if (op0
== TREE_OPERAND (exp
, 0))
3492 = fold_build3 (COMPONENT_REF
, TREE_TYPE (exp
), op0
, op1
, NULL_TREE
);
3495 switch (TREE_CODE_CLASS (code
))
3500 case tcc_declaration
:
3506 case tcc_expression
:
3510 /* Fall through... */
3512 case tcc_exceptional
:
3515 case tcc_comparison
:
3517 switch (TREE_CODE_LENGTH (code
))
3523 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3524 if (op0
== TREE_OPERAND (exp
, 0))
3527 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3531 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3532 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3534 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3537 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3541 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3542 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3543 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3545 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3546 && op2
== TREE_OPERAND (exp
, 2))
3549 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3553 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3554 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3555 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3556 op3
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 3), f
, r
);
3558 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3559 && op2
== TREE_OPERAND (exp
, 2)
3560 && op3
== TREE_OPERAND (exp
, 3))
3564 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3576 new_tree
= NULL_TREE
;
3578 /* If we are trying to replace F with a constant, inline back
3579 functions which do nothing else than computing a value from
3580 the arguments they are passed. This makes it possible to
3581 fold partially or entirely the replacement expression. */
3582 if (CONSTANT_CLASS_P (r
) && code
== CALL_EXPR
)
3584 tree t
= maybe_inline_call_in_expr (exp
);
3586 return SUBSTITUTE_IN_EXPR (t
, f
, r
);
3589 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3591 tree op
= TREE_OPERAND (exp
, i
);
3592 tree new_op
= SUBSTITUTE_IN_EXPR (op
, f
, r
);
3596 new_tree
= copy_node (exp
);
3597 TREE_OPERAND (new_tree
, i
) = new_op
;
3603 new_tree
= fold (new_tree
);
3604 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3605 process_call_operands (new_tree
);
3616 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3618 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3619 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3624 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3625 for it within OBJ, a tree that is an object or a chain of references. */
3628 substitute_placeholder_in_expr (tree exp
, tree obj
)
3630 enum tree_code code
= TREE_CODE (exp
);
3631 tree op0
, op1
, op2
, op3
;
3634 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3635 in the chain of OBJ. */
3636 if (code
== PLACEHOLDER_EXPR
)
3638 tree need_type
= TYPE_MAIN_VARIANT (TREE_TYPE (exp
));
3641 for (elt
= obj
; elt
!= 0;
3642 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3643 || TREE_CODE (elt
) == COND_EXPR
)
3644 ? TREE_OPERAND (elt
, 1)
3645 : (REFERENCE_CLASS_P (elt
)
3646 || UNARY_CLASS_P (elt
)
3647 || BINARY_CLASS_P (elt
)
3648 || VL_EXP_CLASS_P (elt
)
3649 || EXPRESSION_CLASS_P (elt
))
3650 ? TREE_OPERAND (elt
, 0) : 0))
3651 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt
)) == need_type
)
3654 for (elt
= obj
; elt
!= 0;
3655 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3656 || TREE_CODE (elt
) == COND_EXPR
)
3657 ? TREE_OPERAND (elt
, 1)
3658 : (REFERENCE_CLASS_P (elt
)
3659 || UNARY_CLASS_P (elt
)
3660 || BINARY_CLASS_P (elt
)
3661 || VL_EXP_CLASS_P (elt
)
3662 || EXPRESSION_CLASS_P (elt
))
3663 ? TREE_OPERAND (elt
, 0) : 0))
3664 if (POINTER_TYPE_P (TREE_TYPE (elt
))
3665 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt
)))
3667 return fold_build1 (INDIRECT_REF
, need_type
, elt
);
3669 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3670 survives until RTL generation, there will be an error. */
3674 /* TREE_LIST is special because we need to look at TREE_VALUE
3675 and TREE_CHAIN, not TREE_OPERANDS. */
3676 else if (code
== TREE_LIST
)
3678 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), obj
);
3679 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), obj
);
3680 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3683 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3686 switch (TREE_CODE_CLASS (code
))
3689 case tcc_declaration
:
3692 case tcc_exceptional
:
3695 case tcc_comparison
:
3696 case tcc_expression
:
3699 switch (TREE_CODE_LENGTH (code
))
3705 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3706 if (op0
== TREE_OPERAND (exp
, 0))
3709 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3713 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3714 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3716 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3719 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3723 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3724 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3725 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3727 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3728 && op2
== TREE_OPERAND (exp
, 2))
3731 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3735 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3736 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3737 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3738 op3
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 3), obj
);
3740 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3741 && op2
== TREE_OPERAND (exp
, 2)
3742 && op3
== TREE_OPERAND (exp
, 3))
3746 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3758 new_tree
= NULL_TREE
;
3760 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3762 tree op
= TREE_OPERAND (exp
, i
);
3763 tree new_op
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (op
, obj
);
3767 new_tree
= copy_node (exp
);
3768 TREE_OPERAND (new_tree
, i
) = new_op
;
3774 new_tree
= fold (new_tree
);
3775 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3776 process_call_operands (new_tree
);
3787 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3789 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3790 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3796 /* Subroutine of stabilize_reference; this is called for subtrees of
3797 references. Any expression with side-effects must be put in a SAVE_EXPR
3798 to ensure that it is only evaluated once.
3800 We don't put SAVE_EXPR nodes around everything, because assigning very
3801 simple expressions to temporaries causes us to miss good opportunities
3802 for optimizations. Among other things, the opportunity to fold in the
3803 addition of a constant into an addressing mode often gets lost, e.g.
3804 "y[i+1] += x;". In general, we take the approach that we should not make
3805 an assignment unless we are forced into it - i.e., that any non-side effect
3806 operator should be allowed, and that cse should take care of coalescing
3807 multiple utterances of the same expression should that prove fruitful. */
3810 stabilize_reference_1 (tree e
)
3813 enum tree_code code
= TREE_CODE (e
);
3815 /* We cannot ignore const expressions because it might be a reference
3816 to a const array but whose index contains side-effects. But we can
3817 ignore things that are actual constant or that already have been
3818 handled by this function. */
3820 if (tree_invariant_p (e
))
3823 switch (TREE_CODE_CLASS (code
))
3825 case tcc_exceptional
:
3827 case tcc_declaration
:
3828 case tcc_comparison
:
3830 case tcc_expression
:
3833 /* If the expression has side-effects, then encase it in a SAVE_EXPR
3834 so that it will only be evaluated once. */
3835 /* The reference (r) and comparison (<) classes could be handled as
3836 below, but it is generally faster to only evaluate them once. */
3837 if (TREE_SIDE_EFFECTS (e
))
3838 return save_expr (e
);
3842 /* Constants need no processing. In fact, we should never reach
3847 /* Division is slow and tends to be compiled with jumps,
3848 especially the division by powers of 2 that is often
3849 found inside of an array reference. So do it just once. */
3850 if (code
== TRUNC_DIV_EXPR
|| code
== TRUNC_MOD_EXPR
3851 || code
== FLOOR_DIV_EXPR
|| code
== FLOOR_MOD_EXPR
3852 || code
== CEIL_DIV_EXPR
|| code
== CEIL_MOD_EXPR
3853 || code
== ROUND_DIV_EXPR
|| code
== ROUND_MOD_EXPR
)
3854 return save_expr (e
);
3855 /* Recursively stabilize each operand. */
3856 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)),
3857 stabilize_reference_1 (TREE_OPERAND (e
, 1)));
3861 /* Recursively stabilize each operand. */
3862 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)));
3869 TREE_TYPE (result
) = TREE_TYPE (e
);
3870 TREE_READONLY (result
) = TREE_READONLY (e
);
3871 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (e
);
3872 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (e
);
3877 /* Stabilize a reference so that we can use it any number of times
3878 without causing its operands to be evaluated more than once.
3879 Returns the stabilized reference. This works by means of save_expr,
3880 so see the caveats in the comments about save_expr.
3882 Also allows conversion expressions whose operands are references.
3883 Any other kind of expression is returned unchanged. */
3886 stabilize_reference (tree ref
)
3889 enum tree_code code
= TREE_CODE (ref
);
3896 /* No action is needed in this case. */
3901 case FIX_TRUNC_EXPR
:
3902 result
= build_nt (code
, stabilize_reference (TREE_OPERAND (ref
, 0)));
3906 result
= build_nt (INDIRECT_REF
,
3907 stabilize_reference_1 (TREE_OPERAND (ref
, 0)));
3911 result
= build_nt (COMPONENT_REF
,
3912 stabilize_reference (TREE_OPERAND (ref
, 0)),
3913 TREE_OPERAND (ref
, 1), NULL_TREE
);
3917 result
= build_nt (BIT_FIELD_REF
,
3918 stabilize_reference (TREE_OPERAND (ref
, 0)),
3919 TREE_OPERAND (ref
, 1), TREE_OPERAND (ref
, 2));
3923 result
= build_nt (ARRAY_REF
,
3924 stabilize_reference (TREE_OPERAND (ref
, 0)),
3925 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3926 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
3929 case ARRAY_RANGE_REF
:
3930 result
= build_nt (ARRAY_RANGE_REF
,
3931 stabilize_reference (TREE_OPERAND (ref
, 0)),
3932 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3933 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
3937 /* We cannot wrap the first expression in a SAVE_EXPR, as then
3938 it wouldn't be ignored. This matters when dealing with
3940 return stabilize_reference_1 (ref
);
3942 /* If arg isn't a kind of lvalue we recognize, make no change.
3943 Caller should recognize the error for an invalid lvalue. */
3948 return error_mark_node
;
3951 TREE_TYPE (result
) = TREE_TYPE (ref
);
3952 TREE_READONLY (result
) = TREE_READONLY (ref
);
3953 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (ref
);
3954 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (ref
);
3959 /* Low-level constructors for expressions. */
3961 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
3962 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
3965 recompute_tree_invariant_for_addr_expr (tree t
)
3968 bool tc
= true, se
= false;
3970 /* We started out assuming this address is both invariant and constant, but
3971 does not have side effects. Now go down any handled components and see if
3972 any of them involve offsets that are either non-constant or non-invariant.
3973 Also check for side-effects.
3975 ??? Note that this code makes no attempt to deal with the case where
3976 taking the address of something causes a copy due to misalignment. */
3978 #define UPDATE_FLAGS(NODE) \
3979 do { tree _node = (NODE); \
3980 if (_node && !TREE_CONSTANT (_node)) tc = false; \
3981 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
3983 for (node
= TREE_OPERAND (t
, 0); handled_component_p (node
);
3984 node
= TREE_OPERAND (node
, 0))
3986 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
3987 array reference (probably made temporarily by the G++ front end),
3988 so ignore all the operands. */
3989 if ((TREE_CODE (node
) == ARRAY_REF
3990 || TREE_CODE (node
) == ARRAY_RANGE_REF
)
3991 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node
, 0))) == ARRAY_TYPE
)
3993 UPDATE_FLAGS (TREE_OPERAND (node
, 1));
3994 if (TREE_OPERAND (node
, 2))
3995 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
3996 if (TREE_OPERAND (node
, 3))
3997 UPDATE_FLAGS (TREE_OPERAND (node
, 3));
3999 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4000 FIELD_DECL, apparently. The G++ front end can put something else
4001 there, at least temporarily. */
4002 else if (TREE_CODE (node
) == COMPONENT_REF
4003 && TREE_CODE (TREE_OPERAND (node
, 1)) == FIELD_DECL
)
4005 if (TREE_OPERAND (node
, 2))
4006 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
4010 node
= lang_hooks
.expr_to_decl (node
, &tc
, &se
);
4012 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4013 the address, since &(*a)->b is a form of addition. If it's a constant, the
4014 address is constant too. If it's a decl, its address is constant if the
4015 decl is static. Everything else is not constant and, furthermore,
4016 taking the address of a volatile variable is not volatile. */
4017 if (TREE_CODE (node
) == INDIRECT_REF
4018 || TREE_CODE (node
) == MEM_REF
)
4019 UPDATE_FLAGS (TREE_OPERAND (node
, 0));
4020 else if (CONSTANT_CLASS_P (node
))
4022 else if (DECL_P (node
))
4023 tc
&= (staticp (node
) != NULL_TREE
);
4027 se
|= TREE_SIDE_EFFECTS (node
);
4031 TREE_CONSTANT (t
) = tc
;
4032 TREE_SIDE_EFFECTS (t
) = se
;
4036 /* Build an expression of code CODE, data type TYPE, and operands as
4037 specified. Expressions and reference nodes can be created this way.
4038 Constants, decls, types and misc nodes cannot be.
4040 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4041 enough for all extant tree codes. */
4044 build0_stat (enum tree_code code
, tree tt MEM_STAT_DECL
)
4048 gcc_assert (TREE_CODE_LENGTH (code
) == 0);
4050 t
= make_node_stat (code PASS_MEM_STAT
);
4057 build1_stat (enum tree_code code
, tree type
, tree node MEM_STAT_DECL
)
4059 int length
= sizeof (struct tree_exp
);
4062 record_node_allocation_statistics (code
, length
);
4064 gcc_assert (TREE_CODE_LENGTH (code
) == 1);
4066 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
4068 memset (t
, 0, sizeof (struct tree_common
));
4070 TREE_SET_CODE (t
, code
);
4072 TREE_TYPE (t
) = type
;
4073 SET_EXPR_LOCATION (t
, UNKNOWN_LOCATION
);
4074 TREE_OPERAND (t
, 0) = node
;
4075 if (node
&& !TYPE_P (node
))
4077 TREE_SIDE_EFFECTS (t
) = TREE_SIDE_EFFECTS (node
);
4078 TREE_READONLY (t
) = TREE_READONLY (node
);
4081 if (TREE_CODE_CLASS (code
) == tcc_statement
)
4082 TREE_SIDE_EFFECTS (t
) = 1;
4086 /* All of these have side-effects, no matter what their
4088 TREE_SIDE_EFFECTS (t
) = 1;
4089 TREE_READONLY (t
) = 0;
4093 /* Whether a dereference is readonly has nothing to do with whether
4094 its operand is readonly. */
4095 TREE_READONLY (t
) = 0;
4100 recompute_tree_invariant_for_addr_expr (t
);
4104 if ((TREE_CODE_CLASS (code
) == tcc_unary
|| code
== VIEW_CONVERT_EXPR
)
4105 && node
&& !TYPE_P (node
)
4106 && TREE_CONSTANT (node
))
4107 TREE_CONSTANT (t
) = 1;
4108 if (TREE_CODE_CLASS (code
) == tcc_reference
4109 && node
&& TREE_THIS_VOLATILE (node
))
4110 TREE_THIS_VOLATILE (t
) = 1;
4117 #define PROCESS_ARG(N) \
4119 TREE_OPERAND (t, N) = arg##N; \
4120 if (arg##N &&!TYPE_P (arg##N)) \
4122 if (TREE_SIDE_EFFECTS (arg##N)) \
4124 if (!TREE_READONLY (arg##N) \
4125 && !CONSTANT_CLASS_P (arg##N)) \
4126 (void) (read_only = 0); \
4127 if (!TREE_CONSTANT (arg##N)) \
4128 (void) (constant = 0); \
4133 build2_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1 MEM_STAT_DECL
)
4135 bool constant
, read_only
, side_effects
;
4138 gcc_assert (TREE_CODE_LENGTH (code
) == 2);
4140 if ((code
== MINUS_EXPR
|| code
== PLUS_EXPR
|| code
== MULT_EXPR
)
4141 && arg0
&& arg1
&& tt
&& POINTER_TYPE_P (tt
)
4142 /* When sizetype precision doesn't match that of pointers
4143 we need to be able to build explicit extensions or truncations
4144 of the offset argument. */
4145 && TYPE_PRECISION (sizetype
) == TYPE_PRECISION (tt
))
4146 gcc_assert (TREE_CODE (arg0
) == INTEGER_CST
4147 && TREE_CODE (arg1
) == INTEGER_CST
);
4149 if (code
== POINTER_PLUS_EXPR
&& arg0
&& arg1
&& tt
)
4150 gcc_assert (POINTER_TYPE_P (tt
) && POINTER_TYPE_P (TREE_TYPE (arg0
))
4151 && ptrofftype_p (TREE_TYPE (arg1
)));
4153 t
= make_node_stat (code PASS_MEM_STAT
);
4156 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4157 result based on those same flags for the arguments. But if the
4158 arguments aren't really even `tree' expressions, we shouldn't be trying
4161 /* Expressions without side effects may be constant if their
4162 arguments are as well. */
4163 constant
= (TREE_CODE_CLASS (code
) == tcc_comparison
4164 || TREE_CODE_CLASS (code
) == tcc_binary
);
4166 side_effects
= TREE_SIDE_EFFECTS (t
);
4171 TREE_READONLY (t
) = read_only
;
4172 TREE_CONSTANT (t
) = constant
;
4173 TREE_SIDE_EFFECTS (t
) = side_effects
;
4174 TREE_THIS_VOLATILE (t
)
4175 = (TREE_CODE_CLASS (code
) == tcc_reference
4176 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4183 build3_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4184 tree arg2 MEM_STAT_DECL
)
4186 bool constant
, read_only
, side_effects
;
4189 gcc_assert (TREE_CODE_LENGTH (code
) == 3);
4190 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
4192 t
= make_node_stat (code PASS_MEM_STAT
);
4197 /* As a special exception, if COND_EXPR has NULL branches, we
4198 assume that it is a gimple statement and always consider
4199 it to have side effects. */
4200 if (code
== COND_EXPR
4201 && tt
== void_type_node
4202 && arg1
== NULL_TREE
4203 && arg2
== NULL_TREE
)
4204 side_effects
= true;
4206 side_effects
= TREE_SIDE_EFFECTS (t
);
4212 if (code
== COND_EXPR
)
4213 TREE_READONLY (t
) = read_only
;
4215 TREE_SIDE_EFFECTS (t
) = side_effects
;
4216 TREE_THIS_VOLATILE (t
)
4217 = (TREE_CODE_CLASS (code
) == tcc_reference
4218 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4224 build4_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4225 tree arg2
, tree arg3 MEM_STAT_DECL
)
4227 bool constant
, read_only
, side_effects
;
4230 gcc_assert (TREE_CODE_LENGTH (code
) == 4);
4232 t
= make_node_stat (code PASS_MEM_STAT
);
4235 side_effects
= TREE_SIDE_EFFECTS (t
);
4242 TREE_SIDE_EFFECTS (t
) = side_effects
;
4243 TREE_THIS_VOLATILE (t
)
4244 = (TREE_CODE_CLASS (code
) == tcc_reference
4245 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4251 build5_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4252 tree arg2
, tree arg3
, tree arg4 MEM_STAT_DECL
)
4254 bool constant
, read_only
, side_effects
;
4257 gcc_assert (TREE_CODE_LENGTH (code
) == 5);
4259 t
= make_node_stat (code PASS_MEM_STAT
);
4262 side_effects
= TREE_SIDE_EFFECTS (t
);
4270 TREE_SIDE_EFFECTS (t
) = side_effects
;
4271 TREE_THIS_VOLATILE (t
)
4272 = (TREE_CODE_CLASS (code
) == tcc_reference
4273 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4278 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4279 on the pointer PTR. */
4282 build_simple_mem_ref_loc (location_t loc
, tree ptr
)
4284 HOST_WIDE_INT offset
= 0;
4285 tree ptype
= TREE_TYPE (ptr
);
4287 /* For convenience allow addresses that collapse to a simple base
4289 if (TREE_CODE (ptr
) == ADDR_EXPR
4290 && (handled_component_p (TREE_OPERAND (ptr
, 0))
4291 || TREE_CODE (TREE_OPERAND (ptr
, 0)) == MEM_REF
))
4293 ptr
= get_addr_base_and_unit_offset (TREE_OPERAND (ptr
, 0), &offset
);
4295 ptr
= build_fold_addr_expr (ptr
);
4296 gcc_assert (is_gimple_reg (ptr
) || is_gimple_min_invariant (ptr
));
4298 tem
= build2 (MEM_REF
, TREE_TYPE (ptype
),
4299 ptr
, build_int_cst (ptype
, offset
));
4300 SET_EXPR_LOCATION (tem
, loc
);
4304 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4307 mem_ref_offset (const_tree t
)
4309 tree toff
= TREE_OPERAND (t
, 1);
4310 return tree_to_double_int (toff
).sext (TYPE_PRECISION (TREE_TYPE (toff
)));
4313 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4314 offsetted by OFFSET units. */
4317 build_invariant_address (tree type
, tree base
, HOST_WIDE_INT offset
)
4319 tree ref
= fold_build2 (MEM_REF
, TREE_TYPE (type
),
4320 build_fold_addr_expr (base
),
4321 build_int_cst (ptr_type_node
, offset
));
4322 tree addr
= build1 (ADDR_EXPR
, type
, ref
);
4323 recompute_tree_invariant_for_addr_expr (addr
);
4327 /* Similar except don't specify the TREE_TYPE
4328 and leave the TREE_SIDE_EFFECTS as 0.
4329 It is permissible for arguments to be null,
4330 or even garbage if their values do not matter. */
4333 build_nt (enum tree_code code
, ...)
4340 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
4344 t
= make_node (code
);
4345 length
= TREE_CODE_LENGTH (code
);
4347 for (i
= 0; i
< length
; i
++)
4348 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
4354 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4358 build_nt_call_vec (tree fn
, vec
<tree
, va_gc
> *args
)
4363 ret
= build_vl_exp (CALL_EXPR
, vec_safe_length (args
) + 3);
4364 CALL_EXPR_FN (ret
) = fn
;
4365 CALL_EXPR_STATIC_CHAIN (ret
) = NULL_TREE
;
4366 FOR_EACH_VEC_SAFE_ELT (args
, ix
, t
)
4367 CALL_EXPR_ARG (ret
, ix
) = t
;
4371 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4372 We do NOT enter this node in any sort of symbol table.
4374 LOC is the location of the decl.
4376 layout_decl is used to set up the decl's storage layout.
4377 Other slots are initialized to 0 or null pointers. */
4380 build_decl_stat (location_t loc
, enum tree_code code
, tree name
,
4381 tree type MEM_STAT_DECL
)
4385 t
= make_node_stat (code PASS_MEM_STAT
);
4386 DECL_SOURCE_LOCATION (t
) = loc
;
4388 /* if (type == error_mark_node)
4389 type = integer_type_node; */
4390 /* That is not done, deliberately, so that having error_mark_node
4391 as the type can suppress useless errors in the use of this variable. */
4393 DECL_NAME (t
) = name
;
4394 TREE_TYPE (t
) = type
;
4396 if (code
== VAR_DECL
|| code
== PARM_DECL
|| code
== RESULT_DECL
)
4402 /* Builds and returns function declaration with NAME and TYPE. */
4405 build_fn_decl (const char *name
, tree type
)
4407 tree id
= get_identifier (name
);
4408 tree decl
= build_decl (input_location
, FUNCTION_DECL
, id
, type
);
4410 DECL_EXTERNAL (decl
) = 1;
4411 TREE_PUBLIC (decl
) = 1;
4412 DECL_ARTIFICIAL (decl
) = 1;
4413 TREE_NOTHROW (decl
) = 1;
4418 vec
<tree
, va_gc
> *all_translation_units
;
4420 /* Builds a new translation-unit decl with name NAME, queues it in the
4421 global list of translation-unit decls and returns it. */
4424 build_translation_unit_decl (tree name
)
4426 tree tu
= build_decl (UNKNOWN_LOCATION
, TRANSLATION_UNIT_DECL
,
4428 TRANSLATION_UNIT_LANGUAGE (tu
) = lang_hooks
.name
;
4429 vec_safe_push (all_translation_units
, tu
);
4434 /* BLOCK nodes are used to represent the structure of binding contours
4435 and declarations, once those contours have been exited and their contents
4436 compiled. This information is used for outputting debugging info. */
4439 build_block (tree vars
, tree subblocks
, tree supercontext
, tree chain
)
4441 tree block
= make_node (BLOCK
);
4443 BLOCK_VARS (block
) = vars
;
4444 BLOCK_SUBBLOCKS (block
) = subblocks
;
4445 BLOCK_SUPERCONTEXT (block
) = supercontext
;
4446 BLOCK_CHAIN (block
) = chain
;
4451 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4453 LOC is the location to use in tree T. */
4456 protected_set_expr_location (tree t
, location_t loc
)
4458 if (t
&& CAN_HAVE_LOCATION_P (t
))
4459 SET_EXPR_LOCATION (t
, loc
);
4462 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
4466 build_decl_attribute_variant (tree ddecl
, tree attribute
)
4468 DECL_ATTRIBUTES (ddecl
) = attribute
;
4472 /* Borrowed from hashtab.c iterative_hash implementation. */
4473 #define mix(a,b,c) \
4475 a -= b; a -= c; a ^= (c>>13); \
4476 b -= c; b -= a; b ^= (a<< 8); \
4477 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
4478 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
4479 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
4480 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
4481 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
4482 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
4483 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
4487 /* Produce good hash value combining VAL and VAL2. */
4489 iterative_hash_hashval_t (hashval_t val
, hashval_t val2
)
4491 /* the golden ratio; an arbitrary value. */
4492 hashval_t a
= 0x9e3779b9;
4498 /* Produce good hash value combining VAL and VAL2. */
4500 iterative_hash_host_wide_int (HOST_WIDE_INT val
, hashval_t val2
)
4502 if (sizeof (HOST_WIDE_INT
) == sizeof (hashval_t
))
4503 return iterative_hash_hashval_t (val
, val2
);
4506 hashval_t a
= (hashval_t
) val
;
4507 /* Avoid warnings about shifting of more than the width of the type on
4508 hosts that won't execute this path. */
4510 hashval_t b
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 8 + zero
));
4512 if (sizeof (HOST_WIDE_INT
) > 2 * sizeof (hashval_t
))
4514 hashval_t a
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 16 + zero
));
4515 hashval_t b
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 24 + zero
));
4522 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4523 is ATTRIBUTE and its qualifiers are QUALS.
4525 Record such modified types already made so we don't make duplicates. */
4528 build_type_attribute_qual_variant (tree ttype
, tree attribute
, int quals
)
4530 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype
), attribute
))
4532 hashval_t hashcode
= 0;
4534 enum tree_code code
= TREE_CODE (ttype
);
4536 /* Building a distinct copy of a tagged type is inappropriate; it
4537 causes breakage in code that expects there to be a one-to-one
4538 relationship between a struct and its fields.
4539 build_duplicate_type is another solution (as used in
4540 handle_transparent_union_attribute), but that doesn't play well
4541 with the stronger C++ type identity model. */
4542 if (TREE_CODE (ttype
) == RECORD_TYPE
4543 || TREE_CODE (ttype
) == UNION_TYPE
4544 || TREE_CODE (ttype
) == QUAL_UNION_TYPE
4545 || TREE_CODE (ttype
) == ENUMERAL_TYPE
)
4547 warning (OPT_Wattributes
,
4548 "ignoring attributes applied to %qT after definition",
4549 TYPE_MAIN_VARIANT (ttype
));
4550 return build_qualified_type (ttype
, quals
);
4553 ttype
= build_qualified_type (ttype
, TYPE_UNQUALIFIED
);
4554 ntype
= build_distinct_type_copy (ttype
);
4556 TYPE_ATTRIBUTES (ntype
) = attribute
;
4558 hashcode
= iterative_hash_object (code
, hashcode
);
4559 if (TREE_TYPE (ntype
))
4560 hashcode
= iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype
)),
4562 hashcode
= attribute_hash_list (attribute
, hashcode
);
4564 switch (TREE_CODE (ntype
))
4567 hashcode
= type_hash_list (TYPE_ARG_TYPES (ntype
), hashcode
);
4570 if (TYPE_DOMAIN (ntype
))
4571 hashcode
= iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype
)),
4575 hashcode
= iterative_hash_object
4576 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype
)), hashcode
);
4577 hashcode
= iterative_hash_object
4578 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype
)), hashcode
);
4581 case FIXED_POINT_TYPE
:
4583 unsigned int precision
= TYPE_PRECISION (ntype
);
4584 hashcode
= iterative_hash_object (precision
, hashcode
);
4591 ntype
= type_hash_canon (hashcode
, ntype
);
4593 /* If the target-dependent attributes make NTYPE different from
4594 its canonical type, we will need to use structural equality
4595 checks for this type. */
4596 if (TYPE_STRUCTURAL_EQUALITY_P (ttype
)
4597 || !comp_type_attributes (ntype
, ttype
))
4598 SET_TYPE_STRUCTURAL_EQUALITY (ntype
);
4599 else if (TYPE_CANONICAL (ntype
) == ntype
)
4600 TYPE_CANONICAL (ntype
) = TYPE_CANONICAL (ttype
);
4602 ttype
= build_qualified_type (ntype
, quals
);
4604 else if (TYPE_QUALS (ttype
) != quals
)
4605 ttype
= build_qualified_type (ttype
, quals
);
4610 /* Check if "omp declare simd" attribute arguments, CLAUSES1 and CLAUSES2, are
4614 omp_declare_simd_clauses_equal (tree clauses1
, tree clauses2
)
4617 for (cl1
= clauses1
, cl2
= clauses2
;
4619 cl1
= OMP_CLAUSE_CHAIN (cl1
), cl2
= OMP_CLAUSE_CHAIN (cl2
))
4621 if (OMP_CLAUSE_CODE (cl1
) != OMP_CLAUSE_CODE (cl2
))
4623 if (OMP_CLAUSE_CODE (cl1
) != OMP_CLAUSE_SIMDLEN
)
4625 if (simple_cst_equal (OMP_CLAUSE_DECL (cl1
),
4626 OMP_CLAUSE_DECL (cl2
)) != 1)
4629 switch (OMP_CLAUSE_CODE (cl1
))
4631 case OMP_CLAUSE_ALIGNED
:
4632 if (simple_cst_equal (OMP_CLAUSE_ALIGNED_ALIGNMENT (cl1
),
4633 OMP_CLAUSE_ALIGNED_ALIGNMENT (cl2
)) != 1)
4636 case OMP_CLAUSE_LINEAR
:
4637 if (simple_cst_equal (OMP_CLAUSE_LINEAR_STEP (cl1
),
4638 OMP_CLAUSE_LINEAR_STEP (cl2
)) != 1)
4641 case OMP_CLAUSE_SIMDLEN
:
4642 if (simple_cst_equal (OMP_CLAUSE_SIMDLEN_EXPR (cl1
),
4643 OMP_CLAUSE_SIMDLEN_EXPR (cl2
)) != 1)
4652 /* Compare two constructor-element-type constants. Return 1 if the lists
4653 are known to be equal; otherwise return 0. */
4656 simple_cst_list_equal (const_tree l1
, const_tree l2
)
4658 while (l1
!= NULL_TREE
&& l2
!= NULL_TREE
)
4660 if (simple_cst_equal (TREE_VALUE (l1
), TREE_VALUE (l2
)) != 1)
4663 l1
= TREE_CHAIN (l1
);
4664 l2
= TREE_CHAIN (l2
);
4670 /* Compare two attributes for their value identity. Return true if the
4671 attribute values are known to be equal; otherwise return false.
4675 attribute_value_equal (const_tree attr1
, const_tree attr2
)
4677 if (TREE_VALUE (attr1
) == TREE_VALUE (attr2
))
4680 if (TREE_VALUE (attr1
) != NULL_TREE
4681 && TREE_CODE (TREE_VALUE (attr1
)) == TREE_LIST
4682 && TREE_VALUE (attr2
) != NULL
4683 && TREE_CODE (TREE_VALUE (attr2
)) == TREE_LIST
)
4684 return (simple_cst_list_equal (TREE_VALUE (attr1
),
4685 TREE_VALUE (attr2
)) == 1);
4687 if ((flag_openmp
|| flag_openmp_simd
)
4688 && TREE_VALUE (attr1
) && TREE_VALUE (attr2
)
4689 && TREE_CODE (TREE_VALUE (attr1
)) == OMP_CLAUSE
4690 && TREE_CODE (TREE_VALUE (attr2
)) == OMP_CLAUSE
)
4691 return omp_declare_simd_clauses_equal (TREE_VALUE (attr1
),
4692 TREE_VALUE (attr2
));
4694 return (simple_cst_equal (TREE_VALUE (attr1
), TREE_VALUE (attr2
)) == 1);
4697 /* Return 0 if the attributes for two types are incompatible, 1 if they
4698 are compatible, and 2 if they are nearly compatible (which causes a
4699 warning to be generated). */
4701 comp_type_attributes (const_tree type1
, const_tree type2
)
4703 const_tree a1
= TYPE_ATTRIBUTES (type1
);
4704 const_tree a2
= TYPE_ATTRIBUTES (type2
);
4709 for (a
= a1
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
4711 const struct attribute_spec
*as
;
4714 as
= lookup_attribute_spec (get_attribute_name (a
));
4715 if (!as
|| as
->affects_type_identity
== false)
4718 attr
= lookup_attribute (as
->name
, CONST_CAST_TREE (a2
));
4719 if (!attr
|| !attribute_value_equal (a
, attr
))
4724 for (a
= a2
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
4726 const struct attribute_spec
*as
;
4728 as
= lookup_attribute_spec (get_attribute_name (a
));
4729 if (!as
|| as
->affects_type_identity
== false)
4732 if (!lookup_attribute (as
->name
, CONST_CAST_TREE (a1
)))
4734 /* We don't need to compare trees again, as we did this
4735 already in first loop. */
4737 /* All types - affecting identity - are equal, so
4738 there is no need to call target hook for comparison. */
4742 /* As some type combinations - like default calling-convention - might
4743 be compatible, we have to call the target hook to get the final result. */
4744 return targetm
.comp_type_attributes (type1
, type2
);
4747 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4750 Record such modified types already made so we don't make duplicates. */
4753 build_type_attribute_variant (tree ttype
, tree attribute
)
4755 return build_type_attribute_qual_variant (ttype
, attribute
,
4756 TYPE_QUALS (ttype
));
4760 /* Reset the expression *EXPR_P, a size or position.
4762 ??? We could reset all non-constant sizes or positions. But it's cheap
4763 enough to not do so and refrain from adding workarounds to dwarf2out.c.
4765 We need to reset self-referential sizes or positions because they cannot
4766 be gimplified and thus can contain a CALL_EXPR after the gimplification
4767 is finished, which will run afoul of LTO streaming. And they need to be
4768 reset to something essentially dummy but not constant, so as to preserve
4769 the properties of the object they are attached to. */
4772 free_lang_data_in_one_sizepos (tree
*expr_p
)
4774 tree expr
= *expr_p
;
4775 if (CONTAINS_PLACEHOLDER_P (expr
))
4776 *expr_p
= build0 (PLACEHOLDER_EXPR
, TREE_TYPE (expr
));
4780 /* Reset all the fields in a binfo node BINFO. We only keep
4781 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
4784 free_lang_data_in_binfo (tree binfo
)
4789 gcc_assert (TREE_CODE (binfo
) == TREE_BINFO
);
4791 BINFO_VIRTUALS (binfo
) = NULL_TREE
;
4792 BINFO_BASE_ACCESSES (binfo
) = NULL
;
4793 BINFO_INHERITANCE_CHAIN (binfo
) = NULL_TREE
;
4794 BINFO_SUBVTT_INDEX (binfo
) = NULL_TREE
;
4796 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo
), i
, t
)
4797 free_lang_data_in_binfo (t
);
4801 /* Reset all language specific information still present in TYPE. */
4804 free_lang_data_in_type (tree type
)
4806 gcc_assert (TYPE_P (type
));
4808 /* Give the FE a chance to remove its own data first. */
4809 lang_hooks
.free_lang_data (type
);
4811 TREE_LANG_FLAG_0 (type
) = 0;
4812 TREE_LANG_FLAG_1 (type
) = 0;
4813 TREE_LANG_FLAG_2 (type
) = 0;
4814 TREE_LANG_FLAG_3 (type
) = 0;
4815 TREE_LANG_FLAG_4 (type
) = 0;
4816 TREE_LANG_FLAG_5 (type
) = 0;
4817 TREE_LANG_FLAG_6 (type
) = 0;
4819 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4821 /* Remove the const and volatile qualifiers from arguments. The
4822 C++ front end removes them, but the C front end does not,
4823 leading to false ODR violation errors when merging two
4824 instances of the same function signature compiled by
4825 different front ends. */
4828 for (p
= TYPE_ARG_TYPES (type
); p
; p
= TREE_CHAIN (p
))
4830 tree arg_type
= TREE_VALUE (p
);
4832 if (TYPE_READONLY (arg_type
) || TYPE_VOLATILE (arg_type
))
4834 int quals
= TYPE_QUALS (arg_type
)
4836 & ~TYPE_QUAL_VOLATILE
;
4837 TREE_VALUE (p
) = build_qualified_type (arg_type
, quals
);
4838 free_lang_data_in_type (TREE_VALUE (p
));
4843 /* Remove members that are not actually FIELD_DECLs from the field
4844 list of an aggregate. These occur in C++. */
4845 if (RECORD_OR_UNION_TYPE_P (type
))
4849 /* Note that TYPE_FIELDS can be shared across distinct
4850 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
4851 to be removed, we cannot set its TREE_CHAIN to NULL.
4852 Otherwise, we would not be able to find all the other fields
4853 in the other instances of this TREE_TYPE.
4855 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
4857 member
= TYPE_FIELDS (type
);
4860 if (TREE_CODE (member
) == FIELD_DECL
4861 || TREE_CODE (member
) == TYPE_DECL
)
4864 TREE_CHAIN (prev
) = member
;
4866 TYPE_FIELDS (type
) = member
;
4870 member
= TREE_CHAIN (member
);
4874 TREE_CHAIN (prev
) = NULL_TREE
;
4876 TYPE_FIELDS (type
) = NULL_TREE
;
4878 TYPE_METHODS (type
) = NULL_TREE
;
4879 if (TYPE_BINFO (type
))
4880 free_lang_data_in_binfo (TYPE_BINFO (type
));
4884 /* For non-aggregate types, clear out the language slot (which
4885 overloads TYPE_BINFO). */
4886 TYPE_LANG_SLOT_1 (type
) = NULL_TREE
;
4888 if (INTEGRAL_TYPE_P (type
)
4889 || SCALAR_FLOAT_TYPE_P (type
)
4890 || FIXED_POINT_TYPE_P (type
))
4892 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type
));
4893 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type
));
4897 free_lang_data_in_one_sizepos (&TYPE_SIZE (type
));
4898 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type
));
4900 if (TYPE_CONTEXT (type
)
4901 && TREE_CODE (TYPE_CONTEXT (type
)) == BLOCK
)
4903 tree ctx
= TYPE_CONTEXT (type
);
4906 ctx
= BLOCK_SUPERCONTEXT (ctx
);
4908 while (ctx
&& TREE_CODE (ctx
) == BLOCK
);
4909 TYPE_CONTEXT (type
) = ctx
;
4914 /* Return true if DECL may need an assembler name to be set. */
4917 need_assembler_name_p (tree decl
)
4919 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
4920 if (TREE_CODE (decl
) != FUNCTION_DECL
4921 && TREE_CODE (decl
) != VAR_DECL
)
4924 /* If DECL already has its assembler name set, it does not need a
4926 if (!HAS_DECL_ASSEMBLER_NAME_P (decl
)
4927 || DECL_ASSEMBLER_NAME_SET_P (decl
))
4930 /* Abstract decls do not need an assembler name. */
4931 if (DECL_ABSTRACT (decl
))
4934 /* For VAR_DECLs, only static, public and external symbols need an
4936 if (TREE_CODE (decl
) == VAR_DECL
4937 && !TREE_STATIC (decl
)
4938 && !TREE_PUBLIC (decl
)
4939 && !DECL_EXTERNAL (decl
))
4942 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4944 /* Do not set assembler name on builtins. Allow RTL expansion to
4945 decide whether to expand inline or via a regular call. */
4946 if (DECL_BUILT_IN (decl
)
4947 && DECL_BUILT_IN_CLASS (decl
) != BUILT_IN_FRONTEND
)
4950 /* Functions represented in the callgraph need an assembler name. */
4951 if (cgraph_get_node (decl
) != NULL
)
4954 /* Unused and not public functions don't need an assembler name. */
4955 if (!TREE_USED (decl
) && !TREE_PUBLIC (decl
))
4963 /* Reset all language specific information still present in symbol
4967 free_lang_data_in_decl (tree decl
)
4969 gcc_assert (DECL_P (decl
));
4971 /* Give the FE a chance to remove its own data first. */
4972 lang_hooks
.free_lang_data (decl
);
4974 TREE_LANG_FLAG_0 (decl
) = 0;
4975 TREE_LANG_FLAG_1 (decl
) = 0;
4976 TREE_LANG_FLAG_2 (decl
) = 0;
4977 TREE_LANG_FLAG_3 (decl
) = 0;
4978 TREE_LANG_FLAG_4 (decl
) = 0;
4979 TREE_LANG_FLAG_5 (decl
) = 0;
4980 TREE_LANG_FLAG_6 (decl
) = 0;
4982 free_lang_data_in_one_sizepos (&DECL_SIZE (decl
));
4983 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl
));
4984 if (TREE_CODE (decl
) == FIELD_DECL
)
4986 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl
));
4987 if (TREE_CODE (DECL_CONTEXT (decl
)) == QUAL_UNION_TYPE
)
4988 DECL_QUALIFIER (decl
) = NULL_TREE
;
4991 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4993 struct cgraph_node
*node
;
4994 if (!(node
= cgraph_get_node (decl
))
4995 || (!node
->definition
&& !node
->clones
))
4998 cgraph_release_function_body (node
);
5001 release_function_body (decl
);
5002 DECL_ARGUMENTS (decl
) = NULL
;
5003 DECL_RESULT (decl
) = NULL
;
5004 DECL_INITIAL (decl
) = error_mark_node
;
5007 if (gimple_has_body_p (decl
))
5011 /* If DECL has a gimple body, then the context for its
5012 arguments must be DECL. Otherwise, it doesn't really
5013 matter, as we will not be emitting any code for DECL. In
5014 general, there may be other instances of DECL created by
5015 the front end and since PARM_DECLs are generally shared,
5016 their DECL_CONTEXT changes as the replicas of DECL are
5017 created. The only time where DECL_CONTEXT is important
5018 is for the FUNCTION_DECLs that have a gimple body (since
5019 the PARM_DECL will be used in the function's body). */
5020 for (t
= DECL_ARGUMENTS (decl
); t
; t
= TREE_CHAIN (t
))
5021 DECL_CONTEXT (t
) = decl
;
5024 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5025 At this point, it is not needed anymore. */
5026 DECL_SAVED_TREE (decl
) = NULL_TREE
;
5028 /* Clear the abstract origin if it refers to a method. Otherwise
5029 dwarf2out.c will ICE as we clear TYPE_METHODS and thus the
5030 origin will not be output correctly. */
5031 if (DECL_ABSTRACT_ORIGIN (decl
)
5032 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))
5033 && RECORD_OR_UNION_TYPE_P
5034 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))))
5035 DECL_ABSTRACT_ORIGIN (decl
) = NULL_TREE
;
5037 /* Sometimes the C++ frontend doesn't manage to transform a temporary
5038 DECL_VINDEX referring to itself into a vtable slot number as it
5039 should. Happens with functions that are copied and then forgotten
5040 about. Just clear it, it won't matter anymore. */
5041 if (DECL_VINDEX (decl
) && !tree_fits_shwi_p (DECL_VINDEX (decl
)))
5042 DECL_VINDEX (decl
) = NULL_TREE
;
5044 else if (TREE_CODE (decl
) == VAR_DECL
)
5046 if ((DECL_EXTERNAL (decl
)
5047 && (!TREE_STATIC (decl
) || !TREE_READONLY (decl
)))
5048 || (decl_function_context (decl
) && !TREE_STATIC (decl
)))
5049 DECL_INITIAL (decl
) = NULL_TREE
;
5051 else if (TREE_CODE (decl
) == TYPE_DECL
5052 || TREE_CODE (decl
) == FIELD_DECL
)
5053 DECL_INITIAL (decl
) = NULL_TREE
;
5054 else if (TREE_CODE (decl
) == TRANSLATION_UNIT_DECL
5055 && DECL_INITIAL (decl
)
5056 && TREE_CODE (DECL_INITIAL (decl
)) == BLOCK
)
5058 /* Strip builtins from the translation-unit BLOCK. We still have targets
5059 without builtin_decl_explicit support and also builtins are shared
5060 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5061 tree
*nextp
= &BLOCK_VARS (DECL_INITIAL (decl
));
5065 if (TREE_CODE (var
) == FUNCTION_DECL
5066 && DECL_BUILT_IN (var
))
5067 *nextp
= TREE_CHAIN (var
);
5069 nextp
= &TREE_CHAIN (var
);
5075 /* Data used when collecting DECLs and TYPEs for language data removal. */
5077 struct free_lang_data_d
5079 /* Worklist to avoid excessive recursion. */
5082 /* Set of traversed objects. Used to avoid duplicate visits. */
5083 struct pointer_set_t
*pset
;
5085 /* Array of symbols to process with free_lang_data_in_decl. */
5088 /* Array of types to process with free_lang_data_in_type. */
5093 /* Save all language fields needed to generate proper debug information
5094 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
5097 save_debug_info_for_decl (tree t
)
5099 /*struct saved_debug_info_d *sdi;*/
5101 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& DECL_P (t
));
5103 /* FIXME. Partial implementation for saving debug info removed. */
5107 /* Save all language fields needed to generate proper debug information
5108 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
5111 save_debug_info_for_type (tree t
)
5113 /*struct saved_debug_info_d *sdi;*/
5115 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& TYPE_P (t
));
5117 /* FIXME. Partial implementation for saving debug info removed. */
5121 /* Add type or decl T to one of the list of tree nodes that need their
5122 language data removed. The lists are held inside FLD. */
5125 add_tree_to_fld_list (tree t
, struct free_lang_data_d
*fld
)
5129 fld
->decls
.safe_push (t
);
5130 if (debug_info_level
> DINFO_LEVEL_TERSE
)
5131 save_debug_info_for_decl (t
);
5133 else if (TYPE_P (t
))
5135 fld
->types
.safe_push (t
);
5136 if (debug_info_level
> DINFO_LEVEL_TERSE
)
5137 save_debug_info_for_type (t
);
5143 /* Push tree node T into FLD->WORKLIST. */
5146 fld_worklist_push (tree t
, struct free_lang_data_d
*fld
)
5148 if (t
&& !is_lang_specific (t
) && !pointer_set_contains (fld
->pset
, t
))
5149 fld
->worklist
.safe_push ((t
));
5153 /* Operand callback helper for free_lang_data_in_node. *TP is the
5154 subtree operand being considered. */
5157 find_decls_types_r (tree
*tp
, int *ws
, void *data
)
5160 struct free_lang_data_d
*fld
= (struct free_lang_data_d
*) data
;
5162 if (TREE_CODE (t
) == TREE_LIST
)
5165 /* Language specific nodes will be removed, so there is no need
5166 to gather anything under them. */
5167 if (is_lang_specific (t
))
5175 /* Note that walk_tree does not traverse every possible field in
5176 decls, so we have to do our own traversals here. */
5177 add_tree_to_fld_list (t
, fld
);
5179 fld_worklist_push (DECL_NAME (t
), fld
);
5180 fld_worklist_push (DECL_CONTEXT (t
), fld
);
5181 fld_worklist_push (DECL_SIZE (t
), fld
);
5182 fld_worklist_push (DECL_SIZE_UNIT (t
), fld
);
5184 /* We are going to remove everything under DECL_INITIAL for
5185 TYPE_DECLs. No point walking them. */
5186 if (TREE_CODE (t
) != TYPE_DECL
)
5187 fld_worklist_push (DECL_INITIAL (t
), fld
);
5189 fld_worklist_push (DECL_ATTRIBUTES (t
), fld
);
5190 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t
), fld
);
5192 if (TREE_CODE (t
) == FUNCTION_DECL
)
5194 fld_worklist_push (DECL_ARGUMENTS (t
), fld
);
5195 fld_worklist_push (DECL_RESULT (t
), fld
);
5197 else if (TREE_CODE (t
) == TYPE_DECL
)
5199 fld_worklist_push (DECL_ARGUMENT_FLD (t
), fld
);
5200 fld_worklist_push (DECL_VINDEX (t
), fld
);
5201 fld_worklist_push (DECL_ORIGINAL_TYPE (t
), fld
);
5203 else if (TREE_CODE (t
) == FIELD_DECL
)
5205 fld_worklist_push (DECL_FIELD_OFFSET (t
), fld
);
5206 fld_worklist_push (DECL_BIT_FIELD_TYPE (t
), fld
);
5207 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t
), fld
);
5208 fld_worklist_push (DECL_FCONTEXT (t
), fld
);
5210 else if (TREE_CODE (t
) == VAR_DECL
)
5212 fld_worklist_push (DECL_SECTION_NAME (t
), fld
);
5213 fld_worklist_push (DECL_COMDAT_GROUP (t
), fld
);
5216 if ((TREE_CODE (t
) == VAR_DECL
|| TREE_CODE (t
) == PARM_DECL
)
5217 && DECL_HAS_VALUE_EXPR_P (t
))
5218 fld_worklist_push (DECL_VALUE_EXPR (t
), fld
);
5220 if (TREE_CODE (t
) != FIELD_DECL
5221 && TREE_CODE (t
) != TYPE_DECL
)
5222 fld_worklist_push (TREE_CHAIN (t
), fld
);
5225 else if (TYPE_P (t
))
5227 /* Note that walk_tree does not traverse every possible field in
5228 types, so we have to do our own traversals here. */
5229 add_tree_to_fld_list (t
, fld
);
5231 if (!RECORD_OR_UNION_TYPE_P (t
))
5232 fld_worklist_push (TYPE_CACHED_VALUES (t
), fld
);
5233 fld_worklist_push (TYPE_SIZE (t
), fld
);
5234 fld_worklist_push (TYPE_SIZE_UNIT (t
), fld
);
5235 fld_worklist_push (TYPE_ATTRIBUTES (t
), fld
);
5236 fld_worklist_push (TYPE_POINTER_TO (t
), fld
);
5237 fld_worklist_push (TYPE_REFERENCE_TO (t
), fld
);
5238 fld_worklist_push (TYPE_NAME (t
), fld
);
5239 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
5240 them and thus do not and want not to reach unused pointer types
5242 if (!POINTER_TYPE_P (t
))
5243 fld_worklist_push (TYPE_MINVAL (t
), fld
);
5244 if (!RECORD_OR_UNION_TYPE_P (t
))
5245 fld_worklist_push (TYPE_MAXVAL (t
), fld
);
5246 fld_worklist_push (TYPE_MAIN_VARIANT (t
), fld
);
5247 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5248 do not and want not to reach unused variants this way. */
5249 if (TYPE_CONTEXT (t
))
5251 tree ctx
= TYPE_CONTEXT (t
);
5252 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5253 So push that instead. */
5254 while (ctx
&& TREE_CODE (ctx
) == BLOCK
)
5255 ctx
= BLOCK_SUPERCONTEXT (ctx
);
5256 fld_worklist_push (ctx
, fld
);
5258 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5259 and want not to reach unused types this way. */
5261 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_BINFO (t
))
5265 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t
)), i
, tem
)
5266 fld_worklist_push (TREE_TYPE (tem
), fld
);
5267 tem
= BINFO_VIRTUALS (TYPE_BINFO (t
));
5269 /* The Java FE overloads BINFO_VIRTUALS for its own purpose. */
5270 && TREE_CODE (tem
) == TREE_LIST
)
5273 fld_worklist_push (TREE_VALUE (tem
), fld
);
5274 tem
= TREE_CHAIN (tem
);
5278 if (RECORD_OR_UNION_TYPE_P (t
))
5281 /* Push all TYPE_FIELDS - there can be interleaving interesting
5282 and non-interesting things. */
5283 tem
= TYPE_FIELDS (t
);
5286 if (TREE_CODE (tem
) == FIELD_DECL
5287 || TREE_CODE (tem
) == TYPE_DECL
)
5288 fld_worklist_push (tem
, fld
);
5289 tem
= TREE_CHAIN (tem
);
5293 fld_worklist_push (TYPE_STUB_DECL (t
), fld
);
5296 else if (TREE_CODE (t
) == BLOCK
)
5299 for (tem
= BLOCK_VARS (t
); tem
; tem
= TREE_CHAIN (tem
))
5300 fld_worklist_push (tem
, fld
);
5301 for (tem
= BLOCK_SUBBLOCKS (t
); tem
; tem
= BLOCK_CHAIN (tem
))
5302 fld_worklist_push (tem
, fld
);
5303 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t
), fld
);
5306 if (TREE_CODE (t
) != IDENTIFIER_NODE
5307 && CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_TYPED
))
5308 fld_worklist_push (TREE_TYPE (t
), fld
);
5314 /* Find decls and types in T. */
5317 find_decls_types (tree t
, struct free_lang_data_d
*fld
)
5321 if (!pointer_set_contains (fld
->pset
, t
))
5322 walk_tree (&t
, find_decls_types_r
, fld
, fld
->pset
);
5323 if (fld
->worklist
.is_empty ())
5325 t
= fld
->worklist
.pop ();
5329 /* Translate all the types in LIST with the corresponding runtime
5333 get_eh_types_for_runtime (tree list
)
5337 if (list
== NULL_TREE
)
5340 head
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5342 list
= TREE_CHAIN (list
);
5345 tree n
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5346 TREE_CHAIN (prev
) = n
;
5347 prev
= TREE_CHAIN (prev
);
5348 list
= TREE_CHAIN (list
);
5355 /* Find decls and types referenced in EH region R and store them in
5356 FLD->DECLS and FLD->TYPES. */
5359 find_decls_types_in_eh_region (eh_region r
, struct free_lang_data_d
*fld
)
5370 /* The types referenced in each catch must first be changed to the
5371 EH types used at runtime. This removes references to FE types
5373 for (c
= r
->u
.eh_try
.first_catch
; c
; c
= c
->next_catch
)
5375 c
->type_list
= get_eh_types_for_runtime (c
->type_list
);
5376 walk_tree (&c
->type_list
, find_decls_types_r
, fld
, fld
->pset
);
5381 case ERT_ALLOWED_EXCEPTIONS
:
5382 r
->u
.allowed
.type_list
5383 = get_eh_types_for_runtime (r
->u
.allowed
.type_list
);
5384 walk_tree (&r
->u
.allowed
.type_list
, find_decls_types_r
, fld
, fld
->pset
);
5387 case ERT_MUST_NOT_THROW
:
5388 walk_tree (&r
->u
.must_not_throw
.failure_decl
,
5389 find_decls_types_r
, fld
, fld
->pset
);
5395 /* Find decls and types referenced in cgraph node N and store them in
5396 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5397 look for *every* kind of DECL and TYPE node reachable from N,
5398 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5399 NAMESPACE_DECLs, etc). */
5402 find_decls_types_in_node (struct cgraph_node
*n
, struct free_lang_data_d
*fld
)
5405 struct function
*fn
;
5409 find_decls_types (n
->decl
, fld
);
5411 if (!gimple_has_body_p (n
->decl
))
5414 gcc_assert (current_function_decl
== NULL_TREE
&& cfun
== NULL
);
5416 fn
= DECL_STRUCT_FUNCTION (n
->decl
);
5418 /* Traverse locals. */
5419 FOR_EACH_LOCAL_DECL (fn
, ix
, t
)
5420 find_decls_types (t
, fld
);
5422 /* Traverse EH regions in FN. */
5425 FOR_ALL_EH_REGION_FN (r
, fn
)
5426 find_decls_types_in_eh_region (r
, fld
);
5429 /* Traverse every statement in FN. */
5430 FOR_EACH_BB_FN (bb
, fn
)
5432 gimple_stmt_iterator si
;
5435 for (si
= gsi_start_phis (bb
); !gsi_end_p (si
); gsi_next (&si
))
5437 gimple phi
= gsi_stmt (si
);
5439 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
5441 tree
*arg_p
= gimple_phi_arg_def_ptr (phi
, i
);
5442 find_decls_types (*arg_p
, fld
);
5446 for (si
= gsi_start_bb (bb
); !gsi_end_p (si
); gsi_next (&si
))
5448 gimple stmt
= gsi_stmt (si
);
5450 if (is_gimple_call (stmt
))
5451 find_decls_types (gimple_call_fntype (stmt
), fld
);
5453 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
5455 tree arg
= gimple_op (stmt
, i
);
5456 find_decls_types (arg
, fld
);
5463 /* Find decls and types referenced in varpool node N and store them in
5464 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5465 look for *every* kind of DECL and TYPE node reachable from N,
5466 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5467 NAMESPACE_DECLs, etc). */
5470 find_decls_types_in_var (struct varpool_node
*v
, struct free_lang_data_d
*fld
)
5472 find_decls_types (v
->decl
, fld
);
5475 /* If T needs an assembler name, have one created for it. */
5478 assign_assembler_name_if_neeeded (tree t
)
5480 if (need_assembler_name_p (t
))
5482 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5483 diagnostics that use input_location to show locus
5484 information. The problem here is that, at this point,
5485 input_location is generally anchored to the end of the file
5486 (since the parser is long gone), so we don't have a good
5487 position to pin it to.
5489 To alleviate this problem, this uses the location of T's
5490 declaration. Examples of this are
5491 testsuite/g++.dg/template/cond2.C and
5492 testsuite/g++.dg/template/pr35240.C. */
5493 location_t saved_location
= input_location
;
5494 input_location
= DECL_SOURCE_LOCATION (t
);
5496 decl_assembler_name (t
);
5498 input_location
= saved_location
;
5503 /* Free language specific information for every operand and expression
5504 in every node of the call graph. This process operates in three stages:
5506 1- Every callgraph node and varpool node is traversed looking for
5507 decls and types embedded in them. This is a more exhaustive
5508 search than that done by find_referenced_vars, because it will
5509 also collect individual fields, decls embedded in types, etc.
5511 2- All the decls found are sent to free_lang_data_in_decl.
5513 3- All the types found are sent to free_lang_data_in_type.
5515 The ordering between decls and types is important because
5516 free_lang_data_in_decl sets assembler names, which includes
5517 mangling. So types cannot be freed up until assembler names have
5521 free_lang_data_in_cgraph (void)
5523 struct cgraph_node
*n
;
5524 struct varpool_node
*v
;
5525 struct free_lang_data_d fld
;
5530 /* Initialize sets and arrays to store referenced decls and types. */
5531 fld
.pset
= pointer_set_create ();
5532 fld
.worklist
.create (0);
5533 fld
.decls
.create (100);
5534 fld
.types
.create (100);
5536 /* Find decls and types in the body of every function in the callgraph. */
5537 FOR_EACH_FUNCTION (n
)
5538 find_decls_types_in_node (n
, &fld
);
5540 FOR_EACH_VEC_SAFE_ELT (alias_pairs
, i
, p
)
5541 find_decls_types (p
->decl
, &fld
);
5543 /* Find decls and types in every varpool symbol. */
5544 FOR_EACH_VARIABLE (v
)
5545 find_decls_types_in_var (v
, &fld
);
5547 /* Set the assembler name on every decl found. We need to do this
5548 now because free_lang_data_in_decl will invalidate data needed
5549 for mangling. This breaks mangling on interdependent decls. */
5550 FOR_EACH_VEC_ELT (fld
.decls
, i
, t
)
5551 assign_assembler_name_if_neeeded (t
);
5553 /* Traverse every decl found freeing its language data. */
5554 FOR_EACH_VEC_ELT (fld
.decls
, i
, t
)
5555 free_lang_data_in_decl (t
);
5557 /* Traverse every type found freeing its language data. */
5558 FOR_EACH_VEC_ELT (fld
.types
, i
, t
)
5559 free_lang_data_in_type (t
);
5561 pointer_set_destroy (fld
.pset
);
5562 fld
.worklist
.release ();
5563 fld
.decls
.release ();
5564 fld
.types
.release ();
5568 /* Free resources that are used by FE but are not needed once they are done. */
5571 free_lang_data (void)
5575 /* If we are the LTO frontend we have freed lang-specific data already. */
5577 || !flag_generate_lto
)
5580 /* Allocate and assign alias sets to the standard integer types
5581 while the slots are still in the way the frontends generated them. */
5582 for (i
= 0; i
< itk_none
; ++i
)
5583 if (integer_types
[i
])
5584 TYPE_ALIAS_SET (integer_types
[i
]) = get_alias_set (integer_types
[i
]);
5586 /* Traverse the IL resetting language specific information for
5587 operands, expressions, etc. */
5588 free_lang_data_in_cgraph ();
5590 /* Create gimple variants for common types. */
5591 ptrdiff_type_node
= integer_type_node
;
5592 fileptr_type_node
= ptr_type_node
;
5594 /* Reset some langhooks. Do not reset types_compatible_p, it may
5595 still be used indirectly via the get_alias_set langhook. */
5596 lang_hooks
.dwarf_name
= lhd_dwarf_name
;
5597 lang_hooks
.decl_printable_name
= gimple_decl_printable_name
;
5598 /* We do not want the default decl_assembler_name implementation,
5599 rather if we have fixed everything we want a wrapper around it
5600 asserting that all non-local symbols already got their assembler
5601 name and only produce assembler names for local symbols. Or rather
5602 make sure we never call decl_assembler_name on local symbols and
5603 devise a separate, middle-end private scheme for it. */
5605 /* Reset diagnostic machinery. */
5606 tree_diagnostics_defaults (global_dc
);
5614 const pass_data pass_data_ipa_free_lang_data
=
5616 SIMPLE_IPA_PASS
, /* type */
5617 "*free_lang_data", /* name */
5618 OPTGROUP_NONE
, /* optinfo_flags */
5619 false, /* has_gate */
5620 true, /* has_execute */
5621 TV_IPA_FREE_LANG_DATA
, /* tv_id */
5622 0, /* properties_required */
5623 0, /* properties_provided */
5624 0, /* properties_destroyed */
5625 0, /* todo_flags_start */
5626 0, /* todo_flags_finish */
5629 class pass_ipa_free_lang_data
: public simple_ipa_opt_pass
5632 pass_ipa_free_lang_data (gcc::context
*ctxt
)
5633 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data
, ctxt
)
5636 /* opt_pass methods: */
5637 unsigned int execute () { return free_lang_data (); }
5639 }; // class pass_ipa_free_lang_data
5643 simple_ipa_opt_pass
*
5644 make_pass_ipa_free_lang_data (gcc::context
*ctxt
)
5646 return new pass_ipa_free_lang_data (ctxt
);
5649 /* The backbone of is_attribute_p(). ATTR_LEN is the string length of
5650 ATTR_NAME. Also used internally by remove_attribute(). */
5652 private_is_attribute_p (const char *attr_name
, size_t attr_len
, const_tree ident
)
5654 size_t ident_len
= IDENTIFIER_LENGTH (ident
);
5656 if (ident_len
== attr_len
)
5658 if (strcmp (attr_name
, IDENTIFIER_POINTER (ident
)) == 0)
5661 else if (ident_len
== attr_len
+ 4)
5663 /* There is the possibility that ATTR is 'text' and IDENT is
5665 const char *p
= IDENTIFIER_POINTER (ident
);
5666 if (p
[0] == '_' && p
[1] == '_'
5667 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5668 && strncmp (attr_name
, p
+ 2, attr_len
) == 0)
5675 /* The backbone of lookup_attribute(). ATTR_LEN is the string length
5676 of ATTR_NAME, and LIST is not NULL_TREE. */
5678 private_lookup_attribute (const char *attr_name
, size_t attr_len
, tree list
)
5682 size_t ident_len
= IDENTIFIER_LENGTH (get_attribute_name (list
));
5684 if (ident_len
== attr_len
)
5686 if (!strcmp (attr_name
,
5687 IDENTIFIER_POINTER (get_attribute_name (list
))))
5690 /* TODO: If we made sure that attributes were stored in the
5691 canonical form without '__...__' (ie, as in 'text' as opposed
5692 to '__text__') then we could avoid the following case. */
5693 else if (ident_len
== attr_len
+ 4)
5695 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5696 if (p
[0] == '_' && p
[1] == '_'
5697 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5698 && strncmp (attr_name
, p
+ 2, attr_len
) == 0)
5701 list
= TREE_CHAIN (list
);
5707 /* A variant of lookup_attribute() that can be used with an identifier
5708 as the first argument, and where the identifier can be either
5709 'text' or '__text__'.
5711 Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
5712 return a pointer to the attribute's list element if the attribute
5713 is part of the list, or NULL_TREE if not found. If the attribute
5714 appears more than once, this only returns the first occurrence; the
5715 TREE_CHAIN of the return value should be passed back in if further
5716 occurrences are wanted. ATTR_IDENTIFIER must be an identifier but
5717 can be in the form 'text' or '__text__'. */
5719 lookup_ident_attribute (tree attr_identifier
, tree list
)
5721 gcc_checking_assert (TREE_CODE (attr_identifier
) == IDENTIFIER_NODE
);
5725 gcc_checking_assert (TREE_CODE (get_attribute_name (list
))
5726 == IDENTIFIER_NODE
);
5728 /* Identifiers can be compared directly for equality. */
5729 if (attr_identifier
== get_attribute_name (list
))
5732 /* If they are not equal, they may still be one in the form
5733 'text' while the other one is in the form '__text__'. TODO:
5734 If we were storing attributes in normalized 'text' form, then
5735 this could all go away and we could take full advantage of
5736 the fact that we're comparing identifiers. :-) */
5738 size_t attr_len
= IDENTIFIER_LENGTH (attr_identifier
);
5739 size_t ident_len
= IDENTIFIER_LENGTH (get_attribute_name (list
));
5741 if (ident_len
== attr_len
+ 4)
5743 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5744 const char *q
= IDENTIFIER_POINTER (attr_identifier
);
5745 if (p
[0] == '_' && p
[1] == '_'
5746 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5747 && strncmp (q
, p
+ 2, attr_len
) == 0)
5750 else if (ident_len
+ 4 == attr_len
)
5752 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5753 const char *q
= IDENTIFIER_POINTER (attr_identifier
);
5754 if (q
[0] == '_' && q
[1] == '_'
5755 && q
[attr_len
- 2] == '_' && q
[attr_len
- 1] == '_'
5756 && strncmp (q
+ 2, p
, ident_len
) == 0)
5760 list
= TREE_CHAIN (list
);
5766 /* Remove any instances of attribute ATTR_NAME in LIST and return the
5770 remove_attribute (const char *attr_name
, tree list
)
5773 size_t attr_len
= strlen (attr_name
);
5775 gcc_checking_assert (attr_name
[0] != '_');
5777 for (p
= &list
; *p
; )
5780 /* TODO: If we were storing attributes in normalized form, here
5781 we could use a simple strcmp(). */
5782 if (private_is_attribute_p (attr_name
, attr_len
, get_attribute_name (l
)))
5783 *p
= TREE_CHAIN (l
);
5785 p
= &TREE_CHAIN (l
);
5791 /* Return an attribute list that is the union of a1 and a2. */
5794 merge_attributes (tree a1
, tree a2
)
5798 /* Either one unset? Take the set one. */
5800 if ((attributes
= a1
) == 0)
5803 /* One that completely contains the other? Take it. */
5805 else if (a2
!= 0 && ! attribute_list_contained (a1
, a2
))
5807 if (attribute_list_contained (a2
, a1
))
5811 /* Pick the longest list, and hang on the other list. */
5813 if (list_length (a1
) < list_length (a2
))
5814 attributes
= a2
, a2
= a1
;
5816 for (; a2
!= 0; a2
= TREE_CHAIN (a2
))
5819 for (a
= lookup_ident_attribute (get_attribute_name (a2
),
5821 a
!= NULL_TREE
&& !attribute_value_equal (a
, a2
);
5822 a
= lookup_ident_attribute (get_attribute_name (a2
),
5827 a1
= copy_node (a2
);
5828 TREE_CHAIN (a1
) = attributes
;
5837 /* Given types T1 and T2, merge their attributes and return
5841 merge_type_attributes (tree t1
, tree t2
)
5843 return merge_attributes (TYPE_ATTRIBUTES (t1
),
5844 TYPE_ATTRIBUTES (t2
));
5847 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
5851 merge_decl_attributes (tree olddecl
, tree newdecl
)
5853 return merge_attributes (DECL_ATTRIBUTES (olddecl
),
5854 DECL_ATTRIBUTES (newdecl
));
5857 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
5859 /* Specialization of merge_decl_attributes for various Windows targets.
5861 This handles the following situation:
5863 __declspec (dllimport) int foo;
5866 The second instance of `foo' nullifies the dllimport. */
5869 merge_dllimport_decl_attributes (tree old
, tree new_tree
)
5872 int delete_dllimport_p
= 1;
5874 /* What we need to do here is remove from `old' dllimport if it doesn't
5875 appear in `new'. dllimport behaves like extern: if a declaration is
5876 marked dllimport and a definition appears later, then the object
5877 is not dllimport'd. We also remove a `new' dllimport if the old list
5878 contains dllexport: dllexport always overrides dllimport, regardless
5879 of the order of declaration. */
5880 if (!VAR_OR_FUNCTION_DECL_P (new_tree
))
5881 delete_dllimport_p
= 0;
5882 else if (DECL_DLLIMPORT_P (new_tree
)
5883 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old
)))
5885 DECL_DLLIMPORT_P (new_tree
) = 0;
5886 warning (OPT_Wattributes
, "%q+D already declared with dllexport attribute: "
5887 "dllimport ignored", new_tree
);
5889 else if (DECL_DLLIMPORT_P (old
) && !DECL_DLLIMPORT_P (new_tree
))
5891 /* Warn about overriding a symbol that has already been used, e.g.:
5892 extern int __attribute__ ((dllimport)) foo;
5893 int* bar () {return &foo;}
5896 if (TREE_USED (old
))
5898 warning (0, "%q+D redeclared without dllimport attribute "
5899 "after being referenced with dll linkage", new_tree
);
5900 /* If we have used a variable's address with dllimport linkage,
5901 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
5902 decl may already have had TREE_CONSTANT computed.
5903 We still remove the attribute so that assembler code refers
5904 to '&foo rather than '_imp__foo'. */
5905 if (TREE_CODE (old
) == VAR_DECL
&& TREE_ADDRESSABLE (old
))
5906 DECL_DLLIMPORT_P (new_tree
) = 1;
5909 /* Let an inline definition silently override the external reference,
5910 but otherwise warn about attribute inconsistency. */
5911 else if (TREE_CODE (new_tree
) == VAR_DECL
5912 || !DECL_DECLARED_INLINE_P (new_tree
))
5913 warning (OPT_Wattributes
, "%q+D redeclared without dllimport attribute: "
5914 "previous dllimport ignored", new_tree
);
5917 delete_dllimport_p
= 0;
5919 a
= merge_attributes (DECL_ATTRIBUTES (old
), DECL_ATTRIBUTES (new_tree
));
5921 if (delete_dllimport_p
)
5922 a
= remove_attribute ("dllimport", a
);
5927 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
5928 struct attribute_spec.handler. */
5931 handle_dll_attribute (tree
* pnode
, tree name
, tree args
, int flags
,
5937 /* These attributes may apply to structure and union types being created,
5938 but otherwise should pass to the declaration involved. */
5941 if (flags
& ((int) ATTR_FLAG_DECL_NEXT
| (int) ATTR_FLAG_FUNCTION_NEXT
5942 | (int) ATTR_FLAG_ARRAY_NEXT
))
5944 *no_add_attrs
= true;
5945 return tree_cons (name
, args
, NULL_TREE
);
5947 if (TREE_CODE (node
) == RECORD_TYPE
5948 || TREE_CODE (node
) == UNION_TYPE
)
5950 node
= TYPE_NAME (node
);
5956 warning (OPT_Wattributes
, "%qE attribute ignored",
5958 *no_add_attrs
= true;
5963 if (TREE_CODE (node
) != FUNCTION_DECL
5964 && TREE_CODE (node
) != VAR_DECL
5965 && TREE_CODE (node
) != TYPE_DECL
)
5967 *no_add_attrs
= true;
5968 warning (OPT_Wattributes
, "%qE attribute ignored",
5973 if (TREE_CODE (node
) == TYPE_DECL
5974 && TREE_CODE (TREE_TYPE (node
)) != RECORD_TYPE
5975 && TREE_CODE (TREE_TYPE (node
)) != UNION_TYPE
)
5977 *no_add_attrs
= true;
5978 warning (OPT_Wattributes
, "%qE attribute ignored",
5983 is_dllimport
= is_attribute_p ("dllimport", name
);
5985 /* Report error on dllimport ambiguities seen now before they cause
5989 /* Honor any target-specific overrides. */
5990 if (!targetm
.valid_dllimport_attribute_p (node
))
5991 *no_add_attrs
= true;
5993 else if (TREE_CODE (node
) == FUNCTION_DECL
5994 && DECL_DECLARED_INLINE_P (node
))
5996 warning (OPT_Wattributes
, "inline function %q+D declared as "
5997 " dllimport: attribute ignored", node
);
5998 *no_add_attrs
= true;
6000 /* Like MS, treat definition of dllimported variables and
6001 non-inlined functions on declaration as syntax errors. */
6002 else if (TREE_CODE (node
) == FUNCTION_DECL
&& DECL_INITIAL (node
))
6004 error ("function %q+D definition is marked dllimport", node
);
6005 *no_add_attrs
= true;
6008 else if (TREE_CODE (node
) == VAR_DECL
)
6010 if (DECL_INITIAL (node
))
6012 error ("variable %q+D definition is marked dllimport",
6014 *no_add_attrs
= true;
6017 /* `extern' needn't be specified with dllimport.
6018 Specify `extern' now and hope for the best. Sigh. */
6019 DECL_EXTERNAL (node
) = 1;
6020 /* Also, implicitly give dllimport'd variables declared within
6021 a function global scope, unless declared static. */
6022 if (current_function_decl
!= NULL_TREE
&& !TREE_STATIC (node
))
6023 TREE_PUBLIC (node
) = 1;
6026 if (*no_add_attrs
== false)
6027 DECL_DLLIMPORT_P (node
) = 1;
6029 else if (TREE_CODE (node
) == FUNCTION_DECL
6030 && DECL_DECLARED_INLINE_P (node
)
6031 && flag_keep_inline_dllexport
)
6032 /* An exported function, even if inline, must be emitted. */
6033 DECL_EXTERNAL (node
) = 0;
6035 /* Report error if symbol is not accessible at global scope. */
6036 if (!TREE_PUBLIC (node
)
6037 && (TREE_CODE (node
) == VAR_DECL
6038 || TREE_CODE (node
) == FUNCTION_DECL
))
6040 error ("external linkage required for symbol %q+D because of "
6041 "%qE attribute", node
, name
);
6042 *no_add_attrs
= true;
6045 /* A dllexport'd entity must have default visibility so that other
6046 program units (shared libraries or the main executable) can see
6047 it. A dllimport'd entity must have default visibility so that
6048 the linker knows that undefined references within this program
6049 unit can be resolved by the dynamic linker. */
6052 if (DECL_VISIBILITY_SPECIFIED (node
)
6053 && DECL_VISIBILITY (node
) != VISIBILITY_DEFAULT
)
6054 error ("%qE implies default visibility, but %qD has already "
6055 "been declared with a different visibility",
6057 DECL_VISIBILITY (node
) = VISIBILITY_DEFAULT
;
6058 DECL_VISIBILITY_SPECIFIED (node
) = 1;
6064 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
6066 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
6067 of the various TYPE_QUAL values. */
6070 set_type_quals (tree type
, int type_quals
)
6072 TYPE_READONLY (type
) = (type_quals
& TYPE_QUAL_CONST
) != 0;
6073 TYPE_VOLATILE (type
) = (type_quals
& TYPE_QUAL_VOLATILE
) != 0;
6074 TYPE_RESTRICT (type
) = (type_quals
& TYPE_QUAL_RESTRICT
) != 0;
6075 TYPE_ATOMIC (type
) = (type_quals
& TYPE_QUAL_ATOMIC
) != 0;
6076 TYPE_ADDR_SPACE (type
) = DECODE_QUAL_ADDR_SPACE (type_quals
);
6079 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
6082 check_qualified_type (const_tree cand
, const_tree base
, int type_quals
)
6084 return (TYPE_QUALS (cand
) == type_quals
6085 && TYPE_NAME (cand
) == TYPE_NAME (base
)
6086 /* Apparently this is needed for Objective-C. */
6087 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
6088 /* Check alignment. */
6089 && TYPE_ALIGN (cand
) == TYPE_ALIGN (base
)
6090 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
6091 TYPE_ATTRIBUTES (base
)));
6094 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
6097 check_aligned_type (const_tree cand
, const_tree base
, unsigned int align
)
6099 return (TYPE_QUALS (cand
) == TYPE_QUALS (base
)
6100 && TYPE_NAME (cand
) == TYPE_NAME (base
)
6101 /* Apparently this is needed for Objective-C. */
6102 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
6103 /* Check alignment. */
6104 && TYPE_ALIGN (cand
) == align
6105 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
6106 TYPE_ATTRIBUTES (base
)));
6109 /* This function checks to see if TYPE matches the size one of the built-in
6110 atomic types, and returns that core atomic type. */
6113 find_atomic_core_type (tree type
)
6115 tree base_atomic_type
;
6117 /* Only handle complete types. */
6118 if (TYPE_SIZE (type
) == NULL_TREE
)
6121 HOST_WIDE_INT type_size
= tree_to_uhwi (TYPE_SIZE (type
));
6125 base_atomic_type
= atomicQI_type_node
;
6129 base_atomic_type
= atomicHI_type_node
;
6133 base_atomic_type
= atomicSI_type_node
;
6137 base_atomic_type
= atomicDI_type_node
;
6141 base_atomic_type
= atomicTI_type_node
;
6145 base_atomic_type
= NULL_TREE
;
6148 return base_atomic_type
;
6151 /* Return a version of the TYPE, qualified as indicated by the
6152 TYPE_QUALS, if one exists. If no qualified version exists yet,
6153 return NULL_TREE. */
6156 get_qualified_type (tree type
, int type_quals
)
6160 if (TYPE_QUALS (type
) == type_quals
)
6163 /* Search the chain of variants to see if there is already one there just
6164 like the one we need to have. If so, use that existing one. We must
6165 preserve the TYPE_NAME, since there is code that depends on this. */
6166 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
6167 if (check_qualified_type (t
, type
, type_quals
))
6173 /* Like get_qualified_type, but creates the type if it does not
6174 exist. This function never returns NULL_TREE. */
6177 build_qualified_type (tree type
, int type_quals
)
6181 /* See if we already have the appropriate qualified variant. */
6182 t
= get_qualified_type (type
, type_quals
);
6184 /* If not, build it. */
6187 t
= build_variant_type_copy (type
);
6188 set_type_quals (t
, type_quals
);
6190 if (((type_quals
& TYPE_QUAL_ATOMIC
) == TYPE_QUAL_ATOMIC
))
6192 /* See if this object can map to a basic atomic type. */
6193 tree atomic_type
= find_atomic_core_type (type
);
6196 /* Ensure the alignment of this type is compatible with
6197 the required alignment of the atomic type. */
6198 if (TYPE_ALIGN (atomic_type
) > TYPE_ALIGN (t
))
6199 TYPE_ALIGN (t
) = TYPE_ALIGN (atomic_type
);
6203 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
6204 /* Propagate structural equality. */
6205 SET_TYPE_STRUCTURAL_EQUALITY (t
);
6206 else if (TYPE_CANONICAL (type
) != type
)
6207 /* Build the underlying canonical type, since it is different
6209 TYPE_CANONICAL (t
) = build_qualified_type (TYPE_CANONICAL (type
),
6212 /* T is its own canonical type. */
6213 TYPE_CANONICAL (t
) = t
;
6220 /* Create a variant of type T with alignment ALIGN. */
6223 build_aligned_type (tree type
, unsigned int align
)
6227 if (TYPE_PACKED (type
)
6228 || TYPE_ALIGN (type
) == align
)
6231 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
6232 if (check_aligned_type (t
, type
, align
))
6235 t
= build_variant_type_copy (type
);
6236 TYPE_ALIGN (t
) = align
;
6241 /* Create a new distinct copy of TYPE. The new type is made its own
6242 MAIN_VARIANT. If TYPE requires structural equality checks, the
6243 resulting type requires structural equality checks; otherwise, its
6244 TYPE_CANONICAL points to itself. */
6247 build_distinct_type_copy (tree type
)
6249 tree t
= copy_node (type
);
6251 TYPE_POINTER_TO (t
) = 0;
6252 TYPE_REFERENCE_TO (t
) = 0;
6254 /* Set the canonical type either to a new equivalence class, or
6255 propagate the need for structural equality checks. */
6256 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
6257 SET_TYPE_STRUCTURAL_EQUALITY (t
);
6259 TYPE_CANONICAL (t
) = t
;
6261 /* Make it its own variant. */
6262 TYPE_MAIN_VARIANT (t
) = t
;
6263 TYPE_NEXT_VARIANT (t
) = 0;
6265 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6266 whose TREE_TYPE is not t. This can also happen in the Ada
6267 frontend when using subtypes. */
6272 /* Create a new variant of TYPE, equivalent but distinct. This is so
6273 the caller can modify it. TYPE_CANONICAL for the return type will
6274 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6275 are considered equal by the language itself (or that both types
6276 require structural equality checks). */
6279 build_variant_type_copy (tree type
)
6281 tree t
, m
= TYPE_MAIN_VARIANT (type
);
6283 t
= build_distinct_type_copy (type
);
6285 /* Since we're building a variant, assume that it is a non-semantic
6286 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6287 TYPE_CANONICAL (t
) = TYPE_CANONICAL (type
);
6289 /* Add the new type to the chain of variants of TYPE. */
6290 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (m
);
6291 TYPE_NEXT_VARIANT (m
) = t
;
6292 TYPE_MAIN_VARIANT (t
) = m
;
6297 /* Return true if the from tree in both tree maps are equal. */
6300 tree_map_base_eq (const void *va
, const void *vb
)
6302 const struct tree_map_base
*const a
= (const struct tree_map_base
*) va
,
6303 *const b
= (const struct tree_map_base
*) vb
;
6304 return (a
->from
== b
->from
);
6307 /* Hash a from tree in a tree_base_map. */
6310 tree_map_base_hash (const void *item
)
6312 return htab_hash_pointer (((const struct tree_map_base
*)item
)->from
);
6315 /* Return true if this tree map structure is marked for garbage collection
6316 purposes. We simply return true if the from tree is marked, so that this
6317 structure goes away when the from tree goes away. */
6320 tree_map_base_marked_p (const void *p
)
6322 return ggc_marked_p (((const struct tree_map_base
*) p
)->from
);
6325 /* Hash a from tree in a tree_map. */
6328 tree_map_hash (const void *item
)
6330 return (((const struct tree_map
*) item
)->hash
);
6333 /* Hash a from tree in a tree_decl_map. */
6336 tree_decl_map_hash (const void *item
)
6338 return DECL_UID (((const struct tree_decl_map
*) item
)->base
.from
);
6341 /* Return the initialization priority for DECL. */
6344 decl_init_priority_lookup (tree decl
)
6346 struct tree_priority_map
*h
;
6347 struct tree_map_base in
;
6349 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
6351 h
= (struct tree_priority_map
*) htab_find (init_priority_for_decl
, &in
);
6352 return h
? h
->init
: DEFAULT_INIT_PRIORITY
;
6355 /* Return the finalization priority for DECL. */
6358 decl_fini_priority_lookup (tree decl
)
6360 struct tree_priority_map
*h
;
6361 struct tree_map_base in
;
6363 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
6365 h
= (struct tree_priority_map
*) htab_find (init_priority_for_decl
, &in
);
6366 return h
? h
->fini
: DEFAULT_INIT_PRIORITY
;
6369 /* Return the initialization and finalization priority information for
6370 DECL. If there is no previous priority information, a freshly
6371 allocated structure is returned. */
6373 static struct tree_priority_map
*
6374 decl_priority_info (tree decl
)
6376 struct tree_priority_map in
;
6377 struct tree_priority_map
*h
;
6380 in
.base
.from
= decl
;
6381 loc
= htab_find_slot (init_priority_for_decl
, &in
, INSERT
);
6382 h
= (struct tree_priority_map
*) *loc
;
6385 h
= ggc_alloc_cleared_tree_priority_map ();
6387 h
->base
.from
= decl
;
6388 h
->init
= DEFAULT_INIT_PRIORITY
;
6389 h
->fini
= DEFAULT_INIT_PRIORITY
;
6395 /* Set the initialization priority for DECL to PRIORITY. */
6398 decl_init_priority_insert (tree decl
, priority_type priority
)
6400 struct tree_priority_map
*h
;
6402 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
6403 if (priority
== DEFAULT_INIT_PRIORITY
)
6405 h
= decl_priority_info (decl
);
6409 /* Set the finalization priority for DECL to PRIORITY. */
6412 decl_fini_priority_insert (tree decl
, priority_type priority
)
6414 struct tree_priority_map
*h
;
6416 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
6417 if (priority
== DEFAULT_INIT_PRIORITY
)
6419 h
= decl_priority_info (decl
);
6423 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6426 print_debug_expr_statistics (void)
6428 fprintf (stderr
, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6429 (long) htab_size (debug_expr_for_decl
),
6430 (long) htab_elements (debug_expr_for_decl
),
6431 htab_collisions (debug_expr_for_decl
));
6434 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6437 print_value_expr_statistics (void)
6439 fprintf (stderr
, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6440 (long) htab_size (value_expr_for_decl
),
6441 (long) htab_elements (value_expr_for_decl
),
6442 htab_collisions (value_expr_for_decl
));
6445 /* Lookup a debug expression for FROM, and return it if we find one. */
6448 decl_debug_expr_lookup (tree from
)
6450 struct tree_decl_map
*h
, in
;
6451 in
.base
.from
= from
;
6453 h
= (struct tree_decl_map
*)
6454 htab_find_with_hash (debug_expr_for_decl
, &in
, DECL_UID (from
));
6460 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6463 decl_debug_expr_insert (tree from
, tree to
)
6465 struct tree_decl_map
*h
;
6468 h
= ggc_alloc_tree_decl_map ();
6469 h
->base
.from
= from
;
6471 loc
= htab_find_slot_with_hash (debug_expr_for_decl
, h
, DECL_UID (from
),
6473 *(struct tree_decl_map
**) loc
= h
;
6476 /* Lookup a value expression for FROM, and return it if we find one. */
6479 decl_value_expr_lookup (tree from
)
6481 struct tree_decl_map
*h
, in
;
6482 in
.base
.from
= from
;
6484 h
= (struct tree_decl_map
*)
6485 htab_find_with_hash (value_expr_for_decl
, &in
, DECL_UID (from
));
6491 /* Insert a mapping FROM->TO in the value expression hashtable. */
6494 decl_value_expr_insert (tree from
, tree to
)
6496 struct tree_decl_map
*h
;
6499 h
= ggc_alloc_tree_decl_map ();
6500 h
->base
.from
= from
;
6502 loc
= htab_find_slot_with_hash (value_expr_for_decl
, h
, DECL_UID (from
),
6504 *(struct tree_decl_map
**) loc
= h
;
6507 /* Lookup a vector of debug arguments for FROM, and return it if we
6511 decl_debug_args_lookup (tree from
)
6513 struct tree_vec_map
*h
, in
;
6515 if (!DECL_HAS_DEBUG_ARGS_P (from
))
6517 gcc_checking_assert (debug_args_for_decl
!= NULL
);
6518 in
.base
.from
= from
;
6519 h
= (struct tree_vec_map
*)
6520 htab_find_with_hash (debug_args_for_decl
, &in
, DECL_UID (from
));
6526 /* Insert a mapping FROM->empty vector of debug arguments in the value
6527 expression hashtable. */
6530 decl_debug_args_insert (tree from
)
6532 struct tree_vec_map
*h
;
6535 if (DECL_HAS_DEBUG_ARGS_P (from
))
6536 return decl_debug_args_lookup (from
);
6537 if (debug_args_for_decl
== NULL
)
6538 debug_args_for_decl
= htab_create_ggc (64, tree_vec_map_hash
,
6539 tree_vec_map_eq
, 0);
6540 h
= ggc_alloc_tree_vec_map ();
6541 h
->base
.from
= from
;
6543 loc
= htab_find_slot_with_hash (debug_args_for_decl
, h
, DECL_UID (from
),
6545 *(struct tree_vec_map
**) loc
= h
;
6546 DECL_HAS_DEBUG_ARGS_P (from
) = 1;
6550 /* Hashing of types so that we don't make duplicates.
6551 The entry point is `type_hash_canon'. */
6553 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
6554 with types in the TREE_VALUE slots), by adding the hash codes
6555 of the individual types. */
6558 type_hash_list (const_tree list
, hashval_t hashcode
)
6562 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
6563 if (TREE_VALUE (tail
) != error_mark_node
)
6564 hashcode
= iterative_hash_object (TYPE_HASH (TREE_VALUE (tail
)),
6570 /* These are the Hashtable callback functions. */
6572 /* Returns true iff the types are equivalent. */
6575 type_hash_eq (const void *va
, const void *vb
)
6577 const struct type_hash
*const a
= (const struct type_hash
*) va
,
6578 *const b
= (const struct type_hash
*) vb
;
6580 /* First test the things that are the same for all types. */
6581 if (a
->hash
!= b
->hash
6582 || TREE_CODE (a
->type
) != TREE_CODE (b
->type
)
6583 || TREE_TYPE (a
->type
) != TREE_TYPE (b
->type
)
6584 || !attribute_list_equal (TYPE_ATTRIBUTES (a
->type
),
6585 TYPE_ATTRIBUTES (b
->type
))
6586 || (TREE_CODE (a
->type
) != COMPLEX_TYPE
6587 && TYPE_NAME (a
->type
) != TYPE_NAME (b
->type
)))
6590 /* Be careful about comparing arrays before and after the element type
6591 has been completed; don't compare TYPE_ALIGN unless both types are
6593 if (COMPLETE_TYPE_P (a
->type
) && COMPLETE_TYPE_P (b
->type
)
6594 && (TYPE_ALIGN (a
->type
) != TYPE_ALIGN (b
->type
)
6595 || TYPE_MODE (a
->type
) != TYPE_MODE (b
->type
)))
6598 switch (TREE_CODE (a
->type
))
6603 case REFERENCE_TYPE
:
6608 return TYPE_VECTOR_SUBPARTS (a
->type
) == TYPE_VECTOR_SUBPARTS (b
->type
);
6611 if (TYPE_VALUES (a
->type
) != TYPE_VALUES (b
->type
)
6612 && !(TYPE_VALUES (a
->type
)
6613 && TREE_CODE (TYPE_VALUES (a
->type
)) == TREE_LIST
6614 && TYPE_VALUES (b
->type
)
6615 && TREE_CODE (TYPE_VALUES (b
->type
)) == TREE_LIST
6616 && type_list_equal (TYPE_VALUES (a
->type
),
6617 TYPE_VALUES (b
->type
))))
6620 /* ... fall through ... */
6625 return ((TYPE_MAX_VALUE (a
->type
) == TYPE_MAX_VALUE (b
->type
)
6626 || tree_int_cst_equal (TYPE_MAX_VALUE (a
->type
),
6627 TYPE_MAX_VALUE (b
->type
)))
6628 && (TYPE_MIN_VALUE (a
->type
) == TYPE_MIN_VALUE (b
->type
)
6629 || tree_int_cst_equal (TYPE_MIN_VALUE (a
->type
),
6630 TYPE_MIN_VALUE (b
->type
))));
6632 case FIXED_POINT_TYPE
:
6633 return TYPE_SATURATING (a
->type
) == TYPE_SATURATING (b
->type
);
6636 return TYPE_OFFSET_BASETYPE (a
->type
) == TYPE_OFFSET_BASETYPE (b
->type
);
6639 if (TYPE_METHOD_BASETYPE (a
->type
) == TYPE_METHOD_BASETYPE (b
->type
)
6640 && (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6641 || (TYPE_ARG_TYPES (a
->type
)
6642 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6643 && TYPE_ARG_TYPES (b
->type
)
6644 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6645 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6646 TYPE_ARG_TYPES (b
->type
)))))
6650 return TYPE_DOMAIN (a
->type
) == TYPE_DOMAIN (b
->type
);
6654 case QUAL_UNION_TYPE
:
6655 return (TYPE_FIELDS (a
->type
) == TYPE_FIELDS (b
->type
)
6656 || (TYPE_FIELDS (a
->type
)
6657 && TREE_CODE (TYPE_FIELDS (a
->type
)) == TREE_LIST
6658 && TYPE_FIELDS (b
->type
)
6659 && TREE_CODE (TYPE_FIELDS (b
->type
)) == TREE_LIST
6660 && type_list_equal (TYPE_FIELDS (a
->type
),
6661 TYPE_FIELDS (b
->type
))));
6664 if (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6665 || (TYPE_ARG_TYPES (a
->type
)
6666 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6667 && TYPE_ARG_TYPES (b
->type
)
6668 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6669 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6670 TYPE_ARG_TYPES (b
->type
))))
6678 if (lang_hooks
.types
.type_hash_eq
!= NULL
)
6679 return lang_hooks
.types
.type_hash_eq (a
->type
, b
->type
);
6684 /* Return the cached hash value. */
6687 type_hash_hash (const void *item
)
6689 return ((const struct type_hash
*) item
)->hash
;
6692 /* Look in the type hash table for a type isomorphic to TYPE.
6693 If one is found, return it. Otherwise return 0. */
6696 type_hash_lookup (hashval_t hashcode
, tree type
)
6698 struct type_hash
*h
, in
;
6700 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6701 must call that routine before comparing TYPE_ALIGNs. */
6707 h
= (struct type_hash
*) htab_find_with_hash (type_hash_table
, &in
,
6714 /* Add an entry to the type-hash-table
6715 for a type TYPE whose hash code is HASHCODE. */
6718 type_hash_add (hashval_t hashcode
, tree type
)
6720 struct type_hash
*h
;
6723 h
= ggc_alloc_type_hash ();
6726 loc
= htab_find_slot_with_hash (type_hash_table
, h
, hashcode
, INSERT
);
6730 /* Given TYPE, and HASHCODE its hash code, return the canonical
6731 object for an identical type if one already exists.
6732 Otherwise, return TYPE, and record it as the canonical object.
6734 To use this function, first create a type of the sort you want.
6735 Then compute its hash code from the fields of the type that
6736 make it different from other similar types.
6737 Then call this function and use the value. */
6740 type_hash_canon (unsigned int hashcode
, tree type
)
6744 /* The hash table only contains main variants, so ensure that's what we're
6746 gcc_assert (TYPE_MAIN_VARIANT (type
) == type
);
6748 /* See if the type is in the hash table already. If so, return it.
6749 Otherwise, add the type. */
6750 t1
= type_hash_lookup (hashcode
, type
);
6753 if (GATHER_STATISTICS
)
6755 tree_code_counts
[(int) TREE_CODE (type
)]--;
6756 tree_node_counts
[(int) t_kind
]--;
6757 tree_node_sizes
[(int) t_kind
] -= sizeof (struct tree_type_non_common
);
6763 type_hash_add (hashcode
, type
);
6768 /* See if the data pointed to by the type hash table is marked. We consider
6769 it marked if the type is marked or if a debug type number or symbol
6770 table entry has been made for the type. */
6773 type_hash_marked_p (const void *p
)
6775 const_tree
const type
= ((const struct type_hash
*) p
)->type
;
6777 return ggc_marked_p (type
);
6781 print_type_hash_statistics (void)
6783 fprintf (stderr
, "Type hash: size %ld, %ld elements, %f collisions\n",
6784 (long) htab_size (type_hash_table
),
6785 (long) htab_elements (type_hash_table
),
6786 htab_collisions (type_hash_table
));
6789 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
6790 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
6791 by adding the hash codes of the individual attributes. */
6794 attribute_hash_list (const_tree list
, hashval_t hashcode
)
6798 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
6799 /* ??? Do we want to add in TREE_VALUE too? */
6800 hashcode
= iterative_hash_object
6801 (IDENTIFIER_HASH_VALUE (get_attribute_name (tail
)), hashcode
);
6805 /* Given two lists of attributes, return true if list l2 is
6806 equivalent to l1. */
6809 attribute_list_equal (const_tree l1
, const_tree l2
)
6814 return attribute_list_contained (l1
, l2
)
6815 && attribute_list_contained (l2
, l1
);
6818 /* Given two lists of attributes, return true if list L2 is
6819 completely contained within L1. */
6820 /* ??? This would be faster if attribute names were stored in a canonicalized
6821 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
6822 must be used to show these elements are equivalent (which they are). */
6823 /* ??? It's not clear that attributes with arguments will always be handled
6827 attribute_list_contained (const_tree l1
, const_tree l2
)
6831 /* First check the obvious, maybe the lists are identical. */
6835 /* Maybe the lists are similar. */
6836 for (t1
= l1
, t2
= l2
;
6838 && get_attribute_name (t1
) == get_attribute_name (t2
)
6839 && TREE_VALUE (t1
) == TREE_VALUE (t2
);
6840 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
6843 /* Maybe the lists are equal. */
6844 if (t1
== 0 && t2
== 0)
6847 for (; t2
!= 0; t2
= TREE_CHAIN (t2
))
6850 /* This CONST_CAST is okay because lookup_attribute does not
6851 modify its argument and the return value is assigned to a
6853 for (attr
= lookup_ident_attribute (get_attribute_name (t2
),
6854 CONST_CAST_TREE (l1
));
6855 attr
!= NULL_TREE
&& !attribute_value_equal (t2
, attr
);
6856 attr
= lookup_ident_attribute (get_attribute_name (t2
),
6860 if (attr
== NULL_TREE
)
6867 /* Given two lists of types
6868 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6869 return 1 if the lists contain the same types in the same order.
6870 Also, the TREE_PURPOSEs must match. */
6873 type_list_equal (const_tree l1
, const_tree l2
)
6877 for (t1
= l1
, t2
= l2
; t1
&& t2
; t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
6878 if (TREE_VALUE (t1
) != TREE_VALUE (t2
)
6879 || (TREE_PURPOSE (t1
) != TREE_PURPOSE (t2
)
6880 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1
), TREE_PURPOSE (t2
))
6881 && (TREE_TYPE (TREE_PURPOSE (t1
))
6882 == TREE_TYPE (TREE_PURPOSE (t2
))))))
6888 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6889 given by TYPE. If the argument list accepts variable arguments,
6890 then this function counts only the ordinary arguments. */
6893 type_num_arguments (const_tree type
)
6898 for (t
= TYPE_ARG_TYPES (type
); t
; t
= TREE_CHAIN (t
))
6899 /* If the function does not take a variable number of arguments,
6900 the last element in the list will have type `void'. */
6901 if (VOID_TYPE_P (TREE_VALUE (t
)))
6909 /* Nonzero if integer constants T1 and T2
6910 represent the same constant value. */
6913 tree_int_cst_equal (const_tree t1
, const_tree t2
)
6918 if (t1
== 0 || t2
== 0)
6921 if (TREE_CODE (t1
) == INTEGER_CST
6922 && TREE_CODE (t2
) == INTEGER_CST
6923 && TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
6924 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
))
6930 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
6931 The precise way of comparison depends on their data type. */
6934 tree_int_cst_lt (const_tree t1
, const_tree t2
)
6939 if (TYPE_UNSIGNED (TREE_TYPE (t1
)) != TYPE_UNSIGNED (TREE_TYPE (t2
)))
6941 int t1_sgn
= tree_int_cst_sgn (t1
);
6942 int t2_sgn
= tree_int_cst_sgn (t2
);
6944 if (t1_sgn
< t2_sgn
)
6946 else if (t1_sgn
> t2_sgn
)
6948 /* Otherwise, both are non-negative, so we compare them as
6949 unsigned just in case one of them would overflow a signed
6952 else if (!TYPE_UNSIGNED (TREE_TYPE (t1
)))
6953 return INT_CST_LT (t1
, t2
);
6955 return INT_CST_LT_UNSIGNED (t1
, t2
);
6958 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
6961 tree_int_cst_compare (const_tree t1
, const_tree t2
)
6963 if (tree_int_cst_lt (t1
, t2
))
6965 else if (tree_int_cst_lt (t2
, t1
))
6971 /* Return true if T is an INTEGER_CST whose numerical value (extended
6972 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
6975 tree_fits_shwi_p (const_tree t
)
6977 return (t
!= NULL_TREE
6978 && TREE_CODE (t
) == INTEGER_CST
6979 && ((TREE_INT_CST_HIGH (t
) == 0
6980 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) >= 0)
6981 || (TREE_INT_CST_HIGH (t
) == -1
6982 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0
6983 && !TYPE_UNSIGNED (TREE_TYPE (t
)))));
6986 /* Return true if T is an INTEGER_CST whose numerical value (extended
6987 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
6990 tree_fits_uhwi_p (const_tree t
)
6992 return (t
!= NULL_TREE
6993 && TREE_CODE (t
) == INTEGER_CST
6994 && TREE_INT_CST_HIGH (t
) == 0);
6997 /* T is an INTEGER_CST whose numerical value (extended according to
6998 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
7002 tree_to_shwi (const_tree t
)
7004 gcc_assert (tree_fits_shwi_p (t
));
7005 return TREE_INT_CST_LOW (t
);
7008 /* T is an INTEGER_CST whose numerical value (extended according to
7009 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
7012 unsigned HOST_WIDE_INT
7013 tree_to_uhwi (const_tree t
)
7015 gcc_assert (tree_fits_uhwi_p (t
));
7016 return TREE_INT_CST_LOW (t
);
7019 /* Return the most significant (sign) bit of T. */
7022 tree_int_cst_sign_bit (const_tree t
)
7024 unsigned bitno
= TYPE_PRECISION (TREE_TYPE (t
)) - 1;
7025 unsigned HOST_WIDE_INT w
;
7027 if (bitno
< HOST_BITS_PER_WIDE_INT
)
7028 w
= TREE_INT_CST_LOW (t
);
7031 w
= TREE_INT_CST_HIGH (t
);
7032 bitno
-= HOST_BITS_PER_WIDE_INT
;
7035 return (w
>> bitno
) & 1;
7038 /* Return an indication of the sign of the integer constant T.
7039 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
7040 Note that -1 will never be returned if T's type is unsigned. */
7043 tree_int_cst_sgn (const_tree t
)
7045 if (TREE_INT_CST_LOW (t
) == 0 && TREE_INT_CST_HIGH (t
) == 0)
7047 else if (TYPE_UNSIGNED (TREE_TYPE (t
)))
7049 else if (TREE_INT_CST_HIGH (t
) < 0)
7055 /* Return the minimum number of bits needed to represent VALUE in a
7056 signed or unsigned type, UNSIGNEDP says which. */
7059 tree_int_cst_min_precision (tree value
, bool unsignedp
)
7061 /* If the value is negative, compute its negative minus 1. The latter
7062 adjustment is because the absolute value of the largest negative value
7063 is one larger than the largest positive value. This is equivalent to
7064 a bit-wise negation, so use that operation instead. */
7066 if (tree_int_cst_sgn (value
) < 0)
7067 value
= fold_build1 (BIT_NOT_EXPR
, TREE_TYPE (value
), value
);
7069 /* Return the number of bits needed, taking into account the fact
7070 that we need one more bit for a signed than unsigned type.
7071 If value is 0 or -1, the minimum precision is 1 no matter
7072 whether unsignedp is true or false. */
7074 if (integer_zerop (value
))
7077 return tree_floor_log2 (value
) + 1 + !unsignedp
;
7080 /* Return truthvalue of whether T1 is the same tree structure as T2.
7081 Return 1 if they are the same.
7082 Return 0 if they are understandably different.
7083 Return -1 if either contains tree structure not understood by
7087 simple_cst_equal (const_tree t1
, const_tree t2
)
7089 enum tree_code code1
, code2
;
7095 if (t1
== 0 || t2
== 0)
7098 code1
= TREE_CODE (t1
);
7099 code2
= TREE_CODE (t2
);
7101 if (CONVERT_EXPR_CODE_P (code1
) || code1
== NON_LVALUE_EXPR
)
7103 if (CONVERT_EXPR_CODE_P (code2
)
7104 || code2
== NON_LVALUE_EXPR
)
7105 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7107 return simple_cst_equal (TREE_OPERAND (t1
, 0), t2
);
7110 else if (CONVERT_EXPR_CODE_P (code2
)
7111 || code2
== NON_LVALUE_EXPR
)
7112 return simple_cst_equal (t1
, TREE_OPERAND (t2
, 0));
7120 return (TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
7121 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
));
7124 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
7127 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
7130 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
7131 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
7132 TREE_STRING_LENGTH (t1
)));
7136 unsigned HOST_WIDE_INT idx
;
7137 vec
<constructor_elt
, va_gc
> *v1
= CONSTRUCTOR_ELTS (t1
);
7138 vec
<constructor_elt
, va_gc
> *v2
= CONSTRUCTOR_ELTS (t2
);
7140 if (vec_safe_length (v1
) != vec_safe_length (v2
))
7143 for (idx
= 0; idx
< vec_safe_length (v1
); ++idx
)
7144 /* ??? Should we handle also fields here? */
7145 if (!simple_cst_equal ((*v1
)[idx
].value
, (*v2
)[idx
].value
))
7151 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7154 cmp
= simple_cst_equal (CALL_EXPR_FN (t1
), CALL_EXPR_FN (t2
));
7157 if (call_expr_nargs (t1
) != call_expr_nargs (t2
))
7160 const_tree arg1
, arg2
;
7161 const_call_expr_arg_iterator iter1
, iter2
;
7162 for (arg1
= first_const_call_expr_arg (t1
, &iter1
),
7163 arg2
= first_const_call_expr_arg (t2
, &iter2
);
7165 arg1
= next_const_call_expr_arg (&iter1
),
7166 arg2
= next_const_call_expr_arg (&iter2
))
7168 cmp
= simple_cst_equal (arg1
, arg2
);
7172 return arg1
== arg2
;
7176 /* Special case: if either target is an unallocated VAR_DECL,
7177 it means that it's going to be unified with whatever the
7178 TARGET_EXPR is really supposed to initialize, so treat it
7179 as being equivalent to anything. */
7180 if ((TREE_CODE (TREE_OPERAND (t1
, 0)) == VAR_DECL
7181 && DECL_NAME (TREE_OPERAND (t1
, 0)) == NULL_TREE
7182 && !DECL_RTL_SET_P (TREE_OPERAND (t1
, 0)))
7183 || (TREE_CODE (TREE_OPERAND (t2
, 0)) == VAR_DECL
7184 && DECL_NAME (TREE_OPERAND (t2
, 0)) == NULL_TREE
7185 && !DECL_RTL_SET_P (TREE_OPERAND (t2
, 0))))
7188 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7193 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
7195 case WITH_CLEANUP_EXPR
:
7196 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7200 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t1
, 1));
7203 if (TREE_OPERAND (t1
, 1) == TREE_OPERAND (t2
, 1))
7204 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7218 /* This general rule works for most tree codes. All exceptions should be
7219 handled above. If this is a language-specific tree code, we can't
7220 trust what might be in the operand, so say we don't know
7222 if ((int) code1
>= (int) LAST_AND_UNUSED_TREE_CODE
)
7225 switch (TREE_CODE_CLASS (code1
))
7229 case tcc_comparison
:
7230 case tcc_expression
:
7234 for (i
= 0; i
< TREE_CODE_LENGTH (code1
); i
++)
7236 cmp
= simple_cst_equal (TREE_OPERAND (t1
, i
), TREE_OPERAND (t2
, i
));
7248 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7249 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7250 than U, respectively. */
7253 compare_tree_int (const_tree t
, unsigned HOST_WIDE_INT u
)
7255 if (tree_int_cst_sgn (t
) < 0)
7257 else if (TREE_INT_CST_HIGH (t
) != 0)
7259 else if (TREE_INT_CST_LOW (t
) == u
)
7261 else if (TREE_INT_CST_LOW (t
) < u
)
7267 /* Return true if SIZE represents a constant size that is in bounds of
7268 what the middle-end and the backend accepts (covering not more than
7269 half of the address-space). */
7272 valid_constant_size_p (const_tree size
)
7274 if (! tree_fits_uhwi_p (size
)
7275 || TREE_OVERFLOW (size
)
7276 || tree_int_cst_sign_bit (size
) != 0)
7281 /* Return the precision of the type, or for a complex or vector type the
7282 precision of the type of its elements. */
7285 element_precision (const_tree type
)
7287 enum tree_code code
= TREE_CODE (type
);
7288 if (code
== COMPLEX_TYPE
|| code
== VECTOR_TYPE
)
7289 type
= TREE_TYPE (type
);
7291 return TYPE_PRECISION (type
);
7294 /* Return true if CODE represents an associative tree code. Otherwise
7297 associative_tree_code (enum tree_code code
)
7316 /* Return true if CODE represents a commutative tree code. Otherwise
7319 commutative_tree_code (enum tree_code code
)
7325 case MULT_HIGHPART_EXPR
:
7333 case UNORDERED_EXPR
:
7337 case TRUTH_AND_EXPR
:
7338 case TRUTH_XOR_EXPR
:
7340 case WIDEN_MULT_EXPR
:
7341 case VEC_WIDEN_MULT_HI_EXPR
:
7342 case VEC_WIDEN_MULT_LO_EXPR
:
7343 case VEC_WIDEN_MULT_EVEN_EXPR
:
7344 case VEC_WIDEN_MULT_ODD_EXPR
:
7353 /* Return true if CODE represents a ternary tree code for which the
7354 first two operands are commutative. Otherwise return false. */
7356 commutative_ternary_tree_code (enum tree_code code
)
7360 case WIDEN_MULT_PLUS_EXPR
:
7361 case WIDEN_MULT_MINUS_EXPR
:
7370 /* Generate a hash value for an expression. This can be used iteratively
7371 by passing a previous result as the VAL argument.
7373 This function is intended to produce the same hash for expressions which
7374 would compare equal using operand_equal_p. */
7377 iterative_hash_expr (const_tree t
, hashval_t val
)
7380 enum tree_code code
;
7384 return iterative_hash_hashval_t (0, val
);
7386 code
= TREE_CODE (t
);
7390 /* Alas, constants aren't shared, so we can't rely on pointer
7393 val
= iterative_hash_host_wide_int (TREE_INT_CST_LOW (t
), val
);
7394 return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t
), val
);
7397 unsigned int val2
= real_hash (TREE_REAL_CST_PTR (t
));
7399 return iterative_hash_hashval_t (val2
, val
);
7403 unsigned int val2
= fixed_hash (TREE_FIXED_CST_PTR (t
));
7405 return iterative_hash_hashval_t (val2
, val
);
7408 return iterative_hash (TREE_STRING_POINTER (t
),
7409 TREE_STRING_LENGTH (t
), val
);
7411 val
= iterative_hash_expr (TREE_REALPART (t
), val
);
7412 return iterative_hash_expr (TREE_IMAGPART (t
), val
);
7416 for (i
= 0; i
< VECTOR_CST_NELTS (t
); ++i
)
7417 val
= iterative_hash_expr (VECTOR_CST_ELT (t
, i
), val
);
7421 /* We can just compare by pointer. */
7422 return iterative_hash_host_wide_int (SSA_NAME_VERSION (t
), val
);
7423 case PLACEHOLDER_EXPR
:
7424 /* The node itself doesn't matter. */
7427 /* A list of expressions, for a CALL_EXPR or as the elements of a
7429 for (; t
; t
= TREE_CHAIN (t
))
7430 val
= iterative_hash_expr (TREE_VALUE (t
), val
);
7434 unsigned HOST_WIDE_INT idx
;
7436 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t
), idx
, field
, value
)
7438 val
= iterative_hash_expr (field
, val
);
7439 val
= iterative_hash_expr (value
, val
);
7444 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7445 Otherwise nodes that compare equal according to operand_equal_p might
7446 get different hash codes. However, don't do this for machine specific
7447 or front end builtins, since the function code is overloaded in those
7449 if (DECL_BUILT_IN_CLASS (t
) == BUILT_IN_NORMAL
7450 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t
)))
7452 t
= builtin_decl_explicit (DECL_FUNCTION_CODE (t
));
7453 code
= TREE_CODE (t
);
7457 tclass
= TREE_CODE_CLASS (code
);
7459 if (tclass
== tcc_declaration
)
7461 /* DECL's have a unique ID */
7462 val
= iterative_hash_host_wide_int (DECL_UID (t
), val
);
7466 gcc_assert (IS_EXPR_CODE_CLASS (tclass
));
7468 val
= iterative_hash_object (code
, val
);
7470 /* Don't hash the type, that can lead to having nodes which
7471 compare equal according to operand_equal_p, but which
7472 have different hash codes. */
7473 if (CONVERT_EXPR_CODE_P (code
)
7474 || code
== NON_LVALUE_EXPR
)
7476 /* Make sure to include signness in the hash computation. */
7477 val
+= TYPE_UNSIGNED (TREE_TYPE (t
));
7478 val
= iterative_hash_expr (TREE_OPERAND (t
, 0), val
);
7481 else if (commutative_tree_code (code
))
7483 /* It's a commutative expression. We want to hash it the same
7484 however it appears. We do this by first hashing both operands
7485 and then rehashing based on the order of their independent
7487 hashval_t one
= iterative_hash_expr (TREE_OPERAND (t
, 0), 0);
7488 hashval_t two
= iterative_hash_expr (TREE_OPERAND (t
, 1), 0);
7492 t
= one
, one
= two
, two
= t
;
7494 val
= iterative_hash_hashval_t (one
, val
);
7495 val
= iterative_hash_hashval_t (two
, val
);
7498 for (i
= TREE_OPERAND_LENGTH (t
) - 1; i
>= 0; --i
)
7499 val
= iterative_hash_expr (TREE_OPERAND (t
, i
), val
);
7505 /* Constructors for pointer, array and function types.
7506 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7507 constructed by language-dependent code, not here.) */
7509 /* Construct, lay out and return the type of pointers to TO_TYPE with
7510 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7511 reference all of memory. If such a type has already been
7512 constructed, reuse it. */
7515 build_pointer_type_for_mode (tree to_type
, enum machine_mode mode
,
7520 if (to_type
== error_mark_node
)
7521 return error_mark_node
;
7523 /* If the pointed-to type has the may_alias attribute set, force
7524 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7525 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7526 can_alias_all
= true;
7528 /* In some cases, languages will have things that aren't a POINTER_TYPE
7529 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7530 In that case, return that type without regard to the rest of our
7533 ??? This is a kludge, but consistent with the way this function has
7534 always operated and there doesn't seem to be a good way to avoid this
7536 if (TYPE_POINTER_TO (to_type
) != 0
7537 && TREE_CODE (TYPE_POINTER_TO (to_type
)) != POINTER_TYPE
)
7538 return TYPE_POINTER_TO (to_type
);
7540 /* First, if we already have a type for pointers to TO_TYPE and it's
7541 the proper mode, use it. */
7542 for (t
= TYPE_POINTER_TO (to_type
); t
; t
= TYPE_NEXT_PTR_TO (t
))
7543 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7546 t
= make_node (POINTER_TYPE
);
7548 TREE_TYPE (t
) = to_type
;
7549 SET_TYPE_MODE (t
, mode
);
7550 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7551 TYPE_NEXT_PTR_TO (t
) = TYPE_POINTER_TO (to_type
);
7552 TYPE_POINTER_TO (to_type
) = t
;
7554 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
7555 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7556 else if (TYPE_CANONICAL (to_type
) != to_type
)
7558 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type
),
7559 mode
, can_alias_all
);
7561 /* Lay out the type. This function has many callers that are concerned
7562 with expression-construction, and this simplifies them all. */
7568 /* By default build pointers in ptr_mode. */
7571 build_pointer_type (tree to_type
)
7573 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7574 : TYPE_ADDR_SPACE (to_type
);
7575 enum machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7576 return build_pointer_type_for_mode (to_type
, pointer_mode
, false);
7579 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7582 build_reference_type_for_mode (tree to_type
, enum machine_mode mode
,
7587 if (to_type
== error_mark_node
)
7588 return error_mark_node
;
7590 /* If the pointed-to type has the may_alias attribute set, force
7591 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7592 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7593 can_alias_all
= true;
7595 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7596 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7597 In that case, return that type without regard to the rest of our
7600 ??? This is a kludge, but consistent with the way this function has
7601 always operated and there doesn't seem to be a good way to avoid this
7603 if (TYPE_REFERENCE_TO (to_type
) != 0
7604 && TREE_CODE (TYPE_REFERENCE_TO (to_type
)) != REFERENCE_TYPE
)
7605 return TYPE_REFERENCE_TO (to_type
);
7607 /* First, if we already have a type for pointers to TO_TYPE and it's
7608 the proper mode, use it. */
7609 for (t
= TYPE_REFERENCE_TO (to_type
); t
; t
= TYPE_NEXT_REF_TO (t
))
7610 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7613 t
= make_node (REFERENCE_TYPE
);
7615 TREE_TYPE (t
) = to_type
;
7616 SET_TYPE_MODE (t
, mode
);
7617 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7618 TYPE_NEXT_REF_TO (t
) = TYPE_REFERENCE_TO (to_type
);
7619 TYPE_REFERENCE_TO (to_type
) = t
;
7621 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
7622 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7623 else if (TYPE_CANONICAL (to_type
) != to_type
)
7625 = build_reference_type_for_mode (TYPE_CANONICAL (to_type
),
7626 mode
, can_alias_all
);
7634 /* Build the node for the type of references-to-TO_TYPE by default
7638 build_reference_type (tree to_type
)
7640 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7641 : TYPE_ADDR_SPACE (to_type
);
7642 enum machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7643 return build_reference_type_for_mode (to_type
, pointer_mode
, false);
7646 #define MAX_INT_CACHED_PREC \
7647 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7648 static GTY(()) tree nonstandard_integer_type_cache
[2 * MAX_INT_CACHED_PREC
+ 2];
7650 /* Builds a signed or unsigned integer type of precision PRECISION.
7651 Used for C bitfields whose precision does not match that of
7652 built-in target types. */
7654 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision
,
7660 unsignedp
= MAX_INT_CACHED_PREC
+ 1;
7662 if (precision
<= MAX_INT_CACHED_PREC
)
7664 itype
= nonstandard_integer_type_cache
[precision
+ unsignedp
];
7669 itype
= make_node (INTEGER_TYPE
);
7670 TYPE_PRECISION (itype
) = precision
;
7673 fixup_unsigned_type (itype
);
7675 fixup_signed_type (itype
);
7678 if (tree_fits_uhwi_p (TYPE_MAX_VALUE (itype
)))
7679 ret
= type_hash_canon (tree_to_uhwi (TYPE_MAX_VALUE (itype
)), itype
);
7680 if (precision
<= MAX_INT_CACHED_PREC
)
7681 nonstandard_integer_type_cache
[precision
+ unsignedp
] = ret
;
7686 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7687 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7688 is true, reuse such a type that has already been constructed. */
7691 build_range_type_1 (tree type
, tree lowval
, tree highval
, bool shared
)
7693 tree itype
= make_node (INTEGER_TYPE
);
7694 hashval_t hashcode
= 0;
7696 TREE_TYPE (itype
) = type
;
7698 TYPE_MIN_VALUE (itype
) = fold_convert (type
, lowval
);
7699 TYPE_MAX_VALUE (itype
) = highval
? fold_convert (type
, highval
) : NULL
;
7701 TYPE_PRECISION (itype
) = TYPE_PRECISION (type
);
7702 SET_TYPE_MODE (itype
, TYPE_MODE (type
));
7703 TYPE_SIZE (itype
) = TYPE_SIZE (type
);
7704 TYPE_SIZE_UNIT (itype
) = TYPE_SIZE_UNIT (type
);
7705 TYPE_ALIGN (itype
) = TYPE_ALIGN (type
);
7706 TYPE_USER_ALIGN (itype
) = TYPE_USER_ALIGN (type
);
7711 if ((TYPE_MIN_VALUE (itype
)
7712 && TREE_CODE (TYPE_MIN_VALUE (itype
)) != INTEGER_CST
)
7713 || (TYPE_MAX_VALUE (itype
)
7714 && TREE_CODE (TYPE_MAX_VALUE (itype
)) != INTEGER_CST
))
7716 /* Since we cannot reliably merge this type, we need to compare it using
7717 structural equality checks. */
7718 SET_TYPE_STRUCTURAL_EQUALITY (itype
);
7722 hashcode
= iterative_hash_expr (TYPE_MIN_VALUE (itype
), hashcode
);
7723 hashcode
= iterative_hash_expr (TYPE_MAX_VALUE (itype
), hashcode
);
7724 hashcode
= iterative_hash_hashval_t (TYPE_HASH (type
), hashcode
);
7725 itype
= type_hash_canon (hashcode
, itype
);
7730 /* Wrapper around build_range_type_1 with SHARED set to true. */
7733 build_range_type (tree type
, tree lowval
, tree highval
)
7735 return build_range_type_1 (type
, lowval
, highval
, true);
7738 /* Wrapper around build_range_type_1 with SHARED set to false. */
7741 build_nonshared_range_type (tree type
, tree lowval
, tree highval
)
7743 return build_range_type_1 (type
, lowval
, highval
, false);
7746 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7747 MAXVAL should be the maximum value in the domain
7748 (one less than the length of the array).
7750 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7751 We don't enforce this limit, that is up to caller (e.g. language front end).
7752 The limit exists because the result is a signed type and we don't handle
7753 sizes that use more than one HOST_WIDE_INT. */
7756 build_index_type (tree maxval
)
7758 return build_range_type (sizetype
, size_zero_node
, maxval
);
7761 /* Return true if the debug information for TYPE, a subtype, should be emitted
7762 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7763 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7764 debug info and doesn't reflect the source code. */
7767 subrange_type_for_debug_p (const_tree type
, tree
*lowval
, tree
*highval
)
7769 tree base_type
= TREE_TYPE (type
), low
, high
;
7771 /* Subrange types have a base type which is an integral type. */
7772 if (!INTEGRAL_TYPE_P (base_type
))
7775 /* Get the real bounds of the subtype. */
7776 if (lang_hooks
.types
.get_subrange_bounds
)
7777 lang_hooks
.types
.get_subrange_bounds (type
, &low
, &high
);
7780 low
= TYPE_MIN_VALUE (type
);
7781 high
= TYPE_MAX_VALUE (type
);
7784 /* If the type and its base type have the same representation and the same
7785 name, then the type is not a subrange but a copy of the base type. */
7786 if ((TREE_CODE (base_type
) == INTEGER_TYPE
7787 || TREE_CODE (base_type
) == BOOLEAN_TYPE
)
7788 && int_size_in_bytes (type
) == int_size_in_bytes (base_type
)
7789 && tree_int_cst_equal (low
, TYPE_MIN_VALUE (base_type
))
7790 && tree_int_cst_equal (high
, TYPE_MAX_VALUE (base_type
)))
7792 tree type_name
= TYPE_NAME (type
);
7793 tree base_type_name
= TYPE_NAME (base_type
);
7795 if (type_name
&& TREE_CODE (type_name
) == TYPE_DECL
)
7796 type_name
= DECL_NAME (type_name
);
7798 if (base_type_name
&& TREE_CODE (base_type_name
) == TYPE_DECL
)
7799 base_type_name
= DECL_NAME (base_type_name
);
7801 if (type_name
== base_type_name
)
7812 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7813 and number of elements specified by the range of values of INDEX_TYPE.
7814 If SHARED is true, reuse such a type that has already been constructed. */
7817 build_array_type_1 (tree elt_type
, tree index_type
, bool shared
)
7821 if (TREE_CODE (elt_type
) == FUNCTION_TYPE
)
7823 error ("arrays of functions are not meaningful");
7824 elt_type
= integer_type_node
;
7827 t
= make_node (ARRAY_TYPE
);
7828 TREE_TYPE (t
) = elt_type
;
7829 TYPE_DOMAIN (t
) = index_type
;
7830 TYPE_ADDR_SPACE (t
) = TYPE_ADDR_SPACE (elt_type
);
7833 /* If the element type is incomplete at this point we get marked for
7834 structural equality. Do not record these types in the canonical
7836 if (TYPE_STRUCTURAL_EQUALITY_P (t
))
7841 hashval_t hashcode
= iterative_hash_object (TYPE_HASH (elt_type
), 0);
7843 hashcode
= iterative_hash_object (TYPE_HASH (index_type
), hashcode
);
7844 t
= type_hash_canon (hashcode
, t
);
7847 if (TYPE_CANONICAL (t
) == t
)
7849 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type
)
7850 || (index_type
&& TYPE_STRUCTURAL_EQUALITY_P (index_type
)))
7851 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7852 else if (TYPE_CANONICAL (elt_type
) != elt_type
7853 || (index_type
&& TYPE_CANONICAL (index_type
) != index_type
))
7855 = build_array_type_1 (TYPE_CANONICAL (elt_type
),
7857 ? TYPE_CANONICAL (index_type
) : NULL_TREE
,
7864 /* Wrapper around build_array_type_1 with SHARED set to true. */
7867 build_array_type (tree elt_type
, tree index_type
)
7869 return build_array_type_1 (elt_type
, index_type
, true);
7872 /* Wrapper around build_array_type_1 with SHARED set to false. */
7875 build_nonshared_array_type (tree elt_type
, tree index_type
)
7877 return build_array_type_1 (elt_type
, index_type
, false);
7880 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7884 build_array_type_nelts (tree elt_type
, unsigned HOST_WIDE_INT nelts
)
7886 return build_array_type (elt_type
, build_index_type (size_int (nelts
- 1)));
7889 /* Recursively examines the array elements of TYPE, until a non-array
7890 element type is found. */
7893 strip_array_types (tree type
)
7895 while (TREE_CODE (type
) == ARRAY_TYPE
)
7896 type
= TREE_TYPE (type
);
7901 /* Computes the canonical argument types from the argument type list
7904 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7905 on entry to this function, or if any of the ARGTYPES are
7908 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7909 true on entry to this function, or if any of the ARGTYPES are
7912 Returns a canonical argument list, which may be ARGTYPES when the
7913 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7914 true) or would not differ from ARGTYPES. */
7917 maybe_canonicalize_argtypes (tree argtypes
,
7918 bool *any_structural_p
,
7919 bool *any_noncanonical_p
)
7922 bool any_noncanonical_argtypes_p
= false;
7924 for (arg
= argtypes
; arg
&& !(*any_structural_p
); arg
= TREE_CHAIN (arg
))
7926 if (!TREE_VALUE (arg
) || TREE_VALUE (arg
) == error_mark_node
)
7927 /* Fail gracefully by stating that the type is structural. */
7928 *any_structural_p
= true;
7929 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg
)))
7930 *any_structural_p
= true;
7931 else if (TYPE_CANONICAL (TREE_VALUE (arg
)) != TREE_VALUE (arg
)
7932 || TREE_PURPOSE (arg
))
7933 /* If the argument has a default argument, we consider it
7934 non-canonical even though the type itself is canonical.
7935 That way, different variants of function and method types
7936 with default arguments will all point to the variant with
7937 no defaults as their canonical type. */
7938 any_noncanonical_argtypes_p
= true;
7941 if (*any_structural_p
)
7944 if (any_noncanonical_argtypes_p
)
7946 /* Build the canonical list of argument types. */
7947 tree canon_argtypes
= NULL_TREE
;
7948 bool is_void
= false;
7950 for (arg
= argtypes
; arg
; arg
= TREE_CHAIN (arg
))
7952 if (arg
== void_list_node
)
7955 canon_argtypes
= tree_cons (NULL_TREE
,
7956 TYPE_CANONICAL (TREE_VALUE (arg
)),
7960 canon_argtypes
= nreverse (canon_argtypes
);
7962 canon_argtypes
= chainon (canon_argtypes
, void_list_node
);
7964 /* There is a non-canonical type. */
7965 *any_noncanonical_p
= true;
7966 return canon_argtypes
;
7969 /* The canonical argument types are the same as ARGTYPES. */
7973 /* Construct, lay out and return
7974 the type of functions returning type VALUE_TYPE
7975 given arguments of types ARG_TYPES.
7976 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
7977 are data type nodes for the arguments of the function.
7978 If such a type has already been constructed, reuse it. */
7981 build_function_type (tree value_type
, tree arg_types
)
7984 hashval_t hashcode
= 0;
7985 bool any_structural_p
, any_noncanonical_p
;
7986 tree canon_argtypes
;
7988 if (TREE_CODE (value_type
) == FUNCTION_TYPE
)
7990 error ("function return type cannot be function");
7991 value_type
= integer_type_node
;
7994 /* Make a node of the sort we want. */
7995 t
= make_node (FUNCTION_TYPE
);
7996 TREE_TYPE (t
) = value_type
;
7997 TYPE_ARG_TYPES (t
) = arg_types
;
7999 /* If we already have such a type, use the old one. */
8000 hashcode
= iterative_hash_object (TYPE_HASH (value_type
), hashcode
);
8001 hashcode
= type_hash_list (arg_types
, hashcode
);
8002 t
= type_hash_canon (hashcode
, t
);
8004 /* Set up the canonical type. */
8005 any_structural_p
= TYPE_STRUCTURAL_EQUALITY_P (value_type
);
8006 any_noncanonical_p
= TYPE_CANONICAL (value_type
) != value_type
;
8007 canon_argtypes
= maybe_canonicalize_argtypes (arg_types
,
8009 &any_noncanonical_p
);
8010 if (any_structural_p
)
8011 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8012 else if (any_noncanonical_p
)
8013 TYPE_CANONICAL (t
) = build_function_type (TYPE_CANONICAL (value_type
),
8016 if (!COMPLETE_TYPE_P (t
))
8021 /* Build a function type. The RETURN_TYPE is the type returned by the
8022 function. If VAARGS is set, no void_type_node is appended to the
8023 the list. ARGP must be always be terminated be a NULL_TREE. */
8026 build_function_type_list_1 (bool vaargs
, tree return_type
, va_list argp
)
8030 t
= va_arg (argp
, tree
);
8031 for (args
= NULL_TREE
; t
!= NULL_TREE
; t
= va_arg (argp
, tree
))
8032 args
= tree_cons (NULL_TREE
, t
, args
);
8037 if (args
!= NULL_TREE
)
8038 args
= nreverse (args
);
8039 gcc_assert (last
!= void_list_node
);
8041 else if (args
== NULL_TREE
)
8042 args
= void_list_node
;
8046 args
= nreverse (args
);
8047 TREE_CHAIN (last
) = void_list_node
;
8049 args
= build_function_type (return_type
, args
);
8054 /* Build a function type. The RETURN_TYPE is the type returned by the
8055 function. If additional arguments are provided, they are
8056 additional argument types. The list of argument types must always
8057 be terminated by NULL_TREE. */
8060 build_function_type_list (tree return_type
, ...)
8065 va_start (p
, return_type
);
8066 args
= build_function_type_list_1 (false, return_type
, p
);
8071 /* Build a variable argument function type. The RETURN_TYPE is the
8072 type returned by the function. If additional arguments are provided,
8073 they are additional argument types. The list of argument types must
8074 always be terminated by NULL_TREE. */
8077 build_varargs_function_type_list (tree return_type
, ...)
8082 va_start (p
, return_type
);
8083 args
= build_function_type_list_1 (true, return_type
, p
);
8089 /* Build a function type. RETURN_TYPE is the type returned by the
8090 function; VAARGS indicates whether the function takes varargs. The
8091 function takes N named arguments, the types of which are provided in
8095 build_function_type_array_1 (bool vaargs
, tree return_type
, int n
,
8099 tree t
= vaargs
? NULL_TREE
: void_list_node
;
8101 for (i
= n
- 1; i
>= 0; i
--)
8102 t
= tree_cons (NULL_TREE
, arg_types
[i
], t
);
8104 return build_function_type (return_type
, t
);
8107 /* Build a function type. RETURN_TYPE is the type returned by the
8108 function. The function takes N named arguments, the types of which
8109 are provided in ARG_TYPES. */
8112 build_function_type_array (tree return_type
, int n
, tree
*arg_types
)
8114 return build_function_type_array_1 (false, return_type
, n
, arg_types
);
8117 /* Build a variable argument function type. RETURN_TYPE is the type
8118 returned by the function. The function takes N named arguments, the
8119 types of which are provided in ARG_TYPES. */
8122 build_varargs_function_type_array (tree return_type
, int n
, tree
*arg_types
)
8124 return build_function_type_array_1 (true, return_type
, n
, arg_types
);
8127 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8128 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8129 for the method. An implicit additional parameter (of type
8130 pointer-to-BASETYPE) is added to the ARGTYPES. */
8133 build_method_type_directly (tree basetype
,
8140 bool any_structural_p
, any_noncanonical_p
;
8141 tree canon_argtypes
;
8143 /* Make a node of the sort we want. */
8144 t
= make_node (METHOD_TYPE
);
8146 TYPE_METHOD_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
8147 TREE_TYPE (t
) = rettype
;
8148 ptype
= build_pointer_type (basetype
);
8150 /* The actual arglist for this function includes a "hidden" argument
8151 which is "this". Put it into the list of argument types. */
8152 argtypes
= tree_cons (NULL_TREE
, ptype
, argtypes
);
8153 TYPE_ARG_TYPES (t
) = argtypes
;
8155 /* If we already have such a type, use the old one. */
8156 hashcode
= iterative_hash_object (TYPE_HASH (basetype
), hashcode
);
8157 hashcode
= iterative_hash_object (TYPE_HASH (rettype
), hashcode
);
8158 hashcode
= type_hash_list (argtypes
, hashcode
);
8159 t
= type_hash_canon (hashcode
, t
);
8161 /* Set up the canonical type. */
8163 = (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
8164 || TYPE_STRUCTURAL_EQUALITY_P (rettype
));
8166 = (TYPE_CANONICAL (basetype
) != basetype
8167 || TYPE_CANONICAL (rettype
) != rettype
);
8168 canon_argtypes
= maybe_canonicalize_argtypes (TREE_CHAIN (argtypes
),
8170 &any_noncanonical_p
);
8171 if (any_structural_p
)
8172 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8173 else if (any_noncanonical_p
)
8175 = build_method_type_directly (TYPE_CANONICAL (basetype
),
8176 TYPE_CANONICAL (rettype
),
8178 if (!COMPLETE_TYPE_P (t
))
8184 /* Construct, lay out and return the type of methods belonging to class
8185 BASETYPE and whose arguments and values are described by TYPE.
8186 If that type exists already, reuse it.
8187 TYPE must be a FUNCTION_TYPE node. */
8190 build_method_type (tree basetype
, tree type
)
8192 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
8194 return build_method_type_directly (basetype
,
8196 TYPE_ARG_TYPES (type
));
8199 /* Construct, lay out and return the type of offsets to a value
8200 of type TYPE, within an object of type BASETYPE.
8201 If a suitable offset type exists already, reuse it. */
8204 build_offset_type (tree basetype
, tree type
)
8207 hashval_t hashcode
= 0;
8209 /* Make a node of the sort we want. */
8210 t
= make_node (OFFSET_TYPE
);
8212 TYPE_OFFSET_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
8213 TREE_TYPE (t
) = type
;
8215 /* If we already have such a type, use the old one. */
8216 hashcode
= iterative_hash_object (TYPE_HASH (basetype
), hashcode
);
8217 hashcode
= iterative_hash_object (TYPE_HASH (type
), hashcode
);
8218 t
= type_hash_canon (hashcode
, t
);
8220 if (!COMPLETE_TYPE_P (t
))
8223 if (TYPE_CANONICAL (t
) == t
)
8225 if (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
8226 || TYPE_STRUCTURAL_EQUALITY_P (type
))
8227 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8228 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)) != basetype
8229 || TYPE_CANONICAL (type
) != type
)
8231 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)),
8232 TYPE_CANONICAL (type
));
8238 /* Create a complex type whose components are COMPONENT_TYPE. */
8241 build_complex_type (tree component_type
)
8246 gcc_assert (INTEGRAL_TYPE_P (component_type
)
8247 || SCALAR_FLOAT_TYPE_P (component_type
)
8248 || FIXED_POINT_TYPE_P (component_type
));
8250 /* Make a node of the sort we want. */
8251 t
= make_node (COMPLEX_TYPE
);
8253 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (component_type
);
8255 /* If we already have such a type, use the old one. */
8256 hashcode
= iterative_hash_object (TYPE_HASH (component_type
), 0);
8257 t
= type_hash_canon (hashcode
, t
);
8259 if (!COMPLETE_TYPE_P (t
))
8262 if (TYPE_CANONICAL (t
) == t
)
8264 if (TYPE_STRUCTURAL_EQUALITY_P (component_type
))
8265 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8266 else if (TYPE_CANONICAL (component_type
) != component_type
)
8268 = build_complex_type (TYPE_CANONICAL (component_type
));
8271 /* We need to create a name, since complex is a fundamental type. */
8272 if (! TYPE_NAME (t
))
8275 if (component_type
== char_type_node
)
8276 name
= "complex char";
8277 else if (component_type
== signed_char_type_node
)
8278 name
= "complex signed char";
8279 else if (component_type
== unsigned_char_type_node
)
8280 name
= "complex unsigned char";
8281 else if (component_type
== short_integer_type_node
)
8282 name
= "complex short int";
8283 else if (component_type
== short_unsigned_type_node
)
8284 name
= "complex short unsigned int";
8285 else if (component_type
== integer_type_node
)
8286 name
= "complex int";
8287 else if (component_type
== unsigned_type_node
)
8288 name
= "complex unsigned int";
8289 else if (component_type
== long_integer_type_node
)
8290 name
= "complex long int";
8291 else if (component_type
== long_unsigned_type_node
)
8292 name
= "complex long unsigned int";
8293 else if (component_type
== long_long_integer_type_node
)
8294 name
= "complex long long int";
8295 else if (component_type
== long_long_unsigned_type_node
)
8296 name
= "complex long long unsigned int";
8301 TYPE_NAME (t
) = build_decl (UNKNOWN_LOCATION
, TYPE_DECL
,
8302 get_identifier (name
), t
);
8305 return build_qualified_type (t
, TYPE_QUALS (component_type
));
8308 /* If TYPE is a real or complex floating-point type and the target
8309 does not directly support arithmetic on TYPE then return the wider
8310 type to be used for arithmetic on TYPE. Otherwise, return
8314 excess_precision_type (tree type
)
8316 if (flag_excess_precision
!= EXCESS_PRECISION_FAST
)
8318 int flt_eval_method
= TARGET_FLT_EVAL_METHOD
;
8319 switch (TREE_CODE (type
))
8322 switch (flt_eval_method
)
8325 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
))
8326 return double_type_node
;
8329 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
)
8330 || TYPE_MODE (type
) == TYPE_MODE (double_type_node
))
8331 return long_double_type_node
;
8338 if (TREE_CODE (TREE_TYPE (type
)) != REAL_TYPE
)
8340 switch (flt_eval_method
)
8343 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
))
8344 return complex_double_type_node
;
8347 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
)
8348 || (TYPE_MODE (TREE_TYPE (type
))
8349 == TYPE_MODE (double_type_node
)))
8350 return complex_long_double_type_node
;
8363 /* Return OP, stripped of any conversions to wider types as much as is safe.
8364 Converting the value back to OP's type makes a value equivalent to OP.
8366 If FOR_TYPE is nonzero, we return a value which, if converted to
8367 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8369 OP must have integer, real or enumeral type. Pointers are not allowed!
8371 There are some cases where the obvious value we could return
8372 would regenerate to OP if converted to OP's type,
8373 but would not extend like OP to wider types.
8374 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8375 For example, if OP is (unsigned short)(signed char)-1,
8376 we avoid returning (signed char)-1 if FOR_TYPE is int,
8377 even though extending that to an unsigned short would regenerate OP,
8378 since the result of extending (signed char)-1 to (int)
8379 is different from (int) OP. */
8382 get_unwidened (tree op
, tree for_type
)
8384 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8385 tree type
= TREE_TYPE (op
);
8387 = TYPE_PRECISION (for_type
!= 0 ? for_type
: type
);
8389 = (for_type
!= 0 && for_type
!= type
8390 && final_prec
> TYPE_PRECISION (type
)
8391 && TYPE_UNSIGNED (type
));
8394 while (CONVERT_EXPR_P (op
))
8398 /* TYPE_PRECISION on vector types has different meaning
8399 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8400 so avoid them here. */
8401 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op
, 0))) == VECTOR_TYPE
)
8404 bitschange
= TYPE_PRECISION (TREE_TYPE (op
))
8405 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0)));
8407 /* Truncations are many-one so cannot be removed.
8408 Unless we are later going to truncate down even farther. */
8410 && final_prec
> TYPE_PRECISION (TREE_TYPE (op
)))
8413 /* See what's inside this conversion. If we decide to strip it,
8415 op
= TREE_OPERAND (op
, 0);
8417 /* If we have not stripped any zero-extensions (uns is 0),
8418 we can strip any kind of extension.
8419 If we have previously stripped a zero-extension,
8420 only zero-extensions can safely be stripped.
8421 Any extension can be stripped if the bits it would produce
8422 are all going to be discarded later by truncating to FOR_TYPE. */
8426 if (! uns
|| final_prec
<= TYPE_PRECISION (TREE_TYPE (op
)))
8428 /* TYPE_UNSIGNED says whether this is a zero-extension.
8429 Let's avoid computing it if it does not affect WIN
8430 and if UNS will not be needed again. */
8432 || CONVERT_EXPR_P (op
))
8433 && TYPE_UNSIGNED (TREE_TYPE (op
)))
8441 /* If we finally reach a constant see if it fits in for_type and
8442 in that case convert it. */
8444 && TREE_CODE (win
) == INTEGER_CST
8445 && TREE_TYPE (win
) != for_type
8446 && int_fits_type_p (win
, for_type
))
8447 win
= fold_convert (for_type
, win
);
8452 /* Return OP or a simpler expression for a narrower value
8453 which can be sign-extended or zero-extended to give back OP.
8454 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8455 or 0 if the value should be sign-extended. */
8458 get_narrower (tree op
, int *unsignedp_ptr
)
8463 bool integral_p
= INTEGRAL_TYPE_P (TREE_TYPE (op
));
8465 while (TREE_CODE (op
) == NOP_EXPR
)
8468 = (TYPE_PRECISION (TREE_TYPE (op
))
8469 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0))));
8471 /* Truncations are many-one so cannot be removed. */
8475 /* See what's inside this conversion. If we decide to strip it,
8480 op
= TREE_OPERAND (op
, 0);
8481 /* An extension: the outermost one can be stripped,
8482 but remember whether it is zero or sign extension. */
8484 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8485 /* Otherwise, if a sign extension has been stripped,
8486 only sign extensions can now be stripped;
8487 if a zero extension has been stripped, only zero-extensions. */
8488 else if (uns
!= TYPE_UNSIGNED (TREE_TYPE (op
)))
8492 else /* bitschange == 0 */
8494 /* A change in nominal type can always be stripped, but we must
8495 preserve the unsignedness. */
8497 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8499 op
= TREE_OPERAND (op
, 0);
8500 /* Keep trying to narrow, but don't assign op to win if it
8501 would turn an integral type into something else. */
8502 if (INTEGRAL_TYPE_P (TREE_TYPE (op
)) != integral_p
)
8509 if (TREE_CODE (op
) == COMPONENT_REF
8510 /* Since type_for_size always gives an integer type. */
8511 && TREE_CODE (TREE_TYPE (op
)) != REAL_TYPE
8512 && TREE_CODE (TREE_TYPE (op
)) != FIXED_POINT_TYPE
8513 /* Ensure field is laid out already. */
8514 && DECL_SIZE (TREE_OPERAND (op
, 1)) != 0
8515 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op
, 1))))
8517 unsigned HOST_WIDE_INT innerprec
8518 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op
, 1)));
8519 int unsignedp
= (DECL_UNSIGNED (TREE_OPERAND (op
, 1))
8520 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op
, 1))));
8521 tree type
= lang_hooks
.types
.type_for_size (innerprec
, unsignedp
);
8523 /* We can get this structure field in a narrower type that fits it,
8524 but the resulting extension to its nominal type (a fullword type)
8525 must satisfy the same conditions as for other extensions.
8527 Do this only for fields that are aligned (not bit-fields),
8528 because when bit-field insns will be used there is no
8529 advantage in doing this. */
8531 if (innerprec
< TYPE_PRECISION (TREE_TYPE (op
))
8532 && ! DECL_BIT_FIELD (TREE_OPERAND (op
, 1))
8533 && (first
|| uns
== DECL_UNSIGNED (TREE_OPERAND (op
, 1)))
8537 uns
= DECL_UNSIGNED (TREE_OPERAND (op
, 1));
8538 win
= fold_convert (type
, op
);
8542 *unsignedp_ptr
= uns
;
8546 /* Returns true if integer constant C has a value that is permissible
8547 for type TYPE (an INTEGER_TYPE). */
8550 int_fits_type_p (const_tree c
, const_tree type
)
8552 tree type_low_bound
, type_high_bound
;
8553 bool ok_for_low_bound
, ok_for_high_bound
, unsc
;
8556 dc
= tree_to_double_int (c
);
8557 unsc
= TYPE_UNSIGNED (TREE_TYPE (c
));
8560 type_low_bound
= TYPE_MIN_VALUE (type
);
8561 type_high_bound
= TYPE_MAX_VALUE (type
);
8563 /* If at least one bound of the type is a constant integer, we can check
8564 ourselves and maybe make a decision. If no such decision is possible, but
8565 this type is a subtype, try checking against that. Otherwise, use
8566 double_int_fits_to_tree_p, which checks against the precision.
8568 Compute the status for each possibly constant bound, and return if we see
8569 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8570 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8571 for "constant known to fit". */
8573 /* Check if c >= type_low_bound. */
8574 if (type_low_bound
&& TREE_CODE (type_low_bound
) == INTEGER_CST
)
8576 dd
= tree_to_double_int (type_low_bound
);
8577 if (unsc
!= TYPE_UNSIGNED (TREE_TYPE (type_low_bound
)))
8579 int c_neg
= (!unsc
&& dc
.is_negative ());
8580 int t_neg
= (unsc
&& dd
.is_negative ());
8582 if (c_neg
&& !t_neg
)
8584 if ((c_neg
|| !t_neg
) && dc
.ult (dd
))
8587 else if (dc
.cmp (dd
, unsc
) < 0)
8589 ok_for_low_bound
= true;
8592 ok_for_low_bound
= false;
8594 /* Check if c <= type_high_bound. */
8595 if (type_high_bound
&& TREE_CODE (type_high_bound
) == INTEGER_CST
)
8597 dd
= tree_to_double_int (type_high_bound
);
8598 if (unsc
!= TYPE_UNSIGNED (TREE_TYPE (type_high_bound
)))
8600 int c_neg
= (!unsc
&& dc
.is_negative ());
8601 int t_neg
= (unsc
&& dd
.is_negative ());
8603 if (t_neg
&& !c_neg
)
8605 if ((t_neg
|| !c_neg
) && dc
.ugt (dd
))
8608 else if (dc
.cmp (dd
, unsc
) > 0)
8610 ok_for_high_bound
= true;
8613 ok_for_high_bound
= false;
8615 /* If the constant fits both bounds, the result is known. */
8616 if (ok_for_low_bound
&& ok_for_high_bound
)
8619 /* Perform some generic filtering which may allow making a decision
8620 even if the bounds are not constant. First, negative integers
8621 never fit in unsigned types, */
8622 if (TYPE_UNSIGNED (type
) && !unsc
&& dc
.is_negative ())
8625 /* Second, narrower types always fit in wider ones. */
8626 if (TYPE_PRECISION (type
) > TYPE_PRECISION (TREE_TYPE (c
)))
8629 /* Third, unsigned integers with top bit set never fit signed types. */
8630 if (! TYPE_UNSIGNED (type
) && unsc
)
8632 int prec
= GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (c
))) - 1;
8633 if (prec
< HOST_BITS_PER_WIDE_INT
)
8635 if (((((unsigned HOST_WIDE_INT
) 1) << prec
) & dc
.low
) != 0)
8638 else if (((((unsigned HOST_WIDE_INT
) 1)
8639 << (prec
- HOST_BITS_PER_WIDE_INT
)) & dc
.high
) != 0)
8643 /* If we haven't been able to decide at this point, there nothing more we
8644 can check ourselves here. Look at the base type if we have one and it
8645 has the same precision. */
8646 if (TREE_CODE (type
) == INTEGER_TYPE
8647 && TREE_TYPE (type
) != 0
8648 && TYPE_PRECISION (type
) == TYPE_PRECISION (TREE_TYPE (type
)))
8650 type
= TREE_TYPE (type
);
8654 /* Or to double_int_fits_to_tree_p, if nothing else. */
8655 return double_int_fits_to_tree_p (type
, dc
);
8658 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8659 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8660 represented (assuming two's-complement arithmetic) within the bit
8661 precision of the type are returned instead. */
8664 get_type_static_bounds (const_tree type
, mpz_t min
, mpz_t max
)
8666 if (!POINTER_TYPE_P (type
) && TYPE_MIN_VALUE (type
)
8667 && TREE_CODE (TYPE_MIN_VALUE (type
)) == INTEGER_CST
)
8668 mpz_set_double_int (min
, tree_to_double_int (TYPE_MIN_VALUE (type
)),
8669 TYPE_UNSIGNED (type
));
8672 if (TYPE_UNSIGNED (type
))
8673 mpz_set_ui (min
, 0);
8677 mn
= double_int::mask (TYPE_PRECISION (type
) - 1);
8678 mn
= (mn
+ double_int_one
).sext (TYPE_PRECISION (type
));
8679 mpz_set_double_int (min
, mn
, false);
8683 if (!POINTER_TYPE_P (type
) && TYPE_MAX_VALUE (type
)
8684 && TREE_CODE (TYPE_MAX_VALUE (type
)) == INTEGER_CST
)
8685 mpz_set_double_int (max
, tree_to_double_int (TYPE_MAX_VALUE (type
)),
8686 TYPE_UNSIGNED (type
));
8689 if (TYPE_UNSIGNED (type
))
8690 mpz_set_double_int (max
, double_int::mask (TYPE_PRECISION (type
)),
8693 mpz_set_double_int (max
, double_int::mask (TYPE_PRECISION (type
) - 1),
8698 /* Return true if VAR is an automatic variable defined in function FN. */
8701 auto_var_in_fn_p (const_tree var
, const_tree fn
)
8703 return (DECL_P (var
) && DECL_CONTEXT (var
) == fn
8704 && ((((TREE_CODE (var
) == VAR_DECL
&& ! DECL_EXTERNAL (var
))
8705 || TREE_CODE (var
) == PARM_DECL
)
8706 && ! TREE_STATIC (var
))
8707 || TREE_CODE (var
) == LABEL_DECL
8708 || TREE_CODE (var
) == RESULT_DECL
));
8711 /* Subprogram of following function. Called by walk_tree.
8713 Return *TP if it is an automatic variable or parameter of the
8714 function passed in as DATA. */
8717 find_var_from_fn (tree
*tp
, int *walk_subtrees
, void *data
)
8719 tree fn
= (tree
) data
;
8724 else if (DECL_P (*tp
)
8725 && auto_var_in_fn_p (*tp
, fn
))
8731 /* Returns true if T is, contains, or refers to a type with variable
8732 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8733 arguments, but not the return type. If FN is nonzero, only return
8734 true if a modifier of the type or position of FN is a variable or
8735 parameter inside FN.
8737 This concept is more general than that of C99 'variably modified types':
8738 in C99, a struct type is never variably modified because a VLA may not
8739 appear as a structure member. However, in GNU C code like:
8741 struct S { int i[f()]; };
8743 is valid, and other languages may define similar constructs. */
8746 variably_modified_type_p (tree type
, tree fn
)
8750 /* Test if T is either variable (if FN is zero) or an expression containing
8751 a variable in FN. If TYPE isn't gimplified, return true also if
8752 gimplify_one_sizepos would gimplify the expression into a local
8754 #define RETURN_TRUE_IF_VAR(T) \
8755 do { tree _t = (T); \
8756 if (_t != NULL_TREE \
8757 && _t != error_mark_node \
8758 && TREE_CODE (_t) != INTEGER_CST \
8759 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8761 || (!TYPE_SIZES_GIMPLIFIED (type) \
8762 && !is_gimple_sizepos (_t)) \
8763 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8764 return true; } while (0)
8766 if (type
== error_mark_node
)
8769 /* If TYPE itself has variable size, it is variably modified. */
8770 RETURN_TRUE_IF_VAR (TYPE_SIZE (type
));
8771 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type
));
8773 switch (TREE_CODE (type
))
8776 case REFERENCE_TYPE
:
8778 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8784 /* If TYPE is a function type, it is variably modified if the
8785 return type is variably modified. */
8786 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8792 case FIXED_POINT_TYPE
:
8795 /* Scalar types are variably modified if their end points
8797 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type
));
8798 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type
));
8803 case QUAL_UNION_TYPE
:
8804 /* We can't see if any of the fields are variably-modified by the
8805 definition we normally use, since that would produce infinite
8806 recursion via pointers. */
8807 /* This is variably modified if some field's type is. */
8808 for (t
= TYPE_FIELDS (type
); t
; t
= DECL_CHAIN (t
))
8809 if (TREE_CODE (t
) == FIELD_DECL
)
8811 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t
));
8812 RETURN_TRUE_IF_VAR (DECL_SIZE (t
));
8813 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t
));
8815 if (TREE_CODE (type
) == QUAL_UNION_TYPE
)
8816 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t
));
8821 /* Do not call ourselves to avoid infinite recursion. This is
8822 variably modified if the element type is. */
8823 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type
)));
8824 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type
)));
8831 /* The current language may have other cases to check, but in general,
8832 all other types are not variably modified. */
8833 return lang_hooks
.tree_inlining
.var_mod_type_p (type
, fn
);
8835 #undef RETURN_TRUE_IF_VAR
8838 /* Given a DECL or TYPE, return the scope in which it was declared, or
8839 NULL_TREE if there is no containing scope. */
8842 get_containing_scope (const_tree t
)
8844 return (TYPE_P (t
) ? TYPE_CONTEXT (t
) : DECL_CONTEXT (t
));
8847 /* Return the innermost context enclosing DECL that is
8848 a FUNCTION_DECL, or zero if none. */
8851 decl_function_context (const_tree decl
)
8855 if (TREE_CODE (decl
) == ERROR_MARK
)
8858 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8859 where we look up the function at runtime. Such functions always take
8860 a first argument of type 'pointer to real context'.
8862 C++ should really be fixed to use DECL_CONTEXT for the real context,
8863 and use something else for the "virtual context". */
8864 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_VINDEX (decl
))
8867 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
8869 context
= DECL_CONTEXT (decl
);
8871 while (context
&& TREE_CODE (context
) != FUNCTION_DECL
)
8873 if (TREE_CODE (context
) == BLOCK
)
8874 context
= BLOCK_SUPERCONTEXT (context
);
8876 context
= get_containing_scope (context
);
8882 /* Return the innermost context enclosing DECL that is
8883 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8884 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8887 decl_type_context (const_tree decl
)
8889 tree context
= DECL_CONTEXT (decl
);
8892 switch (TREE_CODE (context
))
8894 case NAMESPACE_DECL
:
8895 case TRANSLATION_UNIT_DECL
:
8900 case QUAL_UNION_TYPE
:
8905 context
= DECL_CONTEXT (context
);
8909 context
= BLOCK_SUPERCONTEXT (context
);
8919 /* CALL is a CALL_EXPR. Return the declaration for the function
8920 called, or NULL_TREE if the called function cannot be
8924 get_callee_fndecl (const_tree call
)
8928 if (call
== error_mark_node
)
8929 return error_mark_node
;
8931 /* It's invalid to call this function with anything but a
8933 gcc_assert (TREE_CODE (call
) == CALL_EXPR
);
8935 /* The first operand to the CALL is the address of the function
8937 addr
= CALL_EXPR_FN (call
);
8941 /* If this is a readonly function pointer, extract its initial value. */
8942 if (DECL_P (addr
) && TREE_CODE (addr
) != FUNCTION_DECL
8943 && TREE_READONLY (addr
) && ! TREE_THIS_VOLATILE (addr
)
8944 && DECL_INITIAL (addr
))
8945 addr
= DECL_INITIAL (addr
);
8947 /* If the address is just `&f' for some function `f', then we know
8948 that `f' is being called. */
8949 if (TREE_CODE (addr
) == ADDR_EXPR
8950 && TREE_CODE (TREE_OPERAND (addr
, 0)) == FUNCTION_DECL
)
8951 return TREE_OPERAND (addr
, 0);
8953 /* We couldn't figure out what was being called. */
8957 /* Print debugging information about tree nodes generated during the compile,
8958 and any language-specific information. */
8961 dump_tree_statistics (void)
8963 if (GATHER_STATISTICS
)
8966 int total_nodes
, total_bytes
;
8967 fprintf (stderr
, "Kind Nodes Bytes\n");
8968 fprintf (stderr
, "---------------------------------------\n");
8969 total_nodes
= total_bytes
= 0;
8970 for (i
= 0; i
< (int) all_kinds
; i
++)
8972 fprintf (stderr
, "%-20s %7d %10d\n", tree_node_kind_names
[i
],
8973 tree_node_counts
[i
], tree_node_sizes
[i
]);
8974 total_nodes
+= tree_node_counts
[i
];
8975 total_bytes
+= tree_node_sizes
[i
];
8977 fprintf (stderr
, "---------------------------------------\n");
8978 fprintf (stderr
, "%-20s %7d %10d\n", "Total", total_nodes
, total_bytes
);
8979 fprintf (stderr
, "---------------------------------------\n");
8980 fprintf (stderr
, "Code Nodes\n");
8981 fprintf (stderr
, "----------------------------\n");
8982 for (i
= 0; i
< (int) MAX_TREE_CODES
; i
++)
8983 fprintf (stderr
, "%-20s %7d\n", get_tree_code_name ((enum tree_code
) i
),
8984 tree_code_counts
[i
]);
8985 fprintf (stderr
, "----------------------------\n");
8986 ssanames_print_statistics ();
8987 phinodes_print_statistics ();
8990 fprintf (stderr
, "(No per-node statistics)\n");
8992 print_type_hash_statistics ();
8993 print_debug_expr_statistics ();
8994 print_value_expr_statistics ();
8995 lang_hooks
.print_statistics ();
8998 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9000 /* Generate a crc32 of a byte. */
9003 crc32_unsigned_bits (unsigned chksum
, unsigned value
, unsigned bits
)
9007 for (ix
= bits
; ix
--; value
<<= 1)
9011 feedback
= (value
^ chksum
) & 0x80000000 ? 0x04c11db7 : 0;
9018 /* Generate a crc32 of a 32-bit unsigned. */
9021 crc32_unsigned (unsigned chksum
, unsigned value
)
9023 return crc32_unsigned_bits (chksum
, value
, 32);
9026 /* Generate a crc32 of a byte. */
9029 crc32_byte (unsigned chksum
, char byte
)
9031 return crc32_unsigned_bits (chksum
, (unsigned) byte
<< 24, 8);
9034 /* Generate a crc32 of a string. */
9037 crc32_string (unsigned chksum
, const char *string
)
9041 chksum
= crc32_byte (chksum
, *string
);
9047 /* P is a string that will be used in a symbol. Mask out any characters
9048 that are not valid in that context. */
9051 clean_symbol_name (char *p
)
9055 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9058 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9065 /* Generate a name for a special-purpose function.
9066 The generated name may need to be unique across the whole link.
9067 Changes to this function may also require corresponding changes to
9068 xstrdup_mask_random.
9069 TYPE is some string to identify the purpose of this function to the
9070 linker or collect2; it must start with an uppercase letter,
9072 I - for constructors
9074 N - for C++ anonymous namespaces
9075 F - for DWARF unwind frame information. */
9078 get_file_function_name (const char *type
)
9084 /* If we already have a name we know to be unique, just use that. */
9085 if (first_global_object_name
)
9086 p
= q
= ASTRDUP (first_global_object_name
);
9087 /* If the target is handling the constructors/destructors, they
9088 will be local to this file and the name is only necessary for
9090 We also assign sub_I and sub_D sufixes to constructors called from
9091 the global static constructors. These are always local. */
9092 else if (((type
[0] == 'I' || type
[0] == 'D') && targetm
.have_ctors_dtors
)
9093 || (strncmp (type
, "sub_", 4) == 0
9094 && (type
[4] == 'I' || type
[4] == 'D')))
9096 const char *file
= main_input_filename
;
9098 file
= input_filename
;
9099 /* Just use the file's basename, because the full pathname
9100 might be quite long. */
9101 p
= q
= ASTRDUP (lbasename (file
));
9105 /* Otherwise, the name must be unique across the entire link.
9106 We don't have anything that we know to be unique to this translation
9107 unit, so use what we do have and throw in some randomness. */
9109 const char *name
= weak_global_object_name
;
9110 const char *file
= main_input_filename
;
9115 file
= input_filename
;
9117 len
= strlen (file
);
9118 q
= (char *) alloca (9 + 17 + len
+ 1);
9119 memcpy (q
, file
, len
+ 1);
9121 snprintf (q
+ len
, 9 + 17 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX
,
9122 crc32_string (0, name
), get_random_seed (false));
9127 clean_symbol_name (q
);
9128 buf
= (char *) alloca (sizeof (FILE_FUNCTION_FORMAT
) + strlen (p
)
9131 /* Set up the name of the file-level functions we may need.
9132 Use a global object (which is already required to be unique over
9133 the program) rather than the file name (which imposes extra
9135 sprintf (buf
, FILE_FUNCTION_FORMAT
, type
, p
);
9137 return get_identifier (buf
);
9140 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9142 /* Complain that the tree code of NODE does not match the expected 0
9143 terminated list of trailing codes. The trailing code list can be
9144 empty, for a more vague error message. FILE, LINE, and FUNCTION
9145 are of the caller. */
9148 tree_check_failed (const_tree node
, const char *file
,
9149 int line
, const char *function
, ...)
9153 unsigned length
= 0;
9154 enum tree_code code
;
9156 va_start (args
, function
);
9157 while ((code
= (enum tree_code
) va_arg (args
, int)))
9158 length
+= 4 + strlen (get_tree_code_name (code
));
9163 va_start (args
, function
);
9164 length
+= strlen ("expected ");
9165 buffer
= tmp
= (char *) alloca (length
);
9167 while ((code
= (enum tree_code
) va_arg (args
, int)))
9169 const char *prefix
= length
? " or " : "expected ";
9171 strcpy (tmp
+ length
, prefix
);
9172 length
+= strlen (prefix
);
9173 strcpy (tmp
+ length
, get_tree_code_name (code
));
9174 length
+= strlen (get_tree_code_name (code
));
9179 buffer
= "unexpected node";
9181 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9182 buffer
, get_tree_code_name (TREE_CODE (node
)),
9183 function
, trim_filename (file
), line
);
9186 /* Complain that the tree code of NODE does match the expected 0
9187 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9191 tree_not_check_failed (const_tree node
, const char *file
,
9192 int line
, const char *function
, ...)
9196 unsigned length
= 0;
9197 enum tree_code code
;
9199 va_start (args
, function
);
9200 while ((code
= (enum tree_code
) va_arg (args
, int)))
9201 length
+= 4 + strlen (get_tree_code_name (code
));
9203 va_start (args
, function
);
9204 buffer
= (char *) alloca (length
);
9206 while ((code
= (enum tree_code
) va_arg (args
, int)))
9210 strcpy (buffer
+ length
, " or ");
9213 strcpy (buffer
+ length
, get_tree_code_name (code
));
9214 length
+= strlen (get_tree_code_name (code
));
9218 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9219 buffer
, get_tree_code_name (TREE_CODE (node
)),
9220 function
, trim_filename (file
), line
);
9223 /* Similar to tree_check_failed, except that we check for a class of tree
9224 code, given in CL. */
9227 tree_class_check_failed (const_tree node
, const enum tree_code_class cl
,
9228 const char *file
, int line
, const char *function
)
9231 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9232 TREE_CODE_CLASS_STRING (cl
),
9233 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9234 get_tree_code_name (TREE_CODE (node
)), function
, trim_filename (file
), line
);
9237 /* Similar to tree_check_failed, except that instead of specifying a
9238 dozen codes, use the knowledge that they're all sequential. */
9241 tree_range_check_failed (const_tree node
, const char *file
, int line
,
9242 const char *function
, enum tree_code c1
,
9246 unsigned length
= 0;
9249 for (c
= c1
; c
<= c2
; ++c
)
9250 length
+= 4 + strlen (get_tree_code_name ((enum tree_code
) c
));
9252 length
+= strlen ("expected ");
9253 buffer
= (char *) alloca (length
);
9256 for (c
= c1
; c
<= c2
; ++c
)
9258 const char *prefix
= length
? " or " : "expected ";
9260 strcpy (buffer
+ length
, prefix
);
9261 length
+= strlen (prefix
);
9262 strcpy (buffer
+ length
, get_tree_code_name ((enum tree_code
) c
));
9263 length
+= strlen (get_tree_code_name ((enum tree_code
) c
));
9266 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9267 buffer
, get_tree_code_name (TREE_CODE (node
)),
9268 function
, trim_filename (file
), line
);
9272 /* Similar to tree_check_failed, except that we check that a tree does
9273 not have the specified code, given in CL. */
9276 tree_not_class_check_failed (const_tree node
, const enum tree_code_class cl
,
9277 const char *file
, int line
, const char *function
)
9280 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9281 TREE_CODE_CLASS_STRING (cl
),
9282 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9283 get_tree_code_name (TREE_CODE (node
)), function
, trim_filename (file
), line
);
9287 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9290 omp_clause_check_failed (const_tree node
, const char *file
, int line
,
9291 const char *function
, enum omp_clause_code code
)
9293 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9294 omp_clause_code_name
[code
], get_tree_code_name (TREE_CODE (node
)),
9295 function
, trim_filename (file
), line
);
9299 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9302 omp_clause_range_check_failed (const_tree node
, const char *file
, int line
,
9303 const char *function
, enum omp_clause_code c1
,
9304 enum omp_clause_code c2
)
9307 unsigned length
= 0;
9310 for (c
= c1
; c
<= c2
; ++c
)
9311 length
+= 4 + strlen (omp_clause_code_name
[c
]);
9313 length
+= strlen ("expected ");
9314 buffer
= (char *) alloca (length
);
9317 for (c
= c1
; c
<= c2
; ++c
)
9319 const char *prefix
= length
? " or " : "expected ";
9321 strcpy (buffer
+ length
, prefix
);
9322 length
+= strlen (prefix
);
9323 strcpy (buffer
+ length
, omp_clause_code_name
[c
]);
9324 length
+= strlen (omp_clause_code_name
[c
]);
9327 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9328 buffer
, omp_clause_code_name
[TREE_CODE (node
)],
9329 function
, trim_filename (file
), line
);
9333 #undef DEFTREESTRUCT
9334 #define DEFTREESTRUCT(VAL, NAME) NAME,
9336 static const char *ts_enum_names
[] = {
9337 #include "treestruct.def"
9339 #undef DEFTREESTRUCT
9341 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9343 /* Similar to tree_class_check_failed, except that we check for
9344 whether CODE contains the tree structure identified by EN. */
9347 tree_contains_struct_check_failed (const_tree node
,
9348 const enum tree_node_structure_enum en
,
9349 const char *file
, int line
,
9350 const char *function
)
9353 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9355 get_tree_code_name (TREE_CODE (node
)), function
, trim_filename (file
), line
);
9359 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9360 (dynamically sized) vector. */
9363 tree_vec_elt_check_failed (int idx
, int len
, const char *file
, int line
,
9364 const char *function
)
9367 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9368 idx
+ 1, len
, function
, trim_filename (file
), line
);
9371 /* Similar to above, except that the check is for the bounds of the operand
9372 vector of an expression node EXP. */
9375 tree_operand_check_failed (int idx
, const_tree exp
, const char *file
,
9376 int line
, const char *function
)
9378 enum tree_code code
= TREE_CODE (exp
);
9380 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9381 idx
+ 1, get_tree_code_name (code
), TREE_OPERAND_LENGTH (exp
),
9382 function
, trim_filename (file
), line
);
9385 /* Similar to above, except that the check is for the number of
9386 operands of an OMP_CLAUSE node. */
9389 omp_clause_operand_check_failed (int idx
, const_tree t
, const char *file
,
9390 int line
, const char *function
)
9393 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9394 "in %s, at %s:%d", idx
+ 1, omp_clause_code_name
[OMP_CLAUSE_CODE (t
)],
9395 omp_clause_num_ops
[OMP_CLAUSE_CODE (t
)], function
,
9396 trim_filename (file
), line
);
9398 #endif /* ENABLE_TREE_CHECKING */
9400 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9401 and mapped to the machine mode MODE. Initialize its fields and build
9402 the information necessary for debugging output. */
9405 make_vector_type (tree innertype
, int nunits
, enum machine_mode mode
)
9408 hashval_t hashcode
= 0;
9410 t
= make_node (VECTOR_TYPE
);
9411 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (innertype
);
9412 SET_TYPE_VECTOR_SUBPARTS (t
, nunits
);
9413 SET_TYPE_MODE (t
, mode
);
9415 if (TYPE_STRUCTURAL_EQUALITY_P (innertype
))
9416 SET_TYPE_STRUCTURAL_EQUALITY (t
);
9417 else if (TYPE_CANONICAL (innertype
) != innertype
9418 || mode
!= VOIDmode
)
9420 = make_vector_type (TYPE_CANONICAL (innertype
), nunits
, VOIDmode
);
9424 hashcode
= iterative_hash_host_wide_int (VECTOR_TYPE
, hashcode
);
9425 hashcode
= iterative_hash_host_wide_int (nunits
, hashcode
);
9426 hashcode
= iterative_hash_host_wide_int (mode
, hashcode
);
9427 hashcode
= iterative_hash_object (TYPE_HASH (TREE_TYPE (t
)), hashcode
);
9428 t
= type_hash_canon (hashcode
, t
);
9430 /* We have built a main variant, based on the main variant of the
9431 inner type. Use it to build the variant we return. */
9432 if ((TYPE_ATTRIBUTES (innertype
) || TYPE_QUALS (innertype
))
9433 && TREE_TYPE (t
) != innertype
)
9434 return build_type_attribute_qual_variant (t
,
9435 TYPE_ATTRIBUTES (innertype
),
9436 TYPE_QUALS (innertype
));
9442 make_or_reuse_type (unsigned size
, int unsignedp
)
9444 if (size
== INT_TYPE_SIZE
)
9445 return unsignedp
? unsigned_type_node
: integer_type_node
;
9446 if (size
== CHAR_TYPE_SIZE
)
9447 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
9448 if (size
== SHORT_TYPE_SIZE
)
9449 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
9450 if (size
== LONG_TYPE_SIZE
)
9451 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
9452 if (size
== LONG_LONG_TYPE_SIZE
)
9453 return (unsignedp
? long_long_unsigned_type_node
9454 : long_long_integer_type_node
);
9455 if (size
== 128 && int128_integer_type_node
)
9456 return (unsignedp
? int128_unsigned_type_node
9457 : int128_integer_type_node
);
9460 return make_unsigned_type (size
);
9462 return make_signed_type (size
);
9465 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9468 make_or_reuse_fract_type (unsigned size
, int unsignedp
, int satp
)
9472 if (size
== SHORT_FRACT_TYPE_SIZE
)
9473 return unsignedp
? sat_unsigned_short_fract_type_node
9474 : sat_short_fract_type_node
;
9475 if (size
== FRACT_TYPE_SIZE
)
9476 return unsignedp
? sat_unsigned_fract_type_node
: sat_fract_type_node
;
9477 if (size
== LONG_FRACT_TYPE_SIZE
)
9478 return unsignedp
? sat_unsigned_long_fract_type_node
9479 : sat_long_fract_type_node
;
9480 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9481 return unsignedp
? sat_unsigned_long_long_fract_type_node
9482 : sat_long_long_fract_type_node
;
9486 if (size
== SHORT_FRACT_TYPE_SIZE
)
9487 return unsignedp
? unsigned_short_fract_type_node
9488 : short_fract_type_node
;
9489 if (size
== FRACT_TYPE_SIZE
)
9490 return unsignedp
? unsigned_fract_type_node
: fract_type_node
;
9491 if (size
== LONG_FRACT_TYPE_SIZE
)
9492 return unsignedp
? unsigned_long_fract_type_node
9493 : long_fract_type_node
;
9494 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9495 return unsignedp
? unsigned_long_long_fract_type_node
9496 : long_long_fract_type_node
;
9499 return make_fract_type (size
, unsignedp
, satp
);
9502 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9505 make_or_reuse_accum_type (unsigned size
, int unsignedp
, int satp
)
9509 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9510 return unsignedp
? sat_unsigned_short_accum_type_node
9511 : sat_short_accum_type_node
;
9512 if (size
== ACCUM_TYPE_SIZE
)
9513 return unsignedp
? sat_unsigned_accum_type_node
: sat_accum_type_node
;
9514 if (size
== LONG_ACCUM_TYPE_SIZE
)
9515 return unsignedp
? sat_unsigned_long_accum_type_node
9516 : sat_long_accum_type_node
;
9517 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9518 return unsignedp
? sat_unsigned_long_long_accum_type_node
9519 : sat_long_long_accum_type_node
;
9523 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9524 return unsignedp
? unsigned_short_accum_type_node
9525 : short_accum_type_node
;
9526 if (size
== ACCUM_TYPE_SIZE
)
9527 return unsignedp
? unsigned_accum_type_node
: accum_type_node
;
9528 if (size
== LONG_ACCUM_TYPE_SIZE
)
9529 return unsignedp
? unsigned_long_accum_type_node
9530 : long_accum_type_node
;
9531 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9532 return unsignedp
? unsigned_long_long_accum_type_node
9533 : long_long_accum_type_node
;
9536 return make_accum_type (size
, unsignedp
, satp
);
9540 /* Create an atomic variant node for TYPE. This routine is called
9541 during initialization of data types to create the 5 basic atomic
9542 types. The generic build_variant_type function requires these to
9543 already be set up in order to function properly, so cannot be
9544 called from there. */
9547 build_atomic_base (tree type
)
9551 /* Make sure its not already registered. */
9552 if ((t
= get_qualified_type (type
, TYPE_QUAL_ATOMIC
)))
9555 t
= build_variant_type_copy (type
);
9556 set_type_quals (t
, TYPE_QUAL_ATOMIC
);
9561 /* Create nodes for all integer types (and error_mark_node) using the sizes
9562 of C datatypes. SIGNED_CHAR specifies whether char is signed,
9563 SHORT_DOUBLE specifies whether double should be of the same precision
9567 build_common_tree_nodes (bool signed_char
, bool short_double
)
9569 error_mark_node
= make_node (ERROR_MARK
);
9570 TREE_TYPE (error_mark_node
) = error_mark_node
;
9572 initialize_sizetypes ();
9574 /* Define both `signed char' and `unsigned char'. */
9575 signed_char_type_node
= make_signed_type (CHAR_TYPE_SIZE
);
9576 TYPE_STRING_FLAG (signed_char_type_node
) = 1;
9577 unsigned_char_type_node
= make_unsigned_type (CHAR_TYPE_SIZE
);
9578 TYPE_STRING_FLAG (unsigned_char_type_node
) = 1;
9580 /* Define `char', which is like either `signed char' or `unsigned char'
9581 but not the same as either. */
9584 ? make_signed_type (CHAR_TYPE_SIZE
)
9585 : make_unsigned_type (CHAR_TYPE_SIZE
));
9586 TYPE_STRING_FLAG (char_type_node
) = 1;
9588 short_integer_type_node
= make_signed_type (SHORT_TYPE_SIZE
);
9589 short_unsigned_type_node
= make_unsigned_type (SHORT_TYPE_SIZE
);
9590 integer_type_node
= make_signed_type (INT_TYPE_SIZE
);
9591 unsigned_type_node
= make_unsigned_type (INT_TYPE_SIZE
);
9592 long_integer_type_node
= make_signed_type (LONG_TYPE_SIZE
);
9593 long_unsigned_type_node
= make_unsigned_type (LONG_TYPE_SIZE
);
9594 long_long_integer_type_node
= make_signed_type (LONG_LONG_TYPE_SIZE
);
9595 long_long_unsigned_type_node
= make_unsigned_type (LONG_LONG_TYPE_SIZE
);
9596 #if HOST_BITS_PER_WIDE_INT >= 64
9597 /* TODO: This isn't correct, but as logic depends at the moment on
9598 host's instead of target's wide-integer.
9599 If there is a target not supporting TImode, but has an 128-bit
9600 integer-scalar register, this target check needs to be adjusted. */
9601 if (targetm
.scalar_mode_supported_p (TImode
))
9603 int128_integer_type_node
= make_signed_type (128);
9604 int128_unsigned_type_node
= make_unsigned_type (128);
9608 /* Define a boolean type. This type only represents boolean values but
9609 may be larger than char depending on the value of BOOL_TYPE_SIZE.
9610 Front ends which want to override this size (i.e. Java) can redefine
9611 boolean_type_node before calling build_common_tree_nodes_2. */
9612 boolean_type_node
= make_unsigned_type (BOOL_TYPE_SIZE
);
9613 TREE_SET_CODE (boolean_type_node
, BOOLEAN_TYPE
);
9614 TYPE_MAX_VALUE (boolean_type_node
) = build_int_cst (boolean_type_node
, 1);
9615 TYPE_PRECISION (boolean_type_node
) = 1;
9617 /* Define what type to use for size_t. */
9618 if (strcmp (SIZE_TYPE
, "unsigned int") == 0)
9619 size_type_node
= unsigned_type_node
;
9620 else if (strcmp (SIZE_TYPE
, "long unsigned int") == 0)
9621 size_type_node
= long_unsigned_type_node
;
9622 else if (strcmp (SIZE_TYPE
, "long long unsigned int") == 0)
9623 size_type_node
= long_long_unsigned_type_node
;
9624 else if (strcmp (SIZE_TYPE
, "short unsigned int") == 0)
9625 size_type_node
= short_unsigned_type_node
;
9629 /* Fill in the rest of the sized types. Reuse existing type nodes
9631 intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 0);
9632 intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 0);
9633 intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 0);
9634 intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 0);
9635 intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 0);
9637 unsigned_intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 1);
9638 unsigned_intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 1);
9639 unsigned_intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 1);
9640 unsigned_intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 1);
9641 unsigned_intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 1);
9643 /* Don't call build_qualified type for atomics. That routine does
9644 special processing for atomics, and until they are initialized
9645 it's better not to make that call. */
9647 atomicQI_type_node
= build_atomic_base (unsigned_intQI_type_node
);
9648 atomicHI_type_node
= build_atomic_base (unsigned_intHI_type_node
);
9649 atomicSI_type_node
= build_atomic_base (unsigned_intSI_type_node
);
9650 atomicDI_type_node
= build_atomic_base (unsigned_intDI_type_node
);
9651 atomicTI_type_node
= build_atomic_base (unsigned_intTI_type_node
);
9653 access_public_node
= get_identifier ("public");
9654 access_protected_node
= get_identifier ("protected");
9655 access_private_node
= get_identifier ("private");
9657 /* Define these next since types below may used them. */
9658 integer_zero_node
= build_int_cst (integer_type_node
, 0);
9659 integer_one_node
= build_int_cst (integer_type_node
, 1);
9660 integer_three_node
= build_int_cst (integer_type_node
, 3);
9661 integer_minus_one_node
= build_int_cst (integer_type_node
, -1);
9663 size_zero_node
= size_int (0);
9664 size_one_node
= size_int (1);
9665 bitsize_zero_node
= bitsize_int (0);
9666 bitsize_one_node
= bitsize_int (1);
9667 bitsize_unit_node
= bitsize_int (BITS_PER_UNIT
);
9669 boolean_false_node
= TYPE_MIN_VALUE (boolean_type_node
);
9670 boolean_true_node
= TYPE_MAX_VALUE (boolean_type_node
);
9672 void_type_node
= make_node (VOID_TYPE
);
9673 layout_type (void_type_node
);
9675 pointer_bounds_type_node
= targetm
.chkp_bound_type ();
9677 /* We are not going to have real types in C with less than byte alignment,
9678 so we might as well not have any types that claim to have it. */
9679 TYPE_ALIGN (void_type_node
) = BITS_PER_UNIT
;
9680 TYPE_USER_ALIGN (void_type_node
) = 0;
9682 null_pointer_node
= build_int_cst (build_pointer_type (void_type_node
), 0);
9683 layout_type (TREE_TYPE (null_pointer_node
));
9685 ptr_type_node
= build_pointer_type (void_type_node
);
9687 = build_pointer_type (build_type_variant (void_type_node
, 1, 0));
9688 fileptr_type_node
= ptr_type_node
;
9690 pointer_sized_int_node
= build_nonstandard_integer_type (POINTER_SIZE
, 1);
9692 float_type_node
= make_node (REAL_TYPE
);
9693 TYPE_PRECISION (float_type_node
) = FLOAT_TYPE_SIZE
;
9694 layout_type (float_type_node
);
9696 double_type_node
= make_node (REAL_TYPE
);
9698 TYPE_PRECISION (double_type_node
) = FLOAT_TYPE_SIZE
;
9700 TYPE_PRECISION (double_type_node
) = DOUBLE_TYPE_SIZE
;
9701 layout_type (double_type_node
);
9703 long_double_type_node
= make_node (REAL_TYPE
);
9704 TYPE_PRECISION (long_double_type_node
) = LONG_DOUBLE_TYPE_SIZE
;
9705 layout_type (long_double_type_node
);
9707 float_ptr_type_node
= build_pointer_type (float_type_node
);
9708 double_ptr_type_node
= build_pointer_type (double_type_node
);
9709 long_double_ptr_type_node
= build_pointer_type (long_double_type_node
);
9710 integer_ptr_type_node
= build_pointer_type (integer_type_node
);
9712 /* Fixed size integer types. */
9713 uint16_type_node
= build_nonstandard_integer_type (16, true);
9714 uint32_type_node
= build_nonstandard_integer_type (32, true);
9715 uint64_type_node
= build_nonstandard_integer_type (64, true);
9717 /* Decimal float types. */
9718 dfloat32_type_node
= make_node (REAL_TYPE
);
9719 TYPE_PRECISION (dfloat32_type_node
) = DECIMAL32_TYPE_SIZE
;
9720 layout_type (dfloat32_type_node
);
9721 SET_TYPE_MODE (dfloat32_type_node
, SDmode
);
9722 dfloat32_ptr_type_node
= build_pointer_type (dfloat32_type_node
);
9724 dfloat64_type_node
= make_node (REAL_TYPE
);
9725 TYPE_PRECISION (dfloat64_type_node
) = DECIMAL64_TYPE_SIZE
;
9726 layout_type (dfloat64_type_node
);
9727 SET_TYPE_MODE (dfloat64_type_node
, DDmode
);
9728 dfloat64_ptr_type_node
= build_pointer_type (dfloat64_type_node
);
9730 dfloat128_type_node
= make_node (REAL_TYPE
);
9731 TYPE_PRECISION (dfloat128_type_node
) = DECIMAL128_TYPE_SIZE
;
9732 layout_type (dfloat128_type_node
);
9733 SET_TYPE_MODE (dfloat128_type_node
, TDmode
);
9734 dfloat128_ptr_type_node
= build_pointer_type (dfloat128_type_node
);
9736 complex_integer_type_node
= build_complex_type (integer_type_node
);
9737 complex_float_type_node
= build_complex_type (float_type_node
);
9738 complex_double_type_node
= build_complex_type (double_type_node
);
9739 complex_long_double_type_node
= build_complex_type (long_double_type_node
);
9741 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
9742 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
9743 sat_ ## KIND ## _type_node = \
9744 make_sat_signed_ ## KIND ## _type (SIZE); \
9745 sat_unsigned_ ## KIND ## _type_node = \
9746 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9747 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9748 unsigned_ ## KIND ## _type_node = \
9749 make_unsigned_ ## KIND ## _type (SIZE);
9751 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
9752 sat_ ## WIDTH ## KIND ## _type_node = \
9753 make_sat_signed_ ## KIND ## _type (SIZE); \
9754 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
9755 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9756 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9757 unsigned_ ## WIDTH ## KIND ## _type_node = \
9758 make_unsigned_ ## KIND ## _type (SIZE);
9760 /* Make fixed-point type nodes based on four different widths. */
9761 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
9762 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
9763 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
9764 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
9765 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
9767 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
9768 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
9769 NAME ## _type_node = \
9770 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
9771 u ## NAME ## _type_node = \
9772 make_or_reuse_unsigned_ ## KIND ## _type \
9773 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
9774 sat_ ## NAME ## _type_node = \
9775 make_or_reuse_sat_signed_ ## KIND ## _type \
9776 (GET_MODE_BITSIZE (MODE ## mode)); \
9777 sat_u ## NAME ## _type_node = \
9778 make_or_reuse_sat_unsigned_ ## KIND ## _type \
9779 (GET_MODE_BITSIZE (U ## MODE ## mode));
9781 /* Fixed-point type and mode nodes. */
9782 MAKE_FIXED_TYPE_NODE_FAMILY (fract
, FRACT
)
9783 MAKE_FIXED_TYPE_NODE_FAMILY (accum
, ACCUM
)
9784 MAKE_FIXED_MODE_NODE (fract
, qq
, QQ
)
9785 MAKE_FIXED_MODE_NODE (fract
, hq
, HQ
)
9786 MAKE_FIXED_MODE_NODE (fract
, sq
, SQ
)
9787 MAKE_FIXED_MODE_NODE (fract
, dq
, DQ
)
9788 MAKE_FIXED_MODE_NODE (fract
, tq
, TQ
)
9789 MAKE_FIXED_MODE_NODE (accum
, ha
, HA
)
9790 MAKE_FIXED_MODE_NODE (accum
, sa
, SA
)
9791 MAKE_FIXED_MODE_NODE (accum
, da
, DA
)
9792 MAKE_FIXED_MODE_NODE (accum
, ta
, TA
)
9795 tree t
= targetm
.build_builtin_va_list ();
9797 /* Many back-ends define record types without setting TYPE_NAME.
9798 If we copied the record type here, we'd keep the original
9799 record type without a name. This breaks name mangling. So,
9800 don't copy record types and let c_common_nodes_and_builtins()
9801 declare the type to be __builtin_va_list. */
9802 if (TREE_CODE (t
) != RECORD_TYPE
)
9803 t
= build_variant_type_copy (t
);
9805 va_list_type_node
= t
;
9809 /* Modify DECL for given flags.
9810 TM_PURE attribute is set only on types, so the function will modify
9811 DECL's type when ECF_TM_PURE is used. */
9814 set_call_expr_flags (tree decl
, int flags
)
9816 if (flags
& ECF_NOTHROW
)
9817 TREE_NOTHROW (decl
) = 1;
9818 if (flags
& ECF_CONST
)
9819 TREE_READONLY (decl
) = 1;
9820 if (flags
& ECF_PURE
)
9821 DECL_PURE_P (decl
) = 1;
9822 if (flags
& ECF_LOOPING_CONST_OR_PURE
)
9823 DECL_LOOPING_CONST_OR_PURE_P (decl
) = 1;
9824 if (flags
& ECF_NOVOPS
)
9825 DECL_IS_NOVOPS (decl
) = 1;
9826 if (flags
& ECF_NORETURN
)
9827 TREE_THIS_VOLATILE (decl
) = 1;
9828 if (flags
& ECF_MALLOC
)
9829 DECL_IS_MALLOC (decl
) = 1;
9830 if (flags
& ECF_RETURNS_TWICE
)
9831 DECL_IS_RETURNS_TWICE (decl
) = 1;
9832 if (flags
& ECF_LEAF
)
9833 DECL_ATTRIBUTES (decl
) = tree_cons (get_identifier ("leaf"),
9834 NULL
, DECL_ATTRIBUTES (decl
));
9835 if ((flags
& ECF_TM_PURE
) && flag_tm
)
9836 apply_tm_attr (decl
, get_identifier ("transaction_pure"));
9837 /* Looping const or pure is implied by noreturn.
9838 There is currently no way to declare looping const or looping pure alone. */
9839 gcc_assert (!(flags
& ECF_LOOPING_CONST_OR_PURE
)
9840 || ((flags
& ECF_NORETURN
) && (flags
& (ECF_CONST
| ECF_PURE
))));
9844 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
9847 local_define_builtin (const char *name
, tree type
, enum built_in_function code
,
9848 const char *library_name
, int ecf_flags
)
9852 decl
= add_builtin_function (name
, type
, code
, BUILT_IN_NORMAL
,
9853 library_name
, NULL_TREE
);
9854 set_call_expr_flags (decl
, ecf_flags
);
9856 set_builtin_decl (code
, decl
, true);
9859 /* Call this function after instantiating all builtins that the language
9860 front end cares about. This will build the rest of the builtins that
9861 are relied upon by the tree optimizers and the middle-end. */
9864 build_common_builtin_nodes (void)
9869 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE
))
9871 ftype
= build_function_type (void_type_node
, void_list_node
);
9872 local_define_builtin ("__builtin_unreachable", ftype
, BUILT_IN_UNREACHABLE
,
9873 "__builtin_unreachable",
9874 ECF_NOTHROW
| ECF_LEAF
| ECF_NORETURN
9875 | ECF_CONST
| ECF_LEAF
);
9878 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
)
9879 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
9881 ftype
= build_function_type_list (ptr_type_node
,
9882 ptr_type_node
, const_ptr_type_node
,
9883 size_type_node
, NULL_TREE
);
9885 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
))
9886 local_define_builtin ("__builtin_memcpy", ftype
, BUILT_IN_MEMCPY
,
9887 "memcpy", ECF_NOTHROW
| ECF_LEAF
);
9888 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
9889 local_define_builtin ("__builtin_memmove", ftype
, BUILT_IN_MEMMOVE
,
9890 "memmove", ECF_NOTHROW
| ECF_LEAF
);
9893 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP
))
9895 ftype
= build_function_type_list (integer_type_node
, const_ptr_type_node
,
9896 const_ptr_type_node
, size_type_node
,
9898 local_define_builtin ("__builtin_memcmp", ftype
, BUILT_IN_MEMCMP
,
9899 "memcmp", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
9902 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET
))
9904 ftype
= build_function_type_list (ptr_type_node
,
9905 ptr_type_node
, integer_type_node
,
9906 size_type_node
, NULL_TREE
);
9907 local_define_builtin ("__builtin_memset", ftype
, BUILT_IN_MEMSET
,
9908 "memset", ECF_NOTHROW
| ECF_LEAF
);
9911 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA
))
9913 ftype
= build_function_type_list (ptr_type_node
,
9914 size_type_node
, NULL_TREE
);
9915 local_define_builtin ("__builtin_alloca", ftype
, BUILT_IN_ALLOCA
,
9916 "alloca", ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
9919 ftype
= build_function_type_list (ptr_type_node
, size_type_node
,
9920 size_type_node
, NULL_TREE
);
9921 local_define_builtin ("__builtin_alloca_with_align", ftype
,
9922 BUILT_IN_ALLOCA_WITH_ALIGN
, "alloca",
9923 ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
9925 /* If we're checking the stack, `alloca' can throw. */
9926 if (flag_stack_check
)
9928 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA
)) = 0;
9929 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
)) = 0;
9932 ftype
= build_function_type_list (void_type_node
,
9933 ptr_type_node
, ptr_type_node
,
9934 ptr_type_node
, NULL_TREE
);
9935 local_define_builtin ("__builtin_init_trampoline", ftype
,
9936 BUILT_IN_INIT_TRAMPOLINE
,
9937 "__builtin_init_trampoline", ECF_NOTHROW
| ECF_LEAF
);
9938 local_define_builtin ("__builtin_init_heap_trampoline", ftype
,
9939 BUILT_IN_INIT_HEAP_TRAMPOLINE
,
9940 "__builtin_init_heap_trampoline",
9941 ECF_NOTHROW
| ECF_LEAF
);
9943 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
9944 local_define_builtin ("__builtin_adjust_trampoline", ftype
,
9945 BUILT_IN_ADJUST_TRAMPOLINE
,
9946 "__builtin_adjust_trampoline",
9947 ECF_CONST
| ECF_NOTHROW
);
9949 ftype
= build_function_type_list (void_type_node
,
9950 ptr_type_node
, ptr_type_node
, NULL_TREE
);
9951 local_define_builtin ("__builtin_nonlocal_goto", ftype
,
9952 BUILT_IN_NONLOCAL_GOTO
,
9953 "__builtin_nonlocal_goto",
9954 ECF_NORETURN
| ECF_NOTHROW
);
9956 ftype
= build_function_type_list (void_type_node
,
9957 ptr_type_node
, ptr_type_node
, NULL_TREE
);
9958 local_define_builtin ("__builtin_setjmp_setup", ftype
,
9959 BUILT_IN_SETJMP_SETUP
,
9960 "__builtin_setjmp_setup", ECF_NOTHROW
);
9962 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
9963 local_define_builtin ("__builtin_setjmp_dispatcher", ftype
,
9964 BUILT_IN_SETJMP_DISPATCHER
,
9965 "__builtin_setjmp_dispatcher",
9966 ECF_PURE
| ECF_NOTHROW
);
9968 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9969 local_define_builtin ("__builtin_setjmp_receiver", ftype
,
9970 BUILT_IN_SETJMP_RECEIVER
,
9971 "__builtin_setjmp_receiver", ECF_NOTHROW
);
9973 ftype
= build_function_type_list (ptr_type_node
, NULL_TREE
);
9974 local_define_builtin ("__builtin_stack_save", ftype
, BUILT_IN_STACK_SAVE
,
9975 "__builtin_stack_save", ECF_NOTHROW
| ECF_LEAF
);
9977 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9978 local_define_builtin ("__builtin_stack_restore", ftype
,
9979 BUILT_IN_STACK_RESTORE
,
9980 "__builtin_stack_restore", ECF_NOTHROW
| ECF_LEAF
);
9982 /* If there's a possibility that we might use the ARM EABI, build the
9983 alternate __cxa_end_cleanup node used to resume from C++ and Java. */
9984 if (targetm
.arm_eabi_unwinder
)
9986 ftype
= build_function_type_list (void_type_node
, NULL_TREE
);
9987 local_define_builtin ("__builtin_cxa_end_cleanup", ftype
,
9988 BUILT_IN_CXA_END_CLEANUP
,
9989 "__cxa_end_cleanup", ECF_NORETURN
| ECF_LEAF
);
9992 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9993 local_define_builtin ("__builtin_unwind_resume", ftype
,
9994 BUILT_IN_UNWIND_RESUME
,
9995 ((targetm_common
.except_unwind_info (&global_options
)
9997 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10000 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS
) == NULL_TREE
)
10002 ftype
= build_function_type_list (ptr_type_node
, integer_type_node
,
10004 local_define_builtin ("__builtin_return_address", ftype
,
10005 BUILT_IN_RETURN_ADDRESS
,
10006 "__builtin_return_address",
10010 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
)
10011 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
10013 ftype
= build_function_type_list (void_type_node
, ptr_type_node
,
10014 ptr_type_node
, NULL_TREE
);
10015 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
))
10016 local_define_builtin ("__cyg_profile_func_enter", ftype
,
10017 BUILT_IN_PROFILE_FUNC_ENTER
,
10018 "__cyg_profile_func_enter", 0);
10019 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
10020 local_define_builtin ("__cyg_profile_func_exit", ftype
,
10021 BUILT_IN_PROFILE_FUNC_EXIT
,
10022 "__cyg_profile_func_exit", 0);
10025 /* The exception object and filter values from the runtime. The argument
10026 must be zero before exception lowering, i.e. from the front end. After
10027 exception lowering, it will be the region number for the exception
10028 landing pad. These functions are PURE instead of CONST to prevent
10029 them from being hoisted past the exception edge that will initialize
10030 its value in the landing pad. */
10031 ftype
= build_function_type_list (ptr_type_node
,
10032 integer_type_node
, NULL_TREE
);
10033 ecf_flags
= ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
;
10034 /* Only use TM_PURE if we we have TM language support. */
10035 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1
))
10036 ecf_flags
|= ECF_TM_PURE
;
10037 local_define_builtin ("__builtin_eh_pointer", ftype
, BUILT_IN_EH_POINTER
,
10038 "__builtin_eh_pointer", ecf_flags
);
10040 tmp
= lang_hooks
.types
.type_for_mode (targetm
.eh_return_filter_mode (), 0);
10041 ftype
= build_function_type_list (tmp
, integer_type_node
, NULL_TREE
);
10042 local_define_builtin ("__builtin_eh_filter", ftype
, BUILT_IN_EH_FILTER
,
10043 "__builtin_eh_filter", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
10045 ftype
= build_function_type_list (void_type_node
,
10046 integer_type_node
, integer_type_node
,
10048 local_define_builtin ("__builtin_eh_copy_values", ftype
,
10049 BUILT_IN_EH_COPY_VALUES
,
10050 "__builtin_eh_copy_values", ECF_NOTHROW
);
10052 /* Complex multiplication and division. These are handled as builtins
10053 rather than optabs because emit_library_call_value doesn't support
10054 complex. Further, we can do slightly better with folding these
10055 beasties if the real and complex parts of the arguments are separate. */
10059 for (mode
= MIN_MODE_COMPLEX_FLOAT
; mode
<= MAX_MODE_COMPLEX_FLOAT
; ++mode
)
10061 char mode_name_buf
[4], *q
;
10063 enum built_in_function mcode
, dcode
;
10064 tree type
, inner_type
;
10065 const char *prefix
= "__";
10067 if (targetm
.libfunc_gnu_prefix
)
10070 type
= lang_hooks
.types
.type_for_mode ((enum machine_mode
) mode
, 0);
10073 inner_type
= TREE_TYPE (type
);
10075 ftype
= build_function_type_list (type
, inner_type
, inner_type
,
10076 inner_type
, inner_type
, NULL_TREE
);
10078 mcode
= ((enum built_in_function
)
10079 (BUILT_IN_COMPLEX_MUL_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
10080 dcode
= ((enum built_in_function
)
10081 (BUILT_IN_COMPLEX_DIV_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
10083 for (p
= GET_MODE_NAME (mode
), q
= mode_name_buf
; *p
; p
++, q
++)
10087 built_in_names
[mcode
] = concat (prefix
, "mul", mode_name_buf
, "3",
10089 local_define_builtin (built_in_names
[mcode
], ftype
, mcode
,
10090 built_in_names
[mcode
],
10091 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
10093 built_in_names
[dcode
] = concat (prefix
, "div", mode_name_buf
, "3",
10095 local_define_builtin (built_in_names
[dcode
], ftype
, dcode
,
10096 built_in_names
[dcode
],
10097 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
10102 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10105 If we requested a pointer to a vector, build up the pointers that
10106 we stripped off while looking for the inner type. Similarly for
10107 return values from functions.
10109 The argument TYPE is the top of the chain, and BOTTOM is the
10110 new type which we will point to. */
10113 reconstruct_complex_type (tree type
, tree bottom
)
10117 if (TREE_CODE (type
) == POINTER_TYPE
)
10119 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10120 outer
= build_pointer_type_for_mode (inner
, TYPE_MODE (type
),
10121 TYPE_REF_CAN_ALIAS_ALL (type
));
10123 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
10125 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10126 outer
= build_reference_type_for_mode (inner
, TYPE_MODE (type
),
10127 TYPE_REF_CAN_ALIAS_ALL (type
));
10129 else if (TREE_CODE (type
) == ARRAY_TYPE
)
10131 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10132 outer
= build_array_type (inner
, TYPE_DOMAIN (type
));
10134 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
10136 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10137 outer
= build_function_type (inner
, TYPE_ARG_TYPES (type
));
10139 else if (TREE_CODE (type
) == METHOD_TYPE
)
10141 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10142 /* The build_method_type_directly() routine prepends 'this' to argument list,
10143 so we must compensate by getting rid of it. */
10145 = build_method_type_directly
10146 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type
))),
10148 TREE_CHAIN (TYPE_ARG_TYPES (type
)));
10150 else if (TREE_CODE (type
) == OFFSET_TYPE
)
10152 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10153 outer
= build_offset_type (TYPE_OFFSET_BASETYPE (type
), inner
);
10158 return build_type_attribute_qual_variant (outer
, TYPE_ATTRIBUTES (type
),
10159 TYPE_QUALS (type
));
10162 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10165 build_vector_type_for_mode (tree innertype
, enum machine_mode mode
)
10169 switch (GET_MODE_CLASS (mode
))
10171 case MODE_VECTOR_INT
:
10172 case MODE_VECTOR_FLOAT
:
10173 case MODE_VECTOR_FRACT
:
10174 case MODE_VECTOR_UFRACT
:
10175 case MODE_VECTOR_ACCUM
:
10176 case MODE_VECTOR_UACCUM
:
10177 nunits
= GET_MODE_NUNITS (mode
);
10181 /* Check that there are no leftover bits. */
10182 gcc_assert (GET_MODE_BITSIZE (mode
)
10183 % TREE_INT_CST_LOW (TYPE_SIZE (innertype
)) == 0);
10185 nunits
= GET_MODE_BITSIZE (mode
)
10186 / TREE_INT_CST_LOW (TYPE_SIZE (innertype
));
10190 gcc_unreachable ();
10193 return make_vector_type (innertype
, nunits
, mode
);
10196 /* Similarly, but takes the inner type and number of units, which must be
10200 build_vector_type (tree innertype
, int nunits
)
10202 return make_vector_type (innertype
, nunits
, VOIDmode
);
10205 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10208 build_opaque_vector_type (tree innertype
, int nunits
)
10210 tree t
= make_vector_type (innertype
, nunits
, VOIDmode
);
10212 /* We always build the non-opaque variant before the opaque one,
10213 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10214 cand
= TYPE_NEXT_VARIANT (t
);
10216 && TYPE_VECTOR_OPAQUE (cand
)
10217 && check_qualified_type (cand
, t
, TYPE_QUALS (t
)))
10219 /* Othewise build a variant type and make sure to queue it after
10220 the non-opaque type. */
10221 cand
= build_distinct_type_copy (t
);
10222 TYPE_VECTOR_OPAQUE (cand
) = true;
10223 TYPE_CANONICAL (cand
) = TYPE_CANONICAL (t
);
10224 TYPE_NEXT_VARIANT (cand
) = TYPE_NEXT_VARIANT (t
);
10225 TYPE_NEXT_VARIANT (t
) = cand
;
10226 TYPE_MAIN_VARIANT (cand
) = TYPE_MAIN_VARIANT (t
);
10231 /* Given an initializer INIT, return TRUE if INIT is zero or some
10232 aggregate of zeros. Otherwise return FALSE. */
10234 initializer_zerop (const_tree init
)
10240 switch (TREE_CODE (init
))
10243 return integer_zerop (init
);
10246 /* ??? Note that this is not correct for C4X float formats. There,
10247 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
10248 negative exponent. */
10249 return real_zerop (init
)
10250 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init
));
10253 return fixed_zerop (init
);
10256 return integer_zerop (init
)
10257 || (real_zerop (init
)
10258 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init
)))
10259 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init
))));
10264 for (i
= 0; i
< VECTOR_CST_NELTS (init
); ++i
)
10265 if (!initializer_zerop (VECTOR_CST_ELT (init
, i
)))
10272 unsigned HOST_WIDE_INT idx
;
10274 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init
), idx
, elt
)
10275 if (!initializer_zerop (elt
))
10284 /* We need to loop through all elements to handle cases like
10285 "\0" and "\0foobar". */
10286 for (i
= 0; i
< TREE_STRING_LENGTH (init
); ++i
)
10287 if (TREE_STRING_POINTER (init
)[i
] != '\0')
10298 /* Check if vector VEC consists of all the equal elements and
10299 that the number of elements corresponds to the type of VEC.
10300 The function returns first element of the vector
10301 or NULL_TREE if the vector is not uniform. */
10303 uniform_vector_p (const_tree vec
)
10308 if (vec
== NULL_TREE
)
10311 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec
)));
10313 if (TREE_CODE (vec
) == VECTOR_CST
)
10315 first
= VECTOR_CST_ELT (vec
, 0);
10316 for (i
= 1; i
< VECTOR_CST_NELTS (vec
); ++i
)
10317 if (!operand_equal_p (first
, VECTOR_CST_ELT (vec
, i
), 0))
10323 else if (TREE_CODE (vec
) == CONSTRUCTOR
)
10325 first
= error_mark_node
;
10327 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec
), i
, t
)
10334 if (!operand_equal_p (first
, t
, 0))
10337 if (i
!= TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec
)))
10346 /* Build an empty statement at location LOC. */
10349 build_empty_stmt (location_t loc
)
10351 tree t
= build1 (NOP_EXPR
, void_type_node
, size_zero_node
);
10352 SET_EXPR_LOCATION (t
, loc
);
10357 /* Build an OpenMP clause with code CODE. LOC is the location of the
10361 build_omp_clause (location_t loc
, enum omp_clause_code code
)
10366 length
= omp_clause_num_ops
[code
];
10367 size
= (sizeof (struct tree_omp_clause
) + (length
- 1) * sizeof (tree
));
10369 record_node_allocation_statistics (OMP_CLAUSE
, size
);
10371 t
= ggc_alloc_tree_node (size
);
10372 memset (t
, 0, size
);
10373 TREE_SET_CODE (t
, OMP_CLAUSE
);
10374 OMP_CLAUSE_SET_CODE (t
, code
);
10375 OMP_CLAUSE_LOCATION (t
) = loc
;
10380 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10381 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10382 Except for the CODE and operand count field, other storage for the
10383 object is initialized to zeros. */
10386 build_vl_exp_stat (enum tree_code code
, int len MEM_STAT_DECL
)
10389 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_exp
);
10391 gcc_assert (TREE_CODE_CLASS (code
) == tcc_vl_exp
);
10392 gcc_assert (len
>= 1);
10394 record_node_allocation_statistics (code
, length
);
10396 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
10398 TREE_SET_CODE (t
, code
);
10400 /* Can't use TREE_OPERAND to store the length because if checking is
10401 enabled, it will try to check the length before we store it. :-P */
10402 t
->exp
.operands
[0] = build_int_cst (sizetype
, len
);
10407 /* Helper function for build_call_* functions; build a CALL_EXPR with
10408 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10409 the argument slots. */
10412 build_call_1 (tree return_type
, tree fn
, int nargs
)
10416 t
= build_vl_exp (CALL_EXPR
, nargs
+ 3);
10417 TREE_TYPE (t
) = return_type
;
10418 CALL_EXPR_FN (t
) = fn
;
10419 CALL_EXPR_STATIC_CHAIN (t
) = NULL
;
10424 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10425 FN and a null static chain slot. NARGS is the number of call arguments
10426 which are specified as "..." arguments. */
10429 build_call_nary (tree return_type
, tree fn
, int nargs
, ...)
10433 va_start (args
, nargs
);
10434 ret
= build_call_valist (return_type
, fn
, nargs
, args
);
10439 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10440 FN and a null static chain slot. NARGS is the number of call arguments
10441 which are specified as a va_list ARGS. */
10444 build_call_valist (tree return_type
, tree fn
, int nargs
, va_list args
)
10449 t
= build_call_1 (return_type
, fn
, nargs
);
10450 for (i
= 0; i
< nargs
; i
++)
10451 CALL_EXPR_ARG (t
, i
) = va_arg (args
, tree
);
10452 process_call_operands (t
);
10456 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10457 FN and a null static chain slot. NARGS is the number of call arguments
10458 which are specified as a tree array ARGS. */
10461 build_call_array_loc (location_t loc
, tree return_type
, tree fn
,
10462 int nargs
, const tree
*args
)
10467 t
= build_call_1 (return_type
, fn
, nargs
);
10468 for (i
= 0; i
< nargs
; i
++)
10469 CALL_EXPR_ARG (t
, i
) = args
[i
];
10470 process_call_operands (t
);
10471 SET_EXPR_LOCATION (t
, loc
);
10475 /* Like build_call_array, but takes a vec. */
10478 build_call_vec (tree return_type
, tree fn
, vec
<tree
, va_gc
> *args
)
10483 ret
= build_call_1 (return_type
, fn
, vec_safe_length (args
));
10484 FOR_EACH_VEC_SAFE_ELT (args
, ix
, t
)
10485 CALL_EXPR_ARG (ret
, ix
) = t
;
10486 process_call_operands (ret
);
10490 /* Return true if T (assumed to be a DECL) must be assigned a memory
10494 needs_to_live_in_memory (const_tree t
)
10496 return (TREE_ADDRESSABLE (t
)
10497 || is_global_var (t
)
10498 || (TREE_CODE (t
) == RESULT_DECL
10499 && !DECL_BY_REFERENCE (t
)
10500 && aggregate_value_p (t
, current_function_decl
)));
10503 /* Return value of a constant X and sign-extend it. */
10506 int_cst_value (const_tree x
)
10508 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
10509 unsigned HOST_WIDE_INT val
= TREE_INT_CST_LOW (x
);
10511 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10512 gcc_assert (TREE_INT_CST_HIGH (x
) == 0
10513 || TREE_INT_CST_HIGH (x
) == -1);
10515 if (bits
< HOST_BITS_PER_WIDE_INT
)
10517 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
10519 val
|= (~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1;
10521 val
&= ~((~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1);
10527 /* Return value of a constant X and sign-extend it. */
10530 widest_int_cst_value (const_tree x
)
10532 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
10533 unsigned HOST_WIDEST_INT val
= TREE_INT_CST_LOW (x
);
10535 #if HOST_BITS_PER_WIDEST_INT > HOST_BITS_PER_WIDE_INT
10536 gcc_assert (HOST_BITS_PER_WIDEST_INT
>= HOST_BITS_PER_DOUBLE_INT
);
10537 val
|= (((unsigned HOST_WIDEST_INT
) TREE_INT_CST_HIGH (x
))
10538 << HOST_BITS_PER_WIDE_INT
);
10540 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10541 gcc_assert (TREE_INT_CST_HIGH (x
) == 0
10542 || TREE_INT_CST_HIGH (x
) == -1);
10545 if (bits
< HOST_BITS_PER_WIDEST_INT
)
10547 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
10549 val
|= (~(unsigned HOST_WIDEST_INT
) 0) << (bits
- 1) << 1;
10551 val
&= ~((~(unsigned HOST_WIDEST_INT
) 0) << (bits
- 1) << 1);
10557 /* If TYPE is an integral or pointer type, return an integer type with
10558 the same precision which is unsigned iff UNSIGNEDP is true, or itself
10559 if TYPE is already an integer type of signedness UNSIGNEDP. */
10562 signed_or_unsigned_type_for (int unsignedp
, tree type
)
10564 if (TREE_CODE (type
) == INTEGER_TYPE
&& TYPE_UNSIGNED (type
) == unsignedp
)
10567 if (TREE_CODE (type
) == VECTOR_TYPE
)
10569 tree inner
= TREE_TYPE (type
);
10570 tree inner2
= signed_or_unsigned_type_for (unsignedp
, inner
);
10573 if (inner
== inner2
)
10575 return build_vector_type (inner2
, TYPE_VECTOR_SUBPARTS (type
));
10578 if (!INTEGRAL_TYPE_P (type
)
10579 && !POINTER_TYPE_P (type
))
10582 return build_nonstandard_integer_type (TYPE_PRECISION (type
), unsignedp
);
10585 /* If TYPE is an integral or pointer type, return an integer type with
10586 the same precision which is unsigned, or itself if TYPE is already an
10587 unsigned integer type. */
10590 unsigned_type_for (tree type
)
10592 return signed_or_unsigned_type_for (1, type
);
10595 /* If TYPE is an integral or pointer type, return an integer type with
10596 the same precision which is signed, or itself if TYPE is already a
10597 signed integer type. */
10600 signed_type_for (tree type
)
10602 return signed_or_unsigned_type_for (0, type
);
10605 /* If TYPE is a vector type, return a signed integer vector type with the
10606 same width and number of subparts. Otherwise return boolean_type_node. */
10609 truth_type_for (tree type
)
10611 if (TREE_CODE (type
) == VECTOR_TYPE
)
10613 tree elem
= lang_hooks
.types
.type_for_size
10614 (GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type
))), 0);
10615 return build_opaque_vector_type (elem
, TYPE_VECTOR_SUBPARTS (type
));
10618 return boolean_type_node
;
10621 /* Returns the largest value obtainable by casting something in INNER type to
10625 upper_bound_in_type (tree outer
, tree inner
)
10628 unsigned int det
= 0;
10629 unsigned oprec
= TYPE_PRECISION (outer
);
10630 unsigned iprec
= TYPE_PRECISION (inner
);
10633 /* Compute a unique number for every combination. */
10634 det
|= (oprec
> iprec
) ? 4 : 0;
10635 det
|= TYPE_UNSIGNED (outer
) ? 2 : 0;
10636 det
|= TYPE_UNSIGNED (inner
) ? 1 : 0;
10638 /* Determine the exponent to use. */
10643 /* oprec <= iprec, outer: signed, inner: don't care. */
10648 /* oprec <= iprec, outer: unsigned, inner: don't care. */
10652 /* oprec > iprec, outer: signed, inner: signed. */
10656 /* oprec > iprec, outer: signed, inner: unsigned. */
10660 /* oprec > iprec, outer: unsigned, inner: signed. */
10664 /* oprec > iprec, outer: unsigned, inner: unsigned. */
10668 gcc_unreachable ();
10671 /* Compute 2^^prec - 1. */
10672 if (prec
<= HOST_BITS_PER_WIDE_INT
)
10675 high
.low
= ((~(unsigned HOST_WIDE_INT
) 0)
10676 >> (HOST_BITS_PER_WIDE_INT
- prec
));
10680 high
.high
= ((~(unsigned HOST_WIDE_INT
) 0)
10681 >> (HOST_BITS_PER_DOUBLE_INT
- prec
));
10682 high
.low
= ~(unsigned HOST_WIDE_INT
) 0;
10685 return double_int_to_tree (outer
, high
);
10688 /* Returns the smallest value obtainable by casting something in INNER type to
10692 lower_bound_in_type (tree outer
, tree inner
)
10695 unsigned oprec
= TYPE_PRECISION (outer
);
10696 unsigned iprec
= TYPE_PRECISION (inner
);
10698 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
10700 if (TYPE_UNSIGNED (outer
)
10701 /* If we are widening something of an unsigned type, OUTER type
10702 contains all values of INNER type. In particular, both INNER
10703 and OUTER types have zero in common. */
10704 || (oprec
> iprec
&& TYPE_UNSIGNED (inner
)))
10705 low
.low
= low
.high
= 0;
10708 /* If we are widening a signed type to another signed type, we
10709 want to obtain -2^^(iprec-1). If we are keeping the
10710 precision or narrowing to a signed type, we want to obtain
10712 unsigned prec
= oprec
> iprec
? iprec
: oprec
;
10714 if (prec
<= HOST_BITS_PER_WIDE_INT
)
10716 low
.high
= ~(unsigned HOST_WIDE_INT
) 0;
10717 low
.low
= (~(unsigned HOST_WIDE_INT
) 0) << (prec
- 1);
10721 low
.high
= ((~(unsigned HOST_WIDE_INT
) 0)
10722 << (prec
- HOST_BITS_PER_WIDE_INT
- 1));
10727 return double_int_to_tree (outer
, low
);
10730 /* Return nonzero if two operands that are suitable for PHI nodes are
10731 necessarily equal. Specifically, both ARG0 and ARG1 must be either
10732 SSA_NAME or invariant. Note that this is strictly an optimization.
10733 That is, callers of this function can directly call operand_equal_p
10734 and get the same result, only slower. */
10737 operand_equal_for_phi_arg_p (const_tree arg0
, const_tree arg1
)
10741 if (TREE_CODE (arg0
) == SSA_NAME
|| TREE_CODE (arg1
) == SSA_NAME
)
10743 return operand_equal_p (arg0
, arg1
, 0);
10746 /* Returns number of zeros at the end of binary representation of X.
10748 ??? Use ffs if available? */
10751 num_ending_zeros (const_tree x
)
10753 unsigned HOST_WIDE_INT fr
, nfr
;
10754 unsigned num
, abits
;
10755 tree type
= TREE_TYPE (x
);
10757 if (TREE_INT_CST_LOW (x
) == 0)
10759 num
= HOST_BITS_PER_WIDE_INT
;
10760 fr
= TREE_INT_CST_HIGH (x
);
10765 fr
= TREE_INT_CST_LOW (x
);
10768 for (abits
= HOST_BITS_PER_WIDE_INT
/ 2; abits
; abits
/= 2)
10771 if (nfr
<< abits
== fr
)
10778 if (num
> TYPE_PRECISION (type
))
10779 num
= TYPE_PRECISION (type
);
10781 return build_int_cst_type (type
, num
);
10785 #define WALK_SUBTREE(NODE) \
10788 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
10794 /* This is a subroutine of walk_tree that walks field of TYPE that are to
10795 be walked whenever a type is seen in the tree. Rest of operands and return
10796 value are as for walk_tree. */
10799 walk_type_fields (tree type
, walk_tree_fn func
, void *data
,
10800 struct pointer_set_t
*pset
, walk_tree_lh lh
)
10802 tree result
= NULL_TREE
;
10804 switch (TREE_CODE (type
))
10807 case REFERENCE_TYPE
:
10808 /* We have to worry about mutually recursive pointers. These can't
10809 be written in C. They can in Ada. It's pathological, but
10810 there's an ACATS test (c38102a) that checks it. Deal with this
10811 by checking if we're pointing to another pointer, that one
10812 points to another pointer, that one does too, and we have no htab.
10813 If so, get a hash table. We check three levels deep to avoid
10814 the cost of the hash table if we don't need one. */
10815 if (POINTER_TYPE_P (TREE_TYPE (type
))
10816 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type
)))
10817 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type
))))
10820 result
= walk_tree_without_duplicates (&TREE_TYPE (type
),
10828 /* ... fall through ... */
10831 WALK_SUBTREE (TREE_TYPE (type
));
10835 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type
));
10837 /* Fall through. */
10839 case FUNCTION_TYPE
:
10840 WALK_SUBTREE (TREE_TYPE (type
));
10844 /* We never want to walk into default arguments. */
10845 for (arg
= TYPE_ARG_TYPES (type
); arg
; arg
= TREE_CHAIN (arg
))
10846 WALK_SUBTREE (TREE_VALUE (arg
));
10851 /* Don't follow this nodes's type if a pointer for fear that
10852 we'll have infinite recursion. If we have a PSET, then we
10855 || (!POINTER_TYPE_P (TREE_TYPE (type
))
10856 && TREE_CODE (TREE_TYPE (type
)) != OFFSET_TYPE
))
10857 WALK_SUBTREE (TREE_TYPE (type
));
10858 WALK_SUBTREE (TYPE_DOMAIN (type
));
10862 WALK_SUBTREE (TREE_TYPE (type
));
10863 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type
));
10873 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
10874 called with the DATA and the address of each sub-tree. If FUNC returns a
10875 non-NULL value, the traversal is stopped, and the value returned by FUNC
10876 is returned. If PSET is non-NULL it is used to record the nodes visited,
10877 and to avoid visiting a node more than once. */
10880 walk_tree_1 (tree
*tp
, walk_tree_fn func
, void *data
,
10881 struct pointer_set_t
*pset
, walk_tree_lh lh
)
10883 enum tree_code code
;
10887 #define WALK_SUBTREE_TAIL(NODE) \
10891 goto tail_recurse; \
10896 /* Skip empty subtrees. */
10900 /* Don't walk the same tree twice, if the user has requested
10901 that we avoid doing so. */
10902 if (pset
&& pointer_set_insert (pset
, *tp
))
10905 /* Call the function. */
10907 result
= (*func
) (tp
, &walk_subtrees
, data
);
10909 /* If we found something, return it. */
10913 code
= TREE_CODE (*tp
);
10915 /* Even if we didn't, FUNC may have decided that there was nothing
10916 interesting below this point in the tree. */
10917 if (!walk_subtrees
)
10919 /* But we still need to check our siblings. */
10920 if (code
== TREE_LIST
)
10921 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
10922 else if (code
== OMP_CLAUSE
)
10923 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10930 result
= (*lh
) (tp
, &walk_subtrees
, func
, data
, pset
);
10931 if (result
|| !walk_subtrees
)
10938 case IDENTIFIER_NODE
:
10945 case PLACEHOLDER_EXPR
:
10949 /* None of these have subtrees other than those already walked
10954 WALK_SUBTREE (TREE_VALUE (*tp
));
10955 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
10960 int len
= TREE_VEC_LENGTH (*tp
);
10965 /* Walk all elements but the first. */
10967 WALK_SUBTREE (TREE_VEC_ELT (*tp
, len
));
10969 /* Now walk the first one as a tail call. */
10970 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp
, 0));
10974 WALK_SUBTREE (TREE_REALPART (*tp
));
10975 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp
));
10979 unsigned HOST_WIDE_INT idx
;
10980 constructor_elt
*ce
;
10982 for (idx
= 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp
), idx
, &ce
);
10984 WALK_SUBTREE (ce
->value
);
10989 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, 0));
10994 for (decl
= BIND_EXPR_VARS (*tp
); decl
; decl
= DECL_CHAIN (decl
))
10996 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
10997 into declarations that are just mentioned, rather than
10998 declared; they don't really belong to this part of the tree.
10999 And, we can see cycles: the initializer for a declaration
11000 can refer to the declaration itself. */
11001 WALK_SUBTREE (DECL_INITIAL (decl
));
11002 WALK_SUBTREE (DECL_SIZE (decl
));
11003 WALK_SUBTREE (DECL_SIZE_UNIT (decl
));
11005 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp
));
11008 case STATEMENT_LIST
:
11010 tree_stmt_iterator i
;
11011 for (i
= tsi_start (*tp
); !tsi_end_p (i
); tsi_next (&i
))
11012 WALK_SUBTREE (*tsi_stmt_ptr (i
));
11017 switch (OMP_CLAUSE_CODE (*tp
))
11019 case OMP_CLAUSE_PRIVATE
:
11020 case OMP_CLAUSE_SHARED
:
11021 case OMP_CLAUSE_FIRSTPRIVATE
:
11022 case OMP_CLAUSE_COPYIN
:
11023 case OMP_CLAUSE_COPYPRIVATE
:
11024 case OMP_CLAUSE_FINAL
:
11025 case OMP_CLAUSE_IF
:
11026 case OMP_CLAUSE_NUM_THREADS
:
11027 case OMP_CLAUSE_SCHEDULE
:
11028 case OMP_CLAUSE_UNIFORM
:
11029 case OMP_CLAUSE_DEPEND
:
11030 case OMP_CLAUSE_NUM_TEAMS
:
11031 case OMP_CLAUSE_THREAD_LIMIT
:
11032 case OMP_CLAUSE_DEVICE
:
11033 case OMP_CLAUSE_DIST_SCHEDULE
:
11034 case OMP_CLAUSE_SAFELEN
:
11035 case OMP_CLAUSE_SIMDLEN
:
11036 case OMP_CLAUSE__LOOPTEMP_
:
11037 case OMP_CLAUSE__SIMDUID_
:
11038 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 0));
11041 case OMP_CLAUSE_NOWAIT
:
11042 case OMP_CLAUSE_ORDERED
:
11043 case OMP_CLAUSE_DEFAULT
:
11044 case OMP_CLAUSE_UNTIED
:
11045 case OMP_CLAUSE_MERGEABLE
:
11046 case OMP_CLAUSE_PROC_BIND
:
11047 case OMP_CLAUSE_INBRANCH
:
11048 case OMP_CLAUSE_NOTINBRANCH
:
11049 case OMP_CLAUSE_FOR
:
11050 case OMP_CLAUSE_PARALLEL
:
11051 case OMP_CLAUSE_SECTIONS
:
11052 case OMP_CLAUSE_TASKGROUP
:
11053 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11055 case OMP_CLAUSE_LASTPRIVATE
:
11056 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
11057 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp
));
11058 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11060 case OMP_CLAUSE_COLLAPSE
:
11063 for (i
= 0; i
< 3; i
++)
11064 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
11065 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11068 case OMP_CLAUSE_ALIGNED
:
11069 case OMP_CLAUSE_LINEAR
:
11070 case OMP_CLAUSE_FROM
:
11071 case OMP_CLAUSE_TO
:
11072 case OMP_CLAUSE_MAP
:
11073 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
11074 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 1));
11075 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11077 case OMP_CLAUSE_REDUCTION
:
11080 for (i
= 0; i
< 4; i
++)
11081 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
11082 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11086 gcc_unreachable ();
11094 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
11095 But, we only want to walk once. */
11096 len
= (TREE_OPERAND (*tp
, 3) == TREE_OPERAND (*tp
, 1)) ? 2 : 3;
11097 for (i
= 0; i
< len
; ++i
)
11098 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
11099 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
));
11103 /* If this is a TYPE_DECL, walk into the fields of the type that it's
11104 defining. We only want to walk into these fields of a type in this
11105 case and not in the general case of a mere reference to the type.
11107 The criterion is as follows: if the field can be an expression, it
11108 must be walked only here. This should be in keeping with the fields
11109 that are directly gimplified in gimplify_type_sizes in order for the
11110 mark/copy-if-shared/unmark machinery of the gimplifier to work with
11111 variable-sized types.
11113 Note that DECLs get walked as part of processing the BIND_EXPR. */
11114 if (TREE_CODE (DECL_EXPR_DECL (*tp
)) == TYPE_DECL
)
11116 tree
*type_p
= &TREE_TYPE (DECL_EXPR_DECL (*tp
));
11117 if (TREE_CODE (*type_p
) == ERROR_MARK
)
11120 /* Call the function for the type. See if it returns anything or
11121 doesn't want us to continue. If we are to continue, walk both
11122 the normal fields and those for the declaration case. */
11123 result
= (*func
) (type_p
, &walk_subtrees
, data
);
11124 if (result
|| !walk_subtrees
)
11127 /* But do not walk a pointed-to type since it may itself need to
11128 be walked in the declaration case if it isn't anonymous. */
11129 if (!POINTER_TYPE_P (*type_p
))
11131 result
= walk_type_fields (*type_p
, func
, data
, pset
, lh
);
11136 /* If this is a record type, also walk the fields. */
11137 if (RECORD_OR_UNION_TYPE_P (*type_p
))
11141 for (field
= TYPE_FIELDS (*type_p
); field
;
11142 field
= DECL_CHAIN (field
))
11144 /* We'd like to look at the type of the field, but we can
11145 easily get infinite recursion. So assume it's pointed
11146 to elsewhere in the tree. Also, ignore things that
11148 if (TREE_CODE (field
) != FIELD_DECL
)
11151 WALK_SUBTREE (DECL_FIELD_OFFSET (field
));
11152 WALK_SUBTREE (DECL_SIZE (field
));
11153 WALK_SUBTREE (DECL_SIZE_UNIT (field
));
11154 if (TREE_CODE (*type_p
) == QUAL_UNION_TYPE
)
11155 WALK_SUBTREE (DECL_QUALIFIER (field
));
11159 /* Same for scalar types. */
11160 else if (TREE_CODE (*type_p
) == BOOLEAN_TYPE
11161 || TREE_CODE (*type_p
) == ENUMERAL_TYPE
11162 || TREE_CODE (*type_p
) == INTEGER_TYPE
11163 || TREE_CODE (*type_p
) == FIXED_POINT_TYPE
11164 || TREE_CODE (*type_p
) == REAL_TYPE
)
11166 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p
));
11167 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p
));
11170 WALK_SUBTREE (TYPE_SIZE (*type_p
));
11171 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p
));
11176 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code
)))
11180 /* Walk over all the sub-trees of this operand. */
11181 len
= TREE_OPERAND_LENGTH (*tp
);
11183 /* Go through the subtrees. We need to do this in forward order so
11184 that the scope of a FOR_EXPR is handled properly. */
11187 for (i
= 0; i
< len
- 1; ++i
)
11188 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
11189 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
- 1));
11192 /* If this is a type, walk the needed fields in the type. */
11193 else if (TYPE_P (*tp
))
11194 return walk_type_fields (*tp
, func
, data
, pset
, lh
);
11198 /* We didn't find what we were looking for. */
11201 #undef WALK_SUBTREE_TAIL
11203 #undef WALK_SUBTREE
11205 /* Like walk_tree, but does not walk duplicate nodes more than once. */
11208 walk_tree_without_duplicates_1 (tree
*tp
, walk_tree_fn func
, void *data
,
11212 struct pointer_set_t
*pset
;
11214 pset
= pointer_set_create ();
11215 result
= walk_tree_1 (tp
, func
, data
, pset
, lh
);
11216 pointer_set_destroy (pset
);
11222 tree_block (tree t
)
11224 char const c
= TREE_CODE_CLASS (TREE_CODE (t
));
11226 if (IS_EXPR_CODE_CLASS (c
))
11227 return LOCATION_BLOCK (t
->exp
.locus
);
11228 gcc_unreachable ();
11233 tree_set_block (tree t
, tree b
)
11235 char const c
= TREE_CODE_CLASS (TREE_CODE (t
));
11237 if (IS_EXPR_CODE_CLASS (c
))
11240 t
->exp
.locus
= COMBINE_LOCATION_DATA (line_table
, t
->exp
.locus
, b
);
11242 t
->exp
.locus
= LOCATION_LOCUS (t
->exp
.locus
);
11245 gcc_unreachable ();
11248 /* Create a nameless artificial label and put it in the current
11249 function context. The label has a location of LOC. Returns the
11250 newly created label. */
11253 create_artificial_label (location_t loc
)
11255 tree lab
= build_decl (loc
,
11256 LABEL_DECL
, NULL_TREE
, void_type_node
);
11258 DECL_ARTIFICIAL (lab
) = 1;
11259 DECL_IGNORED_P (lab
) = 1;
11260 DECL_CONTEXT (lab
) = current_function_decl
;
11264 /* Given a tree, try to return a useful variable name that we can use
11265 to prefix a temporary that is being assigned the value of the tree.
11266 I.E. given <temp> = &A, return A. */
11271 tree stripped_decl
;
11274 STRIP_NOPS (stripped_decl
);
11275 if (DECL_P (stripped_decl
) && DECL_NAME (stripped_decl
))
11276 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl
));
11277 else if (TREE_CODE (stripped_decl
) == SSA_NAME
)
11279 tree name
= SSA_NAME_IDENTIFIER (stripped_decl
);
11282 return IDENTIFIER_POINTER (name
);
11286 switch (TREE_CODE (stripped_decl
))
11289 return get_name (TREE_OPERAND (stripped_decl
, 0));
11296 /* Return true if TYPE has a variable argument list. */
11299 stdarg_p (const_tree fntype
)
11301 function_args_iterator args_iter
;
11302 tree n
= NULL_TREE
, t
;
11307 FOREACH_FUNCTION_ARGS (fntype
, t
, args_iter
)
11312 return n
!= NULL_TREE
&& n
!= void_type_node
;
11315 /* Return true if TYPE has a prototype. */
11318 prototype_p (tree fntype
)
11322 gcc_assert (fntype
!= NULL_TREE
);
11324 t
= TYPE_ARG_TYPES (fntype
);
11325 return (t
!= NULL_TREE
);
11328 /* If BLOCK is inlined from an __attribute__((__artificial__))
11329 routine, return pointer to location from where it has been
11332 block_nonartificial_location (tree block
)
11334 location_t
*ret
= NULL
;
11336 while (block
&& TREE_CODE (block
) == BLOCK
11337 && BLOCK_ABSTRACT_ORIGIN (block
))
11339 tree ao
= BLOCK_ABSTRACT_ORIGIN (block
);
11341 while (TREE_CODE (ao
) == BLOCK
11342 && BLOCK_ABSTRACT_ORIGIN (ao
)
11343 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
11344 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
11346 if (TREE_CODE (ao
) == FUNCTION_DECL
)
11348 /* If AO is an artificial inline, point RET to the
11349 call site locus at which it has been inlined and continue
11350 the loop, in case AO's caller is also an artificial
11352 if (DECL_DECLARED_INLINE_P (ao
)
11353 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao
)))
11354 ret
= &BLOCK_SOURCE_LOCATION (block
);
11358 else if (TREE_CODE (ao
) != BLOCK
)
11361 block
= BLOCK_SUPERCONTEXT (block
);
11367 /* If EXP is inlined from an __attribute__((__artificial__))
11368 function, return the location of the original call expression. */
11371 tree_nonartificial_location (tree exp
)
11373 location_t
*loc
= block_nonartificial_location (TREE_BLOCK (exp
));
11378 return EXPR_LOCATION (exp
);
11382 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11385 /* Return the hash code code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11388 cl_option_hash_hash (const void *x
)
11390 const_tree
const t
= (const_tree
) x
;
11394 hashval_t hash
= 0;
11396 if (TREE_CODE (t
) == OPTIMIZATION_NODE
)
11398 p
= (const char *)TREE_OPTIMIZATION (t
);
11399 len
= sizeof (struct cl_optimization
);
11402 else if (TREE_CODE (t
) == TARGET_OPTION_NODE
)
11404 p
= (const char *)TREE_TARGET_OPTION (t
);
11405 len
= sizeof (struct cl_target_option
);
11409 gcc_unreachable ();
11411 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11413 for (i
= 0; i
< len
; i
++)
11415 hash
= (hash
<< 4) ^ ((i
<< 2) | p
[i
]);
11420 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11421 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11425 cl_option_hash_eq (const void *x
, const void *y
)
11427 const_tree
const xt
= (const_tree
) x
;
11428 const_tree
const yt
= (const_tree
) y
;
11433 if (TREE_CODE (xt
) != TREE_CODE (yt
))
11436 if (TREE_CODE (xt
) == OPTIMIZATION_NODE
)
11438 xp
= (const char *)TREE_OPTIMIZATION (xt
);
11439 yp
= (const char *)TREE_OPTIMIZATION (yt
);
11440 len
= sizeof (struct cl_optimization
);
11443 else if (TREE_CODE (xt
) == TARGET_OPTION_NODE
)
11445 xp
= (const char *)TREE_TARGET_OPTION (xt
);
11446 yp
= (const char *)TREE_TARGET_OPTION (yt
);
11447 len
= sizeof (struct cl_target_option
);
11451 gcc_unreachable ();
11453 return (memcmp (xp
, yp
, len
) == 0);
11456 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
11459 build_optimization_node (struct gcc_options
*opts
)
11464 /* Use the cache of optimization nodes. */
11466 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node
),
11469 slot
= htab_find_slot (cl_option_hash_table
, cl_optimization_node
, INSERT
);
11473 /* Insert this one into the hash table. */
11474 t
= cl_optimization_node
;
11477 /* Make a new node for next time round. */
11478 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
11484 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
11487 build_target_option_node (struct gcc_options
*opts
)
11492 /* Use the cache of optimization nodes. */
11494 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node
),
11497 slot
= htab_find_slot (cl_option_hash_table
, cl_target_option_node
, INSERT
);
11501 /* Insert this one into the hash table. */
11502 t
= cl_target_option_node
;
11505 /* Make a new node for next time round. */
11506 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
11512 /* Determine the "ultimate origin" of a block. The block may be an inlined
11513 instance of an inlined instance of a block which is local to an inline
11514 function, so we have to trace all of the way back through the origin chain
11515 to find out what sort of node actually served as the original seed for the
11519 block_ultimate_origin (const_tree block
)
11521 tree immediate_origin
= BLOCK_ABSTRACT_ORIGIN (block
);
11523 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
11524 nodes in the function to point to themselves; ignore that if
11525 we're trying to output the abstract instance of this function. */
11526 if (BLOCK_ABSTRACT (block
) && immediate_origin
== block
)
11529 if (immediate_origin
== NULL_TREE
)
11534 tree lookahead
= immediate_origin
;
11538 ret_val
= lookahead
;
11539 lookahead
= (TREE_CODE (ret_val
) == BLOCK
11540 ? BLOCK_ABSTRACT_ORIGIN (ret_val
) : NULL
);
11542 while (lookahead
!= NULL
&& lookahead
!= ret_val
);
11544 /* The block's abstract origin chain may not be the *ultimate* origin of
11545 the block. It could lead to a DECL that has an abstract origin set.
11546 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
11547 will give us if it has one). Note that DECL's abstract origins are
11548 supposed to be the most distant ancestor (or so decl_ultimate_origin
11549 claims), so we don't need to loop following the DECL origins. */
11550 if (DECL_P (ret_val
))
11551 return DECL_ORIGIN (ret_val
);
11557 /* Return true iff conversion in EXP generates no instruction. Mark
11558 it inline so that we fully inline into the stripping functions even
11559 though we have two uses of this function. */
11562 tree_nop_conversion (const_tree exp
)
11564 tree outer_type
, inner_type
;
11566 if (!CONVERT_EXPR_P (exp
)
11567 && TREE_CODE (exp
) != NON_LVALUE_EXPR
)
11569 if (TREE_OPERAND (exp
, 0) == error_mark_node
)
11572 outer_type
= TREE_TYPE (exp
);
11573 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11578 /* Use precision rather then machine mode when we can, which gives
11579 the correct answer even for submode (bit-field) types. */
11580 if ((INTEGRAL_TYPE_P (outer_type
)
11581 || POINTER_TYPE_P (outer_type
)
11582 || TREE_CODE (outer_type
) == OFFSET_TYPE
)
11583 && (INTEGRAL_TYPE_P (inner_type
)
11584 || POINTER_TYPE_P (inner_type
)
11585 || TREE_CODE (inner_type
) == OFFSET_TYPE
))
11586 return TYPE_PRECISION (outer_type
) == TYPE_PRECISION (inner_type
);
11588 /* Otherwise fall back on comparing machine modes (e.g. for
11589 aggregate types, floats). */
11590 return TYPE_MODE (outer_type
) == TYPE_MODE (inner_type
);
11593 /* Return true iff conversion in EXP generates no instruction. Don't
11594 consider conversions changing the signedness. */
11597 tree_sign_nop_conversion (const_tree exp
)
11599 tree outer_type
, inner_type
;
11601 if (!tree_nop_conversion (exp
))
11604 outer_type
= TREE_TYPE (exp
);
11605 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11607 return (TYPE_UNSIGNED (outer_type
) == TYPE_UNSIGNED (inner_type
)
11608 && POINTER_TYPE_P (outer_type
) == POINTER_TYPE_P (inner_type
));
11611 /* Strip conversions from EXP according to tree_nop_conversion and
11612 return the resulting expression. */
11615 tree_strip_nop_conversions (tree exp
)
11617 while (tree_nop_conversion (exp
))
11618 exp
= TREE_OPERAND (exp
, 0);
11622 /* Strip conversions from EXP according to tree_sign_nop_conversion
11623 and return the resulting expression. */
11626 tree_strip_sign_nop_conversions (tree exp
)
11628 while (tree_sign_nop_conversion (exp
))
11629 exp
= TREE_OPERAND (exp
, 0);
11633 /* Avoid any floating point extensions from EXP. */
11635 strip_float_extensions (tree exp
)
11637 tree sub
, expt
, subt
;
11639 /* For floating point constant look up the narrowest type that can hold
11640 it properly and handle it like (type)(narrowest_type)constant.
11641 This way we can optimize for instance a=a*2.0 where "a" is float
11642 but 2.0 is double constant. */
11643 if (TREE_CODE (exp
) == REAL_CST
&& !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp
)))
11645 REAL_VALUE_TYPE orig
;
11648 orig
= TREE_REAL_CST (exp
);
11649 if (TYPE_PRECISION (TREE_TYPE (exp
)) > TYPE_PRECISION (float_type_node
)
11650 && exact_real_truncate (TYPE_MODE (float_type_node
), &orig
))
11651 type
= float_type_node
;
11652 else if (TYPE_PRECISION (TREE_TYPE (exp
))
11653 > TYPE_PRECISION (double_type_node
)
11654 && exact_real_truncate (TYPE_MODE (double_type_node
), &orig
))
11655 type
= double_type_node
;
11657 return build_real (type
, real_value_truncate (TYPE_MODE (type
), orig
));
11660 if (!CONVERT_EXPR_P (exp
))
11663 sub
= TREE_OPERAND (exp
, 0);
11664 subt
= TREE_TYPE (sub
);
11665 expt
= TREE_TYPE (exp
);
11667 if (!FLOAT_TYPE_P (subt
))
11670 if (DECIMAL_FLOAT_TYPE_P (expt
) != DECIMAL_FLOAT_TYPE_P (subt
))
11673 if (TYPE_PRECISION (subt
) > TYPE_PRECISION (expt
))
11676 return strip_float_extensions (sub
);
11679 /* Strip out all handled components that produce invariant
11683 strip_invariant_refs (const_tree op
)
11685 while (handled_component_p (op
))
11687 switch (TREE_CODE (op
))
11690 case ARRAY_RANGE_REF
:
11691 if (!is_gimple_constant (TREE_OPERAND (op
, 1))
11692 || TREE_OPERAND (op
, 2) != NULL_TREE
11693 || TREE_OPERAND (op
, 3) != NULL_TREE
)
11697 case COMPONENT_REF
:
11698 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
11704 op
= TREE_OPERAND (op
, 0);
11710 static GTY(()) tree gcc_eh_personality_decl
;
11712 /* Return the GCC personality function decl. */
11715 lhd_gcc_personality (void)
11717 if (!gcc_eh_personality_decl
)
11718 gcc_eh_personality_decl
= build_personality_function ("gcc");
11719 return gcc_eh_personality_decl
;
11722 /* For languages with One Definition Rule, work out if
11723 trees are actually the same even if the tree representation
11724 differs. This handles only decls appearing in TYPE_NAME
11725 and TYPE_CONTEXT. That is NAMESPACE_DECL, TYPE_DECL,
11726 RECORD_TYPE and IDENTIFIER_NODE. */
11729 same_for_odr (tree t1
, tree t2
)
11735 /* C and C++ FEs differ by using IDENTIFIER_NODE and TYPE_DECL. */
11736 if (TREE_CODE (t1
) == IDENTIFIER_NODE
11737 && TREE_CODE (t2
) == TYPE_DECL
11738 && DECL_FILE_SCOPE_P (t1
))
11740 t2
= DECL_NAME (t2
);
11741 gcc_assert (TREE_CODE (t2
) == IDENTIFIER_NODE
);
11743 if (TREE_CODE (t2
) == IDENTIFIER_NODE
11744 && TREE_CODE (t1
) == TYPE_DECL
11745 && DECL_FILE_SCOPE_P (t2
))
11747 t1
= DECL_NAME (t1
);
11748 gcc_assert (TREE_CODE (t1
) == IDENTIFIER_NODE
);
11750 if (TREE_CODE (t1
) != TREE_CODE (t2
))
11753 return types_same_for_odr (t1
, t2
);
11755 return decls_same_for_odr (t1
, t2
);
11759 /* For languages with One Definition Rule, work out if
11760 decls are actually the same even if the tree representation
11761 differs. This handles only decls appearing in TYPE_NAME
11762 and TYPE_CONTEXT. That is NAMESPACE_DECL, TYPE_DECL,
11763 RECORD_TYPE and IDENTIFIER_NODE. */
11766 decls_same_for_odr (tree decl1
, tree decl2
)
11768 if (decl1
&& TREE_CODE (decl1
) == TYPE_DECL
11769 && DECL_ORIGINAL_TYPE (decl1
))
11770 decl1
= DECL_ORIGINAL_TYPE (decl1
);
11771 if (decl2
&& TREE_CODE (decl2
) == TYPE_DECL
11772 && DECL_ORIGINAL_TYPE (decl2
))
11773 decl2
= DECL_ORIGINAL_TYPE (decl2
);
11774 if (decl1
== decl2
)
11776 if (!decl1
|| !decl2
)
11778 gcc_checking_assert (DECL_P (decl1
) && DECL_P (decl2
));
11779 if (TREE_CODE (decl1
) != TREE_CODE (decl2
))
11781 if (TREE_CODE (decl1
) == TRANSLATION_UNIT_DECL
)
11783 if (TREE_CODE (decl1
) != NAMESPACE_DECL
11784 && TREE_CODE (decl1
) != TYPE_DECL
)
11786 if (!DECL_NAME (decl1
))
11788 gcc_checking_assert (TREE_CODE (DECL_NAME (decl1
)) == IDENTIFIER_NODE
);
11789 gcc_checking_assert (!DECL_NAME (decl2
)
11790 || TREE_CODE (DECL_NAME (decl2
)) == IDENTIFIER_NODE
);
11791 if (DECL_NAME (decl1
) != DECL_NAME (decl2
))
11793 return same_for_odr (DECL_CONTEXT (decl1
),
11794 DECL_CONTEXT (decl2
));
11797 /* For languages with One Definition Rule, work out if
11798 types are same even if the tree representation differs.
11799 This is non-trivial for LTO where minnor differences in
11800 the type representation may have prevented type merging
11801 to merge two copies of otherwise equivalent type. */
11804 types_same_for_odr (tree type1
, tree type2
)
11806 gcc_checking_assert (TYPE_P (type1
) && TYPE_P (type2
));
11807 type1
= TYPE_MAIN_VARIANT (type1
);
11808 type2
= TYPE_MAIN_VARIANT (type2
);
11809 if (type1
== type2
)
11812 #ifndef ENABLE_CHECKING
11817 /* Check for anonymous namespaces. Those have !TREE_PUBLIC
11818 on the corresponding TYPE_STUB_DECL. */
11819 if (type_in_anonymous_namespace_p (type1
)
11820 || type_in_anonymous_namespace_p (type2
))
11822 /* When assembler name of virtual table is available, it is
11823 easy to compare types for equivalence. */
11824 if (TYPE_BINFO (type1
) && TYPE_BINFO (type2
)
11825 && BINFO_VTABLE (TYPE_BINFO (type1
))
11826 && BINFO_VTABLE (TYPE_BINFO (type2
)))
11828 tree v1
= BINFO_VTABLE (TYPE_BINFO (type1
));
11829 tree v2
= BINFO_VTABLE (TYPE_BINFO (type2
));
11831 if (TREE_CODE (v1
) == POINTER_PLUS_EXPR
)
11833 if (TREE_CODE (v2
) != POINTER_PLUS_EXPR
11834 || !operand_equal_p (TREE_OPERAND (v1
, 1),
11835 TREE_OPERAND (v2
, 1), 0))
11837 v1
= TREE_OPERAND (TREE_OPERAND (v1
, 0), 0);
11838 v2
= TREE_OPERAND (TREE_OPERAND (v2
, 0), 0);
11840 v1
= DECL_ASSEMBLER_NAME (v1
);
11841 v2
= DECL_ASSEMBLER_NAME (v2
);
11845 /* FIXME: the code comparing type names consider all instantiations of the
11846 same template to have same name. This is because we have no access
11847 to template parameters. For types with no virtual method tables
11848 we thus can return false positives. At the moment we do not need
11849 to compare types in other scenarios than devirtualization. */
11851 /* If types are not structuraly same, do not bother to contnue.
11852 Match in the remainder of code would mean ODR violation. */
11853 if (!types_compatible_p (type1
, type2
))
11855 if (!TYPE_NAME (type1
))
11857 if (!decls_same_for_odr (TYPE_NAME (type1
), TYPE_NAME (type2
)))
11859 if (!same_for_odr (TYPE_CONTEXT (type1
), TYPE_CONTEXT (type2
)))
11861 /* When not in LTO the MAIN_VARIANT check should be the same. */
11862 gcc_assert (in_lto_p
);
11867 /* TARGET is a call target of GIMPLE call statement
11868 (obtained by gimple_call_fn). Return true if it is
11869 OBJ_TYPE_REF representing an virtual call of C++ method.
11870 (As opposed to OBJ_TYPE_REF representing objc calls
11871 through a cast where middle-end devirtualization machinery
11875 virtual_method_call_p (tree target
)
11877 if (TREE_CODE (target
) != OBJ_TYPE_REF
)
11879 target
= TREE_TYPE (target
);
11880 gcc_checking_assert (TREE_CODE (target
) == POINTER_TYPE
);
11881 target
= TREE_TYPE (target
);
11882 if (TREE_CODE (target
) == FUNCTION_TYPE
)
11884 gcc_checking_assert (TREE_CODE (target
) == METHOD_TYPE
);
11888 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
11891 obj_type_ref_class (tree ref
)
11893 gcc_checking_assert (TREE_CODE (ref
) == OBJ_TYPE_REF
);
11894 ref
= TREE_TYPE (ref
);
11895 gcc_checking_assert (TREE_CODE (ref
) == POINTER_TYPE
);
11896 ref
= TREE_TYPE (ref
);
11897 /* We look for type THIS points to. ObjC also builds
11898 OBJ_TYPE_REF with non-method calls, Their first parameter
11899 ID however also corresponds to class type. */
11900 gcc_checking_assert (TREE_CODE (ref
) == METHOD_TYPE
11901 || TREE_CODE (ref
) == FUNCTION_TYPE
);
11902 ref
= TREE_VALUE (TYPE_ARG_TYPES (ref
));
11903 gcc_checking_assert (TREE_CODE (ref
) == POINTER_TYPE
);
11904 return TREE_TYPE (ref
);
11907 /* Return true if T is in anonymous namespace. */
11910 type_in_anonymous_namespace_p (tree t
)
11912 return (TYPE_STUB_DECL (t
) && !TREE_PUBLIC (TYPE_STUB_DECL (t
)));
11915 /* Try to find a base info of BINFO that would have its field decl at offset
11916 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
11917 found, return, otherwise return NULL_TREE. */
11920 get_binfo_at_offset (tree binfo
, HOST_WIDE_INT offset
, tree expected_type
)
11922 tree type
= BINFO_TYPE (binfo
);
11926 HOST_WIDE_INT pos
, size
;
11930 if (types_same_for_odr (type
, expected_type
))
11935 for (fld
= TYPE_FIELDS (type
); fld
; fld
= DECL_CHAIN (fld
))
11937 if (TREE_CODE (fld
) != FIELD_DECL
)
11940 pos
= int_bit_position (fld
);
11941 size
= tree_to_uhwi (DECL_SIZE (fld
));
11942 if (pos
<= offset
&& (pos
+ size
) > offset
)
11945 if (!fld
|| TREE_CODE (TREE_TYPE (fld
)) != RECORD_TYPE
)
11948 if (!DECL_ARTIFICIAL (fld
))
11950 binfo
= TYPE_BINFO (TREE_TYPE (fld
));
11954 /* Offset 0 indicates the primary base, whose vtable contents are
11955 represented in the binfo for the derived class. */
11956 else if (offset
!= 0)
11958 tree base_binfo
, found_binfo
= NULL_TREE
;
11959 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
11960 if (types_same_for_odr (TREE_TYPE (base_binfo
), TREE_TYPE (fld
)))
11962 found_binfo
= base_binfo
;
11967 binfo
= found_binfo
;
11970 type
= TREE_TYPE (fld
);
11975 /* Returns true if X is a typedef decl. */
11978 is_typedef_decl (tree x
)
11980 return (x
&& TREE_CODE (x
) == TYPE_DECL
11981 && DECL_ORIGINAL_TYPE (x
) != NULL_TREE
);
11984 /* Returns true iff TYPE is a type variant created for a typedef. */
11987 typedef_variant_p (tree type
)
11989 return is_typedef_decl (TYPE_NAME (type
));
11992 /* Warn about a use of an identifier which was marked deprecated. */
11994 warn_deprecated_use (tree node
, tree attr
)
11998 if (node
== 0 || !warn_deprecated_decl
)
12004 attr
= DECL_ATTRIBUTES (node
);
12005 else if (TYPE_P (node
))
12007 tree decl
= TYPE_STUB_DECL (node
);
12009 attr
= lookup_attribute ("deprecated",
12010 TYPE_ATTRIBUTES (TREE_TYPE (decl
)));
12015 attr
= lookup_attribute ("deprecated", attr
);
12018 msg
= TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr
)));
12024 expanded_location xloc
= expand_location (DECL_SOURCE_LOCATION (node
));
12026 warning (OPT_Wdeprecated_declarations
,
12027 "%qD is deprecated (declared at %r%s:%d%R): %s",
12028 node
, "locus", xloc
.file
, xloc
.line
, msg
);
12030 warning (OPT_Wdeprecated_declarations
,
12031 "%qD is deprecated (declared at %r%s:%d%R)",
12032 node
, "locus", xloc
.file
, xloc
.line
);
12034 else if (TYPE_P (node
))
12036 tree what
= NULL_TREE
;
12037 tree decl
= TYPE_STUB_DECL (node
);
12039 if (TYPE_NAME (node
))
12041 if (TREE_CODE (TYPE_NAME (node
)) == IDENTIFIER_NODE
)
12042 what
= TYPE_NAME (node
);
12043 else if (TREE_CODE (TYPE_NAME (node
)) == TYPE_DECL
12044 && DECL_NAME (TYPE_NAME (node
)))
12045 what
= DECL_NAME (TYPE_NAME (node
));
12050 expanded_location xloc
12051 = expand_location (DECL_SOURCE_LOCATION (decl
));
12055 warning (OPT_Wdeprecated_declarations
,
12056 "%qE is deprecated (declared at %r%s:%d%R): %s",
12057 what
, "locus", xloc
.file
, xloc
.line
, msg
);
12059 warning (OPT_Wdeprecated_declarations
,
12060 "%qE is deprecated (declared at %r%s:%d%R)",
12061 what
, "locus", xloc
.file
, xloc
.line
);
12066 warning (OPT_Wdeprecated_declarations
,
12067 "type is deprecated (declared at %r%s:%d%R): %s",
12068 "locus", xloc
.file
, xloc
.line
, msg
);
12070 warning (OPT_Wdeprecated_declarations
,
12071 "type is deprecated (declared at %r%s:%d%R)",
12072 "locus", xloc
.file
, xloc
.line
);
12080 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated: %s",
12083 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated", what
);
12088 warning (OPT_Wdeprecated_declarations
, "type is deprecated: %s",
12091 warning (OPT_Wdeprecated_declarations
, "type is deprecated");
12097 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
12098 somewhere in it. */
12101 contains_bitfld_component_ref_p (const_tree ref
)
12103 while (handled_component_p (ref
))
12105 if (TREE_CODE (ref
) == COMPONENT_REF
12106 && DECL_BIT_FIELD (TREE_OPERAND (ref
, 1)))
12108 ref
= TREE_OPERAND (ref
, 0);
12114 /* Try to determine whether a TRY_CATCH expression can fall through.
12115 This is a subroutine of block_may_fallthru. */
12118 try_catch_may_fallthru (const_tree stmt
)
12120 tree_stmt_iterator i
;
12122 /* If the TRY block can fall through, the whole TRY_CATCH can
12124 if (block_may_fallthru (TREE_OPERAND (stmt
, 0)))
12127 i
= tsi_start (TREE_OPERAND (stmt
, 1));
12128 switch (TREE_CODE (tsi_stmt (i
)))
12131 /* We expect to see a sequence of CATCH_EXPR trees, each with a
12132 catch expression and a body. The whole TRY_CATCH may fall
12133 through iff any of the catch bodies falls through. */
12134 for (; !tsi_end_p (i
); tsi_next (&i
))
12136 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i
))))
12141 case EH_FILTER_EXPR
:
12142 /* The exception filter expression only matters if there is an
12143 exception. If the exception does not match EH_FILTER_TYPES,
12144 we will execute EH_FILTER_FAILURE, and we will fall through
12145 if that falls through. If the exception does match
12146 EH_FILTER_TYPES, the stack unwinder will continue up the
12147 stack, so we will not fall through. We don't know whether we
12148 will throw an exception which matches EH_FILTER_TYPES or not,
12149 so we just ignore EH_FILTER_TYPES and assume that we might
12150 throw an exception which doesn't match. */
12151 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i
)));
12154 /* This case represents statements to be executed when an
12155 exception occurs. Those statements are implicitly followed
12156 by a RESX statement to resume execution after the exception.
12157 So in this case the TRY_CATCH never falls through. */
12162 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
12163 need not be 100% accurate; simply be conservative and return true if we
12164 don't know. This is used only to avoid stupidly generating extra code.
12165 If we're wrong, we'll just delete the extra code later. */
12168 block_may_fallthru (const_tree block
)
12170 /* This CONST_CAST is okay because expr_last returns its argument
12171 unmodified and we assign it to a const_tree. */
12172 const_tree stmt
= expr_last (CONST_CAST_TREE (block
));
12174 switch (stmt
? TREE_CODE (stmt
) : ERROR_MARK
)
12178 /* Easy cases. If the last statement of the block implies
12179 control transfer, then we can't fall through. */
12183 /* If SWITCH_LABELS is set, this is lowered, and represents a
12184 branch to a selected label and hence can not fall through.
12185 Otherwise SWITCH_BODY is set, and the switch can fall
12187 return SWITCH_LABELS (stmt
) == NULL_TREE
;
12190 if (block_may_fallthru (COND_EXPR_THEN (stmt
)))
12192 return block_may_fallthru (COND_EXPR_ELSE (stmt
));
12195 return block_may_fallthru (BIND_EXPR_BODY (stmt
));
12197 case TRY_CATCH_EXPR
:
12198 return try_catch_may_fallthru (stmt
);
12200 case TRY_FINALLY_EXPR
:
12201 /* The finally clause is always executed after the try clause,
12202 so if it does not fall through, then the try-finally will not
12203 fall through. Otherwise, if the try clause does not fall
12204 through, then when the finally clause falls through it will
12205 resume execution wherever the try clause was going. So the
12206 whole try-finally will only fall through if both the try
12207 clause and the finally clause fall through. */
12208 return (block_may_fallthru (TREE_OPERAND (stmt
, 0))
12209 && block_may_fallthru (TREE_OPERAND (stmt
, 1)));
12212 if (TREE_CODE (TREE_OPERAND (stmt
, 1)) == CALL_EXPR
)
12213 stmt
= TREE_OPERAND (stmt
, 1);
12219 /* Functions that do not return do not fall through. */
12220 return (call_expr_flags (stmt
) & ECF_NORETURN
) == 0;
12222 case CLEANUP_POINT_EXPR
:
12223 return block_may_fallthru (TREE_OPERAND (stmt
, 0));
12226 return block_may_fallthru (TREE_OPERAND (stmt
, 1));
12232 return lang_hooks
.block_may_fallthru (stmt
);
12236 /* True if we are using EH to handle cleanups. */
12237 static bool using_eh_for_cleanups_flag
= false;
12239 /* This routine is called from front ends to indicate eh should be used for
12242 using_eh_for_cleanups (void)
12244 using_eh_for_cleanups_flag
= true;
12247 /* Query whether EH is used for cleanups. */
12249 using_eh_for_cleanups_p (void)
12251 return using_eh_for_cleanups_flag
;
12254 /* Wrapper for tree_code_name to ensure that tree code is valid */
12256 get_tree_code_name (enum tree_code code
)
12258 const char *invalid
= "<invalid tree code>";
12260 if (code
>= MAX_TREE_CODES
)
12263 return tree_code_name
[code
];
12266 /* Drops the TREE_OVERFLOW flag from T. */
12269 drop_tree_overflow (tree t
)
12271 gcc_checking_assert (TREE_OVERFLOW (t
));
12273 /* For tree codes with a sharing machinery re-build the result. */
12274 if (TREE_CODE (t
) == INTEGER_CST
)
12275 return build_int_cst_wide (TREE_TYPE (t
),
12276 TREE_INT_CST_LOW (t
), TREE_INT_CST_HIGH (t
));
12278 /* Otherwise, as all tcc_constants are possibly shared, copy the node
12279 and drop the flag. */
12281 TREE_OVERFLOW (t
) = 0;
12285 /* Given a memory reference expression T, return its base address.
12286 The base address of a memory reference expression is the main
12287 object being referenced. For instance, the base address for
12288 'array[i].fld[j]' is 'array'. You can think of this as stripping
12289 away the offset part from a memory address.
12291 This function calls handled_component_p to strip away all the inner
12292 parts of the memory reference until it reaches the base object. */
12295 get_base_address (tree t
)
12297 while (handled_component_p (t
))
12298 t
= TREE_OPERAND (t
, 0);
12300 if ((TREE_CODE (t
) == MEM_REF
12301 || TREE_CODE (t
) == TARGET_MEM_REF
)
12302 && TREE_CODE (TREE_OPERAND (t
, 0)) == ADDR_EXPR
)
12303 t
= TREE_OPERAND (TREE_OPERAND (t
, 0), 0);
12305 /* ??? Either the alias oracle or all callers need to properly deal
12306 with WITH_SIZE_EXPRs before we can look through those. */
12307 if (TREE_CODE (t
) == WITH_SIZE_EXPR
)
12313 #include "gt-tree.h"