1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2017 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 can occasionally
28 calls language-dependent routines. */
32 #include "coretypes.h"
37 #include "tree-pass.h"
40 #include "diagnostic.h"
43 #include "fold-const.h"
44 #include "stor-layout.h"
47 #include "toplev.h" /* get_random_seed */
49 #include "common/common-target.h"
50 #include "langhooks.h"
51 #include "tree-inline.h"
52 #include "tree-iterator.h"
53 #include "internal-fn.h"
54 #include "gimple-iterator.h"
58 #include "langhooks-def.h"
59 #include "tree-diagnostic.h"
62 #include "print-tree.h"
63 #include "ipa-utils.h"
65 #include "stringpool.h"
69 #include "tree-vector-builder.h"
71 /* Tree code classes. */
73 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
74 #define END_OF_BASE_TREE_CODES tcc_exceptional,
76 const enum tree_code_class tree_code_type
[] = {
77 #include "all-tree.def"
81 #undef END_OF_BASE_TREE_CODES
83 /* Table indexed by tree code giving number of expression
84 operands beyond the fixed part of the node structure.
85 Not used for types or decls. */
87 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
88 #define END_OF_BASE_TREE_CODES 0,
90 const unsigned char tree_code_length
[] = {
91 #include "all-tree.def"
95 #undef END_OF_BASE_TREE_CODES
97 /* Names of tree components.
98 Used for printing out the tree and error messages. */
99 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
100 #define END_OF_BASE_TREE_CODES "@dummy",
102 static const char *const tree_code_name
[] = {
103 #include "all-tree.def"
107 #undef END_OF_BASE_TREE_CODES
109 /* Each tree code class has an associated string representation.
110 These must correspond to the tree_code_class entries. */
112 const char *const tree_code_class_strings
[] =
127 /* obstack.[ch] explicitly declined to prototype this. */
128 extern int _obstack_allocated_p (struct obstack
*h
, void *obj
);
130 /* Statistics-gathering stuff. */
132 static int tree_code_counts
[MAX_TREE_CODES
];
133 int tree_node_counts
[(int) all_kinds
];
134 int tree_node_sizes
[(int) all_kinds
];
136 /* Keep in sync with tree.h:enum tree_node_kind. */
137 static const char * const tree_node_kind_names
[] = {
156 /* Unique id for next decl created. */
157 static GTY(()) int next_decl_uid
;
158 /* Unique id for next type created. */
159 static GTY(()) unsigned next_type_uid
= 1;
160 /* Unique id for next debug decl created. Use negative numbers,
161 to catch erroneous uses. */
162 static GTY(()) int next_debug_decl_uid
;
164 /* Since we cannot rehash a type after it is in the table, we have to
165 keep the hash code. */
167 struct GTY((for_user
)) type_hash
{
172 /* Initial size of the hash table (rounded to next prime). */
173 #define TYPE_HASH_INITIAL_SIZE 1000
175 struct type_cache_hasher
: ggc_cache_ptr_hash
<type_hash
>
177 static hashval_t
hash (type_hash
*t
) { return t
->hash
; }
178 static bool equal (type_hash
*a
, type_hash
*b
);
181 keep_cache_entry (type_hash
*&t
)
183 return ggc_marked_p (t
->type
);
187 /* Now here is the hash table. When recording a type, it is added to
188 the slot whose index is the hash code. Note that the hash table is
189 used for several kinds of types (function types, array types and
190 array index range types, for now). While all these live in the
191 same table, they are completely independent, and the hash code is
192 computed differently for each of these. */
194 static GTY ((cache
)) hash_table
<type_cache_hasher
> *type_hash_table
;
196 /* Hash table and temporary node for larger integer const values. */
197 static GTY (()) tree int_cst_node
;
199 struct int_cst_hasher
: ggc_cache_ptr_hash
<tree_node
>
201 static hashval_t
hash (tree t
);
202 static bool equal (tree x
, tree y
);
205 static GTY ((cache
)) hash_table
<int_cst_hasher
> *int_cst_hash_table
;
207 /* Hash table for optimization flags and target option flags. Use the same
208 hash table for both sets of options. Nodes for building the current
209 optimization and target option nodes. The assumption is most of the time
210 the options created will already be in the hash table, so we avoid
211 allocating and freeing up a node repeatably. */
212 static GTY (()) tree cl_optimization_node
;
213 static GTY (()) tree cl_target_option_node
;
215 struct cl_option_hasher
: ggc_cache_ptr_hash
<tree_node
>
217 static hashval_t
hash (tree t
);
218 static bool equal (tree x
, tree y
);
221 static GTY ((cache
)) hash_table
<cl_option_hasher
> *cl_option_hash_table
;
223 /* General tree->tree mapping structure for use in hash tables. */
227 hash_table
<tree_decl_map_cache_hasher
> *debug_expr_for_decl
;
230 hash_table
<tree_decl_map_cache_hasher
> *value_expr_for_decl
;
232 struct tree_vec_map_cache_hasher
: ggc_cache_ptr_hash
<tree_vec_map
>
234 static hashval_t
hash (tree_vec_map
*m
) { return DECL_UID (m
->base
.from
); }
237 equal (tree_vec_map
*a
, tree_vec_map
*b
)
239 return a
->base
.from
== b
->base
.from
;
243 keep_cache_entry (tree_vec_map
*&m
)
245 return ggc_marked_p (m
->base
.from
);
250 hash_table
<tree_vec_map_cache_hasher
> *debug_args_for_decl
;
252 static void set_type_quals (tree
, int);
253 static void print_type_hash_statistics (void);
254 static void print_debug_expr_statistics (void);
255 static void print_value_expr_statistics (void);
257 tree global_trees
[TI_MAX
];
258 tree integer_types
[itk_none
];
260 bool int_n_enabled_p
[NUM_INT_N_ENTS
];
261 struct int_n_trees_t int_n_trees
[NUM_INT_N_ENTS
];
263 bool tree_contains_struct
[MAX_TREE_CODES
][64];
265 /* Number of operands for each OpenMP clause. */
266 unsigned const char omp_clause_num_ops
[] =
268 0, /* OMP_CLAUSE_ERROR */
269 1, /* OMP_CLAUSE_PRIVATE */
270 1, /* OMP_CLAUSE_SHARED */
271 1, /* OMP_CLAUSE_FIRSTPRIVATE */
272 2, /* OMP_CLAUSE_LASTPRIVATE */
273 5, /* OMP_CLAUSE_REDUCTION */
274 1, /* OMP_CLAUSE_COPYIN */
275 1, /* OMP_CLAUSE_COPYPRIVATE */
276 3, /* OMP_CLAUSE_LINEAR */
277 2, /* OMP_CLAUSE_ALIGNED */
278 1, /* OMP_CLAUSE_DEPEND */
279 1, /* OMP_CLAUSE_UNIFORM */
280 1, /* OMP_CLAUSE_TO_DECLARE */
281 1, /* OMP_CLAUSE_LINK */
282 2, /* OMP_CLAUSE_FROM */
283 2, /* OMP_CLAUSE_TO */
284 2, /* OMP_CLAUSE_MAP */
285 1, /* OMP_CLAUSE_USE_DEVICE_PTR */
286 1, /* OMP_CLAUSE_IS_DEVICE_PTR */
287 2, /* OMP_CLAUSE__CACHE_ */
288 2, /* OMP_CLAUSE_GANG */
289 1, /* OMP_CLAUSE_ASYNC */
290 1, /* OMP_CLAUSE_WAIT */
291 0, /* OMP_CLAUSE_AUTO */
292 0, /* OMP_CLAUSE_SEQ */
293 1, /* OMP_CLAUSE__LOOPTEMP_ */
294 1, /* OMP_CLAUSE_IF */
295 1, /* OMP_CLAUSE_NUM_THREADS */
296 1, /* OMP_CLAUSE_SCHEDULE */
297 0, /* OMP_CLAUSE_NOWAIT */
298 1, /* OMP_CLAUSE_ORDERED */
299 0, /* OMP_CLAUSE_DEFAULT */
300 3, /* OMP_CLAUSE_COLLAPSE */
301 0, /* OMP_CLAUSE_UNTIED */
302 1, /* OMP_CLAUSE_FINAL */
303 0, /* OMP_CLAUSE_MERGEABLE */
304 1, /* OMP_CLAUSE_DEVICE */
305 1, /* OMP_CLAUSE_DIST_SCHEDULE */
306 0, /* OMP_CLAUSE_INBRANCH */
307 0, /* OMP_CLAUSE_NOTINBRANCH */
308 1, /* OMP_CLAUSE_NUM_TEAMS */
309 1, /* OMP_CLAUSE_THREAD_LIMIT */
310 0, /* OMP_CLAUSE_PROC_BIND */
311 1, /* OMP_CLAUSE_SAFELEN */
312 1, /* OMP_CLAUSE_SIMDLEN */
313 0, /* OMP_CLAUSE_FOR */
314 0, /* OMP_CLAUSE_PARALLEL */
315 0, /* OMP_CLAUSE_SECTIONS */
316 0, /* OMP_CLAUSE_TASKGROUP */
317 1, /* OMP_CLAUSE_PRIORITY */
318 1, /* OMP_CLAUSE_GRAINSIZE */
319 1, /* OMP_CLAUSE_NUM_TASKS */
320 0, /* OMP_CLAUSE_NOGROUP */
321 0, /* OMP_CLAUSE_THREADS */
322 0, /* OMP_CLAUSE_SIMD */
323 1, /* OMP_CLAUSE_HINT */
324 0, /* OMP_CLAUSE_DEFALTMAP */
325 1, /* OMP_CLAUSE__SIMDUID_ */
326 0, /* OMP_CLAUSE__SIMT_ */
327 0, /* OMP_CLAUSE_INDEPENDENT */
328 1, /* OMP_CLAUSE_WORKER */
329 1, /* OMP_CLAUSE_VECTOR */
330 1, /* OMP_CLAUSE_NUM_GANGS */
331 1, /* OMP_CLAUSE_NUM_WORKERS */
332 1, /* OMP_CLAUSE_VECTOR_LENGTH */
333 3, /* OMP_CLAUSE_TILE */
334 2, /* OMP_CLAUSE__GRIDDIM_ */
337 const char * const omp_clause_code_name
[] =
409 /* Return the tree node structure used by tree code CODE. */
411 static inline enum tree_node_structure_enum
412 tree_node_structure_for_code (enum tree_code code
)
414 switch (TREE_CODE_CLASS (code
))
416 case tcc_declaration
:
421 return TS_FIELD_DECL
;
427 return TS_LABEL_DECL
;
429 return TS_RESULT_DECL
;
430 case DEBUG_EXPR_DECL
:
433 return TS_CONST_DECL
;
437 return TS_FUNCTION_DECL
;
438 case TRANSLATION_UNIT_DECL
:
439 return TS_TRANSLATION_UNIT_DECL
;
441 return TS_DECL_NON_COMMON
;
445 return TS_TYPE_NON_COMMON
;
454 default: /* tcc_constant and tcc_exceptional */
459 /* tcc_constant cases. */
460 case VOID_CST
: return TS_TYPED
;
461 case INTEGER_CST
: return TS_INT_CST
;
462 case REAL_CST
: return TS_REAL_CST
;
463 case FIXED_CST
: return TS_FIXED_CST
;
464 case COMPLEX_CST
: return TS_COMPLEX
;
465 case VECTOR_CST
: return TS_VECTOR
;
466 case STRING_CST
: return TS_STRING
;
467 /* tcc_exceptional cases. */
468 case ERROR_MARK
: return TS_COMMON
;
469 case IDENTIFIER_NODE
: return TS_IDENTIFIER
;
470 case TREE_LIST
: return TS_LIST
;
471 case TREE_VEC
: return TS_VEC
;
472 case SSA_NAME
: return TS_SSA_NAME
;
473 case PLACEHOLDER_EXPR
: return TS_COMMON
;
474 case STATEMENT_LIST
: return TS_STATEMENT_LIST
;
475 case BLOCK
: return TS_BLOCK
;
476 case CONSTRUCTOR
: return TS_CONSTRUCTOR
;
477 case TREE_BINFO
: return TS_BINFO
;
478 case OMP_CLAUSE
: return TS_OMP_CLAUSE
;
479 case OPTIMIZATION_NODE
: return TS_OPTIMIZATION
;
480 case TARGET_OPTION_NODE
: return TS_TARGET_OPTION
;
488 /* Initialize tree_contains_struct to describe the hierarchy of tree
492 initialize_tree_contains_struct (void)
496 for (i
= ERROR_MARK
; i
< LAST_AND_UNUSED_TREE_CODE
; i
++)
499 enum tree_node_structure_enum ts_code
;
501 code
= (enum tree_code
) i
;
502 ts_code
= tree_node_structure_for_code (code
);
504 /* Mark the TS structure itself. */
505 tree_contains_struct
[code
][ts_code
] = 1;
507 /* Mark all the structures that TS is derived from. */
512 case TS_OPTIMIZATION
:
513 case TS_TARGET_OPTION
:
527 case TS_STATEMENT_LIST
:
528 MARK_TS_TYPED (code
);
532 case TS_DECL_MINIMAL
:
538 MARK_TS_COMMON (code
);
541 case TS_TYPE_WITH_LANG_SPECIFIC
:
542 MARK_TS_TYPE_COMMON (code
);
545 case TS_TYPE_NON_COMMON
:
546 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code
);
550 MARK_TS_DECL_MINIMAL (code
);
555 MARK_TS_DECL_COMMON (code
);
558 case TS_DECL_NON_COMMON
:
559 MARK_TS_DECL_WITH_VIS (code
);
562 case TS_DECL_WITH_VIS
:
566 MARK_TS_DECL_WRTL (code
);
570 MARK_TS_DECL_COMMON (code
);
574 MARK_TS_DECL_WITH_VIS (code
);
578 case TS_FUNCTION_DECL
:
579 MARK_TS_DECL_NON_COMMON (code
);
582 case TS_TRANSLATION_UNIT_DECL
:
583 MARK_TS_DECL_COMMON (code
);
591 /* Basic consistency checks for attributes used in fold. */
592 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_NON_COMMON
]);
593 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_NON_COMMON
]);
594 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_COMMON
]);
595 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_COMMON
]);
596 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_COMMON
]);
597 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_COMMON
]);
598 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_COMMON
]);
599 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_COMMON
]);
600 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_COMMON
]);
601 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_COMMON
]);
602 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_COMMON
]);
603 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WRTL
]);
604 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_WRTL
]);
605 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_WRTL
]);
606 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WRTL
]);
607 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_WRTL
]);
608 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_MINIMAL
]);
609 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_MINIMAL
]);
610 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_MINIMAL
]);
611 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_MINIMAL
]);
612 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_MINIMAL
]);
613 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_MINIMAL
]);
614 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_MINIMAL
]);
615 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_MINIMAL
]);
616 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_MINIMAL
]);
617 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WITH_VIS
]);
618 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WITH_VIS
]);
619 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_WITH_VIS
]);
620 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_VAR_DECL
]);
621 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_FIELD_DECL
]);
622 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_PARM_DECL
]);
623 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_LABEL_DECL
]);
624 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_RESULT_DECL
]);
625 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_CONST_DECL
]);
626 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_TYPE_DECL
]);
627 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_FUNCTION_DECL
]);
628 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_MINIMAL
]);
629 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_COMMON
]);
630 gcc_assert (tree_contains_struct
[NAMELIST_DECL
][TS_DECL_MINIMAL
]);
631 gcc_assert (tree_contains_struct
[NAMELIST_DECL
][TS_DECL_COMMON
]);
640 /* Initialize the hash table of types. */
642 = hash_table
<type_cache_hasher
>::create_ggc (TYPE_HASH_INITIAL_SIZE
);
645 = hash_table
<tree_decl_map_cache_hasher
>::create_ggc (512);
648 = hash_table
<tree_decl_map_cache_hasher
>::create_ggc (512);
650 int_cst_hash_table
= hash_table
<int_cst_hasher
>::create_ggc (1024);
652 int_cst_node
= make_int_cst (1, 1);
654 cl_option_hash_table
= hash_table
<cl_option_hasher
>::create_ggc (64);
656 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
657 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
659 /* Initialize the tree_contains_struct array. */
660 initialize_tree_contains_struct ();
661 lang_hooks
.init_ts ();
665 /* The name of the object as the assembler will see it (but before any
666 translations made by ASM_OUTPUT_LABELREF). Often this is the same
667 as DECL_NAME. It is an IDENTIFIER_NODE. */
669 decl_assembler_name (tree decl
)
671 if (!DECL_ASSEMBLER_NAME_SET_P (decl
))
672 lang_hooks
.set_decl_assembler_name (decl
);
673 return DECL_ASSEMBLER_NAME_RAW (decl
);
676 /* The DECL_ASSEMBLER_NAME_RAW of DECL is being explicitly set to NAME
677 (either of which may be NULL). Inform the FE, if this changes the
681 overwrite_decl_assembler_name (tree decl
, tree name
)
683 if (DECL_ASSEMBLER_NAME_RAW (decl
) != name
)
684 lang_hooks
.overwrite_decl_assembler_name (decl
, name
);
687 /* When the target supports COMDAT groups, this indicates which group the
688 DECL is associated with. This can be either an IDENTIFIER_NODE or a
689 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
691 decl_comdat_group (const_tree node
)
693 struct symtab_node
*snode
= symtab_node::get (node
);
696 return snode
->get_comdat_group ();
699 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
701 decl_comdat_group_id (const_tree node
)
703 struct symtab_node
*snode
= symtab_node::get (node
);
706 return snode
->get_comdat_group_id ();
709 /* When the target supports named section, return its name as IDENTIFIER_NODE
710 or NULL if it is in no section. */
712 decl_section_name (const_tree node
)
714 struct symtab_node
*snode
= symtab_node::get (node
);
717 return snode
->get_section ();
720 /* Set section name of NODE to VALUE (that is expected to be
723 set_decl_section_name (tree node
, const char *value
)
725 struct symtab_node
*snode
;
729 snode
= symtab_node::get (node
);
733 else if (VAR_P (node
))
734 snode
= varpool_node::get_create (node
);
736 snode
= cgraph_node::get_create (node
);
737 snode
->set_section (value
);
740 /* Return TLS model of a variable NODE. */
742 decl_tls_model (const_tree node
)
744 struct varpool_node
*snode
= varpool_node::get (node
);
746 return TLS_MODEL_NONE
;
747 return snode
->tls_model
;
750 /* Set TLS model of variable NODE to MODEL. */
752 set_decl_tls_model (tree node
, enum tls_model model
)
754 struct varpool_node
*vnode
;
756 if (model
== TLS_MODEL_NONE
)
758 vnode
= varpool_node::get (node
);
763 vnode
= varpool_node::get_create (node
);
764 vnode
->tls_model
= model
;
767 /* Compute the number of bytes occupied by a tree with code CODE.
768 This function cannot be used for nodes that have variable sizes,
769 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
771 tree_code_size (enum tree_code code
)
773 switch (TREE_CODE_CLASS (code
))
775 case tcc_declaration
: /* A decl node */
778 case FIELD_DECL
: return sizeof (tree_field_decl
);
779 case PARM_DECL
: return sizeof (tree_parm_decl
);
780 case VAR_DECL
: return sizeof (tree_var_decl
);
781 case LABEL_DECL
: return sizeof (tree_label_decl
);
782 case RESULT_DECL
: return sizeof (tree_result_decl
);
783 case CONST_DECL
: return sizeof (tree_const_decl
);
784 case TYPE_DECL
: return sizeof (tree_type_decl
);
785 case FUNCTION_DECL
: return sizeof (tree_function_decl
);
786 case DEBUG_EXPR_DECL
: return sizeof (tree_decl_with_rtl
);
787 case TRANSLATION_UNIT_DECL
: return sizeof (tree_translation_unit_decl
);
790 case NAMELIST_DECL
: return sizeof (tree_decl_non_common
);
792 gcc_checking_assert (code
>= NUM_TREE_CODES
);
793 return lang_hooks
.tree_size (code
);
796 case tcc_type
: /* a type node */
807 case FIXED_POINT_TYPE
:
813 case QUAL_UNION_TYPE
:
815 case POINTER_BOUNDS_TYPE
:
818 case LANG_TYPE
: return sizeof (tree_type_non_common
);
820 gcc_checking_assert (code
>= NUM_TREE_CODES
);
821 return lang_hooks
.tree_size (code
);
824 case tcc_reference
: /* a reference */
825 case tcc_expression
: /* an expression */
826 case tcc_statement
: /* an expression with side effects */
827 case tcc_comparison
: /* a comparison expression */
828 case tcc_unary
: /* a unary arithmetic expression */
829 case tcc_binary
: /* a binary arithmetic expression */
830 return (sizeof (struct tree_exp
)
831 + (TREE_CODE_LENGTH (code
) - 1) * sizeof (tree
));
833 case tcc_constant
: /* a constant */
836 case VOID_CST
: return sizeof (tree_typed
);
837 case INTEGER_CST
: gcc_unreachable ();
838 case REAL_CST
: return sizeof (tree_real_cst
);
839 case FIXED_CST
: return sizeof (tree_fixed_cst
);
840 case COMPLEX_CST
: return sizeof (tree_complex
);
841 case VECTOR_CST
: gcc_unreachable ();
842 case STRING_CST
: gcc_unreachable ();
844 gcc_checking_assert (code
>= NUM_TREE_CODES
);
845 return lang_hooks
.tree_size (code
);
848 case tcc_exceptional
: /* something random, like an identifier. */
851 case IDENTIFIER_NODE
: return lang_hooks
.identifier_size
;
852 case TREE_LIST
: return sizeof (tree_list
);
855 case PLACEHOLDER_EXPR
: return sizeof (tree_common
);
857 case TREE_VEC
: gcc_unreachable ();
858 case OMP_CLAUSE
: gcc_unreachable ();
860 case SSA_NAME
: return sizeof (tree_ssa_name
);
862 case STATEMENT_LIST
: return sizeof (tree_statement_list
);
863 case BLOCK
: return sizeof (struct tree_block
);
864 case CONSTRUCTOR
: return sizeof (tree_constructor
);
865 case OPTIMIZATION_NODE
: return sizeof (tree_optimization_option
);
866 case TARGET_OPTION_NODE
: return sizeof (tree_target_option
);
869 gcc_checking_assert (code
>= NUM_TREE_CODES
);
870 return lang_hooks
.tree_size (code
);
878 /* Compute the number of bytes occupied by NODE. This routine only
879 looks at TREE_CODE, except for those nodes that have variable sizes. */
881 tree_size (const_tree node
)
883 const enum tree_code code
= TREE_CODE (node
);
887 return (sizeof (struct tree_int_cst
)
888 + (TREE_INT_CST_EXT_NUNITS (node
) - 1) * sizeof (HOST_WIDE_INT
));
891 return (offsetof (struct tree_binfo
, base_binfos
)
893 ::embedded_size (BINFO_N_BASE_BINFOS (node
)));
896 return (sizeof (struct tree_vec
)
897 + (TREE_VEC_LENGTH (node
) - 1) * sizeof (tree
));
900 return (sizeof (struct tree_vector
)
901 + (vector_cst_encoded_nelts (node
) - 1) * sizeof (tree
));
904 return TREE_STRING_LENGTH (node
) + offsetof (struct tree_string
, str
) + 1;
907 return (sizeof (struct tree_omp_clause
)
908 + (omp_clause_num_ops
[OMP_CLAUSE_CODE (node
)] - 1)
912 if (TREE_CODE_CLASS (code
) == tcc_vl_exp
)
913 return (sizeof (struct tree_exp
)
914 + (VL_EXP_OPERAND_LENGTH (node
) - 1) * sizeof (tree
));
916 return tree_code_size (code
);
920 /* Record interesting allocation statistics for a tree node with CODE
924 record_node_allocation_statistics (enum tree_code code ATTRIBUTE_UNUSED
,
925 size_t length ATTRIBUTE_UNUSED
)
927 enum tree_code_class type
= TREE_CODE_CLASS (code
);
930 if (!GATHER_STATISTICS
)
935 case tcc_declaration
: /* A decl node */
939 case tcc_type
: /* a type node */
943 case tcc_statement
: /* an expression with side effects */
947 case tcc_reference
: /* a reference */
951 case tcc_expression
: /* an expression */
952 case tcc_comparison
: /* a comparison expression */
953 case tcc_unary
: /* a unary arithmetic expression */
954 case tcc_binary
: /* a binary arithmetic expression */
958 case tcc_constant
: /* a constant */
962 case tcc_exceptional
: /* something random, like an identifier. */
965 case IDENTIFIER_NODE
:
978 kind
= ssa_name_kind
;
990 kind
= omp_clause_kind
;
1007 tree_code_counts
[(int) code
]++;
1008 tree_node_counts
[(int) kind
]++;
1009 tree_node_sizes
[(int) kind
] += length
;
1012 /* Allocate and return a new UID from the DECL_UID namespace. */
1015 allocate_decl_uid (void)
1017 return next_decl_uid
++;
1020 /* Return a newly allocated node of code CODE. For decl and type
1021 nodes, some other fields are initialized. The rest of the node is
1022 initialized to zero. This function cannot be used for TREE_VEC,
1023 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
1026 Achoo! I got a code in the node. */
1029 make_node (enum tree_code code MEM_STAT_DECL
)
1032 enum tree_code_class type
= TREE_CODE_CLASS (code
);
1033 size_t length
= tree_code_size (code
);
1035 record_node_allocation_statistics (code
, length
);
1037 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
1038 TREE_SET_CODE (t
, code
);
1043 if (code
!= DEBUG_BEGIN_STMT
)
1044 TREE_SIDE_EFFECTS (t
) = 1;
1047 case tcc_declaration
:
1048 if (CODE_CONTAINS_STRUCT (code
, TS_DECL_COMMON
))
1050 if (code
== FUNCTION_DECL
)
1052 SET_DECL_ALIGN (t
, FUNCTION_ALIGNMENT (FUNCTION_BOUNDARY
));
1053 SET_DECL_MODE (t
, FUNCTION_MODE
);
1056 SET_DECL_ALIGN (t
, 1);
1058 DECL_SOURCE_LOCATION (t
) = input_location
;
1059 if (TREE_CODE (t
) == DEBUG_EXPR_DECL
)
1060 DECL_UID (t
) = --next_debug_decl_uid
;
1063 DECL_UID (t
) = allocate_decl_uid ();
1064 SET_DECL_PT_UID (t
, -1);
1066 if (TREE_CODE (t
) == LABEL_DECL
)
1067 LABEL_DECL_UID (t
) = -1;
1072 TYPE_UID (t
) = next_type_uid
++;
1073 SET_TYPE_ALIGN (t
, BITS_PER_UNIT
);
1074 TYPE_USER_ALIGN (t
) = 0;
1075 TYPE_MAIN_VARIANT (t
) = t
;
1076 TYPE_CANONICAL (t
) = t
;
1078 /* Default to no attributes for type, but let target change that. */
1079 TYPE_ATTRIBUTES (t
) = NULL_TREE
;
1080 targetm
.set_default_type_attributes (t
);
1082 /* We have not yet computed the alias set for this type. */
1083 TYPE_ALIAS_SET (t
) = -1;
1087 TREE_CONSTANT (t
) = 1;
1090 case tcc_expression
:
1096 case PREDECREMENT_EXPR
:
1097 case PREINCREMENT_EXPR
:
1098 case POSTDECREMENT_EXPR
:
1099 case POSTINCREMENT_EXPR
:
1100 /* All of these have side-effects, no matter what their
1102 TREE_SIDE_EFFECTS (t
) = 1;
1110 case tcc_exceptional
:
1113 case TARGET_OPTION_NODE
:
1114 TREE_TARGET_OPTION(t
)
1115 = ggc_cleared_alloc
<struct cl_target_option
> ();
1118 case OPTIMIZATION_NODE
:
1119 TREE_OPTIMIZATION (t
)
1120 = ggc_cleared_alloc
<struct cl_optimization
> ();
1129 /* Other classes need no special treatment. */
1136 /* Free tree node. */
1139 free_node (tree node
)
1141 enum tree_code code
= TREE_CODE (node
);
1142 if (GATHER_STATISTICS
)
1144 tree_code_counts
[(int) TREE_CODE (node
)]--;
1145 tree_node_counts
[(int) t_kind
]--;
1146 tree_node_sizes
[(int) t_kind
] -= tree_size (node
);
1148 if (CODE_CONTAINS_STRUCT (code
, TS_CONSTRUCTOR
))
1149 vec_free (CONSTRUCTOR_ELTS (node
));
1150 else if (code
== BLOCK
)
1151 vec_free (BLOCK_NONLOCALIZED_VARS (node
));
1152 else if (code
== TREE_BINFO
)
1153 vec_free (BINFO_BASE_ACCESSES (node
));
1157 /* Return a new node with the same contents as NODE except that its
1158 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1161 copy_node (tree node MEM_STAT_DECL
)
1164 enum tree_code code
= TREE_CODE (node
);
1167 gcc_assert (code
!= STATEMENT_LIST
);
1169 length
= tree_size (node
);
1170 record_node_allocation_statistics (code
, length
);
1171 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
1172 memcpy (t
, node
, length
);
1174 if (CODE_CONTAINS_STRUCT (code
, TS_COMMON
))
1176 TREE_ASM_WRITTEN (t
) = 0;
1177 TREE_VISITED (t
) = 0;
1179 if (TREE_CODE_CLASS (code
) == tcc_declaration
)
1181 if (code
== DEBUG_EXPR_DECL
)
1182 DECL_UID (t
) = --next_debug_decl_uid
;
1185 DECL_UID (t
) = allocate_decl_uid ();
1186 if (DECL_PT_UID_SET_P (node
))
1187 SET_DECL_PT_UID (t
, DECL_PT_UID (node
));
1189 if ((TREE_CODE (node
) == PARM_DECL
|| VAR_P (node
))
1190 && DECL_HAS_VALUE_EXPR_P (node
))
1192 SET_DECL_VALUE_EXPR (t
, DECL_VALUE_EXPR (node
));
1193 DECL_HAS_VALUE_EXPR_P (t
) = 1;
1195 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
1198 DECL_HAS_DEBUG_EXPR_P (t
) = 0;
1199 t
->decl_with_vis
.symtab_node
= NULL
;
1201 if (VAR_P (node
) && DECL_HAS_INIT_PRIORITY_P (node
))
1203 SET_DECL_INIT_PRIORITY (t
, DECL_INIT_PRIORITY (node
));
1204 DECL_HAS_INIT_PRIORITY_P (t
) = 1;
1206 if (TREE_CODE (node
) == FUNCTION_DECL
)
1208 DECL_STRUCT_FUNCTION (t
) = NULL
;
1209 t
->decl_with_vis
.symtab_node
= NULL
;
1212 else if (TREE_CODE_CLASS (code
) == tcc_type
)
1214 TYPE_UID (t
) = next_type_uid
++;
1215 /* The following is so that the debug code for
1216 the copy is different from the original type.
1217 The two statements usually duplicate each other
1218 (because they clear fields of the same union),
1219 but the optimizer should catch that. */
1220 TYPE_SYMTAB_ADDRESS (t
) = 0;
1221 TYPE_SYMTAB_DIE (t
) = 0;
1223 /* Do not copy the values cache. */
1224 if (TYPE_CACHED_VALUES_P (t
))
1226 TYPE_CACHED_VALUES_P (t
) = 0;
1227 TYPE_CACHED_VALUES (t
) = NULL_TREE
;
1230 else if (code
== TARGET_OPTION_NODE
)
1232 TREE_TARGET_OPTION (t
) = ggc_alloc
<struct cl_target_option
>();
1233 memcpy (TREE_TARGET_OPTION (t
), TREE_TARGET_OPTION (node
),
1234 sizeof (struct cl_target_option
));
1236 else if (code
== OPTIMIZATION_NODE
)
1238 TREE_OPTIMIZATION (t
) = ggc_alloc
<struct cl_optimization
>();
1239 memcpy (TREE_OPTIMIZATION (t
), TREE_OPTIMIZATION (node
),
1240 sizeof (struct cl_optimization
));
1246 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1247 For example, this can copy a list made of TREE_LIST nodes. */
1250 copy_list (tree list
)
1258 head
= prev
= copy_node (list
);
1259 next
= TREE_CHAIN (list
);
1262 TREE_CHAIN (prev
) = copy_node (next
);
1263 prev
= TREE_CHAIN (prev
);
1264 next
= TREE_CHAIN (next
);
1270 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1271 INTEGER_CST with value CST and type TYPE. */
1274 get_int_cst_ext_nunits (tree type
, const wide_int
&cst
)
1276 gcc_checking_assert (cst
.get_precision () == TYPE_PRECISION (type
));
1277 /* We need extra HWIs if CST is an unsigned integer with its
1279 if (TYPE_UNSIGNED (type
) && wi::neg_p (cst
))
1280 return cst
.get_precision () / HOST_BITS_PER_WIDE_INT
+ 1;
1281 return cst
.get_len ();
1284 /* Return a new INTEGER_CST with value CST and type TYPE. */
1287 build_new_int_cst (tree type
, const wide_int
&cst
)
1289 unsigned int len
= cst
.get_len ();
1290 unsigned int ext_len
= get_int_cst_ext_nunits (type
, cst
);
1291 tree nt
= make_int_cst (len
, ext_len
);
1296 TREE_INT_CST_ELT (nt
, ext_len
)
1297 = zext_hwi (-1, cst
.get_precision () % HOST_BITS_PER_WIDE_INT
);
1298 for (unsigned int i
= len
; i
< ext_len
; ++i
)
1299 TREE_INT_CST_ELT (nt
, i
) = -1;
1301 else if (TYPE_UNSIGNED (type
)
1302 && cst
.get_precision () < len
* HOST_BITS_PER_WIDE_INT
)
1305 TREE_INT_CST_ELT (nt
, len
)
1306 = zext_hwi (cst
.elt (len
),
1307 cst
.get_precision () % HOST_BITS_PER_WIDE_INT
);
1310 for (unsigned int i
= 0; i
< len
; i
++)
1311 TREE_INT_CST_ELT (nt
, i
) = cst
.elt (i
);
1312 TREE_TYPE (nt
) = type
;
1316 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1319 build_int_cst (tree type
, HOST_WIDE_INT low
)
1321 /* Support legacy code. */
1323 type
= integer_type_node
;
1325 return wide_int_to_tree (type
, wi::shwi (low
, TYPE_PRECISION (type
)));
1329 build_int_cstu (tree type
, unsigned HOST_WIDE_INT cst
)
1331 return wide_int_to_tree (type
, wi::uhwi (cst
, TYPE_PRECISION (type
)));
1334 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1337 build_int_cst_type (tree type
, HOST_WIDE_INT low
)
1340 return wide_int_to_tree (type
, wi::shwi (low
, TYPE_PRECISION (type
)));
1343 /* Constructs tree in type TYPE from with value given by CST. Signedness
1344 of CST is assumed to be the same as the signedness of TYPE. */
1347 double_int_to_tree (tree type
, double_int cst
)
1349 return wide_int_to_tree (type
, widest_int::from (cst
, TYPE_SIGN (type
)));
1352 /* We force the wide_int CST to the range of the type TYPE by sign or
1353 zero extending it. OVERFLOWABLE indicates if we are interested in
1354 overflow of the value, when >0 we are only interested in signed
1355 overflow, for <0 we are interested in any overflow. OVERFLOWED
1356 indicates whether overflow has already occurred. CONST_OVERFLOWED
1357 indicates whether constant overflow has already occurred. We force
1358 T's value to be within range of T's type (by setting to 0 or 1 all
1359 the bits outside the type's range). We set TREE_OVERFLOWED if,
1360 OVERFLOWED is nonzero,
1361 or OVERFLOWABLE is >0 and signed overflow occurs
1362 or OVERFLOWABLE is <0 and any overflow occurs
1363 We return a new tree node for the extended wide_int. The node
1364 is shared if no overflow flags are set. */
1368 force_fit_type (tree type
, const wide_int_ref
&cst
,
1369 int overflowable
, bool overflowed
)
1371 signop sign
= TYPE_SIGN (type
);
1373 /* If we need to set overflow flags, return a new unshared node. */
1374 if (overflowed
|| !wi::fits_to_tree_p (cst
, type
))
1378 || (overflowable
> 0 && sign
== SIGNED
))
1380 wide_int tmp
= wide_int::from (cst
, TYPE_PRECISION (type
), sign
);
1381 tree t
= build_new_int_cst (type
, tmp
);
1382 TREE_OVERFLOW (t
) = 1;
1387 /* Else build a shared node. */
1388 return wide_int_to_tree (type
, cst
);
1391 /* These are the hash table functions for the hash table of INTEGER_CST
1392 nodes of a sizetype. */
1394 /* Return the hash code X, an INTEGER_CST. */
1397 int_cst_hasher::hash (tree x
)
1399 const_tree
const t
= x
;
1400 hashval_t code
= TYPE_UID (TREE_TYPE (t
));
1403 for (i
= 0; i
< TREE_INT_CST_NUNITS (t
); i
++)
1404 code
= iterative_hash_host_wide_int (TREE_INT_CST_ELT(t
, i
), code
);
1409 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1410 is the same as that given by *Y, which is the same. */
1413 int_cst_hasher::equal (tree x
, tree y
)
1415 const_tree
const xt
= x
;
1416 const_tree
const yt
= y
;
1418 if (TREE_TYPE (xt
) != TREE_TYPE (yt
)
1419 || TREE_INT_CST_NUNITS (xt
) != TREE_INT_CST_NUNITS (yt
)
1420 || TREE_INT_CST_EXT_NUNITS (xt
) != TREE_INT_CST_EXT_NUNITS (yt
))
1423 for (int i
= 0; i
< TREE_INT_CST_NUNITS (xt
); i
++)
1424 if (TREE_INT_CST_ELT (xt
, i
) != TREE_INT_CST_ELT (yt
, i
))
1430 /* Create an INT_CST node of TYPE and value CST.
1431 The returned node is always shared. For small integers we use a
1432 per-type vector cache, for larger ones we use a single hash table.
1433 The value is extended from its precision according to the sign of
1434 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1435 the upper bits and ensures that hashing and value equality based
1436 upon the underlying HOST_WIDE_INTs works without masking. */
1439 wide_int_to_tree (tree type
, const wide_int_ref
&pcst
)
1446 unsigned int prec
= TYPE_PRECISION (type
);
1447 signop sgn
= TYPE_SIGN (type
);
1449 /* Verify that everything is canonical. */
1450 int l
= pcst
.get_len ();
1453 if (pcst
.elt (l
- 1) == 0)
1454 gcc_checking_assert (pcst
.elt (l
- 2) < 0);
1455 if (pcst
.elt (l
- 1) == HOST_WIDE_INT_M1
)
1456 gcc_checking_assert (pcst
.elt (l
- 2) >= 0);
1459 wide_int cst
= wide_int::from (pcst
, prec
, sgn
);
1460 unsigned int ext_len
= get_int_cst_ext_nunits (type
, cst
);
1464 /* We just need to store a single HOST_WIDE_INT. */
1466 if (TYPE_UNSIGNED (type
))
1467 hwi
= cst
.to_uhwi ();
1469 hwi
= cst
.to_shwi ();
1471 switch (TREE_CODE (type
))
1474 gcc_assert (hwi
== 0);
1478 case REFERENCE_TYPE
:
1479 case POINTER_BOUNDS_TYPE
:
1480 /* Cache NULL pointer and zero bounds. */
1489 /* Cache false or true. */
1491 if (IN_RANGE (hwi
, 0, 1))
1497 if (TYPE_SIGN (type
) == UNSIGNED
)
1500 limit
= INTEGER_SHARE_LIMIT
;
1501 if (IN_RANGE (hwi
, 0, INTEGER_SHARE_LIMIT
- 1))
1506 /* Cache [-1, N). */
1507 limit
= INTEGER_SHARE_LIMIT
+ 1;
1508 if (IN_RANGE (hwi
, -1, INTEGER_SHARE_LIMIT
- 1))
1522 /* Look for it in the type's vector of small shared ints. */
1523 if (!TYPE_CACHED_VALUES_P (type
))
1525 TYPE_CACHED_VALUES_P (type
) = 1;
1526 TYPE_CACHED_VALUES (type
) = make_tree_vec (limit
);
1529 t
= TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
);
1531 /* Make sure no one is clobbering the shared constant. */
1532 gcc_checking_assert (TREE_TYPE (t
) == type
1533 && TREE_INT_CST_NUNITS (t
) == 1
1534 && TREE_INT_CST_OFFSET_NUNITS (t
) == 1
1535 && TREE_INT_CST_EXT_NUNITS (t
) == 1
1536 && TREE_INT_CST_ELT (t
, 0) == hwi
);
1539 /* Create a new shared int. */
1540 t
= build_new_int_cst (type
, cst
);
1541 TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) = t
;
1546 /* Use the cache of larger shared ints, using int_cst_node as
1549 TREE_INT_CST_ELT (int_cst_node
, 0) = hwi
;
1550 TREE_TYPE (int_cst_node
) = type
;
1552 tree
*slot
= int_cst_hash_table
->find_slot (int_cst_node
, INSERT
);
1556 /* Insert this one into the hash table. */
1559 /* Make a new node for next time round. */
1560 int_cst_node
= make_int_cst (1, 1);
1566 /* The value either hashes properly or we drop it on the floor
1567 for the gc to take care of. There will not be enough of them
1570 tree nt
= build_new_int_cst (type
, cst
);
1571 tree
*slot
= int_cst_hash_table
->find_slot (nt
, INSERT
);
1575 /* Insert this one into the hash table. */
1587 cache_integer_cst (tree t
)
1589 tree type
= TREE_TYPE (t
);
1592 int prec
= TYPE_PRECISION (type
);
1594 gcc_assert (!TREE_OVERFLOW (t
));
1596 switch (TREE_CODE (type
))
1599 gcc_assert (integer_zerop (t
));
1603 case REFERENCE_TYPE
:
1604 /* Cache NULL pointer. */
1605 if (integer_zerop (t
))
1613 /* Cache false or true. */
1615 if (wi::ltu_p (wi::to_wide (t
), 2))
1616 ix
= TREE_INT_CST_ELT (t
, 0);
1621 if (TYPE_UNSIGNED (type
))
1624 limit
= INTEGER_SHARE_LIMIT
;
1626 /* This is a little hokie, but if the prec is smaller than
1627 what is necessary to hold INTEGER_SHARE_LIMIT, then the
1628 obvious test will not get the correct answer. */
1629 if (prec
< HOST_BITS_PER_WIDE_INT
)
1631 if (tree_to_uhwi (t
) < (unsigned HOST_WIDE_INT
) INTEGER_SHARE_LIMIT
)
1632 ix
= tree_to_uhwi (t
);
1634 else if (wi::ltu_p (wi::to_wide (t
), INTEGER_SHARE_LIMIT
))
1635 ix
= tree_to_uhwi (t
);
1640 limit
= INTEGER_SHARE_LIMIT
+ 1;
1642 if (integer_minus_onep (t
))
1644 else if (!wi::neg_p (wi::to_wide (t
)))
1646 if (prec
< HOST_BITS_PER_WIDE_INT
)
1648 if (tree_to_shwi (t
) < INTEGER_SHARE_LIMIT
)
1649 ix
= tree_to_shwi (t
) + 1;
1651 else if (wi::ltu_p (wi::to_wide (t
), INTEGER_SHARE_LIMIT
))
1652 ix
= tree_to_shwi (t
) + 1;
1666 /* Look for it in the type's vector of small shared ints. */
1667 if (!TYPE_CACHED_VALUES_P (type
))
1669 TYPE_CACHED_VALUES_P (type
) = 1;
1670 TYPE_CACHED_VALUES (type
) = make_tree_vec (limit
);
1673 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) == NULL_TREE
);
1674 TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) = t
;
1678 /* Use the cache of larger shared ints. */
1679 tree
*slot
= int_cst_hash_table
->find_slot (t
, INSERT
);
1680 /* If there is already an entry for the number verify it's the
1683 gcc_assert (wi::to_wide (tree (*slot
)) == wi::to_wide (t
));
1685 /* Otherwise insert this one into the hash table. */
1691 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1692 and the rest are zeros. */
1695 build_low_bits_mask (tree type
, unsigned bits
)
1697 gcc_assert (bits
<= TYPE_PRECISION (type
));
1699 return wide_int_to_tree (type
, wi::mask (bits
, false,
1700 TYPE_PRECISION (type
)));
1703 /* Checks that X is integer constant that can be expressed in (unsigned)
1704 HOST_WIDE_INT without loss of precision. */
1707 cst_and_fits_in_hwi (const_tree x
)
1709 return (TREE_CODE (x
) == INTEGER_CST
1710 && (tree_fits_shwi_p (x
) || tree_fits_uhwi_p (x
)));
1713 /* Build a newly constructed VECTOR_CST with the given values of
1714 (VECTOR_CST_)LOG2_NPATTERNS and (VECTOR_CST_)NELTS_PER_PATTERN. */
1717 make_vector (unsigned log2_npatterns
,
1718 unsigned int nelts_per_pattern MEM_STAT_DECL
)
1720 gcc_assert (IN_RANGE (nelts_per_pattern
, 1, 3));
1722 unsigned npatterns
= 1 << log2_npatterns
;
1723 unsigned encoded_nelts
= npatterns
* nelts_per_pattern
;
1724 unsigned length
= (sizeof (struct tree_vector
)
1725 + (encoded_nelts
- 1) * sizeof (tree
));
1727 record_node_allocation_statistics (VECTOR_CST
, length
);
1729 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
1731 TREE_SET_CODE (t
, VECTOR_CST
);
1732 TREE_CONSTANT (t
) = 1;
1733 VECTOR_CST_LOG2_NPATTERNS (t
) = log2_npatterns
;
1734 VECTOR_CST_NELTS_PER_PATTERN (t
) = nelts_per_pattern
;
1739 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1740 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1743 build_vector_from_ctor (tree type
, vec
<constructor_elt
, va_gc
> *v
)
1745 unsigned int nelts
= TYPE_VECTOR_SUBPARTS (type
);
1746 unsigned HOST_WIDE_INT idx
;
1749 tree_vector_builder
vec (type
, nelts
, 1);
1750 FOR_EACH_CONSTRUCTOR_VALUE (v
, idx
, value
)
1752 if (TREE_CODE (value
) == VECTOR_CST
)
1753 for (unsigned i
= 0; i
< VECTOR_CST_NELTS (value
); ++i
)
1754 vec
.quick_push (VECTOR_CST_ELT (value
, i
));
1756 vec
.quick_push (value
);
1758 while (vec
.length () < nelts
)
1759 vec
.quick_push (build_zero_cst (TREE_TYPE (type
)));
1761 return vec
.build ();
1764 /* Build a vector of type VECTYPE where all the elements are SCs. */
1766 build_vector_from_val (tree vectype
, tree sc
)
1768 int i
, nunits
= TYPE_VECTOR_SUBPARTS (vectype
);
1770 if (sc
== error_mark_node
)
1773 /* Verify that the vector type is suitable for SC. Note that there
1774 is some inconsistency in the type-system with respect to restrict
1775 qualifications of pointers. Vector types always have a main-variant
1776 element type and the qualification is applied to the vector-type.
1777 So TREE_TYPE (vector-type) does not return a properly qualified
1778 vector element-type. */
1779 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc
)),
1780 TREE_TYPE (vectype
)));
1782 if (CONSTANT_CLASS_P (sc
))
1784 tree_vector_builder
v (vectype
, 1, 1);
1790 vec
<constructor_elt
, va_gc
> *v
;
1791 vec_alloc (v
, nunits
);
1792 for (i
= 0; i
< nunits
; ++i
)
1793 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, sc
);
1794 return build_constructor (vectype
, v
);
1798 /* Something has messed with the elements of CONSTRUCTOR C after it was built;
1799 calculate TREE_CONSTANT and TREE_SIDE_EFFECTS. */
1802 recompute_constructor_flags (tree c
)
1806 bool constant_p
= true;
1807 bool side_effects_p
= false;
1808 vec
<constructor_elt
, va_gc
> *vals
= CONSTRUCTOR_ELTS (c
);
1810 FOR_EACH_CONSTRUCTOR_VALUE (vals
, i
, val
)
1812 /* Mostly ctors will have elts that don't have side-effects, so
1813 the usual case is to scan all the elements. Hence a single
1814 loop for both const and side effects, rather than one loop
1815 each (with early outs). */
1816 if (!TREE_CONSTANT (val
))
1818 if (TREE_SIDE_EFFECTS (val
))
1819 side_effects_p
= true;
1822 TREE_SIDE_EFFECTS (c
) = side_effects_p
;
1823 TREE_CONSTANT (c
) = constant_p
;
1826 /* Make sure that TREE_CONSTANT and TREE_SIDE_EFFECTS are correct for
1830 verify_constructor_flags (tree c
)
1834 bool constant_p
= TREE_CONSTANT (c
);
1835 bool side_effects_p
= TREE_SIDE_EFFECTS (c
);
1836 vec
<constructor_elt
, va_gc
> *vals
= CONSTRUCTOR_ELTS (c
);
1838 FOR_EACH_CONSTRUCTOR_VALUE (vals
, i
, val
)
1840 if (constant_p
&& !TREE_CONSTANT (val
))
1841 internal_error ("non-constant element in constant CONSTRUCTOR");
1842 if (!side_effects_p
&& TREE_SIDE_EFFECTS (val
))
1843 internal_error ("side-effects element in no-side-effects CONSTRUCTOR");
1847 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1848 are in the vec pointed to by VALS. */
1850 build_constructor (tree type
, vec
<constructor_elt
, va_gc
> *vals
)
1852 tree c
= make_node (CONSTRUCTOR
);
1854 TREE_TYPE (c
) = type
;
1855 CONSTRUCTOR_ELTS (c
) = vals
;
1857 recompute_constructor_flags (c
);
1862 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1865 build_constructor_single (tree type
, tree index
, tree value
)
1867 vec
<constructor_elt
, va_gc
> *v
;
1868 constructor_elt elt
= {index
, value
};
1871 v
->quick_push (elt
);
1873 return build_constructor (type
, v
);
1877 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1878 are in a list pointed to by VALS. */
1880 build_constructor_from_list (tree type
, tree vals
)
1883 vec
<constructor_elt
, va_gc
> *v
= NULL
;
1887 vec_alloc (v
, list_length (vals
));
1888 for (t
= vals
; t
; t
= TREE_CHAIN (t
))
1889 CONSTRUCTOR_APPEND_ELT (v
, TREE_PURPOSE (t
), TREE_VALUE (t
));
1892 return build_constructor (type
, v
);
1895 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
1896 of elements, provided as index/value pairs. */
1899 build_constructor_va (tree type
, int nelts
, ...)
1901 vec
<constructor_elt
, va_gc
> *v
= NULL
;
1904 va_start (p
, nelts
);
1905 vec_alloc (v
, nelts
);
1908 tree index
= va_arg (p
, tree
);
1909 tree value
= va_arg (p
, tree
);
1910 CONSTRUCTOR_APPEND_ELT (v
, index
, value
);
1913 return build_constructor (type
, v
);
1916 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1919 build_fixed (tree type
, FIXED_VALUE_TYPE f
)
1922 FIXED_VALUE_TYPE
*fp
;
1924 v
= make_node (FIXED_CST
);
1925 fp
= ggc_alloc
<fixed_value
> ();
1926 memcpy (fp
, &f
, sizeof (FIXED_VALUE_TYPE
));
1928 TREE_TYPE (v
) = type
;
1929 TREE_FIXED_CST_PTR (v
) = fp
;
1933 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1936 build_real (tree type
, REAL_VALUE_TYPE d
)
1939 REAL_VALUE_TYPE
*dp
;
1942 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1943 Consider doing it via real_convert now. */
1945 v
= make_node (REAL_CST
);
1946 dp
= ggc_alloc
<real_value
> ();
1947 memcpy (dp
, &d
, sizeof (REAL_VALUE_TYPE
));
1949 TREE_TYPE (v
) = type
;
1950 TREE_REAL_CST_PTR (v
) = dp
;
1951 TREE_OVERFLOW (v
) = overflow
;
1955 /* Like build_real, but first truncate D to the type. */
1958 build_real_truncate (tree type
, REAL_VALUE_TYPE d
)
1960 return build_real (type
, real_value_truncate (TYPE_MODE (type
), d
));
1963 /* Return a new REAL_CST node whose type is TYPE
1964 and whose value is the integer value of the INTEGER_CST node I. */
1967 real_value_from_int_cst (const_tree type
, const_tree i
)
1971 /* Clear all bits of the real value type so that we can later do
1972 bitwise comparisons to see if two values are the same. */
1973 memset (&d
, 0, sizeof d
);
1975 real_from_integer (&d
, type
? TYPE_MODE (type
) : VOIDmode
, wi::to_wide (i
),
1976 TYPE_SIGN (TREE_TYPE (i
)));
1980 /* Given a tree representing an integer constant I, return a tree
1981 representing the same value as a floating-point constant of type TYPE. */
1984 build_real_from_int_cst (tree type
, const_tree i
)
1987 int overflow
= TREE_OVERFLOW (i
);
1989 v
= build_real (type
, real_value_from_int_cst (type
, i
));
1991 TREE_OVERFLOW (v
) |= overflow
;
1995 /* Return a newly constructed STRING_CST node whose value is
1996 the LEN characters at STR.
1997 Note that for a C string literal, LEN should include the trailing NUL.
1998 The TREE_TYPE is not initialized. */
2001 build_string (int len
, const char *str
)
2006 /* Do not waste bytes provided by padding of struct tree_string. */
2007 length
= len
+ offsetof (struct tree_string
, str
) + 1;
2009 record_node_allocation_statistics (STRING_CST
, length
);
2011 s
= (tree
) ggc_internal_alloc (length
);
2013 memset (s
, 0, sizeof (struct tree_typed
));
2014 TREE_SET_CODE (s
, STRING_CST
);
2015 TREE_CONSTANT (s
) = 1;
2016 TREE_STRING_LENGTH (s
) = len
;
2017 memcpy (s
->string
.str
, str
, len
);
2018 s
->string
.str
[len
] = '\0';
2023 /* Return a newly constructed COMPLEX_CST node whose value is
2024 specified by the real and imaginary parts REAL and IMAG.
2025 Both REAL and IMAG should be constant nodes. TYPE, if specified,
2026 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
2029 build_complex (tree type
, tree real
, tree imag
)
2031 tree t
= make_node (COMPLEX_CST
);
2033 TREE_REALPART (t
) = real
;
2034 TREE_IMAGPART (t
) = imag
;
2035 TREE_TYPE (t
) = type
? type
: build_complex_type (TREE_TYPE (real
));
2036 TREE_OVERFLOW (t
) = TREE_OVERFLOW (real
) | TREE_OVERFLOW (imag
);
2040 /* Build a complex (inf +- 0i), such as for the result of cproj.
2041 TYPE is the complex tree type of the result. If NEG is true, the
2042 imaginary zero is negative. */
2045 build_complex_inf (tree type
, bool neg
)
2047 REAL_VALUE_TYPE rinf
, rzero
= dconst0
;
2051 return build_complex (type
, build_real (TREE_TYPE (type
), rinf
),
2052 build_real (TREE_TYPE (type
), rzero
));
2055 /* Return the constant 1 in type TYPE. If TYPE has several elements, each
2056 element is set to 1. In particular, this is 1 + i for complex types. */
2059 build_each_one_cst (tree type
)
2061 if (TREE_CODE (type
) == COMPLEX_TYPE
)
2063 tree scalar
= build_one_cst (TREE_TYPE (type
));
2064 return build_complex (type
, scalar
, scalar
);
2067 return build_one_cst (type
);
2070 /* Return a constant of arithmetic type TYPE which is the
2071 multiplicative identity of the set TYPE. */
2074 build_one_cst (tree type
)
2076 switch (TREE_CODE (type
))
2078 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
2079 case POINTER_TYPE
: case REFERENCE_TYPE
:
2081 return build_int_cst (type
, 1);
2084 return build_real (type
, dconst1
);
2086 case FIXED_POINT_TYPE
:
2087 /* We can only generate 1 for accum types. */
2088 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)));
2089 return build_fixed (type
, FCONST1 (TYPE_MODE (type
)));
2093 tree scalar
= build_one_cst (TREE_TYPE (type
));
2095 return build_vector_from_val (type
, scalar
);
2099 return build_complex (type
,
2100 build_one_cst (TREE_TYPE (type
)),
2101 build_zero_cst (TREE_TYPE (type
)));
2108 /* Return an integer of type TYPE containing all 1's in as much precision as
2109 it contains, or a complex or vector whose subparts are such integers. */
2112 build_all_ones_cst (tree type
)
2114 if (TREE_CODE (type
) == COMPLEX_TYPE
)
2116 tree scalar
= build_all_ones_cst (TREE_TYPE (type
));
2117 return build_complex (type
, scalar
, scalar
);
2120 return build_minus_one_cst (type
);
2123 /* Return a constant of arithmetic type TYPE which is the
2124 opposite of the multiplicative identity of the set TYPE. */
2127 build_minus_one_cst (tree type
)
2129 switch (TREE_CODE (type
))
2131 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
2132 case POINTER_TYPE
: case REFERENCE_TYPE
:
2134 return build_int_cst (type
, -1);
2137 return build_real (type
, dconstm1
);
2139 case FIXED_POINT_TYPE
:
2140 /* We can only generate 1 for accum types. */
2141 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)));
2142 return build_fixed (type
,
2143 fixed_from_double_int (double_int_minus_one
,
2144 SCALAR_TYPE_MODE (type
)));
2148 tree scalar
= build_minus_one_cst (TREE_TYPE (type
));
2150 return build_vector_from_val (type
, scalar
);
2154 return build_complex (type
,
2155 build_minus_one_cst (TREE_TYPE (type
)),
2156 build_zero_cst (TREE_TYPE (type
)));
2163 /* Build 0 constant of type TYPE. This is used by constructor folding
2164 and thus the constant should be represented in memory by
2168 build_zero_cst (tree type
)
2170 switch (TREE_CODE (type
))
2172 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
2173 case POINTER_TYPE
: case REFERENCE_TYPE
:
2174 case OFFSET_TYPE
: case NULLPTR_TYPE
:
2175 return build_int_cst (type
, 0);
2178 return build_real (type
, dconst0
);
2180 case FIXED_POINT_TYPE
:
2181 return build_fixed (type
, FCONST0 (TYPE_MODE (type
)));
2185 tree scalar
= build_zero_cst (TREE_TYPE (type
));
2187 return build_vector_from_val (type
, scalar
);
2192 tree zero
= build_zero_cst (TREE_TYPE (type
));
2194 return build_complex (type
, zero
, zero
);
2198 if (!AGGREGATE_TYPE_P (type
))
2199 return fold_convert (type
, integer_zero_node
);
2200 return build_constructor (type
, NULL
);
2205 /* Build a BINFO with LEN language slots. */
2208 make_tree_binfo (unsigned base_binfos MEM_STAT_DECL
)
2211 size_t length
= (offsetof (struct tree_binfo
, base_binfos
)
2212 + vec
<tree
, va_gc
>::embedded_size (base_binfos
));
2214 record_node_allocation_statistics (TREE_BINFO
, length
);
2216 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
2218 memset (t
, 0, offsetof (struct tree_binfo
, base_binfos
));
2220 TREE_SET_CODE (t
, TREE_BINFO
);
2222 BINFO_BASE_BINFOS (t
)->embedded_init (base_binfos
);
2227 /* Create a CASE_LABEL_EXPR tree node and return it. */
2230 build_case_label (tree low_value
, tree high_value
, tree label_decl
)
2232 tree t
= make_node (CASE_LABEL_EXPR
);
2234 TREE_TYPE (t
) = void_type_node
;
2235 SET_EXPR_LOCATION (t
, DECL_SOURCE_LOCATION (label_decl
));
2237 CASE_LOW (t
) = low_value
;
2238 CASE_HIGH (t
) = high_value
;
2239 CASE_LABEL (t
) = label_decl
;
2240 CASE_CHAIN (t
) = NULL_TREE
;
2245 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2246 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2247 The latter determines the length of the HOST_WIDE_INT vector. */
2250 make_int_cst (int len
, int ext_len MEM_STAT_DECL
)
2253 int length
= ((ext_len
- 1) * sizeof (HOST_WIDE_INT
)
2254 + sizeof (struct tree_int_cst
));
2257 record_node_allocation_statistics (INTEGER_CST
, length
);
2259 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
2261 TREE_SET_CODE (t
, INTEGER_CST
);
2262 TREE_INT_CST_NUNITS (t
) = len
;
2263 TREE_INT_CST_EXT_NUNITS (t
) = ext_len
;
2264 /* to_offset can only be applied to trees that are offset_int-sized
2265 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2266 must be exactly the precision of offset_int and so LEN is correct. */
2267 if (ext_len
<= OFFSET_INT_ELTS
)
2268 TREE_INT_CST_OFFSET_NUNITS (t
) = ext_len
;
2270 TREE_INT_CST_OFFSET_NUNITS (t
) = len
;
2272 TREE_CONSTANT (t
) = 1;
2277 /* Build a newly constructed TREE_VEC node of length LEN. */
2280 make_tree_vec (int len MEM_STAT_DECL
)
2283 size_t length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
2285 record_node_allocation_statistics (TREE_VEC
, length
);
2287 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
2289 TREE_SET_CODE (t
, TREE_VEC
);
2290 TREE_VEC_LENGTH (t
) = len
;
2295 /* Grow a TREE_VEC node to new length LEN. */
2298 grow_tree_vec (tree v
, int len MEM_STAT_DECL
)
2300 gcc_assert (TREE_CODE (v
) == TREE_VEC
);
2302 int oldlen
= TREE_VEC_LENGTH (v
);
2303 gcc_assert (len
> oldlen
);
2305 size_t oldlength
= (oldlen
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
2306 size_t length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
2308 record_node_allocation_statistics (TREE_VEC
, length
- oldlength
);
2310 v
= (tree
) ggc_realloc (v
, length PASS_MEM_STAT
);
2312 TREE_VEC_LENGTH (v
) = len
;
2317 /* Return 1 if EXPR is the constant zero, whether it is integral, float or
2318 fixed, and scalar, complex or vector. */
2321 zerop (const_tree expr
)
2323 return (integer_zerop (expr
)
2324 || real_zerop (expr
)
2325 || fixed_zerop (expr
));
2328 /* Return 1 if EXPR is the integer constant zero or a complex constant
2332 integer_zerop (const_tree expr
)
2334 switch (TREE_CODE (expr
))
2337 return wi::to_wide (expr
) == 0;
2339 return (integer_zerop (TREE_REALPART (expr
))
2340 && integer_zerop (TREE_IMAGPART (expr
)));
2342 return (VECTOR_CST_NPATTERNS (expr
) == 1
2343 && VECTOR_CST_DUPLICATE_P (expr
)
2344 && integer_zerop (VECTOR_CST_ENCODED_ELT (expr
, 0)));
2350 /* Return 1 if EXPR is the integer constant one or the corresponding
2351 complex constant. */
2354 integer_onep (const_tree expr
)
2356 switch (TREE_CODE (expr
))
2359 return wi::eq_p (wi::to_widest (expr
), 1);
2361 return (integer_onep (TREE_REALPART (expr
))
2362 && integer_zerop (TREE_IMAGPART (expr
)));
2364 return (VECTOR_CST_NPATTERNS (expr
) == 1
2365 && VECTOR_CST_DUPLICATE_P (expr
)
2366 && integer_onep (VECTOR_CST_ENCODED_ELT (expr
, 0)));
2372 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2373 return 1 if every piece is the integer constant one. */
2376 integer_each_onep (const_tree expr
)
2378 if (TREE_CODE (expr
) == COMPLEX_CST
)
2379 return (integer_onep (TREE_REALPART (expr
))
2380 && integer_onep (TREE_IMAGPART (expr
)));
2382 return integer_onep (expr
);
2385 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2386 it contains, or a complex or vector whose subparts are such integers. */
2389 integer_all_onesp (const_tree expr
)
2391 if (TREE_CODE (expr
) == COMPLEX_CST
2392 && integer_all_onesp (TREE_REALPART (expr
))
2393 && integer_all_onesp (TREE_IMAGPART (expr
)))
2396 else if (TREE_CODE (expr
) == VECTOR_CST
)
2397 return (VECTOR_CST_NPATTERNS (expr
) == 1
2398 && VECTOR_CST_DUPLICATE_P (expr
)
2399 && integer_all_onesp (VECTOR_CST_ENCODED_ELT (expr
, 0)));
2401 else if (TREE_CODE (expr
) != INTEGER_CST
)
2404 return (wi::max_value (TYPE_PRECISION (TREE_TYPE (expr
)), UNSIGNED
)
2405 == wi::to_wide (expr
));
2408 /* Return 1 if EXPR is the integer constant minus one. */
2411 integer_minus_onep (const_tree expr
)
2413 if (TREE_CODE (expr
) == COMPLEX_CST
)
2414 return (integer_all_onesp (TREE_REALPART (expr
))
2415 && integer_zerop (TREE_IMAGPART (expr
)));
2417 return integer_all_onesp (expr
);
2420 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2424 integer_pow2p (const_tree expr
)
2426 if (TREE_CODE (expr
) == COMPLEX_CST
2427 && integer_pow2p (TREE_REALPART (expr
))
2428 && integer_zerop (TREE_IMAGPART (expr
)))
2431 if (TREE_CODE (expr
) != INTEGER_CST
)
2434 return wi::popcount (wi::to_wide (expr
)) == 1;
2437 /* Return 1 if EXPR is an integer constant other than zero or a
2438 complex constant other than zero. */
2441 integer_nonzerop (const_tree expr
)
2443 return ((TREE_CODE (expr
) == INTEGER_CST
2444 && wi::to_wide (expr
) != 0)
2445 || (TREE_CODE (expr
) == COMPLEX_CST
2446 && (integer_nonzerop (TREE_REALPART (expr
))
2447 || integer_nonzerop (TREE_IMAGPART (expr
)))));
2450 /* Return 1 if EXPR is the integer constant one. For vector,
2451 return 1 if every piece is the integer constant minus one
2452 (representing the value TRUE). */
2455 integer_truep (const_tree expr
)
2457 if (TREE_CODE (expr
) == VECTOR_CST
)
2458 return integer_all_onesp (expr
);
2459 return integer_onep (expr
);
2462 /* Return 1 if EXPR is the fixed-point constant zero. */
2465 fixed_zerop (const_tree expr
)
2467 return (TREE_CODE (expr
) == FIXED_CST
2468 && TREE_FIXED_CST (expr
).data
.is_zero ());
2471 /* Return the power of two represented by a tree node known to be a
2475 tree_log2 (const_tree expr
)
2477 if (TREE_CODE (expr
) == COMPLEX_CST
)
2478 return tree_log2 (TREE_REALPART (expr
));
2480 return wi::exact_log2 (wi::to_wide (expr
));
2483 /* Similar, but return the largest integer Y such that 2 ** Y is less
2484 than or equal to EXPR. */
2487 tree_floor_log2 (const_tree expr
)
2489 if (TREE_CODE (expr
) == COMPLEX_CST
)
2490 return tree_log2 (TREE_REALPART (expr
));
2492 return wi::floor_log2 (wi::to_wide (expr
));
2495 /* Return number of known trailing zero bits in EXPR, or, if the value of
2496 EXPR is known to be zero, the precision of it's type. */
2499 tree_ctz (const_tree expr
)
2501 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr
))
2502 && !POINTER_TYPE_P (TREE_TYPE (expr
)))
2505 unsigned int ret1
, ret2
, prec
= TYPE_PRECISION (TREE_TYPE (expr
));
2506 switch (TREE_CODE (expr
))
2509 ret1
= wi::ctz (wi::to_wide (expr
));
2510 return MIN (ret1
, prec
);
2512 ret1
= wi::ctz (get_nonzero_bits (expr
));
2513 return MIN (ret1
, prec
);
2520 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2523 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2524 return MIN (ret1
, ret2
);
2525 case POINTER_PLUS_EXPR
:
2526 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2527 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2528 /* Second operand is sizetype, which could be in theory
2529 wider than pointer's precision. Make sure we never
2530 return more than prec. */
2531 ret2
= MIN (ret2
, prec
);
2532 return MIN (ret1
, ret2
);
2534 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2535 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2536 return MAX (ret1
, ret2
);
2538 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2539 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2540 return MIN (ret1
+ ret2
, prec
);
2542 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2543 if (tree_fits_uhwi_p (TREE_OPERAND (expr
, 1))
2544 && (tree_to_uhwi (TREE_OPERAND (expr
, 1)) < prec
))
2546 ret2
= tree_to_uhwi (TREE_OPERAND (expr
, 1));
2547 return MIN (ret1
+ ret2
, prec
);
2551 if (tree_fits_uhwi_p (TREE_OPERAND (expr
, 1))
2552 && (tree_to_uhwi (TREE_OPERAND (expr
, 1)) < prec
))
2554 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2555 ret2
= tree_to_uhwi (TREE_OPERAND (expr
, 1));
2560 case TRUNC_DIV_EXPR
:
2562 case FLOOR_DIV_EXPR
:
2563 case ROUND_DIV_EXPR
:
2564 case EXACT_DIV_EXPR
:
2565 if (TREE_CODE (TREE_OPERAND (expr
, 1)) == INTEGER_CST
2566 && tree_int_cst_sgn (TREE_OPERAND (expr
, 1)) == 1)
2568 int l
= tree_log2 (TREE_OPERAND (expr
, 1));
2571 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2579 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2580 if (ret1
&& ret1
== TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr
, 0))))
2582 return MIN (ret1
, prec
);
2584 return tree_ctz (TREE_OPERAND (expr
, 0));
2586 ret1
= tree_ctz (TREE_OPERAND (expr
, 1));
2589 ret2
= tree_ctz (TREE_OPERAND (expr
, 2));
2590 return MIN (ret1
, ret2
);
2592 return tree_ctz (TREE_OPERAND (expr
, 1));
2594 ret1
= get_pointer_alignment (CONST_CAST_TREE (expr
));
2595 if (ret1
> BITS_PER_UNIT
)
2597 ret1
= ctz_hwi (ret1
/ BITS_PER_UNIT
);
2598 return MIN (ret1
, prec
);
2606 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2607 decimal float constants, so don't return 1 for them. */
2610 real_zerop (const_tree expr
)
2612 switch (TREE_CODE (expr
))
2615 return real_equal (&TREE_REAL_CST (expr
), &dconst0
)
2616 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2618 return real_zerop (TREE_REALPART (expr
))
2619 && real_zerop (TREE_IMAGPART (expr
));
2622 /* Don't simply check for a duplicate because the predicate
2623 accepts both +0.0 and -0.0. */
2624 unsigned count
= vector_cst_encoded_nelts (expr
);
2625 for (unsigned int i
= 0; i
< count
; ++i
)
2626 if (!real_zerop (VECTOR_CST_ENCODED_ELT (expr
, i
)))
2635 /* Return 1 if EXPR is the real constant one in real or complex form.
2636 Trailing zeroes matter for decimal float constants, so don't return
2640 real_onep (const_tree expr
)
2642 switch (TREE_CODE (expr
))
2645 return real_equal (&TREE_REAL_CST (expr
), &dconst1
)
2646 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2648 return real_onep (TREE_REALPART (expr
))
2649 && real_zerop (TREE_IMAGPART (expr
));
2651 return (VECTOR_CST_NPATTERNS (expr
) == 1
2652 && VECTOR_CST_DUPLICATE_P (expr
)
2653 && real_onep (VECTOR_CST_ENCODED_ELT (expr
, 0)));
2659 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2660 matter for decimal float constants, so don't return 1 for them. */
2663 real_minus_onep (const_tree expr
)
2665 switch (TREE_CODE (expr
))
2668 return real_equal (&TREE_REAL_CST (expr
), &dconstm1
)
2669 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2671 return real_minus_onep (TREE_REALPART (expr
))
2672 && real_zerop (TREE_IMAGPART (expr
));
2674 return (VECTOR_CST_NPATTERNS (expr
) == 1
2675 && VECTOR_CST_DUPLICATE_P (expr
)
2676 && real_minus_onep (VECTOR_CST_ENCODED_ELT (expr
, 0)));
2682 /* Nonzero if EXP is a constant or a cast of a constant. */
2685 really_constant_p (const_tree exp
)
2687 /* This is not quite the same as STRIP_NOPS. It does more. */
2688 while (CONVERT_EXPR_P (exp
)
2689 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
2690 exp
= TREE_OPERAND (exp
, 0);
2691 return TREE_CONSTANT (exp
);
2694 /* Return first list element whose TREE_VALUE is ELEM.
2695 Return 0 if ELEM is not in LIST. */
2698 value_member (tree elem
, tree list
)
2702 if (elem
== TREE_VALUE (list
))
2704 list
= TREE_CHAIN (list
);
2709 /* Return first list element whose TREE_PURPOSE is ELEM.
2710 Return 0 if ELEM is not in LIST. */
2713 purpose_member (const_tree elem
, tree list
)
2717 if (elem
== TREE_PURPOSE (list
))
2719 list
= TREE_CHAIN (list
);
2724 /* Return true if ELEM is in V. */
2727 vec_member (const_tree elem
, vec
<tree
, va_gc
> *v
)
2731 FOR_EACH_VEC_SAFE_ELT (v
, ix
, t
)
2737 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2741 chain_index (int idx
, tree chain
)
2743 for (; chain
&& idx
> 0; --idx
)
2744 chain
= TREE_CHAIN (chain
);
2748 /* Return nonzero if ELEM is part of the chain CHAIN. */
2751 chain_member (const_tree elem
, const_tree chain
)
2757 chain
= DECL_CHAIN (chain
);
2763 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2764 We expect a null pointer to mark the end of the chain.
2765 This is the Lisp primitive `length'. */
2768 list_length (const_tree t
)
2771 #ifdef ENABLE_TREE_CHECKING
2779 #ifdef ENABLE_TREE_CHECKING
2782 gcc_assert (p
!= q
);
2790 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2791 UNION_TYPE TYPE, or NULL_TREE if none. */
2794 first_field (const_tree type
)
2796 tree t
= TYPE_FIELDS (type
);
2797 while (t
&& TREE_CODE (t
) != FIELD_DECL
)
2802 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2803 by modifying the last node in chain 1 to point to chain 2.
2804 This is the Lisp primitive `nconc'. */
2807 chainon (tree op1
, tree op2
)
2816 for (t1
= op1
; TREE_CHAIN (t1
); t1
= TREE_CHAIN (t1
))
2818 TREE_CHAIN (t1
) = op2
;
2820 #ifdef ENABLE_TREE_CHECKING
2823 for (t2
= op2
; t2
; t2
= TREE_CHAIN (t2
))
2824 gcc_assert (t2
!= t1
);
2831 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2834 tree_last (tree chain
)
2838 while ((next
= TREE_CHAIN (chain
)))
2843 /* Reverse the order of elements in the chain T,
2844 and return the new head of the chain (old last element). */
2849 tree prev
= 0, decl
, next
;
2850 for (decl
= t
; decl
; decl
= next
)
2852 /* We shouldn't be using this function to reverse BLOCK chains; we
2853 have blocks_nreverse for that. */
2854 gcc_checking_assert (TREE_CODE (decl
) != BLOCK
);
2855 next
= TREE_CHAIN (decl
);
2856 TREE_CHAIN (decl
) = prev
;
2862 /* Return a newly created TREE_LIST node whose
2863 purpose and value fields are PARM and VALUE. */
2866 build_tree_list (tree parm
, tree value MEM_STAT_DECL
)
2868 tree t
= make_node (TREE_LIST PASS_MEM_STAT
);
2869 TREE_PURPOSE (t
) = parm
;
2870 TREE_VALUE (t
) = value
;
2874 /* Build a chain of TREE_LIST nodes from a vector. */
2877 build_tree_list_vec (const vec
<tree
, va_gc
> *vec MEM_STAT_DECL
)
2879 tree ret
= NULL_TREE
;
2883 FOR_EACH_VEC_SAFE_ELT (vec
, i
, t
)
2885 *pp
= build_tree_list (NULL
, t PASS_MEM_STAT
);
2886 pp
= &TREE_CHAIN (*pp
);
2891 /* Return a newly created TREE_LIST node whose
2892 purpose and value fields are PURPOSE and VALUE
2893 and whose TREE_CHAIN is CHAIN. */
2896 tree_cons (tree purpose
, tree value
, tree chain MEM_STAT_DECL
)
2900 node
= ggc_alloc_tree_node_stat (sizeof (struct tree_list
) PASS_MEM_STAT
);
2901 memset (node
, 0, sizeof (struct tree_common
));
2903 record_node_allocation_statistics (TREE_LIST
, sizeof (struct tree_list
));
2905 TREE_SET_CODE (node
, TREE_LIST
);
2906 TREE_CHAIN (node
) = chain
;
2907 TREE_PURPOSE (node
) = purpose
;
2908 TREE_VALUE (node
) = value
;
2912 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2916 ctor_to_vec (tree ctor
)
2918 vec
<tree
, va_gc
> *vec
;
2919 vec_alloc (vec
, CONSTRUCTOR_NELTS (ctor
));
2923 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor
), ix
, val
)
2924 vec
->quick_push (val
);
2929 /* Return the size nominally occupied by an object of type TYPE
2930 when it resides in memory. The value is measured in units of bytes,
2931 and its data type is that normally used for type sizes
2932 (which is the first type created by make_signed_type or
2933 make_unsigned_type). */
2936 size_in_bytes_loc (location_t loc
, const_tree type
)
2940 if (type
== error_mark_node
)
2941 return integer_zero_node
;
2943 type
= TYPE_MAIN_VARIANT (type
);
2944 t
= TYPE_SIZE_UNIT (type
);
2948 lang_hooks
.types
.incomplete_type_error (loc
, NULL_TREE
, type
);
2949 return size_zero_node
;
2955 /* Return the size of TYPE (in bytes) as a wide integer
2956 or return -1 if the size can vary or is larger than an integer. */
2959 int_size_in_bytes (const_tree type
)
2963 if (type
== error_mark_node
)
2966 type
= TYPE_MAIN_VARIANT (type
);
2967 t
= TYPE_SIZE_UNIT (type
);
2969 if (t
&& tree_fits_uhwi_p (t
))
2970 return TREE_INT_CST_LOW (t
);
2975 /* Return the maximum size of TYPE (in bytes) as a wide integer
2976 or return -1 if the size can vary or is larger than an integer. */
2979 max_int_size_in_bytes (const_tree type
)
2981 HOST_WIDE_INT size
= -1;
2984 /* If this is an array type, check for a possible MAX_SIZE attached. */
2986 if (TREE_CODE (type
) == ARRAY_TYPE
)
2988 size_tree
= TYPE_ARRAY_MAX_SIZE (type
);
2990 if (size_tree
&& tree_fits_uhwi_p (size_tree
))
2991 size
= tree_to_uhwi (size_tree
);
2994 /* If we still haven't been able to get a size, see if the language
2995 can compute a maximum size. */
2999 size_tree
= lang_hooks
.types
.max_size (type
);
3001 if (size_tree
&& tree_fits_uhwi_p (size_tree
))
3002 size
= tree_to_uhwi (size_tree
);
3008 /* Return the bit position of FIELD, in bits from the start of the record.
3009 This is a tree of type bitsizetype. */
3012 bit_position (const_tree field
)
3014 return bit_from_pos (DECL_FIELD_OFFSET (field
),
3015 DECL_FIELD_BIT_OFFSET (field
));
3018 /* Return the byte position of FIELD, in bytes from the start of the record.
3019 This is a tree of type sizetype. */
3022 byte_position (const_tree field
)
3024 return byte_from_pos (DECL_FIELD_OFFSET (field
),
3025 DECL_FIELD_BIT_OFFSET (field
));
3028 /* Likewise, but return as an integer. It must be representable in
3029 that way (since it could be a signed value, we don't have the
3030 option of returning -1 like int_size_in_byte can. */
3033 int_byte_position (const_tree field
)
3035 return tree_to_shwi (byte_position (field
));
3038 /* Return the strictest alignment, in bits, that T is known to have. */
3041 expr_align (const_tree t
)
3043 unsigned int align0
, align1
;
3045 switch (TREE_CODE (t
))
3047 CASE_CONVERT
: case NON_LVALUE_EXPR
:
3048 /* If we have conversions, we know that the alignment of the
3049 object must meet each of the alignments of the types. */
3050 align0
= expr_align (TREE_OPERAND (t
, 0));
3051 align1
= TYPE_ALIGN (TREE_TYPE (t
));
3052 return MAX (align0
, align1
);
3054 case SAVE_EXPR
: case COMPOUND_EXPR
: case MODIFY_EXPR
:
3055 case INIT_EXPR
: case TARGET_EXPR
: case WITH_CLEANUP_EXPR
:
3056 case CLEANUP_POINT_EXPR
:
3057 /* These don't change the alignment of an object. */
3058 return expr_align (TREE_OPERAND (t
, 0));
3061 /* The best we can do is say that the alignment is the least aligned
3063 align0
= expr_align (TREE_OPERAND (t
, 1));
3064 align1
= expr_align (TREE_OPERAND (t
, 2));
3065 return MIN (align0
, align1
);
3067 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
3068 meaningfully, it's always 1. */
3069 case LABEL_DECL
: case CONST_DECL
:
3070 case VAR_DECL
: case PARM_DECL
: case RESULT_DECL
:
3072 gcc_assert (DECL_ALIGN (t
) != 0);
3073 return DECL_ALIGN (t
);
3079 /* Otherwise take the alignment from that of the type. */
3080 return TYPE_ALIGN (TREE_TYPE (t
));
3083 /* Return, as a tree node, the number of elements for TYPE (which is an
3084 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3087 array_type_nelts (const_tree type
)
3089 tree index_type
, min
, max
;
3091 /* If they did it with unspecified bounds, then we should have already
3092 given an error about it before we got here. */
3093 if (! TYPE_DOMAIN (type
))
3094 return error_mark_node
;
3096 index_type
= TYPE_DOMAIN (type
);
3097 min
= TYPE_MIN_VALUE (index_type
);
3098 max
= TYPE_MAX_VALUE (index_type
);
3100 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3102 return error_mark_node
;
3104 return (integer_zerop (min
)
3106 : fold_build2 (MINUS_EXPR
, TREE_TYPE (max
), max
, min
));
3109 /* If arg is static -- a reference to an object in static storage -- then
3110 return the object. This is not the same as the C meaning of `static'.
3111 If arg isn't static, return NULL. */
3116 switch (TREE_CODE (arg
))
3119 /* Nested functions are static, even though taking their address will
3120 involve a trampoline as we unnest the nested function and create
3121 the trampoline on the tree level. */
3125 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
3126 && ! DECL_THREAD_LOCAL_P (arg
)
3127 && ! DECL_DLLIMPORT_P (arg
)
3131 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
3135 return TREE_STATIC (arg
) ? arg
: NULL
;
3142 /* If the thing being referenced is not a field, then it is
3143 something language specific. */
3144 gcc_assert (TREE_CODE (TREE_OPERAND (arg
, 1)) == FIELD_DECL
);
3146 /* If we are referencing a bitfield, we can't evaluate an
3147 ADDR_EXPR at compile time and so it isn't a constant. */
3148 if (DECL_BIT_FIELD (TREE_OPERAND (arg
, 1)))
3151 return staticp (TREE_OPERAND (arg
, 0));
3157 return TREE_CONSTANT (TREE_OPERAND (arg
, 0)) ? arg
: NULL
;
3160 case ARRAY_RANGE_REF
:
3161 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg
))) == INTEGER_CST
3162 && TREE_CODE (TREE_OPERAND (arg
, 1)) == INTEGER_CST
)
3163 return staticp (TREE_OPERAND (arg
, 0));
3167 case COMPOUND_LITERAL_EXPR
:
3168 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg
)) ? arg
: NULL
;
3178 /* Return whether OP is a DECL whose address is function-invariant. */
3181 decl_address_invariant_p (const_tree op
)
3183 /* The conditions below are slightly less strict than the one in
3186 switch (TREE_CODE (op
))
3195 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
3196 || DECL_THREAD_LOCAL_P (op
)
3197 || DECL_CONTEXT (op
) == current_function_decl
3198 || decl_function_context (op
) == current_function_decl
)
3203 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
3204 || decl_function_context (op
) == current_function_decl
)
3215 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3218 decl_address_ip_invariant_p (const_tree op
)
3220 /* The conditions below are slightly less strict than the one in
3223 switch (TREE_CODE (op
))
3231 if (((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
3232 && !DECL_DLLIMPORT_P (op
))
3233 || DECL_THREAD_LOCAL_P (op
))
3238 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
)))
3250 /* Return true if T is function-invariant (internal function, does
3251 not handle arithmetic; that's handled in skip_simple_arithmetic and
3252 tree_invariant_p). */
3255 tree_invariant_p_1 (tree t
)
3259 if (TREE_CONSTANT (t
)
3260 || (TREE_READONLY (t
) && !TREE_SIDE_EFFECTS (t
)))
3263 switch (TREE_CODE (t
))
3269 op
= TREE_OPERAND (t
, 0);
3270 while (handled_component_p (op
))
3272 switch (TREE_CODE (op
))
3275 case ARRAY_RANGE_REF
:
3276 if (!tree_invariant_p (TREE_OPERAND (op
, 1))
3277 || TREE_OPERAND (op
, 2) != NULL_TREE
3278 || TREE_OPERAND (op
, 3) != NULL_TREE
)
3283 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
3289 op
= TREE_OPERAND (op
, 0);
3292 return CONSTANT_CLASS_P (op
) || decl_address_invariant_p (op
);
3301 /* Return true if T is function-invariant. */
3304 tree_invariant_p (tree t
)
3306 tree inner
= skip_simple_arithmetic (t
);
3307 return tree_invariant_p_1 (inner
);
3310 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3311 Do this to any expression which may be used in more than one place,
3312 but must be evaluated only once.
3314 Normally, expand_expr would reevaluate the expression each time.
3315 Calling save_expr produces something that is evaluated and recorded
3316 the first time expand_expr is called on it. Subsequent calls to
3317 expand_expr just reuse the recorded value.
3319 The call to expand_expr that generates code that actually computes
3320 the value is the first call *at compile time*. Subsequent calls
3321 *at compile time* generate code to use the saved value.
3322 This produces correct result provided that *at run time* control
3323 always flows through the insns made by the first expand_expr
3324 before reaching the other places where the save_expr was evaluated.
3325 You, the caller of save_expr, must make sure this is so.
3327 Constants, and certain read-only nodes, are returned with no
3328 SAVE_EXPR because that is safe. Expressions containing placeholders
3329 are not touched; see tree.def for an explanation of what these
3333 save_expr (tree expr
)
3337 /* If the tree evaluates to a constant, then we don't want to hide that
3338 fact (i.e. this allows further folding, and direct checks for constants).
3339 However, a read-only object that has side effects cannot be bypassed.
3340 Since it is no problem to reevaluate literals, we just return the
3342 inner
= skip_simple_arithmetic (expr
);
3343 if (TREE_CODE (inner
) == ERROR_MARK
)
3346 if (tree_invariant_p_1 (inner
))
3349 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3350 it means that the size or offset of some field of an object depends on
3351 the value within another field.
3353 Note that it must not be the case that EXPR contains both a PLACEHOLDER_EXPR
3354 and some variable since it would then need to be both evaluated once and
3355 evaluated more than once. Front-ends must assure this case cannot
3356 happen by surrounding any such subexpressions in their own SAVE_EXPR
3357 and forcing evaluation at the proper time. */
3358 if (contains_placeholder_p (inner
))
3361 expr
= build1_loc (EXPR_LOCATION (expr
), SAVE_EXPR
, TREE_TYPE (expr
), expr
);
3363 /* This expression might be placed ahead of a jump to ensure that the
3364 value was computed on both sides of the jump. So make sure it isn't
3365 eliminated as dead. */
3366 TREE_SIDE_EFFECTS (expr
) = 1;
3370 /* Look inside EXPR into any simple arithmetic operations. Return the
3371 outermost non-arithmetic or non-invariant node. */
3374 skip_simple_arithmetic (tree expr
)
3376 /* We don't care about whether this can be used as an lvalue in this
3378 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
3379 expr
= TREE_OPERAND (expr
, 0);
3381 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3382 a constant, it will be more efficient to not make another SAVE_EXPR since
3383 it will allow better simplification and GCSE will be able to merge the
3384 computations if they actually occur. */
3387 if (UNARY_CLASS_P (expr
))
3388 expr
= TREE_OPERAND (expr
, 0);
3389 else if (BINARY_CLASS_P (expr
))
3391 if (tree_invariant_p (TREE_OPERAND (expr
, 1)))
3392 expr
= TREE_OPERAND (expr
, 0);
3393 else if (tree_invariant_p (TREE_OPERAND (expr
, 0)))
3394 expr
= TREE_OPERAND (expr
, 1);
3405 /* Look inside EXPR into simple arithmetic operations involving constants.
3406 Return the outermost non-arithmetic or non-constant node. */
3409 skip_simple_constant_arithmetic (tree expr
)
3411 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
3412 expr
= TREE_OPERAND (expr
, 0);
3416 if (UNARY_CLASS_P (expr
))
3417 expr
= TREE_OPERAND (expr
, 0);
3418 else if (BINARY_CLASS_P (expr
))
3420 if (TREE_CONSTANT (TREE_OPERAND (expr
, 1)))
3421 expr
= TREE_OPERAND (expr
, 0);
3422 else if (TREE_CONSTANT (TREE_OPERAND (expr
, 0)))
3423 expr
= TREE_OPERAND (expr
, 1);
3434 /* Return which tree structure is used by T. */
3436 enum tree_node_structure_enum
3437 tree_node_structure (const_tree t
)
3439 const enum tree_code code
= TREE_CODE (t
);
3440 return tree_node_structure_for_code (code
);
3443 /* Set various status flags when building a CALL_EXPR object T. */
3446 process_call_operands (tree t
)
3448 bool side_effects
= TREE_SIDE_EFFECTS (t
);
3449 bool read_only
= false;
3450 int i
= call_expr_flags (t
);
3452 /* Calls have side-effects, except those to const or pure functions. */
3453 if ((i
& ECF_LOOPING_CONST_OR_PURE
) || !(i
& (ECF_CONST
| ECF_PURE
)))
3454 side_effects
= true;
3455 /* Propagate TREE_READONLY of arguments for const functions. */
3459 if (!side_effects
|| read_only
)
3460 for (i
= 1; i
< TREE_OPERAND_LENGTH (t
); i
++)
3462 tree op
= TREE_OPERAND (t
, i
);
3463 if (op
&& TREE_SIDE_EFFECTS (op
))
3464 side_effects
= true;
3465 if (op
&& !TREE_READONLY (op
) && !CONSTANT_CLASS_P (op
))
3469 TREE_SIDE_EFFECTS (t
) = side_effects
;
3470 TREE_READONLY (t
) = read_only
;
3473 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3474 size or offset that depends on a field within a record. */
3477 contains_placeholder_p (const_tree exp
)
3479 enum tree_code code
;
3484 code
= TREE_CODE (exp
);
3485 if (code
== PLACEHOLDER_EXPR
)
3488 switch (TREE_CODE_CLASS (code
))
3491 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3492 position computations since they will be converted into a
3493 WITH_RECORD_EXPR involving the reference, which will assume
3494 here will be valid. */
3495 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
3497 case tcc_exceptional
:
3498 if (code
== TREE_LIST
)
3499 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp
))
3500 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp
)));
3505 case tcc_comparison
:
3506 case tcc_expression
:
3510 /* Ignoring the first operand isn't quite right, but works best. */
3511 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1));
3514 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
3515 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1))
3516 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 2)));
3519 /* The save_expr function never wraps anything containing
3520 a PLACEHOLDER_EXPR. */
3527 switch (TREE_CODE_LENGTH (code
))
3530 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
3532 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
3533 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1)));
3544 const_call_expr_arg_iterator iter
;
3545 FOR_EACH_CONST_CALL_EXPR_ARG (arg
, iter
, exp
)
3546 if (CONTAINS_PLACEHOLDER_P (arg
))
3560 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3561 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3565 type_contains_placeholder_1 (const_tree type
)
3567 /* If the size contains a placeholder or the parent type (component type in
3568 the case of arrays) type involves a placeholder, this type does. */
3569 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type
))
3570 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type
))
3571 || (!POINTER_TYPE_P (type
)
3573 && type_contains_placeholder_p (TREE_TYPE (type
))))
3576 /* Now do type-specific checks. Note that the last part of the check above
3577 greatly limits what we have to do below. */
3578 switch (TREE_CODE (type
))
3581 case POINTER_BOUNDS_TYPE
:
3587 case REFERENCE_TYPE
:
3596 case FIXED_POINT_TYPE
:
3597 /* Here we just check the bounds. */
3598 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type
))
3599 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type
)));
3602 /* We have already checked the component type above, so just check
3603 the domain type. Flexible array members have a null domain. */
3604 return TYPE_DOMAIN (type
) ?
3605 type_contains_placeholder_p (TYPE_DOMAIN (type
)) : false;
3609 case QUAL_UNION_TYPE
:
3613 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
3614 if (TREE_CODE (field
) == FIELD_DECL
3615 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field
))
3616 || (TREE_CODE (type
) == QUAL_UNION_TYPE
3617 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field
)))
3618 || type_contains_placeholder_p (TREE_TYPE (field
))))
3629 /* Wrapper around above function used to cache its result. */
3632 type_contains_placeholder_p (tree type
)
3636 /* If the contains_placeholder_bits field has been initialized,
3637 then we know the answer. */
3638 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) > 0)
3639 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) - 1;
3641 /* Indicate that we've seen this type node, and the answer is false.
3642 This is what we want to return if we run into recursion via fields. */
3643 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = 1;
3645 /* Compute the real value. */
3646 result
= type_contains_placeholder_1 (type
);
3648 /* Store the real value. */
3649 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = result
+ 1;
3654 /* Push tree EXP onto vector QUEUE if it is not already present. */
3657 push_without_duplicates (tree exp
, vec
<tree
> *queue
)
3662 FOR_EACH_VEC_ELT (*queue
, i
, iter
)
3663 if (simple_cst_equal (iter
, exp
) == 1)
3667 queue
->safe_push (exp
);
3670 /* Given a tree EXP, find all occurrences of references to fields
3671 in a PLACEHOLDER_EXPR and place them in vector REFS without
3672 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3673 we assume here that EXP contains only arithmetic expressions
3674 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3678 find_placeholder_in_expr (tree exp
, vec
<tree
> *refs
)
3680 enum tree_code code
= TREE_CODE (exp
);
3684 /* We handle TREE_LIST and COMPONENT_REF separately. */
3685 if (code
== TREE_LIST
)
3687 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), refs
);
3688 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), refs
);
3690 else if (code
== COMPONENT_REF
)
3692 for (inner
= TREE_OPERAND (exp
, 0);
3693 REFERENCE_CLASS_P (inner
);
3694 inner
= TREE_OPERAND (inner
, 0))
3697 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
)
3698 push_without_duplicates (exp
, refs
);
3700 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), refs
);
3703 switch (TREE_CODE_CLASS (code
))
3708 case tcc_declaration
:
3709 /* Variables allocated to static storage can stay. */
3710 if (!TREE_STATIC (exp
))
3711 push_without_duplicates (exp
, refs
);
3714 case tcc_expression
:
3715 /* This is the pattern built in ada/make_aligning_type. */
3716 if (code
== ADDR_EXPR
3717 && TREE_CODE (TREE_OPERAND (exp
, 0)) == PLACEHOLDER_EXPR
)
3719 push_without_duplicates (exp
, refs
);
3725 case tcc_exceptional
:
3728 case tcc_comparison
:
3730 for (i
= 0; i
< TREE_CODE_LENGTH (code
); i
++)
3731 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3735 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3736 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3744 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3745 return a tree with all occurrences of references to F in a
3746 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3747 CONST_DECLs. Note that we assume here that EXP contains only
3748 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3749 occurring only in their argument list. */
3752 substitute_in_expr (tree exp
, tree f
, tree r
)
3754 enum tree_code code
= TREE_CODE (exp
);
3755 tree op0
, op1
, op2
, op3
;
3758 /* We handle TREE_LIST and COMPONENT_REF separately. */
3759 if (code
== TREE_LIST
)
3761 op0
= SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp
), f
, r
);
3762 op1
= SUBSTITUTE_IN_EXPR (TREE_VALUE (exp
), f
, r
);
3763 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3766 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3768 else if (code
== COMPONENT_REF
)
3772 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3773 and it is the right field, replace it with R. */
3774 for (inner
= TREE_OPERAND (exp
, 0);
3775 REFERENCE_CLASS_P (inner
);
3776 inner
= TREE_OPERAND (inner
, 0))
3780 op1
= TREE_OPERAND (exp
, 1);
3782 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& op1
== f
)
3785 /* If this expression hasn't been completed let, leave it alone. */
3786 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& !TREE_TYPE (inner
))
3789 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3790 if (op0
== TREE_OPERAND (exp
, 0))
3794 = fold_build3 (COMPONENT_REF
, TREE_TYPE (exp
), op0
, op1
, NULL_TREE
);
3797 switch (TREE_CODE_CLASS (code
))
3802 case tcc_declaration
:
3808 case tcc_expression
:
3814 case tcc_exceptional
:
3817 case tcc_comparison
:
3819 switch (TREE_CODE_LENGTH (code
))
3825 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3826 if (op0
== TREE_OPERAND (exp
, 0))
3829 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3833 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3834 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3836 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3839 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3843 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3844 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3845 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3847 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3848 && op2
== TREE_OPERAND (exp
, 2))
3851 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3855 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3856 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3857 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3858 op3
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 3), f
, r
);
3860 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3861 && op2
== TREE_OPERAND (exp
, 2)
3862 && op3
== TREE_OPERAND (exp
, 3))
3866 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3878 new_tree
= NULL_TREE
;
3880 /* If we are trying to replace F with a constant or with another
3881 instance of one of the arguments of the call, inline back
3882 functions which do nothing else than computing a value from
3883 the arguments they are passed. This makes it possible to
3884 fold partially or entirely the replacement expression. */
3885 if (code
== CALL_EXPR
)
3887 bool maybe_inline
= false;
3888 if (CONSTANT_CLASS_P (r
))
3889 maybe_inline
= true;
3891 for (i
= 3; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3892 if (operand_equal_p (TREE_OPERAND (exp
, i
), r
, 0))
3894 maybe_inline
= true;
3899 tree t
= maybe_inline_call_in_expr (exp
);
3901 return SUBSTITUTE_IN_EXPR (t
, f
, r
);
3905 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3907 tree op
= TREE_OPERAND (exp
, i
);
3908 tree new_op
= SUBSTITUTE_IN_EXPR (op
, f
, r
);
3912 new_tree
= copy_node (exp
);
3913 TREE_OPERAND (new_tree
, i
) = new_op
;
3919 new_tree
= fold (new_tree
);
3920 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3921 process_call_operands (new_tree
);
3932 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3934 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3935 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3940 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3941 for it within OBJ, a tree that is an object or a chain of references. */
3944 substitute_placeholder_in_expr (tree exp
, tree obj
)
3946 enum tree_code code
= TREE_CODE (exp
);
3947 tree op0
, op1
, op2
, op3
;
3950 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3951 in the chain of OBJ. */
3952 if (code
== PLACEHOLDER_EXPR
)
3954 tree need_type
= TYPE_MAIN_VARIANT (TREE_TYPE (exp
));
3957 for (elt
= obj
; elt
!= 0;
3958 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3959 || TREE_CODE (elt
) == COND_EXPR
)
3960 ? TREE_OPERAND (elt
, 1)
3961 : (REFERENCE_CLASS_P (elt
)
3962 || UNARY_CLASS_P (elt
)
3963 || BINARY_CLASS_P (elt
)
3964 || VL_EXP_CLASS_P (elt
)
3965 || EXPRESSION_CLASS_P (elt
))
3966 ? TREE_OPERAND (elt
, 0) : 0))
3967 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt
)) == need_type
)
3970 for (elt
= obj
; elt
!= 0;
3971 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3972 || TREE_CODE (elt
) == COND_EXPR
)
3973 ? TREE_OPERAND (elt
, 1)
3974 : (REFERENCE_CLASS_P (elt
)
3975 || UNARY_CLASS_P (elt
)
3976 || BINARY_CLASS_P (elt
)
3977 || VL_EXP_CLASS_P (elt
)
3978 || EXPRESSION_CLASS_P (elt
))
3979 ? TREE_OPERAND (elt
, 0) : 0))
3980 if (POINTER_TYPE_P (TREE_TYPE (elt
))
3981 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt
)))
3983 return fold_build1 (INDIRECT_REF
, need_type
, elt
);
3985 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3986 survives until RTL generation, there will be an error. */
3990 /* TREE_LIST is special because we need to look at TREE_VALUE
3991 and TREE_CHAIN, not TREE_OPERANDS. */
3992 else if (code
== TREE_LIST
)
3994 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), obj
);
3995 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), obj
);
3996 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3999 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
4002 switch (TREE_CODE_CLASS (code
))
4005 case tcc_declaration
:
4008 case tcc_exceptional
:
4011 case tcc_comparison
:
4012 case tcc_expression
:
4015 switch (TREE_CODE_LENGTH (code
))
4021 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
4022 if (op0
== TREE_OPERAND (exp
, 0))
4025 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
4029 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
4030 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
4032 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
4035 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
4039 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
4040 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
4041 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
4043 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
4044 && op2
== TREE_OPERAND (exp
, 2))
4047 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
4051 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
4052 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
4053 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
4054 op3
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 3), obj
);
4056 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
4057 && op2
== TREE_OPERAND (exp
, 2)
4058 && op3
== TREE_OPERAND (exp
, 3))
4062 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
4074 new_tree
= NULL_TREE
;
4076 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
4078 tree op
= TREE_OPERAND (exp
, i
);
4079 tree new_op
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (op
, obj
);
4083 new_tree
= copy_node (exp
);
4084 TREE_OPERAND (new_tree
, i
) = new_op
;
4090 new_tree
= fold (new_tree
);
4091 if (TREE_CODE (new_tree
) == CALL_EXPR
)
4092 process_call_operands (new_tree
);
4103 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
4105 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
4106 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
4112 /* Subroutine of stabilize_reference; this is called for subtrees of
4113 references. Any expression with side-effects must be put in a SAVE_EXPR
4114 to ensure that it is only evaluated once.
4116 We don't put SAVE_EXPR nodes around everything, because assigning very
4117 simple expressions to temporaries causes us to miss good opportunities
4118 for optimizations. Among other things, the opportunity to fold in the
4119 addition of a constant into an addressing mode often gets lost, e.g.
4120 "y[i+1] += x;". In general, we take the approach that we should not make
4121 an assignment unless we are forced into it - i.e., that any non-side effect
4122 operator should be allowed, and that cse should take care of coalescing
4123 multiple utterances of the same expression should that prove fruitful. */
4126 stabilize_reference_1 (tree e
)
4129 enum tree_code code
= TREE_CODE (e
);
4131 /* We cannot ignore const expressions because it might be a reference
4132 to a const array but whose index contains side-effects. But we can
4133 ignore things that are actual constant or that already have been
4134 handled by this function. */
4136 if (tree_invariant_p (e
))
4139 switch (TREE_CODE_CLASS (code
))
4141 case tcc_exceptional
:
4143 case tcc_declaration
:
4144 case tcc_comparison
:
4146 case tcc_expression
:
4149 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4150 so that it will only be evaluated once. */
4151 /* The reference (r) and comparison (<) classes could be handled as
4152 below, but it is generally faster to only evaluate them once. */
4153 if (TREE_SIDE_EFFECTS (e
))
4154 return save_expr (e
);
4158 /* Constants need no processing. In fact, we should never reach
4163 /* Division is slow and tends to be compiled with jumps,
4164 especially the division by powers of 2 that is often
4165 found inside of an array reference. So do it just once. */
4166 if (code
== TRUNC_DIV_EXPR
|| code
== TRUNC_MOD_EXPR
4167 || code
== FLOOR_DIV_EXPR
|| code
== FLOOR_MOD_EXPR
4168 || code
== CEIL_DIV_EXPR
|| code
== CEIL_MOD_EXPR
4169 || code
== ROUND_DIV_EXPR
|| code
== ROUND_MOD_EXPR
)
4170 return save_expr (e
);
4171 /* Recursively stabilize each operand. */
4172 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)),
4173 stabilize_reference_1 (TREE_OPERAND (e
, 1)));
4177 /* Recursively stabilize each operand. */
4178 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)));
4185 TREE_TYPE (result
) = TREE_TYPE (e
);
4186 TREE_READONLY (result
) = TREE_READONLY (e
);
4187 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (e
);
4188 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (e
);
4193 /* Stabilize a reference so that we can use it any number of times
4194 without causing its operands to be evaluated more than once.
4195 Returns the stabilized reference. This works by means of save_expr,
4196 so see the caveats in the comments about save_expr.
4198 Also allows conversion expressions whose operands are references.
4199 Any other kind of expression is returned unchanged. */
4202 stabilize_reference (tree ref
)
4205 enum tree_code code
= TREE_CODE (ref
);
4212 /* No action is needed in this case. */
4217 case FIX_TRUNC_EXPR
:
4218 result
= build_nt (code
, stabilize_reference (TREE_OPERAND (ref
, 0)));
4222 result
= build_nt (INDIRECT_REF
,
4223 stabilize_reference_1 (TREE_OPERAND (ref
, 0)));
4227 result
= build_nt (COMPONENT_REF
,
4228 stabilize_reference (TREE_OPERAND (ref
, 0)),
4229 TREE_OPERAND (ref
, 1), NULL_TREE
);
4233 result
= build_nt (BIT_FIELD_REF
,
4234 stabilize_reference (TREE_OPERAND (ref
, 0)),
4235 TREE_OPERAND (ref
, 1), TREE_OPERAND (ref
, 2));
4236 REF_REVERSE_STORAGE_ORDER (result
) = REF_REVERSE_STORAGE_ORDER (ref
);
4240 result
= build_nt (ARRAY_REF
,
4241 stabilize_reference (TREE_OPERAND (ref
, 0)),
4242 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
4243 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
4246 case ARRAY_RANGE_REF
:
4247 result
= build_nt (ARRAY_RANGE_REF
,
4248 stabilize_reference (TREE_OPERAND (ref
, 0)),
4249 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
4250 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
4254 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4255 it wouldn't be ignored. This matters when dealing with
4257 return stabilize_reference_1 (ref
);
4259 /* If arg isn't a kind of lvalue we recognize, make no change.
4260 Caller should recognize the error for an invalid lvalue. */
4265 return error_mark_node
;
4268 TREE_TYPE (result
) = TREE_TYPE (ref
);
4269 TREE_READONLY (result
) = TREE_READONLY (ref
);
4270 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (ref
);
4271 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (ref
);
4276 /* Low-level constructors for expressions. */
4278 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4279 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4282 recompute_tree_invariant_for_addr_expr (tree t
)
4285 bool tc
= true, se
= false;
4287 gcc_assert (TREE_CODE (t
) == ADDR_EXPR
);
4289 /* We started out assuming this address is both invariant and constant, but
4290 does not have side effects. Now go down any handled components and see if
4291 any of them involve offsets that are either non-constant or non-invariant.
4292 Also check for side-effects.
4294 ??? Note that this code makes no attempt to deal with the case where
4295 taking the address of something causes a copy due to misalignment. */
4297 #define UPDATE_FLAGS(NODE) \
4298 do { tree _node = (NODE); \
4299 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4300 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4302 for (node
= TREE_OPERAND (t
, 0); handled_component_p (node
);
4303 node
= TREE_OPERAND (node
, 0))
4305 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4306 array reference (probably made temporarily by the G++ front end),
4307 so ignore all the operands. */
4308 if ((TREE_CODE (node
) == ARRAY_REF
4309 || TREE_CODE (node
) == ARRAY_RANGE_REF
)
4310 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node
, 0))) == ARRAY_TYPE
)
4312 UPDATE_FLAGS (TREE_OPERAND (node
, 1));
4313 if (TREE_OPERAND (node
, 2))
4314 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
4315 if (TREE_OPERAND (node
, 3))
4316 UPDATE_FLAGS (TREE_OPERAND (node
, 3));
4318 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4319 FIELD_DECL, apparently. The G++ front end can put something else
4320 there, at least temporarily. */
4321 else if (TREE_CODE (node
) == COMPONENT_REF
4322 && TREE_CODE (TREE_OPERAND (node
, 1)) == FIELD_DECL
)
4324 if (TREE_OPERAND (node
, 2))
4325 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
4329 node
= lang_hooks
.expr_to_decl (node
, &tc
, &se
);
4331 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4332 the address, since &(*a)->b is a form of addition. If it's a constant, the
4333 address is constant too. If it's a decl, its address is constant if the
4334 decl is static. Everything else is not constant and, furthermore,
4335 taking the address of a volatile variable is not volatile. */
4336 if (TREE_CODE (node
) == INDIRECT_REF
4337 || TREE_CODE (node
) == MEM_REF
)
4338 UPDATE_FLAGS (TREE_OPERAND (node
, 0));
4339 else if (CONSTANT_CLASS_P (node
))
4341 else if (DECL_P (node
))
4342 tc
&= (staticp (node
) != NULL_TREE
);
4346 se
|= TREE_SIDE_EFFECTS (node
);
4350 TREE_CONSTANT (t
) = tc
;
4351 TREE_SIDE_EFFECTS (t
) = se
;
4355 /* Build an expression of code CODE, data type TYPE, and operands as
4356 specified. Expressions and reference nodes can be created this way.
4357 Constants, decls, types and misc nodes cannot be.
4359 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4360 enough for all extant tree codes. */
4363 build0 (enum tree_code code
, tree tt MEM_STAT_DECL
)
4367 gcc_assert (TREE_CODE_LENGTH (code
) == 0);
4369 t
= make_node (code PASS_MEM_STAT
);
4376 build1 (enum tree_code code
, tree type
, tree node MEM_STAT_DECL
)
4378 int length
= sizeof (struct tree_exp
);
4381 record_node_allocation_statistics (code
, length
);
4383 gcc_assert (TREE_CODE_LENGTH (code
) == 1);
4385 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
4387 memset (t
, 0, sizeof (struct tree_common
));
4389 TREE_SET_CODE (t
, code
);
4391 TREE_TYPE (t
) = type
;
4392 SET_EXPR_LOCATION (t
, UNKNOWN_LOCATION
);
4393 TREE_OPERAND (t
, 0) = node
;
4394 if (node
&& !TYPE_P (node
))
4396 TREE_SIDE_EFFECTS (t
) = TREE_SIDE_EFFECTS (node
);
4397 TREE_READONLY (t
) = TREE_READONLY (node
);
4400 if (TREE_CODE_CLASS (code
) == tcc_statement
)
4402 if (code
!= DEBUG_BEGIN_STMT
)
4403 TREE_SIDE_EFFECTS (t
) = 1;
4408 /* All of these have side-effects, no matter what their
4410 TREE_SIDE_EFFECTS (t
) = 1;
4411 TREE_READONLY (t
) = 0;
4415 /* Whether a dereference is readonly has nothing to do with whether
4416 its operand is readonly. */
4417 TREE_READONLY (t
) = 0;
4422 recompute_tree_invariant_for_addr_expr (t
);
4426 if ((TREE_CODE_CLASS (code
) == tcc_unary
|| code
== VIEW_CONVERT_EXPR
)
4427 && node
&& !TYPE_P (node
)
4428 && TREE_CONSTANT (node
))
4429 TREE_CONSTANT (t
) = 1;
4430 if (TREE_CODE_CLASS (code
) == tcc_reference
4431 && node
&& TREE_THIS_VOLATILE (node
))
4432 TREE_THIS_VOLATILE (t
) = 1;
4439 #define PROCESS_ARG(N) \
4441 TREE_OPERAND (t, N) = arg##N; \
4442 if (arg##N &&!TYPE_P (arg##N)) \
4444 if (TREE_SIDE_EFFECTS (arg##N)) \
4446 if (!TREE_READONLY (arg##N) \
4447 && !CONSTANT_CLASS_P (arg##N)) \
4448 (void) (read_only = 0); \
4449 if (!TREE_CONSTANT (arg##N)) \
4450 (void) (constant = 0); \
4455 build2 (enum tree_code code
, tree tt
, tree arg0
, tree arg1 MEM_STAT_DECL
)
4457 bool constant
, read_only
, side_effects
, div_by_zero
;
4460 gcc_assert (TREE_CODE_LENGTH (code
) == 2);
4462 if ((code
== MINUS_EXPR
|| code
== PLUS_EXPR
|| code
== MULT_EXPR
)
4463 && arg0
&& arg1
&& tt
&& POINTER_TYPE_P (tt
)
4464 /* When sizetype precision doesn't match that of pointers
4465 we need to be able to build explicit extensions or truncations
4466 of the offset argument. */
4467 && TYPE_PRECISION (sizetype
) == TYPE_PRECISION (tt
))
4468 gcc_assert (TREE_CODE (arg0
) == INTEGER_CST
4469 && TREE_CODE (arg1
) == INTEGER_CST
);
4471 if (code
== POINTER_PLUS_EXPR
&& arg0
&& arg1
&& tt
)
4472 gcc_assert (POINTER_TYPE_P (tt
) && POINTER_TYPE_P (TREE_TYPE (arg0
))
4473 && ptrofftype_p (TREE_TYPE (arg1
)));
4475 t
= make_node (code PASS_MEM_STAT
);
4478 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4479 result based on those same flags for the arguments. But if the
4480 arguments aren't really even `tree' expressions, we shouldn't be trying
4483 /* Expressions without side effects may be constant if their
4484 arguments are as well. */
4485 constant
= (TREE_CODE_CLASS (code
) == tcc_comparison
4486 || TREE_CODE_CLASS (code
) == tcc_binary
);
4488 side_effects
= TREE_SIDE_EFFECTS (t
);
4492 case TRUNC_DIV_EXPR
:
4494 case FLOOR_DIV_EXPR
:
4495 case ROUND_DIV_EXPR
:
4496 case EXACT_DIV_EXPR
:
4498 case FLOOR_MOD_EXPR
:
4499 case ROUND_MOD_EXPR
:
4500 case TRUNC_MOD_EXPR
:
4501 div_by_zero
= integer_zerop (arg1
);
4504 div_by_zero
= false;
4510 TREE_SIDE_EFFECTS (t
) = side_effects
;
4511 if (code
== MEM_REF
)
4513 if (arg0
&& TREE_CODE (arg0
) == ADDR_EXPR
)
4515 tree o
= TREE_OPERAND (arg0
, 0);
4516 TREE_READONLY (t
) = TREE_READONLY (o
);
4517 TREE_THIS_VOLATILE (t
) = TREE_THIS_VOLATILE (o
);
4522 TREE_READONLY (t
) = read_only
;
4523 /* Don't mark X / 0 as constant. */
4524 TREE_CONSTANT (t
) = constant
&& !div_by_zero
;
4525 TREE_THIS_VOLATILE (t
)
4526 = (TREE_CODE_CLASS (code
) == tcc_reference
4527 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4535 build3 (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4536 tree arg2 MEM_STAT_DECL
)
4538 bool constant
, read_only
, side_effects
;
4541 gcc_assert (TREE_CODE_LENGTH (code
) == 3);
4542 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
4544 t
= make_node (code PASS_MEM_STAT
);
4549 /* As a special exception, if COND_EXPR has NULL branches, we
4550 assume that it is a gimple statement and always consider
4551 it to have side effects. */
4552 if (code
== COND_EXPR
4553 && tt
== void_type_node
4554 && arg1
== NULL_TREE
4555 && arg2
== NULL_TREE
)
4556 side_effects
= true;
4558 side_effects
= TREE_SIDE_EFFECTS (t
);
4564 if (code
== COND_EXPR
)
4565 TREE_READONLY (t
) = read_only
;
4567 TREE_SIDE_EFFECTS (t
) = side_effects
;
4568 TREE_THIS_VOLATILE (t
)
4569 = (TREE_CODE_CLASS (code
) == tcc_reference
4570 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4576 build4 (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4577 tree arg2
, tree arg3 MEM_STAT_DECL
)
4579 bool constant
, read_only
, side_effects
;
4582 gcc_assert (TREE_CODE_LENGTH (code
) == 4);
4584 t
= make_node (code PASS_MEM_STAT
);
4587 side_effects
= TREE_SIDE_EFFECTS (t
);
4594 TREE_SIDE_EFFECTS (t
) = side_effects
;
4595 TREE_THIS_VOLATILE (t
)
4596 = (TREE_CODE_CLASS (code
) == tcc_reference
4597 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4603 build5 (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4604 tree arg2
, tree arg3
, tree arg4 MEM_STAT_DECL
)
4606 bool constant
, read_only
, side_effects
;
4609 gcc_assert (TREE_CODE_LENGTH (code
) == 5);
4611 t
= make_node (code PASS_MEM_STAT
);
4614 side_effects
= TREE_SIDE_EFFECTS (t
);
4622 TREE_SIDE_EFFECTS (t
) = side_effects
;
4623 if (code
== TARGET_MEM_REF
)
4625 if (arg0
&& TREE_CODE (arg0
) == ADDR_EXPR
)
4627 tree o
= TREE_OPERAND (arg0
, 0);
4628 TREE_READONLY (t
) = TREE_READONLY (o
);
4629 TREE_THIS_VOLATILE (t
) = TREE_THIS_VOLATILE (o
);
4633 TREE_THIS_VOLATILE (t
)
4634 = (TREE_CODE_CLASS (code
) == tcc_reference
4635 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4640 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4641 on the pointer PTR. */
4644 build_simple_mem_ref_loc (location_t loc
, tree ptr
)
4646 HOST_WIDE_INT offset
= 0;
4647 tree ptype
= TREE_TYPE (ptr
);
4649 /* For convenience allow addresses that collapse to a simple base
4651 if (TREE_CODE (ptr
) == ADDR_EXPR
4652 && (handled_component_p (TREE_OPERAND (ptr
, 0))
4653 || TREE_CODE (TREE_OPERAND (ptr
, 0)) == MEM_REF
))
4655 ptr
= get_addr_base_and_unit_offset (TREE_OPERAND (ptr
, 0), &offset
);
4657 if (TREE_CODE (ptr
) == MEM_REF
)
4659 offset
+= mem_ref_offset (ptr
).to_short_addr ();
4660 ptr
= TREE_OPERAND (ptr
, 0);
4663 ptr
= build_fold_addr_expr (ptr
);
4664 gcc_assert (is_gimple_reg (ptr
) || is_gimple_min_invariant (ptr
));
4666 tem
= build2 (MEM_REF
, TREE_TYPE (ptype
),
4667 ptr
, build_int_cst (ptype
, offset
));
4668 SET_EXPR_LOCATION (tem
, loc
);
4672 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4675 mem_ref_offset (const_tree t
)
4677 return offset_int::from (wi::to_wide (TREE_OPERAND (t
, 1)), SIGNED
);
4680 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4681 offsetted by OFFSET units. */
4684 build_invariant_address (tree type
, tree base
, HOST_WIDE_INT offset
)
4686 tree ref
= fold_build2 (MEM_REF
, TREE_TYPE (type
),
4687 build_fold_addr_expr (base
),
4688 build_int_cst (ptr_type_node
, offset
));
4689 tree addr
= build1 (ADDR_EXPR
, type
, ref
);
4690 recompute_tree_invariant_for_addr_expr (addr
);
4694 /* Similar except don't specify the TREE_TYPE
4695 and leave the TREE_SIDE_EFFECTS as 0.
4696 It is permissible for arguments to be null,
4697 or even garbage if their values do not matter. */
4700 build_nt (enum tree_code code
, ...)
4707 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
4711 t
= make_node (code
);
4712 length
= TREE_CODE_LENGTH (code
);
4714 for (i
= 0; i
< length
; i
++)
4715 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
4721 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4725 build_nt_call_vec (tree fn
, vec
<tree
, va_gc
> *args
)
4730 ret
= build_vl_exp (CALL_EXPR
, vec_safe_length (args
) + 3);
4731 CALL_EXPR_FN (ret
) = fn
;
4732 CALL_EXPR_STATIC_CHAIN (ret
) = NULL_TREE
;
4733 FOR_EACH_VEC_SAFE_ELT (args
, ix
, t
)
4734 CALL_EXPR_ARG (ret
, ix
) = t
;
4738 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4739 We do NOT enter this node in any sort of symbol table.
4741 LOC is the location of the decl.
4743 layout_decl is used to set up the decl's storage layout.
4744 Other slots are initialized to 0 or null pointers. */
4747 build_decl (location_t loc
, enum tree_code code
, tree name
,
4748 tree type MEM_STAT_DECL
)
4752 t
= make_node (code PASS_MEM_STAT
);
4753 DECL_SOURCE_LOCATION (t
) = loc
;
4755 /* if (type == error_mark_node)
4756 type = integer_type_node; */
4757 /* That is not done, deliberately, so that having error_mark_node
4758 as the type can suppress useless errors in the use of this variable. */
4760 DECL_NAME (t
) = name
;
4761 TREE_TYPE (t
) = type
;
4763 if (code
== VAR_DECL
|| code
== PARM_DECL
|| code
== RESULT_DECL
)
4769 /* Builds and returns function declaration with NAME and TYPE. */
4772 build_fn_decl (const char *name
, tree type
)
4774 tree id
= get_identifier (name
);
4775 tree decl
= build_decl (input_location
, FUNCTION_DECL
, id
, type
);
4777 DECL_EXTERNAL (decl
) = 1;
4778 TREE_PUBLIC (decl
) = 1;
4779 DECL_ARTIFICIAL (decl
) = 1;
4780 TREE_NOTHROW (decl
) = 1;
4785 vec
<tree
, va_gc
> *all_translation_units
;
4787 /* Builds a new translation-unit decl with name NAME, queues it in the
4788 global list of translation-unit decls and returns it. */
4791 build_translation_unit_decl (tree name
)
4793 tree tu
= build_decl (UNKNOWN_LOCATION
, TRANSLATION_UNIT_DECL
,
4795 TRANSLATION_UNIT_LANGUAGE (tu
) = lang_hooks
.name
;
4796 vec_safe_push (all_translation_units
, tu
);
4801 /* BLOCK nodes are used to represent the structure of binding contours
4802 and declarations, once those contours have been exited and their contents
4803 compiled. This information is used for outputting debugging info. */
4806 build_block (tree vars
, tree subblocks
, tree supercontext
, tree chain
)
4808 tree block
= make_node (BLOCK
);
4810 BLOCK_VARS (block
) = vars
;
4811 BLOCK_SUBBLOCKS (block
) = subblocks
;
4812 BLOCK_SUPERCONTEXT (block
) = supercontext
;
4813 BLOCK_CHAIN (block
) = chain
;
4818 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4820 LOC is the location to use in tree T. */
4823 protected_set_expr_location (tree t
, location_t loc
)
4825 if (CAN_HAVE_LOCATION_P (t
))
4826 SET_EXPR_LOCATION (t
, loc
);
4829 /* Reset the expression *EXPR_P, a size or position.
4831 ??? We could reset all non-constant sizes or positions. But it's cheap
4832 enough to not do so and refrain from adding workarounds to dwarf2out.c.
4834 We need to reset self-referential sizes or positions because they cannot
4835 be gimplified and thus can contain a CALL_EXPR after the gimplification
4836 is finished, which will run afoul of LTO streaming. And they need to be
4837 reset to something essentially dummy but not constant, so as to preserve
4838 the properties of the object they are attached to. */
4841 free_lang_data_in_one_sizepos (tree
*expr_p
)
4843 tree expr
= *expr_p
;
4844 if (CONTAINS_PLACEHOLDER_P (expr
))
4845 *expr_p
= build0 (PLACEHOLDER_EXPR
, TREE_TYPE (expr
));
4849 /* Reset all the fields in a binfo node BINFO. We only keep
4850 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
4853 free_lang_data_in_binfo (tree binfo
)
4858 gcc_assert (TREE_CODE (binfo
) == TREE_BINFO
);
4860 BINFO_VIRTUALS (binfo
) = NULL_TREE
;
4861 BINFO_BASE_ACCESSES (binfo
) = NULL
;
4862 BINFO_INHERITANCE_CHAIN (binfo
) = NULL_TREE
;
4863 BINFO_SUBVTT_INDEX (binfo
) = NULL_TREE
;
4865 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo
), i
, t
)
4866 free_lang_data_in_binfo (t
);
4870 /* Reset all language specific information still present in TYPE. */
4873 free_lang_data_in_type (tree type
)
4875 gcc_assert (TYPE_P (type
));
4877 /* Give the FE a chance to remove its own data first. */
4878 lang_hooks
.free_lang_data (type
);
4880 TREE_LANG_FLAG_0 (type
) = 0;
4881 TREE_LANG_FLAG_1 (type
) = 0;
4882 TREE_LANG_FLAG_2 (type
) = 0;
4883 TREE_LANG_FLAG_3 (type
) = 0;
4884 TREE_LANG_FLAG_4 (type
) = 0;
4885 TREE_LANG_FLAG_5 (type
) = 0;
4886 TREE_LANG_FLAG_6 (type
) = 0;
4888 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4890 /* Remove the const and volatile qualifiers from arguments. The
4891 C++ front end removes them, but the C front end does not,
4892 leading to false ODR violation errors when merging two
4893 instances of the same function signature compiled by
4894 different front ends. */
4895 for (tree p
= TYPE_ARG_TYPES (type
); p
; p
= TREE_CHAIN (p
))
4897 tree arg_type
= TREE_VALUE (p
);
4899 if (TYPE_READONLY (arg_type
) || TYPE_VOLATILE (arg_type
))
4901 int quals
= TYPE_QUALS (arg_type
)
4903 & ~TYPE_QUAL_VOLATILE
;
4904 TREE_VALUE (p
) = build_qualified_type (arg_type
, quals
);
4905 free_lang_data_in_type (TREE_VALUE (p
));
4907 /* C++ FE uses TREE_PURPOSE to store initial values. */
4908 TREE_PURPOSE (p
) = NULL
;
4911 else if (TREE_CODE (type
) == METHOD_TYPE
)
4912 for (tree p
= TYPE_ARG_TYPES (type
); p
; p
= TREE_CHAIN (p
))
4913 /* C++ FE uses TREE_PURPOSE to store initial values. */
4914 TREE_PURPOSE (p
) = NULL
;
4915 else if (RECORD_OR_UNION_TYPE_P (type
))
4917 /* Remove members that are not FIELD_DECLs (and maybe
4918 TYPE_DECLs) from the field list of an aggregate. These occur
4920 for (tree
*prev
= &TYPE_FIELDS (type
), member
; (member
= *prev
);)
4921 if (TREE_CODE (member
) == FIELD_DECL
4922 || (TREE_CODE (member
) == TYPE_DECL
4923 && !DECL_IGNORED_P (member
)
4924 && debug_info_level
> DINFO_LEVEL_TERSE
4925 && !is_redundant_typedef (member
)))
4926 prev
= &DECL_CHAIN (member
);
4928 *prev
= DECL_CHAIN (member
);
4930 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
4931 and danagle the pointer from time to time. */
4932 if (TYPE_VFIELD (type
) && TREE_CODE (TYPE_VFIELD (type
)) != FIELD_DECL
)
4933 TYPE_VFIELD (type
) = NULL_TREE
;
4935 if (TYPE_BINFO (type
))
4937 free_lang_data_in_binfo (TYPE_BINFO (type
));
4938 /* We need to preserve link to bases and virtual table for all
4939 polymorphic types to make devirtualization machinery working.
4940 Debug output cares only about bases, but output also
4941 virtual table pointers so merging of -fdevirtualize and
4942 -fno-devirtualize units is easier. */
4943 if ((!BINFO_VTABLE (TYPE_BINFO (type
))
4944 || !flag_devirtualize
)
4945 && ((!BINFO_N_BASE_BINFOS (TYPE_BINFO (type
))
4946 && !BINFO_VTABLE (TYPE_BINFO (type
)))
4947 || debug_info_level
!= DINFO_LEVEL_NONE
))
4948 TYPE_BINFO (type
) = NULL
;
4951 else if (INTEGRAL_TYPE_P (type
)
4952 || SCALAR_FLOAT_TYPE_P (type
)
4953 || FIXED_POINT_TYPE_P (type
))
4955 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type
));
4956 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type
));
4959 TYPE_LANG_SLOT_1 (type
) = NULL_TREE
;
4961 free_lang_data_in_one_sizepos (&TYPE_SIZE (type
));
4962 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type
));
4964 if (TYPE_CONTEXT (type
)
4965 && TREE_CODE (TYPE_CONTEXT (type
)) == BLOCK
)
4967 tree ctx
= TYPE_CONTEXT (type
);
4970 ctx
= BLOCK_SUPERCONTEXT (ctx
);
4972 while (ctx
&& TREE_CODE (ctx
) == BLOCK
);
4973 TYPE_CONTEXT (type
) = ctx
;
4978 /* Return true if DECL may need an assembler name to be set. */
4981 need_assembler_name_p (tree decl
)
4983 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
4984 Rule merging. This makes type_odr_p to return true on those types during
4985 LTO and by comparing the mangled name, we can say what types are intended
4986 to be equivalent across compilation unit.
4988 We do not store names of type_in_anonymous_namespace_p.
4990 Record, union and enumeration type have linkage that allows use
4991 to check type_in_anonymous_namespace_p. We do not mangle compound types
4992 that always can be compared structurally.
4994 Similarly for builtin types, we compare properties of their main variant.
4995 A special case are integer types where mangling do make differences
4996 between char/signed char/unsigned char etc. Storing name for these makes
4997 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
4998 See cp/mangle.c:write_builtin_type for details. */
5000 if (flag_lto_odr_type_mering
5001 && TREE_CODE (decl
) == TYPE_DECL
5003 && decl
== TYPE_NAME (TREE_TYPE (decl
))
5004 && TYPE_MAIN_VARIANT (TREE_TYPE (decl
)) == TREE_TYPE (decl
)
5005 && !TYPE_ARTIFICIAL (TREE_TYPE (decl
))
5006 && (type_with_linkage_p (TREE_TYPE (decl
))
5007 || TREE_CODE (TREE_TYPE (decl
)) == INTEGER_TYPE
)
5008 && !variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
5009 return !DECL_ASSEMBLER_NAME_SET_P (decl
);
5010 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5011 if (!VAR_OR_FUNCTION_DECL_P (decl
))
5014 /* If DECL already has its assembler name set, it does not need a
5016 if (!HAS_DECL_ASSEMBLER_NAME_P (decl
)
5017 || DECL_ASSEMBLER_NAME_SET_P (decl
))
5020 /* Abstract decls do not need an assembler name. */
5021 if (DECL_ABSTRACT_P (decl
))
5024 /* For VAR_DECLs, only static, public and external symbols need an
5027 && !TREE_STATIC (decl
)
5028 && !TREE_PUBLIC (decl
)
5029 && !DECL_EXTERNAL (decl
))
5032 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5034 /* Do not set assembler name on builtins. Allow RTL expansion to
5035 decide whether to expand inline or via a regular call. */
5036 if (DECL_BUILT_IN (decl
)
5037 && DECL_BUILT_IN_CLASS (decl
) != BUILT_IN_FRONTEND
)
5040 /* Functions represented in the callgraph need an assembler name. */
5041 if (cgraph_node::get (decl
) != NULL
)
5044 /* Unused and not public functions don't need an assembler name. */
5045 if (!TREE_USED (decl
) && !TREE_PUBLIC (decl
))
5053 /* Reset all language specific information still present in symbol
5057 free_lang_data_in_decl (tree decl
)
5059 gcc_assert (DECL_P (decl
));
5061 /* Give the FE a chance to remove its own data first. */
5062 lang_hooks
.free_lang_data (decl
);
5064 TREE_LANG_FLAG_0 (decl
) = 0;
5065 TREE_LANG_FLAG_1 (decl
) = 0;
5066 TREE_LANG_FLAG_2 (decl
) = 0;
5067 TREE_LANG_FLAG_3 (decl
) = 0;
5068 TREE_LANG_FLAG_4 (decl
) = 0;
5069 TREE_LANG_FLAG_5 (decl
) = 0;
5070 TREE_LANG_FLAG_6 (decl
) = 0;
5072 free_lang_data_in_one_sizepos (&DECL_SIZE (decl
));
5073 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl
));
5074 if (TREE_CODE (decl
) == FIELD_DECL
)
5076 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl
));
5077 if (TREE_CODE (DECL_CONTEXT (decl
)) == QUAL_UNION_TYPE
)
5078 DECL_QUALIFIER (decl
) = NULL_TREE
;
5081 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5083 struct cgraph_node
*node
;
5084 if (!(node
= cgraph_node::get (decl
))
5085 || (!node
->definition
&& !node
->clones
))
5088 node
->release_body ();
5091 release_function_body (decl
);
5092 DECL_ARGUMENTS (decl
) = NULL
;
5093 DECL_RESULT (decl
) = NULL
;
5094 DECL_INITIAL (decl
) = error_mark_node
;
5097 if (gimple_has_body_p (decl
) || (node
&& node
->thunk
.thunk_p
))
5101 /* If DECL has a gimple body, then the context for its
5102 arguments must be DECL. Otherwise, it doesn't really
5103 matter, as we will not be emitting any code for DECL. In
5104 general, there may be other instances of DECL created by
5105 the front end and since PARM_DECLs are generally shared,
5106 their DECL_CONTEXT changes as the replicas of DECL are
5107 created. The only time where DECL_CONTEXT is important
5108 is for the FUNCTION_DECLs that have a gimple body (since
5109 the PARM_DECL will be used in the function's body). */
5110 for (t
= DECL_ARGUMENTS (decl
); t
; t
= TREE_CHAIN (t
))
5111 DECL_CONTEXT (t
) = decl
;
5112 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl
))
5113 DECL_FUNCTION_SPECIFIC_TARGET (decl
)
5114 = target_option_default_node
;
5115 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl
))
5116 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl
)
5117 = optimization_default_node
;
5120 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5121 At this point, it is not needed anymore. */
5122 DECL_SAVED_TREE (decl
) = NULL_TREE
;
5124 /* Clear the abstract origin if it refers to a method.
5125 Otherwise dwarf2out.c will ICE as we splice functions out of
5126 TYPE_FIELDS and thus the origin will not be output
5128 if (DECL_ABSTRACT_ORIGIN (decl
)
5129 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))
5130 && RECORD_OR_UNION_TYPE_P
5131 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))))
5132 DECL_ABSTRACT_ORIGIN (decl
) = NULL_TREE
;
5134 /* Sometimes the C++ frontend doesn't manage to transform a temporary
5135 DECL_VINDEX referring to itself into a vtable slot number as it
5136 should. Happens with functions that are copied and then forgotten
5137 about. Just clear it, it won't matter anymore. */
5138 if (DECL_VINDEX (decl
) && !tree_fits_shwi_p (DECL_VINDEX (decl
)))
5139 DECL_VINDEX (decl
) = NULL_TREE
;
5141 else if (VAR_P (decl
))
5143 if ((DECL_EXTERNAL (decl
)
5144 && (!TREE_STATIC (decl
) || !TREE_READONLY (decl
)))
5145 || (decl_function_context (decl
) && !TREE_STATIC (decl
)))
5146 DECL_INITIAL (decl
) = NULL_TREE
;
5148 else if (TREE_CODE (decl
) == TYPE_DECL
)
5150 DECL_VISIBILITY (decl
) = VISIBILITY_DEFAULT
;
5151 DECL_VISIBILITY_SPECIFIED (decl
) = 0;
5152 DECL_INITIAL (decl
) = NULL_TREE
;
5154 else if (TREE_CODE (decl
) == FIELD_DECL
)
5155 DECL_INITIAL (decl
) = NULL_TREE
;
5156 else if (TREE_CODE (decl
) == TRANSLATION_UNIT_DECL
5157 && DECL_INITIAL (decl
)
5158 && TREE_CODE (DECL_INITIAL (decl
)) == BLOCK
)
5160 /* Strip builtins from the translation-unit BLOCK. We still have targets
5161 without builtin_decl_explicit support and also builtins are shared
5162 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5163 tree
*nextp
= &BLOCK_VARS (DECL_INITIAL (decl
));
5167 if (TREE_CODE (var
) == FUNCTION_DECL
5168 && DECL_BUILT_IN (var
))
5169 *nextp
= TREE_CHAIN (var
);
5171 nextp
= &TREE_CHAIN (var
);
5177 /* Data used when collecting DECLs and TYPEs for language data removal. */
5179 struct free_lang_data_d
5181 free_lang_data_d () : decls (100), types (100) {}
5183 /* Worklist to avoid excessive recursion. */
5184 auto_vec
<tree
> worklist
;
5186 /* Set of traversed objects. Used to avoid duplicate visits. */
5187 hash_set
<tree
> pset
;
5189 /* Array of symbols to process with free_lang_data_in_decl. */
5190 auto_vec
<tree
> decls
;
5192 /* Array of types to process with free_lang_data_in_type. */
5193 auto_vec
<tree
> types
;
5197 /* Save all language fields needed to generate proper debug information
5198 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
5201 save_debug_info_for_decl (tree t
)
5203 /*struct saved_debug_info_d *sdi;*/
5205 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& DECL_P (t
));
5207 /* FIXME. Partial implementation for saving debug info removed. */
5211 /* Save all language fields needed to generate proper debug information
5212 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
5215 save_debug_info_for_type (tree t
)
5217 /*struct saved_debug_info_d *sdi;*/
5219 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& TYPE_P (t
));
5221 /* FIXME. Partial implementation for saving debug info removed. */
5225 /* Add type or decl T to one of the list of tree nodes that need their
5226 language data removed. The lists are held inside FLD. */
5229 add_tree_to_fld_list (tree t
, struct free_lang_data_d
*fld
)
5233 fld
->decls
.safe_push (t
);
5234 if (debug_info_level
> DINFO_LEVEL_TERSE
)
5235 save_debug_info_for_decl (t
);
5237 else if (TYPE_P (t
))
5239 fld
->types
.safe_push (t
);
5240 if (debug_info_level
> DINFO_LEVEL_TERSE
)
5241 save_debug_info_for_type (t
);
5247 /* Push tree node T into FLD->WORKLIST. */
5250 fld_worklist_push (tree t
, struct free_lang_data_d
*fld
)
5252 if (t
&& !is_lang_specific (t
) && !fld
->pset
.contains (t
))
5253 fld
->worklist
.safe_push ((t
));
5257 /* Operand callback helper for free_lang_data_in_node. *TP is the
5258 subtree operand being considered. */
5261 find_decls_types_r (tree
*tp
, int *ws
, void *data
)
5264 struct free_lang_data_d
*fld
= (struct free_lang_data_d
*) data
;
5266 if (TREE_CODE (t
) == TREE_LIST
)
5269 /* Language specific nodes will be removed, so there is no need
5270 to gather anything under them. */
5271 if (is_lang_specific (t
))
5279 /* Note that walk_tree does not traverse every possible field in
5280 decls, so we have to do our own traversals here. */
5281 add_tree_to_fld_list (t
, fld
);
5283 fld_worklist_push (DECL_NAME (t
), fld
);
5284 fld_worklist_push (DECL_CONTEXT (t
), fld
);
5285 fld_worklist_push (DECL_SIZE (t
), fld
);
5286 fld_worklist_push (DECL_SIZE_UNIT (t
), fld
);
5288 /* We are going to remove everything under DECL_INITIAL for
5289 TYPE_DECLs. No point walking them. */
5290 if (TREE_CODE (t
) != TYPE_DECL
)
5291 fld_worklist_push (DECL_INITIAL (t
), fld
);
5293 fld_worklist_push (DECL_ATTRIBUTES (t
), fld
);
5294 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t
), fld
);
5296 if (TREE_CODE (t
) == FUNCTION_DECL
)
5298 fld_worklist_push (DECL_ARGUMENTS (t
), fld
);
5299 fld_worklist_push (DECL_RESULT (t
), fld
);
5301 else if (TREE_CODE (t
) == TYPE_DECL
)
5303 fld_worklist_push (DECL_ORIGINAL_TYPE (t
), fld
);
5305 else if (TREE_CODE (t
) == FIELD_DECL
)
5307 fld_worklist_push (DECL_FIELD_OFFSET (t
), fld
);
5308 fld_worklist_push (DECL_BIT_FIELD_TYPE (t
), fld
);
5309 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t
), fld
);
5310 fld_worklist_push (DECL_FCONTEXT (t
), fld
);
5313 if ((VAR_P (t
) || TREE_CODE (t
) == PARM_DECL
)
5314 && DECL_HAS_VALUE_EXPR_P (t
))
5315 fld_worklist_push (DECL_VALUE_EXPR (t
), fld
);
5317 if (TREE_CODE (t
) != FIELD_DECL
5318 && TREE_CODE (t
) != TYPE_DECL
)
5319 fld_worklist_push (TREE_CHAIN (t
), fld
);
5322 else if (TYPE_P (t
))
5324 /* Note that walk_tree does not traverse every possible field in
5325 types, so we have to do our own traversals here. */
5326 add_tree_to_fld_list (t
, fld
);
5328 if (!RECORD_OR_UNION_TYPE_P (t
))
5329 fld_worklist_push (TYPE_CACHED_VALUES (t
), fld
);
5330 fld_worklist_push (TYPE_SIZE (t
), fld
);
5331 fld_worklist_push (TYPE_SIZE_UNIT (t
), fld
);
5332 fld_worklist_push (TYPE_ATTRIBUTES (t
), fld
);
5333 fld_worklist_push (TYPE_POINTER_TO (t
), fld
);
5334 fld_worklist_push (TYPE_REFERENCE_TO (t
), fld
);
5335 fld_worklist_push (TYPE_NAME (t
), fld
);
5336 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
5337 them and thus do not and want not to reach unused pointer types
5339 if (!POINTER_TYPE_P (t
))
5340 fld_worklist_push (TYPE_MIN_VALUE_RAW (t
), fld
);
5341 /* TYPE_MAX_VALUE_RAW is TYPE_BINFO for record types. */
5342 if (!RECORD_OR_UNION_TYPE_P (t
))
5343 fld_worklist_push (TYPE_MAX_VALUE_RAW (t
), fld
);
5344 fld_worklist_push (TYPE_MAIN_VARIANT (t
), fld
);
5345 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5346 do not and want not to reach unused variants this way. */
5347 if (TYPE_CONTEXT (t
))
5349 tree ctx
= TYPE_CONTEXT (t
);
5350 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5351 So push that instead. */
5352 while (ctx
&& TREE_CODE (ctx
) == BLOCK
)
5353 ctx
= BLOCK_SUPERCONTEXT (ctx
);
5354 fld_worklist_push (ctx
, fld
);
5356 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5357 and want not to reach unused types this way. */
5359 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_BINFO (t
))
5363 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t
)), i
, tem
)
5364 fld_worklist_push (TREE_TYPE (tem
), fld
);
5365 fld_worklist_push (BINFO_VIRTUALS (TYPE_BINFO (t
)), fld
);
5367 if (RECORD_OR_UNION_TYPE_P (t
))
5370 /* Push all TYPE_FIELDS - there can be interleaving interesting
5371 and non-interesting things. */
5372 tem
= TYPE_FIELDS (t
);
5375 if (TREE_CODE (tem
) == FIELD_DECL
5376 || (TREE_CODE (tem
) == TYPE_DECL
5377 && !DECL_IGNORED_P (tem
)
5378 && debug_info_level
> DINFO_LEVEL_TERSE
5379 && !is_redundant_typedef (tem
)))
5380 fld_worklist_push (tem
, fld
);
5381 tem
= TREE_CHAIN (tem
);
5385 fld_worklist_push (TYPE_STUB_DECL (t
), fld
);
5388 else if (TREE_CODE (t
) == BLOCK
)
5391 for (tem
= BLOCK_VARS (t
); tem
; tem
= TREE_CHAIN (tem
))
5392 fld_worklist_push (tem
, fld
);
5393 for (tem
= BLOCK_SUBBLOCKS (t
); tem
; tem
= BLOCK_CHAIN (tem
))
5394 fld_worklist_push (tem
, fld
);
5395 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t
), fld
);
5398 if (TREE_CODE (t
) != IDENTIFIER_NODE
5399 && CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_TYPED
))
5400 fld_worklist_push (TREE_TYPE (t
), fld
);
5406 /* Find decls and types in T. */
5409 find_decls_types (tree t
, struct free_lang_data_d
*fld
)
5413 if (!fld
->pset
.contains (t
))
5414 walk_tree (&t
, find_decls_types_r
, fld
, &fld
->pset
);
5415 if (fld
->worklist
.is_empty ())
5417 t
= fld
->worklist
.pop ();
5421 /* Translate all the types in LIST with the corresponding runtime
5425 get_eh_types_for_runtime (tree list
)
5429 if (list
== NULL_TREE
)
5432 head
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5434 list
= TREE_CHAIN (list
);
5437 tree n
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5438 TREE_CHAIN (prev
) = n
;
5439 prev
= TREE_CHAIN (prev
);
5440 list
= TREE_CHAIN (list
);
5447 /* Find decls and types referenced in EH region R and store them in
5448 FLD->DECLS and FLD->TYPES. */
5451 find_decls_types_in_eh_region (eh_region r
, struct free_lang_data_d
*fld
)
5462 /* The types referenced in each catch must first be changed to the
5463 EH types used at runtime. This removes references to FE types
5465 for (c
= r
->u
.eh_try
.first_catch
; c
; c
= c
->next_catch
)
5467 c
->type_list
= get_eh_types_for_runtime (c
->type_list
);
5468 walk_tree (&c
->type_list
, find_decls_types_r
, fld
, &fld
->pset
);
5473 case ERT_ALLOWED_EXCEPTIONS
:
5474 r
->u
.allowed
.type_list
5475 = get_eh_types_for_runtime (r
->u
.allowed
.type_list
);
5476 walk_tree (&r
->u
.allowed
.type_list
, find_decls_types_r
, fld
, &fld
->pset
);
5479 case ERT_MUST_NOT_THROW
:
5480 walk_tree (&r
->u
.must_not_throw
.failure_decl
,
5481 find_decls_types_r
, fld
, &fld
->pset
);
5487 /* Find decls and types referenced in cgraph node N and store them in
5488 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5489 look for *every* kind of DECL and TYPE node reachable from N,
5490 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5491 NAMESPACE_DECLs, etc). */
5494 find_decls_types_in_node (struct cgraph_node
*n
, struct free_lang_data_d
*fld
)
5497 struct function
*fn
;
5501 find_decls_types (n
->decl
, fld
);
5503 if (!gimple_has_body_p (n
->decl
))
5506 gcc_assert (current_function_decl
== NULL_TREE
&& cfun
== NULL
);
5508 fn
= DECL_STRUCT_FUNCTION (n
->decl
);
5510 /* Traverse locals. */
5511 FOR_EACH_LOCAL_DECL (fn
, ix
, t
)
5512 find_decls_types (t
, fld
);
5514 /* Traverse EH regions in FN. */
5517 FOR_ALL_EH_REGION_FN (r
, fn
)
5518 find_decls_types_in_eh_region (r
, fld
);
5521 /* Traverse every statement in FN. */
5522 FOR_EACH_BB_FN (bb
, fn
)
5525 gimple_stmt_iterator si
;
5528 for (psi
= gsi_start_phis (bb
); !gsi_end_p (psi
); gsi_next (&psi
))
5530 gphi
*phi
= psi
.phi ();
5532 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
5534 tree
*arg_p
= gimple_phi_arg_def_ptr (phi
, i
);
5535 find_decls_types (*arg_p
, fld
);
5539 for (si
= gsi_start_bb (bb
); !gsi_end_p (si
); gsi_next (&si
))
5541 gimple
*stmt
= gsi_stmt (si
);
5543 if (is_gimple_call (stmt
))
5544 find_decls_types (gimple_call_fntype (stmt
), fld
);
5546 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
5548 tree arg
= gimple_op (stmt
, i
);
5549 find_decls_types (arg
, fld
);
5556 /* Find decls and types referenced in varpool node N and store them in
5557 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5558 look for *every* kind of DECL and TYPE node reachable from N,
5559 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5560 NAMESPACE_DECLs, etc). */
5563 find_decls_types_in_var (varpool_node
*v
, struct free_lang_data_d
*fld
)
5565 find_decls_types (v
->decl
, fld
);
5568 /* If T needs an assembler name, have one created for it. */
5571 assign_assembler_name_if_needed (tree t
)
5573 if (need_assembler_name_p (t
))
5575 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5576 diagnostics that use input_location to show locus
5577 information. The problem here is that, at this point,
5578 input_location is generally anchored to the end of the file
5579 (since the parser is long gone), so we don't have a good
5580 position to pin it to.
5582 To alleviate this problem, this uses the location of T's
5583 declaration. Examples of this are
5584 testsuite/g++.dg/template/cond2.C and
5585 testsuite/g++.dg/template/pr35240.C. */
5586 location_t saved_location
= input_location
;
5587 input_location
= DECL_SOURCE_LOCATION (t
);
5589 decl_assembler_name (t
);
5591 input_location
= saved_location
;
5596 /* Free language specific information for every operand and expression
5597 in every node of the call graph. This process operates in three stages:
5599 1- Every callgraph node and varpool node is traversed looking for
5600 decls and types embedded in them. This is a more exhaustive
5601 search than that done by find_referenced_vars, because it will
5602 also collect individual fields, decls embedded in types, etc.
5604 2- All the decls found are sent to free_lang_data_in_decl.
5606 3- All the types found are sent to free_lang_data_in_type.
5608 The ordering between decls and types is important because
5609 free_lang_data_in_decl sets assembler names, which includes
5610 mangling. So types cannot be freed up until assembler names have
5614 free_lang_data_in_cgraph (void)
5616 struct cgraph_node
*n
;
5618 struct free_lang_data_d fld
;
5623 /* Find decls and types in the body of every function in the callgraph. */
5624 FOR_EACH_FUNCTION (n
)
5625 find_decls_types_in_node (n
, &fld
);
5627 FOR_EACH_VEC_SAFE_ELT (alias_pairs
, i
, p
)
5628 find_decls_types (p
->decl
, &fld
);
5630 /* Find decls and types in every varpool symbol. */
5631 FOR_EACH_VARIABLE (v
)
5632 find_decls_types_in_var (v
, &fld
);
5634 /* Set the assembler name on every decl found. We need to do this
5635 now because free_lang_data_in_decl will invalidate data needed
5636 for mangling. This breaks mangling on interdependent decls. */
5637 FOR_EACH_VEC_ELT (fld
.decls
, i
, t
)
5638 assign_assembler_name_if_needed (t
);
5640 /* Traverse every decl found freeing its language data. */
5641 FOR_EACH_VEC_ELT (fld
.decls
, i
, t
)
5642 free_lang_data_in_decl (t
);
5644 /* Traverse every type found freeing its language data. */
5645 FOR_EACH_VEC_ELT (fld
.types
, i
, t
)
5646 free_lang_data_in_type (t
);
5649 FOR_EACH_VEC_ELT (fld
.types
, i
, t
)
5655 /* Free resources that are used by FE but are not needed once they are done. */
5658 free_lang_data (void)
5662 /* If we are the LTO frontend we have freed lang-specific data already. */
5664 || (!flag_generate_lto
&& !flag_generate_offload
))
5667 /* Provide a dummy TRANSLATION_UNIT_DECL if the FE failed to provide one. */
5668 if (vec_safe_is_empty (all_translation_units
))
5669 build_translation_unit_decl (NULL_TREE
);
5671 /* Allocate and assign alias sets to the standard integer types
5672 while the slots are still in the way the frontends generated them. */
5673 for (i
= 0; i
< itk_none
; ++i
)
5674 if (integer_types
[i
])
5675 TYPE_ALIAS_SET (integer_types
[i
]) = get_alias_set (integer_types
[i
]);
5677 /* Traverse the IL resetting language specific information for
5678 operands, expressions, etc. */
5679 free_lang_data_in_cgraph ();
5681 /* Create gimple variants for common types. */
5682 for (unsigned i
= 0;
5683 i
< sizeof (builtin_structptr_types
) / sizeof (builtin_structptr_type
);
5685 builtin_structptr_types
[i
].node
= builtin_structptr_types
[i
].base
;
5687 /* Reset some langhooks. Do not reset types_compatible_p, it may
5688 still be used indirectly via the get_alias_set langhook. */
5689 lang_hooks
.dwarf_name
= lhd_dwarf_name
;
5690 lang_hooks
.decl_printable_name
= gimple_decl_printable_name
;
5691 lang_hooks
.gimplify_expr
= lhd_gimplify_expr
;
5693 /* We do not want the default decl_assembler_name implementation,
5694 rather if we have fixed everything we want a wrapper around it
5695 asserting that all non-local symbols already got their assembler
5696 name and only produce assembler names for local symbols. Or rather
5697 make sure we never call decl_assembler_name on local symbols and
5698 devise a separate, middle-end private scheme for it. */
5700 /* Reset diagnostic machinery. */
5701 tree_diagnostics_defaults (global_dc
);
5709 const pass_data pass_data_ipa_free_lang_data
=
5711 SIMPLE_IPA_PASS
, /* type */
5712 "*free_lang_data", /* name */
5713 OPTGROUP_NONE
, /* optinfo_flags */
5714 TV_IPA_FREE_LANG_DATA
, /* tv_id */
5715 0, /* properties_required */
5716 0, /* properties_provided */
5717 0, /* properties_destroyed */
5718 0, /* todo_flags_start */
5719 0, /* todo_flags_finish */
5722 class pass_ipa_free_lang_data
: public simple_ipa_opt_pass
5725 pass_ipa_free_lang_data (gcc::context
*ctxt
)
5726 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data
, ctxt
)
5729 /* opt_pass methods: */
5730 virtual unsigned int execute (function
*) { return free_lang_data (); }
5732 }; // class pass_ipa_free_lang_data
5736 simple_ipa_opt_pass
*
5737 make_pass_ipa_free_lang_data (gcc::context
*ctxt
)
5739 return new pass_ipa_free_lang_data (ctxt
);
5742 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5743 of the various TYPE_QUAL values. */
5746 set_type_quals (tree type
, int type_quals
)
5748 TYPE_READONLY (type
) = (type_quals
& TYPE_QUAL_CONST
) != 0;
5749 TYPE_VOLATILE (type
) = (type_quals
& TYPE_QUAL_VOLATILE
) != 0;
5750 TYPE_RESTRICT (type
) = (type_quals
& TYPE_QUAL_RESTRICT
) != 0;
5751 TYPE_ATOMIC (type
) = (type_quals
& TYPE_QUAL_ATOMIC
) != 0;
5752 TYPE_ADDR_SPACE (type
) = DECODE_QUAL_ADDR_SPACE (type_quals
);
5755 /* Returns true iff CAND and BASE have equivalent language-specific
5759 check_lang_type (const_tree cand
, const_tree base
)
5761 if (lang_hooks
.types
.type_hash_eq
== NULL
)
5763 /* type_hash_eq currently only applies to these types. */
5764 if (TREE_CODE (cand
) != FUNCTION_TYPE
5765 && TREE_CODE (cand
) != METHOD_TYPE
)
5767 return lang_hooks
.types
.type_hash_eq (cand
, base
);
5770 /* Returns true iff unqualified CAND and BASE are equivalent. */
5773 check_base_type (const_tree cand
, const_tree base
)
5775 return (TYPE_NAME (cand
) == TYPE_NAME (base
)
5776 /* Apparently this is needed for Objective-C. */
5777 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
5778 /* Check alignment. */
5779 && TYPE_ALIGN (cand
) == TYPE_ALIGN (base
)
5780 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
5781 TYPE_ATTRIBUTES (base
)));
5784 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
5787 check_qualified_type (const_tree cand
, const_tree base
, int type_quals
)
5789 return (TYPE_QUALS (cand
) == type_quals
5790 && check_base_type (cand
, base
)
5791 && check_lang_type (cand
, base
));
5794 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
5797 check_aligned_type (const_tree cand
, const_tree base
, unsigned int align
)
5799 return (TYPE_QUALS (cand
) == TYPE_QUALS (base
)
5800 && TYPE_NAME (cand
) == TYPE_NAME (base
)
5801 /* Apparently this is needed for Objective-C. */
5802 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
5803 /* Check alignment. */
5804 && TYPE_ALIGN (cand
) == align
5805 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
5806 TYPE_ATTRIBUTES (base
))
5807 && check_lang_type (cand
, base
));
5810 /* This function checks to see if TYPE matches the size one of the built-in
5811 atomic types, and returns that core atomic type. */
5814 find_atomic_core_type (tree type
)
5816 tree base_atomic_type
;
5818 /* Only handle complete types. */
5819 if (!tree_fits_uhwi_p (TYPE_SIZE (type
)))
5822 switch (tree_to_uhwi (TYPE_SIZE (type
)))
5825 base_atomic_type
= atomicQI_type_node
;
5829 base_atomic_type
= atomicHI_type_node
;
5833 base_atomic_type
= atomicSI_type_node
;
5837 base_atomic_type
= atomicDI_type_node
;
5841 base_atomic_type
= atomicTI_type_node
;
5845 base_atomic_type
= NULL_TREE
;
5848 return base_atomic_type
;
5851 /* Return a version of the TYPE, qualified as indicated by the
5852 TYPE_QUALS, if one exists. If no qualified version exists yet,
5853 return NULL_TREE. */
5856 get_qualified_type (tree type
, int type_quals
)
5860 if (TYPE_QUALS (type
) == type_quals
)
5863 /* Search the chain of variants to see if there is already one there just
5864 like the one we need to have. If so, use that existing one. We must
5865 preserve the TYPE_NAME, since there is code that depends on this. */
5866 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
5867 if (check_qualified_type (t
, type
, type_quals
))
5873 /* Like get_qualified_type, but creates the type if it does not
5874 exist. This function never returns NULL_TREE. */
5877 build_qualified_type (tree type
, int type_quals MEM_STAT_DECL
)
5881 /* See if we already have the appropriate qualified variant. */
5882 t
= get_qualified_type (type
, type_quals
);
5884 /* If not, build it. */
5887 t
= build_variant_type_copy (type PASS_MEM_STAT
);
5888 set_type_quals (t
, type_quals
);
5890 if (((type_quals
& TYPE_QUAL_ATOMIC
) == TYPE_QUAL_ATOMIC
))
5892 /* See if this object can map to a basic atomic type. */
5893 tree atomic_type
= find_atomic_core_type (type
);
5896 /* Ensure the alignment of this type is compatible with
5897 the required alignment of the atomic type. */
5898 if (TYPE_ALIGN (atomic_type
) > TYPE_ALIGN (t
))
5899 SET_TYPE_ALIGN (t
, TYPE_ALIGN (atomic_type
));
5903 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
5904 /* Propagate structural equality. */
5905 SET_TYPE_STRUCTURAL_EQUALITY (t
);
5906 else if (TYPE_CANONICAL (type
) != type
)
5907 /* Build the underlying canonical type, since it is different
5910 tree c
= build_qualified_type (TYPE_CANONICAL (type
), type_quals
);
5911 TYPE_CANONICAL (t
) = TYPE_CANONICAL (c
);
5914 /* T is its own canonical type. */
5915 TYPE_CANONICAL (t
) = t
;
5922 /* Create a variant of type T with alignment ALIGN. */
5925 build_aligned_type (tree type
, unsigned int align
)
5929 if (TYPE_PACKED (type
)
5930 || TYPE_ALIGN (type
) == align
)
5933 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
5934 if (check_aligned_type (t
, type
, align
))
5937 t
= build_variant_type_copy (type
);
5938 SET_TYPE_ALIGN (t
, align
);
5939 TYPE_USER_ALIGN (t
) = 1;
5944 /* Create a new distinct copy of TYPE. The new type is made its own
5945 MAIN_VARIANT. If TYPE requires structural equality checks, the
5946 resulting type requires structural equality checks; otherwise, its
5947 TYPE_CANONICAL points to itself. */
5950 build_distinct_type_copy (tree type MEM_STAT_DECL
)
5952 tree t
= copy_node (type PASS_MEM_STAT
);
5954 TYPE_POINTER_TO (t
) = 0;
5955 TYPE_REFERENCE_TO (t
) = 0;
5957 /* Set the canonical type either to a new equivalence class, or
5958 propagate the need for structural equality checks. */
5959 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
5960 SET_TYPE_STRUCTURAL_EQUALITY (t
);
5962 TYPE_CANONICAL (t
) = t
;
5964 /* Make it its own variant. */
5965 TYPE_MAIN_VARIANT (t
) = t
;
5966 TYPE_NEXT_VARIANT (t
) = 0;
5968 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
5969 whose TREE_TYPE is not t. This can also happen in the Ada
5970 frontend when using subtypes. */
5975 /* Create a new variant of TYPE, equivalent but distinct. This is so
5976 the caller can modify it. TYPE_CANONICAL for the return type will
5977 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
5978 are considered equal by the language itself (or that both types
5979 require structural equality checks). */
5982 build_variant_type_copy (tree type MEM_STAT_DECL
)
5984 tree t
, m
= TYPE_MAIN_VARIANT (type
);
5986 t
= build_distinct_type_copy (type PASS_MEM_STAT
);
5988 /* Since we're building a variant, assume that it is a non-semantic
5989 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
5990 TYPE_CANONICAL (t
) = TYPE_CANONICAL (type
);
5991 /* Type variants have no alias set defined. */
5992 TYPE_ALIAS_SET (t
) = -1;
5994 /* Add the new type to the chain of variants of TYPE. */
5995 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (m
);
5996 TYPE_NEXT_VARIANT (m
) = t
;
5997 TYPE_MAIN_VARIANT (t
) = m
;
6002 /* Return true if the from tree in both tree maps are equal. */
6005 tree_map_base_eq (const void *va
, const void *vb
)
6007 const struct tree_map_base
*const a
= (const struct tree_map_base
*) va
,
6008 *const b
= (const struct tree_map_base
*) vb
;
6009 return (a
->from
== b
->from
);
6012 /* Hash a from tree in a tree_base_map. */
6015 tree_map_base_hash (const void *item
)
6017 return htab_hash_pointer (((const struct tree_map_base
*)item
)->from
);
6020 /* Return true if this tree map structure is marked for garbage collection
6021 purposes. We simply return true if the from tree is marked, so that this
6022 structure goes away when the from tree goes away. */
6025 tree_map_base_marked_p (const void *p
)
6027 return ggc_marked_p (((const struct tree_map_base
*) p
)->from
);
6030 /* Hash a from tree in a tree_map. */
6033 tree_map_hash (const void *item
)
6035 return (((const struct tree_map
*) item
)->hash
);
6038 /* Hash a from tree in a tree_decl_map. */
6041 tree_decl_map_hash (const void *item
)
6043 return DECL_UID (((const struct tree_decl_map
*) item
)->base
.from
);
6046 /* Return the initialization priority for DECL. */
6049 decl_init_priority_lookup (tree decl
)
6051 symtab_node
*snode
= symtab_node::get (decl
);
6054 return DEFAULT_INIT_PRIORITY
;
6056 snode
->get_init_priority ();
6059 /* Return the finalization priority for DECL. */
6062 decl_fini_priority_lookup (tree decl
)
6064 cgraph_node
*node
= cgraph_node::get (decl
);
6067 return DEFAULT_INIT_PRIORITY
;
6069 node
->get_fini_priority ();
6072 /* Set the initialization priority for DECL to PRIORITY. */
6075 decl_init_priority_insert (tree decl
, priority_type priority
)
6077 struct symtab_node
*snode
;
6079 if (priority
== DEFAULT_INIT_PRIORITY
)
6081 snode
= symtab_node::get (decl
);
6085 else if (VAR_P (decl
))
6086 snode
= varpool_node::get_create (decl
);
6088 snode
= cgraph_node::get_create (decl
);
6089 snode
->set_init_priority (priority
);
6092 /* Set the finalization priority for DECL to PRIORITY. */
6095 decl_fini_priority_insert (tree decl
, priority_type priority
)
6097 struct cgraph_node
*node
;
6099 if (priority
== DEFAULT_INIT_PRIORITY
)
6101 node
= cgraph_node::get (decl
);
6106 node
= cgraph_node::get_create (decl
);
6107 node
->set_fini_priority (priority
);
6110 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6113 print_debug_expr_statistics (void)
6115 fprintf (stderr
, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6116 (long) debug_expr_for_decl
->size (),
6117 (long) debug_expr_for_decl
->elements (),
6118 debug_expr_for_decl
->collisions ());
6121 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6124 print_value_expr_statistics (void)
6126 fprintf (stderr
, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6127 (long) value_expr_for_decl
->size (),
6128 (long) value_expr_for_decl
->elements (),
6129 value_expr_for_decl
->collisions ());
6132 /* Lookup a debug expression for FROM, and return it if we find one. */
6135 decl_debug_expr_lookup (tree from
)
6137 struct tree_decl_map
*h
, in
;
6138 in
.base
.from
= from
;
6140 h
= debug_expr_for_decl
->find_with_hash (&in
, DECL_UID (from
));
6146 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6149 decl_debug_expr_insert (tree from
, tree to
)
6151 struct tree_decl_map
*h
;
6153 h
= ggc_alloc
<tree_decl_map
> ();
6154 h
->base
.from
= from
;
6156 *debug_expr_for_decl
->find_slot_with_hash (h
, DECL_UID (from
), INSERT
) = h
;
6159 /* Lookup a value expression for FROM, and return it if we find one. */
6162 decl_value_expr_lookup (tree from
)
6164 struct tree_decl_map
*h
, in
;
6165 in
.base
.from
= from
;
6167 h
= value_expr_for_decl
->find_with_hash (&in
, DECL_UID (from
));
6173 /* Insert a mapping FROM->TO in the value expression hashtable. */
6176 decl_value_expr_insert (tree from
, tree to
)
6178 struct tree_decl_map
*h
;
6180 h
= ggc_alloc
<tree_decl_map
> ();
6181 h
->base
.from
= from
;
6183 *value_expr_for_decl
->find_slot_with_hash (h
, DECL_UID (from
), INSERT
) = h
;
6186 /* Lookup a vector of debug arguments for FROM, and return it if we
6190 decl_debug_args_lookup (tree from
)
6192 struct tree_vec_map
*h
, in
;
6194 if (!DECL_HAS_DEBUG_ARGS_P (from
))
6196 gcc_checking_assert (debug_args_for_decl
!= NULL
);
6197 in
.base
.from
= from
;
6198 h
= debug_args_for_decl
->find_with_hash (&in
, DECL_UID (from
));
6204 /* Insert a mapping FROM->empty vector of debug arguments in the value
6205 expression hashtable. */
6208 decl_debug_args_insert (tree from
)
6210 struct tree_vec_map
*h
;
6213 if (DECL_HAS_DEBUG_ARGS_P (from
))
6214 return decl_debug_args_lookup (from
);
6215 if (debug_args_for_decl
== NULL
)
6216 debug_args_for_decl
= hash_table
<tree_vec_map_cache_hasher
>::create_ggc (64);
6217 h
= ggc_alloc
<tree_vec_map
> ();
6218 h
->base
.from
= from
;
6220 loc
= debug_args_for_decl
->find_slot_with_hash (h
, DECL_UID (from
), INSERT
);
6222 DECL_HAS_DEBUG_ARGS_P (from
) = 1;
6226 /* Hashing of types so that we don't make duplicates.
6227 The entry point is `type_hash_canon'. */
6229 /* Generate the default hash code for TYPE. This is designed for
6230 speed, rather than maximum entropy. */
6233 type_hash_canon_hash (tree type
)
6235 inchash::hash hstate
;
6237 hstate
.add_int (TREE_CODE (type
));
6239 if (TREE_TYPE (type
))
6240 hstate
.add_object (TYPE_HASH (TREE_TYPE (type
)));
6242 for (tree t
= TYPE_ATTRIBUTES (type
); t
; t
= TREE_CHAIN (t
))
6243 /* Just the identifier is adequate to distinguish. */
6244 hstate
.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (t
)));
6246 switch (TREE_CODE (type
))
6249 hstate
.add_object (TYPE_HASH (TYPE_METHOD_BASETYPE (type
)));
6252 for (tree t
= TYPE_ARG_TYPES (type
); t
; t
= TREE_CHAIN (t
))
6253 if (TREE_VALUE (t
) != error_mark_node
)
6254 hstate
.add_object (TYPE_HASH (TREE_VALUE (t
)));
6258 hstate
.add_object (TYPE_HASH (TYPE_OFFSET_BASETYPE (type
)));
6263 if (TYPE_DOMAIN (type
))
6264 hstate
.add_object (TYPE_HASH (TYPE_DOMAIN (type
)));
6265 if (!AGGREGATE_TYPE_P (TREE_TYPE (type
)))
6267 unsigned typeless
= TYPE_TYPELESS_STORAGE (type
);
6268 hstate
.add_object (typeless
);
6275 tree t
= TYPE_MAX_VALUE (type
);
6277 t
= TYPE_MIN_VALUE (type
);
6278 for (int i
= 0; i
< TREE_INT_CST_NUNITS (t
); i
++)
6279 hstate
.add_object (TREE_INT_CST_ELT (t
, i
));
6284 case FIXED_POINT_TYPE
:
6286 unsigned prec
= TYPE_PRECISION (type
);
6287 hstate
.add_object (prec
);
6293 unsigned nunits
= TYPE_VECTOR_SUBPARTS (type
);
6294 hstate
.add_object (nunits
);
6302 return hstate
.end ();
6305 /* These are the Hashtable callback functions. */
6307 /* Returns true iff the types are equivalent. */
6310 type_cache_hasher::equal (type_hash
*a
, type_hash
*b
)
6312 /* First test the things that are the same for all types. */
6313 if (a
->hash
!= b
->hash
6314 || TREE_CODE (a
->type
) != TREE_CODE (b
->type
)
6315 || TREE_TYPE (a
->type
) != TREE_TYPE (b
->type
)
6316 || !attribute_list_equal (TYPE_ATTRIBUTES (a
->type
),
6317 TYPE_ATTRIBUTES (b
->type
))
6318 || (TREE_CODE (a
->type
) != COMPLEX_TYPE
6319 && TYPE_NAME (a
->type
) != TYPE_NAME (b
->type
)))
6322 /* Be careful about comparing arrays before and after the element type
6323 has been completed; don't compare TYPE_ALIGN unless both types are
6325 if (COMPLETE_TYPE_P (a
->type
) && COMPLETE_TYPE_P (b
->type
)
6326 && (TYPE_ALIGN (a
->type
) != TYPE_ALIGN (b
->type
)
6327 || TYPE_MODE (a
->type
) != TYPE_MODE (b
->type
)))
6330 switch (TREE_CODE (a
->type
))
6335 case REFERENCE_TYPE
:
6340 return TYPE_VECTOR_SUBPARTS (a
->type
) == TYPE_VECTOR_SUBPARTS (b
->type
);
6343 if (TYPE_VALUES (a
->type
) != TYPE_VALUES (b
->type
)
6344 && !(TYPE_VALUES (a
->type
)
6345 && TREE_CODE (TYPE_VALUES (a
->type
)) == TREE_LIST
6346 && TYPE_VALUES (b
->type
)
6347 && TREE_CODE (TYPE_VALUES (b
->type
)) == TREE_LIST
6348 && type_list_equal (TYPE_VALUES (a
->type
),
6349 TYPE_VALUES (b
->type
))))
6357 if (TYPE_PRECISION (a
->type
) != TYPE_PRECISION (b
->type
))
6359 return ((TYPE_MAX_VALUE (a
->type
) == TYPE_MAX_VALUE (b
->type
)
6360 || tree_int_cst_equal (TYPE_MAX_VALUE (a
->type
),
6361 TYPE_MAX_VALUE (b
->type
)))
6362 && (TYPE_MIN_VALUE (a
->type
) == TYPE_MIN_VALUE (b
->type
)
6363 || tree_int_cst_equal (TYPE_MIN_VALUE (a
->type
),
6364 TYPE_MIN_VALUE (b
->type
))));
6366 case FIXED_POINT_TYPE
:
6367 return TYPE_SATURATING (a
->type
) == TYPE_SATURATING (b
->type
);
6370 return TYPE_OFFSET_BASETYPE (a
->type
) == TYPE_OFFSET_BASETYPE (b
->type
);
6373 if (TYPE_METHOD_BASETYPE (a
->type
) == TYPE_METHOD_BASETYPE (b
->type
)
6374 && (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6375 || (TYPE_ARG_TYPES (a
->type
)
6376 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6377 && TYPE_ARG_TYPES (b
->type
)
6378 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6379 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6380 TYPE_ARG_TYPES (b
->type
)))))
6384 /* Don't compare TYPE_TYPELESS_STORAGE flag on aggregates,
6385 where the flag should be inherited from the element type
6386 and can change after ARRAY_TYPEs are created; on non-aggregates
6387 compare it and hash it, scalars will never have that flag set
6388 and we need to differentiate between arrays created by different
6389 front-ends or middle-end created arrays. */
6390 return (TYPE_DOMAIN (a
->type
) == TYPE_DOMAIN (b
->type
)
6391 && (AGGREGATE_TYPE_P (TREE_TYPE (a
->type
))
6392 || (TYPE_TYPELESS_STORAGE (a
->type
)
6393 == TYPE_TYPELESS_STORAGE (b
->type
))));
6397 case QUAL_UNION_TYPE
:
6398 return (TYPE_FIELDS (a
->type
) == TYPE_FIELDS (b
->type
)
6399 || (TYPE_FIELDS (a
->type
)
6400 && TREE_CODE (TYPE_FIELDS (a
->type
)) == TREE_LIST
6401 && TYPE_FIELDS (b
->type
)
6402 && TREE_CODE (TYPE_FIELDS (b
->type
)) == TREE_LIST
6403 && type_list_equal (TYPE_FIELDS (a
->type
),
6404 TYPE_FIELDS (b
->type
))));
6407 if (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6408 || (TYPE_ARG_TYPES (a
->type
)
6409 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6410 && TYPE_ARG_TYPES (b
->type
)
6411 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6412 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6413 TYPE_ARG_TYPES (b
->type
))))
6421 if (lang_hooks
.types
.type_hash_eq
!= NULL
)
6422 return lang_hooks
.types
.type_hash_eq (a
->type
, b
->type
);
6427 /* Given TYPE, and HASHCODE its hash code, return the canonical
6428 object for an identical type if one already exists.
6429 Otherwise, return TYPE, and record it as the canonical object.
6431 To use this function, first create a type of the sort you want.
6432 Then compute its hash code from the fields of the type that
6433 make it different from other similar types.
6434 Then call this function and use the value. */
6437 type_hash_canon (unsigned int hashcode
, tree type
)
6442 /* The hash table only contains main variants, so ensure that's what we're
6444 gcc_assert (TYPE_MAIN_VARIANT (type
) == type
);
6446 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6447 must call that routine before comparing TYPE_ALIGNs. */
6453 loc
= type_hash_table
->find_slot_with_hash (&in
, hashcode
, INSERT
);
6456 tree t1
= ((type_hash
*) *loc
)->type
;
6457 gcc_assert (TYPE_MAIN_VARIANT (t1
) == t1
);
6458 if (TYPE_UID (type
) + 1 == next_type_uid
)
6460 /* Free also min/max values and the cache for integer
6461 types. This can't be done in free_node, as LTO frees
6462 those on its own. */
6463 if (TREE_CODE (type
) == INTEGER_TYPE
)
6465 if (TYPE_MIN_VALUE (type
)
6466 && TREE_TYPE (TYPE_MIN_VALUE (type
)) == type
)
6468 /* Zero is always in TYPE_CACHED_VALUES. */
6469 if (! TYPE_UNSIGNED (type
))
6470 int_cst_hash_table
->remove_elt (TYPE_MIN_VALUE (type
));
6471 ggc_free (TYPE_MIN_VALUE (type
));
6473 if (TYPE_MAX_VALUE (type
)
6474 && TREE_TYPE (TYPE_MAX_VALUE (type
)) == type
)
6476 int_cst_hash_table
->remove_elt (TYPE_MAX_VALUE (type
));
6477 ggc_free (TYPE_MAX_VALUE (type
));
6479 if (TYPE_CACHED_VALUES_P (type
))
6480 ggc_free (TYPE_CACHED_VALUES (type
));
6487 struct type_hash
*h
;
6489 h
= ggc_alloc
<type_hash
> ();
6499 print_type_hash_statistics (void)
6501 fprintf (stderr
, "Type hash: size %ld, %ld elements, %f collisions\n",
6502 (long) type_hash_table
->size (),
6503 (long) type_hash_table
->elements (),
6504 type_hash_table
->collisions ());
6507 /* Given two lists of types
6508 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6509 return 1 if the lists contain the same types in the same order.
6510 Also, the TREE_PURPOSEs must match. */
6513 type_list_equal (const_tree l1
, const_tree l2
)
6517 for (t1
= l1
, t2
= l2
; t1
&& t2
; t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
6518 if (TREE_VALUE (t1
) != TREE_VALUE (t2
)
6519 || (TREE_PURPOSE (t1
) != TREE_PURPOSE (t2
)
6520 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1
), TREE_PURPOSE (t2
))
6521 && (TREE_TYPE (TREE_PURPOSE (t1
))
6522 == TREE_TYPE (TREE_PURPOSE (t2
))))))
6528 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6529 given by TYPE. If the argument list accepts variable arguments,
6530 then this function counts only the ordinary arguments. */
6533 type_num_arguments (const_tree type
)
6538 for (t
= TYPE_ARG_TYPES (type
); t
; t
= TREE_CHAIN (t
))
6539 /* If the function does not take a variable number of arguments,
6540 the last element in the list will have type `void'. */
6541 if (VOID_TYPE_P (TREE_VALUE (t
)))
6549 /* Nonzero if integer constants T1 and T2
6550 represent the same constant value. */
6553 tree_int_cst_equal (const_tree t1
, const_tree t2
)
6558 if (t1
== 0 || t2
== 0)
6561 if (TREE_CODE (t1
) == INTEGER_CST
6562 && TREE_CODE (t2
) == INTEGER_CST
6563 && wi::to_widest (t1
) == wi::to_widest (t2
))
6569 /* Return true if T is an INTEGER_CST whose numerical value (extended
6570 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
6573 tree_fits_shwi_p (const_tree t
)
6575 return (t
!= NULL_TREE
6576 && TREE_CODE (t
) == INTEGER_CST
6577 && wi::fits_shwi_p (wi::to_widest (t
)));
6580 /* Return true if T is an INTEGER_CST whose numerical value (extended
6581 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
6584 tree_fits_uhwi_p (const_tree t
)
6586 return (t
!= NULL_TREE
6587 && TREE_CODE (t
) == INTEGER_CST
6588 && wi::fits_uhwi_p (wi::to_widest (t
)));
6591 /* T is an INTEGER_CST whose numerical value (extended according to
6592 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
6596 tree_to_shwi (const_tree t
)
6598 gcc_assert (tree_fits_shwi_p (t
));
6599 return TREE_INT_CST_LOW (t
);
6602 /* T is an INTEGER_CST whose numerical value (extended according to
6603 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
6606 unsigned HOST_WIDE_INT
6607 tree_to_uhwi (const_tree t
)
6609 gcc_assert (tree_fits_uhwi_p (t
));
6610 return TREE_INT_CST_LOW (t
);
6613 /* Return the most significant (sign) bit of T. */
6616 tree_int_cst_sign_bit (const_tree t
)
6618 unsigned bitno
= TYPE_PRECISION (TREE_TYPE (t
)) - 1;
6620 return wi::extract_uhwi (wi::to_wide (t
), bitno
, 1);
6623 /* Return an indication of the sign of the integer constant T.
6624 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6625 Note that -1 will never be returned if T's type is unsigned. */
6628 tree_int_cst_sgn (const_tree t
)
6630 if (wi::to_wide (t
) == 0)
6632 else if (TYPE_UNSIGNED (TREE_TYPE (t
)))
6634 else if (wi::neg_p (wi::to_wide (t
)))
6640 /* Return the minimum number of bits needed to represent VALUE in a
6641 signed or unsigned type, UNSIGNEDP says which. */
6644 tree_int_cst_min_precision (tree value
, signop sgn
)
6646 /* If the value is negative, compute its negative minus 1. The latter
6647 adjustment is because the absolute value of the largest negative value
6648 is one larger than the largest positive value. This is equivalent to
6649 a bit-wise negation, so use that operation instead. */
6651 if (tree_int_cst_sgn (value
) < 0)
6652 value
= fold_build1 (BIT_NOT_EXPR
, TREE_TYPE (value
), value
);
6654 /* Return the number of bits needed, taking into account the fact
6655 that we need one more bit for a signed than unsigned type.
6656 If value is 0 or -1, the minimum precision is 1 no matter
6657 whether unsignedp is true or false. */
6659 if (integer_zerop (value
))
6662 return tree_floor_log2 (value
) + 1 + (sgn
== SIGNED
? 1 : 0) ;
6665 /* Return truthvalue of whether T1 is the same tree structure as T2.
6666 Return 1 if they are the same.
6667 Return 0 if they are understandably different.
6668 Return -1 if either contains tree structure not understood by
6672 simple_cst_equal (const_tree t1
, const_tree t2
)
6674 enum tree_code code1
, code2
;
6680 if (t1
== 0 || t2
== 0)
6683 code1
= TREE_CODE (t1
);
6684 code2
= TREE_CODE (t2
);
6686 if (CONVERT_EXPR_CODE_P (code1
) || code1
== NON_LVALUE_EXPR
)
6688 if (CONVERT_EXPR_CODE_P (code2
)
6689 || code2
== NON_LVALUE_EXPR
)
6690 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6692 return simple_cst_equal (TREE_OPERAND (t1
, 0), t2
);
6695 else if (CONVERT_EXPR_CODE_P (code2
)
6696 || code2
== NON_LVALUE_EXPR
)
6697 return simple_cst_equal (t1
, TREE_OPERAND (t2
, 0));
6705 return wi::to_widest (t1
) == wi::to_widest (t2
);
6708 return real_identical (&TREE_REAL_CST (t1
), &TREE_REAL_CST (t2
));
6711 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
6714 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
6715 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
6716 TREE_STRING_LENGTH (t1
)));
6720 unsigned HOST_WIDE_INT idx
;
6721 vec
<constructor_elt
, va_gc
> *v1
= CONSTRUCTOR_ELTS (t1
);
6722 vec
<constructor_elt
, va_gc
> *v2
= CONSTRUCTOR_ELTS (t2
);
6724 if (vec_safe_length (v1
) != vec_safe_length (v2
))
6727 for (idx
= 0; idx
< vec_safe_length (v1
); ++idx
)
6728 /* ??? Should we handle also fields here? */
6729 if (!simple_cst_equal ((*v1
)[idx
].value
, (*v2
)[idx
].value
))
6735 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6738 cmp
= simple_cst_equal (CALL_EXPR_FN (t1
), CALL_EXPR_FN (t2
));
6741 if (call_expr_nargs (t1
) != call_expr_nargs (t2
))
6744 const_tree arg1
, arg2
;
6745 const_call_expr_arg_iterator iter1
, iter2
;
6746 for (arg1
= first_const_call_expr_arg (t1
, &iter1
),
6747 arg2
= first_const_call_expr_arg (t2
, &iter2
);
6749 arg1
= next_const_call_expr_arg (&iter1
),
6750 arg2
= next_const_call_expr_arg (&iter2
))
6752 cmp
= simple_cst_equal (arg1
, arg2
);
6756 return arg1
== arg2
;
6760 /* Special case: if either target is an unallocated VAR_DECL,
6761 it means that it's going to be unified with whatever the
6762 TARGET_EXPR is really supposed to initialize, so treat it
6763 as being equivalent to anything. */
6764 if ((TREE_CODE (TREE_OPERAND (t1
, 0)) == VAR_DECL
6765 && DECL_NAME (TREE_OPERAND (t1
, 0)) == NULL_TREE
6766 && !DECL_RTL_SET_P (TREE_OPERAND (t1
, 0)))
6767 || (TREE_CODE (TREE_OPERAND (t2
, 0)) == VAR_DECL
6768 && DECL_NAME (TREE_OPERAND (t2
, 0)) == NULL_TREE
6769 && !DECL_RTL_SET_P (TREE_OPERAND (t2
, 0))))
6772 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6777 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
6779 case WITH_CLEANUP_EXPR
:
6780 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6784 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t1
, 1));
6787 if (TREE_OPERAND (t1
, 1) == TREE_OPERAND (t2
, 1))
6788 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6802 /* This general rule works for most tree codes. All exceptions should be
6803 handled above. If this is a language-specific tree code, we can't
6804 trust what might be in the operand, so say we don't know
6806 if ((int) code1
>= (int) LAST_AND_UNUSED_TREE_CODE
)
6809 switch (TREE_CODE_CLASS (code1
))
6813 case tcc_comparison
:
6814 case tcc_expression
:
6818 for (i
= 0; i
< TREE_CODE_LENGTH (code1
); i
++)
6820 cmp
= simple_cst_equal (TREE_OPERAND (t1
, i
), TREE_OPERAND (t2
, i
));
6832 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
6833 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
6834 than U, respectively. */
6837 compare_tree_int (const_tree t
, unsigned HOST_WIDE_INT u
)
6839 if (tree_int_cst_sgn (t
) < 0)
6841 else if (!tree_fits_uhwi_p (t
))
6843 else if (TREE_INT_CST_LOW (t
) == u
)
6845 else if (TREE_INT_CST_LOW (t
) < u
)
6851 /* Return true if SIZE represents a constant size that is in bounds of
6852 what the middle-end and the backend accepts (covering not more than
6853 half of the address-space). */
6856 valid_constant_size_p (const_tree size
)
6858 if (! tree_fits_uhwi_p (size
)
6859 || TREE_OVERFLOW (size
)
6860 || tree_int_cst_sign_bit (size
) != 0)
6865 /* Return the precision of the type, or for a complex or vector type the
6866 precision of the type of its elements. */
6869 element_precision (const_tree type
)
6872 type
= TREE_TYPE (type
);
6873 enum tree_code code
= TREE_CODE (type
);
6874 if (code
== COMPLEX_TYPE
|| code
== VECTOR_TYPE
)
6875 type
= TREE_TYPE (type
);
6877 return TYPE_PRECISION (type
);
6880 /* Return true if CODE represents an associative tree code. Otherwise
6883 associative_tree_code (enum tree_code code
)
6902 /* Return true if CODE represents a commutative tree code. Otherwise
6905 commutative_tree_code (enum tree_code code
)
6911 case MULT_HIGHPART_EXPR
:
6919 case UNORDERED_EXPR
:
6923 case TRUTH_AND_EXPR
:
6924 case TRUTH_XOR_EXPR
:
6926 case WIDEN_MULT_EXPR
:
6927 case VEC_WIDEN_MULT_HI_EXPR
:
6928 case VEC_WIDEN_MULT_LO_EXPR
:
6929 case VEC_WIDEN_MULT_EVEN_EXPR
:
6930 case VEC_WIDEN_MULT_ODD_EXPR
:
6939 /* Return true if CODE represents a ternary tree code for which the
6940 first two operands are commutative. Otherwise return false. */
6942 commutative_ternary_tree_code (enum tree_code code
)
6946 case WIDEN_MULT_PLUS_EXPR
:
6947 case WIDEN_MULT_MINUS_EXPR
:
6958 /* Returns true if CODE can overflow. */
6961 operation_can_overflow (enum tree_code code
)
6969 /* Can overflow in various ways. */
6971 case TRUNC_DIV_EXPR
:
6972 case EXACT_DIV_EXPR
:
6973 case FLOOR_DIV_EXPR
:
6975 /* For INT_MIN / -1. */
6982 /* These operators cannot overflow. */
6987 /* Returns true if CODE operating on operands of type TYPE doesn't overflow, or
6988 ftrapv doesn't generate trapping insns for CODE. */
6991 operation_no_trapping_overflow (tree type
, enum tree_code code
)
6993 gcc_checking_assert (ANY_INTEGRAL_TYPE_P (type
));
6995 /* We don't generate instructions that trap on overflow for complex or vector
6997 if (!INTEGRAL_TYPE_P (type
))
7000 if (!TYPE_OVERFLOW_TRAPS (type
))
7010 /* These operators can overflow, and -ftrapv generates trapping code for
7013 case TRUNC_DIV_EXPR
:
7014 case EXACT_DIV_EXPR
:
7015 case FLOOR_DIV_EXPR
:
7018 /* These operators can overflow, but -ftrapv does not generate trapping
7022 /* These operators cannot overflow. */
7030 /* Generate a hash value for an expression. This can be used iteratively
7031 by passing a previous result as the HSTATE argument.
7033 This function is intended to produce the same hash for expressions which
7034 would compare equal using operand_equal_p. */
7036 add_expr (const_tree t
, inchash::hash
&hstate
, unsigned int flags
)
7039 enum tree_code code
;
7040 enum tree_code_class tclass
;
7042 if (t
== NULL_TREE
|| t
== error_mark_node
)
7044 hstate
.merge_hash (0);
7048 if (!(flags
& OEP_ADDRESS_OF
))
7051 code
= TREE_CODE (t
);
7055 /* Alas, constants aren't shared, so we can't rely on pointer
7058 hstate
.merge_hash (0);
7061 gcc_checking_assert (!(flags
& OEP_ADDRESS_OF
));
7062 for (i
= 0; i
< TREE_INT_CST_EXT_NUNITS (t
); i
++)
7063 hstate
.add_hwi (TREE_INT_CST_ELT (t
, i
));
7068 if (!HONOR_SIGNED_ZEROS (t
) && real_zerop (t
))
7071 val2
= real_hash (TREE_REAL_CST_PTR (t
));
7072 hstate
.merge_hash (val2
);
7077 unsigned int val2
= fixed_hash (TREE_FIXED_CST_PTR (t
));
7078 hstate
.merge_hash (val2
);
7082 hstate
.add ((const void *) TREE_STRING_POINTER (t
),
7083 TREE_STRING_LENGTH (t
));
7086 inchash::add_expr (TREE_REALPART (t
), hstate
, flags
);
7087 inchash::add_expr (TREE_IMAGPART (t
), hstate
, flags
);
7091 hstate
.add_int (VECTOR_CST_NPATTERNS (t
));
7092 hstate
.add_int (VECTOR_CST_NELTS_PER_PATTERN (t
));
7093 unsigned int count
= vector_cst_encoded_nelts (t
);
7094 for (unsigned int i
= 0; i
< count
; ++i
)
7095 inchash::add_expr (VECTOR_CST_ENCODED_ELT (t
, i
), hstate
, flags
);
7099 /* We can just compare by pointer. */
7100 hstate
.add_hwi (SSA_NAME_VERSION (t
));
7102 case PLACEHOLDER_EXPR
:
7103 /* The node itself doesn't matter. */
7110 /* A list of expressions, for a CALL_EXPR or as the elements of a
7112 for (; t
; t
= TREE_CHAIN (t
))
7113 inchash::add_expr (TREE_VALUE (t
), hstate
, flags
);
7117 unsigned HOST_WIDE_INT idx
;
7119 flags
&= ~OEP_ADDRESS_OF
;
7120 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t
), idx
, field
, value
)
7122 inchash::add_expr (field
, hstate
, flags
);
7123 inchash::add_expr (value
, hstate
, flags
);
7127 case STATEMENT_LIST
:
7129 tree_stmt_iterator i
;
7130 for (i
= tsi_start (CONST_CAST_TREE (t
));
7131 !tsi_end_p (i
); tsi_next (&i
))
7132 inchash::add_expr (tsi_stmt (i
), hstate
, flags
);
7136 for (i
= 0; i
< TREE_VEC_LENGTH (t
); ++i
)
7137 inchash::add_expr (TREE_VEC_ELT (t
, i
), hstate
, flags
);
7140 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7141 Otherwise nodes that compare equal according to operand_equal_p might
7142 get different hash codes. However, don't do this for machine specific
7143 or front end builtins, since the function code is overloaded in those
7145 if (DECL_BUILT_IN_CLASS (t
) == BUILT_IN_NORMAL
7146 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t
)))
7148 t
= builtin_decl_explicit (DECL_FUNCTION_CODE (t
));
7149 code
= TREE_CODE (t
);
7153 tclass
= TREE_CODE_CLASS (code
);
7155 if (tclass
== tcc_declaration
)
7157 /* DECL's have a unique ID */
7158 hstate
.add_hwi (DECL_UID (t
));
7160 else if (tclass
== tcc_comparison
&& !commutative_tree_code (code
))
7162 /* For comparisons that can be swapped, use the lower
7164 enum tree_code ccode
= swap_tree_comparison (code
);
7167 hstate
.add_object (ccode
);
7168 inchash::add_expr (TREE_OPERAND (t
, ccode
!= code
), hstate
, flags
);
7169 inchash::add_expr (TREE_OPERAND (t
, ccode
== code
), hstate
, flags
);
7171 else if (CONVERT_EXPR_CODE_P (code
))
7173 /* NOP_EXPR and CONVERT_EXPR are considered equal by
7175 enum tree_code ccode
= NOP_EXPR
;
7176 hstate
.add_object (ccode
);
7178 /* Don't hash the type, that can lead to having nodes which
7179 compare equal according to operand_equal_p, but which
7180 have different hash codes. Make sure to include signedness
7181 in the hash computation. */
7182 hstate
.add_int (TYPE_UNSIGNED (TREE_TYPE (t
)));
7183 inchash::add_expr (TREE_OPERAND (t
, 0), hstate
, flags
);
7185 /* For OEP_ADDRESS_OF, hash MEM_EXPR[&decl, 0] the same as decl. */
7186 else if (code
== MEM_REF
7187 && (flags
& OEP_ADDRESS_OF
) != 0
7188 && TREE_CODE (TREE_OPERAND (t
, 0)) == ADDR_EXPR
7189 && DECL_P (TREE_OPERAND (TREE_OPERAND (t
, 0), 0))
7190 && integer_zerop (TREE_OPERAND (t
, 1)))
7191 inchash::add_expr (TREE_OPERAND (TREE_OPERAND (t
, 0), 0),
7193 /* Don't ICE on FE specific trees, or their arguments etc.
7194 during operand_equal_p hash verification. */
7195 else if (!IS_EXPR_CODE_CLASS (tclass
))
7196 gcc_assert (flags
& OEP_HASH_CHECK
);
7199 unsigned int sflags
= flags
;
7201 hstate
.add_object (code
);
7206 gcc_checking_assert (!(flags
& OEP_ADDRESS_OF
));
7207 flags
|= OEP_ADDRESS_OF
;
7213 case TARGET_MEM_REF
:
7214 flags
&= ~OEP_ADDRESS_OF
;
7219 case ARRAY_RANGE_REF
:
7222 sflags
&= ~OEP_ADDRESS_OF
;
7226 flags
&= ~OEP_ADDRESS_OF
;
7230 case WIDEN_MULT_PLUS_EXPR
:
7231 case WIDEN_MULT_MINUS_EXPR
:
7233 /* The multiplication operands are commutative. */
7234 inchash::hash one
, two
;
7235 inchash::add_expr (TREE_OPERAND (t
, 0), one
, flags
);
7236 inchash::add_expr (TREE_OPERAND (t
, 1), two
, flags
);
7237 hstate
.add_commutative (one
, two
);
7238 inchash::add_expr (TREE_OPERAND (t
, 2), two
, flags
);
7243 if (CALL_EXPR_FN (t
) == NULL_TREE
)
7244 hstate
.add_int (CALL_EXPR_IFN (t
));
7248 /* For TARGET_EXPR, just hash on the TARGET_EXPR_SLOT.
7249 Usually different TARGET_EXPRs just should use
7250 different temporaries in their slots. */
7251 inchash::add_expr (TARGET_EXPR_SLOT (t
), hstate
, flags
);
7258 /* Don't hash the type, that can lead to having nodes which
7259 compare equal according to operand_equal_p, but which
7260 have different hash codes. */
7261 if (code
== NON_LVALUE_EXPR
)
7263 /* Make sure to include signness in the hash computation. */
7264 hstate
.add_int (TYPE_UNSIGNED (TREE_TYPE (t
)));
7265 inchash::add_expr (TREE_OPERAND (t
, 0), hstate
, flags
);
7268 else if (commutative_tree_code (code
))
7270 /* It's a commutative expression. We want to hash it the same
7271 however it appears. We do this by first hashing both operands
7272 and then rehashing based on the order of their independent
7274 inchash::hash one
, two
;
7275 inchash::add_expr (TREE_OPERAND (t
, 0), one
, flags
);
7276 inchash::add_expr (TREE_OPERAND (t
, 1), two
, flags
);
7277 hstate
.add_commutative (one
, two
);
7280 for (i
= TREE_OPERAND_LENGTH (t
) - 1; i
>= 0; --i
)
7281 inchash::add_expr (TREE_OPERAND (t
, i
), hstate
,
7282 i
== 0 ? flags
: sflags
);
7290 /* Constructors for pointer, array and function types.
7291 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7292 constructed by language-dependent code, not here.) */
7294 /* Construct, lay out and return the type of pointers to TO_TYPE with
7295 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7296 reference all of memory. If such a type has already been
7297 constructed, reuse it. */
7300 build_pointer_type_for_mode (tree to_type
, machine_mode mode
,
7304 bool could_alias
= can_alias_all
;
7306 if (to_type
== error_mark_node
)
7307 return error_mark_node
;
7309 /* If the pointed-to type has the may_alias attribute set, force
7310 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7311 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7312 can_alias_all
= true;
7314 /* In some cases, languages will have things that aren't a POINTER_TYPE
7315 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7316 In that case, return that type without regard to the rest of our
7319 ??? This is a kludge, but consistent with the way this function has
7320 always operated and there doesn't seem to be a good way to avoid this
7322 if (TYPE_POINTER_TO (to_type
) != 0
7323 && TREE_CODE (TYPE_POINTER_TO (to_type
)) != POINTER_TYPE
)
7324 return TYPE_POINTER_TO (to_type
);
7326 /* First, if we already have a type for pointers to TO_TYPE and it's
7327 the proper mode, use it. */
7328 for (t
= TYPE_POINTER_TO (to_type
); t
; t
= TYPE_NEXT_PTR_TO (t
))
7329 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7332 t
= make_node (POINTER_TYPE
);
7334 TREE_TYPE (t
) = to_type
;
7335 SET_TYPE_MODE (t
, mode
);
7336 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7337 TYPE_NEXT_PTR_TO (t
) = TYPE_POINTER_TO (to_type
);
7338 TYPE_POINTER_TO (to_type
) = t
;
7340 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7341 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
) || in_lto_p
)
7342 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7343 else if (TYPE_CANONICAL (to_type
) != to_type
|| could_alias
)
7345 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type
),
7348 /* Lay out the type. This function has many callers that are concerned
7349 with expression-construction, and this simplifies them all. */
7355 /* By default build pointers in ptr_mode. */
7358 build_pointer_type (tree to_type
)
7360 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7361 : TYPE_ADDR_SPACE (to_type
);
7362 machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7363 return build_pointer_type_for_mode (to_type
, pointer_mode
, false);
7366 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7369 build_reference_type_for_mode (tree to_type
, machine_mode mode
,
7373 bool could_alias
= can_alias_all
;
7375 if (to_type
== error_mark_node
)
7376 return error_mark_node
;
7378 /* If the pointed-to type has the may_alias attribute set, force
7379 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7380 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7381 can_alias_all
= true;
7383 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7384 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7385 In that case, return that type without regard to the rest of our
7388 ??? This is a kludge, but consistent with the way this function has
7389 always operated and there doesn't seem to be a good way to avoid this
7391 if (TYPE_REFERENCE_TO (to_type
) != 0
7392 && TREE_CODE (TYPE_REFERENCE_TO (to_type
)) != REFERENCE_TYPE
)
7393 return TYPE_REFERENCE_TO (to_type
);
7395 /* First, if we already have a type for pointers to TO_TYPE and it's
7396 the proper mode, use it. */
7397 for (t
= TYPE_REFERENCE_TO (to_type
); t
; t
= TYPE_NEXT_REF_TO (t
))
7398 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7401 t
= make_node (REFERENCE_TYPE
);
7403 TREE_TYPE (t
) = to_type
;
7404 SET_TYPE_MODE (t
, mode
);
7405 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7406 TYPE_NEXT_REF_TO (t
) = TYPE_REFERENCE_TO (to_type
);
7407 TYPE_REFERENCE_TO (to_type
) = t
;
7409 /* During LTO we do not set TYPE_CANONICAL of pointers and references. */
7410 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
) || in_lto_p
)
7411 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7412 else if (TYPE_CANONICAL (to_type
) != to_type
|| could_alias
)
7414 = build_reference_type_for_mode (TYPE_CANONICAL (to_type
),
7423 /* Build the node for the type of references-to-TO_TYPE by default
7427 build_reference_type (tree to_type
)
7429 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7430 : TYPE_ADDR_SPACE (to_type
);
7431 machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7432 return build_reference_type_for_mode (to_type
, pointer_mode
, false);
7435 #define MAX_INT_CACHED_PREC \
7436 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7437 static GTY(()) tree nonstandard_integer_type_cache
[2 * MAX_INT_CACHED_PREC
+ 2];
7439 /* Builds a signed or unsigned integer type of precision PRECISION.
7440 Used for C bitfields whose precision does not match that of
7441 built-in target types. */
7443 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision
,
7449 unsignedp
= MAX_INT_CACHED_PREC
+ 1;
7451 if (precision
<= MAX_INT_CACHED_PREC
)
7453 itype
= nonstandard_integer_type_cache
[precision
+ unsignedp
];
7458 itype
= make_node (INTEGER_TYPE
);
7459 TYPE_PRECISION (itype
) = precision
;
7462 fixup_unsigned_type (itype
);
7464 fixup_signed_type (itype
);
7468 inchash::hash hstate
;
7469 inchash::add_expr (TYPE_MAX_VALUE (itype
), hstate
);
7470 ret
= type_hash_canon (hstate
.end (), itype
);
7471 if (precision
<= MAX_INT_CACHED_PREC
)
7472 nonstandard_integer_type_cache
[precision
+ unsignedp
] = ret
;
7477 #define MAX_BOOL_CACHED_PREC \
7478 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7479 static GTY(()) tree nonstandard_boolean_type_cache
[MAX_BOOL_CACHED_PREC
+ 1];
7481 /* Builds a boolean type of precision PRECISION.
7482 Used for boolean vectors to choose proper vector element size. */
7484 build_nonstandard_boolean_type (unsigned HOST_WIDE_INT precision
)
7488 if (precision
<= MAX_BOOL_CACHED_PREC
)
7490 type
= nonstandard_boolean_type_cache
[precision
];
7495 type
= make_node (BOOLEAN_TYPE
);
7496 TYPE_PRECISION (type
) = precision
;
7497 fixup_signed_type (type
);
7499 if (precision
<= MAX_INT_CACHED_PREC
)
7500 nonstandard_boolean_type_cache
[precision
] = type
;
7505 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7506 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7507 is true, reuse such a type that has already been constructed. */
7510 build_range_type_1 (tree type
, tree lowval
, tree highval
, bool shared
)
7512 tree itype
= make_node (INTEGER_TYPE
);
7514 TREE_TYPE (itype
) = type
;
7516 TYPE_MIN_VALUE (itype
) = fold_convert (type
, lowval
);
7517 TYPE_MAX_VALUE (itype
) = highval
? fold_convert (type
, highval
) : NULL
;
7519 TYPE_PRECISION (itype
) = TYPE_PRECISION (type
);
7520 SET_TYPE_MODE (itype
, TYPE_MODE (type
));
7521 TYPE_SIZE (itype
) = TYPE_SIZE (type
);
7522 TYPE_SIZE_UNIT (itype
) = TYPE_SIZE_UNIT (type
);
7523 SET_TYPE_ALIGN (itype
, TYPE_ALIGN (type
));
7524 TYPE_USER_ALIGN (itype
) = TYPE_USER_ALIGN (type
);
7525 SET_TYPE_WARN_IF_NOT_ALIGN (itype
, TYPE_WARN_IF_NOT_ALIGN (type
));
7530 if ((TYPE_MIN_VALUE (itype
)
7531 && TREE_CODE (TYPE_MIN_VALUE (itype
)) != INTEGER_CST
)
7532 || (TYPE_MAX_VALUE (itype
)
7533 && TREE_CODE (TYPE_MAX_VALUE (itype
)) != INTEGER_CST
))
7535 /* Since we cannot reliably merge this type, we need to compare it using
7536 structural equality checks. */
7537 SET_TYPE_STRUCTURAL_EQUALITY (itype
);
7541 hashval_t hash
= type_hash_canon_hash (itype
);
7542 itype
= type_hash_canon (hash
, itype
);
7547 /* Wrapper around build_range_type_1 with SHARED set to true. */
7550 build_range_type (tree type
, tree lowval
, tree highval
)
7552 return build_range_type_1 (type
, lowval
, highval
, true);
7555 /* Wrapper around build_range_type_1 with SHARED set to false. */
7558 build_nonshared_range_type (tree type
, tree lowval
, tree highval
)
7560 return build_range_type_1 (type
, lowval
, highval
, false);
7563 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7564 MAXVAL should be the maximum value in the domain
7565 (one less than the length of the array).
7567 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7568 We don't enforce this limit, that is up to caller (e.g. language front end).
7569 The limit exists because the result is a signed type and we don't handle
7570 sizes that use more than one HOST_WIDE_INT. */
7573 build_index_type (tree maxval
)
7575 return build_range_type (sizetype
, size_zero_node
, maxval
);
7578 /* Return true if the debug information for TYPE, a subtype, should be emitted
7579 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7580 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7581 debug info and doesn't reflect the source code. */
7584 subrange_type_for_debug_p (const_tree type
, tree
*lowval
, tree
*highval
)
7586 tree base_type
= TREE_TYPE (type
), low
, high
;
7588 /* Subrange types have a base type which is an integral type. */
7589 if (!INTEGRAL_TYPE_P (base_type
))
7592 /* Get the real bounds of the subtype. */
7593 if (lang_hooks
.types
.get_subrange_bounds
)
7594 lang_hooks
.types
.get_subrange_bounds (type
, &low
, &high
);
7597 low
= TYPE_MIN_VALUE (type
);
7598 high
= TYPE_MAX_VALUE (type
);
7601 /* If the type and its base type have the same representation and the same
7602 name, then the type is not a subrange but a copy of the base type. */
7603 if ((TREE_CODE (base_type
) == INTEGER_TYPE
7604 || TREE_CODE (base_type
) == BOOLEAN_TYPE
)
7605 && int_size_in_bytes (type
) == int_size_in_bytes (base_type
)
7606 && tree_int_cst_equal (low
, TYPE_MIN_VALUE (base_type
))
7607 && tree_int_cst_equal (high
, TYPE_MAX_VALUE (base_type
))
7608 && TYPE_IDENTIFIER (type
) == TYPE_IDENTIFIER (base_type
))
7618 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7619 and number of elements specified by the range of values of INDEX_TYPE.
7620 If TYPELESS_STORAGE is true, TYPE_TYPELESS_STORAGE flag is set on the type.
7621 If SHARED is true, reuse such a type that has already been constructed. */
7624 build_array_type_1 (tree elt_type
, tree index_type
, bool typeless_storage
,
7629 if (TREE_CODE (elt_type
) == FUNCTION_TYPE
)
7631 error ("arrays of functions are not meaningful");
7632 elt_type
= integer_type_node
;
7635 t
= make_node (ARRAY_TYPE
);
7636 TREE_TYPE (t
) = elt_type
;
7637 TYPE_DOMAIN (t
) = index_type
;
7638 TYPE_ADDR_SPACE (t
) = TYPE_ADDR_SPACE (elt_type
);
7639 TYPE_TYPELESS_STORAGE (t
) = typeless_storage
;
7642 /* If the element type is incomplete at this point we get marked for
7643 structural equality. Do not record these types in the canonical
7645 if (TYPE_STRUCTURAL_EQUALITY_P (t
))
7650 hashval_t hash
= type_hash_canon_hash (t
);
7651 t
= type_hash_canon (hash
, t
);
7654 if (TYPE_CANONICAL (t
) == t
)
7656 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type
)
7657 || (index_type
&& TYPE_STRUCTURAL_EQUALITY_P (index_type
))
7659 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7660 else if (TYPE_CANONICAL (elt_type
) != elt_type
7661 || (index_type
&& TYPE_CANONICAL (index_type
) != index_type
))
7663 = build_array_type_1 (TYPE_CANONICAL (elt_type
),
7665 ? TYPE_CANONICAL (index_type
) : NULL_TREE
,
7666 typeless_storage
, shared
);
7672 /* Wrapper around build_array_type_1 with SHARED set to true. */
7675 build_array_type (tree elt_type
, tree index_type
, bool typeless_storage
)
7677 return build_array_type_1 (elt_type
, index_type
, typeless_storage
, true);
7680 /* Wrapper around build_array_type_1 with SHARED set to false. */
7683 build_nonshared_array_type (tree elt_type
, tree index_type
)
7685 return build_array_type_1 (elt_type
, index_type
, false, false);
7688 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7692 build_array_type_nelts (tree elt_type
, unsigned HOST_WIDE_INT nelts
)
7694 return build_array_type (elt_type
, build_index_type (size_int (nelts
- 1)));
7697 /* Recursively examines the array elements of TYPE, until a non-array
7698 element type is found. */
7701 strip_array_types (tree type
)
7703 while (TREE_CODE (type
) == ARRAY_TYPE
)
7704 type
= TREE_TYPE (type
);
7709 /* Computes the canonical argument types from the argument type list
7712 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7713 on entry to this function, or if any of the ARGTYPES are
7716 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7717 true on entry to this function, or if any of the ARGTYPES are
7720 Returns a canonical argument list, which may be ARGTYPES when the
7721 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7722 true) or would not differ from ARGTYPES. */
7725 maybe_canonicalize_argtypes (tree argtypes
,
7726 bool *any_structural_p
,
7727 bool *any_noncanonical_p
)
7730 bool any_noncanonical_argtypes_p
= false;
7732 for (arg
= argtypes
; arg
&& !(*any_structural_p
); arg
= TREE_CHAIN (arg
))
7734 if (!TREE_VALUE (arg
) || TREE_VALUE (arg
) == error_mark_node
)
7735 /* Fail gracefully by stating that the type is structural. */
7736 *any_structural_p
= true;
7737 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg
)))
7738 *any_structural_p
= true;
7739 else if (TYPE_CANONICAL (TREE_VALUE (arg
)) != TREE_VALUE (arg
)
7740 || TREE_PURPOSE (arg
))
7741 /* If the argument has a default argument, we consider it
7742 non-canonical even though the type itself is canonical.
7743 That way, different variants of function and method types
7744 with default arguments will all point to the variant with
7745 no defaults as their canonical type. */
7746 any_noncanonical_argtypes_p
= true;
7749 if (*any_structural_p
)
7752 if (any_noncanonical_argtypes_p
)
7754 /* Build the canonical list of argument types. */
7755 tree canon_argtypes
= NULL_TREE
;
7756 bool is_void
= false;
7758 for (arg
= argtypes
; arg
; arg
= TREE_CHAIN (arg
))
7760 if (arg
== void_list_node
)
7763 canon_argtypes
= tree_cons (NULL_TREE
,
7764 TYPE_CANONICAL (TREE_VALUE (arg
)),
7768 canon_argtypes
= nreverse (canon_argtypes
);
7770 canon_argtypes
= chainon (canon_argtypes
, void_list_node
);
7772 /* There is a non-canonical type. */
7773 *any_noncanonical_p
= true;
7774 return canon_argtypes
;
7777 /* The canonical argument types are the same as ARGTYPES. */
7781 /* Construct, lay out and return
7782 the type of functions returning type VALUE_TYPE
7783 given arguments of types ARG_TYPES.
7784 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
7785 are data type nodes for the arguments of the function.
7786 If such a type has already been constructed, reuse it. */
7789 build_function_type (tree value_type
, tree arg_types
)
7792 inchash::hash hstate
;
7793 bool any_structural_p
, any_noncanonical_p
;
7794 tree canon_argtypes
;
7796 if (TREE_CODE (value_type
) == FUNCTION_TYPE
)
7798 error ("function return type cannot be function");
7799 value_type
= integer_type_node
;
7802 /* Make a node of the sort we want. */
7803 t
= make_node (FUNCTION_TYPE
);
7804 TREE_TYPE (t
) = value_type
;
7805 TYPE_ARG_TYPES (t
) = arg_types
;
7807 /* If we already have such a type, use the old one. */
7808 hashval_t hash
= type_hash_canon_hash (t
);
7809 t
= type_hash_canon (hash
, t
);
7811 /* Set up the canonical type. */
7812 any_structural_p
= TYPE_STRUCTURAL_EQUALITY_P (value_type
);
7813 any_noncanonical_p
= TYPE_CANONICAL (value_type
) != value_type
;
7814 canon_argtypes
= maybe_canonicalize_argtypes (arg_types
,
7816 &any_noncanonical_p
);
7817 if (any_structural_p
)
7818 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7819 else if (any_noncanonical_p
)
7820 TYPE_CANONICAL (t
) = build_function_type (TYPE_CANONICAL (value_type
),
7823 if (!COMPLETE_TYPE_P (t
))
7828 /* Build a function type. The RETURN_TYPE is the type returned by the
7829 function. If VAARGS is set, no void_type_node is appended to the
7830 list. ARGP must be always be terminated be a NULL_TREE. */
7833 build_function_type_list_1 (bool vaargs
, tree return_type
, va_list argp
)
7837 t
= va_arg (argp
, tree
);
7838 for (args
= NULL_TREE
; t
!= NULL_TREE
; t
= va_arg (argp
, tree
))
7839 args
= tree_cons (NULL_TREE
, t
, args
);
7844 if (args
!= NULL_TREE
)
7845 args
= nreverse (args
);
7846 gcc_assert (last
!= void_list_node
);
7848 else if (args
== NULL_TREE
)
7849 args
= void_list_node
;
7853 args
= nreverse (args
);
7854 TREE_CHAIN (last
) = void_list_node
;
7856 args
= build_function_type (return_type
, args
);
7861 /* Build a function type. The RETURN_TYPE is the type returned by the
7862 function. If additional arguments are provided, they are
7863 additional argument types. The list of argument types must always
7864 be terminated by NULL_TREE. */
7867 build_function_type_list (tree return_type
, ...)
7872 va_start (p
, return_type
);
7873 args
= build_function_type_list_1 (false, return_type
, p
);
7878 /* Build a variable argument function type. The RETURN_TYPE is the
7879 type returned by the function. If additional arguments are provided,
7880 they are additional argument types. The list of argument types must
7881 always be terminated by NULL_TREE. */
7884 build_varargs_function_type_list (tree return_type
, ...)
7889 va_start (p
, return_type
);
7890 args
= build_function_type_list_1 (true, return_type
, p
);
7896 /* Build a function type. RETURN_TYPE is the type returned by the
7897 function; VAARGS indicates whether the function takes varargs. The
7898 function takes N named arguments, the types of which are provided in
7902 build_function_type_array_1 (bool vaargs
, tree return_type
, int n
,
7906 tree t
= vaargs
? NULL_TREE
: void_list_node
;
7908 for (i
= n
- 1; i
>= 0; i
--)
7909 t
= tree_cons (NULL_TREE
, arg_types
[i
], t
);
7911 return build_function_type (return_type
, t
);
7914 /* Build a function type. RETURN_TYPE is the type returned by the
7915 function. The function takes N named arguments, the types of which
7916 are provided in ARG_TYPES. */
7919 build_function_type_array (tree return_type
, int n
, tree
*arg_types
)
7921 return build_function_type_array_1 (false, return_type
, n
, arg_types
);
7924 /* Build a variable argument function type. RETURN_TYPE is the type
7925 returned by the function. The function takes N named arguments, the
7926 types of which are provided in ARG_TYPES. */
7929 build_varargs_function_type_array (tree return_type
, int n
, tree
*arg_types
)
7931 return build_function_type_array_1 (true, return_type
, n
, arg_types
);
7934 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
7935 and ARGTYPES (a TREE_LIST) are the return type and arguments types
7936 for the method. An implicit additional parameter (of type
7937 pointer-to-BASETYPE) is added to the ARGTYPES. */
7940 build_method_type_directly (tree basetype
,
7946 bool any_structural_p
, any_noncanonical_p
;
7947 tree canon_argtypes
;
7949 /* Make a node of the sort we want. */
7950 t
= make_node (METHOD_TYPE
);
7952 TYPE_METHOD_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
7953 TREE_TYPE (t
) = rettype
;
7954 ptype
= build_pointer_type (basetype
);
7956 /* The actual arglist for this function includes a "hidden" argument
7957 which is "this". Put it into the list of argument types. */
7958 argtypes
= tree_cons (NULL_TREE
, ptype
, argtypes
);
7959 TYPE_ARG_TYPES (t
) = argtypes
;
7961 /* If we already have such a type, use the old one. */
7962 hashval_t hash
= type_hash_canon_hash (t
);
7963 t
= type_hash_canon (hash
, t
);
7965 /* Set up the canonical type. */
7967 = (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
7968 || TYPE_STRUCTURAL_EQUALITY_P (rettype
));
7970 = (TYPE_CANONICAL (basetype
) != basetype
7971 || TYPE_CANONICAL (rettype
) != rettype
);
7972 canon_argtypes
= maybe_canonicalize_argtypes (TREE_CHAIN (argtypes
),
7974 &any_noncanonical_p
);
7975 if (any_structural_p
)
7976 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7977 else if (any_noncanonical_p
)
7979 = build_method_type_directly (TYPE_CANONICAL (basetype
),
7980 TYPE_CANONICAL (rettype
),
7982 if (!COMPLETE_TYPE_P (t
))
7988 /* Construct, lay out and return the type of methods belonging to class
7989 BASETYPE and whose arguments and values are described by TYPE.
7990 If that type exists already, reuse it.
7991 TYPE must be a FUNCTION_TYPE node. */
7994 build_method_type (tree basetype
, tree type
)
7996 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
7998 return build_method_type_directly (basetype
,
8000 TYPE_ARG_TYPES (type
));
8003 /* Construct, lay out and return the type of offsets to a value
8004 of type TYPE, within an object of type BASETYPE.
8005 If a suitable offset type exists already, reuse it. */
8008 build_offset_type (tree basetype
, tree type
)
8012 /* Make a node of the sort we want. */
8013 t
= make_node (OFFSET_TYPE
);
8015 TYPE_OFFSET_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
8016 TREE_TYPE (t
) = type
;
8018 /* If we already have such a type, use the old one. */
8019 hashval_t hash
= type_hash_canon_hash (t
);
8020 t
= type_hash_canon (hash
, t
);
8022 if (!COMPLETE_TYPE_P (t
))
8025 if (TYPE_CANONICAL (t
) == t
)
8027 if (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
8028 || TYPE_STRUCTURAL_EQUALITY_P (type
))
8029 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8030 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)) != basetype
8031 || TYPE_CANONICAL (type
) != type
)
8033 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)),
8034 TYPE_CANONICAL (type
));
8040 /* Create a complex type whose components are COMPONENT_TYPE.
8042 If NAMED is true, the type is given a TYPE_NAME. We do not always
8043 do so because this creates a DECL node and thus make the DECL_UIDs
8044 dependent on the type canonicalization hashtable, which is GC-ed,
8045 so the DECL_UIDs would not be stable wrt garbage collection. */
8048 build_complex_type (tree component_type
, bool named
)
8050 gcc_assert (INTEGRAL_TYPE_P (component_type
)
8051 || SCALAR_FLOAT_TYPE_P (component_type
)
8052 || FIXED_POINT_TYPE_P (component_type
));
8054 /* Make a node of the sort we want. */
8055 tree probe
= make_node (COMPLEX_TYPE
);
8057 TREE_TYPE (probe
) = TYPE_MAIN_VARIANT (component_type
);
8059 /* If we already have such a type, use the old one. */
8060 hashval_t hash
= type_hash_canon_hash (probe
);
8061 tree t
= type_hash_canon (hash
, probe
);
8065 /* We created a new type. The hash insertion will have laid
8066 out the type. We need to check the canonicalization and
8067 maybe set the name. */
8068 gcc_checking_assert (COMPLETE_TYPE_P (t
)
8070 && TYPE_CANONICAL (t
) == t
);
8072 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (t
)))
8073 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8074 else if (TYPE_CANONICAL (TREE_TYPE (t
)) != TREE_TYPE (t
))
8076 = build_complex_type (TYPE_CANONICAL (TREE_TYPE (t
)), named
);
8078 /* We need to create a name, since complex is a fundamental type. */
8081 const char *name
= NULL
;
8083 if (TREE_TYPE (t
) == char_type_node
)
8084 name
= "complex char";
8085 else if (TREE_TYPE (t
) == signed_char_type_node
)
8086 name
= "complex signed char";
8087 else if (TREE_TYPE (t
) == unsigned_char_type_node
)
8088 name
= "complex unsigned char";
8089 else if (TREE_TYPE (t
) == short_integer_type_node
)
8090 name
= "complex short int";
8091 else if (TREE_TYPE (t
) == short_unsigned_type_node
)
8092 name
= "complex short unsigned int";
8093 else if (TREE_TYPE (t
) == integer_type_node
)
8094 name
= "complex int";
8095 else if (TREE_TYPE (t
) == unsigned_type_node
)
8096 name
= "complex unsigned int";
8097 else if (TREE_TYPE (t
) == long_integer_type_node
)
8098 name
= "complex long int";
8099 else if (TREE_TYPE (t
) == long_unsigned_type_node
)
8100 name
= "complex long unsigned int";
8101 else if (TREE_TYPE (t
) == long_long_integer_type_node
)
8102 name
= "complex long long int";
8103 else if (TREE_TYPE (t
) == long_long_unsigned_type_node
)
8104 name
= "complex long long unsigned int";
8107 TYPE_NAME (t
) = build_decl (UNKNOWN_LOCATION
, TYPE_DECL
,
8108 get_identifier (name
), t
);
8112 return build_qualified_type (t
, TYPE_QUALS (component_type
));
8115 /* If TYPE is a real or complex floating-point type and the target
8116 does not directly support arithmetic on TYPE then return the wider
8117 type to be used for arithmetic on TYPE. Otherwise, return
8121 excess_precision_type (tree type
)
8123 /* The target can give two different responses to the question of
8124 which excess precision mode it would like depending on whether we
8125 are in -fexcess-precision=standard or -fexcess-precision=fast. */
8127 enum excess_precision_type requested_type
8128 = (flag_excess_precision
== EXCESS_PRECISION_FAST
8129 ? EXCESS_PRECISION_TYPE_FAST
8130 : EXCESS_PRECISION_TYPE_STANDARD
);
8132 enum flt_eval_method target_flt_eval_method
8133 = targetm
.c
.excess_precision (requested_type
);
8135 /* The target should not ask for unpredictable float evaluation (though
8136 it might advertise that implicitly the evaluation is unpredictable,
8137 but we don't care about that here, it will have been reported
8138 elsewhere). If it does ask for unpredictable evaluation, we have
8139 nothing to do here. */
8140 gcc_assert (target_flt_eval_method
!= FLT_EVAL_METHOD_UNPREDICTABLE
);
8142 /* Nothing to do. The target has asked for all types we know about
8143 to be computed with their native precision and range. */
8144 if (target_flt_eval_method
== FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16
)
8147 /* The target will promote this type in a target-dependent way, so excess
8148 precision ought to leave it alone. */
8149 if (targetm
.promoted_type (type
) != NULL_TREE
)
8152 machine_mode float16_type_mode
= (float16_type_node
8153 ? TYPE_MODE (float16_type_node
)
8155 machine_mode float_type_mode
= TYPE_MODE (float_type_node
);
8156 machine_mode double_type_mode
= TYPE_MODE (double_type_node
);
8158 switch (TREE_CODE (type
))
8162 machine_mode type_mode
= TYPE_MODE (type
);
8163 switch (target_flt_eval_method
)
8165 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT
:
8166 if (type_mode
== float16_type_mode
)
8167 return float_type_node
;
8169 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE
:
8170 if (type_mode
== float16_type_mode
8171 || type_mode
== float_type_mode
)
8172 return double_type_node
;
8174 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE
:
8175 if (type_mode
== float16_type_mode
8176 || type_mode
== float_type_mode
8177 || type_mode
== double_type_mode
)
8178 return long_double_type_node
;
8187 if (TREE_CODE (TREE_TYPE (type
)) != REAL_TYPE
)
8189 machine_mode type_mode
= TYPE_MODE (TREE_TYPE (type
));
8190 switch (target_flt_eval_method
)
8192 case FLT_EVAL_METHOD_PROMOTE_TO_FLOAT
:
8193 if (type_mode
== float16_type_mode
)
8194 return complex_float_type_node
;
8196 case FLT_EVAL_METHOD_PROMOTE_TO_DOUBLE
:
8197 if (type_mode
== float16_type_mode
8198 || type_mode
== float_type_mode
)
8199 return complex_double_type_node
;
8201 case FLT_EVAL_METHOD_PROMOTE_TO_LONG_DOUBLE
:
8202 if (type_mode
== float16_type_mode
8203 || type_mode
== float_type_mode
8204 || type_mode
== double_type_mode
)
8205 return complex_long_double_type_node
;
8219 /* Return OP, stripped of any conversions to wider types as much as is safe.
8220 Converting the value back to OP's type makes a value equivalent to OP.
8222 If FOR_TYPE is nonzero, we return a value which, if converted to
8223 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8225 OP must have integer, real or enumeral type. Pointers are not allowed!
8227 There are some cases where the obvious value we could return
8228 would regenerate to OP if converted to OP's type,
8229 but would not extend like OP to wider types.
8230 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8231 For example, if OP is (unsigned short)(signed char)-1,
8232 we avoid returning (signed char)-1 if FOR_TYPE is int,
8233 even though extending that to an unsigned short would regenerate OP,
8234 since the result of extending (signed char)-1 to (int)
8235 is different from (int) OP. */
8238 get_unwidened (tree op
, tree for_type
)
8240 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8241 tree type
= TREE_TYPE (op
);
8243 = TYPE_PRECISION (for_type
!= 0 ? for_type
: type
);
8245 = (for_type
!= 0 && for_type
!= type
8246 && final_prec
> TYPE_PRECISION (type
)
8247 && TYPE_UNSIGNED (type
));
8250 while (CONVERT_EXPR_P (op
))
8254 /* TYPE_PRECISION on vector types has different meaning
8255 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8256 so avoid them here. */
8257 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op
, 0))) == VECTOR_TYPE
)
8260 bitschange
= TYPE_PRECISION (TREE_TYPE (op
))
8261 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0)));
8263 /* Truncations are many-one so cannot be removed.
8264 Unless we are later going to truncate down even farther. */
8266 && final_prec
> TYPE_PRECISION (TREE_TYPE (op
)))
8269 /* See what's inside this conversion. If we decide to strip it,
8271 op
= TREE_OPERAND (op
, 0);
8273 /* If we have not stripped any zero-extensions (uns is 0),
8274 we can strip any kind of extension.
8275 If we have previously stripped a zero-extension,
8276 only zero-extensions can safely be stripped.
8277 Any extension can be stripped if the bits it would produce
8278 are all going to be discarded later by truncating to FOR_TYPE. */
8282 if (! uns
|| final_prec
<= TYPE_PRECISION (TREE_TYPE (op
)))
8284 /* TYPE_UNSIGNED says whether this is a zero-extension.
8285 Let's avoid computing it if it does not affect WIN
8286 and if UNS will not be needed again. */
8288 || CONVERT_EXPR_P (op
))
8289 && TYPE_UNSIGNED (TREE_TYPE (op
)))
8297 /* If we finally reach a constant see if it fits in sth smaller and
8298 in that case convert it. */
8299 if (TREE_CODE (win
) == INTEGER_CST
)
8301 tree wtype
= TREE_TYPE (win
);
8302 unsigned prec
= wi::min_precision (wi::to_wide (win
), TYPE_SIGN (wtype
));
8304 prec
= MAX (prec
, final_prec
);
8305 if (prec
< TYPE_PRECISION (wtype
))
8307 tree t
= lang_hooks
.types
.type_for_size (prec
, TYPE_UNSIGNED (wtype
));
8308 if (t
&& TYPE_PRECISION (t
) < TYPE_PRECISION (wtype
))
8309 win
= fold_convert (t
, win
);
8316 /* Return OP or a simpler expression for a narrower value
8317 which can be sign-extended or zero-extended to give back OP.
8318 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8319 or 0 if the value should be sign-extended. */
8322 get_narrower (tree op
, int *unsignedp_ptr
)
8327 bool integral_p
= INTEGRAL_TYPE_P (TREE_TYPE (op
));
8329 while (TREE_CODE (op
) == NOP_EXPR
)
8332 = (TYPE_PRECISION (TREE_TYPE (op
))
8333 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0))));
8335 /* Truncations are many-one so cannot be removed. */
8339 /* See what's inside this conversion. If we decide to strip it,
8344 op
= TREE_OPERAND (op
, 0);
8345 /* An extension: the outermost one can be stripped,
8346 but remember whether it is zero or sign extension. */
8348 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8349 /* Otherwise, if a sign extension has been stripped,
8350 only sign extensions can now be stripped;
8351 if a zero extension has been stripped, only zero-extensions. */
8352 else if (uns
!= TYPE_UNSIGNED (TREE_TYPE (op
)))
8356 else /* bitschange == 0 */
8358 /* A change in nominal type can always be stripped, but we must
8359 preserve the unsignedness. */
8361 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8363 op
= TREE_OPERAND (op
, 0);
8364 /* Keep trying to narrow, but don't assign op to win if it
8365 would turn an integral type into something else. */
8366 if (INTEGRAL_TYPE_P (TREE_TYPE (op
)) != integral_p
)
8373 if (TREE_CODE (op
) == COMPONENT_REF
8374 /* Since type_for_size always gives an integer type. */
8375 && TREE_CODE (TREE_TYPE (op
)) != REAL_TYPE
8376 && TREE_CODE (TREE_TYPE (op
)) != FIXED_POINT_TYPE
8377 /* Ensure field is laid out already. */
8378 && DECL_SIZE (TREE_OPERAND (op
, 1)) != 0
8379 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op
, 1))))
8381 unsigned HOST_WIDE_INT innerprec
8382 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op
, 1)));
8383 int unsignedp
= (DECL_UNSIGNED (TREE_OPERAND (op
, 1))
8384 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op
, 1))));
8385 tree type
= lang_hooks
.types
.type_for_size (innerprec
, unsignedp
);
8387 /* We can get this structure field in a narrower type that fits it,
8388 but the resulting extension to its nominal type (a fullword type)
8389 must satisfy the same conditions as for other extensions.
8391 Do this only for fields that are aligned (not bit-fields),
8392 because when bit-field insns will be used there is no
8393 advantage in doing this. */
8395 if (innerprec
< TYPE_PRECISION (TREE_TYPE (op
))
8396 && ! DECL_BIT_FIELD (TREE_OPERAND (op
, 1))
8397 && (first
|| uns
== DECL_UNSIGNED (TREE_OPERAND (op
, 1)))
8401 uns
= DECL_UNSIGNED (TREE_OPERAND (op
, 1));
8402 win
= fold_convert (type
, op
);
8406 *unsignedp_ptr
= uns
;
8410 /* Return true if integer constant C has a value that is permissible
8411 for TYPE, an integral type. */
8414 int_fits_type_p (const_tree c
, const_tree type
)
8416 tree type_low_bound
, type_high_bound
;
8417 bool ok_for_low_bound
, ok_for_high_bound
;
8418 signop sgn_c
= TYPE_SIGN (TREE_TYPE (c
));
8420 /* Non-standard boolean types can have arbitrary precision but various
8421 transformations assume that they can only take values 0 and +/-1. */
8422 if (TREE_CODE (type
) == BOOLEAN_TYPE
)
8423 return wi::fits_to_boolean_p (wi::to_wide (c
), type
);
8426 type_low_bound
= TYPE_MIN_VALUE (type
);
8427 type_high_bound
= TYPE_MAX_VALUE (type
);
8429 /* If at least one bound of the type is a constant integer, we can check
8430 ourselves and maybe make a decision. If no such decision is possible, but
8431 this type is a subtype, try checking against that. Otherwise, use
8432 fits_to_tree_p, which checks against the precision.
8434 Compute the status for each possibly constant bound, and return if we see
8435 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8436 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8437 for "constant known to fit". */
8439 /* Check if c >= type_low_bound. */
8440 if (type_low_bound
&& TREE_CODE (type_low_bound
) == INTEGER_CST
)
8442 if (tree_int_cst_lt (c
, type_low_bound
))
8444 ok_for_low_bound
= true;
8447 ok_for_low_bound
= false;
8449 /* Check if c <= type_high_bound. */
8450 if (type_high_bound
&& TREE_CODE (type_high_bound
) == INTEGER_CST
)
8452 if (tree_int_cst_lt (type_high_bound
, c
))
8454 ok_for_high_bound
= true;
8457 ok_for_high_bound
= false;
8459 /* If the constant fits both bounds, the result is known. */
8460 if (ok_for_low_bound
&& ok_for_high_bound
)
8463 /* Perform some generic filtering which may allow making a decision
8464 even if the bounds are not constant. First, negative integers
8465 never fit in unsigned types, */
8466 if (TYPE_UNSIGNED (type
) && sgn_c
== SIGNED
&& wi::neg_p (wi::to_wide (c
)))
8469 /* Second, narrower types always fit in wider ones. */
8470 if (TYPE_PRECISION (type
) > TYPE_PRECISION (TREE_TYPE (c
)))
8473 /* Third, unsigned integers with top bit set never fit signed types. */
8474 if (!TYPE_UNSIGNED (type
) && sgn_c
== UNSIGNED
)
8476 int prec
= GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (c
))) - 1;
8477 if (prec
< TYPE_PRECISION (TREE_TYPE (c
)))
8479 /* When a tree_cst is converted to a wide-int, the precision
8480 is taken from the type. However, if the precision of the
8481 mode underneath the type is smaller than that, it is
8482 possible that the value will not fit. The test below
8483 fails if any bit is set between the sign bit of the
8484 underlying mode and the top bit of the type. */
8485 if (wi::zext (wi::to_wide (c
), prec
- 1) != wi::to_wide (c
))
8488 else if (wi::neg_p (wi::to_wide (c
)))
8492 /* If we haven't been able to decide at this point, there nothing more we
8493 can check ourselves here. Look at the base type if we have one and it
8494 has the same precision. */
8495 if (TREE_CODE (type
) == INTEGER_TYPE
8496 && TREE_TYPE (type
) != 0
8497 && TYPE_PRECISION (type
) == TYPE_PRECISION (TREE_TYPE (type
)))
8499 type
= TREE_TYPE (type
);
8503 /* Or to fits_to_tree_p, if nothing else. */
8504 return wi::fits_to_tree_p (wi::to_wide (c
), type
);
8507 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8508 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8509 represented (assuming two's-complement arithmetic) within the bit
8510 precision of the type are returned instead. */
8513 get_type_static_bounds (const_tree type
, mpz_t min
, mpz_t max
)
8515 if (!POINTER_TYPE_P (type
) && TYPE_MIN_VALUE (type
)
8516 && TREE_CODE (TYPE_MIN_VALUE (type
)) == INTEGER_CST
)
8517 wi::to_mpz (wi::to_wide (TYPE_MIN_VALUE (type
)), min
, TYPE_SIGN (type
));
8520 if (TYPE_UNSIGNED (type
))
8521 mpz_set_ui (min
, 0);
8524 wide_int mn
= wi::min_value (TYPE_PRECISION (type
), SIGNED
);
8525 wi::to_mpz (mn
, min
, SIGNED
);
8529 if (!POINTER_TYPE_P (type
) && TYPE_MAX_VALUE (type
)
8530 && TREE_CODE (TYPE_MAX_VALUE (type
)) == INTEGER_CST
)
8531 wi::to_mpz (wi::to_wide (TYPE_MAX_VALUE (type
)), max
, TYPE_SIGN (type
));
8534 wide_int mn
= wi::max_value (TYPE_PRECISION (type
), TYPE_SIGN (type
));
8535 wi::to_mpz (mn
, max
, TYPE_SIGN (type
));
8539 /* Return true if VAR is an automatic variable defined in function FN. */
8542 auto_var_in_fn_p (const_tree var
, const_tree fn
)
8544 return (DECL_P (var
) && DECL_CONTEXT (var
) == fn
8545 && ((((VAR_P (var
) && ! DECL_EXTERNAL (var
))
8546 || TREE_CODE (var
) == PARM_DECL
)
8547 && ! TREE_STATIC (var
))
8548 || TREE_CODE (var
) == LABEL_DECL
8549 || TREE_CODE (var
) == RESULT_DECL
));
8552 /* Subprogram of following function. Called by walk_tree.
8554 Return *TP if it is an automatic variable or parameter of the
8555 function passed in as DATA. */
8558 find_var_from_fn (tree
*tp
, int *walk_subtrees
, void *data
)
8560 tree fn
= (tree
) data
;
8565 else if (DECL_P (*tp
)
8566 && auto_var_in_fn_p (*tp
, fn
))
8572 /* Returns true if T is, contains, or refers to a type with variable
8573 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8574 arguments, but not the return type. If FN is nonzero, only return
8575 true if a modifier of the type or position of FN is a variable or
8576 parameter inside FN.
8578 This concept is more general than that of C99 'variably modified types':
8579 in C99, a struct type is never variably modified because a VLA may not
8580 appear as a structure member. However, in GNU C code like:
8582 struct S { int i[f()]; };
8584 is valid, and other languages may define similar constructs. */
8587 variably_modified_type_p (tree type
, tree fn
)
8591 /* Test if T is either variable (if FN is zero) or an expression containing
8592 a variable in FN. If TYPE isn't gimplified, return true also if
8593 gimplify_one_sizepos would gimplify the expression into a local
8595 #define RETURN_TRUE_IF_VAR(T) \
8596 do { tree _t = (T); \
8597 if (_t != NULL_TREE \
8598 && _t != error_mark_node \
8599 && TREE_CODE (_t) != INTEGER_CST \
8600 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8602 || (!TYPE_SIZES_GIMPLIFIED (type) \
8603 && !is_gimple_sizepos (_t)) \
8604 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8605 return true; } while (0)
8607 if (type
== error_mark_node
)
8610 /* If TYPE itself has variable size, it is variably modified. */
8611 RETURN_TRUE_IF_VAR (TYPE_SIZE (type
));
8612 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type
));
8614 switch (TREE_CODE (type
))
8617 case REFERENCE_TYPE
:
8619 /* Ada can have pointer types refering to themselves indirectly. */
8620 if (TREE_VISITED (type
))
8622 TREE_VISITED (type
) = true;
8623 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8625 TREE_VISITED (type
) = false;
8628 TREE_VISITED (type
) = false;
8633 /* If TYPE is a function type, it is variably modified if the
8634 return type is variably modified. */
8635 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8641 case FIXED_POINT_TYPE
:
8644 /* Scalar types are variably modified if their end points
8646 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type
));
8647 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type
));
8652 case QUAL_UNION_TYPE
:
8653 /* We can't see if any of the fields are variably-modified by the
8654 definition we normally use, since that would produce infinite
8655 recursion via pointers. */
8656 /* This is variably modified if some field's type is. */
8657 for (t
= TYPE_FIELDS (type
); t
; t
= DECL_CHAIN (t
))
8658 if (TREE_CODE (t
) == FIELD_DECL
)
8660 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t
));
8661 RETURN_TRUE_IF_VAR (DECL_SIZE (t
));
8662 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t
));
8664 if (TREE_CODE (type
) == QUAL_UNION_TYPE
)
8665 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t
));
8670 /* Do not call ourselves to avoid infinite recursion. This is
8671 variably modified if the element type is. */
8672 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type
)));
8673 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type
)));
8680 /* The current language may have other cases to check, but in general,
8681 all other types are not variably modified. */
8682 return lang_hooks
.tree_inlining
.var_mod_type_p (type
, fn
);
8684 #undef RETURN_TRUE_IF_VAR
8687 /* Given a DECL or TYPE, return the scope in which it was declared, or
8688 NULL_TREE if there is no containing scope. */
8691 get_containing_scope (const_tree t
)
8693 return (TYPE_P (t
) ? TYPE_CONTEXT (t
) : DECL_CONTEXT (t
));
8696 /* Returns the ultimate TRANSLATION_UNIT_DECL context of DECL or NULL. */
8699 get_ultimate_context (const_tree decl
)
8701 while (decl
&& TREE_CODE (decl
) != TRANSLATION_UNIT_DECL
)
8703 if (TREE_CODE (decl
) == BLOCK
)
8704 decl
= BLOCK_SUPERCONTEXT (decl
);
8706 decl
= get_containing_scope (decl
);
8711 /* Return the innermost context enclosing DECL that is
8712 a FUNCTION_DECL, or zero if none. */
8715 decl_function_context (const_tree decl
)
8719 if (TREE_CODE (decl
) == ERROR_MARK
)
8722 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8723 where we look up the function at runtime. Such functions always take
8724 a first argument of type 'pointer to real context'.
8726 C++ should really be fixed to use DECL_CONTEXT for the real context,
8727 and use something else for the "virtual context". */
8728 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_VINDEX (decl
))
8731 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
8733 context
= DECL_CONTEXT (decl
);
8735 while (context
&& TREE_CODE (context
) != FUNCTION_DECL
)
8737 if (TREE_CODE (context
) == BLOCK
)
8738 context
= BLOCK_SUPERCONTEXT (context
);
8740 context
= get_containing_scope (context
);
8746 /* Return the innermost context enclosing DECL that is
8747 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8748 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8751 decl_type_context (const_tree decl
)
8753 tree context
= DECL_CONTEXT (decl
);
8756 switch (TREE_CODE (context
))
8758 case NAMESPACE_DECL
:
8759 case TRANSLATION_UNIT_DECL
:
8764 case QUAL_UNION_TYPE
:
8769 context
= DECL_CONTEXT (context
);
8773 context
= BLOCK_SUPERCONTEXT (context
);
8783 /* CALL is a CALL_EXPR. Return the declaration for the function
8784 called, or NULL_TREE if the called function cannot be
8788 get_callee_fndecl (const_tree call
)
8792 if (call
== error_mark_node
)
8793 return error_mark_node
;
8795 /* It's invalid to call this function with anything but a
8797 gcc_assert (TREE_CODE (call
) == CALL_EXPR
);
8799 /* The first operand to the CALL is the address of the function
8801 addr
= CALL_EXPR_FN (call
);
8803 /* If there is no function, return early. */
8804 if (addr
== NULL_TREE
)
8809 /* If this is a readonly function pointer, extract its initial value. */
8810 if (DECL_P (addr
) && TREE_CODE (addr
) != FUNCTION_DECL
8811 && TREE_READONLY (addr
) && ! TREE_THIS_VOLATILE (addr
)
8812 && DECL_INITIAL (addr
))
8813 addr
= DECL_INITIAL (addr
);
8815 /* If the address is just `&f' for some function `f', then we know
8816 that `f' is being called. */
8817 if (TREE_CODE (addr
) == ADDR_EXPR
8818 && TREE_CODE (TREE_OPERAND (addr
, 0)) == FUNCTION_DECL
)
8819 return TREE_OPERAND (addr
, 0);
8821 /* We couldn't figure out what was being called. */
8825 /* If CALL_EXPR CALL calls a normal built-in function or an internal function,
8826 return the associated function code, otherwise return CFN_LAST. */
8829 get_call_combined_fn (const_tree call
)
8831 /* It's invalid to call this function with anything but a CALL_EXPR. */
8832 gcc_assert (TREE_CODE (call
) == CALL_EXPR
);
8834 if (!CALL_EXPR_FN (call
))
8835 return as_combined_fn (CALL_EXPR_IFN (call
));
8837 tree fndecl
= get_callee_fndecl (call
);
8838 if (fndecl
&& DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
)
8839 return as_combined_fn (DECL_FUNCTION_CODE (fndecl
));
8844 #define TREE_MEM_USAGE_SPACES 40
8846 /* Print debugging information about tree nodes generated during the compile,
8847 and any language-specific information. */
8850 dump_tree_statistics (void)
8852 if (GATHER_STATISTICS
)
8855 int total_nodes
, total_bytes
;
8856 fprintf (stderr
, "\nKind Nodes Bytes\n");
8857 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES
);
8858 total_nodes
= total_bytes
= 0;
8859 for (i
= 0; i
< (int) all_kinds
; i
++)
8861 fprintf (stderr
, "%-20s %7d %10d\n", tree_node_kind_names
[i
],
8862 tree_node_counts
[i
], tree_node_sizes
[i
]);
8863 total_nodes
+= tree_node_counts
[i
];
8864 total_bytes
+= tree_node_sizes
[i
];
8866 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES
);
8867 fprintf (stderr
, "%-20s %7d %10d\n", "Total", total_nodes
, total_bytes
);
8868 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES
);
8869 fprintf (stderr
, "Code Nodes\n");
8870 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES
);
8871 for (i
= 0; i
< (int) MAX_TREE_CODES
; i
++)
8872 fprintf (stderr
, "%-32s %7d\n", get_tree_code_name ((enum tree_code
) i
),
8873 tree_code_counts
[i
]);
8874 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES
);
8875 fprintf (stderr
, "\n");
8876 ssanames_print_statistics ();
8877 fprintf (stderr
, "\n");
8878 phinodes_print_statistics ();
8879 fprintf (stderr
, "\n");
8882 fprintf (stderr
, "(No per-node statistics)\n");
8884 print_type_hash_statistics ();
8885 print_debug_expr_statistics ();
8886 print_value_expr_statistics ();
8887 lang_hooks
.print_statistics ();
8890 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
8892 /* Generate a crc32 of the low BYTES bytes of VALUE. */
8895 crc32_unsigned_n (unsigned chksum
, unsigned value
, unsigned bytes
)
8897 /* This relies on the raw feedback's top 4 bits being zero. */
8898 #define FEEDBACK(X) ((X) * 0x04c11db7)
8899 #define SYNDROME(X) (FEEDBACK ((X) & 1) ^ FEEDBACK ((X) & 2) \
8900 ^ FEEDBACK ((X) & 4) ^ FEEDBACK ((X) & 8))
8901 static const unsigned syndromes
[16] =
8903 SYNDROME(0x0), SYNDROME(0x1), SYNDROME(0x2), SYNDROME(0x3),
8904 SYNDROME(0x4), SYNDROME(0x5), SYNDROME(0x6), SYNDROME(0x7),
8905 SYNDROME(0x8), SYNDROME(0x9), SYNDROME(0xa), SYNDROME(0xb),
8906 SYNDROME(0xc), SYNDROME(0xd), SYNDROME(0xe), SYNDROME(0xf),
8911 value
<<= (32 - bytes
* 8);
8912 for (unsigned ix
= bytes
* 2; ix
--; value
<<= 4)
8914 unsigned feedback
= syndromes
[((value
^ chksum
) >> 28) & 0xf];
8916 chksum
= (chksum
<< 4) ^ feedback
;
8922 /* Generate a crc32 of a string. */
8925 crc32_string (unsigned chksum
, const char *string
)
8928 chksum
= crc32_byte (chksum
, *string
);
8933 /* P is a string that will be used in a symbol. Mask out any characters
8934 that are not valid in that context. */
8937 clean_symbol_name (char *p
)
8941 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
8944 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
8951 /* For anonymous aggregate types, we need some sort of name to
8952 hold on to. In practice, this should not appear, but it should
8953 not be harmful if it does. */
8955 anon_aggrname_p(const_tree id_node
)
8957 #ifndef NO_DOT_IN_LABEL
8958 return (IDENTIFIER_POINTER (id_node
)[0] == '.'
8959 && IDENTIFIER_POINTER (id_node
)[1] == '_');
8960 #else /* NO_DOT_IN_LABEL */
8961 #ifndef NO_DOLLAR_IN_LABEL
8962 return (IDENTIFIER_POINTER (id_node
)[0] == '$' \
8963 && IDENTIFIER_POINTER (id_node
)[1] == '_');
8964 #else /* NO_DOLLAR_IN_LABEL */
8965 #define ANON_AGGRNAME_PREFIX "__anon_"
8966 return (!strncmp (IDENTIFIER_POINTER (id_node
), ANON_AGGRNAME_PREFIX
,
8967 sizeof (ANON_AGGRNAME_PREFIX
) - 1));
8968 #endif /* NO_DOLLAR_IN_LABEL */
8969 #endif /* NO_DOT_IN_LABEL */
8972 /* Return a format for an anonymous aggregate name. */
8974 anon_aggrname_format()
8976 #ifndef NO_DOT_IN_LABEL
8978 #else /* NO_DOT_IN_LABEL */
8979 #ifndef NO_DOLLAR_IN_LABEL
8981 #else /* NO_DOLLAR_IN_LABEL */
8983 #endif /* NO_DOLLAR_IN_LABEL */
8984 #endif /* NO_DOT_IN_LABEL */
8987 /* Generate a name for a special-purpose function.
8988 The generated name may need to be unique across the whole link.
8989 Changes to this function may also require corresponding changes to
8990 xstrdup_mask_random.
8991 TYPE is some string to identify the purpose of this function to the
8992 linker or collect2; it must start with an uppercase letter,
8994 I - for constructors
8996 N - for C++ anonymous namespaces
8997 F - for DWARF unwind frame information. */
9000 get_file_function_name (const char *type
)
9006 /* If we already have a name we know to be unique, just use that. */
9007 if (first_global_object_name
)
9008 p
= q
= ASTRDUP (first_global_object_name
);
9009 /* If the target is handling the constructors/destructors, they
9010 will be local to this file and the name is only necessary for
9012 We also assign sub_I and sub_D sufixes to constructors called from
9013 the global static constructors. These are always local. */
9014 else if (((type
[0] == 'I' || type
[0] == 'D') && targetm
.have_ctors_dtors
)
9015 || (strncmp (type
, "sub_", 4) == 0
9016 && (type
[4] == 'I' || type
[4] == 'D')))
9018 const char *file
= main_input_filename
;
9020 file
= LOCATION_FILE (input_location
);
9021 /* Just use the file's basename, because the full pathname
9022 might be quite long. */
9023 p
= q
= ASTRDUP (lbasename (file
));
9027 /* Otherwise, the name must be unique across the entire link.
9028 We don't have anything that we know to be unique to this translation
9029 unit, so use what we do have and throw in some randomness. */
9031 const char *name
= weak_global_object_name
;
9032 const char *file
= main_input_filename
;
9037 file
= LOCATION_FILE (input_location
);
9039 len
= strlen (file
);
9040 q
= (char *) alloca (9 + 19 + len
+ 1);
9041 memcpy (q
, file
, len
+ 1);
9043 snprintf (q
+ len
, 9 + 19 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX
,
9044 crc32_string (0, name
), get_random_seed (false));
9049 clean_symbol_name (q
);
9050 buf
= (char *) alloca (sizeof (FILE_FUNCTION_FORMAT
) + strlen (p
)
9053 /* Set up the name of the file-level functions we may need.
9054 Use a global object (which is already required to be unique over
9055 the program) rather than the file name (which imposes extra
9057 sprintf (buf
, FILE_FUNCTION_FORMAT
, type
, p
);
9059 return get_identifier (buf
);
9062 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9064 /* Complain that the tree code of NODE does not match the expected 0
9065 terminated list of trailing codes. The trailing code list can be
9066 empty, for a more vague error message. FILE, LINE, and FUNCTION
9067 are of the caller. */
9070 tree_check_failed (const_tree node
, const char *file
,
9071 int line
, const char *function
, ...)
9075 unsigned length
= 0;
9076 enum tree_code code
;
9078 va_start (args
, function
);
9079 while ((code
= (enum tree_code
) va_arg (args
, int)))
9080 length
+= 4 + strlen (get_tree_code_name (code
));
9085 va_start (args
, function
);
9086 length
+= strlen ("expected ");
9087 buffer
= tmp
= (char *) alloca (length
);
9089 while ((code
= (enum tree_code
) va_arg (args
, int)))
9091 const char *prefix
= length
? " or " : "expected ";
9093 strcpy (tmp
+ length
, prefix
);
9094 length
+= strlen (prefix
);
9095 strcpy (tmp
+ length
, get_tree_code_name (code
));
9096 length
+= strlen (get_tree_code_name (code
));
9101 buffer
= "unexpected node";
9103 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9104 buffer
, get_tree_code_name (TREE_CODE (node
)),
9105 function
, trim_filename (file
), line
);
9108 /* Complain that the tree code of NODE does match the expected 0
9109 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9113 tree_not_check_failed (const_tree node
, const char *file
,
9114 int line
, const char *function
, ...)
9118 unsigned length
= 0;
9119 enum tree_code code
;
9121 va_start (args
, function
);
9122 while ((code
= (enum tree_code
) va_arg (args
, int)))
9123 length
+= 4 + strlen (get_tree_code_name (code
));
9125 va_start (args
, function
);
9126 buffer
= (char *) alloca (length
);
9128 while ((code
= (enum tree_code
) va_arg (args
, int)))
9132 strcpy (buffer
+ length
, " or ");
9135 strcpy (buffer
+ length
, get_tree_code_name (code
));
9136 length
+= strlen (get_tree_code_name (code
));
9140 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9141 buffer
, get_tree_code_name (TREE_CODE (node
)),
9142 function
, trim_filename (file
), line
);
9145 /* Similar to tree_check_failed, except that we check for a class of tree
9146 code, given in CL. */
9149 tree_class_check_failed (const_tree node
, const enum tree_code_class cl
,
9150 const char *file
, int line
, const char *function
)
9153 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9154 TREE_CODE_CLASS_STRING (cl
),
9155 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9156 get_tree_code_name (TREE_CODE (node
)), function
, trim_filename (file
), line
);
9159 /* Similar to tree_check_failed, except that instead of specifying a
9160 dozen codes, use the knowledge that they're all sequential. */
9163 tree_range_check_failed (const_tree node
, const char *file
, int line
,
9164 const char *function
, enum tree_code c1
,
9168 unsigned length
= 0;
9171 for (c
= c1
; c
<= c2
; ++c
)
9172 length
+= 4 + strlen (get_tree_code_name ((enum tree_code
) c
));
9174 length
+= strlen ("expected ");
9175 buffer
= (char *) alloca (length
);
9178 for (c
= c1
; c
<= c2
; ++c
)
9180 const char *prefix
= length
? " or " : "expected ";
9182 strcpy (buffer
+ length
, prefix
);
9183 length
+= strlen (prefix
);
9184 strcpy (buffer
+ length
, get_tree_code_name ((enum tree_code
) c
));
9185 length
+= strlen (get_tree_code_name ((enum tree_code
) c
));
9188 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9189 buffer
, get_tree_code_name (TREE_CODE (node
)),
9190 function
, trim_filename (file
), line
);
9194 /* Similar to tree_check_failed, except that we check that a tree does
9195 not have the specified code, given in CL. */
9198 tree_not_class_check_failed (const_tree node
, const enum tree_code_class cl
,
9199 const char *file
, int line
, const char *function
)
9202 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9203 TREE_CODE_CLASS_STRING (cl
),
9204 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9205 get_tree_code_name (TREE_CODE (node
)), function
, trim_filename (file
), line
);
9209 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9212 omp_clause_check_failed (const_tree node
, const char *file
, int line
,
9213 const char *function
, enum omp_clause_code code
)
9215 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9216 omp_clause_code_name
[code
], get_tree_code_name (TREE_CODE (node
)),
9217 function
, trim_filename (file
), line
);
9221 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9224 omp_clause_range_check_failed (const_tree node
, const char *file
, int line
,
9225 const char *function
, enum omp_clause_code c1
,
9226 enum omp_clause_code c2
)
9229 unsigned length
= 0;
9232 for (c
= c1
; c
<= c2
; ++c
)
9233 length
+= 4 + strlen (omp_clause_code_name
[c
]);
9235 length
+= strlen ("expected ");
9236 buffer
= (char *) alloca (length
);
9239 for (c
= c1
; c
<= c2
; ++c
)
9241 const char *prefix
= length
? " or " : "expected ";
9243 strcpy (buffer
+ length
, prefix
);
9244 length
+= strlen (prefix
);
9245 strcpy (buffer
+ length
, omp_clause_code_name
[c
]);
9246 length
+= strlen (omp_clause_code_name
[c
]);
9249 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9250 buffer
, omp_clause_code_name
[TREE_CODE (node
)],
9251 function
, trim_filename (file
), line
);
9255 #undef DEFTREESTRUCT
9256 #define DEFTREESTRUCT(VAL, NAME) NAME,
9258 static const char *ts_enum_names
[] = {
9259 #include "treestruct.def"
9261 #undef DEFTREESTRUCT
9263 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9265 /* Similar to tree_class_check_failed, except that we check for
9266 whether CODE contains the tree structure identified by EN. */
9269 tree_contains_struct_check_failed (const_tree node
,
9270 const enum tree_node_structure_enum en
,
9271 const char *file
, int line
,
9272 const char *function
)
9275 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9277 get_tree_code_name (TREE_CODE (node
)), function
, trim_filename (file
), line
);
9281 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9282 (dynamically sized) vector. */
9285 tree_int_cst_elt_check_failed (int idx
, int len
, const char *file
, int line
,
9286 const char *function
)
9289 ("tree check: accessed elt %d of tree_int_cst with %d elts in %s, at %s:%d",
9290 idx
+ 1, len
, function
, trim_filename (file
), line
);
9293 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9294 (dynamically sized) vector. */
9297 tree_vec_elt_check_failed (int idx
, int len
, const char *file
, int line
,
9298 const char *function
)
9301 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9302 idx
+ 1, len
, function
, trim_filename (file
), line
);
9305 /* Similar to above, except that the check is for the bounds of the operand
9306 vector of an expression node EXP. */
9309 tree_operand_check_failed (int idx
, const_tree exp
, const char *file
,
9310 int line
, const char *function
)
9312 enum tree_code code
= TREE_CODE (exp
);
9314 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9315 idx
+ 1, get_tree_code_name (code
), TREE_OPERAND_LENGTH (exp
),
9316 function
, trim_filename (file
), line
);
9319 /* Similar to above, except that the check is for the number of
9320 operands of an OMP_CLAUSE node. */
9323 omp_clause_operand_check_failed (int idx
, const_tree t
, const char *file
,
9324 int line
, const char *function
)
9327 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9328 "in %s, at %s:%d", idx
+ 1, omp_clause_code_name
[OMP_CLAUSE_CODE (t
)],
9329 omp_clause_num_ops
[OMP_CLAUSE_CODE (t
)], function
,
9330 trim_filename (file
), line
);
9332 #endif /* ENABLE_TREE_CHECKING */
9334 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9335 and mapped to the machine mode MODE. Initialize its fields and build
9336 the information necessary for debugging output. */
9339 make_vector_type (tree innertype
, int nunits
, machine_mode mode
)
9342 tree mv_innertype
= TYPE_MAIN_VARIANT (innertype
);
9344 t
= make_node (VECTOR_TYPE
);
9345 TREE_TYPE (t
) = mv_innertype
;
9346 SET_TYPE_VECTOR_SUBPARTS (t
, nunits
);
9347 SET_TYPE_MODE (t
, mode
);
9349 if (TYPE_STRUCTURAL_EQUALITY_P (mv_innertype
) || in_lto_p
)
9350 SET_TYPE_STRUCTURAL_EQUALITY (t
);
9351 else if ((TYPE_CANONICAL (mv_innertype
) != innertype
9352 || mode
!= VOIDmode
)
9353 && !VECTOR_BOOLEAN_TYPE_P (t
))
9355 = make_vector_type (TYPE_CANONICAL (mv_innertype
), nunits
, VOIDmode
);
9359 hashval_t hash
= type_hash_canon_hash (t
);
9360 t
= type_hash_canon (hash
, t
);
9362 /* We have built a main variant, based on the main variant of the
9363 inner type. Use it to build the variant we return. */
9364 if ((TYPE_ATTRIBUTES (innertype
) || TYPE_QUALS (innertype
))
9365 && TREE_TYPE (t
) != innertype
)
9366 return build_type_attribute_qual_variant (t
,
9367 TYPE_ATTRIBUTES (innertype
),
9368 TYPE_QUALS (innertype
));
9374 make_or_reuse_type (unsigned size
, int unsignedp
)
9378 if (size
== INT_TYPE_SIZE
)
9379 return unsignedp
? unsigned_type_node
: integer_type_node
;
9380 if (size
== CHAR_TYPE_SIZE
)
9381 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
9382 if (size
== SHORT_TYPE_SIZE
)
9383 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
9384 if (size
== LONG_TYPE_SIZE
)
9385 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
9386 if (size
== LONG_LONG_TYPE_SIZE
)
9387 return (unsignedp
? long_long_unsigned_type_node
9388 : long_long_integer_type_node
);
9390 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
9391 if (size
== int_n_data
[i
].bitsize
9392 && int_n_enabled_p
[i
])
9393 return (unsignedp
? int_n_trees
[i
].unsigned_type
9394 : int_n_trees
[i
].signed_type
);
9397 return make_unsigned_type (size
);
9399 return make_signed_type (size
);
9402 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9405 make_or_reuse_fract_type (unsigned size
, int unsignedp
, int satp
)
9409 if (size
== SHORT_FRACT_TYPE_SIZE
)
9410 return unsignedp
? sat_unsigned_short_fract_type_node
9411 : sat_short_fract_type_node
;
9412 if (size
== FRACT_TYPE_SIZE
)
9413 return unsignedp
? sat_unsigned_fract_type_node
: sat_fract_type_node
;
9414 if (size
== LONG_FRACT_TYPE_SIZE
)
9415 return unsignedp
? sat_unsigned_long_fract_type_node
9416 : sat_long_fract_type_node
;
9417 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9418 return unsignedp
? sat_unsigned_long_long_fract_type_node
9419 : sat_long_long_fract_type_node
;
9423 if (size
== SHORT_FRACT_TYPE_SIZE
)
9424 return unsignedp
? unsigned_short_fract_type_node
9425 : short_fract_type_node
;
9426 if (size
== FRACT_TYPE_SIZE
)
9427 return unsignedp
? unsigned_fract_type_node
: fract_type_node
;
9428 if (size
== LONG_FRACT_TYPE_SIZE
)
9429 return unsignedp
? unsigned_long_fract_type_node
9430 : long_fract_type_node
;
9431 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9432 return unsignedp
? unsigned_long_long_fract_type_node
9433 : long_long_fract_type_node
;
9436 return make_fract_type (size
, unsignedp
, satp
);
9439 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9442 make_or_reuse_accum_type (unsigned size
, int unsignedp
, int satp
)
9446 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9447 return unsignedp
? sat_unsigned_short_accum_type_node
9448 : sat_short_accum_type_node
;
9449 if (size
== ACCUM_TYPE_SIZE
)
9450 return unsignedp
? sat_unsigned_accum_type_node
: sat_accum_type_node
;
9451 if (size
== LONG_ACCUM_TYPE_SIZE
)
9452 return unsignedp
? sat_unsigned_long_accum_type_node
9453 : sat_long_accum_type_node
;
9454 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9455 return unsignedp
? sat_unsigned_long_long_accum_type_node
9456 : sat_long_long_accum_type_node
;
9460 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9461 return unsignedp
? unsigned_short_accum_type_node
9462 : short_accum_type_node
;
9463 if (size
== ACCUM_TYPE_SIZE
)
9464 return unsignedp
? unsigned_accum_type_node
: accum_type_node
;
9465 if (size
== LONG_ACCUM_TYPE_SIZE
)
9466 return unsignedp
? unsigned_long_accum_type_node
9467 : long_accum_type_node
;
9468 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9469 return unsignedp
? unsigned_long_long_accum_type_node
9470 : long_long_accum_type_node
;
9473 return make_accum_type (size
, unsignedp
, satp
);
9477 /* Create an atomic variant node for TYPE. This routine is called
9478 during initialization of data types to create the 5 basic atomic
9479 types. The generic build_variant_type function requires these to
9480 already be set up in order to function properly, so cannot be
9481 called from there. If ALIGN is non-zero, then ensure alignment is
9482 overridden to this value. */
9485 build_atomic_base (tree type
, unsigned int align
)
9489 /* Make sure its not already registered. */
9490 if ((t
= get_qualified_type (type
, TYPE_QUAL_ATOMIC
)))
9493 t
= build_variant_type_copy (type
);
9494 set_type_quals (t
, TYPE_QUAL_ATOMIC
);
9497 SET_TYPE_ALIGN (t
, align
);
9502 /* Information about the _FloatN and _FloatNx types. This must be in
9503 the same order as the corresponding TI_* enum values. */
9504 const floatn_type_info floatn_nx_types
[NUM_FLOATN_NX_TYPES
] =
9516 /* Create nodes for all integer types (and error_mark_node) using the sizes
9517 of C datatypes. SIGNED_CHAR specifies whether char is signed. */
9520 build_common_tree_nodes (bool signed_char
)
9524 error_mark_node
= make_node (ERROR_MARK
);
9525 TREE_TYPE (error_mark_node
) = error_mark_node
;
9527 initialize_sizetypes ();
9529 /* Define both `signed char' and `unsigned char'. */
9530 signed_char_type_node
= make_signed_type (CHAR_TYPE_SIZE
);
9531 TYPE_STRING_FLAG (signed_char_type_node
) = 1;
9532 unsigned_char_type_node
= make_unsigned_type (CHAR_TYPE_SIZE
);
9533 TYPE_STRING_FLAG (unsigned_char_type_node
) = 1;
9535 /* Define `char', which is like either `signed char' or `unsigned char'
9536 but not the same as either. */
9539 ? make_signed_type (CHAR_TYPE_SIZE
)
9540 : make_unsigned_type (CHAR_TYPE_SIZE
));
9541 TYPE_STRING_FLAG (char_type_node
) = 1;
9543 short_integer_type_node
= make_signed_type (SHORT_TYPE_SIZE
);
9544 short_unsigned_type_node
= make_unsigned_type (SHORT_TYPE_SIZE
);
9545 integer_type_node
= make_signed_type (INT_TYPE_SIZE
);
9546 unsigned_type_node
= make_unsigned_type (INT_TYPE_SIZE
);
9547 long_integer_type_node
= make_signed_type (LONG_TYPE_SIZE
);
9548 long_unsigned_type_node
= make_unsigned_type (LONG_TYPE_SIZE
);
9549 long_long_integer_type_node
= make_signed_type (LONG_LONG_TYPE_SIZE
);
9550 long_long_unsigned_type_node
= make_unsigned_type (LONG_LONG_TYPE_SIZE
);
9552 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
9554 int_n_trees
[i
].signed_type
= make_signed_type (int_n_data
[i
].bitsize
);
9555 int_n_trees
[i
].unsigned_type
= make_unsigned_type (int_n_data
[i
].bitsize
);
9556 TYPE_SIZE (int_n_trees
[i
].signed_type
) = bitsize_int (int_n_data
[i
].bitsize
);
9557 TYPE_SIZE (int_n_trees
[i
].unsigned_type
) = bitsize_int (int_n_data
[i
].bitsize
);
9559 if (int_n_data
[i
].bitsize
> LONG_LONG_TYPE_SIZE
9560 && int_n_enabled_p
[i
])
9562 integer_types
[itk_intN_0
+ i
* 2] = int_n_trees
[i
].signed_type
;
9563 integer_types
[itk_unsigned_intN_0
+ i
* 2] = int_n_trees
[i
].unsigned_type
;
9567 /* Define a boolean type. This type only represents boolean values but
9568 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
9569 boolean_type_node
= make_unsigned_type (BOOL_TYPE_SIZE
);
9570 TREE_SET_CODE (boolean_type_node
, BOOLEAN_TYPE
);
9571 TYPE_PRECISION (boolean_type_node
) = 1;
9572 TYPE_MAX_VALUE (boolean_type_node
) = build_int_cst (boolean_type_node
, 1);
9574 /* Define what type to use for size_t. */
9575 if (strcmp (SIZE_TYPE
, "unsigned int") == 0)
9576 size_type_node
= unsigned_type_node
;
9577 else if (strcmp (SIZE_TYPE
, "long unsigned int") == 0)
9578 size_type_node
= long_unsigned_type_node
;
9579 else if (strcmp (SIZE_TYPE
, "long long unsigned int") == 0)
9580 size_type_node
= long_long_unsigned_type_node
;
9581 else if (strcmp (SIZE_TYPE
, "short unsigned int") == 0)
9582 size_type_node
= short_unsigned_type_node
;
9587 size_type_node
= NULL_TREE
;
9588 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
9589 if (int_n_enabled_p
[i
])
9592 sprintf (name
, "__int%d unsigned", int_n_data
[i
].bitsize
);
9594 if (strcmp (name
, SIZE_TYPE
) == 0)
9596 size_type_node
= int_n_trees
[i
].unsigned_type
;
9599 if (size_type_node
== NULL_TREE
)
9603 /* Define what type to use for ptrdiff_t. */
9604 if (strcmp (PTRDIFF_TYPE
, "int") == 0)
9605 ptrdiff_type_node
= integer_type_node
;
9606 else if (strcmp (PTRDIFF_TYPE
, "long int") == 0)
9607 ptrdiff_type_node
= long_integer_type_node
;
9608 else if (strcmp (PTRDIFF_TYPE
, "long long int") == 0)
9609 ptrdiff_type_node
= long_long_integer_type_node
;
9610 else if (strcmp (PTRDIFF_TYPE
, "short int") == 0)
9611 ptrdiff_type_node
= short_integer_type_node
;
9614 ptrdiff_type_node
= NULL_TREE
;
9615 for (int i
= 0; i
< NUM_INT_N_ENTS
; i
++)
9616 if (int_n_enabled_p
[i
])
9619 sprintf (name
, "__int%d", int_n_data
[i
].bitsize
);
9620 if (strcmp (name
, PTRDIFF_TYPE
) == 0)
9621 ptrdiff_type_node
= int_n_trees
[i
].signed_type
;
9623 if (ptrdiff_type_node
== NULL_TREE
)
9627 /* Fill in the rest of the sized types. Reuse existing type nodes
9629 intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 0);
9630 intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 0);
9631 intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 0);
9632 intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 0);
9633 intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 0);
9635 unsigned_intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 1);
9636 unsigned_intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 1);
9637 unsigned_intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 1);
9638 unsigned_intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 1);
9639 unsigned_intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 1);
9641 /* Don't call build_qualified type for atomics. That routine does
9642 special processing for atomics, and until they are initialized
9643 it's better not to make that call.
9645 Check to see if there is a target override for atomic types. */
9647 atomicQI_type_node
= build_atomic_base (unsigned_intQI_type_node
,
9648 targetm
.atomic_align_for_mode (QImode
));
9649 atomicHI_type_node
= build_atomic_base (unsigned_intHI_type_node
,
9650 targetm
.atomic_align_for_mode (HImode
));
9651 atomicSI_type_node
= build_atomic_base (unsigned_intSI_type_node
,
9652 targetm
.atomic_align_for_mode (SImode
));
9653 atomicDI_type_node
= build_atomic_base (unsigned_intDI_type_node
,
9654 targetm
.atomic_align_for_mode (DImode
));
9655 atomicTI_type_node
= build_atomic_base (unsigned_intTI_type_node
,
9656 targetm
.atomic_align_for_mode (TImode
));
9658 access_public_node
= get_identifier ("public");
9659 access_protected_node
= get_identifier ("protected");
9660 access_private_node
= get_identifier ("private");
9662 /* Define these next since types below may used them. */
9663 integer_zero_node
= build_int_cst (integer_type_node
, 0);
9664 integer_one_node
= build_int_cst (integer_type_node
, 1);
9665 integer_three_node
= build_int_cst (integer_type_node
, 3);
9666 integer_minus_one_node
= build_int_cst (integer_type_node
, -1);
9668 size_zero_node
= size_int (0);
9669 size_one_node
= size_int (1);
9670 bitsize_zero_node
= bitsize_int (0);
9671 bitsize_one_node
= bitsize_int (1);
9672 bitsize_unit_node
= bitsize_int (BITS_PER_UNIT
);
9674 boolean_false_node
= TYPE_MIN_VALUE (boolean_type_node
);
9675 boolean_true_node
= TYPE_MAX_VALUE (boolean_type_node
);
9677 void_type_node
= make_node (VOID_TYPE
);
9678 layout_type (void_type_node
);
9680 pointer_bounds_type_node
= targetm
.chkp_bound_type ();
9682 /* We are not going to have real types in C with less than byte alignment,
9683 so we might as well not have any types that claim to have it. */
9684 SET_TYPE_ALIGN (void_type_node
, BITS_PER_UNIT
);
9685 TYPE_USER_ALIGN (void_type_node
) = 0;
9687 void_node
= make_node (VOID_CST
);
9688 TREE_TYPE (void_node
) = void_type_node
;
9690 null_pointer_node
= build_int_cst (build_pointer_type (void_type_node
), 0);
9691 layout_type (TREE_TYPE (null_pointer_node
));
9693 ptr_type_node
= build_pointer_type (void_type_node
);
9695 = build_pointer_type (build_type_variant (void_type_node
, 1, 0));
9696 for (unsigned i
= 0;
9697 i
< sizeof (builtin_structptr_types
) / sizeof (builtin_structptr_type
);
9699 builtin_structptr_types
[i
].node
= builtin_structptr_types
[i
].base
;
9701 pointer_sized_int_node
= build_nonstandard_integer_type (POINTER_SIZE
, 1);
9703 float_type_node
= make_node (REAL_TYPE
);
9704 TYPE_PRECISION (float_type_node
) = FLOAT_TYPE_SIZE
;
9705 layout_type (float_type_node
);
9707 double_type_node
= make_node (REAL_TYPE
);
9708 TYPE_PRECISION (double_type_node
) = DOUBLE_TYPE_SIZE
;
9709 layout_type (double_type_node
);
9711 long_double_type_node
= make_node (REAL_TYPE
);
9712 TYPE_PRECISION (long_double_type_node
) = LONG_DOUBLE_TYPE_SIZE
;
9713 layout_type (long_double_type_node
);
9715 for (i
= 0; i
< NUM_FLOATN_NX_TYPES
; i
++)
9717 int n
= floatn_nx_types
[i
].n
;
9718 bool extended
= floatn_nx_types
[i
].extended
;
9719 scalar_float_mode mode
;
9720 if (!targetm
.floatn_mode (n
, extended
).exists (&mode
))
9722 int precision
= GET_MODE_PRECISION (mode
);
9723 /* Work around the rs6000 KFmode having precision 113 not
9725 const struct real_format
*fmt
= REAL_MODE_FORMAT (mode
);
9726 gcc_assert (fmt
->b
== 2 && fmt
->emin
+ fmt
->emax
== 3);
9727 int min_precision
= fmt
->p
+ ceil_log2 (fmt
->emax
- fmt
->emin
);
9729 gcc_assert (min_precision
== n
);
9730 if (precision
< min_precision
)
9731 precision
= min_precision
;
9732 FLOATN_NX_TYPE_NODE (i
) = make_node (REAL_TYPE
);
9733 TYPE_PRECISION (FLOATN_NX_TYPE_NODE (i
)) = precision
;
9734 layout_type (FLOATN_NX_TYPE_NODE (i
));
9735 SET_TYPE_MODE (FLOATN_NX_TYPE_NODE (i
), mode
);
9738 float_ptr_type_node
= build_pointer_type (float_type_node
);
9739 double_ptr_type_node
= build_pointer_type (double_type_node
);
9740 long_double_ptr_type_node
= build_pointer_type (long_double_type_node
);
9741 integer_ptr_type_node
= build_pointer_type (integer_type_node
);
9743 /* Fixed size integer types. */
9744 uint16_type_node
= make_or_reuse_type (16, 1);
9745 uint32_type_node
= make_or_reuse_type (32, 1);
9746 uint64_type_node
= make_or_reuse_type (64, 1);
9748 /* Decimal float types. */
9749 dfloat32_type_node
= make_node (REAL_TYPE
);
9750 TYPE_PRECISION (dfloat32_type_node
) = DECIMAL32_TYPE_SIZE
;
9751 SET_TYPE_MODE (dfloat32_type_node
, SDmode
);
9752 layout_type (dfloat32_type_node
);
9753 dfloat32_ptr_type_node
= build_pointer_type (dfloat32_type_node
);
9755 dfloat64_type_node
= make_node (REAL_TYPE
);
9756 TYPE_PRECISION (dfloat64_type_node
) = DECIMAL64_TYPE_SIZE
;
9757 SET_TYPE_MODE (dfloat64_type_node
, DDmode
);
9758 layout_type (dfloat64_type_node
);
9759 dfloat64_ptr_type_node
= build_pointer_type (dfloat64_type_node
);
9761 dfloat128_type_node
= make_node (REAL_TYPE
);
9762 TYPE_PRECISION (dfloat128_type_node
) = DECIMAL128_TYPE_SIZE
;
9763 SET_TYPE_MODE (dfloat128_type_node
, TDmode
);
9764 layout_type (dfloat128_type_node
);
9765 dfloat128_ptr_type_node
= build_pointer_type (dfloat128_type_node
);
9767 complex_integer_type_node
= build_complex_type (integer_type_node
, true);
9768 complex_float_type_node
= build_complex_type (float_type_node
, true);
9769 complex_double_type_node
= build_complex_type (double_type_node
, true);
9770 complex_long_double_type_node
= build_complex_type (long_double_type_node
,
9773 for (i
= 0; i
< NUM_FLOATN_NX_TYPES
; i
++)
9775 if (FLOATN_NX_TYPE_NODE (i
) != NULL_TREE
)
9776 COMPLEX_FLOATN_NX_TYPE_NODE (i
)
9777 = build_complex_type (FLOATN_NX_TYPE_NODE (i
));
9780 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
9781 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
9782 sat_ ## KIND ## _type_node = \
9783 make_sat_signed_ ## KIND ## _type (SIZE); \
9784 sat_unsigned_ ## KIND ## _type_node = \
9785 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9786 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9787 unsigned_ ## KIND ## _type_node = \
9788 make_unsigned_ ## KIND ## _type (SIZE);
9790 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
9791 sat_ ## WIDTH ## KIND ## _type_node = \
9792 make_sat_signed_ ## KIND ## _type (SIZE); \
9793 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
9794 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9795 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9796 unsigned_ ## WIDTH ## KIND ## _type_node = \
9797 make_unsigned_ ## KIND ## _type (SIZE);
9799 /* Make fixed-point type nodes based on four different widths. */
9800 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
9801 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
9802 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
9803 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
9804 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
9806 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
9807 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
9808 NAME ## _type_node = \
9809 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
9810 u ## NAME ## _type_node = \
9811 make_or_reuse_unsigned_ ## KIND ## _type \
9812 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
9813 sat_ ## NAME ## _type_node = \
9814 make_or_reuse_sat_signed_ ## KIND ## _type \
9815 (GET_MODE_BITSIZE (MODE ## mode)); \
9816 sat_u ## NAME ## _type_node = \
9817 make_or_reuse_sat_unsigned_ ## KIND ## _type \
9818 (GET_MODE_BITSIZE (U ## MODE ## mode));
9820 /* Fixed-point type and mode nodes. */
9821 MAKE_FIXED_TYPE_NODE_FAMILY (fract
, FRACT
)
9822 MAKE_FIXED_TYPE_NODE_FAMILY (accum
, ACCUM
)
9823 MAKE_FIXED_MODE_NODE (fract
, qq
, QQ
)
9824 MAKE_FIXED_MODE_NODE (fract
, hq
, HQ
)
9825 MAKE_FIXED_MODE_NODE (fract
, sq
, SQ
)
9826 MAKE_FIXED_MODE_NODE (fract
, dq
, DQ
)
9827 MAKE_FIXED_MODE_NODE (fract
, tq
, TQ
)
9828 MAKE_FIXED_MODE_NODE (accum
, ha
, HA
)
9829 MAKE_FIXED_MODE_NODE (accum
, sa
, SA
)
9830 MAKE_FIXED_MODE_NODE (accum
, da
, DA
)
9831 MAKE_FIXED_MODE_NODE (accum
, ta
, TA
)
9834 tree t
= targetm
.build_builtin_va_list ();
9836 /* Many back-ends define record types without setting TYPE_NAME.
9837 If we copied the record type here, we'd keep the original
9838 record type without a name. This breaks name mangling. So,
9839 don't copy record types and let c_common_nodes_and_builtins()
9840 declare the type to be __builtin_va_list. */
9841 if (TREE_CODE (t
) != RECORD_TYPE
)
9842 t
= build_variant_type_copy (t
);
9844 va_list_type_node
= t
;
9848 /* Modify DECL for given flags.
9849 TM_PURE attribute is set only on types, so the function will modify
9850 DECL's type when ECF_TM_PURE is used. */
9853 set_call_expr_flags (tree decl
, int flags
)
9855 if (flags
& ECF_NOTHROW
)
9856 TREE_NOTHROW (decl
) = 1;
9857 if (flags
& ECF_CONST
)
9858 TREE_READONLY (decl
) = 1;
9859 if (flags
& ECF_PURE
)
9860 DECL_PURE_P (decl
) = 1;
9861 if (flags
& ECF_LOOPING_CONST_OR_PURE
)
9862 DECL_LOOPING_CONST_OR_PURE_P (decl
) = 1;
9863 if (flags
& ECF_NOVOPS
)
9864 DECL_IS_NOVOPS (decl
) = 1;
9865 if (flags
& ECF_NORETURN
)
9866 TREE_THIS_VOLATILE (decl
) = 1;
9867 if (flags
& ECF_MALLOC
)
9868 DECL_IS_MALLOC (decl
) = 1;
9869 if (flags
& ECF_RETURNS_TWICE
)
9870 DECL_IS_RETURNS_TWICE (decl
) = 1;
9871 if (flags
& ECF_LEAF
)
9872 DECL_ATTRIBUTES (decl
) = tree_cons (get_identifier ("leaf"),
9873 NULL
, DECL_ATTRIBUTES (decl
));
9874 if (flags
& ECF_COLD
)
9875 DECL_ATTRIBUTES (decl
) = tree_cons (get_identifier ("cold"),
9876 NULL
, DECL_ATTRIBUTES (decl
));
9877 if (flags
& ECF_RET1
)
9878 DECL_ATTRIBUTES (decl
)
9879 = tree_cons (get_identifier ("fn spec"),
9880 build_tree_list (NULL_TREE
, build_string (1, "1")),
9881 DECL_ATTRIBUTES (decl
));
9882 if ((flags
& ECF_TM_PURE
) && flag_tm
)
9883 apply_tm_attr (decl
, get_identifier ("transaction_pure"));
9884 /* Looping const or pure is implied by noreturn.
9885 There is currently no way to declare looping const or looping pure alone. */
9886 gcc_assert (!(flags
& ECF_LOOPING_CONST_OR_PURE
)
9887 || ((flags
& ECF_NORETURN
) && (flags
& (ECF_CONST
| ECF_PURE
))));
9891 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
9894 local_define_builtin (const char *name
, tree type
, enum built_in_function code
,
9895 const char *library_name
, int ecf_flags
)
9899 decl
= add_builtin_function (name
, type
, code
, BUILT_IN_NORMAL
,
9900 library_name
, NULL_TREE
);
9901 set_call_expr_flags (decl
, ecf_flags
);
9903 set_builtin_decl (code
, decl
, true);
9906 /* Call this function after instantiating all builtins that the language
9907 front end cares about. This will build the rest of the builtins
9908 and internal functions that are relied upon by the tree optimizers and
9912 build_common_builtin_nodes (void)
9917 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE
)
9918 || !builtin_decl_explicit_p (BUILT_IN_ABORT
))
9920 ftype
= build_function_type (void_type_node
, void_list_node
);
9921 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE
))
9922 local_define_builtin ("__builtin_unreachable", ftype
,
9923 BUILT_IN_UNREACHABLE
,
9924 "__builtin_unreachable",
9925 ECF_NOTHROW
| ECF_LEAF
| ECF_NORETURN
9926 | ECF_CONST
| ECF_COLD
);
9927 if (!builtin_decl_explicit_p (BUILT_IN_ABORT
))
9928 local_define_builtin ("__builtin_abort", ftype
, BUILT_IN_ABORT
,
9930 ECF_LEAF
| ECF_NORETURN
| ECF_CONST
| ECF_COLD
);
9933 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
)
9934 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
9936 ftype
= build_function_type_list (ptr_type_node
,
9937 ptr_type_node
, const_ptr_type_node
,
9938 size_type_node
, NULL_TREE
);
9940 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
))
9941 local_define_builtin ("__builtin_memcpy", ftype
, BUILT_IN_MEMCPY
,
9942 "memcpy", ECF_NOTHROW
| ECF_LEAF
| ECF_RET1
);
9943 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
9944 local_define_builtin ("__builtin_memmove", ftype
, BUILT_IN_MEMMOVE
,
9945 "memmove", ECF_NOTHROW
| ECF_LEAF
| ECF_RET1
);
9948 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP
))
9950 ftype
= build_function_type_list (integer_type_node
, const_ptr_type_node
,
9951 const_ptr_type_node
, size_type_node
,
9953 local_define_builtin ("__builtin_memcmp", ftype
, BUILT_IN_MEMCMP
,
9954 "memcmp", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
9957 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET
))
9959 ftype
= build_function_type_list (ptr_type_node
,
9960 ptr_type_node
, integer_type_node
,
9961 size_type_node
, NULL_TREE
);
9962 local_define_builtin ("__builtin_memset", ftype
, BUILT_IN_MEMSET
,
9963 "memset", ECF_NOTHROW
| ECF_LEAF
| ECF_RET1
);
9966 /* If we're checking the stack, `alloca' can throw. */
9967 const int alloca_flags
9968 = ECF_MALLOC
| ECF_LEAF
| (flag_stack_check
? 0 : ECF_NOTHROW
);
9970 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA
))
9972 ftype
= build_function_type_list (ptr_type_node
,
9973 size_type_node
, NULL_TREE
);
9974 local_define_builtin ("__builtin_alloca", ftype
, BUILT_IN_ALLOCA
,
9975 "alloca", alloca_flags
);
9978 ftype
= build_function_type_list (ptr_type_node
, size_type_node
,
9979 size_type_node
, NULL_TREE
);
9980 local_define_builtin ("__builtin_alloca_with_align", ftype
,
9981 BUILT_IN_ALLOCA_WITH_ALIGN
,
9982 "__builtin_alloca_with_align",
9985 ftype
= build_function_type_list (ptr_type_node
, size_type_node
,
9986 size_type_node
, size_type_node
, NULL_TREE
);
9987 local_define_builtin ("__builtin_alloca_with_align_and_max", ftype
,
9988 BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX
,
9989 "__builtin_alloca_with_align_and_max",
9992 ftype
= build_function_type_list (void_type_node
,
9993 ptr_type_node
, ptr_type_node
,
9994 ptr_type_node
, NULL_TREE
);
9995 local_define_builtin ("__builtin_init_trampoline", ftype
,
9996 BUILT_IN_INIT_TRAMPOLINE
,
9997 "__builtin_init_trampoline", ECF_NOTHROW
| ECF_LEAF
);
9998 local_define_builtin ("__builtin_init_heap_trampoline", ftype
,
9999 BUILT_IN_INIT_HEAP_TRAMPOLINE
,
10000 "__builtin_init_heap_trampoline",
10001 ECF_NOTHROW
| ECF_LEAF
);
10002 local_define_builtin ("__builtin_init_descriptor", ftype
,
10003 BUILT_IN_INIT_DESCRIPTOR
,
10004 "__builtin_init_descriptor", ECF_NOTHROW
| ECF_LEAF
);
10006 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
10007 local_define_builtin ("__builtin_adjust_trampoline", ftype
,
10008 BUILT_IN_ADJUST_TRAMPOLINE
,
10009 "__builtin_adjust_trampoline",
10010 ECF_CONST
| ECF_NOTHROW
);
10011 local_define_builtin ("__builtin_adjust_descriptor", ftype
,
10012 BUILT_IN_ADJUST_DESCRIPTOR
,
10013 "__builtin_adjust_descriptor",
10014 ECF_CONST
| ECF_NOTHROW
);
10016 ftype
= build_function_type_list (void_type_node
,
10017 ptr_type_node
, ptr_type_node
, NULL_TREE
);
10018 local_define_builtin ("__builtin_nonlocal_goto", ftype
,
10019 BUILT_IN_NONLOCAL_GOTO
,
10020 "__builtin_nonlocal_goto",
10021 ECF_NORETURN
| ECF_NOTHROW
);
10023 ftype
= build_function_type_list (void_type_node
,
10024 ptr_type_node
, ptr_type_node
, NULL_TREE
);
10025 local_define_builtin ("__builtin_setjmp_setup", ftype
,
10026 BUILT_IN_SETJMP_SETUP
,
10027 "__builtin_setjmp_setup", ECF_NOTHROW
);
10029 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
10030 local_define_builtin ("__builtin_setjmp_receiver", ftype
,
10031 BUILT_IN_SETJMP_RECEIVER
,
10032 "__builtin_setjmp_receiver", ECF_NOTHROW
| ECF_LEAF
);
10034 ftype
= build_function_type_list (ptr_type_node
, NULL_TREE
);
10035 local_define_builtin ("__builtin_stack_save", ftype
, BUILT_IN_STACK_SAVE
,
10036 "__builtin_stack_save", ECF_NOTHROW
| ECF_LEAF
);
10038 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
10039 local_define_builtin ("__builtin_stack_restore", ftype
,
10040 BUILT_IN_STACK_RESTORE
,
10041 "__builtin_stack_restore", ECF_NOTHROW
| ECF_LEAF
);
10043 ftype
= build_function_type_list (integer_type_node
, const_ptr_type_node
,
10044 const_ptr_type_node
, size_type_node
,
10046 local_define_builtin ("__builtin_memcmp_eq", ftype
, BUILT_IN_MEMCMP_EQ
,
10047 "__builtin_memcmp_eq",
10048 ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
10050 /* If there's a possibility that we might use the ARM EABI, build the
10051 alternate __cxa_end_cleanup node used to resume from C++. */
10052 if (targetm
.arm_eabi_unwinder
)
10054 ftype
= build_function_type_list (void_type_node
, NULL_TREE
);
10055 local_define_builtin ("__builtin_cxa_end_cleanup", ftype
,
10056 BUILT_IN_CXA_END_CLEANUP
,
10057 "__cxa_end_cleanup", ECF_NORETURN
| ECF_LEAF
);
10060 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
10061 local_define_builtin ("__builtin_unwind_resume", ftype
,
10062 BUILT_IN_UNWIND_RESUME
,
10063 ((targetm_common
.except_unwind_info (&global_options
)
10065 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10068 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS
) == NULL_TREE
)
10070 ftype
= build_function_type_list (ptr_type_node
, integer_type_node
,
10072 local_define_builtin ("__builtin_return_address", ftype
,
10073 BUILT_IN_RETURN_ADDRESS
,
10074 "__builtin_return_address",
10078 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
)
10079 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
10081 ftype
= build_function_type_list (void_type_node
, ptr_type_node
,
10082 ptr_type_node
, NULL_TREE
);
10083 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
))
10084 local_define_builtin ("__cyg_profile_func_enter", ftype
,
10085 BUILT_IN_PROFILE_FUNC_ENTER
,
10086 "__cyg_profile_func_enter", 0);
10087 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
10088 local_define_builtin ("__cyg_profile_func_exit", ftype
,
10089 BUILT_IN_PROFILE_FUNC_EXIT
,
10090 "__cyg_profile_func_exit", 0);
10093 /* The exception object and filter values from the runtime. The argument
10094 must be zero before exception lowering, i.e. from the front end. After
10095 exception lowering, it will be the region number for the exception
10096 landing pad. These functions are PURE instead of CONST to prevent
10097 them from being hoisted past the exception edge that will initialize
10098 its value in the landing pad. */
10099 ftype
= build_function_type_list (ptr_type_node
,
10100 integer_type_node
, NULL_TREE
);
10101 ecf_flags
= ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
;
10102 /* Only use TM_PURE if we have TM language support. */
10103 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1
))
10104 ecf_flags
|= ECF_TM_PURE
;
10105 local_define_builtin ("__builtin_eh_pointer", ftype
, BUILT_IN_EH_POINTER
,
10106 "__builtin_eh_pointer", ecf_flags
);
10108 tmp
= lang_hooks
.types
.type_for_mode (targetm
.eh_return_filter_mode (), 0);
10109 ftype
= build_function_type_list (tmp
, integer_type_node
, NULL_TREE
);
10110 local_define_builtin ("__builtin_eh_filter", ftype
, BUILT_IN_EH_FILTER
,
10111 "__builtin_eh_filter", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
10113 ftype
= build_function_type_list (void_type_node
,
10114 integer_type_node
, integer_type_node
,
10116 local_define_builtin ("__builtin_eh_copy_values", ftype
,
10117 BUILT_IN_EH_COPY_VALUES
,
10118 "__builtin_eh_copy_values", ECF_NOTHROW
);
10120 /* Complex multiplication and division. These are handled as builtins
10121 rather than optabs because emit_library_call_value doesn't support
10122 complex. Further, we can do slightly better with folding these
10123 beasties if the real and complex parts of the arguments are separate. */
10127 for (mode
= MIN_MODE_COMPLEX_FLOAT
; mode
<= MAX_MODE_COMPLEX_FLOAT
; ++mode
)
10129 char mode_name_buf
[4], *q
;
10131 enum built_in_function mcode
, dcode
;
10132 tree type
, inner_type
;
10133 const char *prefix
= "__";
10135 if (targetm
.libfunc_gnu_prefix
)
10138 type
= lang_hooks
.types
.type_for_mode ((machine_mode
) mode
, 0);
10141 inner_type
= TREE_TYPE (type
);
10143 ftype
= build_function_type_list (type
, inner_type
, inner_type
,
10144 inner_type
, inner_type
, NULL_TREE
);
10146 mcode
= ((enum built_in_function
)
10147 (BUILT_IN_COMPLEX_MUL_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
10148 dcode
= ((enum built_in_function
)
10149 (BUILT_IN_COMPLEX_DIV_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
10151 for (p
= GET_MODE_NAME (mode
), q
= mode_name_buf
; *p
; p
++, q
++)
10155 built_in_names
[mcode
] = concat (prefix
, "mul", mode_name_buf
, "3",
10157 local_define_builtin (built_in_names
[mcode
], ftype
, mcode
,
10158 built_in_names
[mcode
],
10159 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
10161 built_in_names
[dcode
] = concat (prefix
, "div", mode_name_buf
, "3",
10163 local_define_builtin (built_in_names
[dcode
], ftype
, dcode
,
10164 built_in_names
[dcode
],
10165 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
10169 init_internal_fns ();
10172 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10175 If we requested a pointer to a vector, build up the pointers that
10176 we stripped off while looking for the inner type. Similarly for
10177 return values from functions.
10179 The argument TYPE is the top of the chain, and BOTTOM is the
10180 new type which we will point to. */
10183 reconstruct_complex_type (tree type
, tree bottom
)
10187 if (TREE_CODE (type
) == POINTER_TYPE
)
10189 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10190 outer
= build_pointer_type_for_mode (inner
, TYPE_MODE (type
),
10191 TYPE_REF_CAN_ALIAS_ALL (type
));
10193 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
10195 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10196 outer
= build_reference_type_for_mode (inner
, TYPE_MODE (type
),
10197 TYPE_REF_CAN_ALIAS_ALL (type
));
10199 else if (TREE_CODE (type
) == ARRAY_TYPE
)
10201 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10202 outer
= build_array_type (inner
, TYPE_DOMAIN (type
));
10204 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
10206 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10207 outer
= build_function_type (inner
, TYPE_ARG_TYPES (type
));
10209 else if (TREE_CODE (type
) == METHOD_TYPE
)
10211 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10212 /* The build_method_type_directly() routine prepends 'this' to argument list,
10213 so we must compensate by getting rid of it. */
10215 = build_method_type_directly
10216 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type
))),
10218 TREE_CHAIN (TYPE_ARG_TYPES (type
)));
10220 else if (TREE_CODE (type
) == OFFSET_TYPE
)
10222 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10223 outer
= build_offset_type (TYPE_OFFSET_BASETYPE (type
), inner
);
10228 return build_type_attribute_qual_variant (outer
, TYPE_ATTRIBUTES (type
),
10229 TYPE_QUALS (type
));
10232 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10235 build_vector_type_for_mode (tree innertype
, machine_mode mode
)
10238 unsigned int bitsize
;
10240 switch (GET_MODE_CLASS (mode
))
10242 case MODE_VECTOR_INT
:
10243 case MODE_VECTOR_FLOAT
:
10244 case MODE_VECTOR_FRACT
:
10245 case MODE_VECTOR_UFRACT
:
10246 case MODE_VECTOR_ACCUM
:
10247 case MODE_VECTOR_UACCUM
:
10248 nunits
= GET_MODE_NUNITS (mode
);
10252 /* Check that there are no leftover bits. */
10253 bitsize
= GET_MODE_BITSIZE (as_a
<scalar_int_mode
> (mode
));
10254 gcc_assert (bitsize
% TREE_INT_CST_LOW (TYPE_SIZE (innertype
)) == 0);
10255 nunits
= bitsize
/ TREE_INT_CST_LOW (TYPE_SIZE (innertype
));
10259 gcc_unreachable ();
10262 return make_vector_type (innertype
, nunits
, mode
);
10265 /* Similarly, but takes the inner type and number of units, which must be
10269 build_vector_type (tree innertype
, int nunits
)
10271 return make_vector_type (innertype
, nunits
, VOIDmode
);
10274 /* Build truth vector with specified length and number of units. */
10277 build_truth_vector_type (unsigned nunits
, unsigned vector_size
)
10279 machine_mode mask_mode
10280 = targetm
.vectorize
.get_mask_mode (nunits
, vector_size
).else_blk ();
10282 unsigned HOST_WIDE_INT vsize
;
10283 if (mask_mode
== BLKmode
)
10284 vsize
= vector_size
* BITS_PER_UNIT
;
10286 vsize
= GET_MODE_BITSIZE (mask_mode
);
10288 unsigned HOST_WIDE_INT esize
= vsize
/ nunits
;
10289 gcc_assert (esize
* nunits
== vsize
);
10291 tree bool_type
= build_nonstandard_boolean_type (esize
);
10293 return make_vector_type (bool_type
, nunits
, mask_mode
);
10296 /* Returns a vector type corresponding to a comparison of VECTYPE. */
10299 build_same_sized_truth_vector_type (tree vectype
)
10301 if (VECTOR_BOOLEAN_TYPE_P (vectype
))
10304 unsigned HOST_WIDE_INT size
= GET_MODE_SIZE (TYPE_MODE (vectype
));
10307 size
= tree_to_uhwi (TYPE_SIZE_UNIT (vectype
));
10309 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (vectype
), size
);
10312 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10315 build_opaque_vector_type (tree innertype
, int nunits
)
10317 tree t
= make_vector_type (innertype
, nunits
, VOIDmode
);
10319 /* We always build the non-opaque variant before the opaque one,
10320 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10321 cand
= TYPE_NEXT_VARIANT (t
);
10323 && TYPE_VECTOR_OPAQUE (cand
)
10324 && check_qualified_type (cand
, t
, TYPE_QUALS (t
)))
10326 /* Othewise build a variant type and make sure to queue it after
10327 the non-opaque type. */
10328 cand
= build_distinct_type_copy (t
);
10329 TYPE_VECTOR_OPAQUE (cand
) = true;
10330 TYPE_CANONICAL (cand
) = TYPE_CANONICAL (t
);
10331 TYPE_NEXT_VARIANT (cand
) = TYPE_NEXT_VARIANT (t
);
10332 TYPE_NEXT_VARIANT (t
) = cand
;
10333 TYPE_MAIN_VARIANT (cand
) = TYPE_MAIN_VARIANT (t
);
10337 /* Return the value of element I of VECTOR_CST T as a wide_int. */
10340 vector_cst_int_elt (const_tree t
, unsigned int i
)
10342 /* First handle elements that are directly encoded. */
10343 unsigned int encoded_nelts
= vector_cst_encoded_nelts (t
);
10344 if (i
< encoded_nelts
)
10345 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t
, i
));
10347 /* Identify the pattern that contains element I and work out the index of
10348 the last encoded element for that pattern. */
10349 unsigned int npatterns
= VECTOR_CST_NPATTERNS (t
);
10350 unsigned int pattern
= i
% npatterns
;
10351 unsigned int count
= i
/ npatterns
;
10352 unsigned int final_i
= encoded_nelts
- npatterns
+ pattern
;
10354 /* If there are no steps, the final encoded value is the right one. */
10355 if (!VECTOR_CST_STEPPED_P (t
))
10356 return wi::to_wide (VECTOR_CST_ENCODED_ELT (t
, final_i
));
10358 /* Otherwise work out the value from the last two encoded elements. */
10359 tree v1
= VECTOR_CST_ENCODED_ELT (t
, final_i
- npatterns
);
10360 tree v2
= VECTOR_CST_ENCODED_ELT (t
, final_i
);
10361 wide_int diff
= wi::to_wide (v2
) - wi::to_wide (v1
);
10362 return wi::to_wide (v2
) + (count
- 2) * diff
;
10365 /* Return the value of element I of VECTOR_CST T. */
10368 vector_cst_elt (const_tree t
, unsigned int i
)
10370 /* First handle elements that are directly encoded. */
10371 unsigned int encoded_nelts
= vector_cst_encoded_nelts (t
);
10372 if (i
< encoded_nelts
)
10373 return VECTOR_CST_ENCODED_ELT (t
, i
);
10375 /* If there are no steps, the final encoded value is the right one. */
10376 if (!VECTOR_CST_STEPPED_P (t
))
10378 /* Identify the pattern that contains element I and work out the index of
10379 the last encoded element for that pattern. */
10380 unsigned int npatterns
= VECTOR_CST_NPATTERNS (t
);
10381 unsigned int pattern
= i
% npatterns
;
10382 unsigned int final_i
= encoded_nelts
- npatterns
+ pattern
;
10383 return VECTOR_CST_ENCODED_ELT (t
, final_i
);
10386 /* Otherwise work out the value from the last two encoded elements. */
10387 return wide_int_to_tree (TREE_TYPE (TREE_TYPE (t
)),
10388 vector_cst_int_elt (t
, i
));
10391 /* Given an initializer INIT, return TRUE if INIT is zero or some
10392 aggregate of zeros. Otherwise return FALSE. */
10394 initializer_zerop (const_tree init
)
10400 switch (TREE_CODE (init
))
10403 return integer_zerop (init
);
10406 /* ??? Note that this is not correct for C4X float formats. There,
10407 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
10408 negative exponent. */
10409 return real_zerop (init
)
10410 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init
));
10413 return fixed_zerop (init
);
10416 return integer_zerop (init
)
10417 || (real_zerop (init
)
10418 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init
)))
10419 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init
))));
10422 return (VECTOR_CST_NPATTERNS (init
) == 1
10423 && VECTOR_CST_DUPLICATE_P (init
)
10424 && initializer_zerop (VECTOR_CST_ENCODED_ELT (init
, 0)));
10428 unsigned HOST_WIDE_INT idx
;
10430 if (TREE_CLOBBER_P (init
))
10432 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init
), idx
, elt
)
10433 if (!initializer_zerop (elt
))
10442 /* We need to loop through all elements to handle cases like
10443 "\0" and "\0foobar". */
10444 for (i
= 0; i
< TREE_STRING_LENGTH (init
); ++i
)
10445 if (TREE_STRING_POINTER (init
)[i
] != '\0')
10456 /* Check if vector VEC consists of all the equal elements and
10457 that the number of elements corresponds to the type of VEC.
10458 The function returns first element of the vector
10459 or NULL_TREE if the vector is not uniform. */
10461 uniform_vector_p (const_tree vec
)
10466 if (vec
== NULL_TREE
)
10469 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec
)));
10471 if (TREE_CODE (vec
) == VECTOR_CST
)
10473 if (VECTOR_CST_NPATTERNS (vec
) == 1 && VECTOR_CST_DUPLICATE_P (vec
))
10474 return VECTOR_CST_ENCODED_ELT (vec
, 0);
10478 else if (TREE_CODE (vec
) == CONSTRUCTOR
)
10480 first
= error_mark_node
;
10482 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec
), i
, t
)
10489 if (!operand_equal_p (first
, t
, 0))
10492 if (i
!= TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec
)))
10501 /* Build an empty statement at location LOC. */
10504 build_empty_stmt (location_t loc
)
10506 tree t
= build1 (NOP_EXPR
, void_type_node
, size_zero_node
);
10507 SET_EXPR_LOCATION (t
, loc
);
10512 /* Build an OpenMP clause with code CODE. LOC is the location of the
10516 build_omp_clause (location_t loc
, enum omp_clause_code code
)
10521 length
= omp_clause_num_ops
[code
];
10522 size
= (sizeof (struct tree_omp_clause
) + (length
- 1) * sizeof (tree
));
10524 record_node_allocation_statistics (OMP_CLAUSE
, size
);
10526 t
= (tree
) ggc_internal_alloc (size
);
10527 memset (t
, 0, size
);
10528 TREE_SET_CODE (t
, OMP_CLAUSE
);
10529 OMP_CLAUSE_SET_CODE (t
, code
);
10530 OMP_CLAUSE_LOCATION (t
) = loc
;
10535 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10536 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10537 Except for the CODE and operand count field, other storage for the
10538 object is initialized to zeros. */
10541 build_vl_exp (enum tree_code code
, int len MEM_STAT_DECL
)
10544 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_exp
);
10546 gcc_assert (TREE_CODE_CLASS (code
) == tcc_vl_exp
);
10547 gcc_assert (len
>= 1);
10549 record_node_allocation_statistics (code
, length
);
10551 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
10553 TREE_SET_CODE (t
, code
);
10555 /* Can't use TREE_OPERAND to store the length because if checking is
10556 enabled, it will try to check the length before we store it. :-P */
10557 t
->exp
.operands
[0] = build_int_cst (sizetype
, len
);
10562 /* Helper function for build_call_* functions; build a CALL_EXPR with
10563 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10564 the argument slots. */
10567 build_call_1 (tree return_type
, tree fn
, int nargs
)
10571 t
= build_vl_exp (CALL_EXPR
, nargs
+ 3);
10572 TREE_TYPE (t
) = return_type
;
10573 CALL_EXPR_FN (t
) = fn
;
10574 CALL_EXPR_STATIC_CHAIN (t
) = NULL
;
10579 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10580 FN and a null static chain slot. NARGS is the number of call arguments
10581 which are specified as "..." arguments. */
10584 build_call_nary (tree return_type
, tree fn
, int nargs
, ...)
10588 va_start (args
, nargs
);
10589 ret
= build_call_valist (return_type
, fn
, nargs
, args
);
10594 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10595 FN and a null static chain slot. NARGS is the number of call arguments
10596 which are specified as a va_list ARGS. */
10599 build_call_valist (tree return_type
, tree fn
, int nargs
, va_list args
)
10604 t
= build_call_1 (return_type
, fn
, nargs
);
10605 for (i
= 0; i
< nargs
; i
++)
10606 CALL_EXPR_ARG (t
, i
) = va_arg (args
, tree
);
10607 process_call_operands (t
);
10611 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10612 FN and a null static chain slot. NARGS is the number of call arguments
10613 which are specified as a tree array ARGS. */
10616 build_call_array_loc (location_t loc
, tree return_type
, tree fn
,
10617 int nargs
, const tree
*args
)
10622 t
= build_call_1 (return_type
, fn
, nargs
);
10623 for (i
= 0; i
< nargs
; i
++)
10624 CALL_EXPR_ARG (t
, i
) = args
[i
];
10625 process_call_operands (t
);
10626 SET_EXPR_LOCATION (t
, loc
);
10630 /* Like build_call_array, but takes a vec. */
10633 build_call_vec (tree return_type
, tree fn
, vec
<tree
, va_gc
> *args
)
10638 ret
= build_call_1 (return_type
, fn
, vec_safe_length (args
));
10639 FOR_EACH_VEC_SAFE_ELT (args
, ix
, t
)
10640 CALL_EXPR_ARG (ret
, ix
) = t
;
10641 process_call_operands (ret
);
10645 /* Conveniently construct a function call expression. FNDECL names the
10646 function to be called and N arguments are passed in the array
10650 build_call_expr_loc_array (location_t loc
, tree fndecl
, int n
, tree
*argarray
)
10652 tree fntype
= TREE_TYPE (fndecl
);
10653 tree fn
= build1 (ADDR_EXPR
, build_pointer_type (fntype
), fndecl
);
10655 return fold_build_call_array_loc (loc
, TREE_TYPE (fntype
), fn
, n
, argarray
);
10658 /* Conveniently construct a function call expression. FNDECL names the
10659 function to be called and the arguments are passed in the vector
10663 build_call_expr_loc_vec (location_t loc
, tree fndecl
, vec
<tree
, va_gc
> *vec
)
10665 return build_call_expr_loc_array (loc
, fndecl
, vec_safe_length (vec
),
10666 vec_safe_address (vec
));
10670 /* Conveniently construct a function call expression. FNDECL names the
10671 function to be called, N is the number of arguments, and the "..."
10672 parameters are the argument expressions. */
10675 build_call_expr_loc (location_t loc
, tree fndecl
, int n
, ...)
10678 tree
*argarray
= XALLOCAVEC (tree
, n
);
10682 for (i
= 0; i
< n
; i
++)
10683 argarray
[i
] = va_arg (ap
, tree
);
10685 return build_call_expr_loc_array (loc
, fndecl
, n
, argarray
);
10688 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
10689 varargs macros aren't supported by all bootstrap compilers. */
10692 build_call_expr (tree fndecl
, int n
, ...)
10695 tree
*argarray
= XALLOCAVEC (tree
, n
);
10699 for (i
= 0; i
< n
; i
++)
10700 argarray
[i
] = va_arg (ap
, tree
);
10702 return build_call_expr_loc_array (UNKNOWN_LOCATION
, fndecl
, n
, argarray
);
10705 /* Build an internal call to IFN, with arguments ARGS[0:N-1] and with return
10706 type TYPE. This is just like CALL_EXPR, except its CALL_EXPR_FN is NULL.
10707 It will get gimplified later into an ordinary internal function. */
10710 build_call_expr_internal_loc_array (location_t loc
, internal_fn ifn
,
10711 tree type
, int n
, const tree
*args
)
10713 tree t
= build_call_1 (type
, NULL_TREE
, n
);
10714 for (int i
= 0; i
< n
; ++i
)
10715 CALL_EXPR_ARG (t
, i
) = args
[i
];
10716 SET_EXPR_LOCATION (t
, loc
);
10717 CALL_EXPR_IFN (t
) = ifn
;
10721 /* Build internal call expression. This is just like CALL_EXPR, except
10722 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
10723 internal function. */
10726 build_call_expr_internal_loc (location_t loc
, enum internal_fn ifn
,
10727 tree type
, int n
, ...)
10730 tree
*argarray
= XALLOCAVEC (tree
, n
);
10734 for (i
= 0; i
< n
; i
++)
10735 argarray
[i
] = va_arg (ap
, tree
);
10737 return build_call_expr_internal_loc_array (loc
, ifn
, type
, n
, argarray
);
10740 /* Return a function call to FN, if the target is guaranteed to support it,
10743 N is the number of arguments, passed in the "...", and TYPE is the
10744 type of the return value. */
10747 maybe_build_call_expr_loc (location_t loc
, combined_fn fn
, tree type
,
10751 tree
*argarray
= XALLOCAVEC (tree
, n
);
10755 for (i
= 0; i
< n
; i
++)
10756 argarray
[i
] = va_arg (ap
, tree
);
10758 if (internal_fn_p (fn
))
10760 internal_fn ifn
= as_internal_fn (fn
);
10761 if (direct_internal_fn_p (ifn
))
10763 tree_pair types
= direct_internal_fn_types (ifn
, type
, argarray
);
10764 if (!direct_internal_fn_supported_p (ifn
, types
,
10765 OPTIMIZE_FOR_BOTH
))
10768 return build_call_expr_internal_loc_array (loc
, ifn
, type
, n
, argarray
);
10772 tree fndecl
= builtin_decl_implicit (as_builtin_fn (fn
));
10775 return build_call_expr_loc_array (loc
, fndecl
, n
, argarray
);
10779 /* Return a function call to the appropriate builtin alloca variant.
10781 SIZE is the size to be allocated. ALIGN, if non-zero, is the requested
10782 alignment of the allocated area. MAX_SIZE, if non-negative, is an upper
10783 bound for SIZE in case it is not a fixed value. */
10786 build_alloca_call_expr (tree size
, unsigned int align
, HOST_WIDE_INT max_size
)
10790 tree t
= builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX
);
10792 build_call_expr (t
, 3, size
, size_int (align
), size_int (max_size
));
10794 else if (align
> 0)
10796 tree t
= builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
);
10797 return build_call_expr (t
, 2, size
, size_int (align
));
10801 tree t
= builtin_decl_explicit (BUILT_IN_ALLOCA
);
10802 return build_call_expr (t
, 1, size
);
10806 /* Create a new constant string literal and return a char* pointer to it.
10807 The STRING_CST value is the LEN characters at STR. */
10809 build_string_literal (int len
, const char *str
)
10811 tree t
, elem
, index
, type
;
10813 t
= build_string (len
, str
);
10814 elem
= build_type_variant (char_type_node
, 1, 0);
10815 index
= build_index_type (size_int (len
- 1));
10816 type
= build_array_type (elem
, index
);
10817 TREE_TYPE (t
) = type
;
10818 TREE_CONSTANT (t
) = 1;
10819 TREE_READONLY (t
) = 1;
10820 TREE_STATIC (t
) = 1;
10822 type
= build_pointer_type (elem
);
10823 t
= build1 (ADDR_EXPR
, type
,
10824 build4 (ARRAY_REF
, elem
,
10825 t
, integer_zero_node
, NULL_TREE
, NULL_TREE
));
10831 /* Return true if T (assumed to be a DECL) must be assigned a memory
10835 needs_to_live_in_memory (const_tree t
)
10837 return (TREE_ADDRESSABLE (t
)
10838 || is_global_var (t
)
10839 || (TREE_CODE (t
) == RESULT_DECL
10840 && !DECL_BY_REFERENCE (t
)
10841 && aggregate_value_p (t
, current_function_decl
)));
10844 /* Return value of a constant X and sign-extend it. */
10847 int_cst_value (const_tree x
)
10849 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
10850 unsigned HOST_WIDE_INT val
= TREE_INT_CST_LOW (x
);
10852 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10853 gcc_assert (cst_and_fits_in_hwi (x
));
10855 if (bits
< HOST_BITS_PER_WIDE_INT
)
10857 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
10859 val
|= HOST_WIDE_INT_M1U
<< (bits
- 1) << 1;
10861 val
&= ~(HOST_WIDE_INT_M1U
<< (bits
- 1) << 1);
10867 /* If TYPE is an integral or pointer type, return an integer type with
10868 the same precision which is unsigned iff UNSIGNEDP is true, or itself
10869 if TYPE is already an integer type of signedness UNSIGNEDP. */
10872 signed_or_unsigned_type_for (int unsignedp
, tree type
)
10874 if (TREE_CODE (type
) == INTEGER_TYPE
&& TYPE_UNSIGNED (type
) == unsignedp
)
10877 if (TREE_CODE (type
) == VECTOR_TYPE
)
10879 tree inner
= TREE_TYPE (type
);
10880 tree inner2
= signed_or_unsigned_type_for (unsignedp
, inner
);
10883 if (inner
== inner2
)
10885 return build_vector_type (inner2
, TYPE_VECTOR_SUBPARTS (type
));
10888 if (!INTEGRAL_TYPE_P (type
)
10889 && !POINTER_TYPE_P (type
)
10890 && TREE_CODE (type
) != OFFSET_TYPE
)
10893 return build_nonstandard_integer_type (TYPE_PRECISION (type
), unsignedp
);
10896 /* If TYPE is an integral or pointer type, return an integer type with
10897 the same precision which is unsigned, or itself if TYPE is already an
10898 unsigned integer type. */
10901 unsigned_type_for (tree type
)
10903 return signed_or_unsigned_type_for (1, type
);
10906 /* If TYPE is an integral or pointer type, return an integer type with
10907 the same precision which is signed, or itself if TYPE is already a
10908 signed integer type. */
10911 signed_type_for (tree type
)
10913 return signed_or_unsigned_type_for (0, type
);
10916 /* If TYPE is a vector type, return a signed integer vector type with the
10917 same width and number of subparts. Otherwise return boolean_type_node. */
10920 truth_type_for (tree type
)
10922 if (TREE_CODE (type
) == VECTOR_TYPE
)
10924 if (VECTOR_BOOLEAN_TYPE_P (type
))
10926 return build_truth_vector_type (TYPE_VECTOR_SUBPARTS (type
),
10927 GET_MODE_SIZE (TYPE_MODE (type
)));
10930 return boolean_type_node
;
10933 /* Returns the largest value obtainable by casting something in INNER type to
10937 upper_bound_in_type (tree outer
, tree inner
)
10939 unsigned int det
= 0;
10940 unsigned oprec
= TYPE_PRECISION (outer
);
10941 unsigned iprec
= TYPE_PRECISION (inner
);
10944 /* Compute a unique number for every combination. */
10945 det
|= (oprec
> iprec
) ? 4 : 0;
10946 det
|= TYPE_UNSIGNED (outer
) ? 2 : 0;
10947 det
|= TYPE_UNSIGNED (inner
) ? 1 : 0;
10949 /* Determine the exponent to use. */
10954 /* oprec <= iprec, outer: signed, inner: don't care. */
10959 /* oprec <= iprec, outer: unsigned, inner: don't care. */
10963 /* oprec > iprec, outer: signed, inner: signed. */
10967 /* oprec > iprec, outer: signed, inner: unsigned. */
10971 /* oprec > iprec, outer: unsigned, inner: signed. */
10975 /* oprec > iprec, outer: unsigned, inner: unsigned. */
10979 gcc_unreachable ();
10982 return wide_int_to_tree (outer
,
10983 wi::mask (prec
, false, TYPE_PRECISION (outer
)));
10986 /* Returns the smallest value obtainable by casting something in INNER type to
10990 lower_bound_in_type (tree outer
, tree inner
)
10992 unsigned oprec
= TYPE_PRECISION (outer
);
10993 unsigned iprec
= TYPE_PRECISION (inner
);
10995 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
10997 if (TYPE_UNSIGNED (outer
)
10998 /* If we are widening something of an unsigned type, OUTER type
10999 contains all values of INNER type. In particular, both INNER
11000 and OUTER types have zero in common. */
11001 || (oprec
> iprec
&& TYPE_UNSIGNED (inner
)))
11002 return build_int_cst (outer
, 0);
11005 /* If we are widening a signed type to another signed type, we
11006 want to obtain -2^^(iprec-1). If we are keeping the
11007 precision or narrowing to a signed type, we want to obtain
11009 unsigned prec
= oprec
> iprec
? iprec
: oprec
;
11010 return wide_int_to_tree (outer
,
11011 wi::mask (prec
- 1, true,
11012 TYPE_PRECISION (outer
)));
11016 /* Return nonzero if two operands that are suitable for PHI nodes are
11017 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11018 SSA_NAME or invariant. Note that this is strictly an optimization.
11019 That is, callers of this function can directly call operand_equal_p
11020 and get the same result, only slower. */
11023 operand_equal_for_phi_arg_p (const_tree arg0
, const_tree arg1
)
11027 if (TREE_CODE (arg0
) == SSA_NAME
|| TREE_CODE (arg1
) == SSA_NAME
)
11029 return operand_equal_p (arg0
, arg1
, 0);
11032 /* Returns number of zeros at the end of binary representation of X. */
11035 num_ending_zeros (const_tree x
)
11037 return build_int_cst (TREE_TYPE (x
), wi::ctz (wi::to_wide (x
)));
11041 #define WALK_SUBTREE(NODE) \
11044 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11050 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11051 be walked whenever a type is seen in the tree. Rest of operands and return
11052 value are as for walk_tree. */
11055 walk_type_fields (tree type
, walk_tree_fn func
, void *data
,
11056 hash_set
<tree
> *pset
, walk_tree_lh lh
)
11058 tree result
= NULL_TREE
;
11060 switch (TREE_CODE (type
))
11063 case REFERENCE_TYPE
:
11065 /* We have to worry about mutually recursive pointers. These can't
11066 be written in C. They can in Ada. It's pathological, but
11067 there's an ACATS test (c38102a) that checks it. Deal with this
11068 by checking if we're pointing to another pointer, that one
11069 points to another pointer, that one does too, and we have no htab.
11070 If so, get a hash table. We check three levels deep to avoid
11071 the cost of the hash table if we don't need one. */
11072 if (POINTER_TYPE_P (TREE_TYPE (type
))
11073 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type
)))
11074 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type
))))
11077 result
= walk_tree_without_duplicates (&TREE_TYPE (type
),
11088 WALK_SUBTREE (TREE_TYPE (type
));
11092 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type
));
11094 /* Fall through. */
11096 case FUNCTION_TYPE
:
11097 WALK_SUBTREE (TREE_TYPE (type
));
11101 /* We never want to walk into default arguments. */
11102 for (arg
= TYPE_ARG_TYPES (type
); arg
; arg
= TREE_CHAIN (arg
))
11103 WALK_SUBTREE (TREE_VALUE (arg
));
11108 /* Don't follow this nodes's type if a pointer for fear that
11109 we'll have infinite recursion. If we have a PSET, then we
11112 || (!POINTER_TYPE_P (TREE_TYPE (type
))
11113 && TREE_CODE (TREE_TYPE (type
)) != OFFSET_TYPE
))
11114 WALK_SUBTREE (TREE_TYPE (type
));
11115 WALK_SUBTREE (TYPE_DOMAIN (type
));
11119 WALK_SUBTREE (TREE_TYPE (type
));
11120 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type
));
11130 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
11131 called with the DATA and the address of each sub-tree. If FUNC returns a
11132 non-NULL value, the traversal is stopped, and the value returned by FUNC
11133 is returned. If PSET is non-NULL it is used to record the nodes visited,
11134 and to avoid visiting a node more than once. */
11137 walk_tree_1 (tree
*tp
, walk_tree_fn func
, void *data
,
11138 hash_set
<tree
> *pset
, walk_tree_lh lh
)
11140 enum tree_code code
;
11144 #define WALK_SUBTREE_TAIL(NODE) \
11148 goto tail_recurse; \
11153 /* Skip empty subtrees. */
11157 /* Don't walk the same tree twice, if the user has requested
11158 that we avoid doing so. */
11159 if (pset
&& pset
->add (*tp
))
11162 /* Call the function. */
11164 result
= (*func
) (tp
, &walk_subtrees
, data
);
11166 /* If we found something, return it. */
11170 code
= TREE_CODE (*tp
);
11172 /* Even if we didn't, FUNC may have decided that there was nothing
11173 interesting below this point in the tree. */
11174 if (!walk_subtrees
)
11176 /* But we still need to check our siblings. */
11177 if (code
== TREE_LIST
)
11178 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
11179 else if (code
== OMP_CLAUSE
)
11180 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11187 result
= (*lh
) (tp
, &walk_subtrees
, func
, data
, pset
);
11188 if (result
|| !walk_subtrees
)
11195 case IDENTIFIER_NODE
:
11202 case PLACEHOLDER_EXPR
:
11206 /* None of these have subtrees other than those already walked
11211 WALK_SUBTREE (TREE_VALUE (*tp
));
11212 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
11217 int len
= TREE_VEC_LENGTH (*tp
);
11222 /* Walk all elements but the first. */
11224 WALK_SUBTREE (TREE_VEC_ELT (*tp
, len
));
11226 /* Now walk the first one as a tail call. */
11227 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp
, 0));
11231 WALK_SUBTREE (TREE_REALPART (*tp
));
11232 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp
));
11236 unsigned HOST_WIDE_INT idx
;
11237 constructor_elt
*ce
;
11239 for (idx
= 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp
), idx
, &ce
);
11241 WALK_SUBTREE (ce
->value
);
11246 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, 0));
11251 for (decl
= BIND_EXPR_VARS (*tp
); decl
; decl
= DECL_CHAIN (decl
))
11253 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
11254 into declarations that are just mentioned, rather than
11255 declared; they don't really belong to this part of the tree.
11256 And, we can see cycles: the initializer for a declaration
11257 can refer to the declaration itself. */
11258 WALK_SUBTREE (DECL_INITIAL (decl
));
11259 WALK_SUBTREE (DECL_SIZE (decl
));
11260 WALK_SUBTREE (DECL_SIZE_UNIT (decl
));
11262 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp
));
11265 case STATEMENT_LIST
:
11267 tree_stmt_iterator i
;
11268 for (i
= tsi_start (*tp
); !tsi_end_p (i
); tsi_next (&i
))
11269 WALK_SUBTREE (*tsi_stmt_ptr (i
));
11274 switch (OMP_CLAUSE_CODE (*tp
))
11276 case OMP_CLAUSE_GANG
:
11277 case OMP_CLAUSE__GRIDDIM_
:
11278 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 1));
11281 case OMP_CLAUSE_ASYNC
:
11282 case OMP_CLAUSE_WAIT
:
11283 case OMP_CLAUSE_WORKER
:
11284 case OMP_CLAUSE_VECTOR
:
11285 case OMP_CLAUSE_NUM_GANGS
:
11286 case OMP_CLAUSE_NUM_WORKERS
:
11287 case OMP_CLAUSE_VECTOR_LENGTH
:
11288 case OMP_CLAUSE_PRIVATE
:
11289 case OMP_CLAUSE_SHARED
:
11290 case OMP_CLAUSE_FIRSTPRIVATE
:
11291 case OMP_CLAUSE_COPYIN
:
11292 case OMP_CLAUSE_COPYPRIVATE
:
11293 case OMP_CLAUSE_FINAL
:
11294 case OMP_CLAUSE_IF
:
11295 case OMP_CLAUSE_NUM_THREADS
:
11296 case OMP_CLAUSE_SCHEDULE
:
11297 case OMP_CLAUSE_UNIFORM
:
11298 case OMP_CLAUSE_DEPEND
:
11299 case OMP_CLAUSE_NUM_TEAMS
:
11300 case OMP_CLAUSE_THREAD_LIMIT
:
11301 case OMP_CLAUSE_DEVICE
:
11302 case OMP_CLAUSE_DIST_SCHEDULE
:
11303 case OMP_CLAUSE_SAFELEN
:
11304 case OMP_CLAUSE_SIMDLEN
:
11305 case OMP_CLAUSE_ORDERED
:
11306 case OMP_CLAUSE_PRIORITY
:
11307 case OMP_CLAUSE_GRAINSIZE
:
11308 case OMP_CLAUSE_NUM_TASKS
:
11309 case OMP_CLAUSE_HINT
:
11310 case OMP_CLAUSE_TO_DECLARE
:
11311 case OMP_CLAUSE_LINK
:
11312 case OMP_CLAUSE_USE_DEVICE_PTR
:
11313 case OMP_CLAUSE_IS_DEVICE_PTR
:
11314 case OMP_CLAUSE__LOOPTEMP_
:
11315 case OMP_CLAUSE__SIMDUID_
:
11316 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 0));
11319 case OMP_CLAUSE_INDEPENDENT
:
11320 case OMP_CLAUSE_NOWAIT
:
11321 case OMP_CLAUSE_DEFAULT
:
11322 case OMP_CLAUSE_UNTIED
:
11323 case OMP_CLAUSE_MERGEABLE
:
11324 case OMP_CLAUSE_PROC_BIND
:
11325 case OMP_CLAUSE_INBRANCH
:
11326 case OMP_CLAUSE_NOTINBRANCH
:
11327 case OMP_CLAUSE_FOR
:
11328 case OMP_CLAUSE_PARALLEL
:
11329 case OMP_CLAUSE_SECTIONS
:
11330 case OMP_CLAUSE_TASKGROUP
:
11331 case OMP_CLAUSE_NOGROUP
:
11332 case OMP_CLAUSE_THREADS
:
11333 case OMP_CLAUSE_SIMD
:
11334 case OMP_CLAUSE_DEFAULTMAP
:
11335 case OMP_CLAUSE_AUTO
:
11336 case OMP_CLAUSE_SEQ
:
11337 case OMP_CLAUSE_TILE
:
11338 case OMP_CLAUSE__SIMT_
:
11339 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11341 case OMP_CLAUSE_LASTPRIVATE
:
11342 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
11343 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp
));
11344 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11346 case OMP_CLAUSE_COLLAPSE
:
11349 for (i
= 0; i
< 3; i
++)
11350 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
11351 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11354 case OMP_CLAUSE_LINEAR
:
11355 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
11356 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp
));
11357 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp
));
11358 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11360 case OMP_CLAUSE_ALIGNED
:
11361 case OMP_CLAUSE_FROM
:
11362 case OMP_CLAUSE_TO
:
11363 case OMP_CLAUSE_MAP
:
11364 case OMP_CLAUSE__CACHE_
:
11365 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
11366 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 1));
11367 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11369 case OMP_CLAUSE_REDUCTION
:
11372 for (i
= 0; i
< 5; i
++)
11373 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
11374 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11378 gcc_unreachable ();
11386 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
11387 But, we only want to walk once. */
11388 len
= (TREE_OPERAND (*tp
, 3) == TREE_OPERAND (*tp
, 1)) ? 2 : 3;
11389 for (i
= 0; i
< len
; ++i
)
11390 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
11391 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
));
11395 /* If this is a TYPE_DECL, walk into the fields of the type that it's
11396 defining. We only want to walk into these fields of a type in this
11397 case and not in the general case of a mere reference to the type.
11399 The criterion is as follows: if the field can be an expression, it
11400 must be walked only here. This should be in keeping with the fields
11401 that are directly gimplified in gimplify_type_sizes in order for the
11402 mark/copy-if-shared/unmark machinery of the gimplifier to work with
11403 variable-sized types.
11405 Note that DECLs get walked as part of processing the BIND_EXPR. */
11406 if (TREE_CODE (DECL_EXPR_DECL (*tp
)) == TYPE_DECL
)
11408 tree
*type_p
= &TREE_TYPE (DECL_EXPR_DECL (*tp
));
11409 if (TREE_CODE (*type_p
) == ERROR_MARK
)
11412 /* Call the function for the type. See if it returns anything or
11413 doesn't want us to continue. If we are to continue, walk both
11414 the normal fields and those for the declaration case. */
11415 result
= (*func
) (type_p
, &walk_subtrees
, data
);
11416 if (result
|| !walk_subtrees
)
11419 /* But do not walk a pointed-to type since it may itself need to
11420 be walked in the declaration case if it isn't anonymous. */
11421 if (!POINTER_TYPE_P (*type_p
))
11423 result
= walk_type_fields (*type_p
, func
, data
, pset
, lh
);
11428 /* If this is a record type, also walk the fields. */
11429 if (RECORD_OR_UNION_TYPE_P (*type_p
))
11433 for (field
= TYPE_FIELDS (*type_p
); field
;
11434 field
= DECL_CHAIN (field
))
11436 /* We'd like to look at the type of the field, but we can
11437 easily get infinite recursion. So assume it's pointed
11438 to elsewhere in the tree. Also, ignore things that
11440 if (TREE_CODE (field
) != FIELD_DECL
)
11443 WALK_SUBTREE (DECL_FIELD_OFFSET (field
));
11444 WALK_SUBTREE (DECL_SIZE (field
));
11445 WALK_SUBTREE (DECL_SIZE_UNIT (field
));
11446 if (TREE_CODE (*type_p
) == QUAL_UNION_TYPE
)
11447 WALK_SUBTREE (DECL_QUALIFIER (field
));
11451 /* Same for scalar types. */
11452 else if (TREE_CODE (*type_p
) == BOOLEAN_TYPE
11453 || TREE_CODE (*type_p
) == ENUMERAL_TYPE
11454 || TREE_CODE (*type_p
) == INTEGER_TYPE
11455 || TREE_CODE (*type_p
) == FIXED_POINT_TYPE
11456 || TREE_CODE (*type_p
) == REAL_TYPE
)
11458 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p
));
11459 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p
));
11462 WALK_SUBTREE (TYPE_SIZE (*type_p
));
11463 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p
));
11468 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code
)))
11472 /* Walk over all the sub-trees of this operand. */
11473 len
= TREE_OPERAND_LENGTH (*tp
);
11475 /* Go through the subtrees. We need to do this in forward order so
11476 that the scope of a FOR_EXPR is handled properly. */
11479 for (i
= 0; i
< len
- 1; ++i
)
11480 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
11481 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
- 1));
11484 /* If this is a type, walk the needed fields in the type. */
11485 else if (TYPE_P (*tp
))
11486 return walk_type_fields (*tp
, func
, data
, pset
, lh
);
11490 /* We didn't find what we were looking for. */
11493 #undef WALK_SUBTREE_TAIL
11495 #undef WALK_SUBTREE
11497 /* Like walk_tree, but does not walk duplicate nodes more than once. */
11500 walk_tree_without_duplicates_1 (tree
*tp
, walk_tree_fn func
, void *data
,
11505 hash_set
<tree
> pset
;
11506 result
= walk_tree_1 (tp
, func
, data
, &pset
, lh
);
11512 tree_block (tree t
)
11514 const enum tree_code_class c
= TREE_CODE_CLASS (TREE_CODE (t
));
11516 if (IS_EXPR_CODE_CLASS (c
))
11517 return LOCATION_BLOCK (t
->exp
.locus
);
11518 gcc_unreachable ();
11523 tree_set_block (tree t
, tree b
)
11525 const enum tree_code_class c
= TREE_CODE_CLASS (TREE_CODE (t
));
11527 if (IS_EXPR_CODE_CLASS (c
))
11529 t
->exp
.locus
= set_block (t
->exp
.locus
, b
);
11532 gcc_unreachable ();
11535 /* Create a nameless artificial label and put it in the current
11536 function context. The label has a location of LOC. Returns the
11537 newly created label. */
11540 create_artificial_label (location_t loc
)
11542 tree lab
= build_decl (loc
,
11543 LABEL_DECL
, NULL_TREE
, void_type_node
);
11545 DECL_ARTIFICIAL (lab
) = 1;
11546 DECL_IGNORED_P (lab
) = 1;
11547 DECL_CONTEXT (lab
) = current_function_decl
;
11551 /* Given a tree, try to return a useful variable name that we can use
11552 to prefix a temporary that is being assigned the value of the tree.
11553 I.E. given <temp> = &A, return A. */
11558 tree stripped_decl
;
11561 STRIP_NOPS (stripped_decl
);
11562 if (DECL_P (stripped_decl
) && DECL_NAME (stripped_decl
))
11563 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl
));
11564 else if (TREE_CODE (stripped_decl
) == SSA_NAME
)
11566 tree name
= SSA_NAME_IDENTIFIER (stripped_decl
);
11569 return IDENTIFIER_POINTER (name
);
11573 switch (TREE_CODE (stripped_decl
))
11576 return get_name (TREE_OPERAND (stripped_decl
, 0));
11583 /* Return true if TYPE has a variable argument list. */
11586 stdarg_p (const_tree fntype
)
11588 function_args_iterator args_iter
;
11589 tree n
= NULL_TREE
, t
;
11594 FOREACH_FUNCTION_ARGS (fntype
, t
, args_iter
)
11599 return n
!= NULL_TREE
&& n
!= void_type_node
;
11602 /* Return true if TYPE has a prototype. */
11605 prototype_p (const_tree fntype
)
11609 gcc_assert (fntype
!= NULL_TREE
);
11611 t
= TYPE_ARG_TYPES (fntype
);
11612 return (t
!= NULL_TREE
);
11615 /* If BLOCK is inlined from an __attribute__((__artificial__))
11616 routine, return pointer to location from where it has been
11619 block_nonartificial_location (tree block
)
11621 location_t
*ret
= NULL
;
11623 while (block
&& TREE_CODE (block
) == BLOCK
11624 && BLOCK_ABSTRACT_ORIGIN (block
))
11626 tree ao
= BLOCK_ABSTRACT_ORIGIN (block
);
11628 while (TREE_CODE (ao
) == BLOCK
11629 && BLOCK_ABSTRACT_ORIGIN (ao
)
11630 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
11631 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
11633 if (TREE_CODE (ao
) == FUNCTION_DECL
)
11635 /* If AO is an artificial inline, point RET to the
11636 call site locus at which it has been inlined and continue
11637 the loop, in case AO's caller is also an artificial
11639 if (DECL_DECLARED_INLINE_P (ao
)
11640 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao
)))
11641 ret
= &BLOCK_SOURCE_LOCATION (block
);
11645 else if (TREE_CODE (ao
) != BLOCK
)
11648 block
= BLOCK_SUPERCONTEXT (block
);
11654 /* If EXP is inlined from an __attribute__((__artificial__))
11655 function, return the location of the original call expression. */
11658 tree_nonartificial_location (tree exp
)
11660 location_t
*loc
= block_nonartificial_location (TREE_BLOCK (exp
));
11665 return EXPR_LOCATION (exp
);
11669 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11672 /* Return the hash code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11675 cl_option_hasher::hash (tree x
)
11677 const_tree
const t
= x
;
11681 hashval_t hash
= 0;
11683 if (TREE_CODE (t
) == OPTIMIZATION_NODE
)
11685 p
= (const char *)TREE_OPTIMIZATION (t
);
11686 len
= sizeof (struct cl_optimization
);
11689 else if (TREE_CODE (t
) == TARGET_OPTION_NODE
)
11690 return cl_target_option_hash (TREE_TARGET_OPTION (t
));
11693 gcc_unreachable ();
11695 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11697 for (i
= 0; i
< len
; i
++)
11699 hash
= (hash
<< 4) ^ ((i
<< 2) | p
[i
]);
11704 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11705 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11709 cl_option_hasher::equal (tree x
, tree y
)
11711 const_tree
const xt
= x
;
11712 const_tree
const yt
= y
;
11717 if (TREE_CODE (xt
) != TREE_CODE (yt
))
11720 if (TREE_CODE (xt
) == OPTIMIZATION_NODE
)
11722 xp
= (const char *)TREE_OPTIMIZATION (xt
);
11723 yp
= (const char *)TREE_OPTIMIZATION (yt
);
11724 len
= sizeof (struct cl_optimization
);
11727 else if (TREE_CODE (xt
) == TARGET_OPTION_NODE
)
11729 return cl_target_option_eq (TREE_TARGET_OPTION (xt
),
11730 TREE_TARGET_OPTION (yt
));
11734 gcc_unreachable ();
11736 return (memcmp (xp
, yp
, len
) == 0);
11739 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
11742 build_optimization_node (struct gcc_options
*opts
)
11746 /* Use the cache of optimization nodes. */
11748 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node
),
11751 tree
*slot
= cl_option_hash_table
->find_slot (cl_optimization_node
, INSERT
);
11755 /* Insert this one into the hash table. */
11756 t
= cl_optimization_node
;
11759 /* Make a new node for next time round. */
11760 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
11766 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
11769 build_target_option_node (struct gcc_options
*opts
)
11773 /* Use the cache of optimization nodes. */
11775 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node
),
11778 tree
*slot
= cl_option_hash_table
->find_slot (cl_target_option_node
, INSERT
);
11782 /* Insert this one into the hash table. */
11783 t
= cl_target_option_node
;
11786 /* Make a new node for next time round. */
11787 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
11793 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
11794 so that they aren't saved during PCH writing. */
11797 prepare_target_option_nodes_for_pch (void)
11799 hash_table
<cl_option_hasher
>::iterator iter
= cl_option_hash_table
->begin ();
11800 for (; iter
!= cl_option_hash_table
->end (); ++iter
)
11801 if (TREE_CODE (*iter
) == TARGET_OPTION_NODE
)
11802 TREE_TARGET_GLOBALS (*iter
) = NULL
;
11805 /* Determine the "ultimate origin" of a block. The block may be an inlined
11806 instance of an inlined instance of a block which is local to an inline
11807 function, so we have to trace all of the way back through the origin chain
11808 to find out what sort of node actually served as the original seed for the
11812 block_ultimate_origin (const_tree block
)
11814 tree immediate_origin
= BLOCK_ABSTRACT_ORIGIN (block
);
11816 /* BLOCK_ABSTRACT_ORIGIN can point to itself; ignore that if
11817 we're trying to output the abstract instance of this function. */
11818 if (BLOCK_ABSTRACT (block
) && immediate_origin
== block
)
11821 if (immediate_origin
== NULL_TREE
)
11826 tree lookahead
= immediate_origin
;
11830 ret_val
= lookahead
;
11831 lookahead
= (TREE_CODE (ret_val
) == BLOCK
11832 ? BLOCK_ABSTRACT_ORIGIN (ret_val
) : NULL
);
11834 while (lookahead
!= NULL
&& lookahead
!= ret_val
);
11836 /* The block's abstract origin chain may not be the *ultimate* origin of
11837 the block. It could lead to a DECL that has an abstract origin set.
11838 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
11839 will give us if it has one). Note that DECL's abstract origins are
11840 supposed to be the most distant ancestor (or so decl_ultimate_origin
11841 claims), so we don't need to loop following the DECL origins. */
11842 if (DECL_P (ret_val
))
11843 return DECL_ORIGIN (ret_val
);
11849 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
11853 tree_nop_conversion_p (const_tree outer_type
, const_tree inner_type
)
11855 /* Do not strip casts into or out of differing address spaces. */
11856 if (POINTER_TYPE_P (outer_type
)
11857 && TYPE_ADDR_SPACE (TREE_TYPE (outer_type
)) != ADDR_SPACE_GENERIC
)
11859 if (!POINTER_TYPE_P (inner_type
)
11860 || (TYPE_ADDR_SPACE (TREE_TYPE (outer_type
))
11861 != TYPE_ADDR_SPACE (TREE_TYPE (inner_type
))))
11864 else if (POINTER_TYPE_P (inner_type
)
11865 && TYPE_ADDR_SPACE (TREE_TYPE (inner_type
)) != ADDR_SPACE_GENERIC
)
11867 /* We already know that outer_type is not a pointer with
11868 a non-generic address space. */
11872 /* Use precision rather then machine mode when we can, which gives
11873 the correct answer even for submode (bit-field) types. */
11874 if ((INTEGRAL_TYPE_P (outer_type
)
11875 || POINTER_TYPE_P (outer_type
)
11876 || TREE_CODE (outer_type
) == OFFSET_TYPE
)
11877 && (INTEGRAL_TYPE_P (inner_type
)
11878 || POINTER_TYPE_P (inner_type
)
11879 || TREE_CODE (inner_type
) == OFFSET_TYPE
))
11880 return TYPE_PRECISION (outer_type
) == TYPE_PRECISION (inner_type
);
11882 /* Otherwise fall back on comparing machine modes (e.g. for
11883 aggregate types, floats). */
11884 return TYPE_MODE (outer_type
) == TYPE_MODE (inner_type
);
11887 /* Return true iff conversion in EXP generates no instruction. Mark
11888 it inline so that we fully inline into the stripping functions even
11889 though we have two uses of this function. */
11892 tree_nop_conversion (const_tree exp
)
11894 tree outer_type
, inner_type
;
11896 if (!CONVERT_EXPR_P (exp
)
11897 && TREE_CODE (exp
) != NON_LVALUE_EXPR
)
11899 if (TREE_OPERAND (exp
, 0) == error_mark_node
)
11902 outer_type
= TREE_TYPE (exp
);
11903 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11908 return tree_nop_conversion_p (outer_type
, inner_type
);
11911 /* Return true iff conversion in EXP generates no instruction. Don't
11912 consider conversions changing the signedness. */
11915 tree_sign_nop_conversion (const_tree exp
)
11917 tree outer_type
, inner_type
;
11919 if (!tree_nop_conversion (exp
))
11922 outer_type
= TREE_TYPE (exp
);
11923 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11925 return (TYPE_UNSIGNED (outer_type
) == TYPE_UNSIGNED (inner_type
)
11926 && POINTER_TYPE_P (outer_type
) == POINTER_TYPE_P (inner_type
));
11929 /* Strip conversions from EXP according to tree_nop_conversion and
11930 return the resulting expression. */
11933 tree_strip_nop_conversions (tree exp
)
11935 while (tree_nop_conversion (exp
))
11936 exp
= TREE_OPERAND (exp
, 0);
11940 /* Strip conversions from EXP according to tree_sign_nop_conversion
11941 and return the resulting expression. */
11944 tree_strip_sign_nop_conversions (tree exp
)
11946 while (tree_sign_nop_conversion (exp
))
11947 exp
= TREE_OPERAND (exp
, 0);
11951 /* Avoid any floating point extensions from EXP. */
11953 strip_float_extensions (tree exp
)
11955 tree sub
, expt
, subt
;
11957 /* For floating point constant look up the narrowest type that can hold
11958 it properly and handle it like (type)(narrowest_type)constant.
11959 This way we can optimize for instance a=a*2.0 where "a" is float
11960 but 2.0 is double constant. */
11961 if (TREE_CODE (exp
) == REAL_CST
&& !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp
)))
11963 REAL_VALUE_TYPE orig
;
11966 orig
= TREE_REAL_CST (exp
);
11967 if (TYPE_PRECISION (TREE_TYPE (exp
)) > TYPE_PRECISION (float_type_node
)
11968 && exact_real_truncate (TYPE_MODE (float_type_node
), &orig
))
11969 type
= float_type_node
;
11970 else if (TYPE_PRECISION (TREE_TYPE (exp
))
11971 > TYPE_PRECISION (double_type_node
)
11972 && exact_real_truncate (TYPE_MODE (double_type_node
), &orig
))
11973 type
= double_type_node
;
11975 return build_real_truncate (type
, orig
);
11978 if (!CONVERT_EXPR_P (exp
))
11981 sub
= TREE_OPERAND (exp
, 0);
11982 subt
= TREE_TYPE (sub
);
11983 expt
= TREE_TYPE (exp
);
11985 if (!FLOAT_TYPE_P (subt
))
11988 if (DECIMAL_FLOAT_TYPE_P (expt
) != DECIMAL_FLOAT_TYPE_P (subt
))
11991 if (TYPE_PRECISION (subt
) > TYPE_PRECISION (expt
))
11994 return strip_float_extensions (sub
);
11997 /* Strip out all handled components that produce invariant
12001 strip_invariant_refs (const_tree op
)
12003 while (handled_component_p (op
))
12005 switch (TREE_CODE (op
))
12008 case ARRAY_RANGE_REF
:
12009 if (!is_gimple_constant (TREE_OPERAND (op
, 1))
12010 || TREE_OPERAND (op
, 2) != NULL_TREE
12011 || TREE_OPERAND (op
, 3) != NULL_TREE
)
12015 case COMPONENT_REF
:
12016 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
12022 op
= TREE_OPERAND (op
, 0);
12028 static GTY(()) tree gcc_eh_personality_decl
;
12030 /* Return the GCC personality function decl. */
12033 lhd_gcc_personality (void)
12035 if (!gcc_eh_personality_decl
)
12036 gcc_eh_personality_decl
= build_personality_function ("gcc");
12037 return gcc_eh_personality_decl
;
12040 /* TARGET is a call target of GIMPLE call statement
12041 (obtained by gimple_call_fn). Return true if it is
12042 OBJ_TYPE_REF representing an virtual call of C++ method.
12043 (As opposed to OBJ_TYPE_REF representing objc calls
12044 through a cast where middle-end devirtualization machinery
12048 virtual_method_call_p (const_tree target
)
12050 if (TREE_CODE (target
) != OBJ_TYPE_REF
)
12052 tree t
= TREE_TYPE (target
);
12053 gcc_checking_assert (TREE_CODE (t
) == POINTER_TYPE
);
12055 if (TREE_CODE (t
) == FUNCTION_TYPE
)
12057 gcc_checking_assert (TREE_CODE (t
) == METHOD_TYPE
);
12058 /* If we do not have BINFO associated, it means that type was built
12059 without devirtualization enabled. Do not consider this a virtual
12061 if (!TYPE_BINFO (obj_type_ref_class (target
)))
12066 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
12069 obj_type_ref_class (const_tree ref
)
12071 gcc_checking_assert (TREE_CODE (ref
) == OBJ_TYPE_REF
);
12072 ref
= TREE_TYPE (ref
);
12073 gcc_checking_assert (TREE_CODE (ref
) == POINTER_TYPE
);
12074 ref
= TREE_TYPE (ref
);
12075 /* We look for type THIS points to. ObjC also builds
12076 OBJ_TYPE_REF with non-method calls, Their first parameter
12077 ID however also corresponds to class type. */
12078 gcc_checking_assert (TREE_CODE (ref
) == METHOD_TYPE
12079 || TREE_CODE (ref
) == FUNCTION_TYPE
);
12080 ref
= TREE_VALUE (TYPE_ARG_TYPES (ref
));
12081 gcc_checking_assert (TREE_CODE (ref
) == POINTER_TYPE
);
12082 return TREE_TYPE (ref
);
12085 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
12088 lookup_binfo_at_offset (tree binfo
, tree type
, HOST_WIDE_INT pos
)
12091 tree base_binfo
, b
;
12093 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
12094 if (pos
== tree_to_shwi (BINFO_OFFSET (base_binfo
))
12095 && types_same_for_odr (TREE_TYPE (base_binfo
), type
))
12097 else if ((b
= lookup_binfo_at_offset (base_binfo
, type
, pos
)) != NULL
)
12102 /* Try to find a base info of BINFO that would have its field decl at offset
12103 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12104 found, return, otherwise return NULL_TREE. */
12107 get_binfo_at_offset (tree binfo
, HOST_WIDE_INT offset
, tree expected_type
)
12109 tree type
= BINFO_TYPE (binfo
);
12113 HOST_WIDE_INT pos
, size
;
12117 if (types_same_for_odr (type
, expected_type
))
12122 for (fld
= TYPE_FIELDS (type
); fld
; fld
= DECL_CHAIN (fld
))
12124 if (TREE_CODE (fld
) != FIELD_DECL
|| !DECL_ARTIFICIAL (fld
))
12127 pos
= int_bit_position (fld
);
12128 size
= tree_to_uhwi (DECL_SIZE (fld
));
12129 if (pos
<= offset
&& (pos
+ size
) > offset
)
12132 if (!fld
|| TREE_CODE (TREE_TYPE (fld
)) != RECORD_TYPE
)
12135 /* Offset 0 indicates the primary base, whose vtable contents are
12136 represented in the binfo for the derived class. */
12137 else if (offset
!= 0)
12139 tree found_binfo
= NULL
, base_binfo
;
12140 /* Offsets in BINFO are in bytes relative to the whole structure
12141 while POS is in bits relative to the containing field. */
12142 int binfo_offset
= (tree_to_shwi (BINFO_OFFSET (binfo
)) + pos
12145 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
12146 if (tree_to_shwi (BINFO_OFFSET (base_binfo
)) == binfo_offset
12147 && types_same_for_odr (TREE_TYPE (base_binfo
), TREE_TYPE (fld
)))
12149 found_binfo
= base_binfo
;
12153 binfo
= found_binfo
;
12155 binfo
= lookup_binfo_at_offset (binfo
, TREE_TYPE (fld
),
12159 type
= TREE_TYPE (fld
);
12164 /* Returns true if X is a typedef decl. */
12167 is_typedef_decl (const_tree x
)
12169 return (x
&& TREE_CODE (x
) == TYPE_DECL
12170 && DECL_ORIGINAL_TYPE (x
) != NULL_TREE
);
12173 /* Returns true iff TYPE is a type variant created for a typedef. */
12176 typedef_variant_p (const_tree type
)
12178 return is_typedef_decl (TYPE_NAME (type
));
12181 /* Warn about a use of an identifier which was marked deprecated. */
12183 warn_deprecated_use (tree node
, tree attr
)
12187 if (node
== 0 || !warn_deprecated_decl
)
12193 attr
= DECL_ATTRIBUTES (node
);
12194 else if (TYPE_P (node
))
12196 tree decl
= TYPE_STUB_DECL (node
);
12198 attr
= lookup_attribute ("deprecated",
12199 TYPE_ATTRIBUTES (TREE_TYPE (decl
)));
12204 attr
= lookup_attribute ("deprecated", attr
);
12207 msg
= TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr
)));
12215 w
= warning (OPT_Wdeprecated_declarations
,
12216 "%qD is deprecated: %s", node
, msg
);
12218 w
= warning (OPT_Wdeprecated_declarations
,
12219 "%qD is deprecated", node
);
12221 inform (DECL_SOURCE_LOCATION (node
), "declared here");
12223 else if (TYPE_P (node
))
12225 tree what
= NULL_TREE
;
12226 tree decl
= TYPE_STUB_DECL (node
);
12228 if (TYPE_NAME (node
))
12230 if (TREE_CODE (TYPE_NAME (node
)) == IDENTIFIER_NODE
)
12231 what
= TYPE_NAME (node
);
12232 else if (TREE_CODE (TYPE_NAME (node
)) == TYPE_DECL
12233 && DECL_NAME (TYPE_NAME (node
)))
12234 what
= DECL_NAME (TYPE_NAME (node
));
12242 w
= warning (OPT_Wdeprecated_declarations
,
12243 "%qE is deprecated: %s", what
, msg
);
12245 w
= warning (OPT_Wdeprecated_declarations
,
12246 "%qE is deprecated", what
);
12251 w
= warning (OPT_Wdeprecated_declarations
,
12252 "type is deprecated: %s", msg
);
12254 w
= warning (OPT_Wdeprecated_declarations
,
12255 "type is deprecated");
12258 inform (DECL_SOURCE_LOCATION (decl
), "declared here");
12265 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated: %s",
12268 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated", what
);
12273 warning (OPT_Wdeprecated_declarations
, "type is deprecated: %s",
12276 warning (OPT_Wdeprecated_declarations
, "type is deprecated");
12282 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
12283 somewhere in it. */
12286 contains_bitfld_component_ref_p (const_tree ref
)
12288 while (handled_component_p (ref
))
12290 if (TREE_CODE (ref
) == COMPONENT_REF
12291 && DECL_BIT_FIELD (TREE_OPERAND (ref
, 1)))
12293 ref
= TREE_OPERAND (ref
, 0);
12299 /* Try to determine whether a TRY_CATCH expression can fall through.
12300 This is a subroutine of block_may_fallthru. */
12303 try_catch_may_fallthru (const_tree stmt
)
12305 tree_stmt_iterator i
;
12307 /* If the TRY block can fall through, the whole TRY_CATCH can
12309 if (block_may_fallthru (TREE_OPERAND (stmt
, 0)))
12312 i
= tsi_start (TREE_OPERAND (stmt
, 1));
12313 switch (TREE_CODE (tsi_stmt (i
)))
12316 /* We expect to see a sequence of CATCH_EXPR trees, each with a
12317 catch expression and a body. The whole TRY_CATCH may fall
12318 through iff any of the catch bodies falls through. */
12319 for (; !tsi_end_p (i
); tsi_next (&i
))
12321 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i
))))
12326 case EH_FILTER_EXPR
:
12327 /* The exception filter expression only matters if there is an
12328 exception. If the exception does not match EH_FILTER_TYPES,
12329 we will execute EH_FILTER_FAILURE, and we will fall through
12330 if that falls through. If the exception does match
12331 EH_FILTER_TYPES, the stack unwinder will continue up the
12332 stack, so we will not fall through. We don't know whether we
12333 will throw an exception which matches EH_FILTER_TYPES or not,
12334 so we just ignore EH_FILTER_TYPES and assume that we might
12335 throw an exception which doesn't match. */
12336 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i
)));
12339 /* This case represents statements to be executed when an
12340 exception occurs. Those statements are implicitly followed
12341 by a RESX statement to resume execution after the exception.
12342 So in this case the TRY_CATCH never falls through. */
12347 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
12348 need not be 100% accurate; simply be conservative and return true if we
12349 don't know. This is used only to avoid stupidly generating extra code.
12350 If we're wrong, we'll just delete the extra code later. */
12353 block_may_fallthru (const_tree block
)
12355 /* This CONST_CAST is okay because expr_last returns its argument
12356 unmodified and we assign it to a const_tree. */
12357 const_tree stmt
= expr_last (CONST_CAST_TREE (block
));
12359 switch (stmt
? TREE_CODE (stmt
) : ERROR_MARK
)
12363 /* Easy cases. If the last statement of the block implies
12364 control transfer, then we can't fall through. */
12368 /* If there is a default: label or case labels cover all possible
12369 SWITCH_COND values, then the SWITCH_EXPR will transfer control
12370 to some case label in all cases and all we care is whether the
12371 SWITCH_BODY falls through. */
12372 if (SWITCH_ALL_CASES_P (stmt
))
12373 return block_may_fallthru (SWITCH_BODY (stmt
));
12377 if (block_may_fallthru (COND_EXPR_THEN (stmt
)))
12379 return block_may_fallthru (COND_EXPR_ELSE (stmt
));
12382 return block_may_fallthru (BIND_EXPR_BODY (stmt
));
12384 case TRY_CATCH_EXPR
:
12385 return try_catch_may_fallthru (stmt
);
12387 case TRY_FINALLY_EXPR
:
12388 /* The finally clause is always executed after the try clause,
12389 so if it does not fall through, then the try-finally will not
12390 fall through. Otherwise, if the try clause does not fall
12391 through, then when the finally clause falls through it will
12392 resume execution wherever the try clause was going. So the
12393 whole try-finally will only fall through if both the try
12394 clause and the finally clause fall through. */
12395 return (block_may_fallthru (TREE_OPERAND (stmt
, 0))
12396 && block_may_fallthru (TREE_OPERAND (stmt
, 1)));
12399 if (TREE_CODE (TREE_OPERAND (stmt
, 1)) == CALL_EXPR
)
12400 stmt
= TREE_OPERAND (stmt
, 1);
12406 /* Functions that do not return do not fall through. */
12407 return (call_expr_flags (stmt
) & ECF_NORETURN
) == 0;
12409 case CLEANUP_POINT_EXPR
:
12410 return block_may_fallthru (TREE_OPERAND (stmt
, 0));
12413 return block_may_fallthru (TREE_OPERAND (stmt
, 1));
12419 return lang_hooks
.block_may_fallthru (stmt
);
12423 /* True if we are using EH to handle cleanups. */
12424 static bool using_eh_for_cleanups_flag
= false;
12426 /* This routine is called from front ends to indicate eh should be used for
12429 using_eh_for_cleanups (void)
12431 using_eh_for_cleanups_flag
= true;
12434 /* Query whether EH is used for cleanups. */
12436 using_eh_for_cleanups_p (void)
12438 return using_eh_for_cleanups_flag
;
12441 /* Wrapper for tree_code_name to ensure that tree code is valid */
12443 get_tree_code_name (enum tree_code code
)
12445 const char *invalid
= "<invalid tree code>";
12447 if (code
>= MAX_TREE_CODES
)
12450 return tree_code_name
[code
];
12453 /* Drops the TREE_OVERFLOW flag from T. */
12456 drop_tree_overflow (tree t
)
12458 gcc_checking_assert (TREE_OVERFLOW (t
));
12460 /* For tree codes with a sharing machinery re-build the result. */
12461 if (TREE_CODE (t
) == INTEGER_CST
)
12462 return wide_int_to_tree (TREE_TYPE (t
), wi::to_wide (t
));
12464 /* For VECTOR_CST, remove the overflow bits from the encoded elements
12465 and canonicalize the result. */
12466 if (TREE_CODE (t
) == VECTOR_CST
)
12468 tree_vector_builder builder
;
12469 builder
.new_unary_operation (TREE_TYPE (t
), t
, true);
12470 unsigned int count
= builder
.encoded_nelts ();
12471 for (unsigned int i
= 0; i
< count
; ++i
)
12473 tree elt
= VECTOR_CST_ELT (t
, i
);
12474 if (TREE_OVERFLOW (elt
))
12475 elt
= drop_tree_overflow (elt
);
12476 builder
.quick_push (elt
);
12478 return builder
.build ();
12481 /* Otherwise, as all tcc_constants are possibly shared, copy the node
12482 and drop the flag. */
12484 TREE_OVERFLOW (t
) = 0;
12486 /* For constants that contain nested constants, drop the flag
12487 from those as well. */
12488 if (TREE_CODE (t
) == COMPLEX_CST
)
12490 if (TREE_OVERFLOW (TREE_REALPART (t
)))
12491 TREE_REALPART (t
) = drop_tree_overflow (TREE_REALPART (t
));
12492 if (TREE_OVERFLOW (TREE_IMAGPART (t
)))
12493 TREE_IMAGPART (t
) = drop_tree_overflow (TREE_IMAGPART (t
));
12499 /* Given a memory reference expression T, return its base address.
12500 The base address of a memory reference expression is the main
12501 object being referenced. For instance, the base address for
12502 'array[i].fld[j]' is 'array'. You can think of this as stripping
12503 away the offset part from a memory address.
12505 This function calls handled_component_p to strip away all the inner
12506 parts of the memory reference until it reaches the base object. */
12509 get_base_address (tree t
)
12511 while (handled_component_p (t
))
12512 t
= TREE_OPERAND (t
, 0);
12514 if ((TREE_CODE (t
) == MEM_REF
12515 || TREE_CODE (t
) == TARGET_MEM_REF
)
12516 && TREE_CODE (TREE_OPERAND (t
, 0)) == ADDR_EXPR
)
12517 t
= TREE_OPERAND (TREE_OPERAND (t
, 0), 0);
12519 /* ??? Either the alias oracle or all callers need to properly deal
12520 with WITH_SIZE_EXPRs before we can look through those. */
12521 if (TREE_CODE (t
) == WITH_SIZE_EXPR
)
12527 /* Return a tree of sizetype representing the size, in bytes, of the element
12528 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12531 array_ref_element_size (tree exp
)
12533 tree aligned_size
= TREE_OPERAND (exp
, 3);
12534 tree elmt_type
= TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp
, 0)));
12535 location_t loc
= EXPR_LOCATION (exp
);
12537 /* If a size was specified in the ARRAY_REF, it's the size measured
12538 in alignment units of the element type. So multiply by that value. */
12541 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12542 sizetype from another type of the same width and signedness. */
12543 if (TREE_TYPE (aligned_size
) != sizetype
)
12544 aligned_size
= fold_convert_loc (loc
, sizetype
, aligned_size
);
12545 return size_binop_loc (loc
, MULT_EXPR
, aligned_size
,
12546 size_int (TYPE_ALIGN_UNIT (elmt_type
)));
12549 /* Otherwise, take the size from that of the element type. Substitute
12550 any PLACEHOLDER_EXPR that we have. */
12552 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type
), exp
);
12555 /* Return a tree representing the lower bound of the array mentioned in
12556 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12559 array_ref_low_bound (tree exp
)
12561 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp
, 0)));
12563 /* If a lower bound is specified in EXP, use it. */
12564 if (TREE_OPERAND (exp
, 2))
12565 return TREE_OPERAND (exp
, 2);
12567 /* Otherwise, if there is a domain type and it has a lower bound, use it,
12568 substituting for a PLACEHOLDER_EXPR as needed. */
12569 if (domain_type
&& TYPE_MIN_VALUE (domain_type
))
12570 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type
), exp
);
12572 /* Otherwise, return a zero of the appropriate type. */
12573 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp
, 1)), 0);
12576 /* Return a tree representing the upper bound of the array mentioned in
12577 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12580 array_ref_up_bound (tree exp
)
12582 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp
, 0)));
12584 /* If there is a domain type and it has an upper bound, use it, substituting
12585 for a PLACEHOLDER_EXPR as needed. */
12586 if (domain_type
&& TYPE_MAX_VALUE (domain_type
))
12587 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type
), exp
);
12589 /* Otherwise fail. */
12593 /* Returns true if REF is an array reference or a component reference
12594 to an array at the end of a structure.
12595 If this is the case, the array may be allocated larger
12596 than its upper bound implies. */
12599 array_at_struct_end_p (tree ref
)
12603 if (TREE_CODE (ref
) == ARRAY_REF
12604 || TREE_CODE (ref
) == ARRAY_RANGE_REF
)
12606 atype
= TREE_TYPE (TREE_OPERAND (ref
, 0));
12607 ref
= TREE_OPERAND (ref
, 0);
12609 else if (TREE_CODE (ref
) == COMPONENT_REF
12610 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref
, 1))) == ARRAY_TYPE
)
12611 atype
= TREE_TYPE (TREE_OPERAND (ref
, 1));
12615 if (TREE_CODE (ref
) == STRING_CST
)
12618 while (handled_component_p (ref
))
12620 /* If the reference chain contains a component reference to a
12621 non-union type and there follows another field the reference
12622 is not at the end of a structure. */
12623 if (TREE_CODE (ref
) == COMPONENT_REF
)
12625 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (ref
, 0))) == RECORD_TYPE
)
12627 tree nextf
= DECL_CHAIN (TREE_OPERAND (ref
, 1));
12628 while (nextf
&& TREE_CODE (nextf
) != FIELD_DECL
)
12629 nextf
= DECL_CHAIN (nextf
);
12634 /* If we have a multi-dimensional array we do not consider
12635 a non-innermost dimension as flex array if the whole
12636 multi-dimensional array is at struct end.
12637 Same for an array of aggregates with a trailing array
12639 else if (TREE_CODE (ref
) == ARRAY_REF
)
12641 else if (TREE_CODE (ref
) == ARRAY_RANGE_REF
)
12643 /* If we view an underlying object as sth else then what we
12644 gathered up to now is what we have to rely on. */
12645 else if (TREE_CODE (ref
) == VIEW_CONVERT_EXPR
)
12648 gcc_unreachable ();
12650 ref
= TREE_OPERAND (ref
, 0);
12653 /* The array now is at struct end. Treat flexible arrays as
12654 always subject to extend, even into just padding constrained by
12655 an underlying decl. */
12656 if (! TYPE_SIZE (atype
))
12661 if (TREE_CODE (ref
) == MEM_REF
12662 && TREE_CODE (TREE_OPERAND (ref
, 0)) == ADDR_EXPR
)
12664 size
= TYPE_SIZE (TREE_TYPE (ref
));
12665 ref
= TREE_OPERAND (TREE_OPERAND (ref
, 0), 0);
12668 /* If the reference is based on a declared entity, the size of the array
12669 is constrained by its given domain. (Do not trust commons PR/69368). */
12671 /* Be sure the size of MEM_REF target match. For example:
12674 struct foo *str = (struct foo *)&buf;
12676 str->trailin_array[2] = 1;
12678 is valid because BUF allocate enough space. */
12680 && (!size
|| (DECL_SIZE (ref
) != NULL
12681 && operand_equal_p (DECL_SIZE (ref
), size
, 0)))
12682 && !(flag_unconstrained_commons
12683 && VAR_P (ref
) && DECL_COMMON (ref
)))
12689 /* Return a tree representing the offset, in bytes, of the field referenced
12690 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
12693 component_ref_field_offset (tree exp
)
12695 tree aligned_offset
= TREE_OPERAND (exp
, 2);
12696 tree field
= TREE_OPERAND (exp
, 1);
12697 location_t loc
= EXPR_LOCATION (exp
);
12699 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
12700 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
12702 if (aligned_offset
)
12704 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12705 sizetype from another type of the same width and signedness. */
12706 if (TREE_TYPE (aligned_offset
) != sizetype
)
12707 aligned_offset
= fold_convert_loc (loc
, sizetype
, aligned_offset
);
12708 return size_binop_loc (loc
, MULT_EXPR
, aligned_offset
,
12709 size_int (DECL_OFFSET_ALIGN (field
)
12713 /* Otherwise, take the offset from that of the field. Substitute
12714 any PLACEHOLDER_EXPR that we have. */
12716 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field
), exp
);
12719 /* Return the machine mode of T. For vectors, returns the mode of the
12720 inner type. The main use case is to feed the result to HONOR_NANS,
12721 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
12724 element_mode (const_tree t
)
12728 if (VECTOR_TYPE_P (t
) || TREE_CODE (t
) == COMPLEX_TYPE
)
12730 return TYPE_MODE (t
);
12733 /* Vector types need to re-check the target flags each time we report
12734 the machine mode. We need to do this because attribute target can
12735 change the result of vector_mode_supported_p and have_regs_of_mode
12736 on a per-function basis. Thus the TYPE_MODE of a VECTOR_TYPE can
12737 change on a per-function basis. */
12738 /* ??? Possibly a better solution is to run through all the types
12739 referenced by a function and re-compute the TYPE_MODE once, rather
12740 than make the TYPE_MODE macro call a function. */
12743 vector_type_mode (const_tree t
)
12747 gcc_assert (TREE_CODE (t
) == VECTOR_TYPE
);
12749 mode
= t
->type_common
.mode
;
12750 if (VECTOR_MODE_P (mode
)
12751 && (!targetm
.vector_mode_supported_p (mode
)
12752 || !have_regs_of_mode
[mode
]))
12754 scalar_int_mode innermode
;
12756 /* For integers, try mapping it to a same-sized scalar mode. */
12757 if (is_int_mode (TREE_TYPE (t
)->type_common
.mode
, &innermode
))
12759 unsigned int size
= (TYPE_VECTOR_SUBPARTS (t
)
12760 * GET_MODE_BITSIZE (innermode
));
12761 scalar_int_mode mode
;
12762 if (int_mode_for_size (size
, 0).exists (&mode
)
12763 && have_regs_of_mode
[mode
])
12773 /* Verify that basic properties of T match TV and thus T can be a variant of
12774 TV. TV should be the more specified variant (i.e. the main variant). */
12777 verify_type_variant (const_tree t
, tree tv
)
12779 /* Type variant can differ by:
12781 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
12782 ENCODE_QUAL_ADDR_SPACE.
12783 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
12784 in this case some values may not be set in the variant types
12785 (see TYPE_COMPLETE_P checks).
12786 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
12787 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
12788 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
12789 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
12790 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
12791 this is necessary to make it possible to merge types form different TUs
12792 - arrays, pointers and references may have TREE_TYPE that is a variant
12793 of TREE_TYPE of their main variants.
12794 - aggregates may have new TYPE_FIELDS list that list variants of
12795 the main variant TYPE_FIELDS.
12796 - vector types may differ by TYPE_VECTOR_OPAQUE
12799 /* Convenience macro for matching individual fields. */
12800 #define verify_variant_match(flag) \
12802 if (flag (tv) != flag (t)) \
12804 error ("type variant differs by " #flag "."); \
12810 /* tree_base checks. */
12812 verify_variant_match (TREE_CODE
);
12813 /* FIXME: Ada builds non-artificial variants of artificial types. */
12814 if (TYPE_ARTIFICIAL (tv
) && 0)
12815 verify_variant_match (TYPE_ARTIFICIAL
);
12816 if (POINTER_TYPE_P (tv
))
12817 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL
);
12818 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
12819 verify_variant_match (TYPE_UNSIGNED
);
12820 verify_variant_match (TYPE_PACKED
);
12821 if (TREE_CODE (t
) == REFERENCE_TYPE
)
12822 verify_variant_match (TYPE_REF_IS_RVALUE
);
12823 if (AGGREGATE_TYPE_P (t
))
12824 verify_variant_match (TYPE_REVERSE_STORAGE_ORDER
);
12826 verify_variant_match (TYPE_SATURATING
);
12827 /* FIXME: This check trigger during libstdc++ build. */
12828 if (RECORD_OR_UNION_TYPE_P (t
) && COMPLETE_TYPE_P (t
) && 0)
12829 verify_variant_match (TYPE_FINAL_P
);
12831 /* tree_type_common checks. */
12833 if (COMPLETE_TYPE_P (t
))
12835 verify_variant_match (TYPE_MODE
);
12836 if (TREE_CODE (TYPE_SIZE (t
)) != PLACEHOLDER_EXPR
12837 && TREE_CODE (TYPE_SIZE (tv
)) != PLACEHOLDER_EXPR
)
12838 verify_variant_match (TYPE_SIZE
);
12839 if (TREE_CODE (TYPE_SIZE_UNIT (t
)) != PLACEHOLDER_EXPR
12840 && TREE_CODE (TYPE_SIZE_UNIT (tv
)) != PLACEHOLDER_EXPR
12841 && TYPE_SIZE_UNIT (t
) != TYPE_SIZE_UNIT (tv
))
12843 gcc_assert (!operand_equal_p (TYPE_SIZE_UNIT (t
),
12844 TYPE_SIZE_UNIT (tv
), 0));
12845 error ("type variant has different TYPE_SIZE_UNIT");
12847 error ("type variant's TYPE_SIZE_UNIT");
12848 debug_tree (TYPE_SIZE_UNIT (tv
));
12849 error ("type's TYPE_SIZE_UNIT");
12850 debug_tree (TYPE_SIZE_UNIT (t
));
12854 verify_variant_match (TYPE_PRECISION
);
12855 verify_variant_match (TYPE_NEEDS_CONSTRUCTING
);
12856 if (RECORD_OR_UNION_TYPE_P (t
))
12857 verify_variant_match (TYPE_TRANSPARENT_AGGR
);
12858 else if (TREE_CODE (t
) == ARRAY_TYPE
)
12859 verify_variant_match (TYPE_NONALIASED_COMPONENT
);
12860 /* During LTO we merge variant lists from diferent translation units
12861 that may differ BY TYPE_CONTEXT that in turn may point
12862 to TRANSLATION_UNIT_DECL.
12863 Ada also builds variants of types with different TYPE_CONTEXT. */
12864 if ((!in_lto_p
|| !TYPE_FILE_SCOPE_P (t
)) && 0)
12865 verify_variant_match (TYPE_CONTEXT
);
12866 verify_variant_match (TYPE_STRING_FLAG
);
12867 if (TYPE_ALIAS_SET_KNOWN_P (t
))
12869 error ("type variant with TYPE_ALIAS_SET_KNOWN_P");
12874 /* tree_type_non_common checks. */
12876 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
12877 and dangle the pointer from time to time. */
12878 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_VFIELD (t
) != TYPE_VFIELD (tv
)
12879 && (in_lto_p
|| !TYPE_VFIELD (tv
)
12880 || TREE_CODE (TYPE_VFIELD (tv
)) != TREE_LIST
))
12882 error ("type variant has different TYPE_VFIELD");
12886 if ((TREE_CODE (t
) == ENUMERAL_TYPE
&& COMPLETE_TYPE_P (t
))
12887 || TREE_CODE (t
) == INTEGER_TYPE
12888 || TREE_CODE (t
) == BOOLEAN_TYPE
12889 || TREE_CODE (t
) == REAL_TYPE
12890 || TREE_CODE (t
) == FIXED_POINT_TYPE
)
12892 verify_variant_match (TYPE_MAX_VALUE
);
12893 verify_variant_match (TYPE_MIN_VALUE
);
12895 if (TREE_CODE (t
) == METHOD_TYPE
)
12896 verify_variant_match (TYPE_METHOD_BASETYPE
);
12897 if (TREE_CODE (t
) == OFFSET_TYPE
)
12898 verify_variant_match (TYPE_OFFSET_BASETYPE
);
12899 if (TREE_CODE (t
) == ARRAY_TYPE
)
12900 verify_variant_match (TYPE_ARRAY_MAX_SIZE
);
12901 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
12902 or even type's main variant. This is needed to make bootstrap pass
12903 and the bug seems new in GCC 5.
12904 C++ FE should be updated to make this consistent and we should check
12905 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
12906 is a match with main variant.
12908 Also disable the check for Java for now because of parser hack that builds
12909 first an dummy BINFO and then sometimes replace it by real BINFO in some
12911 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_BINFO (t
) && TYPE_BINFO (tv
)
12912 && TYPE_BINFO (t
) != TYPE_BINFO (tv
)
12913 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
12914 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
12915 at LTO time only. */
12916 && (in_lto_p
&& odr_type_p (t
)))
12918 error ("type variant has different TYPE_BINFO");
12920 error ("type variant's TYPE_BINFO");
12921 debug_tree (TYPE_BINFO (tv
));
12922 error ("type's TYPE_BINFO");
12923 debug_tree (TYPE_BINFO (t
));
12927 /* Check various uses of TYPE_VALUES_RAW. */
12928 if (TREE_CODE (t
) == ENUMERAL_TYPE
)
12929 verify_variant_match (TYPE_VALUES
);
12930 else if (TREE_CODE (t
) == ARRAY_TYPE
)
12931 verify_variant_match (TYPE_DOMAIN
);
12932 /* Permit incomplete variants of complete type. While FEs may complete
12933 all variants, this does not happen for C++ templates in all cases. */
12934 else if (RECORD_OR_UNION_TYPE_P (t
)
12935 && COMPLETE_TYPE_P (t
)
12936 && TYPE_FIELDS (t
) != TYPE_FIELDS (tv
))
12940 /* Fortran builds qualified variants as new records with items of
12941 qualified type. Verify that they looks same. */
12942 for (f1
= TYPE_FIELDS (t
), f2
= TYPE_FIELDS (tv
);
12944 f1
= TREE_CHAIN (f1
), f2
= TREE_CHAIN (f2
))
12945 if (TREE_CODE (f1
) != FIELD_DECL
|| TREE_CODE (f2
) != FIELD_DECL
12946 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1
))
12947 != TYPE_MAIN_VARIANT (TREE_TYPE (f2
))
12948 /* FIXME: gfc_nonrestricted_type builds all types as variants
12949 with exception of pointer types. It deeply copies the type
12950 which means that we may end up with a variant type
12951 referring non-variant pointer. We may change it to
12952 produce types as variants, too, like
12953 objc_get_protocol_qualified_type does. */
12954 && !POINTER_TYPE_P (TREE_TYPE (f1
)))
12955 || DECL_FIELD_OFFSET (f1
) != DECL_FIELD_OFFSET (f2
)
12956 || DECL_FIELD_BIT_OFFSET (f1
) != DECL_FIELD_BIT_OFFSET (f2
))
12960 error ("type variant has different TYPE_FIELDS");
12962 error ("first mismatch is field");
12964 error ("and field");
12969 else if ((TREE_CODE (t
) == FUNCTION_TYPE
|| TREE_CODE (t
) == METHOD_TYPE
))
12970 verify_variant_match (TYPE_ARG_TYPES
);
12971 /* For C++ the qualified variant of array type is really an array type
12972 of qualified TREE_TYPE.
12973 objc builds variants of pointer where pointer to type is a variant, too
12974 in objc_get_protocol_qualified_type. */
12975 if (TREE_TYPE (t
) != TREE_TYPE (tv
)
12976 && ((TREE_CODE (t
) != ARRAY_TYPE
12977 && !POINTER_TYPE_P (t
))
12978 || TYPE_MAIN_VARIANT (TREE_TYPE (t
))
12979 != TYPE_MAIN_VARIANT (TREE_TYPE (tv
))))
12981 error ("type variant has different TREE_TYPE");
12983 error ("type variant's TREE_TYPE");
12984 debug_tree (TREE_TYPE (tv
));
12985 error ("type's TREE_TYPE");
12986 debug_tree (TREE_TYPE (t
));
12989 if (type_with_alias_set_p (t
)
12990 && !gimple_canonical_types_compatible_p (t
, tv
, false))
12992 error ("type is not compatible with its variant");
12994 error ("type variant's TREE_TYPE");
12995 debug_tree (TREE_TYPE (tv
));
12996 error ("type's TREE_TYPE");
12997 debug_tree (TREE_TYPE (t
));
13001 #undef verify_variant_match
13005 /* The TYPE_CANONICAL merging machinery. It should closely resemble
13006 the middle-end types_compatible_p function. It needs to avoid
13007 claiming types are different for types that should be treated
13008 the same with respect to TBAA. Canonical types are also used
13009 for IL consistency checks via the useless_type_conversion_p
13010 predicate which does not handle all type kinds itself but falls
13011 back to pointer-comparison of TYPE_CANONICAL for aggregates
13014 /* Return true if TYPE_UNSIGNED of TYPE should be ignored for canonical
13015 type calculation because we need to allow inter-operability between signed
13016 and unsigned variants. */
13019 type_with_interoperable_signedness (const_tree type
)
13021 /* Fortran standard require C_SIGNED_CHAR to be interoperable with both
13022 signed char and unsigned char. Similarly fortran FE builds
13023 C_SIZE_T as signed type, while C defines it unsigned. */
13025 return tree_code_for_canonical_type_merging (TREE_CODE (type
))
13027 && (TYPE_PRECISION (type
) == TYPE_PRECISION (signed_char_type_node
)
13028 || TYPE_PRECISION (type
) == TYPE_PRECISION (size_type_node
));
13031 /* Return true iff T1 and T2 are structurally identical for what
13033 This function is used both by lto.c canonical type merging and by the
13034 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
13035 that have TYPE_CANONICAL defined and assume them equivalent. This is useful
13036 only for LTO because only in these cases TYPE_CANONICAL equivalence
13037 correspond to one defined by gimple_canonical_types_compatible_p. */
13040 gimple_canonical_types_compatible_p (const_tree t1
, const_tree t2
,
13041 bool trust_type_canonical
)
13043 /* Type variants should be same as the main variant. When not doing sanity
13044 checking to verify this fact, go to main variants and save some work. */
13045 if (trust_type_canonical
)
13047 t1
= TYPE_MAIN_VARIANT (t1
);
13048 t2
= TYPE_MAIN_VARIANT (t2
);
13051 /* Check first for the obvious case of pointer identity. */
13055 /* Check that we have two types to compare. */
13056 if (t1
== NULL_TREE
|| t2
== NULL_TREE
)
13059 /* We consider complete types always compatible with incomplete type.
13060 This does not make sense for canonical type calculation and thus we
13061 need to ensure that we are never called on it.
13063 FIXME: For more correctness the function probably should have three modes
13064 1) mode assuming that types are complete mathcing their structure
13065 2) mode allowing incomplete types but producing equivalence classes
13066 and thus ignoring all info from complete types
13067 3) mode allowing incomplete types to match complete but checking
13068 compatibility between complete types.
13070 1 and 2 can be used for canonical type calculation. 3 is the real
13071 definition of type compatibility that can be used i.e. for warnings during
13072 declaration merging. */
13074 gcc_assert (!trust_type_canonical
13075 || (type_with_alias_set_p (t1
) && type_with_alias_set_p (t2
)));
13076 /* If the types have been previously registered and found equal
13079 if (TYPE_CANONICAL (t1
) && TYPE_CANONICAL (t2
)
13080 && trust_type_canonical
)
13082 /* Do not use TYPE_CANONICAL of pointer types. For LTO streamed types
13083 they are always NULL, but they are set to non-NULL for types
13084 constructed by build_pointer_type and variants. In this case the
13085 TYPE_CANONICAL is more fine grained than the equivalnce we test (where
13086 all pointers are considered equal. Be sure to not return false
13088 gcc_checking_assert (canonical_type_used_p (t1
)
13089 && canonical_type_used_p (t2
));
13090 return TYPE_CANONICAL (t1
) == TYPE_CANONICAL (t2
);
13093 /* Can't be the same type if the types don't have the same code. */
13094 enum tree_code code
= tree_code_for_canonical_type_merging (TREE_CODE (t1
));
13095 if (code
!= tree_code_for_canonical_type_merging (TREE_CODE (t2
)))
13098 /* Qualifiers do not matter for canonical type comparison purposes. */
13100 /* Void types and nullptr types are always the same. */
13101 if (TREE_CODE (t1
) == VOID_TYPE
13102 || TREE_CODE (t1
) == NULLPTR_TYPE
)
13105 /* Can't be the same type if they have different mode. */
13106 if (TYPE_MODE (t1
) != TYPE_MODE (t2
))
13109 /* Non-aggregate types can be handled cheaply. */
13110 if (INTEGRAL_TYPE_P (t1
)
13111 || SCALAR_FLOAT_TYPE_P (t1
)
13112 || FIXED_POINT_TYPE_P (t1
)
13113 || TREE_CODE (t1
) == VECTOR_TYPE
13114 || TREE_CODE (t1
) == COMPLEX_TYPE
13115 || TREE_CODE (t1
) == OFFSET_TYPE
13116 || POINTER_TYPE_P (t1
))
13118 /* Can't be the same type if they have different recision. */
13119 if (TYPE_PRECISION (t1
) != TYPE_PRECISION (t2
))
13122 /* In some cases the signed and unsigned types are required to be
13124 if (TYPE_UNSIGNED (t1
) != TYPE_UNSIGNED (t2
)
13125 && !type_with_interoperable_signedness (t1
))
13128 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
13129 interoperable with "signed char". Unless all frontends are revisited
13130 to agree on these types, we must ignore the flag completely. */
13132 /* Fortran standard define C_PTR type that is compatible with every
13133 C pointer. For this reason we need to glob all pointers into one.
13134 Still pointers in different address spaces are not compatible. */
13135 if (POINTER_TYPE_P (t1
))
13137 if (TYPE_ADDR_SPACE (TREE_TYPE (t1
))
13138 != TYPE_ADDR_SPACE (TREE_TYPE (t2
)))
13142 /* Tail-recurse to components. */
13143 if (TREE_CODE (t1
) == VECTOR_TYPE
13144 || TREE_CODE (t1
) == COMPLEX_TYPE
)
13145 return gimple_canonical_types_compatible_p (TREE_TYPE (t1
),
13147 trust_type_canonical
);
13152 /* Do type-specific comparisons. */
13153 switch (TREE_CODE (t1
))
13156 /* Array types are the same if the element types are the same and
13157 the number of elements are the same. */
13158 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1
), TREE_TYPE (t2
),
13159 trust_type_canonical
)
13160 || TYPE_STRING_FLAG (t1
) != TYPE_STRING_FLAG (t2
)
13161 || TYPE_REVERSE_STORAGE_ORDER (t1
) != TYPE_REVERSE_STORAGE_ORDER (t2
)
13162 || TYPE_NONALIASED_COMPONENT (t1
) != TYPE_NONALIASED_COMPONENT (t2
))
13166 tree i1
= TYPE_DOMAIN (t1
);
13167 tree i2
= TYPE_DOMAIN (t2
);
13169 /* For an incomplete external array, the type domain can be
13170 NULL_TREE. Check this condition also. */
13171 if (i1
== NULL_TREE
&& i2
== NULL_TREE
)
13173 else if (i1
== NULL_TREE
|| i2
== NULL_TREE
)
13177 tree min1
= TYPE_MIN_VALUE (i1
);
13178 tree min2
= TYPE_MIN_VALUE (i2
);
13179 tree max1
= TYPE_MAX_VALUE (i1
);
13180 tree max2
= TYPE_MAX_VALUE (i2
);
13182 /* The minimum/maximum values have to be the same. */
13185 && ((TREE_CODE (min1
) == PLACEHOLDER_EXPR
13186 && TREE_CODE (min2
) == PLACEHOLDER_EXPR
)
13187 || operand_equal_p (min1
, min2
, 0))))
13190 && ((TREE_CODE (max1
) == PLACEHOLDER_EXPR
13191 && TREE_CODE (max2
) == PLACEHOLDER_EXPR
)
13192 || operand_equal_p (max1
, max2
, 0)))))
13200 case FUNCTION_TYPE
:
13201 /* Function types are the same if the return type and arguments types
13203 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1
), TREE_TYPE (t2
),
13204 trust_type_canonical
))
13207 if (TYPE_ARG_TYPES (t1
) == TYPE_ARG_TYPES (t2
))
13211 tree parms1
, parms2
;
13213 for (parms1
= TYPE_ARG_TYPES (t1
), parms2
= TYPE_ARG_TYPES (t2
);
13215 parms1
= TREE_CHAIN (parms1
), parms2
= TREE_CHAIN (parms2
))
13217 if (!gimple_canonical_types_compatible_p
13218 (TREE_VALUE (parms1
), TREE_VALUE (parms2
),
13219 trust_type_canonical
))
13223 if (parms1
|| parms2
)
13231 case QUAL_UNION_TYPE
:
13235 /* Don't try to compare variants of an incomplete type, before
13236 TYPE_FIELDS has been copied around. */
13237 if (!COMPLETE_TYPE_P (t1
) && !COMPLETE_TYPE_P (t2
))
13241 if (TYPE_REVERSE_STORAGE_ORDER (t1
) != TYPE_REVERSE_STORAGE_ORDER (t2
))
13244 /* For aggregate types, all the fields must be the same. */
13245 for (f1
= TYPE_FIELDS (t1
), f2
= TYPE_FIELDS (t2
);
13247 f1
= TREE_CHAIN (f1
), f2
= TREE_CHAIN (f2
))
13249 /* Skip non-fields and zero-sized fields. */
13250 while (f1
&& (TREE_CODE (f1
) != FIELD_DECL
13252 && integer_zerop (DECL_SIZE (f1
)))))
13253 f1
= TREE_CHAIN (f1
);
13254 while (f2
&& (TREE_CODE (f2
) != FIELD_DECL
13256 && integer_zerop (DECL_SIZE (f2
)))))
13257 f2
= TREE_CHAIN (f2
);
13260 /* The fields must have the same name, offset and type. */
13261 if (DECL_NONADDRESSABLE_P (f1
) != DECL_NONADDRESSABLE_P (f2
)
13262 || !gimple_compare_field_offset (f1
, f2
)
13263 || !gimple_canonical_types_compatible_p
13264 (TREE_TYPE (f1
), TREE_TYPE (f2
),
13265 trust_type_canonical
))
13269 /* If one aggregate has more fields than the other, they
13270 are not the same. */
13278 /* Consider all types with language specific trees in them mutually
13279 compatible. This is executed only from verify_type and false
13280 positives can be tolerated. */
13281 gcc_assert (!in_lto_p
);
13286 /* Verify type T. */
13289 verify_type (const_tree t
)
13291 bool error_found
= false;
13292 tree mv
= TYPE_MAIN_VARIANT (t
);
13295 error ("Main variant is not defined");
13296 error_found
= true;
13298 else if (mv
!= TYPE_MAIN_VARIANT (mv
))
13300 error ("TYPE_MAIN_VARIANT has different TYPE_MAIN_VARIANT");
13302 error_found
= true;
13304 else if (t
!= mv
&& !verify_type_variant (t
, mv
))
13305 error_found
= true;
13307 tree ct
= TYPE_CANONICAL (t
);
13310 else if (TYPE_CANONICAL (t
) != ct
)
13312 error ("TYPE_CANONICAL has different TYPE_CANONICAL");
13314 error_found
= true;
13316 /* Method and function types can not be used to address memory and thus
13317 TYPE_CANONICAL really matters only for determining useless conversions.
13319 FIXME: C++ FE produce declarations of builtin functions that are not
13320 compatible with main variants. */
13321 else if (TREE_CODE (t
) == FUNCTION_TYPE
)
13324 /* FIXME: gimple_canonical_types_compatible_p can not compare types
13325 with variably sized arrays because their sizes possibly
13326 gimplified to different variables. */
13327 && !variably_modified_type_p (ct
, NULL
)
13328 && !gimple_canonical_types_compatible_p (t
, ct
, false))
13330 error ("TYPE_CANONICAL is not compatible");
13332 error_found
= true;
13335 if (COMPLETE_TYPE_P (t
) && TYPE_CANONICAL (t
)
13336 && TYPE_MODE (t
) != TYPE_MODE (TYPE_CANONICAL (t
)))
13338 error ("TYPE_MODE of TYPE_CANONICAL is not compatible");
13340 error_found
= true;
13342 if (TYPE_MAIN_VARIANT (t
) == t
&& ct
&& TYPE_MAIN_VARIANT (ct
) != ct
)
13344 error ("TYPE_CANONICAL of main variant is not main variant");
13346 debug_tree (TYPE_MAIN_VARIANT (ct
));
13347 error_found
= true;
13351 /* Check various uses of TYPE_MIN_VALUE_RAW. */
13352 if (RECORD_OR_UNION_TYPE_P (t
))
13354 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13355 and danagle the pointer from time to time. */
13356 if (TYPE_VFIELD (t
)
13357 && TREE_CODE (TYPE_VFIELD (t
)) != FIELD_DECL
13358 && TREE_CODE (TYPE_VFIELD (t
)) != TREE_LIST
)
13360 error ("TYPE_VFIELD is not FIELD_DECL nor TREE_LIST");
13361 debug_tree (TYPE_VFIELD (t
));
13362 error_found
= true;
13365 else if (TREE_CODE (t
) == POINTER_TYPE
)
13367 if (TYPE_NEXT_PTR_TO (t
)
13368 && TREE_CODE (TYPE_NEXT_PTR_TO (t
)) != POINTER_TYPE
)
13370 error ("TYPE_NEXT_PTR_TO is not POINTER_TYPE");
13371 debug_tree (TYPE_NEXT_PTR_TO (t
));
13372 error_found
= true;
13375 else if (TREE_CODE (t
) == REFERENCE_TYPE
)
13377 if (TYPE_NEXT_REF_TO (t
)
13378 && TREE_CODE (TYPE_NEXT_REF_TO (t
)) != REFERENCE_TYPE
)
13380 error ("TYPE_NEXT_REF_TO is not REFERENCE_TYPE");
13381 debug_tree (TYPE_NEXT_REF_TO (t
));
13382 error_found
= true;
13385 else if (INTEGRAL_TYPE_P (t
) || TREE_CODE (t
) == REAL_TYPE
13386 || TREE_CODE (t
) == FIXED_POINT_TYPE
)
13388 /* FIXME: The following check should pass:
13389 useless_type_conversion_p (const_cast <tree> (t),
13390 TREE_TYPE (TYPE_MIN_VALUE (t))
13391 but does not for C sizetypes in LTO. */
13394 /* Check various uses of TYPE_MAXVAL_RAW. */
13395 if (RECORD_OR_UNION_TYPE_P (t
))
13397 if (!TYPE_BINFO (t
))
13399 else if (TREE_CODE (TYPE_BINFO (t
)) != TREE_BINFO
)
13401 error ("TYPE_BINFO is not TREE_BINFO");
13402 debug_tree (TYPE_BINFO (t
));
13403 error_found
= true;
13405 else if (TREE_TYPE (TYPE_BINFO (t
)) != TYPE_MAIN_VARIANT (t
))
13407 error ("TYPE_BINFO type is not TYPE_MAIN_VARIANT");
13408 debug_tree (TREE_TYPE (TYPE_BINFO (t
)));
13409 error_found
= true;
13412 else if (TREE_CODE (t
) == FUNCTION_TYPE
|| TREE_CODE (t
) == METHOD_TYPE
)
13414 if (TYPE_METHOD_BASETYPE (t
)
13415 && TREE_CODE (TYPE_METHOD_BASETYPE (t
)) != RECORD_TYPE
13416 && TREE_CODE (TYPE_METHOD_BASETYPE (t
)) != UNION_TYPE
)
13418 error ("TYPE_METHOD_BASETYPE is not record nor union");
13419 debug_tree (TYPE_METHOD_BASETYPE (t
));
13420 error_found
= true;
13423 else if (TREE_CODE (t
) == OFFSET_TYPE
)
13425 if (TYPE_OFFSET_BASETYPE (t
)
13426 && TREE_CODE (TYPE_OFFSET_BASETYPE (t
)) != RECORD_TYPE
13427 && TREE_CODE (TYPE_OFFSET_BASETYPE (t
)) != UNION_TYPE
)
13429 error ("TYPE_OFFSET_BASETYPE is not record nor union");
13430 debug_tree (TYPE_OFFSET_BASETYPE (t
));
13431 error_found
= true;
13434 else if (INTEGRAL_TYPE_P (t
) || TREE_CODE (t
) == REAL_TYPE
13435 || TREE_CODE (t
) == FIXED_POINT_TYPE
)
13437 /* FIXME: The following check should pass:
13438 useless_type_conversion_p (const_cast <tree> (t),
13439 TREE_TYPE (TYPE_MAX_VALUE (t))
13440 but does not for C sizetypes in LTO. */
13442 else if (TREE_CODE (t
) == ARRAY_TYPE
)
13444 if (TYPE_ARRAY_MAX_SIZE (t
)
13445 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t
)) != INTEGER_CST
)
13447 error ("TYPE_ARRAY_MAX_SIZE not INTEGER_CST");
13448 debug_tree (TYPE_ARRAY_MAX_SIZE (t
));
13449 error_found
= true;
13452 else if (TYPE_MAX_VALUE_RAW (t
))
13454 error ("TYPE_MAX_VALUE_RAW non-NULL");
13455 debug_tree (TYPE_MAX_VALUE_RAW (t
));
13456 error_found
= true;
13459 if (TYPE_LANG_SLOT_1 (t
) && in_lto_p
)
13461 error ("TYPE_LANG_SLOT_1 (binfo) field is non-NULL");
13462 debug_tree (TYPE_LANG_SLOT_1 (t
));
13463 error_found
= true;
13466 /* Check various uses of TYPE_VALUES_RAW. */
13467 if (TREE_CODE (t
) == ENUMERAL_TYPE
)
13468 for (tree l
= TYPE_VALUES (t
); l
; l
= TREE_CHAIN (l
))
13470 tree value
= TREE_VALUE (l
);
13471 tree name
= TREE_PURPOSE (l
);
13473 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
13474 CONST_DECL of ENUMERAL TYPE. */
13475 if (TREE_CODE (value
) != INTEGER_CST
&& TREE_CODE (value
) != CONST_DECL
)
13477 error ("Enum value is not CONST_DECL or INTEGER_CST");
13478 debug_tree (value
);
13480 error_found
= true;
13482 if (TREE_CODE (TREE_TYPE (value
)) != INTEGER_TYPE
13483 && !useless_type_conversion_p (const_cast <tree
> (t
), TREE_TYPE (value
)))
13485 error ("Enum value type is not INTEGER_TYPE nor convertible to the enum");
13486 debug_tree (value
);
13488 error_found
= true;
13490 if (TREE_CODE (name
) != IDENTIFIER_NODE
)
13492 error ("Enum value name is not IDENTIFIER_NODE");
13493 debug_tree (value
);
13495 error_found
= true;
13498 else if (TREE_CODE (t
) == ARRAY_TYPE
)
13500 if (TYPE_DOMAIN (t
) && TREE_CODE (TYPE_DOMAIN (t
)) != INTEGER_TYPE
)
13502 error ("Array TYPE_DOMAIN is not integer type");
13503 debug_tree (TYPE_DOMAIN (t
));
13504 error_found
= true;
13507 else if (RECORD_OR_UNION_TYPE_P (t
))
13509 if (TYPE_FIELDS (t
) && !COMPLETE_TYPE_P (t
) && in_lto_p
)
13511 error ("TYPE_FIELDS defined in incomplete type");
13512 error_found
= true;
13514 for (tree fld
= TYPE_FIELDS (t
); fld
; fld
= TREE_CHAIN (fld
))
13516 /* TODO: verify properties of decls. */
13517 if (TREE_CODE (fld
) == FIELD_DECL
)
13519 else if (TREE_CODE (fld
) == TYPE_DECL
)
13521 else if (TREE_CODE (fld
) == CONST_DECL
)
13523 else if (VAR_P (fld
))
13525 else if (TREE_CODE (fld
) == TEMPLATE_DECL
)
13527 else if (TREE_CODE (fld
) == USING_DECL
)
13529 else if (TREE_CODE (fld
) == FUNCTION_DECL
)
13533 error ("Wrong tree in TYPE_FIELDS list");
13535 error_found
= true;
13539 else if (TREE_CODE (t
) == INTEGER_TYPE
13540 || TREE_CODE (t
) == BOOLEAN_TYPE
13541 || TREE_CODE (t
) == OFFSET_TYPE
13542 || TREE_CODE (t
) == REFERENCE_TYPE
13543 || TREE_CODE (t
) == NULLPTR_TYPE
13544 || TREE_CODE (t
) == POINTER_TYPE
)
13546 if (TYPE_CACHED_VALUES_P (t
) != (TYPE_CACHED_VALUES (t
) != NULL
))
13548 error ("TYPE_CACHED_VALUES_P is %i while TYPE_CACHED_VALUES is %p",
13549 TYPE_CACHED_VALUES_P (t
), (void *)TYPE_CACHED_VALUES (t
));
13550 error_found
= true;
13552 else if (TYPE_CACHED_VALUES_P (t
) && TREE_CODE (TYPE_CACHED_VALUES (t
)) != TREE_VEC
)
13554 error ("TYPE_CACHED_VALUES is not TREE_VEC");
13555 debug_tree (TYPE_CACHED_VALUES (t
));
13556 error_found
= true;
13558 /* Verify just enough of cache to ensure that no one copied it to new type.
13559 All copying should go by copy_node that should clear it. */
13560 else if (TYPE_CACHED_VALUES_P (t
))
13563 for (i
= 0; i
< TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t
)); i
++)
13564 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t
), i
)
13565 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t
), i
)) != t
)
13567 error ("wrong TYPE_CACHED_VALUES entry");
13568 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t
), i
));
13569 error_found
= true;
13574 else if (TREE_CODE (t
) == FUNCTION_TYPE
|| TREE_CODE (t
) == METHOD_TYPE
)
13575 for (tree l
= TYPE_ARG_TYPES (t
); l
; l
= TREE_CHAIN (l
))
13577 /* C++ FE uses TREE_PURPOSE to store initial values. */
13578 if (TREE_PURPOSE (l
) && in_lto_p
)
13580 error ("TREE_PURPOSE is non-NULL in TYPE_ARG_TYPES list");
13582 error_found
= true;
13584 if (!TYPE_P (TREE_VALUE (l
)))
13586 error ("Wrong entry in TYPE_ARG_TYPES list");
13588 error_found
= true;
13591 else if (!is_lang_specific (t
) && TYPE_VALUES_RAW (t
))
13593 error ("TYPE_VALUES_RAW field is non-NULL");
13594 debug_tree (TYPE_VALUES_RAW (t
));
13595 error_found
= true;
13597 if (TREE_CODE (t
) != INTEGER_TYPE
13598 && TREE_CODE (t
) != BOOLEAN_TYPE
13599 && TREE_CODE (t
) != OFFSET_TYPE
13600 && TREE_CODE (t
) != REFERENCE_TYPE
13601 && TREE_CODE (t
) != NULLPTR_TYPE
13602 && TREE_CODE (t
) != POINTER_TYPE
13603 && TYPE_CACHED_VALUES_P (t
))
13605 error ("TYPE_CACHED_VALUES_P is set while it should not");
13606 error_found
= true;
13608 if (TYPE_STRING_FLAG (t
)
13609 && TREE_CODE (t
) != ARRAY_TYPE
&& TREE_CODE (t
) != INTEGER_TYPE
)
13611 error ("TYPE_STRING_FLAG is set on wrong type code");
13612 error_found
= true;
13615 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
13616 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
13618 if (TREE_CODE (t
) == METHOD_TYPE
13619 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t
)) != TYPE_METHOD_BASETYPE (t
))
13621 error ("TYPE_METHOD_BASETYPE is not main variant");
13622 error_found
= true;
13627 debug_tree (const_cast <tree
> (t
));
13628 internal_error ("verify_type failed");
13633 /* Return 1 if ARG interpreted as signed in its precision is known to be
13634 always positive or 2 if ARG is known to be always negative, or 3 if
13635 ARG may be positive or negative. */
13638 get_range_pos_neg (tree arg
)
13640 if (arg
== error_mark_node
)
13643 int prec
= TYPE_PRECISION (TREE_TYPE (arg
));
13645 if (TREE_CODE (arg
) == INTEGER_CST
)
13647 wide_int w
= wi::sext (wi::to_wide (arg
), prec
);
13653 while (CONVERT_EXPR_P (arg
)
13654 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (arg
, 0)))
13655 && TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (arg
, 0))) <= prec
)
13657 arg
= TREE_OPERAND (arg
, 0);
13658 /* Narrower value zero extended into wider type
13659 will always result in positive values. */
13660 if (TYPE_UNSIGNED (TREE_TYPE (arg
))
13661 && TYPE_PRECISION (TREE_TYPE (arg
)) < prec
)
13663 prec
= TYPE_PRECISION (TREE_TYPE (arg
));
13668 if (TREE_CODE (arg
) != SSA_NAME
)
13670 wide_int arg_min
, arg_max
;
13671 while (get_range_info (arg
, &arg_min
, &arg_max
) != VR_RANGE
)
13673 gimple
*g
= SSA_NAME_DEF_STMT (arg
);
13674 if (is_gimple_assign (g
)
13675 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (g
)))
13677 tree t
= gimple_assign_rhs1 (g
);
13678 if (INTEGRAL_TYPE_P (TREE_TYPE (t
))
13679 && TYPE_PRECISION (TREE_TYPE (t
)) <= prec
)
13681 if (TYPE_UNSIGNED (TREE_TYPE (t
))
13682 && TYPE_PRECISION (TREE_TYPE (t
)) < prec
)
13684 prec
= TYPE_PRECISION (TREE_TYPE (t
));
13693 if (TYPE_UNSIGNED (TREE_TYPE (arg
)))
13695 /* For unsigned values, the "positive" range comes
13696 below the "negative" range. */
13697 if (!wi::neg_p (wi::sext (arg_max
, prec
), SIGNED
))
13699 if (wi::neg_p (wi::sext (arg_min
, prec
), SIGNED
))
13704 if (!wi::neg_p (wi::sext (arg_min
, prec
), SIGNED
))
13706 if (wi::neg_p (wi::sext (arg_max
, prec
), SIGNED
))
13715 /* Return true if ARG is marked with the nonnull attribute in the
13716 current function signature. */
13719 nonnull_arg_p (const_tree arg
)
13721 tree t
, attrs
, fntype
;
13722 unsigned HOST_WIDE_INT arg_num
;
13724 gcc_assert (TREE_CODE (arg
) == PARM_DECL
13725 && (POINTER_TYPE_P (TREE_TYPE (arg
))
13726 || TREE_CODE (TREE_TYPE (arg
)) == OFFSET_TYPE
));
13728 /* The static chain decl is always non null. */
13729 if (arg
== cfun
->static_chain_decl
)
13732 /* THIS argument of method is always non-NULL. */
13733 if (TREE_CODE (TREE_TYPE (cfun
->decl
)) == METHOD_TYPE
13734 && arg
== DECL_ARGUMENTS (cfun
->decl
)
13735 && flag_delete_null_pointer_checks
)
13738 /* Values passed by reference are always non-NULL. */
13739 if (TREE_CODE (TREE_TYPE (arg
)) == REFERENCE_TYPE
13740 && flag_delete_null_pointer_checks
)
13743 fntype
= TREE_TYPE (cfun
->decl
);
13744 for (attrs
= TYPE_ATTRIBUTES (fntype
); attrs
; attrs
= TREE_CHAIN (attrs
))
13746 attrs
= lookup_attribute ("nonnull", attrs
);
13748 /* If "nonnull" wasn't specified, we know nothing about the argument. */
13749 if (attrs
== NULL_TREE
)
13752 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
13753 if (TREE_VALUE (attrs
) == NULL_TREE
)
13756 /* Get the position number for ARG in the function signature. */
13757 for (arg_num
= 1, t
= DECL_ARGUMENTS (cfun
->decl
);
13759 t
= DECL_CHAIN (t
), arg_num
++)
13765 gcc_assert (t
== arg
);
13767 /* Now see if ARG_NUM is mentioned in the nonnull list. */
13768 for (t
= TREE_VALUE (attrs
); t
; t
= TREE_CHAIN (t
))
13770 if (compare_tree_int (TREE_VALUE (t
), arg_num
) == 0)
13778 /* Combine LOC and BLOCK to a combined adhoc loc, retaining any range
13782 set_block (location_t loc
, tree block
)
13784 location_t pure_loc
= get_pure_location (loc
);
13785 source_range src_range
= get_range_from_loc (line_table
, loc
);
13786 return COMBINE_LOCATION_DATA (line_table
, pure_loc
, src_range
, block
);
13790 set_source_range (tree expr
, location_t start
, location_t finish
)
13792 source_range src_range
;
13793 src_range
.m_start
= start
;
13794 src_range
.m_finish
= finish
;
13795 return set_source_range (expr
, src_range
);
13799 set_source_range (tree expr
, source_range src_range
)
13801 if (!EXPR_P (expr
))
13802 return UNKNOWN_LOCATION
;
13804 location_t pure_loc
= get_pure_location (EXPR_LOCATION (expr
));
13805 location_t adhoc
= COMBINE_LOCATION_DATA (line_table
,
13809 SET_EXPR_LOCATION (expr
, adhoc
);
13813 /* Return the name of combined function FN, for debugging purposes. */
13816 combined_fn_name (combined_fn fn
)
13818 if (builtin_fn_p (fn
))
13820 tree fndecl
= builtin_decl_explicit (as_builtin_fn (fn
));
13821 return IDENTIFIER_POINTER (DECL_NAME (fndecl
));
13824 return internal_fn_name (as_internal_fn (fn
));
13827 /* Return a bitmap with a bit set corresponding to each argument in
13828 a function call type FNTYPE declared with attribute nonnull,
13829 or null if none of the function's argument are nonnull. The caller
13830 must free the bitmap. */
13833 get_nonnull_args (const_tree fntype
)
13835 if (fntype
== NULL_TREE
)
13838 tree attrs
= TYPE_ATTRIBUTES (fntype
);
13842 bitmap argmap
= NULL
;
13844 /* A function declaration can specify multiple attribute nonnull,
13845 each with zero or more arguments. The loop below creates a bitmap
13846 representing a union of all the arguments. An empty (but non-null)
13847 bitmap means that all arguments have been declaraed nonnull. */
13848 for ( ; attrs
; attrs
= TREE_CHAIN (attrs
))
13850 attrs
= lookup_attribute ("nonnull", attrs
);
13855 argmap
= BITMAP_ALLOC (NULL
);
13857 if (!TREE_VALUE (attrs
))
13859 /* Clear the bitmap in case a previous attribute nonnull
13860 set it and this one overrides it for all arguments. */
13861 bitmap_clear (argmap
);
13865 /* Iterate over the indices of the format arguments declared nonnull
13866 and set a bit for each. */
13867 for (tree idx
= TREE_VALUE (attrs
); idx
; idx
= TREE_CHAIN (idx
))
13869 unsigned int val
= TREE_INT_CST_LOW (TREE_VALUE (idx
)) - 1;
13870 bitmap_set_bit (argmap
, val
);
13877 /* Returns true if TYPE is a type where it and all of its subobjects
13878 (recursively) are of structure, union, or array type. */
13881 default_is_empty_type (tree type
)
13883 if (RECORD_OR_UNION_TYPE_P (type
))
13885 for (tree field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
13886 if (TREE_CODE (field
) == FIELD_DECL
13887 && !DECL_PADDING_P (field
)
13888 && !default_is_empty_type (TREE_TYPE (field
)))
13892 else if (TREE_CODE (type
) == ARRAY_TYPE
)
13893 return (integer_minus_onep (array_type_nelts (type
))
13894 || TYPE_DOMAIN (type
) == NULL_TREE
13895 || default_is_empty_type (TREE_TYPE (type
)));
13899 /* Implement TARGET_EMPTY_RECORD_P. Return true if TYPE is an empty type
13900 that shouldn't be passed via stack. */
13903 default_is_empty_record (const_tree type
)
13905 if (!abi_version_at_least (12))
13908 if (type
== error_mark_node
)
13911 if (TREE_ADDRESSABLE (type
))
13914 return default_is_empty_type (TYPE_MAIN_VARIANT (type
));
13917 /* Like int_size_in_bytes, but handle empty records specially. */
13920 arg_int_size_in_bytes (const_tree type
)
13922 return TYPE_EMPTY_P (type
) ? 0 : int_size_in_bytes (type
);
13925 /* Like size_in_bytes, but handle empty records specially. */
13928 arg_size_in_bytes (const_tree type
)
13930 return TYPE_EMPTY_P (type
) ? size_zero_node
: size_in_bytes (type
);
13933 /* Return true if an expression with CODE has to have the same result type as
13934 its first operand. */
13937 expr_type_first_operand_type_p (tree_code code
)
13950 case TRUNC_DIV_EXPR
:
13951 case CEIL_DIV_EXPR
:
13952 case FLOOR_DIV_EXPR
:
13953 case ROUND_DIV_EXPR
:
13954 case TRUNC_MOD_EXPR
:
13955 case CEIL_MOD_EXPR
:
13956 case FLOOR_MOD_EXPR
:
13957 case ROUND_MOD_EXPR
:
13959 case EXACT_DIV_EXPR
:
13977 /* List of pointer types used to declare builtins before we have seen their
13980 Keep the size up to date in tree.h ! */
13981 const builtin_structptr_type builtin_structptr_types
[6] =
13983 { fileptr_type_node
, ptr_type_node
, "FILE" },
13984 { const_tm_ptr_type_node
, const_ptr_type_node
, "tm" },
13985 { fenv_t_ptr_type_node
, ptr_type_node
, "fenv_t" },
13986 { const_fenv_t_ptr_type_node
, const_ptr_type_node
, "fenv_t" },
13987 { fexcept_t_ptr_type_node
, ptr_type_node
, "fexcept_t" },
13988 { const_fexcept_t_ptr_type_node
, const_ptr_type_node
, "fexcept_t" }
13993 namespace selftest
{
13995 /* Selftests for tree. */
13997 /* Verify that integer constants are sane. */
14000 test_integer_constants ()
14002 ASSERT_TRUE (integer_type_node
!= NULL
);
14003 ASSERT_TRUE (build_int_cst (integer_type_node
, 0) != NULL
);
14005 tree type
= integer_type_node
;
14007 tree zero
= build_zero_cst (type
);
14008 ASSERT_EQ (INTEGER_CST
, TREE_CODE (zero
));
14009 ASSERT_EQ (type
, TREE_TYPE (zero
));
14011 tree one
= build_int_cst (type
, 1);
14012 ASSERT_EQ (INTEGER_CST
, TREE_CODE (one
));
14013 ASSERT_EQ (type
, TREE_TYPE (zero
));
14016 /* Verify identifiers. */
14019 test_identifiers ()
14021 tree identifier
= get_identifier ("foo");
14022 ASSERT_EQ (3, IDENTIFIER_LENGTH (identifier
));
14023 ASSERT_STREQ ("foo", IDENTIFIER_POINTER (identifier
));
14026 /* Verify LABEL_DECL. */
14031 tree identifier
= get_identifier ("err");
14032 tree label_decl
= build_decl (UNKNOWN_LOCATION
, LABEL_DECL
,
14033 identifier
, void_type_node
);
14034 ASSERT_EQ (-1, LABEL_DECL_UID (label_decl
));
14035 ASSERT_FALSE (FORCED_LABEL (label_decl
));
14038 /* Return a new VECTOR_CST node whose type is TYPE and whose values
14039 are given by VALS. */
14042 build_vector (tree type
, vec
<tree
> vals MEM_STAT_DECL
)
14044 gcc_assert (vals
.length () == TYPE_VECTOR_SUBPARTS (type
));
14045 tree_vector_builder
builder (type
, vals
.length (), 1);
14046 builder
.splice (vals
);
14047 return builder
.build ();
14050 /* Check that VECTOR_CST ACTUAL contains the elements in EXPECTED. */
14053 check_vector_cst (vec
<tree
> expected
, tree actual
)
14055 ASSERT_EQ (expected
.length (), TYPE_VECTOR_SUBPARTS (TREE_TYPE (actual
)));
14056 for (unsigned int i
= 0; i
< expected
.length (); ++i
)
14057 ASSERT_EQ (wi::to_wide (expected
[i
]),
14058 wi::to_wide (vector_cst_elt (actual
, i
)));
14061 /* Check that VECTOR_CST ACTUAL contains NPATTERNS duplicated elements,
14062 and that its elements match EXPECTED. */
14065 check_vector_cst_duplicate (vec
<tree
> expected
, tree actual
,
14066 unsigned int npatterns
)
14068 ASSERT_EQ (npatterns
, VECTOR_CST_NPATTERNS (actual
));
14069 ASSERT_EQ (1, VECTOR_CST_NELTS_PER_PATTERN (actual
));
14070 ASSERT_EQ (npatterns
, vector_cst_encoded_nelts (actual
));
14071 ASSERT_TRUE (VECTOR_CST_DUPLICATE_P (actual
));
14072 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual
));
14073 check_vector_cst (expected
, actual
);
14076 /* Check that VECTOR_CST ACTUAL contains NPATTERNS foreground elements
14077 and NPATTERNS background elements, and that its elements match
14081 check_vector_cst_fill (vec
<tree
> expected
, tree actual
,
14082 unsigned int npatterns
)
14084 ASSERT_EQ (npatterns
, VECTOR_CST_NPATTERNS (actual
));
14085 ASSERT_EQ (2, VECTOR_CST_NELTS_PER_PATTERN (actual
));
14086 ASSERT_EQ (2 * npatterns
, vector_cst_encoded_nelts (actual
));
14087 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual
));
14088 ASSERT_FALSE (VECTOR_CST_STEPPED_P (actual
));
14089 check_vector_cst (expected
, actual
);
14092 /* Check that VECTOR_CST ACTUAL contains NPATTERNS stepped patterns,
14093 and that its elements match EXPECTED. */
14096 check_vector_cst_stepped (vec
<tree
> expected
, tree actual
,
14097 unsigned int npatterns
)
14099 ASSERT_EQ (npatterns
, VECTOR_CST_NPATTERNS (actual
));
14100 ASSERT_EQ (3, VECTOR_CST_NELTS_PER_PATTERN (actual
));
14101 ASSERT_EQ (3 * npatterns
, vector_cst_encoded_nelts (actual
));
14102 ASSERT_FALSE (VECTOR_CST_DUPLICATE_P (actual
));
14103 ASSERT_TRUE (VECTOR_CST_STEPPED_P (actual
));
14104 check_vector_cst (expected
, actual
);
14107 /* Test the creation of VECTOR_CSTs. */
14110 test_vector_cst_patterns ()
14112 auto_vec
<tree
, 8> elements (8);
14113 elements
.quick_grow (8);
14114 tree element_type
= build_nonstandard_integer_type (16, true);
14115 tree vector_type
= build_vector_type (element_type
, 8);
14117 /* Test a simple linear series with a base of 0 and a step of 1:
14118 { 0, 1, 2, 3, 4, 5, 6, 7 }. */
14119 for (unsigned int i
= 0; i
< 8; ++i
)
14120 elements
[i
] = build_int_cst (element_type
, i
);
14121 check_vector_cst_stepped (elements
, build_vector (vector_type
, elements
), 1);
14123 /* Try the same with the first element replaced by 100:
14124 { 100, 1, 2, 3, 4, 5, 6, 7 }. */
14125 elements
[0] = build_int_cst (element_type
, 100);
14126 check_vector_cst_stepped (elements
, build_vector (vector_type
, elements
), 1);
14128 /* Try a series that wraps around.
14129 { 100, 65531, 65532, 65533, 65534, 65535, 0, 1 }. */
14130 for (unsigned int i
= 1; i
< 8; ++i
)
14131 elements
[i
] = build_int_cst (element_type
, (65530 + i
) & 0xffff);
14132 check_vector_cst_stepped (elements
, build_vector (vector_type
, elements
), 1);
14134 /* Try a downward series:
14135 { 100, 79, 78, 77, 76, 75, 75, 73 }. */
14136 for (unsigned int i
= 1; i
< 8; ++i
)
14137 elements
[i
] = build_int_cst (element_type
, 80 - i
);
14138 check_vector_cst_stepped (elements
, build_vector (vector_type
, elements
), 1);
14140 /* Try two interleaved series with different bases and steps:
14141 { 100, 53, 66, 206, 62, 212, 58, 218 }. */
14142 elements
[1] = build_int_cst (element_type
, 53);
14143 for (unsigned int i
= 2; i
< 8; i
+= 2)
14145 elements
[i
] = build_int_cst (element_type
, 70 - i
* 2);
14146 elements
[i
+ 1] = build_int_cst (element_type
, 200 + i
* 3);
14148 check_vector_cst_stepped (elements
, build_vector (vector_type
, elements
), 2);
14150 /* Try a duplicated value:
14151 { 100, 100, 100, 100, 100, 100, 100, 100 }. */
14152 for (unsigned int i
= 1; i
< 8; ++i
)
14153 elements
[i
] = elements
[0];
14154 check_vector_cst_duplicate (elements
,
14155 build_vector (vector_type
, elements
), 1);
14157 /* Try an interleaved duplicated value:
14158 { 100, 55, 100, 55, 100, 55, 100, 55 }. */
14159 elements
[1] = build_int_cst (element_type
, 55);
14160 for (unsigned int i
= 2; i
< 8; ++i
)
14161 elements
[i
] = elements
[i
- 2];
14162 check_vector_cst_duplicate (elements
,
14163 build_vector (vector_type
, elements
), 2);
14165 /* Try a duplicated value with 2 exceptions
14166 { 41, 97, 100, 55, 100, 55, 100, 55 }. */
14167 elements
[0] = build_int_cst (element_type
, 41);
14168 elements
[1] = build_int_cst (element_type
, 97);
14169 check_vector_cst_fill (elements
, build_vector (vector_type
, elements
), 2);
14171 /* Try with and without a step
14172 { 41, 97, 100, 21, 100, 35, 100, 49 }. */
14173 for (unsigned int i
= 3; i
< 8; i
+= 2)
14174 elements
[i
] = build_int_cst (element_type
, i
* 7);
14175 check_vector_cst_stepped (elements
, build_vector (vector_type
, elements
), 2);
14177 /* Try a fully-general constant:
14178 { 41, 97, 100, 21, 100, 9990, 100, 49 }. */
14179 elements
[5] = build_int_cst (element_type
, 9990);
14180 check_vector_cst_fill (elements
, build_vector (vector_type
, elements
), 4);
14183 /* Run all of the selftests within this file. */
14188 test_integer_constants ();
14189 test_identifiers ();
14191 test_vector_cst_patterns ();
14194 } // namespace selftest
14196 #endif /* CHECKING_P */
14198 #include "gt-tree.h"