1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains the low level primitives for operating on tree nodes,
21 including allocation, list operations, interning of identifiers,
22 construction of data type nodes and statement nodes,
23 and construction of type conversion nodes. It also contains
24 tables index by tree code that describe how to take apart
27 It is intended to be language-independent, but occasionally
28 calls language-dependent routines defined (for C) in typecheck.c. */
32 #include "coretypes.h"
36 #include "stor-layout.h"
43 #include "toplev.h" /* get_random_seed */
45 #include "filenames.h"
48 #include "common/common-target.h"
49 #include "langhooks.h"
50 #include "tree-inline.h"
51 #include "tree-iterator.h"
52 #include "basic-block.h"
54 #include "pointer-set.h"
55 #include "tree-ssa-alias.h"
56 #include "internal-fn.h"
57 #include "gimple-expr.h"
60 #include "gimple-iterator.h"
62 #include "gimple-ssa.h"
64 #include "tree-phinodes.h"
65 #include "stringpool.h"
66 #include "tree-ssanames.h"
70 #include "tree-pass.h"
71 #include "langhooks-def.h"
72 #include "diagnostic.h"
73 #include "tree-diagnostic.h"
74 #include "tree-pretty-print.h"
79 /* Tree code classes. */
81 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
82 #define END_OF_BASE_TREE_CODES tcc_exceptional,
84 const enum tree_code_class tree_code_type
[] = {
85 #include "all-tree.def"
89 #undef END_OF_BASE_TREE_CODES
91 /* Table indexed by tree code giving number of expression
92 operands beyond the fixed part of the node structure.
93 Not used for types or decls. */
95 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
96 #define END_OF_BASE_TREE_CODES 0,
98 const unsigned char tree_code_length
[] = {
99 #include "all-tree.def"
103 #undef END_OF_BASE_TREE_CODES
105 /* Names of tree components.
106 Used for printing out the tree and error messages. */
107 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
108 #define END_OF_BASE_TREE_CODES "@dummy",
110 static const char *const tree_code_name
[] = {
111 #include "all-tree.def"
115 #undef END_OF_BASE_TREE_CODES
117 /* Each tree code class has an associated string representation.
118 These must correspond to the tree_code_class entries. */
120 const char *const tree_code_class_strings
[] =
135 /* obstack.[ch] explicitly declined to prototype this. */
136 extern int _obstack_allocated_p (struct obstack
*h
, void *obj
);
138 /* Statistics-gathering stuff. */
140 static int tree_code_counts
[MAX_TREE_CODES
];
141 int tree_node_counts
[(int) all_kinds
];
142 int tree_node_sizes
[(int) all_kinds
];
144 /* Keep in sync with tree.h:enum tree_node_kind. */
145 static const char * const tree_node_kind_names
[] = {
164 /* Unique id for next decl created. */
165 static GTY(()) int next_decl_uid
;
166 /* Unique id for next type created. */
167 static GTY(()) int next_type_uid
= 1;
168 /* Unique id for next debug decl created. Use negative numbers,
169 to catch erroneous uses. */
170 static GTY(()) int next_debug_decl_uid
;
172 /* Since we cannot rehash a type after it is in the table, we have to
173 keep the hash code. */
175 struct GTY(()) type_hash
{
180 /* Initial size of the hash table (rounded to next prime). */
181 #define TYPE_HASH_INITIAL_SIZE 1000
183 /* Now here is the hash table. When recording a type, it is added to
184 the slot whose index is the hash code. Note that the hash table is
185 used for several kinds of types (function types, array types and
186 array index range types, for now). While all these live in the
187 same table, they are completely independent, and the hash code is
188 computed differently for each of these. */
190 static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash
)))
191 htab_t type_hash_table
;
193 /* Hash table and temporary node for larger integer const values. */
194 static GTY (()) tree int_cst_node
;
195 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node
)))
196 htab_t int_cst_hash_table
;
198 /* Hash table for optimization flags and target option flags. Use the same
199 hash table for both sets of options. Nodes for building the current
200 optimization and target option nodes. The assumption is most of the time
201 the options created will already be in the hash table, so we avoid
202 allocating and freeing up a node repeatably. */
203 static GTY (()) tree cl_optimization_node
;
204 static GTY (()) tree cl_target_option_node
;
205 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node
)))
206 htab_t cl_option_hash_table
;
208 /* General tree->tree mapping structure for use in hash tables. */
211 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map
)))
212 htab_t debug_expr_for_decl
;
214 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map
)))
215 htab_t value_expr_for_decl
;
217 static GTY ((if_marked ("tree_vec_map_marked_p"), param_is (struct tree_vec_map
)))
218 htab_t debug_args_for_decl
;
220 static GTY ((if_marked ("tree_priority_map_marked_p"),
221 param_is (struct tree_priority_map
)))
222 htab_t init_priority_for_decl
;
224 static void set_type_quals (tree
, int);
225 static int type_hash_eq (const void *, const void *);
226 static hashval_t
type_hash_hash (const void *);
227 static hashval_t
int_cst_hash_hash (const void *);
228 static int int_cst_hash_eq (const void *, const void *);
229 static hashval_t
cl_option_hash_hash (const void *);
230 static int cl_option_hash_eq (const void *, const void *);
231 static void print_type_hash_statistics (void);
232 static void print_debug_expr_statistics (void);
233 static void print_value_expr_statistics (void);
234 static int type_hash_marked_p (const void *);
235 static unsigned int type_hash_list (const_tree
, hashval_t
);
236 static unsigned int attribute_hash_list (const_tree
, hashval_t
);
237 static bool decls_same_for_odr (tree decl1
, tree decl2
);
239 tree global_trees
[TI_MAX
];
240 tree integer_types
[itk_none
];
242 unsigned char tree_contains_struct
[MAX_TREE_CODES
][64];
244 /* Number of operands for each OpenMP clause. */
245 unsigned const char omp_clause_num_ops
[] =
247 0, /* OMP_CLAUSE_ERROR */
248 1, /* OMP_CLAUSE_PRIVATE */
249 1, /* OMP_CLAUSE_SHARED */
250 1, /* OMP_CLAUSE_FIRSTPRIVATE */
251 2, /* OMP_CLAUSE_LASTPRIVATE */
252 4, /* OMP_CLAUSE_REDUCTION */
253 1, /* OMP_CLAUSE_COPYIN */
254 1, /* OMP_CLAUSE_COPYPRIVATE */
255 2, /* OMP_CLAUSE_LINEAR */
256 2, /* OMP_CLAUSE_ALIGNED */
257 1, /* OMP_CLAUSE_DEPEND */
258 1, /* OMP_CLAUSE_UNIFORM */
259 2, /* OMP_CLAUSE_FROM */
260 2, /* OMP_CLAUSE_TO */
261 2, /* OMP_CLAUSE_MAP */
262 1, /* OMP_CLAUSE_HOST */
263 1, /* OMP_CLAUSE_OACC_DEVICE */
264 1, /* OMP_CLAUSE_DEVICE_RESIDENT */
265 1, /* OMP_CLAUSE_USE_DEVICE */
266 1, /* OMP_CLAUSE_GANG */
267 1, /* OMP_CLAUSE_ASYNC */
268 1, /* OMP_CLAUSE_WAIT */
269 1, /* OMP_NO_CLAUSE_CACHE */
270 1, /* OMP_CLAUSE__LOOPTEMP_ */
271 1, /* OMP_CLAUSE_IF */
272 1, /* OMP_CLAUSE_NUM_THREADS */
273 1, /* OMP_CLAUSE_SCHEDULE */
274 0, /* OMP_CLAUSE_NOWAIT */
275 0, /* OMP_CLAUSE_ORDERED */
276 0, /* OMP_CLAUSE_DEFAULT */
277 3, /* OMP_CLAUSE_COLLAPSE */
278 0, /* OMP_CLAUSE_UNTIED */
279 1, /* OMP_CLAUSE_FINAL */
280 0, /* OMP_CLAUSE_MERGEABLE */
281 1, /* OMP_CLAUSE_DEVICE */
282 1, /* OMP_CLAUSE_DIST_SCHEDULE */
283 0, /* OMP_CLAUSE_INBRANCH */
284 0, /* OMP_CLAUSE_NOTINBRANCH */
285 1, /* OMP_CLAUSE_NUM_TEAMS */
286 1, /* OMP_CLAUSE_THREAD_LIMIT */
287 0, /* OMP_CLAUSE_PROC_BIND */
288 1, /* OMP_CLAUSE_SAFELEN */
289 1, /* OMP_CLAUSE_SIMDLEN */
290 0, /* OMP_CLAUSE_FOR */
291 0, /* OMP_CLAUSE_PARALLEL */
292 0, /* OMP_CLAUSE_SECTIONS */
293 0, /* OMP_CLAUSE_TASKGROUP */
294 1, /* OMP_CLAUSE__SIMDUID_ */
295 0, /* OMP_CLAUSE_INDEPENDENT */
296 1, /* OMP_CLAUSE_WORKER */
297 1, /* OMP_CLAUSE_VECTOR */
298 1, /* OMP_CLAUSE_NUM_GANGS */
299 1, /* OMP_CLAUSE_NUM_WORKERS */
300 1, /* OMP_CLAUSE_VECTOR_LENGTH */
303 const char * const omp_clause_code_name
[] =
362 /* Return the tree node structure used by tree code CODE. */
364 static inline enum tree_node_structure_enum
365 tree_node_structure_for_code (enum tree_code code
)
367 switch (TREE_CODE_CLASS (code
))
369 case tcc_declaration
:
374 return TS_FIELD_DECL
;
380 return TS_LABEL_DECL
;
382 return TS_RESULT_DECL
;
383 case DEBUG_EXPR_DECL
:
386 return TS_CONST_DECL
;
390 return TS_FUNCTION_DECL
;
391 case TRANSLATION_UNIT_DECL
:
392 return TS_TRANSLATION_UNIT_DECL
;
394 return TS_DECL_NON_COMMON
;
398 return TS_TYPE_NON_COMMON
;
407 default: /* tcc_constant and tcc_exceptional */
412 /* tcc_constant cases. */
413 case INTEGER_CST
: return TS_INT_CST
;
414 case REAL_CST
: return TS_REAL_CST
;
415 case FIXED_CST
: return TS_FIXED_CST
;
416 case COMPLEX_CST
: return TS_COMPLEX
;
417 case VECTOR_CST
: return TS_VECTOR
;
418 case STRING_CST
: return TS_STRING
;
419 /* tcc_exceptional cases. */
420 case ERROR_MARK
: return TS_COMMON
;
421 case IDENTIFIER_NODE
: return TS_IDENTIFIER
;
422 case TREE_LIST
: return TS_LIST
;
423 case TREE_VEC
: return TS_VEC
;
424 case SSA_NAME
: return TS_SSA_NAME
;
425 case PLACEHOLDER_EXPR
: return TS_COMMON
;
426 case STATEMENT_LIST
: return TS_STATEMENT_LIST
;
427 case BLOCK
: return TS_BLOCK
;
428 case CONSTRUCTOR
: return TS_CONSTRUCTOR
;
429 case TREE_BINFO
: return TS_BINFO
;
430 case OMP_CLAUSE
: return TS_OMP_CLAUSE
;
431 case OPTIMIZATION_NODE
: return TS_OPTIMIZATION
;
432 case TARGET_OPTION_NODE
: return TS_TARGET_OPTION
;
440 /* Initialize tree_contains_struct to describe the hierarchy of tree
444 initialize_tree_contains_struct (void)
448 for (i
= ERROR_MARK
; i
< LAST_AND_UNUSED_TREE_CODE
; i
++)
451 enum tree_node_structure_enum ts_code
;
453 code
= (enum tree_code
) i
;
454 ts_code
= tree_node_structure_for_code (code
);
456 /* Mark the TS structure itself. */
457 tree_contains_struct
[code
][ts_code
] = 1;
459 /* Mark all the structures that TS is derived from. */
477 case TS_STATEMENT_LIST
:
478 MARK_TS_TYPED (code
);
482 case TS_DECL_MINIMAL
:
488 case TS_OPTIMIZATION
:
489 case TS_TARGET_OPTION
:
490 MARK_TS_COMMON (code
);
493 case TS_TYPE_WITH_LANG_SPECIFIC
:
494 MARK_TS_TYPE_COMMON (code
);
497 case TS_TYPE_NON_COMMON
:
498 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code
);
502 MARK_TS_DECL_MINIMAL (code
);
507 MARK_TS_DECL_COMMON (code
);
510 case TS_DECL_NON_COMMON
:
511 MARK_TS_DECL_WITH_VIS (code
);
514 case TS_DECL_WITH_VIS
:
518 MARK_TS_DECL_WRTL (code
);
522 MARK_TS_DECL_COMMON (code
);
526 MARK_TS_DECL_WITH_VIS (code
);
530 case TS_FUNCTION_DECL
:
531 MARK_TS_DECL_NON_COMMON (code
);
534 case TS_TRANSLATION_UNIT_DECL
:
535 MARK_TS_DECL_COMMON (code
);
543 /* Basic consistency checks for attributes used in fold. */
544 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_NON_COMMON
]);
545 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_NON_COMMON
]);
546 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_COMMON
]);
547 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_COMMON
]);
548 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_COMMON
]);
549 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_COMMON
]);
550 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_COMMON
]);
551 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_COMMON
]);
552 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_COMMON
]);
553 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_COMMON
]);
554 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_COMMON
]);
555 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WRTL
]);
556 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_WRTL
]);
557 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_WRTL
]);
558 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WRTL
]);
559 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_WRTL
]);
560 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_MINIMAL
]);
561 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_MINIMAL
]);
562 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_MINIMAL
]);
563 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_MINIMAL
]);
564 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_MINIMAL
]);
565 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_MINIMAL
]);
566 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_MINIMAL
]);
567 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_MINIMAL
]);
568 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_MINIMAL
]);
569 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WITH_VIS
]);
570 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WITH_VIS
]);
571 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_WITH_VIS
]);
572 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_VAR_DECL
]);
573 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_FIELD_DECL
]);
574 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_PARM_DECL
]);
575 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_LABEL_DECL
]);
576 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_RESULT_DECL
]);
577 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_CONST_DECL
]);
578 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_TYPE_DECL
]);
579 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_FUNCTION_DECL
]);
580 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_MINIMAL
]);
581 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_COMMON
]);
582 gcc_assert (tree_contains_struct
[NAMELIST_DECL
][TS_DECL_MINIMAL
]);
583 gcc_assert (tree_contains_struct
[NAMELIST_DECL
][TS_DECL_COMMON
]);
592 /* Initialize the hash table of types. */
593 type_hash_table
= htab_create_ggc (TYPE_HASH_INITIAL_SIZE
, type_hash_hash
,
596 debug_expr_for_decl
= htab_create_ggc (512, tree_decl_map_hash
,
597 tree_decl_map_eq
, 0);
599 value_expr_for_decl
= htab_create_ggc (512, tree_decl_map_hash
,
600 tree_decl_map_eq
, 0);
601 init_priority_for_decl
= htab_create_ggc (512, tree_priority_map_hash
,
602 tree_priority_map_eq
, 0);
604 int_cst_hash_table
= htab_create_ggc (1024, int_cst_hash_hash
,
605 int_cst_hash_eq
, NULL
);
607 int_cst_node
= make_node (INTEGER_CST
);
609 cl_option_hash_table
= htab_create_ggc (64, cl_option_hash_hash
,
610 cl_option_hash_eq
, NULL
);
612 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
613 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
615 /* Initialize the tree_contains_struct array. */
616 initialize_tree_contains_struct ();
617 lang_hooks
.init_ts ();
621 /* The name of the object as the assembler will see it (but before any
622 translations made by ASM_OUTPUT_LABELREF). Often this is the same
623 as DECL_NAME. It is an IDENTIFIER_NODE. */
625 decl_assembler_name (tree decl
)
627 if (!DECL_ASSEMBLER_NAME_SET_P (decl
))
628 lang_hooks
.set_decl_assembler_name (decl
);
629 return DECL_WITH_VIS_CHECK (decl
)->decl_with_vis
.assembler_name
;
632 /* Compute the number of bytes occupied by a tree with code CODE.
633 This function cannot be used for nodes that have variable sizes,
634 including TREE_VEC, STRING_CST, and CALL_EXPR. */
636 tree_code_size (enum tree_code code
)
638 switch (TREE_CODE_CLASS (code
))
640 case tcc_declaration
: /* A decl node */
645 return sizeof (struct tree_field_decl
);
647 return sizeof (struct tree_parm_decl
);
649 return sizeof (struct tree_var_decl
);
651 return sizeof (struct tree_label_decl
);
653 return sizeof (struct tree_result_decl
);
655 return sizeof (struct tree_const_decl
);
657 return sizeof (struct tree_type_decl
);
659 return sizeof (struct tree_function_decl
);
660 case DEBUG_EXPR_DECL
:
661 return sizeof (struct tree_decl_with_rtl
);
663 return sizeof (struct tree_decl_non_common
);
667 case tcc_type
: /* a type node */
668 return sizeof (struct tree_type_non_common
);
670 case tcc_reference
: /* a reference */
671 case tcc_expression
: /* an expression */
672 case tcc_statement
: /* an expression with side effects */
673 case tcc_comparison
: /* a comparison expression */
674 case tcc_unary
: /* a unary arithmetic expression */
675 case tcc_binary
: /* a binary arithmetic expression */
676 return (sizeof (struct tree_exp
)
677 + (TREE_CODE_LENGTH (code
) - 1) * sizeof (tree
));
679 case tcc_constant
: /* a constant */
682 case INTEGER_CST
: return sizeof (struct tree_int_cst
);
683 case REAL_CST
: return sizeof (struct tree_real_cst
);
684 case FIXED_CST
: return sizeof (struct tree_fixed_cst
);
685 case COMPLEX_CST
: return sizeof (struct tree_complex
);
686 case VECTOR_CST
: return sizeof (struct tree_vector
);
687 case STRING_CST
: gcc_unreachable ();
689 return lang_hooks
.tree_size (code
);
692 case tcc_exceptional
: /* something random, like an identifier. */
695 case IDENTIFIER_NODE
: return lang_hooks
.identifier_size
;
696 case TREE_LIST
: return sizeof (struct tree_list
);
699 case PLACEHOLDER_EXPR
: return sizeof (struct tree_common
);
702 case OMP_CLAUSE
: gcc_unreachable ();
704 case SSA_NAME
: return sizeof (struct tree_ssa_name
);
706 case STATEMENT_LIST
: return sizeof (struct tree_statement_list
);
707 case BLOCK
: return sizeof (struct tree_block
);
708 case CONSTRUCTOR
: return sizeof (struct tree_constructor
);
709 case OPTIMIZATION_NODE
: return sizeof (struct tree_optimization_option
);
710 case TARGET_OPTION_NODE
: return sizeof (struct tree_target_option
);
713 return lang_hooks
.tree_size (code
);
721 /* Compute the number of bytes occupied by NODE. This routine only
722 looks at TREE_CODE, except for those nodes that have variable sizes. */
724 tree_size (const_tree node
)
726 const enum tree_code code
= TREE_CODE (node
);
730 return (offsetof (struct tree_binfo
, base_binfos
)
732 ::embedded_size (BINFO_N_BASE_BINFOS (node
)));
735 return (sizeof (struct tree_vec
)
736 + (TREE_VEC_LENGTH (node
) - 1) * sizeof (tree
));
739 return (sizeof (struct tree_vector
)
740 + (TYPE_VECTOR_SUBPARTS (TREE_TYPE (node
)) - 1) * sizeof (tree
));
743 return TREE_STRING_LENGTH (node
) + offsetof (struct tree_string
, str
) + 1;
746 return (sizeof (struct tree_omp_clause
)
747 + (omp_clause_num_ops
[OMP_CLAUSE_CODE (node
)] - 1)
751 if (TREE_CODE_CLASS (code
) == tcc_vl_exp
)
752 return (sizeof (struct tree_exp
)
753 + (VL_EXP_OPERAND_LENGTH (node
) - 1) * sizeof (tree
));
755 return tree_code_size (code
);
759 /* Record interesting allocation statistics for a tree node with CODE
763 record_node_allocation_statistics (enum tree_code code ATTRIBUTE_UNUSED
,
764 size_t length ATTRIBUTE_UNUSED
)
766 enum tree_code_class type
= TREE_CODE_CLASS (code
);
769 if (!GATHER_STATISTICS
)
774 case tcc_declaration
: /* A decl node */
778 case tcc_type
: /* a type node */
782 case tcc_statement
: /* an expression with side effects */
786 case tcc_reference
: /* a reference */
790 case tcc_expression
: /* an expression */
791 case tcc_comparison
: /* a comparison expression */
792 case tcc_unary
: /* a unary arithmetic expression */
793 case tcc_binary
: /* a binary arithmetic expression */
797 case tcc_constant
: /* a constant */
801 case tcc_exceptional
: /* something random, like an identifier. */
804 case IDENTIFIER_NODE
:
817 kind
= ssa_name_kind
;
829 kind
= omp_clause_kind
;
846 tree_code_counts
[(int) code
]++;
847 tree_node_counts
[(int) kind
]++;
848 tree_node_sizes
[(int) kind
] += length
;
851 /* Allocate and return a new UID from the DECL_UID namespace. */
854 allocate_decl_uid (void)
856 return next_decl_uid
++;
859 /* Return a newly allocated node of code CODE. For decl and type
860 nodes, some other fields are initialized. The rest of the node is
861 initialized to zero. This function cannot be used for TREE_VEC or
862 OMP_CLAUSE nodes, which is enforced by asserts in tree_code_size.
864 Achoo! I got a code in the node. */
867 make_node_stat (enum tree_code code MEM_STAT_DECL
)
870 enum tree_code_class type
= TREE_CODE_CLASS (code
);
871 size_t length
= tree_code_size (code
);
873 record_node_allocation_statistics (code
, length
);
875 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
876 TREE_SET_CODE (t
, code
);
881 TREE_SIDE_EFFECTS (t
) = 1;
884 case tcc_declaration
:
885 if (CODE_CONTAINS_STRUCT (code
, TS_DECL_COMMON
))
887 if (code
== FUNCTION_DECL
)
889 DECL_ALIGN (t
) = FUNCTION_BOUNDARY
;
890 DECL_MODE (t
) = FUNCTION_MODE
;
895 DECL_SOURCE_LOCATION (t
) = input_location
;
896 if (TREE_CODE (t
) == DEBUG_EXPR_DECL
)
897 DECL_UID (t
) = --next_debug_decl_uid
;
900 DECL_UID (t
) = allocate_decl_uid ();
901 SET_DECL_PT_UID (t
, -1);
903 if (TREE_CODE (t
) == LABEL_DECL
)
904 LABEL_DECL_UID (t
) = -1;
909 TYPE_UID (t
) = next_type_uid
++;
910 TYPE_ALIGN (t
) = BITS_PER_UNIT
;
911 TYPE_USER_ALIGN (t
) = 0;
912 TYPE_MAIN_VARIANT (t
) = t
;
913 TYPE_CANONICAL (t
) = t
;
915 /* Default to no attributes for type, but let target change that. */
916 TYPE_ATTRIBUTES (t
) = NULL_TREE
;
917 targetm
.set_default_type_attributes (t
);
919 /* We have not yet computed the alias set for this type. */
920 TYPE_ALIAS_SET (t
) = -1;
924 TREE_CONSTANT (t
) = 1;
933 case PREDECREMENT_EXPR
:
934 case PREINCREMENT_EXPR
:
935 case POSTDECREMENT_EXPR
:
936 case POSTINCREMENT_EXPR
:
937 /* All of these have side-effects, no matter what their
939 TREE_SIDE_EFFECTS (t
) = 1;
948 /* Other classes need no special treatment. */
955 /* Return a new node with the same contents as NODE except that its
956 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
959 copy_node_stat (tree node MEM_STAT_DECL
)
962 enum tree_code code
= TREE_CODE (node
);
965 gcc_assert (code
!= STATEMENT_LIST
);
967 length
= tree_size (node
);
968 record_node_allocation_statistics (code
, length
);
969 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
970 memcpy (t
, node
, length
);
972 if (CODE_CONTAINS_STRUCT (code
, TS_COMMON
))
974 TREE_ASM_WRITTEN (t
) = 0;
975 TREE_VISITED (t
) = 0;
977 if (TREE_CODE_CLASS (code
) == tcc_declaration
)
979 if (code
== DEBUG_EXPR_DECL
)
980 DECL_UID (t
) = --next_debug_decl_uid
;
983 DECL_UID (t
) = allocate_decl_uid ();
984 if (DECL_PT_UID_SET_P (node
))
985 SET_DECL_PT_UID (t
, DECL_PT_UID (node
));
987 if ((TREE_CODE (node
) == PARM_DECL
|| TREE_CODE (node
) == VAR_DECL
)
988 && DECL_HAS_VALUE_EXPR_P (node
))
990 SET_DECL_VALUE_EXPR (t
, DECL_VALUE_EXPR (node
));
991 DECL_HAS_VALUE_EXPR_P (t
) = 1;
993 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
994 if (TREE_CODE (node
) == VAR_DECL
)
995 DECL_HAS_DEBUG_EXPR_P (t
) = 0;
996 if (TREE_CODE (node
) == VAR_DECL
&& DECL_HAS_INIT_PRIORITY_P (node
))
998 SET_DECL_INIT_PRIORITY (t
, DECL_INIT_PRIORITY (node
));
999 DECL_HAS_INIT_PRIORITY_P (t
) = 1;
1001 if (TREE_CODE (node
) == FUNCTION_DECL
)
1002 DECL_STRUCT_FUNCTION (t
) = NULL
;
1004 else if (TREE_CODE_CLASS (code
) == tcc_type
)
1006 TYPE_UID (t
) = next_type_uid
++;
1007 /* The following is so that the debug code for
1008 the copy is different from the original type.
1009 The two statements usually duplicate each other
1010 (because they clear fields of the same union),
1011 but the optimizer should catch that. */
1012 TYPE_SYMTAB_POINTER (t
) = 0;
1013 TYPE_SYMTAB_ADDRESS (t
) = 0;
1015 /* Do not copy the values cache. */
1016 if (TYPE_CACHED_VALUES_P (t
))
1018 TYPE_CACHED_VALUES_P (t
) = 0;
1019 TYPE_CACHED_VALUES (t
) = NULL_TREE
;
1026 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1027 For example, this can copy a list made of TREE_LIST nodes. */
1030 copy_list (tree list
)
1038 head
= prev
= copy_node (list
);
1039 next
= TREE_CHAIN (list
);
1042 TREE_CHAIN (prev
) = copy_node (next
);
1043 prev
= TREE_CHAIN (prev
);
1044 next
= TREE_CHAIN (next
);
1050 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1053 build_int_cst (tree type
, HOST_WIDE_INT low
)
1055 /* Support legacy code. */
1057 type
= integer_type_node
;
1059 return double_int_to_tree (type
, double_int::from_shwi (low
));
1062 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1065 build_int_cst_type (tree type
, HOST_WIDE_INT low
)
1069 return double_int_to_tree (type
, double_int::from_shwi (low
));
1072 /* Constructs tree in type TYPE from with value given by CST. Signedness
1073 of CST is assumed to be the same as the signedness of TYPE. */
1076 double_int_to_tree (tree type
, double_int cst
)
1078 bool sign_extended_type
= !TYPE_UNSIGNED (type
);
1080 cst
= cst
.ext (TYPE_PRECISION (type
), !sign_extended_type
);
1082 return build_int_cst_wide (type
, cst
.low
, cst
.high
);
1085 /* Returns true if CST fits into range of TYPE. Signedness of CST is assumed
1086 to be the same as the signedness of TYPE. */
1089 double_int_fits_to_tree_p (const_tree type
, double_int cst
)
1091 bool sign_extended_type
= !TYPE_UNSIGNED (type
);
1094 = cst
.ext (TYPE_PRECISION (type
), !sign_extended_type
);
1099 /* We force the double_int CST to the range of the type TYPE by sign or
1100 zero extending it. OVERFLOWABLE indicates if we are interested in
1101 overflow of the value, when >0 we are only interested in signed
1102 overflow, for <0 we are interested in any overflow. OVERFLOWED
1103 indicates whether overflow has already occurred. CONST_OVERFLOWED
1104 indicates whether constant overflow has already occurred. We force
1105 T's value to be within range of T's type (by setting to 0 or 1 all
1106 the bits outside the type's range). We set TREE_OVERFLOWED if,
1107 OVERFLOWED is nonzero,
1108 or OVERFLOWABLE is >0 and signed overflow occurs
1109 or OVERFLOWABLE is <0 and any overflow occurs
1110 We return a new tree node for the extended double_int. The node
1111 is shared if no overflow flags are set. */
1115 force_fit_type_double (tree type
, double_int cst
, int overflowable
,
1118 bool sign_extended_type
= !TYPE_UNSIGNED (type
);
1120 /* If we need to set overflow flags, return a new unshared node. */
1121 if (overflowed
|| !double_int_fits_to_tree_p (type
, cst
))
1125 || (overflowable
> 0 && sign_extended_type
))
1127 tree t
= make_node (INTEGER_CST
);
1129 = cst
.ext (TYPE_PRECISION (type
), !sign_extended_type
);
1130 TREE_TYPE (t
) = type
;
1131 TREE_OVERFLOW (t
) = 1;
1136 /* Else build a shared node. */
1137 return double_int_to_tree (type
, cst
);
1140 /* These are the hash table functions for the hash table of INTEGER_CST
1141 nodes of a sizetype. */
1143 /* Return the hash code code X, an INTEGER_CST. */
1146 int_cst_hash_hash (const void *x
)
1148 const_tree
const t
= (const_tree
) x
;
1150 return (TREE_INT_CST_HIGH (t
) ^ TREE_INT_CST_LOW (t
)
1151 ^ htab_hash_pointer (TREE_TYPE (t
)));
1154 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1155 is the same as that given by *Y, which is the same. */
1158 int_cst_hash_eq (const void *x
, const void *y
)
1160 const_tree
const xt
= (const_tree
) x
;
1161 const_tree
const yt
= (const_tree
) y
;
1163 return (TREE_TYPE (xt
) == TREE_TYPE (yt
)
1164 && TREE_INT_CST_HIGH (xt
) == TREE_INT_CST_HIGH (yt
)
1165 && TREE_INT_CST_LOW (xt
) == TREE_INT_CST_LOW (yt
));
1168 /* Create an INT_CST node of TYPE and value HI:LOW.
1169 The returned node is always shared. For small integers we use a
1170 per-type vector cache, for larger ones we use a single hash table. */
1173 build_int_cst_wide (tree type
, unsigned HOST_WIDE_INT low
, HOST_WIDE_INT hi
)
1181 switch (TREE_CODE (type
))
1184 gcc_assert (hi
== 0 && low
== 0);
1188 case REFERENCE_TYPE
:
1189 /* Cache NULL pointer. */
1198 /* Cache false or true. */
1206 if (TYPE_UNSIGNED (type
))
1209 limit
= INTEGER_SHARE_LIMIT
;
1210 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1216 limit
= INTEGER_SHARE_LIMIT
+ 1;
1217 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1219 else if (hi
== -1 && low
== -(unsigned HOST_WIDE_INT
)1)
1233 /* Look for it in the type's vector of small shared ints. */
1234 if (!TYPE_CACHED_VALUES_P (type
))
1236 TYPE_CACHED_VALUES_P (type
) = 1;
1237 TYPE_CACHED_VALUES (type
) = make_tree_vec (limit
);
1240 t
= TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
);
1243 /* Make sure no one is clobbering the shared constant. */
1244 gcc_assert (TREE_TYPE (t
) == type
);
1245 gcc_assert (TREE_INT_CST_LOW (t
) == low
);
1246 gcc_assert (TREE_INT_CST_HIGH (t
) == hi
);
1250 /* Create a new shared int. */
1251 t
= make_node (INTEGER_CST
);
1253 TREE_INT_CST_LOW (t
) = low
;
1254 TREE_INT_CST_HIGH (t
) = hi
;
1255 TREE_TYPE (t
) = type
;
1257 TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) = t
;
1262 /* Use the cache of larger shared ints. */
1265 TREE_INT_CST_LOW (int_cst_node
) = low
;
1266 TREE_INT_CST_HIGH (int_cst_node
) = hi
;
1267 TREE_TYPE (int_cst_node
) = type
;
1269 slot
= htab_find_slot (int_cst_hash_table
, int_cst_node
, INSERT
);
1273 /* Insert this one into the hash table. */
1276 /* Make a new node for next time round. */
1277 int_cst_node
= make_node (INTEGER_CST
);
1285 cache_integer_cst (tree t
)
1287 tree type
= TREE_TYPE (t
);
1288 HOST_WIDE_INT hi
= TREE_INT_CST_HIGH (t
);
1289 unsigned HOST_WIDE_INT low
= TREE_INT_CST_LOW (t
);
1293 gcc_assert (!TREE_OVERFLOW (t
));
1295 switch (TREE_CODE (type
))
1298 gcc_assert (hi
== 0 && low
== 0);
1302 case REFERENCE_TYPE
:
1303 /* Cache NULL pointer. */
1312 /* Cache false or true. */
1320 if (TYPE_UNSIGNED (type
))
1323 limit
= INTEGER_SHARE_LIMIT
;
1324 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1330 limit
= INTEGER_SHARE_LIMIT
+ 1;
1331 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1333 else if (hi
== -1 && low
== -(unsigned HOST_WIDE_INT
)1)
1347 /* Look for it in the type's vector of small shared ints. */
1348 if (!TYPE_CACHED_VALUES_P (type
))
1350 TYPE_CACHED_VALUES_P (type
) = 1;
1351 TYPE_CACHED_VALUES (type
) = make_tree_vec (limit
);
1354 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) == NULL_TREE
);
1355 TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) = t
;
1359 /* Use the cache of larger shared ints. */
1362 slot
= htab_find_slot (int_cst_hash_table
, t
, INSERT
);
1363 /* If there is already an entry for the number verify it's the
1367 gcc_assert (TREE_INT_CST_LOW ((tree
)*slot
) == low
1368 && TREE_INT_CST_HIGH ((tree
)*slot
) == hi
);
1371 /* Otherwise insert this one into the hash table. */
1377 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1378 and the rest are zeros. */
1381 build_low_bits_mask (tree type
, unsigned bits
)
1385 gcc_assert (bits
<= TYPE_PRECISION (type
));
1387 if (bits
== TYPE_PRECISION (type
)
1388 && !TYPE_UNSIGNED (type
))
1389 /* Sign extended all-ones mask. */
1390 mask
= double_int_minus_one
;
1392 mask
= double_int::mask (bits
);
1394 return build_int_cst_wide (type
, mask
.low
, mask
.high
);
1397 /* Checks that X is integer constant that can be expressed in (unsigned)
1398 HOST_WIDE_INT without loss of precision. */
1401 cst_and_fits_in_hwi (const_tree x
)
1403 if (TREE_CODE (x
) != INTEGER_CST
)
1406 if (TYPE_PRECISION (TREE_TYPE (x
)) > HOST_BITS_PER_WIDE_INT
)
1409 return (TREE_INT_CST_HIGH (x
) == 0
1410 || TREE_INT_CST_HIGH (x
) == -1);
1413 /* Build a newly constructed TREE_VEC node of length LEN. */
1416 make_vector_stat (unsigned len MEM_STAT_DECL
)
1419 unsigned length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vector
);
1421 record_node_allocation_statistics (VECTOR_CST
, length
);
1423 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
1425 TREE_SET_CODE (t
, VECTOR_CST
);
1426 TREE_CONSTANT (t
) = 1;
1431 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1432 are in a list pointed to by VALS. */
1435 build_vector_stat (tree type
, tree
*vals MEM_STAT_DECL
)
1439 tree v
= make_vector (TYPE_VECTOR_SUBPARTS (type
));
1440 TREE_TYPE (v
) = type
;
1442 /* Iterate through elements and check for overflow. */
1443 for (cnt
= 0; cnt
< TYPE_VECTOR_SUBPARTS (type
); ++cnt
)
1445 tree value
= vals
[cnt
];
1447 VECTOR_CST_ELT (v
, cnt
) = value
;
1449 /* Don't crash if we get an address constant. */
1450 if (!CONSTANT_CLASS_P (value
))
1453 over
|= TREE_OVERFLOW (value
);
1456 TREE_OVERFLOW (v
) = over
;
1460 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1461 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1464 build_vector_from_ctor (tree type
, vec
<constructor_elt
, va_gc
> *v
)
1466 tree
*vec
= XALLOCAVEC (tree
, TYPE_VECTOR_SUBPARTS (type
));
1467 unsigned HOST_WIDE_INT idx
;
1470 FOR_EACH_CONSTRUCTOR_VALUE (v
, idx
, value
)
1472 for (; idx
< TYPE_VECTOR_SUBPARTS (type
); ++idx
)
1473 vec
[idx
] = build_zero_cst (TREE_TYPE (type
));
1475 return build_vector (type
, vec
);
1478 /* Build a vector of type VECTYPE where all the elements are SCs. */
1480 build_vector_from_val (tree vectype
, tree sc
)
1482 int i
, nunits
= TYPE_VECTOR_SUBPARTS (vectype
);
1484 if (sc
== error_mark_node
)
1487 /* Verify that the vector type is suitable for SC. Note that there
1488 is some inconsistency in the type-system with respect to restrict
1489 qualifications of pointers. Vector types always have a main-variant
1490 element type and the qualification is applied to the vector-type.
1491 So TREE_TYPE (vector-type) does not return a properly qualified
1492 vector element-type. */
1493 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc
)),
1494 TREE_TYPE (vectype
)));
1496 if (CONSTANT_CLASS_P (sc
))
1498 tree
*v
= XALLOCAVEC (tree
, nunits
);
1499 for (i
= 0; i
< nunits
; ++i
)
1501 return build_vector (vectype
, v
);
1505 vec
<constructor_elt
, va_gc
> *v
;
1506 vec_alloc (v
, nunits
);
1507 for (i
= 0; i
< nunits
; ++i
)
1508 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, sc
);
1509 return build_constructor (vectype
, v
);
1513 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1514 are in the vec pointed to by VALS. */
1516 build_constructor (tree type
, vec
<constructor_elt
, va_gc
> *vals
)
1518 tree c
= make_node (CONSTRUCTOR
);
1520 constructor_elt
*elt
;
1521 bool constant_p
= true;
1522 bool side_effects_p
= false;
1524 TREE_TYPE (c
) = type
;
1525 CONSTRUCTOR_ELTS (c
) = vals
;
1527 FOR_EACH_VEC_SAFE_ELT (vals
, i
, elt
)
1529 /* Mostly ctors will have elts that don't have side-effects, so
1530 the usual case is to scan all the elements. Hence a single
1531 loop for both const and side effects, rather than one loop
1532 each (with early outs). */
1533 if (!TREE_CONSTANT (elt
->value
))
1535 if (TREE_SIDE_EFFECTS (elt
->value
))
1536 side_effects_p
= true;
1539 TREE_SIDE_EFFECTS (c
) = side_effects_p
;
1540 TREE_CONSTANT (c
) = constant_p
;
1545 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1548 build_constructor_single (tree type
, tree index
, tree value
)
1550 vec
<constructor_elt
, va_gc
> *v
;
1551 constructor_elt elt
= {index
, value
};
1554 v
->quick_push (elt
);
1556 return build_constructor (type
, v
);
1560 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1561 are in a list pointed to by VALS. */
1563 build_constructor_from_list (tree type
, tree vals
)
1566 vec
<constructor_elt
, va_gc
> *v
= NULL
;
1570 vec_alloc (v
, list_length (vals
));
1571 for (t
= vals
; t
; t
= TREE_CHAIN (t
))
1572 CONSTRUCTOR_APPEND_ELT (v
, TREE_PURPOSE (t
), TREE_VALUE (t
));
1575 return build_constructor (type
, v
);
1578 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
1579 of elements, provided as index/value pairs. */
1582 build_constructor_va (tree type
, int nelts
, ...)
1584 vec
<constructor_elt
, va_gc
> *v
= NULL
;
1587 va_start (p
, nelts
);
1588 vec_alloc (v
, nelts
);
1591 tree index
= va_arg (p
, tree
);
1592 tree value
= va_arg (p
, tree
);
1593 CONSTRUCTOR_APPEND_ELT (v
, index
, value
);
1596 return build_constructor (type
, v
);
1599 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1602 build_fixed (tree type
, FIXED_VALUE_TYPE f
)
1605 FIXED_VALUE_TYPE
*fp
;
1607 v
= make_node (FIXED_CST
);
1608 fp
= ggc_alloc_fixed_value ();
1609 memcpy (fp
, &f
, sizeof (FIXED_VALUE_TYPE
));
1611 TREE_TYPE (v
) = type
;
1612 TREE_FIXED_CST_PTR (v
) = fp
;
1616 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1619 build_real (tree type
, REAL_VALUE_TYPE d
)
1622 REAL_VALUE_TYPE
*dp
;
1625 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1626 Consider doing it via real_convert now. */
1628 v
= make_node (REAL_CST
);
1629 dp
= ggc_alloc_real_value ();
1630 memcpy (dp
, &d
, sizeof (REAL_VALUE_TYPE
));
1632 TREE_TYPE (v
) = type
;
1633 TREE_REAL_CST_PTR (v
) = dp
;
1634 TREE_OVERFLOW (v
) = overflow
;
1638 /* Return a new REAL_CST node whose type is TYPE
1639 and whose value is the integer value of the INTEGER_CST node I. */
1642 real_value_from_int_cst (const_tree type
, const_tree i
)
1646 /* Clear all bits of the real value type so that we can later do
1647 bitwise comparisons to see if two values are the same. */
1648 memset (&d
, 0, sizeof d
);
1650 real_from_integer (&d
, type
? TYPE_MODE (type
) : VOIDmode
,
1651 TREE_INT_CST_LOW (i
), TREE_INT_CST_HIGH (i
),
1652 TYPE_UNSIGNED (TREE_TYPE (i
)));
1656 /* Given a tree representing an integer constant I, return a tree
1657 representing the same value as a floating-point constant of type TYPE. */
1660 build_real_from_int_cst (tree type
, const_tree i
)
1663 int overflow
= TREE_OVERFLOW (i
);
1665 v
= build_real (type
, real_value_from_int_cst (type
, i
));
1667 TREE_OVERFLOW (v
) |= overflow
;
1671 /* Return a newly constructed STRING_CST node whose value is
1672 the LEN characters at STR.
1673 Note that for a C string literal, LEN should include the trailing NUL.
1674 The TREE_TYPE is not initialized. */
1677 build_string (int len
, const char *str
)
1682 /* Do not waste bytes provided by padding of struct tree_string. */
1683 length
= len
+ offsetof (struct tree_string
, str
) + 1;
1685 record_node_allocation_statistics (STRING_CST
, length
);
1687 s
= ggc_alloc_tree_node (length
);
1689 memset (s
, 0, sizeof (struct tree_typed
));
1690 TREE_SET_CODE (s
, STRING_CST
);
1691 TREE_CONSTANT (s
) = 1;
1692 TREE_STRING_LENGTH (s
) = len
;
1693 memcpy (s
->string
.str
, str
, len
);
1694 s
->string
.str
[len
] = '\0';
1699 /* Return a newly constructed COMPLEX_CST node whose value is
1700 specified by the real and imaginary parts REAL and IMAG.
1701 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1702 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
1705 build_complex (tree type
, tree real
, tree imag
)
1707 tree t
= make_node (COMPLEX_CST
);
1709 TREE_REALPART (t
) = real
;
1710 TREE_IMAGPART (t
) = imag
;
1711 TREE_TYPE (t
) = type
? type
: build_complex_type (TREE_TYPE (real
));
1712 TREE_OVERFLOW (t
) = TREE_OVERFLOW (real
) | TREE_OVERFLOW (imag
);
1716 /* Return a constant of arithmetic type TYPE which is the
1717 multiplicative identity of the set TYPE. */
1720 build_one_cst (tree type
)
1722 switch (TREE_CODE (type
))
1724 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
1725 case POINTER_TYPE
: case REFERENCE_TYPE
:
1727 return build_int_cst (type
, 1);
1730 return build_real (type
, dconst1
);
1732 case FIXED_POINT_TYPE
:
1733 /* We can only generate 1 for accum types. */
1734 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)));
1735 return build_fixed (type
, FCONST1 (TYPE_MODE (type
)));
1739 tree scalar
= build_one_cst (TREE_TYPE (type
));
1741 return build_vector_from_val (type
, scalar
);
1745 return build_complex (type
,
1746 build_one_cst (TREE_TYPE (type
)),
1747 build_zero_cst (TREE_TYPE (type
)));
1754 /* Return an integer of type TYPE containing all 1's in as much precision as
1755 it contains, or a complex or vector whose subparts are such integers. */
1758 build_all_ones_cst (tree type
)
1760 if (TREE_CODE (type
) == COMPLEX_TYPE
)
1762 tree scalar
= build_all_ones_cst (TREE_TYPE (type
));
1763 return build_complex (type
, scalar
, scalar
);
1766 return build_minus_one_cst (type
);
1769 /* Return a constant of arithmetic type TYPE which is the
1770 opposite of the multiplicative identity of the set TYPE. */
1773 build_minus_one_cst (tree type
)
1775 switch (TREE_CODE (type
))
1777 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
1778 case POINTER_TYPE
: case REFERENCE_TYPE
:
1780 return build_int_cst (type
, -1);
1783 return build_real (type
, dconstm1
);
1785 case FIXED_POINT_TYPE
:
1786 /* We can only generate 1 for accum types. */
1787 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)));
1788 return build_fixed (type
, fixed_from_double_int (double_int_minus_one
,
1793 tree scalar
= build_minus_one_cst (TREE_TYPE (type
));
1795 return build_vector_from_val (type
, scalar
);
1799 return build_complex (type
,
1800 build_minus_one_cst (TREE_TYPE (type
)),
1801 build_zero_cst (TREE_TYPE (type
)));
1808 /* Build 0 constant of type TYPE. This is used by constructor folding
1809 and thus the constant should be represented in memory by
1813 build_zero_cst (tree type
)
1815 switch (TREE_CODE (type
))
1817 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
1818 case POINTER_TYPE
: case REFERENCE_TYPE
:
1819 case OFFSET_TYPE
: case NULLPTR_TYPE
:
1820 return build_int_cst (type
, 0);
1823 return build_real (type
, dconst0
);
1825 case FIXED_POINT_TYPE
:
1826 return build_fixed (type
, FCONST0 (TYPE_MODE (type
)));
1830 tree scalar
= build_zero_cst (TREE_TYPE (type
));
1832 return build_vector_from_val (type
, scalar
);
1837 tree zero
= build_zero_cst (TREE_TYPE (type
));
1839 return build_complex (type
, zero
, zero
);
1843 if (!AGGREGATE_TYPE_P (type
))
1844 return fold_convert (type
, integer_zero_node
);
1845 return build_constructor (type
, NULL
);
1850 /* Build a BINFO with LEN language slots. */
1853 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL
)
1856 size_t length
= (offsetof (struct tree_binfo
, base_binfos
)
1857 + vec
<tree
, va_gc
>::embedded_size (base_binfos
));
1859 record_node_allocation_statistics (TREE_BINFO
, length
);
1861 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
1863 memset (t
, 0, offsetof (struct tree_binfo
, base_binfos
));
1865 TREE_SET_CODE (t
, TREE_BINFO
);
1867 BINFO_BASE_BINFOS (t
)->embedded_init (base_binfos
);
1872 /* Create a CASE_LABEL_EXPR tree node and return it. */
1875 build_case_label (tree low_value
, tree high_value
, tree label_decl
)
1877 tree t
= make_node (CASE_LABEL_EXPR
);
1879 TREE_TYPE (t
) = void_type_node
;
1880 SET_EXPR_LOCATION (t
, DECL_SOURCE_LOCATION (label_decl
));
1882 CASE_LOW (t
) = low_value
;
1883 CASE_HIGH (t
) = high_value
;
1884 CASE_LABEL (t
) = label_decl
;
1885 CASE_CHAIN (t
) = NULL_TREE
;
1890 /* Build a newly constructed TREE_VEC node of length LEN. */
1893 make_tree_vec_stat (int len MEM_STAT_DECL
)
1896 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
1898 record_node_allocation_statistics (TREE_VEC
, length
);
1900 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
1902 TREE_SET_CODE (t
, TREE_VEC
);
1903 TREE_VEC_LENGTH (t
) = len
;
1908 /* Grow a TREE_VEC node to new length LEN. */
1911 grow_tree_vec_stat (tree v
, int len MEM_STAT_DECL
)
1913 gcc_assert (TREE_CODE (v
) == TREE_VEC
);
1915 int oldlen
= TREE_VEC_LENGTH (v
);
1916 gcc_assert (len
> oldlen
);
1918 int oldlength
= (oldlen
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
1919 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
1921 record_node_allocation_statistics (TREE_VEC
, length
- oldlength
);
1923 v
= (tree
) ggc_realloc_stat (v
, length PASS_MEM_STAT
);
1925 TREE_VEC_LENGTH (v
) = len
;
1930 /* Return 1 if EXPR is the integer constant zero or a complex constant
1934 integer_zerop (const_tree expr
)
1938 switch (TREE_CODE (expr
))
1941 return (TREE_INT_CST_LOW (expr
) == 0
1942 && TREE_INT_CST_HIGH (expr
) == 0);
1944 return (integer_zerop (TREE_REALPART (expr
))
1945 && integer_zerop (TREE_IMAGPART (expr
)));
1949 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
1950 if (!integer_zerop (VECTOR_CST_ELT (expr
, i
)))
1959 /* Return 1 if EXPR is the integer constant one or the corresponding
1960 complex constant. */
1963 integer_onep (const_tree expr
)
1967 switch (TREE_CODE (expr
))
1970 return (TREE_INT_CST_LOW (expr
) == 1
1971 && TREE_INT_CST_HIGH (expr
) == 0);
1973 return (integer_onep (TREE_REALPART (expr
))
1974 && integer_zerop (TREE_IMAGPART (expr
)));
1978 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
1979 if (!integer_onep (VECTOR_CST_ELT (expr
, i
)))
1988 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
1989 it contains, or a complex or vector whose subparts are such integers. */
1992 integer_all_onesp (const_tree expr
)
1999 if (TREE_CODE (expr
) == COMPLEX_CST
2000 && integer_all_onesp (TREE_REALPART (expr
))
2001 && integer_all_onesp (TREE_IMAGPART (expr
)))
2004 else if (TREE_CODE (expr
) == VECTOR_CST
)
2007 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2008 if (!integer_all_onesp (VECTOR_CST_ELT (expr
, i
)))
2013 else if (TREE_CODE (expr
) != INTEGER_CST
)
2016 uns
= TYPE_UNSIGNED (TREE_TYPE (expr
));
2017 if (TREE_INT_CST_LOW (expr
) == ~(unsigned HOST_WIDE_INT
) 0
2018 && TREE_INT_CST_HIGH (expr
) == -1)
2023 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
2024 if (prec
>= HOST_BITS_PER_WIDE_INT
)
2026 HOST_WIDE_INT high_value
;
2029 shift_amount
= prec
- HOST_BITS_PER_WIDE_INT
;
2031 /* Can not handle precisions greater than twice the host int size. */
2032 gcc_assert (shift_amount
<= HOST_BITS_PER_WIDE_INT
);
2033 if (shift_amount
== HOST_BITS_PER_WIDE_INT
)
2034 /* Shifting by the host word size is undefined according to the ANSI
2035 standard, so we must handle this as a special case. */
2038 high_value
= ((HOST_WIDE_INT
) 1 << shift_amount
) - 1;
2040 return (TREE_INT_CST_LOW (expr
) == ~(unsigned HOST_WIDE_INT
) 0
2041 && TREE_INT_CST_HIGH (expr
) == high_value
);
2044 return TREE_INT_CST_LOW (expr
) == ((unsigned HOST_WIDE_INT
) 1 << prec
) - 1;
2047 /* Return 1 if EXPR is the integer constant minus one. */
2050 integer_minus_onep (const_tree expr
)
2054 if (TREE_CODE (expr
) == COMPLEX_CST
)
2055 return (integer_all_onesp (TREE_REALPART (expr
))
2056 && integer_zerop (TREE_IMAGPART (expr
)));
2058 return integer_all_onesp (expr
);
2061 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2065 integer_pow2p (const_tree expr
)
2068 unsigned HOST_WIDE_INT high
, low
;
2072 if (TREE_CODE (expr
) == COMPLEX_CST
2073 && integer_pow2p (TREE_REALPART (expr
))
2074 && integer_zerop (TREE_IMAGPART (expr
)))
2077 if (TREE_CODE (expr
) != INTEGER_CST
)
2080 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
2081 high
= TREE_INT_CST_HIGH (expr
);
2082 low
= TREE_INT_CST_LOW (expr
);
2084 /* First clear all bits that are beyond the type's precision in case
2085 we've been sign extended. */
2087 if (prec
== HOST_BITS_PER_DOUBLE_INT
)
2089 else if (prec
> HOST_BITS_PER_WIDE_INT
)
2090 high
&= ~(HOST_WIDE_INT_M1U
<< (prec
- HOST_BITS_PER_WIDE_INT
));
2094 if (prec
< HOST_BITS_PER_WIDE_INT
)
2095 low
&= ~(HOST_WIDE_INT_M1U
<< prec
);
2098 if (high
== 0 && low
== 0)
2101 return ((high
== 0 && (low
& (low
- 1)) == 0)
2102 || (low
== 0 && (high
& (high
- 1)) == 0));
2105 /* Return 1 if EXPR is an integer constant other than zero or a
2106 complex constant other than zero. */
2109 integer_nonzerop (const_tree expr
)
2113 return ((TREE_CODE (expr
) == INTEGER_CST
2114 && (TREE_INT_CST_LOW (expr
) != 0
2115 || TREE_INT_CST_HIGH (expr
) != 0))
2116 || (TREE_CODE (expr
) == COMPLEX_CST
2117 && (integer_nonzerop (TREE_REALPART (expr
))
2118 || integer_nonzerop (TREE_IMAGPART (expr
)))));
2121 /* Return 1 if EXPR is the fixed-point constant zero. */
2124 fixed_zerop (const_tree expr
)
2126 return (TREE_CODE (expr
) == FIXED_CST
2127 && TREE_FIXED_CST (expr
).data
.is_zero ());
2130 /* Return the power of two represented by a tree node known to be a
2134 tree_log2 (const_tree expr
)
2137 HOST_WIDE_INT high
, low
;
2141 if (TREE_CODE (expr
) == COMPLEX_CST
)
2142 return tree_log2 (TREE_REALPART (expr
));
2144 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
2145 high
= TREE_INT_CST_HIGH (expr
);
2146 low
= TREE_INT_CST_LOW (expr
);
2148 /* First clear all bits that are beyond the type's precision in case
2149 we've been sign extended. */
2151 if (prec
== HOST_BITS_PER_DOUBLE_INT
)
2153 else if (prec
> HOST_BITS_PER_WIDE_INT
)
2154 high
&= ~(HOST_WIDE_INT_M1U
<< (prec
- HOST_BITS_PER_WIDE_INT
));
2158 if (prec
< HOST_BITS_PER_WIDE_INT
)
2159 low
&= ~(HOST_WIDE_INT_M1U
<< prec
);
2162 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ exact_log2 (high
)
2163 : exact_log2 (low
));
2166 /* Similar, but return the largest integer Y such that 2 ** Y is less
2167 than or equal to EXPR. */
2170 tree_floor_log2 (const_tree expr
)
2173 HOST_WIDE_INT high
, low
;
2177 if (TREE_CODE (expr
) == COMPLEX_CST
)
2178 return tree_log2 (TREE_REALPART (expr
));
2180 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
2181 high
= TREE_INT_CST_HIGH (expr
);
2182 low
= TREE_INT_CST_LOW (expr
);
2184 /* First clear all bits that are beyond the type's precision in case
2185 we've been sign extended. Ignore if type's precision hasn't been set
2186 since what we are doing is setting it. */
2188 if (prec
== HOST_BITS_PER_DOUBLE_INT
|| prec
== 0)
2190 else if (prec
> HOST_BITS_PER_WIDE_INT
)
2191 high
&= ~(HOST_WIDE_INT_M1U
<< (prec
- HOST_BITS_PER_WIDE_INT
));
2195 if (prec
< HOST_BITS_PER_WIDE_INT
)
2196 low
&= ~(HOST_WIDE_INT_M1U
<< prec
);
2199 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ floor_log2 (high
)
2200 : floor_log2 (low
));
2203 /* Return number of known trailing zero bits in EXPR, or, if the value of
2204 EXPR is known to be zero, the precision of it's type. */
2207 tree_ctz (const_tree expr
)
2209 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr
))
2210 && !POINTER_TYPE_P (TREE_TYPE (expr
)))
2213 unsigned int ret1
, ret2
, prec
= TYPE_PRECISION (TREE_TYPE (expr
));
2214 switch (TREE_CODE (expr
))
2217 ret1
= tree_to_double_int (expr
).trailing_zeros ();
2218 return MIN (ret1
, prec
);
2220 ret1
= get_nonzero_bits (expr
).trailing_zeros ();
2221 return MIN (ret1
, prec
);
2228 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2231 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2232 return MIN (ret1
, ret2
);
2233 case POINTER_PLUS_EXPR
:
2234 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2235 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2236 /* Second operand is sizetype, which could be in theory
2237 wider than pointer's precision. Make sure we never
2238 return more than prec. */
2239 ret2
= MIN (ret2
, prec
);
2240 return MIN (ret1
, ret2
);
2242 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2243 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2244 return MAX (ret1
, ret2
);
2246 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2247 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2248 return MIN (ret1
+ ret2
, prec
);
2250 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2251 if (tree_fits_uhwi_p (TREE_OPERAND (expr
, 1))
2252 && (tree_to_uhwi (TREE_OPERAND (expr
, 1)) < prec
))
2254 ret2
= tree_to_uhwi (TREE_OPERAND (expr
, 1));
2255 return MIN (ret1
+ ret2
, prec
);
2259 if (tree_fits_uhwi_p (TREE_OPERAND (expr
, 1))
2260 && (tree_to_uhwi (TREE_OPERAND (expr
, 1)) < prec
))
2262 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2263 ret2
= tree_to_uhwi (TREE_OPERAND (expr
, 1));
2268 case TRUNC_DIV_EXPR
:
2270 case FLOOR_DIV_EXPR
:
2271 case ROUND_DIV_EXPR
:
2272 case EXACT_DIV_EXPR
:
2273 if (TREE_CODE (TREE_OPERAND (expr
, 1)) == INTEGER_CST
2274 && tree_int_cst_sgn (TREE_OPERAND (expr
, 1)) == 1)
2276 int l
= tree_log2 (TREE_OPERAND (expr
, 1));
2279 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2287 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2288 if (ret1
&& ret1
== TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr
, 0))))
2290 return MIN (ret1
, prec
);
2292 return tree_ctz (TREE_OPERAND (expr
, 0));
2294 ret1
= tree_ctz (TREE_OPERAND (expr
, 1));
2297 ret2
= tree_ctz (TREE_OPERAND (expr
, 2));
2298 return MIN (ret1
, ret2
);
2300 return tree_ctz (TREE_OPERAND (expr
, 1));
2302 ret1
= get_pointer_alignment (CONST_CAST_TREE (expr
));
2303 if (ret1
> BITS_PER_UNIT
)
2305 ret1
= ctz_hwi (ret1
/ BITS_PER_UNIT
);
2306 return MIN (ret1
, prec
);
2314 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2315 decimal float constants, so don't return 1 for them. */
2318 real_zerop (const_tree expr
)
2322 switch (TREE_CODE (expr
))
2325 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst0
)
2326 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2328 return real_zerop (TREE_REALPART (expr
))
2329 && real_zerop (TREE_IMAGPART (expr
));
2333 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2334 if (!real_zerop (VECTOR_CST_ELT (expr
, i
)))
2343 /* Return 1 if EXPR is the real constant one in real or complex form.
2344 Trailing zeroes matter for decimal float constants, so don't return
2348 real_onep (const_tree expr
)
2352 switch (TREE_CODE (expr
))
2355 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst1
)
2356 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2358 return real_onep (TREE_REALPART (expr
))
2359 && real_zerop (TREE_IMAGPART (expr
));
2363 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2364 if (!real_onep (VECTOR_CST_ELT (expr
, i
)))
2373 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2374 matter for decimal float constants, so don't return 1 for them. */
2377 real_minus_onep (const_tree expr
)
2381 switch (TREE_CODE (expr
))
2384 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconstm1
)
2385 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2387 return real_minus_onep (TREE_REALPART (expr
))
2388 && real_zerop (TREE_IMAGPART (expr
));
2392 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2393 if (!real_minus_onep (VECTOR_CST_ELT (expr
, i
)))
2402 /* Nonzero if EXP is a constant or a cast of a constant. */
2405 really_constant_p (const_tree exp
)
2407 /* This is not quite the same as STRIP_NOPS. It does more. */
2408 while (CONVERT_EXPR_P (exp
)
2409 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
2410 exp
= TREE_OPERAND (exp
, 0);
2411 return TREE_CONSTANT (exp
);
2414 /* Return first list element whose TREE_VALUE is ELEM.
2415 Return 0 if ELEM is not in LIST. */
2418 value_member (tree elem
, tree list
)
2422 if (elem
== TREE_VALUE (list
))
2424 list
= TREE_CHAIN (list
);
2429 /* Return first list element whose TREE_PURPOSE is ELEM.
2430 Return 0 if ELEM is not in LIST. */
2433 purpose_member (const_tree elem
, tree list
)
2437 if (elem
== TREE_PURPOSE (list
))
2439 list
= TREE_CHAIN (list
);
2444 /* Return true if ELEM is in V. */
2447 vec_member (const_tree elem
, vec
<tree
, va_gc
> *v
)
2451 FOR_EACH_VEC_SAFE_ELT (v
, ix
, t
)
2457 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2461 chain_index (int idx
, tree chain
)
2463 for (; chain
&& idx
> 0; --idx
)
2464 chain
= TREE_CHAIN (chain
);
2468 /* Return nonzero if ELEM is part of the chain CHAIN. */
2471 chain_member (const_tree elem
, const_tree chain
)
2477 chain
= DECL_CHAIN (chain
);
2483 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2484 We expect a null pointer to mark the end of the chain.
2485 This is the Lisp primitive `length'. */
2488 list_length (const_tree t
)
2491 #ifdef ENABLE_TREE_CHECKING
2499 #ifdef ENABLE_TREE_CHECKING
2502 gcc_assert (p
!= q
);
2510 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2511 UNION_TYPE TYPE, or NULL_TREE if none. */
2514 first_field (const_tree type
)
2516 tree t
= TYPE_FIELDS (type
);
2517 while (t
&& TREE_CODE (t
) != FIELD_DECL
)
2522 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2523 by modifying the last node in chain 1 to point to chain 2.
2524 This is the Lisp primitive `nconc'. */
2527 chainon (tree op1
, tree op2
)
2536 for (t1
= op1
; TREE_CHAIN (t1
); t1
= TREE_CHAIN (t1
))
2538 TREE_CHAIN (t1
) = op2
;
2540 #ifdef ENABLE_TREE_CHECKING
2543 for (t2
= op2
; t2
; t2
= TREE_CHAIN (t2
))
2544 gcc_assert (t2
!= t1
);
2551 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2554 tree_last (tree chain
)
2558 while ((next
= TREE_CHAIN (chain
)))
2563 /* Reverse the order of elements in the chain T,
2564 and return the new head of the chain (old last element). */
2569 tree prev
= 0, decl
, next
;
2570 for (decl
= t
; decl
; decl
= next
)
2572 /* We shouldn't be using this function to reverse BLOCK chains; we
2573 have blocks_nreverse for that. */
2574 gcc_checking_assert (TREE_CODE (decl
) != BLOCK
);
2575 next
= TREE_CHAIN (decl
);
2576 TREE_CHAIN (decl
) = prev
;
2582 /* Return a newly created TREE_LIST node whose
2583 purpose and value fields are PARM and VALUE. */
2586 build_tree_list_stat (tree parm
, tree value MEM_STAT_DECL
)
2588 tree t
= make_node_stat (TREE_LIST PASS_MEM_STAT
);
2589 TREE_PURPOSE (t
) = parm
;
2590 TREE_VALUE (t
) = value
;
2594 /* Build a chain of TREE_LIST nodes from a vector. */
2597 build_tree_list_vec_stat (const vec
<tree
, va_gc
> *vec MEM_STAT_DECL
)
2599 tree ret
= NULL_TREE
;
2603 FOR_EACH_VEC_SAFE_ELT (vec
, i
, t
)
2605 *pp
= build_tree_list_stat (NULL
, t PASS_MEM_STAT
);
2606 pp
= &TREE_CHAIN (*pp
);
2611 /* Return a newly created TREE_LIST node whose
2612 purpose and value fields are PURPOSE and VALUE
2613 and whose TREE_CHAIN is CHAIN. */
2616 tree_cons_stat (tree purpose
, tree value
, tree chain MEM_STAT_DECL
)
2620 node
= ggc_alloc_tree_node_stat (sizeof (struct tree_list
) PASS_MEM_STAT
);
2621 memset (node
, 0, sizeof (struct tree_common
));
2623 record_node_allocation_statistics (TREE_LIST
, sizeof (struct tree_list
));
2625 TREE_SET_CODE (node
, TREE_LIST
);
2626 TREE_CHAIN (node
) = chain
;
2627 TREE_PURPOSE (node
) = purpose
;
2628 TREE_VALUE (node
) = value
;
2632 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2636 ctor_to_vec (tree ctor
)
2638 vec
<tree
, va_gc
> *vec
;
2639 vec_alloc (vec
, CONSTRUCTOR_NELTS (ctor
));
2643 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor
), ix
, val
)
2644 vec
->quick_push (val
);
2649 /* Return the size nominally occupied by an object of type TYPE
2650 when it resides in memory. The value is measured in units of bytes,
2651 and its data type is that normally used for type sizes
2652 (which is the first type created by make_signed_type or
2653 make_unsigned_type). */
2656 size_in_bytes (const_tree type
)
2660 if (type
== error_mark_node
)
2661 return integer_zero_node
;
2663 type
= TYPE_MAIN_VARIANT (type
);
2664 t
= TYPE_SIZE_UNIT (type
);
2668 lang_hooks
.types
.incomplete_type_error (NULL_TREE
, type
);
2669 return size_zero_node
;
2675 /* Return the size of TYPE (in bytes) as a wide integer
2676 or return -1 if the size can vary or is larger than an integer. */
2679 int_size_in_bytes (const_tree type
)
2683 if (type
== error_mark_node
)
2686 type
= TYPE_MAIN_VARIANT (type
);
2687 t
= TYPE_SIZE_UNIT (type
);
2689 || TREE_CODE (t
) != INTEGER_CST
2690 || TREE_INT_CST_HIGH (t
) != 0
2691 /* If the result would appear negative, it's too big to represent. */
2692 || (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0)
2695 return TREE_INT_CST_LOW (t
);
2698 /* Return the maximum size of TYPE (in bytes) as a wide integer
2699 or return -1 if the size can vary or is larger than an integer. */
2702 max_int_size_in_bytes (const_tree type
)
2704 HOST_WIDE_INT size
= -1;
2707 /* If this is an array type, check for a possible MAX_SIZE attached. */
2709 if (TREE_CODE (type
) == ARRAY_TYPE
)
2711 size_tree
= TYPE_ARRAY_MAX_SIZE (type
);
2713 if (size_tree
&& tree_fits_uhwi_p (size_tree
))
2714 size
= tree_to_uhwi (size_tree
);
2717 /* If we still haven't been able to get a size, see if the language
2718 can compute a maximum size. */
2722 size_tree
= lang_hooks
.types
.max_size (type
);
2724 if (size_tree
&& tree_fits_uhwi_p (size_tree
))
2725 size
= tree_to_uhwi (size_tree
);
2731 /* Return the bit position of FIELD, in bits from the start of the record.
2732 This is a tree of type bitsizetype. */
2735 bit_position (const_tree field
)
2737 return bit_from_pos (DECL_FIELD_OFFSET (field
),
2738 DECL_FIELD_BIT_OFFSET (field
));
2741 /* Likewise, but return as an integer. It must be representable in
2742 that way (since it could be a signed value, we don't have the
2743 option of returning -1 like int_size_in_byte can. */
2746 int_bit_position (const_tree field
)
2748 return tree_to_shwi (bit_position (field
));
2751 /* Return the byte position of FIELD, in bytes from the start of the record.
2752 This is a tree of type sizetype. */
2755 byte_position (const_tree field
)
2757 return byte_from_pos (DECL_FIELD_OFFSET (field
),
2758 DECL_FIELD_BIT_OFFSET (field
));
2761 /* Likewise, but return as an integer. It must be representable in
2762 that way (since it could be a signed value, we don't have the
2763 option of returning -1 like int_size_in_byte can. */
2766 int_byte_position (const_tree field
)
2768 return tree_to_shwi (byte_position (field
));
2771 /* Return the strictest alignment, in bits, that T is known to have. */
2774 expr_align (const_tree t
)
2776 unsigned int align0
, align1
;
2778 switch (TREE_CODE (t
))
2780 CASE_CONVERT
: case NON_LVALUE_EXPR
:
2781 /* If we have conversions, we know that the alignment of the
2782 object must meet each of the alignments of the types. */
2783 align0
= expr_align (TREE_OPERAND (t
, 0));
2784 align1
= TYPE_ALIGN (TREE_TYPE (t
));
2785 return MAX (align0
, align1
);
2787 case SAVE_EXPR
: case COMPOUND_EXPR
: case MODIFY_EXPR
:
2788 case INIT_EXPR
: case TARGET_EXPR
: case WITH_CLEANUP_EXPR
:
2789 case CLEANUP_POINT_EXPR
:
2790 /* These don't change the alignment of an object. */
2791 return expr_align (TREE_OPERAND (t
, 0));
2794 /* The best we can do is say that the alignment is the least aligned
2796 align0
= expr_align (TREE_OPERAND (t
, 1));
2797 align1
= expr_align (TREE_OPERAND (t
, 2));
2798 return MIN (align0
, align1
);
2800 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
2801 meaningfully, it's always 1. */
2802 case LABEL_DECL
: case CONST_DECL
:
2803 case VAR_DECL
: case PARM_DECL
: case RESULT_DECL
:
2805 gcc_assert (DECL_ALIGN (t
) != 0);
2806 return DECL_ALIGN (t
);
2812 /* Otherwise take the alignment from that of the type. */
2813 return TYPE_ALIGN (TREE_TYPE (t
));
2816 /* Return, as a tree node, the number of elements for TYPE (which is an
2817 ARRAY_TYPE) minus one. This counts only elements of the top array. */
2820 array_type_nelts (const_tree type
)
2822 tree index_type
, min
, max
;
2824 /* If they did it with unspecified bounds, then we should have already
2825 given an error about it before we got here. */
2826 if (! TYPE_DOMAIN (type
))
2827 return error_mark_node
;
2829 index_type
= TYPE_DOMAIN (type
);
2830 min
= TYPE_MIN_VALUE (index_type
);
2831 max
= TYPE_MAX_VALUE (index_type
);
2833 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
2835 return error_mark_node
;
2837 return (integer_zerop (min
)
2839 : fold_build2 (MINUS_EXPR
, TREE_TYPE (max
), max
, min
));
2842 /* If arg is static -- a reference to an object in static storage -- then
2843 return the object. This is not the same as the C meaning of `static'.
2844 If arg isn't static, return NULL. */
2849 switch (TREE_CODE (arg
))
2852 /* Nested functions are static, even though taking their address will
2853 involve a trampoline as we unnest the nested function and create
2854 the trampoline on the tree level. */
2858 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
2859 && ! DECL_THREAD_LOCAL_P (arg
)
2860 && ! DECL_DLLIMPORT_P (arg
)
2864 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
2868 return TREE_STATIC (arg
) ? arg
: NULL
;
2875 /* If the thing being referenced is not a field, then it is
2876 something language specific. */
2877 gcc_assert (TREE_CODE (TREE_OPERAND (arg
, 1)) == FIELD_DECL
);
2879 /* If we are referencing a bitfield, we can't evaluate an
2880 ADDR_EXPR at compile time and so it isn't a constant. */
2881 if (DECL_BIT_FIELD (TREE_OPERAND (arg
, 1)))
2884 return staticp (TREE_OPERAND (arg
, 0));
2890 return TREE_CONSTANT (TREE_OPERAND (arg
, 0)) ? arg
: NULL
;
2893 case ARRAY_RANGE_REF
:
2894 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg
))) == INTEGER_CST
2895 && TREE_CODE (TREE_OPERAND (arg
, 1)) == INTEGER_CST
)
2896 return staticp (TREE_OPERAND (arg
, 0));
2900 case COMPOUND_LITERAL_EXPR
:
2901 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg
)) ? arg
: NULL
;
2911 /* Return whether OP is a DECL whose address is function-invariant. */
2914 decl_address_invariant_p (const_tree op
)
2916 /* The conditions below are slightly less strict than the one in
2919 switch (TREE_CODE (op
))
2928 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2929 || DECL_THREAD_LOCAL_P (op
)
2930 || DECL_CONTEXT (op
) == current_function_decl
2931 || decl_function_context (op
) == current_function_decl
)
2936 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2937 || decl_function_context (op
) == current_function_decl
)
2948 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
2951 decl_address_ip_invariant_p (const_tree op
)
2953 /* The conditions below are slightly less strict than the one in
2956 switch (TREE_CODE (op
))
2964 if (((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2965 && !DECL_DLLIMPORT_P (op
))
2966 || DECL_THREAD_LOCAL_P (op
))
2971 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
)))
2983 /* Return true if T is function-invariant (internal function, does
2984 not handle arithmetic; that's handled in skip_simple_arithmetic and
2985 tree_invariant_p). */
2987 static bool tree_invariant_p (tree t
);
2990 tree_invariant_p_1 (tree t
)
2994 if (TREE_CONSTANT (t
)
2995 || (TREE_READONLY (t
) && !TREE_SIDE_EFFECTS (t
)))
2998 switch (TREE_CODE (t
))
3004 op
= TREE_OPERAND (t
, 0);
3005 while (handled_component_p (op
))
3007 switch (TREE_CODE (op
))
3010 case ARRAY_RANGE_REF
:
3011 if (!tree_invariant_p (TREE_OPERAND (op
, 1))
3012 || TREE_OPERAND (op
, 2) != NULL_TREE
3013 || TREE_OPERAND (op
, 3) != NULL_TREE
)
3018 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
3024 op
= TREE_OPERAND (op
, 0);
3027 return CONSTANT_CLASS_P (op
) || decl_address_invariant_p (op
);
3036 /* Return true if T is function-invariant. */
3039 tree_invariant_p (tree t
)
3041 tree inner
= skip_simple_arithmetic (t
);
3042 return tree_invariant_p_1 (inner
);
3045 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3046 Do this to any expression which may be used in more than one place,
3047 but must be evaluated only once.
3049 Normally, expand_expr would reevaluate the expression each time.
3050 Calling save_expr produces something that is evaluated and recorded
3051 the first time expand_expr is called on it. Subsequent calls to
3052 expand_expr just reuse the recorded value.
3054 The call to expand_expr that generates code that actually computes
3055 the value is the first call *at compile time*. Subsequent calls
3056 *at compile time* generate code to use the saved value.
3057 This produces correct result provided that *at run time* control
3058 always flows through the insns made by the first expand_expr
3059 before reaching the other places where the save_expr was evaluated.
3060 You, the caller of save_expr, must make sure this is so.
3062 Constants, and certain read-only nodes, are returned with no
3063 SAVE_EXPR because that is safe. Expressions containing placeholders
3064 are not touched; see tree.def for an explanation of what these
3068 save_expr (tree expr
)
3070 tree t
= fold (expr
);
3073 /* If the tree evaluates to a constant, then we don't want to hide that
3074 fact (i.e. this allows further folding, and direct checks for constants).
3075 However, a read-only object that has side effects cannot be bypassed.
3076 Since it is no problem to reevaluate literals, we just return the
3078 inner
= skip_simple_arithmetic (t
);
3079 if (TREE_CODE (inner
) == ERROR_MARK
)
3082 if (tree_invariant_p_1 (inner
))
3085 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3086 it means that the size or offset of some field of an object depends on
3087 the value within another field.
3089 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
3090 and some variable since it would then need to be both evaluated once and
3091 evaluated more than once. Front-ends must assure this case cannot
3092 happen by surrounding any such subexpressions in their own SAVE_EXPR
3093 and forcing evaluation at the proper time. */
3094 if (contains_placeholder_p (inner
))
3097 t
= build1 (SAVE_EXPR
, TREE_TYPE (expr
), t
);
3098 SET_EXPR_LOCATION (t
, EXPR_LOCATION (expr
));
3100 /* This expression might be placed ahead of a jump to ensure that the
3101 value was computed on both sides of the jump. So make sure it isn't
3102 eliminated as dead. */
3103 TREE_SIDE_EFFECTS (t
) = 1;
3107 /* Look inside EXPR into any simple arithmetic operations. Return the
3108 outermost non-arithmetic or non-invariant node. */
3111 skip_simple_arithmetic (tree expr
)
3113 /* We don't care about whether this can be used as an lvalue in this
3115 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
3116 expr
= TREE_OPERAND (expr
, 0);
3118 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3119 a constant, it will be more efficient to not make another SAVE_EXPR since
3120 it will allow better simplification and GCSE will be able to merge the
3121 computations if they actually occur. */
3124 if (UNARY_CLASS_P (expr
))
3125 expr
= TREE_OPERAND (expr
, 0);
3126 else if (BINARY_CLASS_P (expr
))
3128 if (tree_invariant_p (TREE_OPERAND (expr
, 1)))
3129 expr
= TREE_OPERAND (expr
, 0);
3130 else if (tree_invariant_p (TREE_OPERAND (expr
, 0)))
3131 expr
= TREE_OPERAND (expr
, 1);
3142 /* Look inside EXPR into simple arithmetic operations involving constants.
3143 Return the outermost non-arithmetic or non-constant node. */
3146 skip_simple_constant_arithmetic (tree expr
)
3148 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
3149 expr
= TREE_OPERAND (expr
, 0);
3153 if (UNARY_CLASS_P (expr
))
3154 expr
= TREE_OPERAND (expr
, 0);
3155 else if (BINARY_CLASS_P (expr
))
3157 if (TREE_CONSTANT (TREE_OPERAND (expr
, 1)))
3158 expr
= TREE_OPERAND (expr
, 0);
3159 else if (TREE_CONSTANT (TREE_OPERAND (expr
, 0)))
3160 expr
= TREE_OPERAND (expr
, 1);
3171 /* Return which tree structure is used by T. */
3173 enum tree_node_structure_enum
3174 tree_node_structure (const_tree t
)
3176 const enum tree_code code
= TREE_CODE (t
);
3177 return tree_node_structure_for_code (code
);
3180 /* Set various status flags when building a CALL_EXPR object T. */
3183 process_call_operands (tree t
)
3185 bool side_effects
= TREE_SIDE_EFFECTS (t
);
3186 bool read_only
= false;
3187 int i
= call_expr_flags (t
);
3189 /* Calls have side-effects, except those to const or pure functions. */
3190 if ((i
& ECF_LOOPING_CONST_OR_PURE
) || !(i
& (ECF_CONST
| ECF_PURE
)))
3191 side_effects
= true;
3192 /* Propagate TREE_READONLY of arguments for const functions. */
3196 if (!side_effects
|| read_only
)
3197 for (i
= 1; i
< TREE_OPERAND_LENGTH (t
); i
++)
3199 tree op
= TREE_OPERAND (t
, i
);
3200 if (op
&& TREE_SIDE_EFFECTS (op
))
3201 side_effects
= true;
3202 if (op
&& !TREE_READONLY (op
) && !CONSTANT_CLASS_P (op
))
3206 TREE_SIDE_EFFECTS (t
) = side_effects
;
3207 TREE_READONLY (t
) = read_only
;
3210 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3211 size or offset that depends on a field within a record. */
3214 contains_placeholder_p (const_tree exp
)
3216 enum tree_code code
;
3221 code
= TREE_CODE (exp
);
3222 if (code
== PLACEHOLDER_EXPR
)
3225 switch (TREE_CODE_CLASS (code
))
3228 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3229 position computations since they will be converted into a
3230 WITH_RECORD_EXPR involving the reference, which will assume
3231 here will be valid. */
3232 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
3234 case tcc_exceptional
:
3235 if (code
== TREE_LIST
)
3236 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp
))
3237 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp
)));
3242 case tcc_comparison
:
3243 case tcc_expression
:
3247 /* Ignoring the first operand isn't quite right, but works best. */
3248 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1));
3251 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
3252 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1))
3253 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 2)));
3256 /* The save_expr function never wraps anything containing
3257 a PLACEHOLDER_EXPR. */
3264 switch (TREE_CODE_LENGTH (code
))
3267 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
3269 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
3270 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1)));
3281 const_call_expr_arg_iterator iter
;
3282 FOR_EACH_CONST_CALL_EXPR_ARG (arg
, iter
, exp
)
3283 if (CONTAINS_PLACEHOLDER_P (arg
))
3297 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3298 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3302 type_contains_placeholder_1 (const_tree type
)
3304 /* If the size contains a placeholder or the parent type (component type in
3305 the case of arrays) type involves a placeholder, this type does. */
3306 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type
))
3307 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type
))
3308 || (!POINTER_TYPE_P (type
)
3310 && type_contains_placeholder_p (TREE_TYPE (type
))))
3313 /* Now do type-specific checks. Note that the last part of the check above
3314 greatly limits what we have to do below. */
3315 switch (TREE_CODE (type
))
3323 case REFERENCE_TYPE
:
3332 case FIXED_POINT_TYPE
:
3333 /* Here we just check the bounds. */
3334 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type
))
3335 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type
)));
3338 /* We have already checked the component type above, so just check the
3340 return type_contains_placeholder_p (TYPE_DOMAIN (type
));
3344 case QUAL_UNION_TYPE
:
3348 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
3349 if (TREE_CODE (field
) == FIELD_DECL
3350 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field
))
3351 || (TREE_CODE (type
) == QUAL_UNION_TYPE
3352 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field
)))
3353 || type_contains_placeholder_p (TREE_TYPE (field
))))
3364 /* Wrapper around above function used to cache its result. */
3367 type_contains_placeholder_p (tree type
)
3371 /* If the contains_placeholder_bits field has been initialized,
3372 then we know the answer. */
3373 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) > 0)
3374 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) - 1;
3376 /* Indicate that we've seen this type node, and the answer is false.
3377 This is what we want to return if we run into recursion via fields. */
3378 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = 1;
3380 /* Compute the real value. */
3381 result
= type_contains_placeholder_1 (type
);
3383 /* Store the real value. */
3384 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = result
+ 1;
3389 /* Push tree EXP onto vector QUEUE if it is not already present. */
3392 push_without_duplicates (tree exp
, vec
<tree
> *queue
)
3397 FOR_EACH_VEC_ELT (*queue
, i
, iter
)
3398 if (simple_cst_equal (iter
, exp
) == 1)
3402 queue
->safe_push (exp
);
3405 /* Given a tree EXP, find all occurrences of references to fields
3406 in a PLACEHOLDER_EXPR and place them in vector REFS without
3407 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3408 we assume here that EXP contains only arithmetic expressions
3409 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3413 find_placeholder_in_expr (tree exp
, vec
<tree
> *refs
)
3415 enum tree_code code
= TREE_CODE (exp
);
3419 /* We handle TREE_LIST and COMPONENT_REF separately. */
3420 if (code
== TREE_LIST
)
3422 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), refs
);
3423 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), refs
);
3425 else if (code
== COMPONENT_REF
)
3427 for (inner
= TREE_OPERAND (exp
, 0);
3428 REFERENCE_CLASS_P (inner
);
3429 inner
= TREE_OPERAND (inner
, 0))
3432 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
)
3433 push_without_duplicates (exp
, refs
);
3435 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), refs
);
3438 switch (TREE_CODE_CLASS (code
))
3443 case tcc_declaration
:
3444 /* Variables allocated to static storage can stay. */
3445 if (!TREE_STATIC (exp
))
3446 push_without_duplicates (exp
, refs
);
3449 case tcc_expression
:
3450 /* This is the pattern built in ada/make_aligning_type. */
3451 if (code
== ADDR_EXPR
3452 && TREE_CODE (TREE_OPERAND (exp
, 0)) == PLACEHOLDER_EXPR
)
3454 push_without_duplicates (exp
, refs
);
3458 /* Fall through... */
3460 case tcc_exceptional
:
3463 case tcc_comparison
:
3465 for (i
= 0; i
< TREE_CODE_LENGTH (code
); i
++)
3466 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3470 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3471 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3479 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3480 return a tree with all occurrences of references to F in a
3481 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3482 CONST_DECLs. Note that we assume here that EXP contains only
3483 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3484 occurring only in their argument list. */
3487 substitute_in_expr (tree exp
, tree f
, tree r
)
3489 enum tree_code code
= TREE_CODE (exp
);
3490 tree op0
, op1
, op2
, op3
;
3493 /* We handle TREE_LIST and COMPONENT_REF separately. */
3494 if (code
== TREE_LIST
)
3496 op0
= SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp
), f
, r
);
3497 op1
= SUBSTITUTE_IN_EXPR (TREE_VALUE (exp
), f
, r
);
3498 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3501 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3503 else if (code
== COMPONENT_REF
)
3507 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3508 and it is the right field, replace it with R. */
3509 for (inner
= TREE_OPERAND (exp
, 0);
3510 REFERENCE_CLASS_P (inner
);
3511 inner
= TREE_OPERAND (inner
, 0))
3515 op1
= TREE_OPERAND (exp
, 1);
3517 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& op1
== f
)
3520 /* If this expression hasn't been completed let, leave it alone. */
3521 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& !TREE_TYPE (inner
))
3524 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3525 if (op0
== TREE_OPERAND (exp
, 0))
3529 = fold_build3 (COMPONENT_REF
, TREE_TYPE (exp
), op0
, op1
, NULL_TREE
);
3532 switch (TREE_CODE_CLASS (code
))
3537 case tcc_declaration
:
3543 case tcc_expression
:
3547 /* Fall through... */
3549 case tcc_exceptional
:
3552 case tcc_comparison
:
3554 switch (TREE_CODE_LENGTH (code
))
3560 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3561 if (op0
== TREE_OPERAND (exp
, 0))
3564 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3568 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3569 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3571 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3574 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3578 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3579 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3580 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3582 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3583 && op2
== TREE_OPERAND (exp
, 2))
3586 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3590 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3591 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3592 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3593 op3
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 3), f
, r
);
3595 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3596 && op2
== TREE_OPERAND (exp
, 2)
3597 && op3
== TREE_OPERAND (exp
, 3))
3601 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3613 new_tree
= NULL_TREE
;
3615 /* If we are trying to replace F with a constant, inline back
3616 functions which do nothing else than computing a value from
3617 the arguments they are passed. This makes it possible to
3618 fold partially or entirely the replacement expression. */
3619 if (CONSTANT_CLASS_P (r
) && code
== CALL_EXPR
)
3621 tree t
= maybe_inline_call_in_expr (exp
);
3623 return SUBSTITUTE_IN_EXPR (t
, f
, r
);
3626 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3628 tree op
= TREE_OPERAND (exp
, i
);
3629 tree new_op
= SUBSTITUTE_IN_EXPR (op
, f
, r
);
3633 new_tree
= copy_node (exp
);
3634 TREE_OPERAND (new_tree
, i
) = new_op
;
3640 new_tree
= fold (new_tree
);
3641 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3642 process_call_operands (new_tree
);
3653 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3655 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3656 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3661 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3662 for it within OBJ, a tree that is an object or a chain of references. */
3665 substitute_placeholder_in_expr (tree exp
, tree obj
)
3667 enum tree_code code
= TREE_CODE (exp
);
3668 tree op0
, op1
, op2
, op3
;
3671 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3672 in the chain of OBJ. */
3673 if (code
== PLACEHOLDER_EXPR
)
3675 tree need_type
= TYPE_MAIN_VARIANT (TREE_TYPE (exp
));
3678 for (elt
= obj
; elt
!= 0;
3679 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3680 || TREE_CODE (elt
) == COND_EXPR
)
3681 ? TREE_OPERAND (elt
, 1)
3682 : (REFERENCE_CLASS_P (elt
)
3683 || UNARY_CLASS_P (elt
)
3684 || BINARY_CLASS_P (elt
)
3685 || VL_EXP_CLASS_P (elt
)
3686 || EXPRESSION_CLASS_P (elt
))
3687 ? TREE_OPERAND (elt
, 0) : 0))
3688 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt
)) == need_type
)
3691 for (elt
= obj
; elt
!= 0;
3692 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3693 || TREE_CODE (elt
) == COND_EXPR
)
3694 ? TREE_OPERAND (elt
, 1)
3695 : (REFERENCE_CLASS_P (elt
)
3696 || UNARY_CLASS_P (elt
)
3697 || BINARY_CLASS_P (elt
)
3698 || VL_EXP_CLASS_P (elt
)
3699 || EXPRESSION_CLASS_P (elt
))
3700 ? TREE_OPERAND (elt
, 0) : 0))
3701 if (POINTER_TYPE_P (TREE_TYPE (elt
))
3702 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt
)))
3704 return fold_build1 (INDIRECT_REF
, need_type
, elt
);
3706 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3707 survives until RTL generation, there will be an error. */
3711 /* TREE_LIST is special because we need to look at TREE_VALUE
3712 and TREE_CHAIN, not TREE_OPERANDS. */
3713 else if (code
== TREE_LIST
)
3715 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), obj
);
3716 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), obj
);
3717 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3720 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3723 switch (TREE_CODE_CLASS (code
))
3726 case tcc_declaration
:
3729 case tcc_exceptional
:
3732 case tcc_comparison
:
3733 case tcc_expression
:
3736 switch (TREE_CODE_LENGTH (code
))
3742 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3743 if (op0
== TREE_OPERAND (exp
, 0))
3746 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3750 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3751 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3753 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3756 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3760 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3761 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3762 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3764 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3765 && op2
== TREE_OPERAND (exp
, 2))
3768 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3772 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3773 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3774 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3775 op3
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 3), obj
);
3777 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3778 && op2
== TREE_OPERAND (exp
, 2)
3779 && op3
== TREE_OPERAND (exp
, 3))
3783 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3795 new_tree
= NULL_TREE
;
3797 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3799 tree op
= TREE_OPERAND (exp
, i
);
3800 tree new_op
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (op
, obj
);
3804 new_tree
= copy_node (exp
);
3805 TREE_OPERAND (new_tree
, i
) = new_op
;
3811 new_tree
= fold (new_tree
);
3812 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3813 process_call_operands (new_tree
);
3824 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3826 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3827 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3833 /* Subroutine of stabilize_reference; this is called for subtrees of
3834 references. Any expression with side-effects must be put in a SAVE_EXPR
3835 to ensure that it is only evaluated once.
3837 We don't put SAVE_EXPR nodes around everything, because assigning very
3838 simple expressions to temporaries causes us to miss good opportunities
3839 for optimizations. Among other things, the opportunity to fold in the
3840 addition of a constant into an addressing mode often gets lost, e.g.
3841 "y[i+1] += x;". In general, we take the approach that we should not make
3842 an assignment unless we are forced into it - i.e., that any non-side effect
3843 operator should be allowed, and that cse should take care of coalescing
3844 multiple utterances of the same expression should that prove fruitful. */
3847 stabilize_reference_1 (tree e
)
3850 enum tree_code code
= TREE_CODE (e
);
3852 /* We cannot ignore const expressions because it might be a reference
3853 to a const array but whose index contains side-effects. But we can
3854 ignore things that are actual constant or that already have been
3855 handled by this function. */
3857 if (tree_invariant_p (e
))
3860 switch (TREE_CODE_CLASS (code
))
3862 case tcc_exceptional
:
3864 case tcc_declaration
:
3865 case tcc_comparison
:
3867 case tcc_expression
:
3870 /* If the expression has side-effects, then encase it in a SAVE_EXPR
3871 so that it will only be evaluated once. */
3872 /* The reference (r) and comparison (<) classes could be handled as
3873 below, but it is generally faster to only evaluate them once. */
3874 if (TREE_SIDE_EFFECTS (e
))
3875 return save_expr (e
);
3879 /* Constants need no processing. In fact, we should never reach
3884 /* Division is slow and tends to be compiled with jumps,
3885 especially the division by powers of 2 that is often
3886 found inside of an array reference. So do it just once. */
3887 if (code
== TRUNC_DIV_EXPR
|| code
== TRUNC_MOD_EXPR
3888 || code
== FLOOR_DIV_EXPR
|| code
== FLOOR_MOD_EXPR
3889 || code
== CEIL_DIV_EXPR
|| code
== CEIL_MOD_EXPR
3890 || code
== ROUND_DIV_EXPR
|| code
== ROUND_MOD_EXPR
)
3891 return save_expr (e
);
3892 /* Recursively stabilize each operand. */
3893 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)),
3894 stabilize_reference_1 (TREE_OPERAND (e
, 1)));
3898 /* Recursively stabilize each operand. */
3899 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)));
3906 TREE_TYPE (result
) = TREE_TYPE (e
);
3907 TREE_READONLY (result
) = TREE_READONLY (e
);
3908 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (e
);
3909 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (e
);
3914 /* Stabilize a reference so that we can use it any number of times
3915 without causing its operands to be evaluated more than once.
3916 Returns the stabilized reference. This works by means of save_expr,
3917 so see the caveats in the comments about save_expr.
3919 Also allows conversion expressions whose operands are references.
3920 Any other kind of expression is returned unchanged. */
3923 stabilize_reference (tree ref
)
3926 enum tree_code code
= TREE_CODE (ref
);
3933 /* No action is needed in this case. */
3938 case FIX_TRUNC_EXPR
:
3939 result
= build_nt (code
, stabilize_reference (TREE_OPERAND (ref
, 0)));
3943 result
= build_nt (INDIRECT_REF
,
3944 stabilize_reference_1 (TREE_OPERAND (ref
, 0)));
3948 result
= build_nt (COMPONENT_REF
,
3949 stabilize_reference (TREE_OPERAND (ref
, 0)),
3950 TREE_OPERAND (ref
, 1), NULL_TREE
);
3954 result
= build_nt (BIT_FIELD_REF
,
3955 stabilize_reference (TREE_OPERAND (ref
, 0)),
3956 TREE_OPERAND (ref
, 1), TREE_OPERAND (ref
, 2));
3960 result
= build_nt (ARRAY_REF
,
3961 stabilize_reference (TREE_OPERAND (ref
, 0)),
3962 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3963 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
3966 case ARRAY_RANGE_REF
:
3967 result
= build_nt (ARRAY_RANGE_REF
,
3968 stabilize_reference (TREE_OPERAND (ref
, 0)),
3969 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3970 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
3974 /* We cannot wrap the first expression in a SAVE_EXPR, as then
3975 it wouldn't be ignored. This matters when dealing with
3977 return stabilize_reference_1 (ref
);
3979 /* If arg isn't a kind of lvalue we recognize, make no change.
3980 Caller should recognize the error for an invalid lvalue. */
3985 return error_mark_node
;
3988 TREE_TYPE (result
) = TREE_TYPE (ref
);
3989 TREE_READONLY (result
) = TREE_READONLY (ref
);
3990 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (ref
);
3991 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (ref
);
3996 /* Low-level constructors for expressions. */
3998 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
3999 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4002 recompute_tree_invariant_for_addr_expr (tree t
)
4005 bool tc
= true, se
= false;
4007 /* We started out assuming this address is both invariant and constant, but
4008 does not have side effects. Now go down any handled components and see if
4009 any of them involve offsets that are either non-constant or non-invariant.
4010 Also check for side-effects.
4012 ??? Note that this code makes no attempt to deal with the case where
4013 taking the address of something causes a copy due to misalignment. */
4015 #define UPDATE_FLAGS(NODE) \
4016 do { tree _node = (NODE); \
4017 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4018 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4020 for (node
= TREE_OPERAND (t
, 0); handled_component_p (node
);
4021 node
= TREE_OPERAND (node
, 0))
4023 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4024 array reference (probably made temporarily by the G++ front end),
4025 so ignore all the operands. */
4026 if ((TREE_CODE (node
) == ARRAY_REF
4027 || TREE_CODE (node
) == ARRAY_RANGE_REF
)
4028 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node
, 0))) == ARRAY_TYPE
)
4030 UPDATE_FLAGS (TREE_OPERAND (node
, 1));
4031 if (TREE_OPERAND (node
, 2))
4032 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
4033 if (TREE_OPERAND (node
, 3))
4034 UPDATE_FLAGS (TREE_OPERAND (node
, 3));
4036 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4037 FIELD_DECL, apparently. The G++ front end can put something else
4038 there, at least temporarily. */
4039 else if (TREE_CODE (node
) == COMPONENT_REF
4040 && TREE_CODE (TREE_OPERAND (node
, 1)) == FIELD_DECL
)
4042 if (TREE_OPERAND (node
, 2))
4043 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
4047 node
= lang_hooks
.expr_to_decl (node
, &tc
, &se
);
4049 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4050 the address, since &(*a)->b is a form of addition. If it's a constant, the
4051 address is constant too. If it's a decl, its address is constant if the
4052 decl is static. Everything else is not constant and, furthermore,
4053 taking the address of a volatile variable is not volatile. */
4054 if (TREE_CODE (node
) == INDIRECT_REF
4055 || TREE_CODE (node
) == MEM_REF
)
4056 UPDATE_FLAGS (TREE_OPERAND (node
, 0));
4057 else if (CONSTANT_CLASS_P (node
))
4059 else if (DECL_P (node
))
4060 tc
&= (staticp (node
) != NULL_TREE
);
4064 se
|= TREE_SIDE_EFFECTS (node
);
4068 TREE_CONSTANT (t
) = tc
;
4069 TREE_SIDE_EFFECTS (t
) = se
;
4073 /* Build an expression of code CODE, data type TYPE, and operands as
4074 specified. Expressions and reference nodes can be created this way.
4075 Constants, decls, types and misc nodes cannot be.
4077 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4078 enough for all extant tree codes. */
4081 build0_stat (enum tree_code code
, tree tt MEM_STAT_DECL
)
4085 gcc_assert (TREE_CODE_LENGTH (code
) == 0);
4087 t
= make_node_stat (code PASS_MEM_STAT
);
4094 build1_stat (enum tree_code code
, tree type
, tree node MEM_STAT_DECL
)
4096 int length
= sizeof (struct tree_exp
);
4099 record_node_allocation_statistics (code
, length
);
4101 gcc_assert (TREE_CODE_LENGTH (code
) == 1);
4103 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
4105 memset (t
, 0, sizeof (struct tree_common
));
4107 TREE_SET_CODE (t
, code
);
4109 TREE_TYPE (t
) = type
;
4110 SET_EXPR_LOCATION (t
, UNKNOWN_LOCATION
);
4111 TREE_OPERAND (t
, 0) = node
;
4112 if (node
&& !TYPE_P (node
))
4114 TREE_SIDE_EFFECTS (t
) = TREE_SIDE_EFFECTS (node
);
4115 TREE_READONLY (t
) = TREE_READONLY (node
);
4118 if (TREE_CODE_CLASS (code
) == tcc_statement
)
4119 TREE_SIDE_EFFECTS (t
) = 1;
4123 /* All of these have side-effects, no matter what their
4125 TREE_SIDE_EFFECTS (t
) = 1;
4126 TREE_READONLY (t
) = 0;
4130 /* Whether a dereference is readonly has nothing to do with whether
4131 its operand is readonly. */
4132 TREE_READONLY (t
) = 0;
4137 recompute_tree_invariant_for_addr_expr (t
);
4141 if ((TREE_CODE_CLASS (code
) == tcc_unary
|| code
== VIEW_CONVERT_EXPR
)
4142 && node
&& !TYPE_P (node
)
4143 && TREE_CONSTANT (node
))
4144 TREE_CONSTANT (t
) = 1;
4145 if (TREE_CODE_CLASS (code
) == tcc_reference
4146 && node
&& TREE_THIS_VOLATILE (node
))
4147 TREE_THIS_VOLATILE (t
) = 1;
4154 #define PROCESS_ARG(N) \
4156 TREE_OPERAND (t, N) = arg##N; \
4157 if (arg##N &&!TYPE_P (arg##N)) \
4159 if (TREE_SIDE_EFFECTS (arg##N)) \
4161 if (!TREE_READONLY (arg##N) \
4162 && !CONSTANT_CLASS_P (arg##N)) \
4163 (void) (read_only = 0); \
4164 if (!TREE_CONSTANT (arg##N)) \
4165 (void) (constant = 0); \
4170 build2_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1 MEM_STAT_DECL
)
4172 bool constant
, read_only
, side_effects
;
4175 gcc_assert (TREE_CODE_LENGTH (code
) == 2);
4177 if ((code
== MINUS_EXPR
|| code
== PLUS_EXPR
|| code
== MULT_EXPR
)
4178 && arg0
&& arg1
&& tt
&& POINTER_TYPE_P (tt
)
4179 /* When sizetype precision doesn't match that of pointers
4180 we need to be able to build explicit extensions or truncations
4181 of the offset argument. */
4182 && TYPE_PRECISION (sizetype
) == TYPE_PRECISION (tt
))
4183 gcc_assert (TREE_CODE (arg0
) == INTEGER_CST
4184 && TREE_CODE (arg1
) == INTEGER_CST
);
4186 if (code
== POINTER_PLUS_EXPR
&& arg0
&& arg1
&& tt
)
4187 gcc_assert (POINTER_TYPE_P (tt
) && POINTER_TYPE_P (TREE_TYPE (arg0
))
4188 && ptrofftype_p (TREE_TYPE (arg1
)));
4190 t
= make_node_stat (code PASS_MEM_STAT
);
4193 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4194 result based on those same flags for the arguments. But if the
4195 arguments aren't really even `tree' expressions, we shouldn't be trying
4198 /* Expressions without side effects may be constant if their
4199 arguments are as well. */
4200 constant
= (TREE_CODE_CLASS (code
) == tcc_comparison
4201 || TREE_CODE_CLASS (code
) == tcc_binary
);
4203 side_effects
= TREE_SIDE_EFFECTS (t
);
4208 TREE_READONLY (t
) = read_only
;
4209 TREE_CONSTANT (t
) = constant
;
4210 TREE_SIDE_EFFECTS (t
) = side_effects
;
4211 TREE_THIS_VOLATILE (t
)
4212 = (TREE_CODE_CLASS (code
) == tcc_reference
4213 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4220 build3_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4221 tree arg2 MEM_STAT_DECL
)
4223 bool constant
, read_only
, side_effects
;
4226 gcc_assert (TREE_CODE_LENGTH (code
) == 3);
4227 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
4229 t
= make_node_stat (code PASS_MEM_STAT
);
4234 /* As a special exception, if COND_EXPR has NULL branches, we
4235 assume that it is a gimple statement and always consider
4236 it to have side effects. */
4237 if (code
== COND_EXPR
4238 && tt
== void_type_node
4239 && arg1
== NULL_TREE
4240 && arg2
== NULL_TREE
)
4241 side_effects
= true;
4243 side_effects
= TREE_SIDE_EFFECTS (t
);
4249 if (code
== COND_EXPR
)
4250 TREE_READONLY (t
) = read_only
;
4252 TREE_SIDE_EFFECTS (t
) = side_effects
;
4253 TREE_THIS_VOLATILE (t
)
4254 = (TREE_CODE_CLASS (code
) == tcc_reference
4255 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4261 build4_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4262 tree arg2
, tree arg3 MEM_STAT_DECL
)
4264 bool constant
, read_only
, side_effects
;
4267 gcc_assert (TREE_CODE_LENGTH (code
) == 4);
4269 t
= make_node_stat (code PASS_MEM_STAT
);
4272 side_effects
= TREE_SIDE_EFFECTS (t
);
4279 TREE_SIDE_EFFECTS (t
) = side_effects
;
4280 TREE_THIS_VOLATILE (t
)
4281 = (TREE_CODE_CLASS (code
) == tcc_reference
4282 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4288 build5_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4289 tree arg2
, tree arg3
, tree arg4 MEM_STAT_DECL
)
4291 bool constant
, read_only
, side_effects
;
4294 gcc_assert (TREE_CODE_LENGTH (code
) == 5);
4296 t
= make_node_stat (code PASS_MEM_STAT
);
4299 side_effects
= TREE_SIDE_EFFECTS (t
);
4307 TREE_SIDE_EFFECTS (t
) = side_effects
;
4308 TREE_THIS_VOLATILE (t
)
4309 = (TREE_CODE_CLASS (code
) == tcc_reference
4310 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4315 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4316 on the pointer PTR. */
4319 build_simple_mem_ref_loc (location_t loc
, tree ptr
)
4321 HOST_WIDE_INT offset
= 0;
4322 tree ptype
= TREE_TYPE (ptr
);
4324 /* For convenience allow addresses that collapse to a simple base
4326 if (TREE_CODE (ptr
) == ADDR_EXPR
4327 && (handled_component_p (TREE_OPERAND (ptr
, 0))
4328 || TREE_CODE (TREE_OPERAND (ptr
, 0)) == MEM_REF
))
4330 ptr
= get_addr_base_and_unit_offset (TREE_OPERAND (ptr
, 0), &offset
);
4332 ptr
= build_fold_addr_expr (ptr
);
4333 gcc_assert (is_gimple_reg (ptr
) || is_gimple_min_invariant (ptr
));
4335 tem
= build2 (MEM_REF
, TREE_TYPE (ptype
),
4336 ptr
, build_int_cst (ptype
, offset
));
4337 SET_EXPR_LOCATION (tem
, loc
);
4341 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4344 mem_ref_offset (const_tree t
)
4346 tree toff
= TREE_OPERAND (t
, 1);
4347 return tree_to_double_int (toff
).sext (TYPE_PRECISION (TREE_TYPE (toff
)));
4350 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4351 offsetted by OFFSET units. */
4354 build_invariant_address (tree type
, tree base
, HOST_WIDE_INT offset
)
4356 tree ref
= fold_build2 (MEM_REF
, TREE_TYPE (type
),
4357 build_fold_addr_expr (base
),
4358 build_int_cst (ptr_type_node
, offset
));
4359 tree addr
= build1 (ADDR_EXPR
, type
, ref
);
4360 recompute_tree_invariant_for_addr_expr (addr
);
4364 /* Similar except don't specify the TREE_TYPE
4365 and leave the TREE_SIDE_EFFECTS as 0.
4366 It is permissible for arguments to be null,
4367 or even garbage if their values do not matter. */
4370 build_nt (enum tree_code code
, ...)
4377 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
4381 t
= make_node (code
);
4382 length
= TREE_CODE_LENGTH (code
);
4384 for (i
= 0; i
< length
; i
++)
4385 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
4391 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4395 build_nt_call_vec (tree fn
, vec
<tree
, va_gc
> *args
)
4400 ret
= build_vl_exp (CALL_EXPR
, vec_safe_length (args
) + 3);
4401 CALL_EXPR_FN (ret
) = fn
;
4402 CALL_EXPR_STATIC_CHAIN (ret
) = NULL_TREE
;
4403 FOR_EACH_VEC_SAFE_ELT (args
, ix
, t
)
4404 CALL_EXPR_ARG (ret
, ix
) = t
;
4408 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4409 We do NOT enter this node in any sort of symbol table.
4411 LOC is the location of the decl.
4413 layout_decl is used to set up the decl's storage layout.
4414 Other slots are initialized to 0 or null pointers. */
4417 build_decl_stat (location_t loc
, enum tree_code code
, tree name
,
4418 tree type MEM_STAT_DECL
)
4422 t
= make_node_stat (code PASS_MEM_STAT
);
4423 DECL_SOURCE_LOCATION (t
) = loc
;
4425 /* if (type == error_mark_node)
4426 type = integer_type_node; */
4427 /* That is not done, deliberately, so that having error_mark_node
4428 as the type can suppress useless errors in the use of this variable. */
4430 DECL_NAME (t
) = name
;
4431 TREE_TYPE (t
) = type
;
4433 if (code
== VAR_DECL
|| code
== PARM_DECL
|| code
== RESULT_DECL
)
4439 /* Builds and returns function declaration with NAME and TYPE. */
4442 build_fn_decl (const char *name
, tree type
)
4444 tree id
= get_identifier (name
);
4445 tree decl
= build_decl (input_location
, FUNCTION_DECL
, id
, type
);
4447 DECL_EXTERNAL (decl
) = 1;
4448 TREE_PUBLIC (decl
) = 1;
4449 DECL_ARTIFICIAL (decl
) = 1;
4450 TREE_NOTHROW (decl
) = 1;
4455 vec
<tree
, va_gc
> *all_translation_units
;
4457 /* Builds a new translation-unit decl with name NAME, queues it in the
4458 global list of translation-unit decls and returns it. */
4461 build_translation_unit_decl (tree name
)
4463 tree tu
= build_decl (UNKNOWN_LOCATION
, TRANSLATION_UNIT_DECL
,
4465 TRANSLATION_UNIT_LANGUAGE (tu
) = lang_hooks
.name
;
4466 vec_safe_push (all_translation_units
, tu
);
4471 /* BLOCK nodes are used to represent the structure of binding contours
4472 and declarations, once those contours have been exited and their contents
4473 compiled. This information is used for outputting debugging info. */
4476 build_block (tree vars
, tree subblocks
, tree supercontext
, tree chain
)
4478 tree block
= make_node (BLOCK
);
4480 BLOCK_VARS (block
) = vars
;
4481 BLOCK_SUBBLOCKS (block
) = subblocks
;
4482 BLOCK_SUPERCONTEXT (block
) = supercontext
;
4483 BLOCK_CHAIN (block
) = chain
;
4488 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4490 LOC is the location to use in tree T. */
4493 protected_set_expr_location (tree t
, location_t loc
)
4495 if (t
&& CAN_HAVE_LOCATION_P (t
))
4496 SET_EXPR_LOCATION (t
, loc
);
4499 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
4503 build_decl_attribute_variant (tree ddecl
, tree attribute
)
4505 DECL_ATTRIBUTES (ddecl
) = attribute
;
4509 /* Borrowed from hashtab.c iterative_hash implementation. */
4510 #define mix(a,b,c) \
4512 a -= b; a -= c; a ^= (c>>13); \
4513 b -= c; b -= a; b ^= (a<< 8); \
4514 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
4515 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
4516 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
4517 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
4518 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
4519 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
4520 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
4524 /* Produce good hash value combining VAL and VAL2. */
4526 iterative_hash_hashval_t (hashval_t val
, hashval_t val2
)
4528 /* the golden ratio; an arbitrary value. */
4529 hashval_t a
= 0x9e3779b9;
4535 /* Produce good hash value combining VAL and VAL2. */
4537 iterative_hash_host_wide_int (HOST_WIDE_INT val
, hashval_t val2
)
4539 if (sizeof (HOST_WIDE_INT
) == sizeof (hashval_t
))
4540 return iterative_hash_hashval_t (val
, val2
);
4543 hashval_t a
= (hashval_t
) val
;
4544 /* Avoid warnings about shifting of more than the width of the type on
4545 hosts that won't execute this path. */
4547 hashval_t b
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 8 + zero
));
4549 if (sizeof (HOST_WIDE_INT
) > 2 * sizeof (hashval_t
))
4551 hashval_t a
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 16 + zero
));
4552 hashval_t b
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 24 + zero
));
4559 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4560 is ATTRIBUTE and its qualifiers are QUALS.
4562 Record such modified types already made so we don't make duplicates. */
4565 build_type_attribute_qual_variant (tree ttype
, tree attribute
, int quals
)
4567 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype
), attribute
))
4569 hashval_t hashcode
= 0;
4571 enum tree_code code
= TREE_CODE (ttype
);
4573 /* Building a distinct copy of a tagged type is inappropriate; it
4574 causes breakage in code that expects there to be a one-to-one
4575 relationship between a struct and its fields.
4576 build_duplicate_type is another solution (as used in
4577 handle_transparent_union_attribute), but that doesn't play well
4578 with the stronger C++ type identity model. */
4579 if (TREE_CODE (ttype
) == RECORD_TYPE
4580 || TREE_CODE (ttype
) == UNION_TYPE
4581 || TREE_CODE (ttype
) == QUAL_UNION_TYPE
4582 || TREE_CODE (ttype
) == ENUMERAL_TYPE
)
4584 warning (OPT_Wattributes
,
4585 "ignoring attributes applied to %qT after definition",
4586 TYPE_MAIN_VARIANT (ttype
));
4587 return build_qualified_type (ttype
, quals
);
4590 ttype
= build_qualified_type (ttype
, TYPE_UNQUALIFIED
);
4591 ntype
= build_distinct_type_copy (ttype
);
4593 TYPE_ATTRIBUTES (ntype
) = attribute
;
4595 hashcode
= iterative_hash_object (code
, hashcode
);
4596 if (TREE_TYPE (ntype
))
4597 hashcode
= iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype
)),
4599 hashcode
= attribute_hash_list (attribute
, hashcode
);
4601 switch (TREE_CODE (ntype
))
4604 hashcode
= type_hash_list (TYPE_ARG_TYPES (ntype
), hashcode
);
4607 if (TYPE_DOMAIN (ntype
))
4608 hashcode
= iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype
)),
4612 hashcode
= iterative_hash_object
4613 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype
)), hashcode
);
4614 hashcode
= iterative_hash_object
4615 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype
)), hashcode
);
4618 case FIXED_POINT_TYPE
:
4620 unsigned int precision
= TYPE_PRECISION (ntype
);
4621 hashcode
= iterative_hash_object (precision
, hashcode
);
4628 ntype
= type_hash_canon (hashcode
, ntype
);
4630 /* If the target-dependent attributes make NTYPE different from
4631 its canonical type, we will need to use structural equality
4632 checks for this type. */
4633 if (TYPE_STRUCTURAL_EQUALITY_P (ttype
)
4634 || !comp_type_attributes (ntype
, ttype
))
4635 SET_TYPE_STRUCTURAL_EQUALITY (ntype
);
4636 else if (TYPE_CANONICAL (ntype
) == ntype
)
4637 TYPE_CANONICAL (ntype
) = TYPE_CANONICAL (ttype
);
4639 ttype
= build_qualified_type (ntype
, quals
);
4641 else if (TYPE_QUALS (ttype
) != quals
)
4642 ttype
= build_qualified_type (ttype
, quals
);
4647 /* Check if "omp declare simd" attribute arguments, CLAUSES1 and CLAUSES2, are
4651 omp_declare_simd_clauses_equal (tree clauses1
, tree clauses2
)
4654 for (cl1
= clauses1
, cl2
= clauses2
;
4656 cl1
= OMP_CLAUSE_CHAIN (cl1
), cl2
= OMP_CLAUSE_CHAIN (cl2
))
4658 if (OMP_CLAUSE_CODE (cl1
) != OMP_CLAUSE_CODE (cl2
))
4660 if (OMP_CLAUSE_CODE (cl1
) != OMP_CLAUSE_SIMDLEN
)
4662 if (simple_cst_equal (OMP_CLAUSE_DECL (cl1
),
4663 OMP_CLAUSE_DECL (cl2
)) != 1)
4666 switch (OMP_CLAUSE_CODE (cl1
))
4668 case OMP_CLAUSE_ALIGNED
:
4669 if (simple_cst_equal (OMP_CLAUSE_ALIGNED_ALIGNMENT (cl1
),
4670 OMP_CLAUSE_ALIGNED_ALIGNMENT (cl2
)) != 1)
4673 case OMP_CLAUSE_LINEAR
:
4674 if (simple_cst_equal (OMP_CLAUSE_LINEAR_STEP (cl1
),
4675 OMP_CLAUSE_LINEAR_STEP (cl2
)) != 1)
4678 case OMP_CLAUSE_SIMDLEN
:
4679 if (simple_cst_equal (OMP_CLAUSE_SIMDLEN_EXPR (cl1
),
4680 OMP_CLAUSE_SIMDLEN_EXPR (cl2
)) != 1)
4689 /* Compare two constructor-element-type constants. Return 1 if the lists
4690 are known to be equal; otherwise return 0. */
4693 simple_cst_list_equal (const_tree l1
, const_tree l2
)
4695 while (l1
!= NULL_TREE
&& l2
!= NULL_TREE
)
4697 if (simple_cst_equal (TREE_VALUE (l1
), TREE_VALUE (l2
)) != 1)
4700 l1
= TREE_CHAIN (l1
);
4701 l2
= TREE_CHAIN (l2
);
4707 /* Compare two attributes for their value identity. Return true if the
4708 attribute values are known to be equal; otherwise return false.
4712 attribute_value_equal (const_tree attr1
, const_tree attr2
)
4714 if (TREE_VALUE (attr1
) == TREE_VALUE (attr2
))
4717 if (TREE_VALUE (attr1
) != NULL_TREE
4718 && TREE_CODE (TREE_VALUE (attr1
)) == TREE_LIST
4719 && TREE_VALUE (attr2
) != NULL
4720 && TREE_CODE (TREE_VALUE (attr2
)) == TREE_LIST
)
4721 return (simple_cst_list_equal (TREE_VALUE (attr1
),
4722 TREE_VALUE (attr2
)) == 1);
4724 if ((flag_openmp
|| flag_openmp_simd
)
4725 && TREE_VALUE (attr1
) && TREE_VALUE (attr2
)
4726 && TREE_CODE (TREE_VALUE (attr1
)) == OMP_CLAUSE
4727 && TREE_CODE (TREE_VALUE (attr2
)) == OMP_CLAUSE
)
4728 return omp_declare_simd_clauses_equal (TREE_VALUE (attr1
),
4729 TREE_VALUE (attr2
));
4731 return (simple_cst_equal (TREE_VALUE (attr1
), TREE_VALUE (attr2
)) == 1);
4734 /* Return 0 if the attributes for two types are incompatible, 1 if they
4735 are compatible, and 2 if they are nearly compatible (which causes a
4736 warning to be generated). */
4738 comp_type_attributes (const_tree type1
, const_tree type2
)
4740 const_tree a1
= TYPE_ATTRIBUTES (type1
);
4741 const_tree a2
= TYPE_ATTRIBUTES (type2
);
4746 for (a
= a1
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
4748 const struct attribute_spec
*as
;
4751 as
= lookup_attribute_spec (get_attribute_name (a
));
4752 if (!as
|| as
->affects_type_identity
== false)
4755 attr
= lookup_attribute (as
->name
, CONST_CAST_TREE (a2
));
4756 if (!attr
|| !attribute_value_equal (a
, attr
))
4761 for (a
= a2
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
4763 const struct attribute_spec
*as
;
4765 as
= lookup_attribute_spec (get_attribute_name (a
));
4766 if (!as
|| as
->affects_type_identity
== false)
4769 if (!lookup_attribute (as
->name
, CONST_CAST_TREE (a1
)))
4771 /* We don't need to compare trees again, as we did this
4772 already in first loop. */
4774 /* All types - affecting identity - are equal, so
4775 there is no need to call target hook for comparison. */
4779 /* As some type combinations - like default calling-convention - might
4780 be compatible, we have to call the target hook to get the final result. */
4781 return targetm
.comp_type_attributes (type1
, type2
);
4784 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4787 Record such modified types already made so we don't make duplicates. */
4790 build_type_attribute_variant (tree ttype
, tree attribute
)
4792 return build_type_attribute_qual_variant (ttype
, attribute
,
4793 TYPE_QUALS (ttype
));
4797 /* Reset the expression *EXPR_P, a size or position.
4799 ??? We could reset all non-constant sizes or positions. But it's cheap
4800 enough to not do so and refrain from adding workarounds to dwarf2out.c.
4802 We need to reset self-referential sizes or positions because they cannot
4803 be gimplified and thus can contain a CALL_EXPR after the gimplification
4804 is finished, which will run afoul of LTO streaming. And they need to be
4805 reset to something essentially dummy but not constant, so as to preserve
4806 the properties of the object they are attached to. */
4809 free_lang_data_in_one_sizepos (tree
*expr_p
)
4811 tree expr
= *expr_p
;
4812 if (CONTAINS_PLACEHOLDER_P (expr
))
4813 *expr_p
= build0 (PLACEHOLDER_EXPR
, TREE_TYPE (expr
));
4817 /* Reset all the fields in a binfo node BINFO. We only keep
4818 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
4821 free_lang_data_in_binfo (tree binfo
)
4826 gcc_assert (TREE_CODE (binfo
) == TREE_BINFO
);
4828 BINFO_VIRTUALS (binfo
) = NULL_TREE
;
4829 BINFO_BASE_ACCESSES (binfo
) = NULL
;
4830 BINFO_INHERITANCE_CHAIN (binfo
) = NULL_TREE
;
4831 BINFO_SUBVTT_INDEX (binfo
) = NULL_TREE
;
4833 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo
), i
, t
)
4834 free_lang_data_in_binfo (t
);
4838 /* Reset all language specific information still present in TYPE. */
4841 free_lang_data_in_type (tree type
)
4843 gcc_assert (TYPE_P (type
));
4845 /* Give the FE a chance to remove its own data first. */
4846 lang_hooks
.free_lang_data (type
);
4848 TREE_LANG_FLAG_0 (type
) = 0;
4849 TREE_LANG_FLAG_1 (type
) = 0;
4850 TREE_LANG_FLAG_2 (type
) = 0;
4851 TREE_LANG_FLAG_3 (type
) = 0;
4852 TREE_LANG_FLAG_4 (type
) = 0;
4853 TREE_LANG_FLAG_5 (type
) = 0;
4854 TREE_LANG_FLAG_6 (type
) = 0;
4856 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4858 /* Remove the const and volatile qualifiers from arguments. The
4859 C++ front end removes them, but the C front end does not,
4860 leading to false ODR violation errors when merging two
4861 instances of the same function signature compiled by
4862 different front ends. */
4865 for (p
= TYPE_ARG_TYPES (type
); p
; p
= TREE_CHAIN (p
))
4867 tree arg_type
= TREE_VALUE (p
);
4869 if (TYPE_READONLY (arg_type
) || TYPE_VOLATILE (arg_type
))
4871 int quals
= TYPE_QUALS (arg_type
)
4873 & ~TYPE_QUAL_VOLATILE
;
4874 TREE_VALUE (p
) = build_qualified_type (arg_type
, quals
);
4875 free_lang_data_in_type (TREE_VALUE (p
));
4880 /* Remove members that are not actually FIELD_DECLs from the field
4881 list of an aggregate. These occur in C++. */
4882 if (RECORD_OR_UNION_TYPE_P (type
))
4886 /* Note that TYPE_FIELDS can be shared across distinct
4887 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
4888 to be removed, we cannot set its TREE_CHAIN to NULL.
4889 Otherwise, we would not be able to find all the other fields
4890 in the other instances of this TREE_TYPE.
4892 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
4894 member
= TYPE_FIELDS (type
);
4897 if (TREE_CODE (member
) == FIELD_DECL
4898 || TREE_CODE (member
) == TYPE_DECL
)
4901 TREE_CHAIN (prev
) = member
;
4903 TYPE_FIELDS (type
) = member
;
4907 member
= TREE_CHAIN (member
);
4911 TREE_CHAIN (prev
) = NULL_TREE
;
4913 TYPE_FIELDS (type
) = NULL_TREE
;
4915 TYPE_METHODS (type
) = NULL_TREE
;
4916 if (TYPE_BINFO (type
))
4917 free_lang_data_in_binfo (TYPE_BINFO (type
));
4921 /* For non-aggregate types, clear out the language slot (which
4922 overloads TYPE_BINFO). */
4923 TYPE_LANG_SLOT_1 (type
) = NULL_TREE
;
4925 if (INTEGRAL_TYPE_P (type
)
4926 || SCALAR_FLOAT_TYPE_P (type
)
4927 || FIXED_POINT_TYPE_P (type
))
4929 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type
));
4930 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type
));
4934 free_lang_data_in_one_sizepos (&TYPE_SIZE (type
));
4935 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type
));
4937 if (TYPE_CONTEXT (type
)
4938 && TREE_CODE (TYPE_CONTEXT (type
)) == BLOCK
)
4940 tree ctx
= TYPE_CONTEXT (type
);
4943 ctx
= BLOCK_SUPERCONTEXT (ctx
);
4945 while (ctx
&& TREE_CODE (ctx
) == BLOCK
);
4946 TYPE_CONTEXT (type
) = ctx
;
4951 /* Return true if DECL may need an assembler name to be set. */
4954 need_assembler_name_p (tree decl
)
4956 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
4957 if (TREE_CODE (decl
) != FUNCTION_DECL
4958 && TREE_CODE (decl
) != VAR_DECL
)
4961 /* If DECL already has its assembler name set, it does not need a
4963 if (!HAS_DECL_ASSEMBLER_NAME_P (decl
)
4964 || DECL_ASSEMBLER_NAME_SET_P (decl
))
4967 /* Abstract decls do not need an assembler name. */
4968 if (DECL_ABSTRACT (decl
))
4971 /* For VAR_DECLs, only static, public and external symbols need an
4973 if (TREE_CODE (decl
) == VAR_DECL
4974 && !TREE_STATIC (decl
)
4975 && !TREE_PUBLIC (decl
)
4976 && !DECL_EXTERNAL (decl
))
4979 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4981 /* Do not set assembler name on builtins. Allow RTL expansion to
4982 decide whether to expand inline or via a regular call. */
4983 if (DECL_BUILT_IN (decl
)
4984 && DECL_BUILT_IN_CLASS (decl
) != BUILT_IN_FRONTEND
)
4987 /* Functions represented in the callgraph need an assembler name. */
4988 if (cgraph_get_node (decl
) != NULL
)
4991 /* Unused and not public functions don't need an assembler name. */
4992 if (!TREE_USED (decl
) && !TREE_PUBLIC (decl
))
5000 /* Reset all language specific information still present in symbol
5004 free_lang_data_in_decl (tree decl
)
5006 gcc_assert (DECL_P (decl
));
5008 /* Give the FE a chance to remove its own data first. */
5009 lang_hooks
.free_lang_data (decl
);
5011 TREE_LANG_FLAG_0 (decl
) = 0;
5012 TREE_LANG_FLAG_1 (decl
) = 0;
5013 TREE_LANG_FLAG_2 (decl
) = 0;
5014 TREE_LANG_FLAG_3 (decl
) = 0;
5015 TREE_LANG_FLAG_4 (decl
) = 0;
5016 TREE_LANG_FLAG_5 (decl
) = 0;
5017 TREE_LANG_FLAG_6 (decl
) = 0;
5019 free_lang_data_in_one_sizepos (&DECL_SIZE (decl
));
5020 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl
));
5021 if (TREE_CODE (decl
) == FIELD_DECL
)
5023 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl
));
5024 if (TREE_CODE (DECL_CONTEXT (decl
)) == QUAL_UNION_TYPE
)
5025 DECL_QUALIFIER (decl
) = NULL_TREE
;
5028 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5030 struct cgraph_node
*node
;
5031 if (!(node
= cgraph_get_node (decl
))
5032 || (!node
->definition
&& !node
->clones
))
5035 cgraph_release_function_body (node
);
5038 release_function_body (decl
);
5039 DECL_ARGUMENTS (decl
) = NULL
;
5040 DECL_RESULT (decl
) = NULL
;
5041 DECL_INITIAL (decl
) = error_mark_node
;
5044 if (gimple_has_body_p (decl
))
5048 /* If DECL has a gimple body, then the context for its
5049 arguments must be DECL. Otherwise, it doesn't really
5050 matter, as we will not be emitting any code for DECL. In
5051 general, there may be other instances of DECL created by
5052 the front end and since PARM_DECLs are generally shared,
5053 their DECL_CONTEXT changes as the replicas of DECL are
5054 created. The only time where DECL_CONTEXT is important
5055 is for the FUNCTION_DECLs that have a gimple body (since
5056 the PARM_DECL will be used in the function's body). */
5057 for (t
= DECL_ARGUMENTS (decl
); t
; t
= TREE_CHAIN (t
))
5058 DECL_CONTEXT (t
) = decl
;
5061 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5062 At this point, it is not needed anymore. */
5063 DECL_SAVED_TREE (decl
) = NULL_TREE
;
5065 /* Clear the abstract origin if it refers to a method. Otherwise
5066 dwarf2out.c will ICE as we clear TYPE_METHODS and thus the
5067 origin will not be output correctly. */
5068 if (DECL_ABSTRACT_ORIGIN (decl
)
5069 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))
5070 && RECORD_OR_UNION_TYPE_P
5071 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))))
5072 DECL_ABSTRACT_ORIGIN (decl
) = NULL_TREE
;
5074 /* Sometimes the C++ frontend doesn't manage to transform a temporary
5075 DECL_VINDEX referring to itself into a vtable slot number as it
5076 should. Happens with functions that are copied and then forgotten
5077 about. Just clear it, it won't matter anymore. */
5078 if (DECL_VINDEX (decl
) && !tree_fits_shwi_p (DECL_VINDEX (decl
)))
5079 DECL_VINDEX (decl
) = NULL_TREE
;
5081 else if (TREE_CODE (decl
) == VAR_DECL
)
5083 if ((DECL_EXTERNAL (decl
)
5084 && (!TREE_STATIC (decl
) || !TREE_READONLY (decl
)))
5085 || (decl_function_context (decl
) && !TREE_STATIC (decl
)))
5086 DECL_INITIAL (decl
) = NULL_TREE
;
5088 else if (TREE_CODE (decl
) == TYPE_DECL
5089 || TREE_CODE (decl
) == FIELD_DECL
)
5090 DECL_INITIAL (decl
) = NULL_TREE
;
5091 else if (TREE_CODE (decl
) == TRANSLATION_UNIT_DECL
5092 && DECL_INITIAL (decl
)
5093 && TREE_CODE (DECL_INITIAL (decl
)) == BLOCK
)
5095 /* Strip builtins from the translation-unit BLOCK. We still have targets
5096 without builtin_decl_explicit support and also builtins are shared
5097 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5098 tree
*nextp
= &BLOCK_VARS (DECL_INITIAL (decl
));
5102 if (TREE_CODE (var
) == FUNCTION_DECL
5103 && DECL_BUILT_IN (var
))
5104 *nextp
= TREE_CHAIN (var
);
5106 nextp
= &TREE_CHAIN (var
);
5112 /* Data used when collecting DECLs and TYPEs for language data removal. */
5114 struct free_lang_data_d
5116 /* Worklist to avoid excessive recursion. */
5119 /* Set of traversed objects. Used to avoid duplicate visits. */
5120 struct pointer_set_t
*pset
;
5122 /* Array of symbols to process with free_lang_data_in_decl. */
5125 /* Array of types to process with free_lang_data_in_type. */
5130 /* Save all language fields needed to generate proper debug information
5131 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
5134 save_debug_info_for_decl (tree t
)
5136 /*struct saved_debug_info_d *sdi;*/
5138 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& DECL_P (t
));
5140 /* FIXME. Partial implementation for saving debug info removed. */
5144 /* Save all language fields needed to generate proper debug information
5145 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
5148 save_debug_info_for_type (tree t
)
5150 /*struct saved_debug_info_d *sdi;*/
5152 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& TYPE_P (t
));
5154 /* FIXME. Partial implementation for saving debug info removed. */
5158 /* Add type or decl T to one of the list of tree nodes that need their
5159 language data removed. The lists are held inside FLD. */
5162 add_tree_to_fld_list (tree t
, struct free_lang_data_d
*fld
)
5166 fld
->decls
.safe_push (t
);
5167 if (debug_info_level
> DINFO_LEVEL_TERSE
)
5168 save_debug_info_for_decl (t
);
5170 else if (TYPE_P (t
))
5172 fld
->types
.safe_push (t
);
5173 if (debug_info_level
> DINFO_LEVEL_TERSE
)
5174 save_debug_info_for_type (t
);
5180 /* Push tree node T into FLD->WORKLIST. */
5183 fld_worklist_push (tree t
, struct free_lang_data_d
*fld
)
5185 if (t
&& !is_lang_specific (t
) && !pointer_set_contains (fld
->pset
, t
))
5186 fld
->worklist
.safe_push ((t
));
5190 /* Operand callback helper for free_lang_data_in_node. *TP is the
5191 subtree operand being considered. */
5194 find_decls_types_r (tree
*tp
, int *ws
, void *data
)
5197 struct free_lang_data_d
*fld
= (struct free_lang_data_d
*) data
;
5199 if (TREE_CODE (t
) == TREE_LIST
)
5202 /* Language specific nodes will be removed, so there is no need
5203 to gather anything under them. */
5204 if (is_lang_specific (t
))
5212 /* Note that walk_tree does not traverse every possible field in
5213 decls, so we have to do our own traversals here. */
5214 add_tree_to_fld_list (t
, fld
);
5216 fld_worklist_push (DECL_NAME (t
), fld
);
5217 fld_worklist_push (DECL_CONTEXT (t
), fld
);
5218 fld_worklist_push (DECL_SIZE (t
), fld
);
5219 fld_worklist_push (DECL_SIZE_UNIT (t
), fld
);
5221 /* We are going to remove everything under DECL_INITIAL for
5222 TYPE_DECLs. No point walking them. */
5223 if (TREE_CODE (t
) != TYPE_DECL
)
5224 fld_worklist_push (DECL_INITIAL (t
), fld
);
5226 fld_worklist_push (DECL_ATTRIBUTES (t
), fld
);
5227 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t
), fld
);
5229 if (TREE_CODE (t
) == FUNCTION_DECL
)
5231 fld_worklist_push (DECL_ARGUMENTS (t
), fld
);
5232 fld_worklist_push (DECL_RESULT (t
), fld
);
5234 else if (TREE_CODE (t
) == TYPE_DECL
)
5236 fld_worklist_push (DECL_ARGUMENT_FLD (t
), fld
);
5237 fld_worklist_push (DECL_VINDEX (t
), fld
);
5238 fld_worklist_push (DECL_ORIGINAL_TYPE (t
), fld
);
5240 else if (TREE_CODE (t
) == FIELD_DECL
)
5242 fld_worklist_push (DECL_FIELD_OFFSET (t
), fld
);
5243 fld_worklist_push (DECL_BIT_FIELD_TYPE (t
), fld
);
5244 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t
), fld
);
5245 fld_worklist_push (DECL_FCONTEXT (t
), fld
);
5247 else if (TREE_CODE (t
) == VAR_DECL
)
5249 fld_worklist_push (DECL_SECTION_NAME (t
), fld
);
5250 fld_worklist_push (DECL_COMDAT_GROUP (t
), fld
);
5253 if ((TREE_CODE (t
) == VAR_DECL
|| TREE_CODE (t
) == PARM_DECL
)
5254 && DECL_HAS_VALUE_EXPR_P (t
))
5255 fld_worklist_push (DECL_VALUE_EXPR (t
), fld
);
5257 if (TREE_CODE (t
) != FIELD_DECL
5258 && TREE_CODE (t
) != TYPE_DECL
)
5259 fld_worklist_push (TREE_CHAIN (t
), fld
);
5262 else if (TYPE_P (t
))
5264 /* Note that walk_tree does not traverse every possible field in
5265 types, so we have to do our own traversals here. */
5266 add_tree_to_fld_list (t
, fld
);
5268 if (!RECORD_OR_UNION_TYPE_P (t
))
5269 fld_worklist_push (TYPE_CACHED_VALUES (t
), fld
);
5270 fld_worklist_push (TYPE_SIZE (t
), fld
);
5271 fld_worklist_push (TYPE_SIZE_UNIT (t
), fld
);
5272 fld_worklist_push (TYPE_ATTRIBUTES (t
), fld
);
5273 fld_worklist_push (TYPE_POINTER_TO (t
), fld
);
5274 fld_worklist_push (TYPE_REFERENCE_TO (t
), fld
);
5275 fld_worklist_push (TYPE_NAME (t
), fld
);
5276 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
5277 them and thus do not and want not to reach unused pointer types
5279 if (!POINTER_TYPE_P (t
))
5280 fld_worklist_push (TYPE_MINVAL (t
), fld
);
5281 if (!RECORD_OR_UNION_TYPE_P (t
))
5282 fld_worklist_push (TYPE_MAXVAL (t
), fld
);
5283 fld_worklist_push (TYPE_MAIN_VARIANT (t
), fld
);
5284 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5285 do not and want not to reach unused variants this way. */
5286 if (TYPE_CONTEXT (t
))
5288 tree ctx
= TYPE_CONTEXT (t
);
5289 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5290 So push that instead. */
5291 while (ctx
&& TREE_CODE (ctx
) == BLOCK
)
5292 ctx
= BLOCK_SUPERCONTEXT (ctx
);
5293 fld_worklist_push (ctx
, fld
);
5295 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5296 and want not to reach unused types this way. */
5298 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_BINFO (t
))
5302 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t
)), i
, tem
)
5303 fld_worklist_push (TREE_TYPE (tem
), fld
);
5304 tem
= BINFO_VIRTUALS (TYPE_BINFO (t
));
5306 /* The Java FE overloads BINFO_VIRTUALS for its own purpose. */
5307 && TREE_CODE (tem
) == TREE_LIST
)
5310 fld_worklist_push (TREE_VALUE (tem
), fld
);
5311 tem
= TREE_CHAIN (tem
);
5315 if (RECORD_OR_UNION_TYPE_P (t
))
5318 /* Push all TYPE_FIELDS - there can be interleaving interesting
5319 and non-interesting things. */
5320 tem
= TYPE_FIELDS (t
);
5323 if (TREE_CODE (tem
) == FIELD_DECL
5324 || TREE_CODE (tem
) == TYPE_DECL
)
5325 fld_worklist_push (tem
, fld
);
5326 tem
= TREE_CHAIN (tem
);
5330 fld_worklist_push (TYPE_STUB_DECL (t
), fld
);
5333 else if (TREE_CODE (t
) == BLOCK
)
5336 for (tem
= BLOCK_VARS (t
); tem
; tem
= TREE_CHAIN (tem
))
5337 fld_worklist_push (tem
, fld
);
5338 for (tem
= BLOCK_SUBBLOCKS (t
); tem
; tem
= BLOCK_CHAIN (tem
))
5339 fld_worklist_push (tem
, fld
);
5340 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t
), fld
);
5343 if (TREE_CODE (t
) != IDENTIFIER_NODE
5344 && CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_TYPED
))
5345 fld_worklist_push (TREE_TYPE (t
), fld
);
5351 /* Find decls and types in T. */
5354 find_decls_types (tree t
, struct free_lang_data_d
*fld
)
5358 if (!pointer_set_contains (fld
->pset
, t
))
5359 walk_tree (&t
, find_decls_types_r
, fld
, fld
->pset
);
5360 if (fld
->worklist
.is_empty ())
5362 t
= fld
->worklist
.pop ();
5366 /* Translate all the types in LIST with the corresponding runtime
5370 get_eh_types_for_runtime (tree list
)
5374 if (list
== NULL_TREE
)
5377 head
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5379 list
= TREE_CHAIN (list
);
5382 tree n
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5383 TREE_CHAIN (prev
) = n
;
5384 prev
= TREE_CHAIN (prev
);
5385 list
= TREE_CHAIN (list
);
5392 /* Find decls and types referenced in EH region R and store them in
5393 FLD->DECLS and FLD->TYPES. */
5396 find_decls_types_in_eh_region (eh_region r
, struct free_lang_data_d
*fld
)
5407 /* The types referenced in each catch must first be changed to the
5408 EH types used at runtime. This removes references to FE types
5410 for (c
= r
->u
.eh_try
.first_catch
; c
; c
= c
->next_catch
)
5412 c
->type_list
= get_eh_types_for_runtime (c
->type_list
);
5413 walk_tree (&c
->type_list
, find_decls_types_r
, fld
, fld
->pset
);
5418 case ERT_ALLOWED_EXCEPTIONS
:
5419 r
->u
.allowed
.type_list
5420 = get_eh_types_for_runtime (r
->u
.allowed
.type_list
);
5421 walk_tree (&r
->u
.allowed
.type_list
, find_decls_types_r
, fld
, fld
->pset
);
5424 case ERT_MUST_NOT_THROW
:
5425 walk_tree (&r
->u
.must_not_throw
.failure_decl
,
5426 find_decls_types_r
, fld
, fld
->pset
);
5432 /* Find decls and types referenced in cgraph node N and store them in
5433 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5434 look for *every* kind of DECL and TYPE node reachable from N,
5435 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5436 NAMESPACE_DECLs, etc). */
5439 find_decls_types_in_node (struct cgraph_node
*n
, struct free_lang_data_d
*fld
)
5442 struct function
*fn
;
5446 find_decls_types (n
->decl
, fld
);
5448 if (!gimple_has_body_p (n
->decl
))
5451 gcc_assert (current_function_decl
== NULL_TREE
&& cfun
== NULL
);
5453 fn
= DECL_STRUCT_FUNCTION (n
->decl
);
5455 /* Traverse locals. */
5456 FOR_EACH_LOCAL_DECL (fn
, ix
, t
)
5457 find_decls_types (t
, fld
);
5459 /* Traverse EH regions in FN. */
5462 FOR_ALL_EH_REGION_FN (r
, fn
)
5463 find_decls_types_in_eh_region (r
, fld
);
5466 /* Traverse every statement in FN. */
5467 FOR_EACH_BB_FN (bb
, fn
)
5469 gimple_stmt_iterator si
;
5472 for (si
= gsi_start_phis (bb
); !gsi_end_p (si
); gsi_next (&si
))
5474 gimple phi
= gsi_stmt (si
);
5476 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
5478 tree
*arg_p
= gimple_phi_arg_def_ptr (phi
, i
);
5479 find_decls_types (*arg_p
, fld
);
5483 for (si
= gsi_start_bb (bb
); !gsi_end_p (si
); gsi_next (&si
))
5485 gimple stmt
= gsi_stmt (si
);
5487 if (is_gimple_call (stmt
))
5488 find_decls_types (gimple_call_fntype (stmt
), fld
);
5490 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
5492 tree arg
= gimple_op (stmt
, i
);
5493 find_decls_types (arg
, fld
);
5500 /* Find decls and types referenced in varpool node N and store them in
5501 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5502 look for *every* kind of DECL and TYPE node reachable from N,
5503 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5504 NAMESPACE_DECLs, etc). */
5507 find_decls_types_in_var (varpool_node
*v
, struct free_lang_data_d
*fld
)
5509 find_decls_types (v
->decl
, fld
);
5512 /* If T needs an assembler name, have one created for it. */
5515 assign_assembler_name_if_neeeded (tree t
)
5517 if (need_assembler_name_p (t
))
5519 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5520 diagnostics that use input_location to show locus
5521 information. The problem here is that, at this point,
5522 input_location is generally anchored to the end of the file
5523 (since the parser is long gone), so we don't have a good
5524 position to pin it to.
5526 To alleviate this problem, this uses the location of T's
5527 declaration. Examples of this are
5528 testsuite/g++.dg/template/cond2.C and
5529 testsuite/g++.dg/template/pr35240.C. */
5530 location_t saved_location
= input_location
;
5531 input_location
= DECL_SOURCE_LOCATION (t
);
5533 decl_assembler_name (t
);
5535 input_location
= saved_location
;
5540 /* Free language specific information for every operand and expression
5541 in every node of the call graph. This process operates in three stages:
5543 1- Every callgraph node and varpool node is traversed looking for
5544 decls and types embedded in them. This is a more exhaustive
5545 search than that done by find_referenced_vars, because it will
5546 also collect individual fields, decls embedded in types, etc.
5548 2- All the decls found are sent to free_lang_data_in_decl.
5550 3- All the types found are sent to free_lang_data_in_type.
5552 The ordering between decls and types is important because
5553 free_lang_data_in_decl sets assembler names, which includes
5554 mangling. So types cannot be freed up until assembler names have
5558 free_lang_data_in_cgraph (void)
5560 struct cgraph_node
*n
;
5562 struct free_lang_data_d fld
;
5567 /* Initialize sets and arrays to store referenced decls and types. */
5568 fld
.pset
= pointer_set_create ();
5569 fld
.worklist
.create (0);
5570 fld
.decls
.create (100);
5571 fld
.types
.create (100);
5573 /* Find decls and types in the body of every function in the callgraph. */
5574 FOR_EACH_FUNCTION (n
)
5575 find_decls_types_in_node (n
, &fld
);
5577 FOR_EACH_VEC_SAFE_ELT (alias_pairs
, i
, p
)
5578 find_decls_types (p
->decl
, &fld
);
5580 /* Find decls and types in every varpool symbol. */
5581 FOR_EACH_VARIABLE (v
)
5582 find_decls_types_in_var (v
, &fld
);
5584 /* Set the assembler name on every decl found. We need to do this
5585 now because free_lang_data_in_decl will invalidate data needed
5586 for mangling. This breaks mangling on interdependent decls. */
5587 FOR_EACH_VEC_ELT (fld
.decls
, i
, t
)
5588 assign_assembler_name_if_neeeded (t
);
5590 /* Traverse every decl found freeing its language data. */
5591 FOR_EACH_VEC_ELT (fld
.decls
, i
, t
)
5592 free_lang_data_in_decl (t
);
5594 /* Traverse every type found freeing its language data. */
5595 FOR_EACH_VEC_ELT (fld
.types
, i
, t
)
5596 free_lang_data_in_type (t
);
5598 pointer_set_destroy (fld
.pset
);
5599 fld
.worklist
.release ();
5600 fld
.decls
.release ();
5601 fld
.types
.release ();
5605 /* Free resources that are used by FE but are not needed once they are done. */
5608 free_lang_data (void)
5612 /* If we are the LTO frontend we have freed lang-specific data already. */
5614 || !flag_generate_lto
)
5617 /* Allocate and assign alias sets to the standard integer types
5618 while the slots are still in the way the frontends generated them. */
5619 for (i
= 0; i
< itk_none
; ++i
)
5620 if (integer_types
[i
])
5621 TYPE_ALIAS_SET (integer_types
[i
]) = get_alias_set (integer_types
[i
]);
5623 /* Traverse the IL resetting language specific information for
5624 operands, expressions, etc. */
5625 free_lang_data_in_cgraph ();
5627 /* Create gimple variants for common types. */
5628 ptrdiff_type_node
= integer_type_node
;
5629 fileptr_type_node
= ptr_type_node
;
5631 /* Reset some langhooks. Do not reset types_compatible_p, it may
5632 still be used indirectly via the get_alias_set langhook. */
5633 lang_hooks
.dwarf_name
= lhd_dwarf_name
;
5634 lang_hooks
.decl_printable_name
= gimple_decl_printable_name
;
5635 /* We do not want the default decl_assembler_name implementation,
5636 rather if we have fixed everything we want a wrapper around it
5637 asserting that all non-local symbols already got their assembler
5638 name and only produce assembler names for local symbols. Or rather
5639 make sure we never call decl_assembler_name on local symbols and
5640 devise a separate, middle-end private scheme for it. */
5642 /* Reset diagnostic machinery. */
5643 tree_diagnostics_defaults (global_dc
);
5651 const pass_data pass_data_ipa_free_lang_data
=
5653 SIMPLE_IPA_PASS
, /* type */
5654 "*free_lang_data", /* name */
5655 OPTGROUP_NONE
, /* optinfo_flags */
5656 false, /* has_gate */
5657 true, /* has_execute */
5658 TV_IPA_FREE_LANG_DATA
, /* tv_id */
5659 0, /* properties_required */
5660 0, /* properties_provided */
5661 0, /* properties_destroyed */
5662 0, /* todo_flags_start */
5663 0, /* todo_flags_finish */
5666 class pass_ipa_free_lang_data
: public simple_ipa_opt_pass
5669 pass_ipa_free_lang_data (gcc::context
*ctxt
)
5670 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data
, ctxt
)
5673 /* opt_pass methods: */
5674 unsigned int execute () { return free_lang_data (); }
5676 }; // class pass_ipa_free_lang_data
5680 simple_ipa_opt_pass
*
5681 make_pass_ipa_free_lang_data (gcc::context
*ctxt
)
5683 return new pass_ipa_free_lang_data (ctxt
);
5686 /* The backbone of is_attribute_p(). ATTR_LEN is the string length of
5687 ATTR_NAME. Also used internally by remove_attribute(). */
5689 private_is_attribute_p (const char *attr_name
, size_t attr_len
, const_tree ident
)
5691 size_t ident_len
= IDENTIFIER_LENGTH (ident
);
5693 if (ident_len
== attr_len
)
5695 if (strcmp (attr_name
, IDENTIFIER_POINTER (ident
)) == 0)
5698 else if (ident_len
== attr_len
+ 4)
5700 /* There is the possibility that ATTR is 'text' and IDENT is
5702 const char *p
= IDENTIFIER_POINTER (ident
);
5703 if (p
[0] == '_' && p
[1] == '_'
5704 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5705 && strncmp (attr_name
, p
+ 2, attr_len
) == 0)
5712 /* The backbone of lookup_attribute(). ATTR_LEN is the string length
5713 of ATTR_NAME, and LIST is not NULL_TREE. */
5715 private_lookup_attribute (const char *attr_name
, size_t attr_len
, tree list
)
5719 size_t ident_len
= IDENTIFIER_LENGTH (get_attribute_name (list
));
5721 if (ident_len
== attr_len
)
5723 if (!strcmp (attr_name
,
5724 IDENTIFIER_POINTER (get_attribute_name (list
))))
5727 /* TODO: If we made sure that attributes were stored in the
5728 canonical form without '__...__' (ie, as in 'text' as opposed
5729 to '__text__') then we could avoid the following case. */
5730 else if (ident_len
== attr_len
+ 4)
5732 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5733 if (p
[0] == '_' && p
[1] == '_'
5734 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5735 && strncmp (attr_name
, p
+ 2, attr_len
) == 0)
5738 list
= TREE_CHAIN (list
);
5744 /* A variant of lookup_attribute() that can be used with an identifier
5745 as the first argument, and where the identifier can be either
5746 'text' or '__text__'.
5748 Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
5749 return a pointer to the attribute's list element if the attribute
5750 is part of the list, or NULL_TREE if not found. If the attribute
5751 appears more than once, this only returns the first occurrence; the
5752 TREE_CHAIN of the return value should be passed back in if further
5753 occurrences are wanted. ATTR_IDENTIFIER must be an identifier but
5754 can be in the form 'text' or '__text__'. */
5756 lookup_ident_attribute (tree attr_identifier
, tree list
)
5758 gcc_checking_assert (TREE_CODE (attr_identifier
) == IDENTIFIER_NODE
);
5762 gcc_checking_assert (TREE_CODE (get_attribute_name (list
))
5763 == IDENTIFIER_NODE
);
5765 /* Identifiers can be compared directly for equality. */
5766 if (attr_identifier
== get_attribute_name (list
))
5769 /* If they are not equal, they may still be one in the form
5770 'text' while the other one is in the form '__text__'. TODO:
5771 If we were storing attributes in normalized 'text' form, then
5772 this could all go away and we could take full advantage of
5773 the fact that we're comparing identifiers. :-) */
5775 size_t attr_len
= IDENTIFIER_LENGTH (attr_identifier
);
5776 size_t ident_len
= IDENTIFIER_LENGTH (get_attribute_name (list
));
5778 if (ident_len
== attr_len
+ 4)
5780 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5781 const char *q
= IDENTIFIER_POINTER (attr_identifier
);
5782 if (p
[0] == '_' && p
[1] == '_'
5783 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5784 && strncmp (q
, p
+ 2, attr_len
) == 0)
5787 else if (ident_len
+ 4 == attr_len
)
5789 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5790 const char *q
= IDENTIFIER_POINTER (attr_identifier
);
5791 if (q
[0] == '_' && q
[1] == '_'
5792 && q
[attr_len
- 2] == '_' && q
[attr_len
- 1] == '_'
5793 && strncmp (q
+ 2, p
, ident_len
) == 0)
5797 list
= TREE_CHAIN (list
);
5803 /* Remove any instances of attribute ATTR_NAME in LIST and return the
5807 remove_attribute (const char *attr_name
, tree list
)
5810 size_t attr_len
= strlen (attr_name
);
5812 gcc_checking_assert (attr_name
[0] != '_');
5814 for (p
= &list
; *p
; )
5817 /* TODO: If we were storing attributes in normalized form, here
5818 we could use a simple strcmp(). */
5819 if (private_is_attribute_p (attr_name
, attr_len
, get_attribute_name (l
)))
5820 *p
= TREE_CHAIN (l
);
5822 p
= &TREE_CHAIN (l
);
5828 /* Return an attribute list that is the union of a1 and a2. */
5831 merge_attributes (tree a1
, tree a2
)
5835 /* Either one unset? Take the set one. */
5837 if ((attributes
= a1
) == 0)
5840 /* One that completely contains the other? Take it. */
5842 else if (a2
!= 0 && ! attribute_list_contained (a1
, a2
))
5844 if (attribute_list_contained (a2
, a1
))
5848 /* Pick the longest list, and hang on the other list. */
5850 if (list_length (a1
) < list_length (a2
))
5851 attributes
= a2
, a2
= a1
;
5853 for (; a2
!= 0; a2
= TREE_CHAIN (a2
))
5856 for (a
= lookup_ident_attribute (get_attribute_name (a2
),
5858 a
!= NULL_TREE
&& !attribute_value_equal (a
, a2
);
5859 a
= lookup_ident_attribute (get_attribute_name (a2
),
5864 a1
= copy_node (a2
);
5865 TREE_CHAIN (a1
) = attributes
;
5874 /* Given types T1 and T2, merge their attributes and return
5878 merge_type_attributes (tree t1
, tree t2
)
5880 return merge_attributes (TYPE_ATTRIBUTES (t1
),
5881 TYPE_ATTRIBUTES (t2
));
5884 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
5888 merge_decl_attributes (tree olddecl
, tree newdecl
)
5890 return merge_attributes (DECL_ATTRIBUTES (olddecl
),
5891 DECL_ATTRIBUTES (newdecl
));
5894 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
5896 /* Specialization of merge_decl_attributes for various Windows targets.
5898 This handles the following situation:
5900 __declspec (dllimport) int foo;
5903 The second instance of `foo' nullifies the dllimport. */
5906 merge_dllimport_decl_attributes (tree old
, tree new_tree
)
5909 int delete_dllimport_p
= 1;
5911 /* What we need to do here is remove from `old' dllimport if it doesn't
5912 appear in `new'. dllimport behaves like extern: if a declaration is
5913 marked dllimport and a definition appears later, then the object
5914 is not dllimport'd. We also remove a `new' dllimport if the old list
5915 contains dllexport: dllexport always overrides dllimport, regardless
5916 of the order of declaration. */
5917 if (!VAR_OR_FUNCTION_DECL_P (new_tree
))
5918 delete_dllimport_p
= 0;
5919 else if (DECL_DLLIMPORT_P (new_tree
)
5920 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old
)))
5922 DECL_DLLIMPORT_P (new_tree
) = 0;
5923 warning (OPT_Wattributes
, "%q+D already declared with dllexport attribute: "
5924 "dllimport ignored", new_tree
);
5926 else if (DECL_DLLIMPORT_P (old
) && !DECL_DLLIMPORT_P (new_tree
))
5928 /* Warn about overriding a symbol that has already been used, e.g.:
5929 extern int __attribute__ ((dllimport)) foo;
5930 int* bar () {return &foo;}
5933 if (TREE_USED (old
))
5935 warning (0, "%q+D redeclared without dllimport attribute "
5936 "after being referenced with dll linkage", new_tree
);
5937 /* If we have used a variable's address with dllimport linkage,
5938 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
5939 decl may already have had TREE_CONSTANT computed.
5940 We still remove the attribute so that assembler code refers
5941 to '&foo rather than '_imp__foo'. */
5942 if (TREE_CODE (old
) == VAR_DECL
&& TREE_ADDRESSABLE (old
))
5943 DECL_DLLIMPORT_P (new_tree
) = 1;
5946 /* Let an inline definition silently override the external reference,
5947 but otherwise warn about attribute inconsistency. */
5948 else if (TREE_CODE (new_tree
) == VAR_DECL
5949 || !DECL_DECLARED_INLINE_P (new_tree
))
5950 warning (OPT_Wattributes
, "%q+D redeclared without dllimport attribute: "
5951 "previous dllimport ignored", new_tree
);
5954 delete_dllimport_p
= 0;
5956 a
= merge_attributes (DECL_ATTRIBUTES (old
), DECL_ATTRIBUTES (new_tree
));
5958 if (delete_dllimport_p
)
5959 a
= remove_attribute ("dllimport", a
);
5964 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
5965 struct attribute_spec.handler. */
5968 handle_dll_attribute (tree
* pnode
, tree name
, tree args
, int flags
,
5974 /* These attributes may apply to structure and union types being created,
5975 but otherwise should pass to the declaration involved. */
5978 if (flags
& ((int) ATTR_FLAG_DECL_NEXT
| (int) ATTR_FLAG_FUNCTION_NEXT
5979 | (int) ATTR_FLAG_ARRAY_NEXT
))
5981 *no_add_attrs
= true;
5982 return tree_cons (name
, args
, NULL_TREE
);
5984 if (TREE_CODE (node
) == RECORD_TYPE
5985 || TREE_CODE (node
) == UNION_TYPE
)
5987 node
= TYPE_NAME (node
);
5993 warning (OPT_Wattributes
, "%qE attribute ignored",
5995 *no_add_attrs
= true;
6000 if (TREE_CODE (node
) != FUNCTION_DECL
6001 && TREE_CODE (node
) != VAR_DECL
6002 && TREE_CODE (node
) != TYPE_DECL
)
6004 *no_add_attrs
= true;
6005 warning (OPT_Wattributes
, "%qE attribute ignored",
6010 if (TREE_CODE (node
) == TYPE_DECL
6011 && TREE_CODE (TREE_TYPE (node
)) != RECORD_TYPE
6012 && TREE_CODE (TREE_TYPE (node
)) != UNION_TYPE
)
6014 *no_add_attrs
= true;
6015 warning (OPT_Wattributes
, "%qE attribute ignored",
6020 is_dllimport
= is_attribute_p ("dllimport", name
);
6022 /* Report error on dllimport ambiguities seen now before they cause
6026 /* Honor any target-specific overrides. */
6027 if (!targetm
.valid_dllimport_attribute_p (node
))
6028 *no_add_attrs
= true;
6030 else if (TREE_CODE (node
) == FUNCTION_DECL
6031 && DECL_DECLARED_INLINE_P (node
))
6033 warning (OPT_Wattributes
, "inline function %q+D declared as "
6034 " dllimport: attribute ignored", node
);
6035 *no_add_attrs
= true;
6037 /* Like MS, treat definition of dllimported variables and
6038 non-inlined functions on declaration as syntax errors. */
6039 else if (TREE_CODE (node
) == FUNCTION_DECL
&& DECL_INITIAL (node
))
6041 error ("function %q+D definition is marked dllimport", node
);
6042 *no_add_attrs
= true;
6045 else if (TREE_CODE (node
) == VAR_DECL
)
6047 if (DECL_INITIAL (node
))
6049 error ("variable %q+D definition is marked dllimport",
6051 *no_add_attrs
= true;
6054 /* `extern' needn't be specified with dllimport.
6055 Specify `extern' now and hope for the best. Sigh. */
6056 DECL_EXTERNAL (node
) = 1;
6057 /* Also, implicitly give dllimport'd variables declared within
6058 a function global scope, unless declared static. */
6059 if (current_function_decl
!= NULL_TREE
&& !TREE_STATIC (node
))
6060 TREE_PUBLIC (node
) = 1;
6063 if (*no_add_attrs
== false)
6064 DECL_DLLIMPORT_P (node
) = 1;
6066 else if (TREE_CODE (node
) == FUNCTION_DECL
6067 && DECL_DECLARED_INLINE_P (node
)
6068 && flag_keep_inline_dllexport
)
6069 /* An exported function, even if inline, must be emitted. */
6070 DECL_EXTERNAL (node
) = 0;
6072 /* Report error if symbol is not accessible at global scope. */
6073 if (!TREE_PUBLIC (node
)
6074 && (TREE_CODE (node
) == VAR_DECL
6075 || TREE_CODE (node
) == FUNCTION_DECL
))
6077 error ("external linkage required for symbol %q+D because of "
6078 "%qE attribute", node
, name
);
6079 *no_add_attrs
= true;
6082 /* A dllexport'd entity must have default visibility so that other
6083 program units (shared libraries or the main executable) can see
6084 it. A dllimport'd entity must have default visibility so that
6085 the linker knows that undefined references within this program
6086 unit can be resolved by the dynamic linker. */
6089 if (DECL_VISIBILITY_SPECIFIED (node
)
6090 && DECL_VISIBILITY (node
) != VISIBILITY_DEFAULT
)
6091 error ("%qE implies default visibility, but %qD has already "
6092 "been declared with a different visibility",
6094 DECL_VISIBILITY (node
) = VISIBILITY_DEFAULT
;
6095 DECL_VISIBILITY_SPECIFIED (node
) = 1;
6101 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
6103 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
6104 of the various TYPE_QUAL values. */
6107 set_type_quals (tree type
, int type_quals
)
6109 TYPE_READONLY (type
) = (type_quals
& TYPE_QUAL_CONST
) != 0;
6110 TYPE_VOLATILE (type
) = (type_quals
& TYPE_QUAL_VOLATILE
) != 0;
6111 TYPE_RESTRICT (type
) = (type_quals
& TYPE_QUAL_RESTRICT
) != 0;
6112 TYPE_ATOMIC (type
) = (type_quals
& TYPE_QUAL_ATOMIC
) != 0;
6113 TYPE_ADDR_SPACE (type
) = DECODE_QUAL_ADDR_SPACE (type_quals
);
6116 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
6119 check_qualified_type (const_tree cand
, const_tree base
, int type_quals
)
6121 return (TYPE_QUALS (cand
) == type_quals
6122 && TYPE_NAME (cand
) == TYPE_NAME (base
)
6123 /* Apparently this is needed for Objective-C. */
6124 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
6125 /* Check alignment. */
6126 && TYPE_ALIGN (cand
) == TYPE_ALIGN (base
)
6127 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
6128 TYPE_ATTRIBUTES (base
)));
6131 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
6134 check_aligned_type (const_tree cand
, const_tree base
, unsigned int align
)
6136 return (TYPE_QUALS (cand
) == TYPE_QUALS (base
)
6137 && TYPE_NAME (cand
) == TYPE_NAME (base
)
6138 /* Apparently this is needed for Objective-C. */
6139 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
6140 /* Check alignment. */
6141 && TYPE_ALIGN (cand
) == align
6142 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
6143 TYPE_ATTRIBUTES (base
)));
6146 /* This function checks to see if TYPE matches the size one of the built-in
6147 atomic types, and returns that core atomic type. */
6150 find_atomic_core_type (tree type
)
6152 tree base_atomic_type
;
6154 /* Only handle complete types. */
6155 if (TYPE_SIZE (type
) == NULL_TREE
)
6158 HOST_WIDE_INT type_size
= tree_to_uhwi (TYPE_SIZE (type
));
6162 base_atomic_type
= atomicQI_type_node
;
6166 base_atomic_type
= atomicHI_type_node
;
6170 base_atomic_type
= atomicSI_type_node
;
6174 base_atomic_type
= atomicDI_type_node
;
6178 base_atomic_type
= atomicTI_type_node
;
6182 base_atomic_type
= NULL_TREE
;
6185 return base_atomic_type
;
6188 /* Return a version of the TYPE, qualified as indicated by the
6189 TYPE_QUALS, if one exists. If no qualified version exists yet,
6190 return NULL_TREE. */
6193 get_qualified_type (tree type
, int type_quals
)
6197 if (TYPE_QUALS (type
) == type_quals
)
6200 /* Search the chain of variants to see if there is already one there just
6201 like the one we need to have. If so, use that existing one. We must
6202 preserve the TYPE_NAME, since there is code that depends on this. */
6203 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
6204 if (check_qualified_type (t
, type
, type_quals
))
6210 /* Like get_qualified_type, but creates the type if it does not
6211 exist. This function never returns NULL_TREE. */
6214 build_qualified_type (tree type
, int type_quals
)
6218 /* See if we already have the appropriate qualified variant. */
6219 t
= get_qualified_type (type
, type_quals
);
6221 /* If not, build it. */
6224 t
= build_variant_type_copy (type
);
6225 set_type_quals (t
, type_quals
);
6227 if (((type_quals
& TYPE_QUAL_ATOMIC
) == TYPE_QUAL_ATOMIC
))
6229 /* See if this object can map to a basic atomic type. */
6230 tree atomic_type
= find_atomic_core_type (type
);
6233 /* Ensure the alignment of this type is compatible with
6234 the required alignment of the atomic type. */
6235 if (TYPE_ALIGN (atomic_type
) > TYPE_ALIGN (t
))
6236 TYPE_ALIGN (t
) = TYPE_ALIGN (atomic_type
);
6240 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
6241 /* Propagate structural equality. */
6242 SET_TYPE_STRUCTURAL_EQUALITY (t
);
6243 else if (TYPE_CANONICAL (type
) != type
)
6244 /* Build the underlying canonical type, since it is different
6246 TYPE_CANONICAL (t
) = build_qualified_type (TYPE_CANONICAL (type
),
6249 /* T is its own canonical type. */
6250 TYPE_CANONICAL (t
) = t
;
6257 /* Create a variant of type T with alignment ALIGN. */
6260 build_aligned_type (tree type
, unsigned int align
)
6264 if (TYPE_PACKED (type
)
6265 || TYPE_ALIGN (type
) == align
)
6268 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
6269 if (check_aligned_type (t
, type
, align
))
6272 t
= build_variant_type_copy (type
);
6273 TYPE_ALIGN (t
) = align
;
6278 /* Create a new distinct copy of TYPE. The new type is made its own
6279 MAIN_VARIANT. If TYPE requires structural equality checks, the
6280 resulting type requires structural equality checks; otherwise, its
6281 TYPE_CANONICAL points to itself. */
6284 build_distinct_type_copy (tree type
)
6286 tree t
= copy_node (type
);
6288 TYPE_POINTER_TO (t
) = 0;
6289 TYPE_REFERENCE_TO (t
) = 0;
6291 /* Set the canonical type either to a new equivalence class, or
6292 propagate the need for structural equality checks. */
6293 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
6294 SET_TYPE_STRUCTURAL_EQUALITY (t
);
6296 TYPE_CANONICAL (t
) = t
;
6298 /* Make it its own variant. */
6299 TYPE_MAIN_VARIANT (t
) = t
;
6300 TYPE_NEXT_VARIANT (t
) = 0;
6302 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6303 whose TREE_TYPE is not t. This can also happen in the Ada
6304 frontend when using subtypes. */
6309 /* Create a new variant of TYPE, equivalent but distinct. This is so
6310 the caller can modify it. TYPE_CANONICAL for the return type will
6311 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6312 are considered equal by the language itself (or that both types
6313 require structural equality checks). */
6316 build_variant_type_copy (tree type
)
6318 tree t
, m
= TYPE_MAIN_VARIANT (type
);
6320 t
= build_distinct_type_copy (type
);
6322 /* Since we're building a variant, assume that it is a non-semantic
6323 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6324 TYPE_CANONICAL (t
) = TYPE_CANONICAL (type
);
6326 /* Add the new type to the chain of variants of TYPE. */
6327 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (m
);
6328 TYPE_NEXT_VARIANT (m
) = t
;
6329 TYPE_MAIN_VARIANT (t
) = m
;
6334 /* Return true if the from tree in both tree maps are equal. */
6337 tree_map_base_eq (const void *va
, const void *vb
)
6339 const struct tree_map_base
*const a
= (const struct tree_map_base
*) va
,
6340 *const b
= (const struct tree_map_base
*) vb
;
6341 return (a
->from
== b
->from
);
6344 /* Hash a from tree in a tree_base_map. */
6347 tree_map_base_hash (const void *item
)
6349 return htab_hash_pointer (((const struct tree_map_base
*)item
)->from
);
6352 /* Return true if this tree map structure is marked for garbage collection
6353 purposes. We simply return true if the from tree is marked, so that this
6354 structure goes away when the from tree goes away. */
6357 tree_map_base_marked_p (const void *p
)
6359 return ggc_marked_p (((const struct tree_map_base
*) p
)->from
);
6362 /* Hash a from tree in a tree_map. */
6365 tree_map_hash (const void *item
)
6367 return (((const struct tree_map
*) item
)->hash
);
6370 /* Hash a from tree in a tree_decl_map. */
6373 tree_decl_map_hash (const void *item
)
6375 return DECL_UID (((const struct tree_decl_map
*) item
)->base
.from
);
6378 /* Return the initialization priority for DECL. */
6381 decl_init_priority_lookup (tree decl
)
6383 struct tree_priority_map
*h
;
6384 struct tree_map_base in
;
6386 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
6388 h
= (struct tree_priority_map
*) htab_find (init_priority_for_decl
, &in
);
6389 return h
? h
->init
: DEFAULT_INIT_PRIORITY
;
6392 /* Return the finalization priority for DECL. */
6395 decl_fini_priority_lookup (tree decl
)
6397 struct tree_priority_map
*h
;
6398 struct tree_map_base in
;
6400 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
6402 h
= (struct tree_priority_map
*) htab_find (init_priority_for_decl
, &in
);
6403 return h
? h
->fini
: DEFAULT_INIT_PRIORITY
;
6406 /* Return the initialization and finalization priority information for
6407 DECL. If there is no previous priority information, a freshly
6408 allocated structure is returned. */
6410 static struct tree_priority_map
*
6411 decl_priority_info (tree decl
)
6413 struct tree_priority_map in
;
6414 struct tree_priority_map
*h
;
6417 in
.base
.from
= decl
;
6418 loc
= htab_find_slot (init_priority_for_decl
, &in
, INSERT
);
6419 h
= (struct tree_priority_map
*) *loc
;
6422 h
= ggc_alloc_cleared_tree_priority_map ();
6424 h
->base
.from
= decl
;
6425 h
->init
= DEFAULT_INIT_PRIORITY
;
6426 h
->fini
= DEFAULT_INIT_PRIORITY
;
6432 /* Set the initialization priority for DECL to PRIORITY. */
6435 decl_init_priority_insert (tree decl
, priority_type priority
)
6437 struct tree_priority_map
*h
;
6439 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
6440 if (priority
== DEFAULT_INIT_PRIORITY
)
6442 h
= decl_priority_info (decl
);
6446 /* Set the finalization priority for DECL to PRIORITY. */
6449 decl_fini_priority_insert (tree decl
, priority_type priority
)
6451 struct tree_priority_map
*h
;
6453 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
6454 if (priority
== DEFAULT_INIT_PRIORITY
)
6456 h
= decl_priority_info (decl
);
6460 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6463 print_debug_expr_statistics (void)
6465 fprintf (stderr
, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6466 (long) htab_size (debug_expr_for_decl
),
6467 (long) htab_elements (debug_expr_for_decl
),
6468 htab_collisions (debug_expr_for_decl
));
6471 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6474 print_value_expr_statistics (void)
6476 fprintf (stderr
, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6477 (long) htab_size (value_expr_for_decl
),
6478 (long) htab_elements (value_expr_for_decl
),
6479 htab_collisions (value_expr_for_decl
));
6482 /* Lookup a debug expression for FROM, and return it if we find one. */
6485 decl_debug_expr_lookup (tree from
)
6487 struct tree_decl_map
*h
, in
;
6488 in
.base
.from
= from
;
6490 h
= (struct tree_decl_map
*)
6491 htab_find_with_hash (debug_expr_for_decl
, &in
, DECL_UID (from
));
6497 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6500 decl_debug_expr_insert (tree from
, tree to
)
6502 struct tree_decl_map
*h
;
6505 h
= ggc_alloc_tree_decl_map ();
6506 h
->base
.from
= from
;
6508 loc
= htab_find_slot_with_hash (debug_expr_for_decl
, h
, DECL_UID (from
),
6510 *(struct tree_decl_map
**) loc
= h
;
6513 /* Lookup a value expression for FROM, and return it if we find one. */
6516 decl_value_expr_lookup (tree from
)
6518 struct tree_decl_map
*h
, in
;
6519 in
.base
.from
= from
;
6521 h
= (struct tree_decl_map
*)
6522 htab_find_with_hash (value_expr_for_decl
, &in
, DECL_UID (from
));
6528 /* Insert a mapping FROM->TO in the value expression hashtable. */
6531 decl_value_expr_insert (tree from
, tree to
)
6533 struct tree_decl_map
*h
;
6536 h
= ggc_alloc_tree_decl_map ();
6537 h
->base
.from
= from
;
6539 loc
= htab_find_slot_with_hash (value_expr_for_decl
, h
, DECL_UID (from
),
6541 *(struct tree_decl_map
**) loc
= h
;
6544 /* Lookup a vector of debug arguments for FROM, and return it if we
6548 decl_debug_args_lookup (tree from
)
6550 struct tree_vec_map
*h
, in
;
6552 if (!DECL_HAS_DEBUG_ARGS_P (from
))
6554 gcc_checking_assert (debug_args_for_decl
!= NULL
);
6555 in
.base
.from
= from
;
6556 h
= (struct tree_vec_map
*)
6557 htab_find_with_hash (debug_args_for_decl
, &in
, DECL_UID (from
));
6563 /* Insert a mapping FROM->empty vector of debug arguments in the value
6564 expression hashtable. */
6567 decl_debug_args_insert (tree from
)
6569 struct tree_vec_map
*h
;
6572 if (DECL_HAS_DEBUG_ARGS_P (from
))
6573 return decl_debug_args_lookup (from
);
6574 if (debug_args_for_decl
== NULL
)
6575 debug_args_for_decl
= htab_create_ggc (64, tree_vec_map_hash
,
6576 tree_vec_map_eq
, 0);
6577 h
= ggc_alloc_tree_vec_map ();
6578 h
->base
.from
= from
;
6580 loc
= htab_find_slot_with_hash (debug_args_for_decl
, h
, DECL_UID (from
),
6582 *(struct tree_vec_map
**) loc
= h
;
6583 DECL_HAS_DEBUG_ARGS_P (from
) = 1;
6587 /* Hashing of types so that we don't make duplicates.
6588 The entry point is `type_hash_canon'. */
6590 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
6591 with types in the TREE_VALUE slots), by adding the hash codes
6592 of the individual types. */
6595 type_hash_list (const_tree list
, hashval_t hashcode
)
6599 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
6600 if (TREE_VALUE (tail
) != error_mark_node
)
6601 hashcode
= iterative_hash_object (TYPE_HASH (TREE_VALUE (tail
)),
6607 /* These are the Hashtable callback functions. */
6609 /* Returns true iff the types are equivalent. */
6612 type_hash_eq (const void *va
, const void *vb
)
6614 const struct type_hash
*const a
= (const struct type_hash
*) va
,
6615 *const b
= (const struct type_hash
*) vb
;
6617 /* First test the things that are the same for all types. */
6618 if (a
->hash
!= b
->hash
6619 || TREE_CODE (a
->type
) != TREE_CODE (b
->type
)
6620 || TREE_TYPE (a
->type
) != TREE_TYPE (b
->type
)
6621 || !attribute_list_equal (TYPE_ATTRIBUTES (a
->type
),
6622 TYPE_ATTRIBUTES (b
->type
))
6623 || (TREE_CODE (a
->type
) != COMPLEX_TYPE
6624 && TYPE_NAME (a
->type
) != TYPE_NAME (b
->type
)))
6627 /* Be careful about comparing arrays before and after the element type
6628 has been completed; don't compare TYPE_ALIGN unless both types are
6630 if (COMPLETE_TYPE_P (a
->type
) && COMPLETE_TYPE_P (b
->type
)
6631 && (TYPE_ALIGN (a
->type
) != TYPE_ALIGN (b
->type
)
6632 || TYPE_MODE (a
->type
) != TYPE_MODE (b
->type
)))
6635 switch (TREE_CODE (a
->type
))
6640 case REFERENCE_TYPE
:
6645 return TYPE_VECTOR_SUBPARTS (a
->type
) == TYPE_VECTOR_SUBPARTS (b
->type
);
6648 if (TYPE_VALUES (a
->type
) != TYPE_VALUES (b
->type
)
6649 && !(TYPE_VALUES (a
->type
)
6650 && TREE_CODE (TYPE_VALUES (a
->type
)) == TREE_LIST
6651 && TYPE_VALUES (b
->type
)
6652 && TREE_CODE (TYPE_VALUES (b
->type
)) == TREE_LIST
6653 && type_list_equal (TYPE_VALUES (a
->type
),
6654 TYPE_VALUES (b
->type
))))
6657 /* ... fall through ... */
6662 return ((TYPE_MAX_VALUE (a
->type
) == TYPE_MAX_VALUE (b
->type
)
6663 || tree_int_cst_equal (TYPE_MAX_VALUE (a
->type
),
6664 TYPE_MAX_VALUE (b
->type
)))
6665 && (TYPE_MIN_VALUE (a
->type
) == TYPE_MIN_VALUE (b
->type
)
6666 || tree_int_cst_equal (TYPE_MIN_VALUE (a
->type
),
6667 TYPE_MIN_VALUE (b
->type
))));
6669 case FIXED_POINT_TYPE
:
6670 return TYPE_SATURATING (a
->type
) == TYPE_SATURATING (b
->type
);
6673 return TYPE_OFFSET_BASETYPE (a
->type
) == TYPE_OFFSET_BASETYPE (b
->type
);
6676 if (TYPE_METHOD_BASETYPE (a
->type
) == TYPE_METHOD_BASETYPE (b
->type
)
6677 && (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6678 || (TYPE_ARG_TYPES (a
->type
)
6679 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6680 && TYPE_ARG_TYPES (b
->type
)
6681 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6682 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6683 TYPE_ARG_TYPES (b
->type
)))))
6687 return TYPE_DOMAIN (a
->type
) == TYPE_DOMAIN (b
->type
);
6691 case QUAL_UNION_TYPE
:
6692 return (TYPE_FIELDS (a
->type
) == TYPE_FIELDS (b
->type
)
6693 || (TYPE_FIELDS (a
->type
)
6694 && TREE_CODE (TYPE_FIELDS (a
->type
)) == TREE_LIST
6695 && TYPE_FIELDS (b
->type
)
6696 && TREE_CODE (TYPE_FIELDS (b
->type
)) == TREE_LIST
6697 && type_list_equal (TYPE_FIELDS (a
->type
),
6698 TYPE_FIELDS (b
->type
))));
6701 if (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6702 || (TYPE_ARG_TYPES (a
->type
)
6703 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6704 && TYPE_ARG_TYPES (b
->type
)
6705 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6706 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6707 TYPE_ARG_TYPES (b
->type
))))
6715 if (lang_hooks
.types
.type_hash_eq
!= NULL
)
6716 return lang_hooks
.types
.type_hash_eq (a
->type
, b
->type
);
6721 /* Return the cached hash value. */
6724 type_hash_hash (const void *item
)
6726 return ((const struct type_hash
*) item
)->hash
;
6729 /* Look in the type hash table for a type isomorphic to TYPE.
6730 If one is found, return it. Otherwise return 0. */
6733 type_hash_lookup (hashval_t hashcode
, tree type
)
6735 struct type_hash
*h
, in
;
6737 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6738 must call that routine before comparing TYPE_ALIGNs. */
6744 h
= (struct type_hash
*) htab_find_with_hash (type_hash_table
, &in
,
6751 /* Add an entry to the type-hash-table
6752 for a type TYPE whose hash code is HASHCODE. */
6755 type_hash_add (hashval_t hashcode
, tree type
)
6757 struct type_hash
*h
;
6760 h
= ggc_alloc_type_hash ();
6763 loc
= htab_find_slot_with_hash (type_hash_table
, h
, hashcode
, INSERT
);
6767 /* Given TYPE, and HASHCODE its hash code, return the canonical
6768 object for an identical type if one already exists.
6769 Otherwise, return TYPE, and record it as the canonical object.
6771 To use this function, first create a type of the sort you want.
6772 Then compute its hash code from the fields of the type that
6773 make it different from other similar types.
6774 Then call this function and use the value. */
6777 type_hash_canon (unsigned int hashcode
, tree type
)
6781 /* The hash table only contains main variants, so ensure that's what we're
6783 gcc_assert (TYPE_MAIN_VARIANT (type
) == type
);
6785 /* See if the type is in the hash table already. If so, return it.
6786 Otherwise, add the type. */
6787 t1
= type_hash_lookup (hashcode
, type
);
6790 if (GATHER_STATISTICS
)
6792 tree_code_counts
[(int) TREE_CODE (type
)]--;
6793 tree_node_counts
[(int) t_kind
]--;
6794 tree_node_sizes
[(int) t_kind
] -= sizeof (struct tree_type_non_common
);
6800 type_hash_add (hashcode
, type
);
6805 /* See if the data pointed to by the type hash table is marked. We consider
6806 it marked if the type is marked or if a debug type number or symbol
6807 table entry has been made for the type. */
6810 type_hash_marked_p (const void *p
)
6812 const_tree
const type
= ((const struct type_hash
*) p
)->type
;
6814 return ggc_marked_p (type
);
6818 print_type_hash_statistics (void)
6820 fprintf (stderr
, "Type hash: size %ld, %ld elements, %f collisions\n",
6821 (long) htab_size (type_hash_table
),
6822 (long) htab_elements (type_hash_table
),
6823 htab_collisions (type_hash_table
));
6826 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
6827 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
6828 by adding the hash codes of the individual attributes. */
6831 attribute_hash_list (const_tree list
, hashval_t hashcode
)
6835 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
6836 /* ??? Do we want to add in TREE_VALUE too? */
6837 hashcode
= iterative_hash_object
6838 (IDENTIFIER_HASH_VALUE (get_attribute_name (tail
)), hashcode
);
6842 /* Given two lists of attributes, return true if list l2 is
6843 equivalent to l1. */
6846 attribute_list_equal (const_tree l1
, const_tree l2
)
6851 return attribute_list_contained (l1
, l2
)
6852 && attribute_list_contained (l2
, l1
);
6855 /* Given two lists of attributes, return true if list L2 is
6856 completely contained within L1. */
6857 /* ??? This would be faster if attribute names were stored in a canonicalized
6858 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
6859 must be used to show these elements are equivalent (which they are). */
6860 /* ??? It's not clear that attributes with arguments will always be handled
6864 attribute_list_contained (const_tree l1
, const_tree l2
)
6868 /* First check the obvious, maybe the lists are identical. */
6872 /* Maybe the lists are similar. */
6873 for (t1
= l1
, t2
= l2
;
6875 && get_attribute_name (t1
) == get_attribute_name (t2
)
6876 && TREE_VALUE (t1
) == TREE_VALUE (t2
);
6877 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
6880 /* Maybe the lists are equal. */
6881 if (t1
== 0 && t2
== 0)
6884 for (; t2
!= 0; t2
= TREE_CHAIN (t2
))
6887 /* This CONST_CAST is okay because lookup_attribute does not
6888 modify its argument and the return value is assigned to a
6890 for (attr
= lookup_ident_attribute (get_attribute_name (t2
),
6891 CONST_CAST_TREE (l1
));
6892 attr
!= NULL_TREE
&& !attribute_value_equal (t2
, attr
);
6893 attr
= lookup_ident_attribute (get_attribute_name (t2
),
6897 if (attr
== NULL_TREE
)
6904 /* Given two lists of types
6905 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6906 return 1 if the lists contain the same types in the same order.
6907 Also, the TREE_PURPOSEs must match. */
6910 type_list_equal (const_tree l1
, const_tree l2
)
6914 for (t1
= l1
, t2
= l2
; t1
&& t2
; t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
6915 if (TREE_VALUE (t1
) != TREE_VALUE (t2
)
6916 || (TREE_PURPOSE (t1
) != TREE_PURPOSE (t2
)
6917 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1
), TREE_PURPOSE (t2
))
6918 && (TREE_TYPE (TREE_PURPOSE (t1
))
6919 == TREE_TYPE (TREE_PURPOSE (t2
))))))
6925 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6926 given by TYPE. If the argument list accepts variable arguments,
6927 then this function counts only the ordinary arguments. */
6930 type_num_arguments (const_tree type
)
6935 for (t
= TYPE_ARG_TYPES (type
); t
; t
= TREE_CHAIN (t
))
6936 /* If the function does not take a variable number of arguments,
6937 the last element in the list will have type `void'. */
6938 if (VOID_TYPE_P (TREE_VALUE (t
)))
6946 /* Nonzero if integer constants T1 and T2
6947 represent the same constant value. */
6950 tree_int_cst_equal (const_tree t1
, const_tree t2
)
6955 if (t1
== 0 || t2
== 0)
6958 if (TREE_CODE (t1
) == INTEGER_CST
6959 && TREE_CODE (t2
) == INTEGER_CST
6960 && TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
6961 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
))
6967 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
6968 The precise way of comparison depends on their data type. */
6971 tree_int_cst_lt (const_tree t1
, const_tree t2
)
6976 if (TYPE_UNSIGNED (TREE_TYPE (t1
)) != TYPE_UNSIGNED (TREE_TYPE (t2
)))
6978 int t1_sgn
= tree_int_cst_sgn (t1
);
6979 int t2_sgn
= tree_int_cst_sgn (t2
);
6981 if (t1_sgn
< t2_sgn
)
6983 else if (t1_sgn
> t2_sgn
)
6985 /* Otherwise, both are non-negative, so we compare them as
6986 unsigned just in case one of them would overflow a signed
6989 else if (!TYPE_UNSIGNED (TREE_TYPE (t1
)))
6990 return INT_CST_LT (t1
, t2
);
6992 return INT_CST_LT_UNSIGNED (t1
, t2
);
6995 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
6998 tree_int_cst_compare (const_tree t1
, const_tree t2
)
7000 if (tree_int_cst_lt (t1
, t2
))
7002 else if (tree_int_cst_lt (t2
, t1
))
7008 /* Return true if T is an INTEGER_CST whose numerical value (extended
7009 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
7012 tree_fits_shwi_p (const_tree t
)
7014 return (t
!= NULL_TREE
7015 && TREE_CODE (t
) == INTEGER_CST
7016 && ((TREE_INT_CST_HIGH (t
) == 0
7017 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) >= 0)
7018 || (TREE_INT_CST_HIGH (t
) == -1
7019 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0
7020 && !TYPE_UNSIGNED (TREE_TYPE (t
)))));
7023 /* Return true if T is an INTEGER_CST whose numerical value (extended
7024 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
7027 tree_fits_uhwi_p (const_tree t
)
7029 return (t
!= NULL_TREE
7030 && TREE_CODE (t
) == INTEGER_CST
7031 && TREE_INT_CST_HIGH (t
) == 0);
7034 /* T is an INTEGER_CST whose numerical value (extended according to
7035 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
7039 tree_to_shwi (const_tree t
)
7041 gcc_assert (tree_fits_shwi_p (t
));
7042 return TREE_INT_CST_LOW (t
);
7045 /* T is an INTEGER_CST whose numerical value (extended according to
7046 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
7049 unsigned HOST_WIDE_INT
7050 tree_to_uhwi (const_tree t
)
7052 gcc_assert (tree_fits_uhwi_p (t
));
7053 return TREE_INT_CST_LOW (t
);
7056 /* Return the most significant (sign) bit of T. */
7059 tree_int_cst_sign_bit (const_tree t
)
7061 unsigned bitno
= TYPE_PRECISION (TREE_TYPE (t
)) - 1;
7062 unsigned HOST_WIDE_INT w
;
7064 if (bitno
< HOST_BITS_PER_WIDE_INT
)
7065 w
= TREE_INT_CST_LOW (t
);
7068 w
= TREE_INT_CST_HIGH (t
);
7069 bitno
-= HOST_BITS_PER_WIDE_INT
;
7072 return (w
>> bitno
) & 1;
7075 /* Return an indication of the sign of the integer constant T.
7076 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
7077 Note that -1 will never be returned if T's type is unsigned. */
7080 tree_int_cst_sgn (const_tree t
)
7082 if (TREE_INT_CST_LOW (t
) == 0 && TREE_INT_CST_HIGH (t
) == 0)
7084 else if (TYPE_UNSIGNED (TREE_TYPE (t
)))
7086 else if (TREE_INT_CST_HIGH (t
) < 0)
7092 /* Return the minimum number of bits needed to represent VALUE in a
7093 signed or unsigned type, UNSIGNEDP says which. */
7096 tree_int_cst_min_precision (tree value
, bool unsignedp
)
7098 /* If the value is negative, compute its negative minus 1. The latter
7099 adjustment is because the absolute value of the largest negative value
7100 is one larger than the largest positive value. This is equivalent to
7101 a bit-wise negation, so use that operation instead. */
7103 if (tree_int_cst_sgn (value
) < 0)
7104 value
= fold_build1 (BIT_NOT_EXPR
, TREE_TYPE (value
), value
);
7106 /* Return the number of bits needed, taking into account the fact
7107 that we need one more bit for a signed than unsigned type.
7108 If value is 0 or -1, the minimum precision is 1 no matter
7109 whether unsignedp is true or false. */
7111 if (integer_zerop (value
))
7114 return tree_floor_log2 (value
) + 1 + !unsignedp
;
7117 /* Return truthvalue of whether T1 is the same tree structure as T2.
7118 Return 1 if they are the same.
7119 Return 0 if they are understandably different.
7120 Return -1 if either contains tree structure not understood by
7124 simple_cst_equal (const_tree t1
, const_tree t2
)
7126 enum tree_code code1
, code2
;
7132 if (t1
== 0 || t2
== 0)
7135 code1
= TREE_CODE (t1
);
7136 code2
= TREE_CODE (t2
);
7138 if (CONVERT_EXPR_CODE_P (code1
) || code1
== NON_LVALUE_EXPR
)
7140 if (CONVERT_EXPR_CODE_P (code2
)
7141 || code2
== NON_LVALUE_EXPR
)
7142 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7144 return simple_cst_equal (TREE_OPERAND (t1
, 0), t2
);
7147 else if (CONVERT_EXPR_CODE_P (code2
)
7148 || code2
== NON_LVALUE_EXPR
)
7149 return simple_cst_equal (t1
, TREE_OPERAND (t2
, 0));
7157 return (TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
7158 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
));
7161 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
7164 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
7167 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
7168 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
7169 TREE_STRING_LENGTH (t1
)));
7173 unsigned HOST_WIDE_INT idx
;
7174 vec
<constructor_elt
, va_gc
> *v1
= CONSTRUCTOR_ELTS (t1
);
7175 vec
<constructor_elt
, va_gc
> *v2
= CONSTRUCTOR_ELTS (t2
);
7177 if (vec_safe_length (v1
) != vec_safe_length (v2
))
7180 for (idx
= 0; idx
< vec_safe_length (v1
); ++idx
)
7181 /* ??? Should we handle also fields here? */
7182 if (!simple_cst_equal ((*v1
)[idx
].value
, (*v2
)[idx
].value
))
7188 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7191 cmp
= simple_cst_equal (CALL_EXPR_FN (t1
), CALL_EXPR_FN (t2
));
7194 if (call_expr_nargs (t1
) != call_expr_nargs (t2
))
7197 const_tree arg1
, arg2
;
7198 const_call_expr_arg_iterator iter1
, iter2
;
7199 for (arg1
= first_const_call_expr_arg (t1
, &iter1
),
7200 arg2
= first_const_call_expr_arg (t2
, &iter2
);
7202 arg1
= next_const_call_expr_arg (&iter1
),
7203 arg2
= next_const_call_expr_arg (&iter2
))
7205 cmp
= simple_cst_equal (arg1
, arg2
);
7209 return arg1
== arg2
;
7213 /* Special case: if either target is an unallocated VAR_DECL,
7214 it means that it's going to be unified with whatever the
7215 TARGET_EXPR is really supposed to initialize, so treat it
7216 as being equivalent to anything. */
7217 if ((TREE_CODE (TREE_OPERAND (t1
, 0)) == VAR_DECL
7218 && DECL_NAME (TREE_OPERAND (t1
, 0)) == NULL_TREE
7219 && !DECL_RTL_SET_P (TREE_OPERAND (t1
, 0)))
7220 || (TREE_CODE (TREE_OPERAND (t2
, 0)) == VAR_DECL
7221 && DECL_NAME (TREE_OPERAND (t2
, 0)) == NULL_TREE
7222 && !DECL_RTL_SET_P (TREE_OPERAND (t2
, 0))))
7225 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7230 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
7232 case WITH_CLEANUP_EXPR
:
7233 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7237 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t1
, 1));
7240 if (TREE_OPERAND (t1
, 1) == TREE_OPERAND (t2
, 1))
7241 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7255 /* This general rule works for most tree codes. All exceptions should be
7256 handled above. If this is a language-specific tree code, we can't
7257 trust what might be in the operand, so say we don't know
7259 if ((int) code1
>= (int) LAST_AND_UNUSED_TREE_CODE
)
7262 switch (TREE_CODE_CLASS (code1
))
7266 case tcc_comparison
:
7267 case tcc_expression
:
7271 for (i
= 0; i
< TREE_CODE_LENGTH (code1
); i
++)
7273 cmp
= simple_cst_equal (TREE_OPERAND (t1
, i
), TREE_OPERAND (t2
, i
));
7285 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7286 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7287 than U, respectively. */
7290 compare_tree_int (const_tree t
, unsigned HOST_WIDE_INT u
)
7292 if (tree_int_cst_sgn (t
) < 0)
7294 else if (TREE_INT_CST_HIGH (t
) != 0)
7296 else if (TREE_INT_CST_LOW (t
) == u
)
7298 else if (TREE_INT_CST_LOW (t
) < u
)
7304 /* Return true if SIZE represents a constant size that is in bounds of
7305 what the middle-end and the backend accepts (covering not more than
7306 half of the address-space). */
7309 valid_constant_size_p (const_tree size
)
7311 if (! tree_fits_uhwi_p (size
)
7312 || TREE_OVERFLOW (size
)
7313 || tree_int_cst_sign_bit (size
) != 0)
7318 /* Return the precision of the type, or for a complex or vector type the
7319 precision of the type of its elements. */
7322 element_precision (const_tree type
)
7324 enum tree_code code
= TREE_CODE (type
);
7325 if (code
== COMPLEX_TYPE
|| code
== VECTOR_TYPE
)
7326 type
= TREE_TYPE (type
);
7328 return TYPE_PRECISION (type
);
7331 /* Return true if CODE represents an associative tree code. Otherwise
7334 associative_tree_code (enum tree_code code
)
7353 /* Return true if CODE represents a commutative tree code. Otherwise
7356 commutative_tree_code (enum tree_code code
)
7362 case MULT_HIGHPART_EXPR
:
7370 case UNORDERED_EXPR
:
7374 case TRUTH_AND_EXPR
:
7375 case TRUTH_XOR_EXPR
:
7377 case WIDEN_MULT_EXPR
:
7378 case VEC_WIDEN_MULT_HI_EXPR
:
7379 case VEC_WIDEN_MULT_LO_EXPR
:
7380 case VEC_WIDEN_MULT_EVEN_EXPR
:
7381 case VEC_WIDEN_MULT_ODD_EXPR
:
7390 /* Return true if CODE represents a ternary tree code for which the
7391 first two operands are commutative. Otherwise return false. */
7393 commutative_ternary_tree_code (enum tree_code code
)
7397 case WIDEN_MULT_PLUS_EXPR
:
7398 case WIDEN_MULT_MINUS_EXPR
:
7407 /* Generate a hash value for an expression. This can be used iteratively
7408 by passing a previous result as the VAL argument.
7410 This function is intended to produce the same hash for expressions which
7411 would compare equal using operand_equal_p. */
7414 iterative_hash_expr (const_tree t
, hashval_t val
)
7417 enum tree_code code
;
7421 return iterative_hash_hashval_t (0, val
);
7423 code
= TREE_CODE (t
);
7427 /* Alas, constants aren't shared, so we can't rely on pointer
7430 val
= iterative_hash_host_wide_int (TREE_INT_CST_LOW (t
), val
);
7431 return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t
), val
);
7434 unsigned int val2
= real_hash (TREE_REAL_CST_PTR (t
));
7436 return iterative_hash_hashval_t (val2
, val
);
7440 unsigned int val2
= fixed_hash (TREE_FIXED_CST_PTR (t
));
7442 return iterative_hash_hashval_t (val2
, val
);
7445 return iterative_hash (TREE_STRING_POINTER (t
),
7446 TREE_STRING_LENGTH (t
), val
);
7448 val
= iterative_hash_expr (TREE_REALPART (t
), val
);
7449 return iterative_hash_expr (TREE_IMAGPART (t
), val
);
7453 for (i
= 0; i
< VECTOR_CST_NELTS (t
); ++i
)
7454 val
= iterative_hash_expr (VECTOR_CST_ELT (t
, i
), val
);
7458 /* We can just compare by pointer. */
7459 return iterative_hash_host_wide_int (SSA_NAME_VERSION (t
), val
);
7460 case PLACEHOLDER_EXPR
:
7461 /* The node itself doesn't matter. */
7464 /* A list of expressions, for a CALL_EXPR or as the elements of a
7466 for (; t
; t
= TREE_CHAIN (t
))
7467 val
= iterative_hash_expr (TREE_VALUE (t
), val
);
7471 unsigned HOST_WIDE_INT idx
;
7473 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t
), idx
, field
, value
)
7475 val
= iterative_hash_expr (field
, val
);
7476 val
= iterative_hash_expr (value
, val
);
7481 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7482 Otherwise nodes that compare equal according to operand_equal_p might
7483 get different hash codes. However, don't do this for machine specific
7484 or front end builtins, since the function code is overloaded in those
7486 if (DECL_BUILT_IN_CLASS (t
) == BUILT_IN_NORMAL
7487 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t
)))
7489 t
= builtin_decl_explicit (DECL_FUNCTION_CODE (t
));
7490 code
= TREE_CODE (t
);
7494 tclass
= TREE_CODE_CLASS (code
);
7496 if (tclass
== tcc_declaration
)
7498 /* DECL's have a unique ID */
7499 val
= iterative_hash_host_wide_int (DECL_UID (t
), val
);
7503 gcc_assert (IS_EXPR_CODE_CLASS (tclass
));
7505 val
= iterative_hash_object (code
, val
);
7507 /* Don't hash the type, that can lead to having nodes which
7508 compare equal according to operand_equal_p, but which
7509 have different hash codes. */
7510 if (CONVERT_EXPR_CODE_P (code
)
7511 || code
== NON_LVALUE_EXPR
)
7513 /* Make sure to include signness in the hash computation. */
7514 val
+= TYPE_UNSIGNED (TREE_TYPE (t
));
7515 val
= iterative_hash_expr (TREE_OPERAND (t
, 0), val
);
7518 else if (commutative_tree_code (code
))
7520 /* It's a commutative expression. We want to hash it the same
7521 however it appears. We do this by first hashing both operands
7522 and then rehashing based on the order of their independent
7524 hashval_t one
= iterative_hash_expr (TREE_OPERAND (t
, 0), 0);
7525 hashval_t two
= iterative_hash_expr (TREE_OPERAND (t
, 1), 0);
7529 t
= one
, one
= two
, two
= t
;
7531 val
= iterative_hash_hashval_t (one
, val
);
7532 val
= iterative_hash_hashval_t (two
, val
);
7535 for (i
= TREE_OPERAND_LENGTH (t
) - 1; i
>= 0; --i
)
7536 val
= iterative_hash_expr (TREE_OPERAND (t
, i
), val
);
7542 /* Constructors for pointer, array and function types.
7543 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7544 constructed by language-dependent code, not here.) */
7546 /* Construct, lay out and return the type of pointers to TO_TYPE with
7547 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7548 reference all of memory. If such a type has already been
7549 constructed, reuse it. */
7552 build_pointer_type_for_mode (tree to_type
, enum machine_mode mode
,
7557 if (to_type
== error_mark_node
)
7558 return error_mark_node
;
7560 /* If the pointed-to type has the may_alias attribute set, force
7561 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7562 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7563 can_alias_all
= true;
7565 /* In some cases, languages will have things that aren't a POINTER_TYPE
7566 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7567 In that case, return that type without regard to the rest of our
7570 ??? This is a kludge, but consistent with the way this function has
7571 always operated and there doesn't seem to be a good way to avoid this
7573 if (TYPE_POINTER_TO (to_type
) != 0
7574 && TREE_CODE (TYPE_POINTER_TO (to_type
)) != POINTER_TYPE
)
7575 return TYPE_POINTER_TO (to_type
);
7577 /* First, if we already have a type for pointers to TO_TYPE and it's
7578 the proper mode, use it. */
7579 for (t
= TYPE_POINTER_TO (to_type
); t
; t
= TYPE_NEXT_PTR_TO (t
))
7580 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7583 t
= make_node (POINTER_TYPE
);
7585 TREE_TYPE (t
) = to_type
;
7586 SET_TYPE_MODE (t
, mode
);
7587 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7588 TYPE_NEXT_PTR_TO (t
) = TYPE_POINTER_TO (to_type
);
7589 TYPE_POINTER_TO (to_type
) = t
;
7591 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
7592 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7593 else if (TYPE_CANONICAL (to_type
) != to_type
)
7595 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type
),
7596 mode
, can_alias_all
);
7598 /* Lay out the type. This function has many callers that are concerned
7599 with expression-construction, and this simplifies them all. */
7605 /* By default build pointers in ptr_mode. */
7608 build_pointer_type (tree to_type
)
7610 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7611 : TYPE_ADDR_SPACE (to_type
);
7612 enum machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7613 return build_pointer_type_for_mode (to_type
, pointer_mode
, false);
7616 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7619 build_reference_type_for_mode (tree to_type
, enum machine_mode mode
,
7624 if (to_type
== error_mark_node
)
7625 return error_mark_node
;
7627 /* If the pointed-to type has the may_alias attribute set, force
7628 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7629 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7630 can_alias_all
= true;
7632 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7633 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7634 In that case, return that type without regard to the rest of our
7637 ??? This is a kludge, but consistent with the way this function has
7638 always operated and there doesn't seem to be a good way to avoid this
7640 if (TYPE_REFERENCE_TO (to_type
) != 0
7641 && TREE_CODE (TYPE_REFERENCE_TO (to_type
)) != REFERENCE_TYPE
)
7642 return TYPE_REFERENCE_TO (to_type
);
7644 /* First, if we already have a type for pointers to TO_TYPE and it's
7645 the proper mode, use it. */
7646 for (t
= TYPE_REFERENCE_TO (to_type
); t
; t
= TYPE_NEXT_REF_TO (t
))
7647 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7650 t
= make_node (REFERENCE_TYPE
);
7652 TREE_TYPE (t
) = to_type
;
7653 SET_TYPE_MODE (t
, mode
);
7654 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7655 TYPE_NEXT_REF_TO (t
) = TYPE_REFERENCE_TO (to_type
);
7656 TYPE_REFERENCE_TO (to_type
) = t
;
7658 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
7659 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7660 else if (TYPE_CANONICAL (to_type
) != to_type
)
7662 = build_reference_type_for_mode (TYPE_CANONICAL (to_type
),
7663 mode
, can_alias_all
);
7671 /* Build the node for the type of references-to-TO_TYPE by default
7675 build_reference_type (tree to_type
)
7677 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7678 : TYPE_ADDR_SPACE (to_type
);
7679 enum machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7680 return build_reference_type_for_mode (to_type
, pointer_mode
, false);
7683 #define MAX_INT_CACHED_PREC \
7684 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7685 static GTY(()) tree nonstandard_integer_type_cache
[2 * MAX_INT_CACHED_PREC
+ 2];
7687 /* Builds a signed or unsigned integer type of precision PRECISION.
7688 Used for C bitfields whose precision does not match that of
7689 built-in target types. */
7691 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision
,
7697 unsignedp
= MAX_INT_CACHED_PREC
+ 1;
7699 if (precision
<= MAX_INT_CACHED_PREC
)
7701 itype
= nonstandard_integer_type_cache
[precision
+ unsignedp
];
7706 itype
= make_node (INTEGER_TYPE
);
7707 TYPE_PRECISION (itype
) = precision
;
7710 fixup_unsigned_type (itype
);
7712 fixup_signed_type (itype
);
7715 if (tree_fits_uhwi_p (TYPE_MAX_VALUE (itype
)))
7716 ret
= type_hash_canon (tree_to_uhwi (TYPE_MAX_VALUE (itype
)), itype
);
7717 if (precision
<= MAX_INT_CACHED_PREC
)
7718 nonstandard_integer_type_cache
[precision
+ unsignedp
] = ret
;
7723 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7724 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7725 is true, reuse such a type that has already been constructed. */
7728 build_range_type_1 (tree type
, tree lowval
, tree highval
, bool shared
)
7730 tree itype
= make_node (INTEGER_TYPE
);
7731 hashval_t hashcode
= 0;
7733 TREE_TYPE (itype
) = type
;
7735 TYPE_MIN_VALUE (itype
) = fold_convert (type
, lowval
);
7736 TYPE_MAX_VALUE (itype
) = highval
? fold_convert (type
, highval
) : NULL
;
7738 TYPE_PRECISION (itype
) = TYPE_PRECISION (type
);
7739 SET_TYPE_MODE (itype
, TYPE_MODE (type
));
7740 TYPE_SIZE (itype
) = TYPE_SIZE (type
);
7741 TYPE_SIZE_UNIT (itype
) = TYPE_SIZE_UNIT (type
);
7742 TYPE_ALIGN (itype
) = TYPE_ALIGN (type
);
7743 TYPE_USER_ALIGN (itype
) = TYPE_USER_ALIGN (type
);
7748 if ((TYPE_MIN_VALUE (itype
)
7749 && TREE_CODE (TYPE_MIN_VALUE (itype
)) != INTEGER_CST
)
7750 || (TYPE_MAX_VALUE (itype
)
7751 && TREE_CODE (TYPE_MAX_VALUE (itype
)) != INTEGER_CST
))
7753 /* Since we cannot reliably merge this type, we need to compare it using
7754 structural equality checks. */
7755 SET_TYPE_STRUCTURAL_EQUALITY (itype
);
7759 hashcode
= iterative_hash_expr (TYPE_MIN_VALUE (itype
), hashcode
);
7760 hashcode
= iterative_hash_expr (TYPE_MAX_VALUE (itype
), hashcode
);
7761 hashcode
= iterative_hash_hashval_t (TYPE_HASH (type
), hashcode
);
7762 itype
= type_hash_canon (hashcode
, itype
);
7767 /* Wrapper around build_range_type_1 with SHARED set to true. */
7770 build_range_type (tree type
, tree lowval
, tree highval
)
7772 return build_range_type_1 (type
, lowval
, highval
, true);
7775 /* Wrapper around build_range_type_1 with SHARED set to false. */
7778 build_nonshared_range_type (tree type
, tree lowval
, tree highval
)
7780 return build_range_type_1 (type
, lowval
, highval
, false);
7783 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7784 MAXVAL should be the maximum value in the domain
7785 (one less than the length of the array).
7787 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7788 We don't enforce this limit, that is up to caller (e.g. language front end).
7789 The limit exists because the result is a signed type and we don't handle
7790 sizes that use more than one HOST_WIDE_INT. */
7793 build_index_type (tree maxval
)
7795 return build_range_type (sizetype
, size_zero_node
, maxval
);
7798 /* Return true if the debug information for TYPE, a subtype, should be emitted
7799 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7800 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7801 debug info and doesn't reflect the source code. */
7804 subrange_type_for_debug_p (const_tree type
, tree
*lowval
, tree
*highval
)
7806 tree base_type
= TREE_TYPE (type
), low
, high
;
7808 /* Subrange types have a base type which is an integral type. */
7809 if (!INTEGRAL_TYPE_P (base_type
))
7812 /* Get the real bounds of the subtype. */
7813 if (lang_hooks
.types
.get_subrange_bounds
)
7814 lang_hooks
.types
.get_subrange_bounds (type
, &low
, &high
);
7817 low
= TYPE_MIN_VALUE (type
);
7818 high
= TYPE_MAX_VALUE (type
);
7821 /* If the type and its base type have the same representation and the same
7822 name, then the type is not a subrange but a copy of the base type. */
7823 if ((TREE_CODE (base_type
) == INTEGER_TYPE
7824 || TREE_CODE (base_type
) == BOOLEAN_TYPE
)
7825 && int_size_in_bytes (type
) == int_size_in_bytes (base_type
)
7826 && tree_int_cst_equal (low
, TYPE_MIN_VALUE (base_type
))
7827 && tree_int_cst_equal (high
, TYPE_MAX_VALUE (base_type
)))
7829 tree type_name
= TYPE_NAME (type
);
7830 tree base_type_name
= TYPE_NAME (base_type
);
7832 if (type_name
&& TREE_CODE (type_name
) == TYPE_DECL
)
7833 type_name
= DECL_NAME (type_name
);
7835 if (base_type_name
&& TREE_CODE (base_type_name
) == TYPE_DECL
)
7836 base_type_name
= DECL_NAME (base_type_name
);
7838 if (type_name
== base_type_name
)
7849 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7850 and number of elements specified by the range of values of INDEX_TYPE.
7851 If SHARED is true, reuse such a type that has already been constructed. */
7854 build_array_type_1 (tree elt_type
, tree index_type
, bool shared
)
7858 if (TREE_CODE (elt_type
) == FUNCTION_TYPE
)
7860 error ("arrays of functions are not meaningful");
7861 elt_type
= integer_type_node
;
7864 t
= make_node (ARRAY_TYPE
);
7865 TREE_TYPE (t
) = elt_type
;
7866 TYPE_DOMAIN (t
) = index_type
;
7867 TYPE_ADDR_SPACE (t
) = TYPE_ADDR_SPACE (elt_type
);
7870 /* If the element type is incomplete at this point we get marked for
7871 structural equality. Do not record these types in the canonical
7873 if (TYPE_STRUCTURAL_EQUALITY_P (t
))
7878 hashval_t hashcode
= iterative_hash_object (TYPE_HASH (elt_type
), 0);
7880 hashcode
= iterative_hash_object (TYPE_HASH (index_type
), hashcode
);
7881 t
= type_hash_canon (hashcode
, t
);
7884 if (TYPE_CANONICAL (t
) == t
)
7886 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type
)
7887 || (index_type
&& TYPE_STRUCTURAL_EQUALITY_P (index_type
)))
7888 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7889 else if (TYPE_CANONICAL (elt_type
) != elt_type
7890 || (index_type
&& TYPE_CANONICAL (index_type
) != index_type
))
7892 = build_array_type_1 (TYPE_CANONICAL (elt_type
),
7894 ? TYPE_CANONICAL (index_type
) : NULL_TREE
,
7901 /* Wrapper around build_array_type_1 with SHARED set to true. */
7904 build_array_type (tree elt_type
, tree index_type
)
7906 return build_array_type_1 (elt_type
, index_type
, true);
7909 /* Wrapper around build_array_type_1 with SHARED set to false. */
7912 build_nonshared_array_type (tree elt_type
, tree index_type
)
7914 return build_array_type_1 (elt_type
, index_type
, false);
7917 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7921 build_array_type_nelts (tree elt_type
, unsigned HOST_WIDE_INT nelts
)
7923 return build_array_type (elt_type
, build_index_type (size_int (nelts
- 1)));
7926 /* Recursively examines the array elements of TYPE, until a non-array
7927 element type is found. */
7930 strip_array_types (tree type
)
7932 while (TREE_CODE (type
) == ARRAY_TYPE
)
7933 type
= TREE_TYPE (type
);
7938 /* Computes the canonical argument types from the argument type list
7941 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7942 on entry to this function, or if any of the ARGTYPES are
7945 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7946 true on entry to this function, or if any of the ARGTYPES are
7949 Returns a canonical argument list, which may be ARGTYPES when the
7950 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7951 true) or would not differ from ARGTYPES. */
7954 maybe_canonicalize_argtypes (tree argtypes
,
7955 bool *any_structural_p
,
7956 bool *any_noncanonical_p
)
7959 bool any_noncanonical_argtypes_p
= false;
7961 for (arg
= argtypes
; arg
&& !(*any_structural_p
); arg
= TREE_CHAIN (arg
))
7963 if (!TREE_VALUE (arg
) || TREE_VALUE (arg
) == error_mark_node
)
7964 /* Fail gracefully by stating that the type is structural. */
7965 *any_structural_p
= true;
7966 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg
)))
7967 *any_structural_p
= true;
7968 else if (TYPE_CANONICAL (TREE_VALUE (arg
)) != TREE_VALUE (arg
)
7969 || TREE_PURPOSE (arg
))
7970 /* If the argument has a default argument, we consider it
7971 non-canonical even though the type itself is canonical.
7972 That way, different variants of function and method types
7973 with default arguments will all point to the variant with
7974 no defaults as their canonical type. */
7975 any_noncanonical_argtypes_p
= true;
7978 if (*any_structural_p
)
7981 if (any_noncanonical_argtypes_p
)
7983 /* Build the canonical list of argument types. */
7984 tree canon_argtypes
= NULL_TREE
;
7985 bool is_void
= false;
7987 for (arg
= argtypes
; arg
; arg
= TREE_CHAIN (arg
))
7989 if (arg
== void_list_node
)
7992 canon_argtypes
= tree_cons (NULL_TREE
,
7993 TYPE_CANONICAL (TREE_VALUE (arg
)),
7997 canon_argtypes
= nreverse (canon_argtypes
);
7999 canon_argtypes
= chainon (canon_argtypes
, void_list_node
);
8001 /* There is a non-canonical type. */
8002 *any_noncanonical_p
= true;
8003 return canon_argtypes
;
8006 /* The canonical argument types are the same as ARGTYPES. */
8010 /* Construct, lay out and return
8011 the type of functions returning type VALUE_TYPE
8012 given arguments of types ARG_TYPES.
8013 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8014 are data type nodes for the arguments of the function.
8015 If such a type has already been constructed, reuse it. */
8018 build_function_type (tree value_type
, tree arg_types
)
8021 hashval_t hashcode
= 0;
8022 bool any_structural_p
, any_noncanonical_p
;
8023 tree canon_argtypes
;
8025 if (TREE_CODE (value_type
) == FUNCTION_TYPE
)
8027 error ("function return type cannot be function");
8028 value_type
= integer_type_node
;
8031 /* Make a node of the sort we want. */
8032 t
= make_node (FUNCTION_TYPE
);
8033 TREE_TYPE (t
) = value_type
;
8034 TYPE_ARG_TYPES (t
) = arg_types
;
8036 /* If we already have such a type, use the old one. */
8037 hashcode
= iterative_hash_object (TYPE_HASH (value_type
), hashcode
);
8038 hashcode
= type_hash_list (arg_types
, hashcode
);
8039 t
= type_hash_canon (hashcode
, t
);
8041 /* Set up the canonical type. */
8042 any_structural_p
= TYPE_STRUCTURAL_EQUALITY_P (value_type
);
8043 any_noncanonical_p
= TYPE_CANONICAL (value_type
) != value_type
;
8044 canon_argtypes
= maybe_canonicalize_argtypes (arg_types
,
8046 &any_noncanonical_p
);
8047 if (any_structural_p
)
8048 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8049 else if (any_noncanonical_p
)
8050 TYPE_CANONICAL (t
) = build_function_type (TYPE_CANONICAL (value_type
),
8053 if (!COMPLETE_TYPE_P (t
))
8058 /* Build a function type. The RETURN_TYPE is the type returned by the
8059 function. If VAARGS is set, no void_type_node is appended to the
8060 the list. ARGP must be always be terminated be a NULL_TREE. */
8063 build_function_type_list_1 (bool vaargs
, tree return_type
, va_list argp
)
8067 t
= va_arg (argp
, tree
);
8068 for (args
= NULL_TREE
; t
!= NULL_TREE
; t
= va_arg (argp
, tree
))
8069 args
= tree_cons (NULL_TREE
, t
, args
);
8074 if (args
!= NULL_TREE
)
8075 args
= nreverse (args
);
8076 gcc_assert (last
!= void_list_node
);
8078 else if (args
== NULL_TREE
)
8079 args
= void_list_node
;
8083 args
= nreverse (args
);
8084 TREE_CHAIN (last
) = void_list_node
;
8086 args
= build_function_type (return_type
, args
);
8091 /* Build a function type. The RETURN_TYPE is the type returned by the
8092 function. If additional arguments are provided, they are
8093 additional argument types. The list of argument types must always
8094 be terminated by NULL_TREE. */
8097 build_function_type_list (tree return_type
, ...)
8102 va_start (p
, return_type
);
8103 args
= build_function_type_list_1 (false, return_type
, p
);
8108 /* Build a variable argument function type. The RETURN_TYPE is the
8109 type returned by the function. If additional arguments are provided,
8110 they are additional argument types. The list of argument types must
8111 always be terminated by NULL_TREE. */
8114 build_varargs_function_type_list (tree return_type
, ...)
8119 va_start (p
, return_type
);
8120 args
= build_function_type_list_1 (true, return_type
, p
);
8126 /* Build a function type. RETURN_TYPE is the type returned by the
8127 function; VAARGS indicates whether the function takes varargs. The
8128 function takes N named arguments, the types of which are provided in
8132 build_function_type_array_1 (bool vaargs
, tree return_type
, int n
,
8136 tree t
= vaargs
? NULL_TREE
: void_list_node
;
8138 for (i
= n
- 1; i
>= 0; i
--)
8139 t
= tree_cons (NULL_TREE
, arg_types
[i
], t
);
8141 return build_function_type (return_type
, t
);
8144 /* Build a function type. RETURN_TYPE is the type returned by the
8145 function. The function takes N named arguments, the types of which
8146 are provided in ARG_TYPES. */
8149 build_function_type_array (tree return_type
, int n
, tree
*arg_types
)
8151 return build_function_type_array_1 (false, return_type
, n
, arg_types
);
8154 /* Build a variable argument function type. RETURN_TYPE is the type
8155 returned by the function. The function takes N named arguments, the
8156 types of which are provided in ARG_TYPES. */
8159 build_varargs_function_type_array (tree return_type
, int n
, tree
*arg_types
)
8161 return build_function_type_array_1 (true, return_type
, n
, arg_types
);
8164 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8165 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8166 for the method. An implicit additional parameter (of type
8167 pointer-to-BASETYPE) is added to the ARGTYPES. */
8170 build_method_type_directly (tree basetype
,
8177 bool any_structural_p
, any_noncanonical_p
;
8178 tree canon_argtypes
;
8180 /* Make a node of the sort we want. */
8181 t
= make_node (METHOD_TYPE
);
8183 TYPE_METHOD_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
8184 TREE_TYPE (t
) = rettype
;
8185 ptype
= build_pointer_type (basetype
);
8187 /* The actual arglist for this function includes a "hidden" argument
8188 which is "this". Put it into the list of argument types. */
8189 argtypes
= tree_cons (NULL_TREE
, ptype
, argtypes
);
8190 TYPE_ARG_TYPES (t
) = argtypes
;
8192 /* If we already have such a type, use the old one. */
8193 hashcode
= iterative_hash_object (TYPE_HASH (basetype
), hashcode
);
8194 hashcode
= iterative_hash_object (TYPE_HASH (rettype
), hashcode
);
8195 hashcode
= type_hash_list (argtypes
, hashcode
);
8196 t
= type_hash_canon (hashcode
, t
);
8198 /* Set up the canonical type. */
8200 = (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
8201 || TYPE_STRUCTURAL_EQUALITY_P (rettype
));
8203 = (TYPE_CANONICAL (basetype
) != basetype
8204 || TYPE_CANONICAL (rettype
) != rettype
);
8205 canon_argtypes
= maybe_canonicalize_argtypes (TREE_CHAIN (argtypes
),
8207 &any_noncanonical_p
);
8208 if (any_structural_p
)
8209 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8210 else if (any_noncanonical_p
)
8212 = build_method_type_directly (TYPE_CANONICAL (basetype
),
8213 TYPE_CANONICAL (rettype
),
8215 if (!COMPLETE_TYPE_P (t
))
8221 /* Construct, lay out and return the type of methods belonging to class
8222 BASETYPE and whose arguments and values are described by TYPE.
8223 If that type exists already, reuse it.
8224 TYPE must be a FUNCTION_TYPE node. */
8227 build_method_type (tree basetype
, tree type
)
8229 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
8231 return build_method_type_directly (basetype
,
8233 TYPE_ARG_TYPES (type
));
8236 /* Construct, lay out and return the type of offsets to a value
8237 of type TYPE, within an object of type BASETYPE.
8238 If a suitable offset type exists already, reuse it. */
8241 build_offset_type (tree basetype
, tree type
)
8244 hashval_t hashcode
= 0;
8246 /* Make a node of the sort we want. */
8247 t
= make_node (OFFSET_TYPE
);
8249 TYPE_OFFSET_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
8250 TREE_TYPE (t
) = type
;
8252 /* If we already have such a type, use the old one. */
8253 hashcode
= iterative_hash_object (TYPE_HASH (basetype
), hashcode
);
8254 hashcode
= iterative_hash_object (TYPE_HASH (type
), hashcode
);
8255 t
= type_hash_canon (hashcode
, t
);
8257 if (!COMPLETE_TYPE_P (t
))
8260 if (TYPE_CANONICAL (t
) == t
)
8262 if (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
8263 || TYPE_STRUCTURAL_EQUALITY_P (type
))
8264 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8265 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)) != basetype
8266 || TYPE_CANONICAL (type
) != type
)
8268 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)),
8269 TYPE_CANONICAL (type
));
8275 /* Create a complex type whose components are COMPONENT_TYPE. */
8278 build_complex_type (tree component_type
)
8283 gcc_assert (INTEGRAL_TYPE_P (component_type
)
8284 || SCALAR_FLOAT_TYPE_P (component_type
)
8285 || FIXED_POINT_TYPE_P (component_type
));
8287 /* Make a node of the sort we want. */
8288 t
= make_node (COMPLEX_TYPE
);
8290 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (component_type
);
8292 /* If we already have such a type, use the old one. */
8293 hashcode
= iterative_hash_object (TYPE_HASH (component_type
), 0);
8294 t
= type_hash_canon (hashcode
, t
);
8296 if (!COMPLETE_TYPE_P (t
))
8299 if (TYPE_CANONICAL (t
) == t
)
8301 if (TYPE_STRUCTURAL_EQUALITY_P (component_type
))
8302 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8303 else if (TYPE_CANONICAL (component_type
) != component_type
)
8305 = build_complex_type (TYPE_CANONICAL (component_type
));
8308 /* We need to create a name, since complex is a fundamental type. */
8309 if (! TYPE_NAME (t
))
8312 if (component_type
== char_type_node
)
8313 name
= "complex char";
8314 else if (component_type
== signed_char_type_node
)
8315 name
= "complex signed char";
8316 else if (component_type
== unsigned_char_type_node
)
8317 name
= "complex unsigned char";
8318 else if (component_type
== short_integer_type_node
)
8319 name
= "complex short int";
8320 else if (component_type
== short_unsigned_type_node
)
8321 name
= "complex short unsigned int";
8322 else if (component_type
== integer_type_node
)
8323 name
= "complex int";
8324 else if (component_type
== unsigned_type_node
)
8325 name
= "complex unsigned int";
8326 else if (component_type
== long_integer_type_node
)
8327 name
= "complex long int";
8328 else if (component_type
== long_unsigned_type_node
)
8329 name
= "complex long unsigned int";
8330 else if (component_type
== long_long_integer_type_node
)
8331 name
= "complex long long int";
8332 else if (component_type
== long_long_unsigned_type_node
)
8333 name
= "complex long long unsigned int";
8338 TYPE_NAME (t
) = build_decl (UNKNOWN_LOCATION
, TYPE_DECL
,
8339 get_identifier (name
), t
);
8342 return build_qualified_type (t
, TYPE_QUALS (component_type
));
8345 /* If TYPE is a real or complex floating-point type and the target
8346 does not directly support arithmetic on TYPE then return the wider
8347 type to be used for arithmetic on TYPE. Otherwise, return
8351 excess_precision_type (tree type
)
8353 if (flag_excess_precision
!= EXCESS_PRECISION_FAST
)
8355 int flt_eval_method
= TARGET_FLT_EVAL_METHOD
;
8356 switch (TREE_CODE (type
))
8359 switch (flt_eval_method
)
8362 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
))
8363 return double_type_node
;
8366 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
)
8367 || TYPE_MODE (type
) == TYPE_MODE (double_type_node
))
8368 return long_double_type_node
;
8375 if (TREE_CODE (TREE_TYPE (type
)) != REAL_TYPE
)
8377 switch (flt_eval_method
)
8380 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
))
8381 return complex_double_type_node
;
8384 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
)
8385 || (TYPE_MODE (TREE_TYPE (type
))
8386 == TYPE_MODE (double_type_node
)))
8387 return complex_long_double_type_node
;
8400 /* Return OP, stripped of any conversions to wider types as much as is safe.
8401 Converting the value back to OP's type makes a value equivalent to OP.
8403 If FOR_TYPE is nonzero, we return a value which, if converted to
8404 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8406 OP must have integer, real or enumeral type. Pointers are not allowed!
8408 There are some cases where the obvious value we could return
8409 would regenerate to OP if converted to OP's type,
8410 but would not extend like OP to wider types.
8411 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8412 For example, if OP is (unsigned short)(signed char)-1,
8413 we avoid returning (signed char)-1 if FOR_TYPE is int,
8414 even though extending that to an unsigned short would regenerate OP,
8415 since the result of extending (signed char)-1 to (int)
8416 is different from (int) OP. */
8419 get_unwidened (tree op
, tree for_type
)
8421 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8422 tree type
= TREE_TYPE (op
);
8424 = TYPE_PRECISION (for_type
!= 0 ? for_type
: type
);
8426 = (for_type
!= 0 && for_type
!= type
8427 && final_prec
> TYPE_PRECISION (type
)
8428 && TYPE_UNSIGNED (type
));
8431 while (CONVERT_EXPR_P (op
))
8435 /* TYPE_PRECISION on vector types has different meaning
8436 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8437 so avoid them here. */
8438 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op
, 0))) == VECTOR_TYPE
)
8441 bitschange
= TYPE_PRECISION (TREE_TYPE (op
))
8442 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0)));
8444 /* Truncations are many-one so cannot be removed.
8445 Unless we are later going to truncate down even farther. */
8447 && final_prec
> TYPE_PRECISION (TREE_TYPE (op
)))
8450 /* See what's inside this conversion. If we decide to strip it,
8452 op
= TREE_OPERAND (op
, 0);
8454 /* If we have not stripped any zero-extensions (uns is 0),
8455 we can strip any kind of extension.
8456 If we have previously stripped a zero-extension,
8457 only zero-extensions can safely be stripped.
8458 Any extension can be stripped if the bits it would produce
8459 are all going to be discarded later by truncating to FOR_TYPE. */
8463 if (! uns
|| final_prec
<= TYPE_PRECISION (TREE_TYPE (op
)))
8465 /* TYPE_UNSIGNED says whether this is a zero-extension.
8466 Let's avoid computing it if it does not affect WIN
8467 and if UNS will not be needed again. */
8469 || CONVERT_EXPR_P (op
))
8470 && TYPE_UNSIGNED (TREE_TYPE (op
)))
8478 /* If we finally reach a constant see if it fits in for_type and
8479 in that case convert it. */
8481 && TREE_CODE (win
) == INTEGER_CST
8482 && TREE_TYPE (win
) != for_type
8483 && int_fits_type_p (win
, for_type
))
8484 win
= fold_convert (for_type
, win
);
8489 /* Return OP or a simpler expression for a narrower value
8490 which can be sign-extended or zero-extended to give back OP.
8491 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8492 or 0 if the value should be sign-extended. */
8495 get_narrower (tree op
, int *unsignedp_ptr
)
8500 bool integral_p
= INTEGRAL_TYPE_P (TREE_TYPE (op
));
8502 while (TREE_CODE (op
) == NOP_EXPR
)
8505 = (TYPE_PRECISION (TREE_TYPE (op
))
8506 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0))));
8508 /* Truncations are many-one so cannot be removed. */
8512 /* See what's inside this conversion. If we decide to strip it,
8517 op
= TREE_OPERAND (op
, 0);
8518 /* An extension: the outermost one can be stripped,
8519 but remember whether it is zero or sign extension. */
8521 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8522 /* Otherwise, if a sign extension has been stripped,
8523 only sign extensions can now be stripped;
8524 if a zero extension has been stripped, only zero-extensions. */
8525 else if (uns
!= TYPE_UNSIGNED (TREE_TYPE (op
)))
8529 else /* bitschange == 0 */
8531 /* A change in nominal type can always be stripped, but we must
8532 preserve the unsignedness. */
8534 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8536 op
= TREE_OPERAND (op
, 0);
8537 /* Keep trying to narrow, but don't assign op to win if it
8538 would turn an integral type into something else. */
8539 if (INTEGRAL_TYPE_P (TREE_TYPE (op
)) != integral_p
)
8546 if (TREE_CODE (op
) == COMPONENT_REF
8547 /* Since type_for_size always gives an integer type. */
8548 && TREE_CODE (TREE_TYPE (op
)) != REAL_TYPE
8549 && TREE_CODE (TREE_TYPE (op
)) != FIXED_POINT_TYPE
8550 /* Ensure field is laid out already. */
8551 && DECL_SIZE (TREE_OPERAND (op
, 1)) != 0
8552 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op
, 1))))
8554 unsigned HOST_WIDE_INT innerprec
8555 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op
, 1)));
8556 int unsignedp
= (DECL_UNSIGNED (TREE_OPERAND (op
, 1))
8557 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op
, 1))));
8558 tree type
= lang_hooks
.types
.type_for_size (innerprec
, unsignedp
);
8560 /* We can get this structure field in a narrower type that fits it,
8561 but the resulting extension to its nominal type (a fullword type)
8562 must satisfy the same conditions as for other extensions.
8564 Do this only for fields that are aligned (not bit-fields),
8565 because when bit-field insns will be used there is no
8566 advantage in doing this. */
8568 if (innerprec
< TYPE_PRECISION (TREE_TYPE (op
))
8569 && ! DECL_BIT_FIELD (TREE_OPERAND (op
, 1))
8570 && (first
|| uns
== DECL_UNSIGNED (TREE_OPERAND (op
, 1)))
8574 uns
= DECL_UNSIGNED (TREE_OPERAND (op
, 1));
8575 win
= fold_convert (type
, op
);
8579 *unsignedp_ptr
= uns
;
8583 /* Returns true if integer constant C has a value that is permissible
8584 for type TYPE (an INTEGER_TYPE). */
8587 int_fits_type_p (const_tree c
, const_tree type
)
8589 tree type_low_bound
, type_high_bound
;
8590 bool ok_for_low_bound
, ok_for_high_bound
, unsc
;
8593 dc
= tree_to_double_int (c
);
8594 unsc
= TYPE_UNSIGNED (TREE_TYPE (c
));
8597 type_low_bound
= TYPE_MIN_VALUE (type
);
8598 type_high_bound
= TYPE_MAX_VALUE (type
);
8600 /* If at least one bound of the type is a constant integer, we can check
8601 ourselves and maybe make a decision. If no such decision is possible, but
8602 this type is a subtype, try checking against that. Otherwise, use
8603 double_int_fits_to_tree_p, which checks against the precision.
8605 Compute the status for each possibly constant bound, and return if we see
8606 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8607 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8608 for "constant known to fit". */
8610 /* Check if c >= type_low_bound. */
8611 if (type_low_bound
&& TREE_CODE (type_low_bound
) == INTEGER_CST
)
8613 dd
= tree_to_double_int (type_low_bound
);
8614 if (unsc
!= TYPE_UNSIGNED (TREE_TYPE (type_low_bound
)))
8616 int c_neg
= (!unsc
&& dc
.is_negative ());
8617 int t_neg
= (unsc
&& dd
.is_negative ());
8619 if (c_neg
&& !t_neg
)
8621 if ((c_neg
|| !t_neg
) && dc
.ult (dd
))
8624 else if (dc
.cmp (dd
, unsc
) < 0)
8626 ok_for_low_bound
= true;
8629 ok_for_low_bound
= false;
8631 /* Check if c <= type_high_bound. */
8632 if (type_high_bound
&& TREE_CODE (type_high_bound
) == INTEGER_CST
)
8634 dd
= tree_to_double_int (type_high_bound
);
8635 if (unsc
!= TYPE_UNSIGNED (TREE_TYPE (type_high_bound
)))
8637 int c_neg
= (!unsc
&& dc
.is_negative ());
8638 int t_neg
= (unsc
&& dd
.is_negative ());
8640 if (t_neg
&& !c_neg
)
8642 if ((t_neg
|| !c_neg
) && dc
.ugt (dd
))
8645 else if (dc
.cmp (dd
, unsc
) > 0)
8647 ok_for_high_bound
= true;
8650 ok_for_high_bound
= false;
8652 /* If the constant fits both bounds, the result is known. */
8653 if (ok_for_low_bound
&& ok_for_high_bound
)
8656 /* Perform some generic filtering which may allow making a decision
8657 even if the bounds are not constant. First, negative integers
8658 never fit in unsigned types, */
8659 if (TYPE_UNSIGNED (type
) && !unsc
&& dc
.is_negative ())
8662 /* Second, narrower types always fit in wider ones. */
8663 if (TYPE_PRECISION (type
) > TYPE_PRECISION (TREE_TYPE (c
)))
8666 /* Third, unsigned integers with top bit set never fit signed types. */
8667 if (! TYPE_UNSIGNED (type
) && unsc
)
8669 int prec
= GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (c
))) - 1;
8670 if (prec
< HOST_BITS_PER_WIDE_INT
)
8672 if (((((unsigned HOST_WIDE_INT
) 1) << prec
) & dc
.low
) != 0)
8675 else if (((((unsigned HOST_WIDE_INT
) 1)
8676 << (prec
- HOST_BITS_PER_WIDE_INT
)) & dc
.high
) != 0)
8680 /* If we haven't been able to decide at this point, there nothing more we
8681 can check ourselves here. Look at the base type if we have one and it
8682 has the same precision. */
8683 if (TREE_CODE (type
) == INTEGER_TYPE
8684 && TREE_TYPE (type
) != 0
8685 && TYPE_PRECISION (type
) == TYPE_PRECISION (TREE_TYPE (type
)))
8687 type
= TREE_TYPE (type
);
8691 /* Or to double_int_fits_to_tree_p, if nothing else. */
8692 return double_int_fits_to_tree_p (type
, dc
);
8695 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8696 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8697 represented (assuming two's-complement arithmetic) within the bit
8698 precision of the type are returned instead. */
8701 get_type_static_bounds (const_tree type
, mpz_t min
, mpz_t max
)
8703 if (!POINTER_TYPE_P (type
) && TYPE_MIN_VALUE (type
)
8704 && TREE_CODE (TYPE_MIN_VALUE (type
)) == INTEGER_CST
)
8705 mpz_set_double_int (min
, tree_to_double_int (TYPE_MIN_VALUE (type
)),
8706 TYPE_UNSIGNED (type
));
8709 if (TYPE_UNSIGNED (type
))
8710 mpz_set_ui (min
, 0);
8714 mn
= double_int::mask (TYPE_PRECISION (type
) - 1);
8715 mn
= (mn
+ double_int_one
).sext (TYPE_PRECISION (type
));
8716 mpz_set_double_int (min
, mn
, false);
8720 if (!POINTER_TYPE_P (type
) && TYPE_MAX_VALUE (type
)
8721 && TREE_CODE (TYPE_MAX_VALUE (type
)) == INTEGER_CST
)
8722 mpz_set_double_int (max
, tree_to_double_int (TYPE_MAX_VALUE (type
)),
8723 TYPE_UNSIGNED (type
));
8726 if (TYPE_UNSIGNED (type
))
8727 mpz_set_double_int (max
, double_int::mask (TYPE_PRECISION (type
)),
8730 mpz_set_double_int (max
, double_int::mask (TYPE_PRECISION (type
) - 1),
8735 /* Return true if VAR is an automatic variable defined in function FN. */
8738 auto_var_in_fn_p (const_tree var
, const_tree fn
)
8740 return (DECL_P (var
) && DECL_CONTEXT (var
) == fn
8741 && ((((TREE_CODE (var
) == VAR_DECL
&& ! DECL_EXTERNAL (var
))
8742 || TREE_CODE (var
) == PARM_DECL
)
8743 && ! TREE_STATIC (var
))
8744 || TREE_CODE (var
) == LABEL_DECL
8745 || TREE_CODE (var
) == RESULT_DECL
));
8748 /* Subprogram of following function. Called by walk_tree.
8750 Return *TP if it is an automatic variable or parameter of the
8751 function passed in as DATA. */
8754 find_var_from_fn (tree
*tp
, int *walk_subtrees
, void *data
)
8756 tree fn
= (tree
) data
;
8761 else if (DECL_P (*tp
)
8762 && auto_var_in_fn_p (*tp
, fn
))
8768 /* Returns true if T is, contains, or refers to a type with variable
8769 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8770 arguments, but not the return type. If FN is nonzero, only return
8771 true if a modifier of the type or position of FN is a variable or
8772 parameter inside FN.
8774 This concept is more general than that of C99 'variably modified types':
8775 in C99, a struct type is never variably modified because a VLA may not
8776 appear as a structure member. However, in GNU C code like:
8778 struct S { int i[f()]; };
8780 is valid, and other languages may define similar constructs. */
8783 variably_modified_type_p (tree type
, tree fn
)
8787 /* Test if T is either variable (if FN is zero) or an expression containing
8788 a variable in FN. If TYPE isn't gimplified, return true also if
8789 gimplify_one_sizepos would gimplify the expression into a local
8791 #define RETURN_TRUE_IF_VAR(T) \
8792 do { tree _t = (T); \
8793 if (_t != NULL_TREE \
8794 && _t != error_mark_node \
8795 && TREE_CODE (_t) != INTEGER_CST \
8796 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8798 || (!TYPE_SIZES_GIMPLIFIED (type) \
8799 && !is_gimple_sizepos (_t)) \
8800 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8801 return true; } while (0)
8803 if (type
== error_mark_node
)
8806 /* If TYPE itself has variable size, it is variably modified. */
8807 RETURN_TRUE_IF_VAR (TYPE_SIZE (type
));
8808 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type
));
8810 switch (TREE_CODE (type
))
8813 case REFERENCE_TYPE
:
8815 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8821 /* If TYPE is a function type, it is variably modified if the
8822 return type is variably modified. */
8823 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8829 case FIXED_POINT_TYPE
:
8832 /* Scalar types are variably modified if their end points
8834 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type
));
8835 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type
));
8840 case QUAL_UNION_TYPE
:
8841 /* We can't see if any of the fields are variably-modified by the
8842 definition we normally use, since that would produce infinite
8843 recursion via pointers. */
8844 /* This is variably modified if some field's type is. */
8845 for (t
= TYPE_FIELDS (type
); t
; t
= DECL_CHAIN (t
))
8846 if (TREE_CODE (t
) == FIELD_DECL
)
8848 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t
));
8849 RETURN_TRUE_IF_VAR (DECL_SIZE (t
));
8850 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t
));
8852 if (TREE_CODE (type
) == QUAL_UNION_TYPE
)
8853 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t
));
8858 /* Do not call ourselves to avoid infinite recursion. This is
8859 variably modified if the element type is. */
8860 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type
)));
8861 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type
)));
8868 /* The current language may have other cases to check, but in general,
8869 all other types are not variably modified. */
8870 return lang_hooks
.tree_inlining
.var_mod_type_p (type
, fn
);
8872 #undef RETURN_TRUE_IF_VAR
8875 /* Given a DECL or TYPE, return the scope in which it was declared, or
8876 NULL_TREE if there is no containing scope. */
8879 get_containing_scope (const_tree t
)
8881 return (TYPE_P (t
) ? TYPE_CONTEXT (t
) : DECL_CONTEXT (t
));
8884 /* Return the innermost context enclosing DECL that is
8885 a FUNCTION_DECL, or zero if none. */
8888 decl_function_context (const_tree decl
)
8892 if (TREE_CODE (decl
) == ERROR_MARK
)
8895 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8896 where we look up the function at runtime. Such functions always take
8897 a first argument of type 'pointer to real context'.
8899 C++ should really be fixed to use DECL_CONTEXT for the real context,
8900 and use something else for the "virtual context". */
8901 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_VINDEX (decl
))
8904 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
8906 context
= DECL_CONTEXT (decl
);
8908 while (context
&& TREE_CODE (context
) != FUNCTION_DECL
)
8910 if (TREE_CODE (context
) == BLOCK
)
8911 context
= BLOCK_SUPERCONTEXT (context
);
8913 context
= get_containing_scope (context
);
8919 /* Return the innermost context enclosing DECL that is
8920 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8921 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8924 decl_type_context (const_tree decl
)
8926 tree context
= DECL_CONTEXT (decl
);
8929 switch (TREE_CODE (context
))
8931 case NAMESPACE_DECL
:
8932 case TRANSLATION_UNIT_DECL
:
8937 case QUAL_UNION_TYPE
:
8942 context
= DECL_CONTEXT (context
);
8946 context
= BLOCK_SUPERCONTEXT (context
);
8956 /* CALL is a CALL_EXPR. Return the declaration for the function
8957 called, or NULL_TREE if the called function cannot be
8961 get_callee_fndecl (const_tree call
)
8965 if (call
== error_mark_node
)
8966 return error_mark_node
;
8968 /* It's invalid to call this function with anything but a
8970 gcc_assert (TREE_CODE (call
) == CALL_EXPR
);
8972 /* The first operand to the CALL is the address of the function
8974 addr
= CALL_EXPR_FN (call
);
8978 /* If this is a readonly function pointer, extract its initial value. */
8979 if (DECL_P (addr
) && TREE_CODE (addr
) != FUNCTION_DECL
8980 && TREE_READONLY (addr
) && ! TREE_THIS_VOLATILE (addr
)
8981 && DECL_INITIAL (addr
))
8982 addr
= DECL_INITIAL (addr
);
8984 /* If the address is just `&f' for some function `f', then we know
8985 that `f' is being called. */
8986 if (TREE_CODE (addr
) == ADDR_EXPR
8987 && TREE_CODE (TREE_OPERAND (addr
, 0)) == FUNCTION_DECL
)
8988 return TREE_OPERAND (addr
, 0);
8990 /* We couldn't figure out what was being called. */
8994 /* Print debugging information about tree nodes generated during the compile,
8995 and any language-specific information. */
8998 dump_tree_statistics (void)
9000 if (GATHER_STATISTICS
)
9003 int total_nodes
, total_bytes
;
9004 fprintf (stderr
, "Kind Nodes Bytes\n");
9005 fprintf (stderr
, "---------------------------------------\n");
9006 total_nodes
= total_bytes
= 0;
9007 for (i
= 0; i
< (int) all_kinds
; i
++)
9009 fprintf (stderr
, "%-20s %7d %10d\n", tree_node_kind_names
[i
],
9010 tree_node_counts
[i
], tree_node_sizes
[i
]);
9011 total_nodes
+= tree_node_counts
[i
];
9012 total_bytes
+= tree_node_sizes
[i
];
9014 fprintf (stderr
, "---------------------------------------\n");
9015 fprintf (stderr
, "%-20s %7d %10d\n", "Total", total_nodes
, total_bytes
);
9016 fprintf (stderr
, "---------------------------------------\n");
9017 fprintf (stderr
, "Code Nodes\n");
9018 fprintf (stderr
, "----------------------------\n");
9019 for (i
= 0; i
< (int) MAX_TREE_CODES
; i
++)
9020 fprintf (stderr
, "%-20s %7d\n", get_tree_code_name ((enum tree_code
) i
),
9021 tree_code_counts
[i
]);
9022 fprintf (stderr
, "----------------------------\n");
9023 ssanames_print_statistics ();
9024 phinodes_print_statistics ();
9027 fprintf (stderr
, "(No per-node statistics)\n");
9029 print_type_hash_statistics ();
9030 print_debug_expr_statistics ();
9031 print_value_expr_statistics ();
9032 lang_hooks
.print_statistics ();
9035 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9037 /* Generate a crc32 of a byte. */
9040 crc32_unsigned_bits (unsigned chksum
, unsigned value
, unsigned bits
)
9044 for (ix
= bits
; ix
--; value
<<= 1)
9048 feedback
= (value
^ chksum
) & 0x80000000 ? 0x04c11db7 : 0;
9055 /* Generate a crc32 of a 32-bit unsigned. */
9058 crc32_unsigned (unsigned chksum
, unsigned value
)
9060 return crc32_unsigned_bits (chksum
, value
, 32);
9063 /* Generate a crc32 of a byte. */
9066 crc32_byte (unsigned chksum
, char byte
)
9068 return crc32_unsigned_bits (chksum
, (unsigned) byte
<< 24, 8);
9071 /* Generate a crc32 of a string. */
9074 crc32_string (unsigned chksum
, const char *string
)
9078 chksum
= crc32_byte (chksum
, *string
);
9084 /* P is a string that will be used in a symbol. Mask out any characters
9085 that are not valid in that context. */
9088 clean_symbol_name (char *p
)
9092 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9095 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9102 /* Generate a name for a special-purpose function.
9103 The generated name may need to be unique across the whole link.
9104 Changes to this function may also require corresponding changes to
9105 xstrdup_mask_random.
9106 TYPE is some string to identify the purpose of this function to the
9107 linker or collect2; it must start with an uppercase letter,
9109 I - for constructors
9111 N - for C++ anonymous namespaces
9112 F - for DWARF unwind frame information. */
9115 get_file_function_name (const char *type
)
9121 /* If we already have a name we know to be unique, just use that. */
9122 if (first_global_object_name
)
9123 p
= q
= ASTRDUP (first_global_object_name
);
9124 /* If the target is handling the constructors/destructors, they
9125 will be local to this file and the name is only necessary for
9127 We also assign sub_I and sub_D sufixes to constructors called from
9128 the global static constructors. These are always local. */
9129 else if (((type
[0] == 'I' || type
[0] == 'D') && targetm
.have_ctors_dtors
)
9130 || (strncmp (type
, "sub_", 4) == 0
9131 && (type
[4] == 'I' || type
[4] == 'D')))
9133 const char *file
= main_input_filename
;
9135 file
= LOCATION_FILE (input_location
);
9136 /* Just use the file's basename, because the full pathname
9137 might be quite long. */
9138 p
= q
= ASTRDUP (lbasename (file
));
9142 /* Otherwise, the name must be unique across the entire link.
9143 We don't have anything that we know to be unique to this translation
9144 unit, so use what we do have and throw in some randomness. */
9146 const char *name
= weak_global_object_name
;
9147 const char *file
= main_input_filename
;
9152 file
= LOCATION_FILE (input_location
);
9154 len
= strlen (file
);
9155 q
= (char *) alloca (9 + 17 + len
+ 1);
9156 memcpy (q
, file
, len
+ 1);
9158 snprintf (q
+ len
, 9 + 17 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX
,
9159 crc32_string (0, name
), get_random_seed (false));
9164 clean_symbol_name (q
);
9165 buf
= (char *) alloca (sizeof (FILE_FUNCTION_FORMAT
) + strlen (p
)
9168 /* Set up the name of the file-level functions we may need.
9169 Use a global object (which is already required to be unique over
9170 the program) rather than the file name (which imposes extra
9172 sprintf (buf
, FILE_FUNCTION_FORMAT
, type
, p
);
9174 return get_identifier (buf
);
9177 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9179 /* Complain that the tree code of NODE does not match the expected 0
9180 terminated list of trailing codes. The trailing code list can be
9181 empty, for a more vague error message. FILE, LINE, and FUNCTION
9182 are of the caller. */
9185 tree_check_failed (const_tree node
, const char *file
,
9186 int line
, const char *function
, ...)
9190 unsigned length
= 0;
9191 enum tree_code code
;
9193 va_start (args
, function
);
9194 while ((code
= (enum tree_code
) va_arg (args
, int)))
9195 length
+= 4 + strlen (get_tree_code_name (code
));
9200 va_start (args
, function
);
9201 length
+= strlen ("expected ");
9202 buffer
= tmp
= (char *) alloca (length
);
9204 while ((code
= (enum tree_code
) va_arg (args
, int)))
9206 const char *prefix
= length
? " or " : "expected ";
9208 strcpy (tmp
+ length
, prefix
);
9209 length
+= strlen (prefix
);
9210 strcpy (tmp
+ length
, get_tree_code_name (code
));
9211 length
+= strlen (get_tree_code_name (code
));
9216 buffer
= "unexpected node";
9218 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9219 buffer
, get_tree_code_name (TREE_CODE (node
)),
9220 function
, trim_filename (file
), line
);
9223 /* Complain that the tree code of NODE does match the expected 0
9224 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9228 tree_not_check_failed (const_tree node
, const char *file
,
9229 int line
, const char *function
, ...)
9233 unsigned length
= 0;
9234 enum tree_code code
;
9236 va_start (args
, function
);
9237 while ((code
= (enum tree_code
) va_arg (args
, int)))
9238 length
+= 4 + strlen (get_tree_code_name (code
));
9240 va_start (args
, function
);
9241 buffer
= (char *) alloca (length
);
9243 while ((code
= (enum tree_code
) va_arg (args
, int)))
9247 strcpy (buffer
+ length
, " or ");
9250 strcpy (buffer
+ length
, get_tree_code_name (code
));
9251 length
+= strlen (get_tree_code_name (code
));
9255 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9256 buffer
, get_tree_code_name (TREE_CODE (node
)),
9257 function
, trim_filename (file
), line
);
9260 /* Similar to tree_check_failed, except that we check for a class of tree
9261 code, given in CL. */
9264 tree_class_check_failed (const_tree node
, const enum tree_code_class cl
,
9265 const char *file
, int line
, const char *function
)
9268 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9269 TREE_CODE_CLASS_STRING (cl
),
9270 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9271 get_tree_code_name (TREE_CODE (node
)), function
, trim_filename (file
), line
);
9274 /* Similar to tree_check_failed, except that instead of specifying a
9275 dozen codes, use the knowledge that they're all sequential. */
9278 tree_range_check_failed (const_tree node
, const char *file
, int line
,
9279 const char *function
, enum tree_code c1
,
9283 unsigned length
= 0;
9286 for (c
= c1
; c
<= c2
; ++c
)
9287 length
+= 4 + strlen (get_tree_code_name ((enum tree_code
) c
));
9289 length
+= strlen ("expected ");
9290 buffer
= (char *) alloca (length
);
9293 for (c
= c1
; c
<= c2
; ++c
)
9295 const char *prefix
= length
? " or " : "expected ";
9297 strcpy (buffer
+ length
, prefix
);
9298 length
+= strlen (prefix
);
9299 strcpy (buffer
+ length
, get_tree_code_name ((enum tree_code
) c
));
9300 length
+= strlen (get_tree_code_name ((enum tree_code
) c
));
9303 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9304 buffer
, get_tree_code_name (TREE_CODE (node
)),
9305 function
, trim_filename (file
), line
);
9309 /* Similar to tree_check_failed, except that we check that a tree does
9310 not have the specified code, given in CL. */
9313 tree_not_class_check_failed (const_tree node
, const enum tree_code_class cl
,
9314 const char *file
, int line
, const char *function
)
9317 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9318 TREE_CODE_CLASS_STRING (cl
),
9319 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9320 get_tree_code_name (TREE_CODE (node
)), function
, trim_filename (file
), line
);
9324 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9327 omp_clause_check_failed (const_tree node
, const char *file
, int line
,
9328 const char *function
, enum omp_clause_code code
)
9330 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9331 omp_clause_code_name
[code
], get_tree_code_name (TREE_CODE (node
)),
9332 function
, trim_filename (file
), line
);
9336 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9339 omp_clause_range_check_failed (const_tree node
, const char *file
, int line
,
9340 const char *function
, enum omp_clause_code c1
,
9341 enum omp_clause_code c2
)
9344 unsigned length
= 0;
9347 for (c
= c1
; c
<= c2
; ++c
)
9348 length
+= 4 + strlen (omp_clause_code_name
[c
]);
9350 length
+= strlen ("expected ");
9351 buffer
= (char *) alloca (length
);
9354 for (c
= c1
; c
<= c2
; ++c
)
9356 const char *prefix
= length
? " or " : "expected ";
9358 strcpy (buffer
+ length
, prefix
);
9359 length
+= strlen (prefix
);
9360 strcpy (buffer
+ length
, omp_clause_code_name
[c
]);
9361 length
+= strlen (omp_clause_code_name
[c
]);
9364 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9365 buffer
, omp_clause_code_name
[TREE_CODE (node
)],
9366 function
, trim_filename (file
), line
);
9370 #undef DEFTREESTRUCT
9371 #define DEFTREESTRUCT(VAL, NAME) NAME,
9373 static const char *ts_enum_names
[] = {
9374 #include "treestruct.def"
9376 #undef DEFTREESTRUCT
9378 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9380 /* Similar to tree_class_check_failed, except that we check for
9381 whether CODE contains the tree structure identified by EN. */
9384 tree_contains_struct_check_failed (const_tree node
,
9385 const enum tree_node_structure_enum en
,
9386 const char *file
, int line
,
9387 const char *function
)
9390 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9392 get_tree_code_name (TREE_CODE (node
)), function
, trim_filename (file
), line
);
9396 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9397 (dynamically sized) vector. */
9400 tree_vec_elt_check_failed (int idx
, int len
, const char *file
, int line
,
9401 const char *function
)
9404 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9405 idx
+ 1, len
, function
, trim_filename (file
), line
);
9408 /* Similar to above, except that the check is for the bounds of the operand
9409 vector of an expression node EXP. */
9412 tree_operand_check_failed (int idx
, const_tree exp
, const char *file
,
9413 int line
, const char *function
)
9415 enum tree_code code
= TREE_CODE (exp
);
9417 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9418 idx
+ 1, get_tree_code_name (code
), TREE_OPERAND_LENGTH (exp
),
9419 function
, trim_filename (file
), line
);
9422 /* Similar to above, except that the check is for the number of
9423 operands of an OMP_CLAUSE node. */
9426 omp_clause_operand_check_failed (int idx
, const_tree t
, const char *file
,
9427 int line
, const char *function
)
9430 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9431 "in %s, at %s:%d", idx
+ 1, omp_clause_code_name
[OMP_CLAUSE_CODE (t
)],
9432 omp_clause_num_ops
[OMP_CLAUSE_CODE (t
)], function
,
9433 trim_filename (file
), line
);
9435 #endif /* ENABLE_TREE_CHECKING */
9437 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9438 and mapped to the machine mode MODE. Initialize its fields and build
9439 the information necessary for debugging output. */
9442 make_vector_type (tree innertype
, int nunits
, enum machine_mode mode
)
9445 hashval_t hashcode
= 0;
9447 t
= make_node (VECTOR_TYPE
);
9448 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (innertype
);
9449 SET_TYPE_VECTOR_SUBPARTS (t
, nunits
);
9450 SET_TYPE_MODE (t
, mode
);
9452 if (TYPE_STRUCTURAL_EQUALITY_P (innertype
))
9453 SET_TYPE_STRUCTURAL_EQUALITY (t
);
9454 else if (TYPE_CANONICAL (innertype
) != innertype
9455 || mode
!= VOIDmode
)
9457 = make_vector_type (TYPE_CANONICAL (innertype
), nunits
, VOIDmode
);
9461 hashcode
= iterative_hash_host_wide_int (VECTOR_TYPE
, hashcode
);
9462 hashcode
= iterative_hash_host_wide_int (nunits
, hashcode
);
9463 hashcode
= iterative_hash_host_wide_int (mode
, hashcode
);
9464 hashcode
= iterative_hash_object (TYPE_HASH (TREE_TYPE (t
)), hashcode
);
9465 t
= type_hash_canon (hashcode
, t
);
9467 /* We have built a main variant, based on the main variant of the
9468 inner type. Use it to build the variant we return. */
9469 if ((TYPE_ATTRIBUTES (innertype
) || TYPE_QUALS (innertype
))
9470 && TREE_TYPE (t
) != innertype
)
9471 return build_type_attribute_qual_variant (t
,
9472 TYPE_ATTRIBUTES (innertype
),
9473 TYPE_QUALS (innertype
));
9479 make_or_reuse_type (unsigned size
, int unsignedp
)
9481 if (size
== INT_TYPE_SIZE
)
9482 return unsignedp
? unsigned_type_node
: integer_type_node
;
9483 if (size
== CHAR_TYPE_SIZE
)
9484 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
9485 if (size
== SHORT_TYPE_SIZE
)
9486 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
9487 if (size
== LONG_TYPE_SIZE
)
9488 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
9489 if (size
== LONG_LONG_TYPE_SIZE
)
9490 return (unsignedp
? long_long_unsigned_type_node
9491 : long_long_integer_type_node
);
9492 if (size
== 128 && int128_integer_type_node
)
9493 return (unsignedp
? int128_unsigned_type_node
9494 : int128_integer_type_node
);
9497 return make_unsigned_type (size
);
9499 return make_signed_type (size
);
9502 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9505 make_or_reuse_fract_type (unsigned size
, int unsignedp
, int satp
)
9509 if (size
== SHORT_FRACT_TYPE_SIZE
)
9510 return unsignedp
? sat_unsigned_short_fract_type_node
9511 : sat_short_fract_type_node
;
9512 if (size
== FRACT_TYPE_SIZE
)
9513 return unsignedp
? sat_unsigned_fract_type_node
: sat_fract_type_node
;
9514 if (size
== LONG_FRACT_TYPE_SIZE
)
9515 return unsignedp
? sat_unsigned_long_fract_type_node
9516 : sat_long_fract_type_node
;
9517 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9518 return unsignedp
? sat_unsigned_long_long_fract_type_node
9519 : sat_long_long_fract_type_node
;
9523 if (size
== SHORT_FRACT_TYPE_SIZE
)
9524 return unsignedp
? unsigned_short_fract_type_node
9525 : short_fract_type_node
;
9526 if (size
== FRACT_TYPE_SIZE
)
9527 return unsignedp
? unsigned_fract_type_node
: fract_type_node
;
9528 if (size
== LONG_FRACT_TYPE_SIZE
)
9529 return unsignedp
? unsigned_long_fract_type_node
9530 : long_fract_type_node
;
9531 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9532 return unsignedp
? unsigned_long_long_fract_type_node
9533 : long_long_fract_type_node
;
9536 return make_fract_type (size
, unsignedp
, satp
);
9539 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9542 make_or_reuse_accum_type (unsigned size
, int unsignedp
, int satp
)
9546 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9547 return unsignedp
? sat_unsigned_short_accum_type_node
9548 : sat_short_accum_type_node
;
9549 if (size
== ACCUM_TYPE_SIZE
)
9550 return unsignedp
? sat_unsigned_accum_type_node
: sat_accum_type_node
;
9551 if (size
== LONG_ACCUM_TYPE_SIZE
)
9552 return unsignedp
? sat_unsigned_long_accum_type_node
9553 : sat_long_accum_type_node
;
9554 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9555 return unsignedp
? sat_unsigned_long_long_accum_type_node
9556 : sat_long_long_accum_type_node
;
9560 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9561 return unsignedp
? unsigned_short_accum_type_node
9562 : short_accum_type_node
;
9563 if (size
== ACCUM_TYPE_SIZE
)
9564 return unsignedp
? unsigned_accum_type_node
: accum_type_node
;
9565 if (size
== LONG_ACCUM_TYPE_SIZE
)
9566 return unsignedp
? unsigned_long_accum_type_node
9567 : long_accum_type_node
;
9568 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9569 return unsignedp
? unsigned_long_long_accum_type_node
9570 : long_long_accum_type_node
;
9573 return make_accum_type (size
, unsignedp
, satp
);
9577 /* Create an atomic variant node for TYPE. This routine is called
9578 during initialization of data types to create the 5 basic atomic
9579 types. The generic build_variant_type function requires these to
9580 already be set up in order to function properly, so cannot be
9581 called from there. If ALIGN is non-zero, then ensure alignment is
9582 overridden to this value. */
9585 build_atomic_base (tree type
, unsigned int align
)
9589 /* Make sure its not already registered. */
9590 if ((t
= get_qualified_type (type
, TYPE_QUAL_ATOMIC
)))
9593 t
= build_variant_type_copy (type
);
9594 set_type_quals (t
, TYPE_QUAL_ATOMIC
);
9597 TYPE_ALIGN (t
) = align
;
9602 /* Create nodes for all integer types (and error_mark_node) using the sizes
9603 of C datatypes. SIGNED_CHAR specifies whether char is signed,
9604 SHORT_DOUBLE specifies whether double should be of the same precision
9608 build_common_tree_nodes (bool signed_char
, bool short_double
)
9610 error_mark_node
= make_node (ERROR_MARK
);
9611 TREE_TYPE (error_mark_node
) = error_mark_node
;
9613 initialize_sizetypes ();
9615 /* Define both `signed char' and `unsigned char'. */
9616 signed_char_type_node
= make_signed_type (CHAR_TYPE_SIZE
);
9617 TYPE_STRING_FLAG (signed_char_type_node
) = 1;
9618 unsigned_char_type_node
= make_unsigned_type (CHAR_TYPE_SIZE
);
9619 TYPE_STRING_FLAG (unsigned_char_type_node
) = 1;
9621 /* Define `char', which is like either `signed char' or `unsigned char'
9622 but not the same as either. */
9625 ? make_signed_type (CHAR_TYPE_SIZE
)
9626 : make_unsigned_type (CHAR_TYPE_SIZE
));
9627 TYPE_STRING_FLAG (char_type_node
) = 1;
9629 short_integer_type_node
= make_signed_type (SHORT_TYPE_SIZE
);
9630 short_unsigned_type_node
= make_unsigned_type (SHORT_TYPE_SIZE
);
9631 integer_type_node
= make_signed_type (INT_TYPE_SIZE
);
9632 unsigned_type_node
= make_unsigned_type (INT_TYPE_SIZE
);
9633 long_integer_type_node
= make_signed_type (LONG_TYPE_SIZE
);
9634 long_unsigned_type_node
= make_unsigned_type (LONG_TYPE_SIZE
);
9635 long_long_integer_type_node
= make_signed_type (LONG_LONG_TYPE_SIZE
);
9636 long_long_unsigned_type_node
= make_unsigned_type (LONG_LONG_TYPE_SIZE
);
9637 #if HOST_BITS_PER_WIDE_INT >= 64
9638 /* TODO: This isn't correct, but as logic depends at the moment on
9639 host's instead of target's wide-integer.
9640 If there is a target not supporting TImode, but has an 128-bit
9641 integer-scalar register, this target check needs to be adjusted. */
9642 if (targetm
.scalar_mode_supported_p (TImode
))
9644 int128_integer_type_node
= make_signed_type (128);
9645 int128_unsigned_type_node
= make_unsigned_type (128);
9649 /* Define a boolean type. This type only represents boolean values but
9650 may be larger than char depending on the value of BOOL_TYPE_SIZE.
9651 Front ends which want to override this size (i.e. Java) can redefine
9652 boolean_type_node before calling build_common_tree_nodes_2. */
9653 boolean_type_node
= make_unsigned_type (BOOL_TYPE_SIZE
);
9654 TREE_SET_CODE (boolean_type_node
, BOOLEAN_TYPE
);
9655 TYPE_MAX_VALUE (boolean_type_node
) = build_int_cst (boolean_type_node
, 1);
9656 TYPE_PRECISION (boolean_type_node
) = 1;
9658 /* Define what type to use for size_t. */
9659 if (strcmp (SIZE_TYPE
, "unsigned int") == 0)
9660 size_type_node
= unsigned_type_node
;
9661 else if (strcmp (SIZE_TYPE
, "long unsigned int") == 0)
9662 size_type_node
= long_unsigned_type_node
;
9663 else if (strcmp (SIZE_TYPE
, "long long unsigned int") == 0)
9664 size_type_node
= long_long_unsigned_type_node
;
9665 else if (strcmp (SIZE_TYPE
, "short unsigned int") == 0)
9666 size_type_node
= short_unsigned_type_node
;
9670 /* Fill in the rest of the sized types. Reuse existing type nodes
9672 intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 0);
9673 intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 0);
9674 intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 0);
9675 intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 0);
9676 intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 0);
9678 unsigned_intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 1);
9679 unsigned_intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 1);
9680 unsigned_intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 1);
9681 unsigned_intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 1);
9682 unsigned_intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 1);
9684 /* Don't call build_qualified type for atomics. That routine does
9685 special processing for atomics, and until they are initialized
9686 it's better not to make that call.
9688 Check to see if there is a target override for atomic types. */
9690 atomicQI_type_node
= build_atomic_base (unsigned_intQI_type_node
,
9691 targetm
.atomic_align_for_mode (QImode
));
9692 atomicHI_type_node
= build_atomic_base (unsigned_intHI_type_node
,
9693 targetm
.atomic_align_for_mode (HImode
));
9694 atomicSI_type_node
= build_atomic_base (unsigned_intSI_type_node
,
9695 targetm
.atomic_align_for_mode (SImode
));
9696 atomicDI_type_node
= build_atomic_base (unsigned_intDI_type_node
,
9697 targetm
.atomic_align_for_mode (DImode
));
9698 atomicTI_type_node
= build_atomic_base (unsigned_intTI_type_node
,
9699 targetm
.atomic_align_for_mode (TImode
));
9701 access_public_node
= get_identifier ("public");
9702 access_protected_node
= get_identifier ("protected");
9703 access_private_node
= get_identifier ("private");
9705 /* Define these next since types below may used them. */
9706 integer_zero_node
= build_int_cst (integer_type_node
, 0);
9707 integer_one_node
= build_int_cst (integer_type_node
, 1);
9708 integer_three_node
= build_int_cst (integer_type_node
, 3);
9709 integer_minus_one_node
= build_int_cst (integer_type_node
, -1);
9711 size_zero_node
= size_int (0);
9712 size_one_node
= size_int (1);
9713 bitsize_zero_node
= bitsize_int (0);
9714 bitsize_one_node
= bitsize_int (1);
9715 bitsize_unit_node
= bitsize_int (BITS_PER_UNIT
);
9717 boolean_false_node
= TYPE_MIN_VALUE (boolean_type_node
);
9718 boolean_true_node
= TYPE_MAX_VALUE (boolean_type_node
);
9720 void_type_node
= make_node (VOID_TYPE
);
9721 layout_type (void_type_node
);
9723 /* We are not going to have real types in C with less than byte alignment,
9724 so we might as well not have any types that claim to have it. */
9725 TYPE_ALIGN (void_type_node
) = BITS_PER_UNIT
;
9726 TYPE_USER_ALIGN (void_type_node
) = 0;
9728 null_pointer_node
= build_int_cst (build_pointer_type (void_type_node
), 0);
9729 layout_type (TREE_TYPE (null_pointer_node
));
9731 ptr_type_node
= build_pointer_type (void_type_node
);
9733 = build_pointer_type (build_type_variant (void_type_node
, 1, 0));
9734 fileptr_type_node
= ptr_type_node
;
9736 pointer_sized_int_node
= build_nonstandard_integer_type (POINTER_SIZE
, 1);
9738 float_type_node
= make_node (REAL_TYPE
);
9739 TYPE_PRECISION (float_type_node
) = FLOAT_TYPE_SIZE
;
9740 layout_type (float_type_node
);
9742 double_type_node
= make_node (REAL_TYPE
);
9744 TYPE_PRECISION (double_type_node
) = FLOAT_TYPE_SIZE
;
9746 TYPE_PRECISION (double_type_node
) = DOUBLE_TYPE_SIZE
;
9747 layout_type (double_type_node
);
9749 long_double_type_node
= make_node (REAL_TYPE
);
9750 TYPE_PRECISION (long_double_type_node
) = LONG_DOUBLE_TYPE_SIZE
;
9751 layout_type (long_double_type_node
);
9753 float_ptr_type_node
= build_pointer_type (float_type_node
);
9754 double_ptr_type_node
= build_pointer_type (double_type_node
);
9755 long_double_ptr_type_node
= build_pointer_type (long_double_type_node
);
9756 integer_ptr_type_node
= build_pointer_type (integer_type_node
);
9758 /* Fixed size integer types. */
9759 uint16_type_node
= build_nonstandard_integer_type (16, true);
9760 uint32_type_node
= build_nonstandard_integer_type (32, true);
9761 uint64_type_node
= build_nonstandard_integer_type (64, true);
9763 /* Decimal float types. */
9764 dfloat32_type_node
= make_node (REAL_TYPE
);
9765 TYPE_PRECISION (dfloat32_type_node
) = DECIMAL32_TYPE_SIZE
;
9766 layout_type (dfloat32_type_node
);
9767 SET_TYPE_MODE (dfloat32_type_node
, SDmode
);
9768 dfloat32_ptr_type_node
= build_pointer_type (dfloat32_type_node
);
9770 dfloat64_type_node
= make_node (REAL_TYPE
);
9771 TYPE_PRECISION (dfloat64_type_node
) = DECIMAL64_TYPE_SIZE
;
9772 layout_type (dfloat64_type_node
);
9773 SET_TYPE_MODE (dfloat64_type_node
, DDmode
);
9774 dfloat64_ptr_type_node
= build_pointer_type (dfloat64_type_node
);
9776 dfloat128_type_node
= make_node (REAL_TYPE
);
9777 TYPE_PRECISION (dfloat128_type_node
) = DECIMAL128_TYPE_SIZE
;
9778 layout_type (dfloat128_type_node
);
9779 SET_TYPE_MODE (dfloat128_type_node
, TDmode
);
9780 dfloat128_ptr_type_node
= build_pointer_type (dfloat128_type_node
);
9782 complex_integer_type_node
= build_complex_type (integer_type_node
);
9783 complex_float_type_node
= build_complex_type (float_type_node
);
9784 complex_double_type_node
= build_complex_type (double_type_node
);
9785 complex_long_double_type_node
= build_complex_type (long_double_type_node
);
9787 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
9788 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
9789 sat_ ## KIND ## _type_node = \
9790 make_sat_signed_ ## KIND ## _type (SIZE); \
9791 sat_unsigned_ ## KIND ## _type_node = \
9792 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9793 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9794 unsigned_ ## KIND ## _type_node = \
9795 make_unsigned_ ## KIND ## _type (SIZE);
9797 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
9798 sat_ ## WIDTH ## KIND ## _type_node = \
9799 make_sat_signed_ ## KIND ## _type (SIZE); \
9800 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
9801 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9802 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9803 unsigned_ ## WIDTH ## KIND ## _type_node = \
9804 make_unsigned_ ## KIND ## _type (SIZE);
9806 /* Make fixed-point type nodes based on four different widths. */
9807 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
9808 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
9809 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
9810 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
9811 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
9813 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
9814 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
9815 NAME ## _type_node = \
9816 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
9817 u ## NAME ## _type_node = \
9818 make_or_reuse_unsigned_ ## KIND ## _type \
9819 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
9820 sat_ ## NAME ## _type_node = \
9821 make_or_reuse_sat_signed_ ## KIND ## _type \
9822 (GET_MODE_BITSIZE (MODE ## mode)); \
9823 sat_u ## NAME ## _type_node = \
9824 make_or_reuse_sat_unsigned_ ## KIND ## _type \
9825 (GET_MODE_BITSIZE (U ## MODE ## mode));
9827 /* Fixed-point type and mode nodes. */
9828 MAKE_FIXED_TYPE_NODE_FAMILY (fract
, FRACT
)
9829 MAKE_FIXED_TYPE_NODE_FAMILY (accum
, ACCUM
)
9830 MAKE_FIXED_MODE_NODE (fract
, qq
, QQ
)
9831 MAKE_FIXED_MODE_NODE (fract
, hq
, HQ
)
9832 MAKE_FIXED_MODE_NODE (fract
, sq
, SQ
)
9833 MAKE_FIXED_MODE_NODE (fract
, dq
, DQ
)
9834 MAKE_FIXED_MODE_NODE (fract
, tq
, TQ
)
9835 MAKE_FIXED_MODE_NODE (accum
, ha
, HA
)
9836 MAKE_FIXED_MODE_NODE (accum
, sa
, SA
)
9837 MAKE_FIXED_MODE_NODE (accum
, da
, DA
)
9838 MAKE_FIXED_MODE_NODE (accum
, ta
, TA
)
9841 tree t
= targetm
.build_builtin_va_list ();
9843 /* Many back-ends define record types without setting TYPE_NAME.
9844 If we copied the record type here, we'd keep the original
9845 record type without a name. This breaks name mangling. So,
9846 don't copy record types and let c_common_nodes_and_builtins()
9847 declare the type to be __builtin_va_list. */
9848 if (TREE_CODE (t
) != RECORD_TYPE
)
9849 t
= build_variant_type_copy (t
);
9851 va_list_type_node
= t
;
9855 /* Modify DECL for given flags.
9856 TM_PURE attribute is set only on types, so the function will modify
9857 DECL's type when ECF_TM_PURE is used. */
9860 set_call_expr_flags (tree decl
, int flags
)
9862 if (flags
& ECF_NOTHROW
)
9863 TREE_NOTHROW (decl
) = 1;
9864 if (flags
& ECF_CONST
)
9865 TREE_READONLY (decl
) = 1;
9866 if (flags
& ECF_PURE
)
9867 DECL_PURE_P (decl
) = 1;
9868 if (flags
& ECF_LOOPING_CONST_OR_PURE
)
9869 DECL_LOOPING_CONST_OR_PURE_P (decl
) = 1;
9870 if (flags
& ECF_NOVOPS
)
9871 DECL_IS_NOVOPS (decl
) = 1;
9872 if (flags
& ECF_NORETURN
)
9873 TREE_THIS_VOLATILE (decl
) = 1;
9874 if (flags
& ECF_MALLOC
)
9875 DECL_IS_MALLOC (decl
) = 1;
9876 if (flags
& ECF_RETURNS_TWICE
)
9877 DECL_IS_RETURNS_TWICE (decl
) = 1;
9878 if (flags
& ECF_LEAF
)
9879 DECL_ATTRIBUTES (decl
) = tree_cons (get_identifier ("leaf"),
9880 NULL
, DECL_ATTRIBUTES (decl
));
9881 if ((flags
& ECF_TM_PURE
) && flag_tm
)
9882 apply_tm_attr (decl
, get_identifier ("transaction_pure"));
9883 /* Looping const or pure is implied by noreturn.
9884 There is currently no way to declare looping const or looping pure alone. */
9885 gcc_assert (!(flags
& ECF_LOOPING_CONST_OR_PURE
)
9886 || ((flags
& ECF_NORETURN
) && (flags
& (ECF_CONST
| ECF_PURE
))));
9890 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
9893 local_define_builtin (const char *name
, tree type
, enum built_in_function code
,
9894 const char *library_name
, int ecf_flags
)
9898 decl
= add_builtin_function (name
, type
, code
, BUILT_IN_NORMAL
,
9899 library_name
, NULL_TREE
);
9900 set_call_expr_flags (decl
, ecf_flags
);
9902 set_builtin_decl (code
, decl
, true);
9905 /* Call this function after instantiating all builtins that the language
9906 front end cares about. This will build the rest of the builtins that
9907 are relied upon by the tree optimizers and the middle-end. */
9910 build_common_builtin_nodes (void)
9915 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE
))
9917 ftype
= build_function_type (void_type_node
, void_list_node
);
9918 local_define_builtin ("__builtin_unreachable", ftype
, BUILT_IN_UNREACHABLE
,
9919 "__builtin_unreachable",
9920 ECF_NOTHROW
| ECF_LEAF
| ECF_NORETURN
9921 | ECF_CONST
| ECF_LEAF
);
9924 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
)
9925 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
9927 ftype
= build_function_type_list (ptr_type_node
,
9928 ptr_type_node
, const_ptr_type_node
,
9929 size_type_node
, NULL_TREE
);
9931 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
))
9932 local_define_builtin ("__builtin_memcpy", ftype
, BUILT_IN_MEMCPY
,
9933 "memcpy", ECF_NOTHROW
| ECF_LEAF
);
9934 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
9935 local_define_builtin ("__builtin_memmove", ftype
, BUILT_IN_MEMMOVE
,
9936 "memmove", ECF_NOTHROW
| ECF_LEAF
);
9939 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP
))
9941 ftype
= build_function_type_list (integer_type_node
, const_ptr_type_node
,
9942 const_ptr_type_node
, size_type_node
,
9944 local_define_builtin ("__builtin_memcmp", ftype
, BUILT_IN_MEMCMP
,
9945 "memcmp", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
9948 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET
))
9950 ftype
= build_function_type_list (ptr_type_node
,
9951 ptr_type_node
, integer_type_node
,
9952 size_type_node
, NULL_TREE
);
9953 local_define_builtin ("__builtin_memset", ftype
, BUILT_IN_MEMSET
,
9954 "memset", ECF_NOTHROW
| ECF_LEAF
);
9957 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA
))
9959 ftype
= build_function_type_list (ptr_type_node
,
9960 size_type_node
, NULL_TREE
);
9961 local_define_builtin ("__builtin_alloca", ftype
, BUILT_IN_ALLOCA
,
9962 "alloca", ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
9965 ftype
= build_function_type_list (ptr_type_node
, size_type_node
,
9966 size_type_node
, NULL_TREE
);
9967 local_define_builtin ("__builtin_alloca_with_align", ftype
,
9968 BUILT_IN_ALLOCA_WITH_ALIGN
, "alloca",
9969 ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
9971 /* If we're checking the stack, `alloca' can throw. */
9972 if (flag_stack_check
)
9974 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA
)) = 0;
9975 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
)) = 0;
9978 ftype
= build_function_type_list (void_type_node
,
9979 ptr_type_node
, ptr_type_node
,
9980 ptr_type_node
, NULL_TREE
);
9981 local_define_builtin ("__builtin_init_trampoline", ftype
,
9982 BUILT_IN_INIT_TRAMPOLINE
,
9983 "__builtin_init_trampoline", ECF_NOTHROW
| ECF_LEAF
);
9984 local_define_builtin ("__builtin_init_heap_trampoline", ftype
,
9985 BUILT_IN_INIT_HEAP_TRAMPOLINE
,
9986 "__builtin_init_heap_trampoline",
9987 ECF_NOTHROW
| ECF_LEAF
);
9989 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
9990 local_define_builtin ("__builtin_adjust_trampoline", ftype
,
9991 BUILT_IN_ADJUST_TRAMPOLINE
,
9992 "__builtin_adjust_trampoline",
9993 ECF_CONST
| ECF_NOTHROW
);
9995 ftype
= build_function_type_list (void_type_node
,
9996 ptr_type_node
, ptr_type_node
, NULL_TREE
);
9997 local_define_builtin ("__builtin_nonlocal_goto", ftype
,
9998 BUILT_IN_NONLOCAL_GOTO
,
9999 "__builtin_nonlocal_goto",
10000 ECF_NORETURN
| ECF_NOTHROW
);
10002 ftype
= build_function_type_list (void_type_node
,
10003 ptr_type_node
, ptr_type_node
, NULL_TREE
);
10004 local_define_builtin ("__builtin_setjmp_setup", ftype
,
10005 BUILT_IN_SETJMP_SETUP
,
10006 "__builtin_setjmp_setup", ECF_NOTHROW
);
10008 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
10009 local_define_builtin ("__builtin_setjmp_receiver", ftype
,
10010 BUILT_IN_SETJMP_RECEIVER
,
10011 "__builtin_setjmp_receiver", ECF_NOTHROW
| ECF_LEAF
);
10013 ftype
= build_function_type_list (ptr_type_node
, NULL_TREE
);
10014 local_define_builtin ("__builtin_stack_save", ftype
, BUILT_IN_STACK_SAVE
,
10015 "__builtin_stack_save", ECF_NOTHROW
| ECF_LEAF
);
10017 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
10018 local_define_builtin ("__builtin_stack_restore", ftype
,
10019 BUILT_IN_STACK_RESTORE
,
10020 "__builtin_stack_restore", ECF_NOTHROW
| ECF_LEAF
);
10022 /* If there's a possibility that we might use the ARM EABI, build the
10023 alternate __cxa_end_cleanup node used to resume from C++ and Java. */
10024 if (targetm
.arm_eabi_unwinder
)
10026 ftype
= build_function_type_list (void_type_node
, NULL_TREE
);
10027 local_define_builtin ("__builtin_cxa_end_cleanup", ftype
,
10028 BUILT_IN_CXA_END_CLEANUP
,
10029 "__cxa_end_cleanup", ECF_NORETURN
| ECF_LEAF
);
10032 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
10033 local_define_builtin ("__builtin_unwind_resume", ftype
,
10034 BUILT_IN_UNWIND_RESUME
,
10035 ((targetm_common
.except_unwind_info (&global_options
)
10037 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10040 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS
) == NULL_TREE
)
10042 ftype
= build_function_type_list (ptr_type_node
, integer_type_node
,
10044 local_define_builtin ("__builtin_return_address", ftype
,
10045 BUILT_IN_RETURN_ADDRESS
,
10046 "__builtin_return_address",
10050 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
)
10051 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
10053 ftype
= build_function_type_list (void_type_node
, ptr_type_node
,
10054 ptr_type_node
, NULL_TREE
);
10055 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
))
10056 local_define_builtin ("__cyg_profile_func_enter", ftype
,
10057 BUILT_IN_PROFILE_FUNC_ENTER
,
10058 "__cyg_profile_func_enter", 0);
10059 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
10060 local_define_builtin ("__cyg_profile_func_exit", ftype
,
10061 BUILT_IN_PROFILE_FUNC_EXIT
,
10062 "__cyg_profile_func_exit", 0);
10065 /* The exception object and filter values from the runtime. The argument
10066 must be zero before exception lowering, i.e. from the front end. After
10067 exception lowering, it will be the region number for the exception
10068 landing pad. These functions are PURE instead of CONST to prevent
10069 them from being hoisted past the exception edge that will initialize
10070 its value in the landing pad. */
10071 ftype
= build_function_type_list (ptr_type_node
,
10072 integer_type_node
, NULL_TREE
);
10073 ecf_flags
= ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
;
10074 /* Only use TM_PURE if we we have TM language support. */
10075 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1
))
10076 ecf_flags
|= ECF_TM_PURE
;
10077 local_define_builtin ("__builtin_eh_pointer", ftype
, BUILT_IN_EH_POINTER
,
10078 "__builtin_eh_pointer", ecf_flags
);
10080 tmp
= lang_hooks
.types
.type_for_mode (targetm
.eh_return_filter_mode (), 0);
10081 ftype
= build_function_type_list (tmp
, integer_type_node
, NULL_TREE
);
10082 local_define_builtin ("__builtin_eh_filter", ftype
, BUILT_IN_EH_FILTER
,
10083 "__builtin_eh_filter", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
10085 ftype
= build_function_type_list (void_type_node
,
10086 integer_type_node
, integer_type_node
,
10088 local_define_builtin ("__builtin_eh_copy_values", ftype
,
10089 BUILT_IN_EH_COPY_VALUES
,
10090 "__builtin_eh_copy_values", ECF_NOTHROW
);
10092 /* Complex multiplication and division. These are handled as builtins
10093 rather than optabs because emit_library_call_value doesn't support
10094 complex. Further, we can do slightly better with folding these
10095 beasties if the real and complex parts of the arguments are separate. */
10099 for (mode
= MIN_MODE_COMPLEX_FLOAT
; mode
<= MAX_MODE_COMPLEX_FLOAT
; ++mode
)
10101 char mode_name_buf
[4], *q
;
10103 enum built_in_function mcode
, dcode
;
10104 tree type
, inner_type
;
10105 const char *prefix
= "__";
10107 if (targetm
.libfunc_gnu_prefix
)
10110 type
= lang_hooks
.types
.type_for_mode ((enum machine_mode
) mode
, 0);
10113 inner_type
= TREE_TYPE (type
);
10115 ftype
= build_function_type_list (type
, inner_type
, inner_type
,
10116 inner_type
, inner_type
, NULL_TREE
);
10118 mcode
= ((enum built_in_function
)
10119 (BUILT_IN_COMPLEX_MUL_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
10120 dcode
= ((enum built_in_function
)
10121 (BUILT_IN_COMPLEX_DIV_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
10123 for (p
= GET_MODE_NAME (mode
), q
= mode_name_buf
; *p
; p
++, q
++)
10127 built_in_names
[mcode
] = concat (prefix
, "mul", mode_name_buf
, "3",
10129 local_define_builtin (built_in_names
[mcode
], ftype
, mcode
,
10130 built_in_names
[mcode
],
10131 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
10133 built_in_names
[dcode
] = concat (prefix
, "div", mode_name_buf
, "3",
10135 local_define_builtin (built_in_names
[dcode
], ftype
, dcode
,
10136 built_in_names
[dcode
],
10137 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
10142 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10145 If we requested a pointer to a vector, build up the pointers that
10146 we stripped off while looking for the inner type. Similarly for
10147 return values from functions.
10149 The argument TYPE is the top of the chain, and BOTTOM is the
10150 new type which we will point to. */
10153 reconstruct_complex_type (tree type
, tree bottom
)
10157 if (TREE_CODE (type
) == POINTER_TYPE
)
10159 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10160 outer
= build_pointer_type_for_mode (inner
, TYPE_MODE (type
),
10161 TYPE_REF_CAN_ALIAS_ALL (type
));
10163 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
10165 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10166 outer
= build_reference_type_for_mode (inner
, TYPE_MODE (type
),
10167 TYPE_REF_CAN_ALIAS_ALL (type
));
10169 else if (TREE_CODE (type
) == ARRAY_TYPE
)
10171 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10172 outer
= build_array_type (inner
, TYPE_DOMAIN (type
));
10174 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
10176 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10177 outer
= build_function_type (inner
, TYPE_ARG_TYPES (type
));
10179 else if (TREE_CODE (type
) == METHOD_TYPE
)
10181 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10182 /* The build_method_type_directly() routine prepends 'this' to argument list,
10183 so we must compensate by getting rid of it. */
10185 = build_method_type_directly
10186 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type
))),
10188 TREE_CHAIN (TYPE_ARG_TYPES (type
)));
10190 else if (TREE_CODE (type
) == OFFSET_TYPE
)
10192 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10193 outer
= build_offset_type (TYPE_OFFSET_BASETYPE (type
), inner
);
10198 return build_type_attribute_qual_variant (outer
, TYPE_ATTRIBUTES (type
),
10199 TYPE_QUALS (type
));
10202 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10205 build_vector_type_for_mode (tree innertype
, enum machine_mode mode
)
10209 switch (GET_MODE_CLASS (mode
))
10211 case MODE_VECTOR_INT
:
10212 case MODE_VECTOR_FLOAT
:
10213 case MODE_VECTOR_FRACT
:
10214 case MODE_VECTOR_UFRACT
:
10215 case MODE_VECTOR_ACCUM
:
10216 case MODE_VECTOR_UACCUM
:
10217 nunits
= GET_MODE_NUNITS (mode
);
10221 /* Check that there are no leftover bits. */
10222 gcc_assert (GET_MODE_BITSIZE (mode
)
10223 % TREE_INT_CST_LOW (TYPE_SIZE (innertype
)) == 0);
10225 nunits
= GET_MODE_BITSIZE (mode
)
10226 / TREE_INT_CST_LOW (TYPE_SIZE (innertype
));
10230 gcc_unreachable ();
10233 return make_vector_type (innertype
, nunits
, mode
);
10236 /* Similarly, but takes the inner type and number of units, which must be
10240 build_vector_type (tree innertype
, int nunits
)
10242 return make_vector_type (innertype
, nunits
, VOIDmode
);
10245 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10248 build_opaque_vector_type (tree innertype
, int nunits
)
10250 tree t
= make_vector_type (innertype
, nunits
, VOIDmode
);
10252 /* We always build the non-opaque variant before the opaque one,
10253 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10254 cand
= TYPE_NEXT_VARIANT (t
);
10256 && TYPE_VECTOR_OPAQUE (cand
)
10257 && check_qualified_type (cand
, t
, TYPE_QUALS (t
)))
10259 /* Othewise build a variant type and make sure to queue it after
10260 the non-opaque type. */
10261 cand
= build_distinct_type_copy (t
);
10262 TYPE_VECTOR_OPAQUE (cand
) = true;
10263 TYPE_CANONICAL (cand
) = TYPE_CANONICAL (t
);
10264 TYPE_NEXT_VARIANT (cand
) = TYPE_NEXT_VARIANT (t
);
10265 TYPE_NEXT_VARIANT (t
) = cand
;
10266 TYPE_MAIN_VARIANT (cand
) = TYPE_MAIN_VARIANT (t
);
10271 /* Given an initializer INIT, return TRUE if INIT is zero or some
10272 aggregate of zeros. Otherwise return FALSE. */
10274 initializer_zerop (const_tree init
)
10280 switch (TREE_CODE (init
))
10283 return integer_zerop (init
);
10286 /* ??? Note that this is not correct for C4X float formats. There,
10287 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
10288 negative exponent. */
10289 return real_zerop (init
)
10290 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init
));
10293 return fixed_zerop (init
);
10296 return integer_zerop (init
)
10297 || (real_zerop (init
)
10298 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init
)))
10299 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init
))));
10304 for (i
= 0; i
< VECTOR_CST_NELTS (init
); ++i
)
10305 if (!initializer_zerop (VECTOR_CST_ELT (init
, i
)))
10312 unsigned HOST_WIDE_INT idx
;
10314 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init
), idx
, elt
)
10315 if (!initializer_zerop (elt
))
10324 /* We need to loop through all elements to handle cases like
10325 "\0" and "\0foobar". */
10326 for (i
= 0; i
< TREE_STRING_LENGTH (init
); ++i
)
10327 if (TREE_STRING_POINTER (init
)[i
] != '\0')
10338 /* Check if vector VEC consists of all the equal elements and
10339 that the number of elements corresponds to the type of VEC.
10340 The function returns first element of the vector
10341 or NULL_TREE if the vector is not uniform. */
10343 uniform_vector_p (const_tree vec
)
10348 if (vec
== NULL_TREE
)
10351 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec
)));
10353 if (TREE_CODE (vec
) == VECTOR_CST
)
10355 first
= VECTOR_CST_ELT (vec
, 0);
10356 for (i
= 1; i
< VECTOR_CST_NELTS (vec
); ++i
)
10357 if (!operand_equal_p (first
, VECTOR_CST_ELT (vec
, i
), 0))
10363 else if (TREE_CODE (vec
) == CONSTRUCTOR
)
10365 first
= error_mark_node
;
10367 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec
), i
, t
)
10374 if (!operand_equal_p (first
, t
, 0))
10377 if (i
!= TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec
)))
10386 /* Build an empty statement at location LOC. */
10389 build_empty_stmt (location_t loc
)
10391 tree t
= build1 (NOP_EXPR
, void_type_node
, size_zero_node
);
10392 SET_EXPR_LOCATION (t
, loc
);
10397 /* Build an OpenMP clause with code CODE. LOC is the location of the
10401 build_omp_clause (location_t loc
, enum omp_clause_code code
)
10406 length
= omp_clause_num_ops
[code
];
10407 size
= (sizeof (struct tree_omp_clause
) + (length
- 1) * sizeof (tree
));
10409 record_node_allocation_statistics (OMP_CLAUSE
, size
);
10411 t
= ggc_alloc_tree_node (size
);
10412 memset (t
, 0, size
);
10413 TREE_SET_CODE (t
, OMP_CLAUSE
);
10414 OMP_CLAUSE_SET_CODE (t
, code
);
10415 OMP_CLAUSE_LOCATION (t
) = loc
;
10420 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10421 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10422 Except for the CODE and operand count field, other storage for the
10423 object is initialized to zeros. */
10426 build_vl_exp_stat (enum tree_code code
, int len MEM_STAT_DECL
)
10429 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_exp
);
10431 gcc_assert (TREE_CODE_CLASS (code
) == tcc_vl_exp
);
10432 gcc_assert (len
>= 1);
10434 record_node_allocation_statistics (code
, length
);
10436 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
10438 TREE_SET_CODE (t
, code
);
10440 /* Can't use TREE_OPERAND to store the length because if checking is
10441 enabled, it will try to check the length before we store it. :-P */
10442 t
->exp
.operands
[0] = build_int_cst (sizetype
, len
);
10447 /* Helper function for build_call_* functions; build a CALL_EXPR with
10448 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10449 the argument slots. */
10452 build_call_1 (tree return_type
, tree fn
, int nargs
)
10456 t
= build_vl_exp (CALL_EXPR
, nargs
+ 3);
10457 TREE_TYPE (t
) = return_type
;
10458 CALL_EXPR_FN (t
) = fn
;
10459 CALL_EXPR_STATIC_CHAIN (t
) = NULL
;
10464 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10465 FN and a null static chain slot. NARGS is the number of call arguments
10466 which are specified as "..." arguments. */
10469 build_call_nary (tree return_type
, tree fn
, int nargs
, ...)
10473 va_start (args
, nargs
);
10474 ret
= build_call_valist (return_type
, fn
, nargs
, args
);
10479 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10480 FN and a null static chain slot. NARGS is the number of call arguments
10481 which are specified as a va_list ARGS. */
10484 build_call_valist (tree return_type
, tree fn
, int nargs
, va_list args
)
10489 t
= build_call_1 (return_type
, fn
, nargs
);
10490 for (i
= 0; i
< nargs
; i
++)
10491 CALL_EXPR_ARG (t
, i
) = va_arg (args
, tree
);
10492 process_call_operands (t
);
10496 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10497 FN and a null static chain slot. NARGS is the number of call arguments
10498 which are specified as a tree array ARGS. */
10501 build_call_array_loc (location_t loc
, tree return_type
, tree fn
,
10502 int nargs
, const tree
*args
)
10507 t
= build_call_1 (return_type
, fn
, nargs
);
10508 for (i
= 0; i
< nargs
; i
++)
10509 CALL_EXPR_ARG (t
, i
) = args
[i
];
10510 process_call_operands (t
);
10511 SET_EXPR_LOCATION (t
, loc
);
10515 /* Like build_call_array, but takes a vec. */
10518 build_call_vec (tree return_type
, tree fn
, vec
<tree
, va_gc
> *args
)
10523 ret
= build_call_1 (return_type
, fn
, vec_safe_length (args
));
10524 FOR_EACH_VEC_SAFE_ELT (args
, ix
, t
)
10525 CALL_EXPR_ARG (ret
, ix
) = t
;
10526 process_call_operands (ret
);
10530 /* Return true if T (assumed to be a DECL) must be assigned a memory
10534 needs_to_live_in_memory (const_tree t
)
10536 return (TREE_ADDRESSABLE (t
)
10537 || is_global_var (t
)
10538 || (TREE_CODE (t
) == RESULT_DECL
10539 && !DECL_BY_REFERENCE (t
)
10540 && aggregate_value_p (t
, current_function_decl
)));
10543 /* Return value of a constant X and sign-extend it. */
10546 int_cst_value (const_tree x
)
10548 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
10549 unsigned HOST_WIDE_INT val
= TREE_INT_CST_LOW (x
);
10551 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10552 gcc_assert (TREE_INT_CST_HIGH (x
) == 0
10553 || TREE_INT_CST_HIGH (x
) == -1);
10555 if (bits
< HOST_BITS_PER_WIDE_INT
)
10557 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
10559 val
|= (~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1;
10561 val
&= ~((~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1);
10567 /* Return value of a constant X and sign-extend it. */
10570 widest_int_cst_value (const_tree x
)
10572 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
10573 unsigned HOST_WIDEST_INT val
= TREE_INT_CST_LOW (x
);
10575 #if HOST_BITS_PER_WIDEST_INT > HOST_BITS_PER_WIDE_INT
10576 gcc_assert (HOST_BITS_PER_WIDEST_INT
>= HOST_BITS_PER_DOUBLE_INT
);
10577 val
|= (((unsigned HOST_WIDEST_INT
) TREE_INT_CST_HIGH (x
))
10578 << HOST_BITS_PER_WIDE_INT
);
10580 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10581 gcc_assert (TREE_INT_CST_HIGH (x
) == 0
10582 || TREE_INT_CST_HIGH (x
) == -1);
10585 if (bits
< HOST_BITS_PER_WIDEST_INT
)
10587 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
10589 val
|= (~(unsigned HOST_WIDEST_INT
) 0) << (bits
- 1) << 1;
10591 val
&= ~((~(unsigned HOST_WIDEST_INT
) 0) << (bits
- 1) << 1);
10597 /* If TYPE is an integral or pointer type, return an integer type with
10598 the same precision which is unsigned iff UNSIGNEDP is true, or itself
10599 if TYPE is already an integer type of signedness UNSIGNEDP. */
10602 signed_or_unsigned_type_for (int unsignedp
, tree type
)
10604 if (TREE_CODE (type
) == INTEGER_TYPE
&& TYPE_UNSIGNED (type
) == unsignedp
)
10607 if (TREE_CODE (type
) == VECTOR_TYPE
)
10609 tree inner
= TREE_TYPE (type
);
10610 tree inner2
= signed_or_unsigned_type_for (unsignedp
, inner
);
10613 if (inner
== inner2
)
10615 return build_vector_type (inner2
, TYPE_VECTOR_SUBPARTS (type
));
10618 if (!INTEGRAL_TYPE_P (type
)
10619 && !POINTER_TYPE_P (type
))
10622 return build_nonstandard_integer_type (TYPE_PRECISION (type
), unsignedp
);
10625 /* If TYPE is an integral or pointer type, return an integer type with
10626 the same precision which is unsigned, or itself if TYPE is already an
10627 unsigned integer type. */
10630 unsigned_type_for (tree type
)
10632 return signed_or_unsigned_type_for (1, type
);
10635 /* If TYPE is an integral or pointer type, return an integer type with
10636 the same precision which is signed, or itself if TYPE is already a
10637 signed integer type. */
10640 signed_type_for (tree type
)
10642 return signed_or_unsigned_type_for (0, type
);
10645 /* If TYPE is a vector type, return a signed integer vector type with the
10646 same width and number of subparts. Otherwise return boolean_type_node. */
10649 truth_type_for (tree type
)
10651 if (TREE_CODE (type
) == VECTOR_TYPE
)
10653 tree elem
= lang_hooks
.types
.type_for_size
10654 (GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type
))), 0);
10655 return build_opaque_vector_type (elem
, TYPE_VECTOR_SUBPARTS (type
));
10658 return boolean_type_node
;
10661 /* Returns the largest value obtainable by casting something in INNER type to
10665 upper_bound_in_type (tree outer
, tree inner
)
10668 unsigned int det
= 0;
10669 unsigned oprec
= TYPE_PRECISION (outer
);
10670 unsigned iprec
= TYPE_PRECISION (inner
);
10673 /* Compute a unique number for every combination. */
10674 det
|= (oprec
> iprec
) ? 4 : 0;
10675 det
|= TYPE_UNSIGNED (outer
) ? 2 : 0;
10676 det
|= TYPE_UNSIGNED (inner
) ? 1 : 0;
10678 /* Determine the exponent to use. */
10683 /* oprec <= iprec, outer: signed, inner: don't care. */
10688 /* oprec <= iprec, outer: unsigned, inner: don't care. */
10692 /* oprec > iprec, outer: signed, inner: signed. */
10696 /* oprec > iprec, outer: signed, inner: unsigned. */
10700 /* oprec > iprec, outer: unsigned, inner: signed. */
10704 /* oprec > iprec, outer: unsigned, inner: unsigned. */
10708 gcc_unreachable ();
10711 /* Compute 2^^prec - 1. */
10712 if (prec
<= HOST_BITS_PER_WIDE_INT
)
10715 high
.low
= ((~(unsigned HOST_WIDE_INT
) 0)
10716 >> (HOST_BITS_PER_WIDE_INT
- prec
));
10720 high
.high
= ((~(unsigned HOST_WIDE_INT
) 0)
10721 >> (HOST_BITS_PER_DOUBLE_INT
- prec
));
10722 high
.low
= ~(unsigned HOST_WIDE_INT
) 0;
10725 return double_int_to_tree (outer
, high
);
10728 /* Returns the smallest value obtainable by casting something in INNER type to
10732 lower_bound_in_type (tree outer
, tree inner
)
10735 unsigned oprec
= TYPE_PRECISION (outer
);
10736 unsigned iprec
= TYPE_PRECISION (inner
);
10738 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
10740 if (TYPE_UNSIGNED (outer
)
10741 /* If we are widening something of an unsigned type, OUTER type
10742 contains all values of INNER type. In particular, both INNER
10743 and OUTER types have zero in common. */
10744 || (oprec
> iprec
&& TYPE_UNSIGNED (inner
)))
10745 low
.low
= low
.high
= 0;
10748 /* If we are widening a signed type to another signed type, we
10749 want to obtain -2^^(iprec-1). If we are keeping the
10750 precision or narrowing to a signed type, we want to obtain
10752 unsigned prec
= oprec
> iprec
? iprec
: oprec
;
10754 if (prec
<= HOST_BITS_PER_WIDE_INT
)
10756 low
.high
= ~(unsigned HOST_WIDE_INT
) 0;
10757 low
.low
= (~(unsigned HOST_WIDE_INT
) 0) << (prec
- 1);
10761 low
.high
= ((~(unsigned HOST_WIDE_INT
) 0)
10762 << (prec
- HOST_BITS_PER_WIDE_INT
- 1));
10767 return double_int_to_tree (outer
, low
);
10770 /* Return nonzero if two operands that are suitable for PHI nodes are
10771 necessarily equal. Specifically, both ARG0 and ARG1 must be either
10772 SSA_NAME or invariant. Note that this is strictly an optimization.
10773 That is, callers of this function can directly call operand_equal_p
10774 and get the same result, only slower. */
10777 operand_equal_for_phi_arg_p (const_tree arg0
, const_tree arg1
)
10781 if (TREE_CODE (arg0
) == SSA_NAME
|| TREE_CODE (arg1
) == SSA_NAME
)
10783 return operand_equal_p (arg0
, arg1
, 0);
10786 /* Returns number of zeros at the end of binary representation of X.
10788 ??? Use ffs if available? */
10791 num_ending_zeros (const_tree x
)
10793 unsigned HOST_WIDE_INT fr
, nfr
;
10794 unsigned num
, abits
;
10795 tree type
= TREE_TYPE (x
);
10797 if (TREE_INT_CST_LOW (x
) == 0)
10799 num
= HOST_BITS_PER_WIDE_INT
;
10800 fr
= TREE_INT_CST_HIGH (x
);
10805 fr
= TREE_INT_CST_LOW (x
);
10808 for (abits
= HOST_BITS_PER_WIDE_INT
/ 2; abits
; abits
/= 2)
10811 if (nfr
<< abits
== fr
)
10818 if (num
> TYPE_PRECISION (type
))
10819 num
= TYPE_PRECISION (type
);
10821 return build_int_cst_type (type
, num
);
10825 #define WALK_SUBTREE(NODE) \
10828 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
10834 /* This is a subroutine of walk_tree that walks field of TYPE that are to
10835 be walked whenever a type is seen in the tree. Rest of operands and return
10836 value are as for walk_tree. */
10839 walk_type_fields (tree type
, walk_tree_fn func
, void *data
,
10840 struct pointer_set_t
*pset
, walk_tree_lh lh
)
10842 tree result
= NULL_TREE
;
10844 switch (TREE_CODE (type
))
10847 case REFERENCE_TYPE
:
10849 /* We have to worry about mutually recursive pointers. These can't
10850 be written in C. They can in Ada. It's pathological, but
10851 there's an ACATS test (c38102a) that checks it. Deal with this
10852 by checking if we're pointing to another pointer, that one
10853 points to another pointer, that one does too, and we have no htab.
10854 If so, get a hash table. We check three levels deep to avoid
10855 the cost of the hash table if we don't need one. */
10856 if (POINTER_TYPE_P (TREE_TYPE (type
))
10857 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type
)))
10858 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type
))))
10861 result
= walk_tree_without_duplicates (&TREE_TYPE (type
),
10869 /* ... fall through ... */
10872 WALK_SUBTREE (TREE_TYPE (type
));
10876 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type
));
10878 /* Fall through. */
10880 case FUNCTION_TYPE
:
10881 WALK_SUBTREE (TREE_TYPE (type
));
10885 /* We never want to walk into default arguments. */
10886 for (arg
= TYPE_ARG_TYPES (type
); arg
; arg
= TREE_CHAIN (arg
))
10887 WALK_SUBTREE (TREE_VALUE (arg
));
10892 /* Don't follow this nodes's type if a pointer for fear that
10893 we'll have infinite recursion. If we have a PSET, then we
10896 || (!POINTER_TYPE_P (TREE_TYPE (type
))
10897 && TREE_CODE (TREE_TYPE (type
)) != OFFSET_TYPE
))
10898 WALK_SUBTREE (TREE_TYPE (type
));
10899 WALK_SUBTREE (TYPE_DOMAIN (type
));
10903 WALK_SUBTREE (TREE_TYPE (type
));
10904 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type
));
10914 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
10915 called with the DATA and the address of each sub-tree. If FUNC returns a
10916 non-NULL value, the traversal is stopped, and the value returned by FUNC
10917 is returned. If PSET is non-NULL it is used to record the nodes visited,
10918 and to avoid visiting a node more than once. */
10921 walk_tree_1 (tree
*tp
, walk_tree_fn func
, void *data
,
10922 struct pointer_set_t
*pset
, walk_tree_lh lh
)
10924 enum tree_code code
;
10928 #define WALK_SUBTREE_TAIL(NODE) \
10932 goto tail_recurse; \
10937 /* Skip empty subtrees. */
10941 /* Don't walk the same tree twice, if the user has requested
10942 that we avoid doing so. */
10943 if (pset
&& pointer_set_insert (pset
, *tp
))
10946 /* Call the function. */
10948 result
= (*func
) (tp
, &walk_subtrees
, data
);
10950 /* If we found something, return it. */
10954 code
= TREE_CODE (*tp
);
10956 /* Even if we didn't, FUNC may have decided that there was nothing
10957 interesting below this point in the tree. */
10958 if (!walk_subtrees
)
10960 /* But we still need to check our siblings. */
10961 if (code
== TREE_LIST
)
10962 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
10963 else if (code
== OMP_CLAUSE
)
10964 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10971 result
= (*lh
) (tp
, &walk_subtrees
, func
, data
, pset
);
10972 if (result
|| !walk_subtrees
)
10979 case IDENTIFIER_NODE
:
10986 case PLACEHOLDER_EXPR
:
10990 /* None of these have subtrees other than those already walked
10995 WALK_SUBTREE (TREE_VALUE (*tp
));
10996 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
11001 int len
= TREE_VEC_LENGTH (*tp
);
11006 /* Walk all elements but the first. */
11008 WALK_SUBTREE (TREE_VEC_ELT (*tp
, len
));
11010 /* Now walk the first one as a tail call. */
11011 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp
, 0));
11015 WALK_SUBTREE (TREE_REALPART (*tp
));
11016 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp
));
11020 unsigned HOST_WIDE_INT idx
;
11021 constructor_elt
*ce
;
11023 for (idx
= 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp
), idx
, &ce
);
11025 WALK_SUBTREE (ce
->value
);
11030 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, 0));
11035 for (decl
= BIND_EXPR_VARS (*tp
); decl
; decl
= DECL_CHAIN (decl
))
11037 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
11038 into declarations that are just mentioned, rather than
11039 declared; they don't really belong to this part of the tree.
11040 And, we can see cycles: the initializer for a declaration
11041 can refer to the declaration itself. */
11042 WALK_SUBTREE (DECL_INITIAL (decl
));
11043 WALK_SUBTREE (DECL_SIZE (decl
));
11044 WALK_SUBTREE (DECL_SIZE_UNIT (decl
));
11046 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp
));
11049 case STATEMENT_LIST
:
11051 tree_stmt_iterator i
;
11052 for (i
= tsi_start (*tp
); !tsi_end_p (i
); tsi_next (&i
))
11053 WALK_SUBTREE (*tsi_stmt_ptr (i
));
11058 switch (OMP_CLAUSE_CODE (*tp
))
11060 case OMP_CLAUSE_HOST
:
11061 case OMP_CLAUSE_OACC_DEVICE
:
11062 case OMP_CLAUSE_DEVICE_RESIDENT
:
11063 case OMP_CLAUSE_USE_DEVICE
:
11064 case OMP_CLAUSE_GANG
:
11065 case OMP_CLAUSE_ASYNC
:
11066 case OMP_CLAUSE_WAIT
:
11067 case OMP_NO_CLAUSE_CACHE
:
11068 case OMP_CLAUSE_WORKER
:
11069 case OMP_CLAUSE_VECTOR
:
11070 case OMP_CLAUSE_NUM_GANGS
:
11071 case OMP_CLAUSE_NUM_WORKERS
:
11072 case OMP_CLAUSE_VECTOR_LENGTH
:
11073 case OMP_CLAUSE_PRIVATE
:
11074 case OMP_CLAUSE_SHARED
:
11075 case OMP_CLAUSE_FIRSTPRIVATE
:
11076 case OMP_CLAUSE_COPYIN
:
11077 case OMP_CLAUSE_COPYPRIVATE
:
11078 case OMP_CLAUSE_FINAL
:
11079 case OMP_CLAUSE_IF
:
11080 case OMP_CLAUSE_NUM_THREADS
:
11081 case OMP_CLAUSE_SCHEDULE
:
11082 case OMP_CLAUSE_UNIFORM
:
11083 case OMP_CLAUSE_DEPEND
:
11084 case OMP_CLAUSE_NUM_TEAMS
:
11085 case OMP_CLAUSE_THREAD_LIMIT
:
11086 case OMP_CLAUSE_DEVICE
:
11087 case OMP_CLAUSE_DIST_SCHEDULE
:
11088 case OMP_CLAUSE_SAFELEN
:
11089 case OMP_CLAUSE_SIMDLEN
:
11090 case OMP_CLAUSE__LOOPTEMP_
:
11091 case OMP_CLAUSE__SIMDUID_
:
11092 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 0));
11095 case OMP_CLAUSE_INDEPENDENT
:
11096 case OMP_CLAUSE_NOWAIT
:
11097 case OMP_CLAUSE_ORDERED
:
11098 case OMP_CLAUSE_DEFAULT
:
11099 case OMP_CLAUSE_UNTIED
:
11100 case OMP_CLAUSE_MERGEABLE
:
11101 case OMP_CLAUSE_PROC_BIND
:
11102 case OMP_CLAUSE_INBRANCH
:
11103 case OMP_CLAUSE_NOTINBRANCH
:
11104 case OMP_CLAUSE_FOR
:
11105 case OMP_CLAUSE_PARALLEL
:
11106 case OMP_CLAUSE_SECTIONS
:
11107 case OMP_CLAUSE_TASKGROUP
:
11108 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11110 case OMP_CLAUSE_LASTPRIVATE
:
11111 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
11112 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp
));
11113 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11115 case OMP_CLAUSE_COLLAPSE
:
11118 for (i
= 0; i
< 3; i
++)
11119 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
11120 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11123 case OMP_CLAUSE_ALIGNED
:
11124 case OMP_CLAUSE_LINEAR
:
11125 case OMP_CLAUSE_FROM
:
11126 case OMP_CLAUSE_TO
:
11127 case OMP_CLAUSE_MAP
:
11128 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
11129 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 1));
11130 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11132 case OMP_CLAUSE_REDUCTION
:
11135 for (i
= 0; i
< 4; i
++)
11136 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
11137 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11141 gcc_unreachable ();
11149 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
11150 But, we only want to walk once. */
11151 len
= (TREE_OPERAND (*tp
, 3) == TREE_OPERAND (*tp
, 1)) ? 2 : 3;
11152 for (i
= 0; i
< len
; ++i
)
11153 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
11154 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
));
11158 /* If this is a TYPE_DECL, walk into the fields of the type that it's
11159 defining. We only want to walk into these fields of a type in this
11160 case and not in the general case of a mere reference to the type.
11162 The criterion is as follows: if the field can be an expression, it
11163 must be walked only here. This should be in keeping with the fields
11164 that are directly gimplified in gimplify_type_sizes in order for the
11165 mark/copy-if-shared/unmark machinery of the gimplifier to work with
11166 variable-sized types.
11168 Note that DECLs get walked as part of processing the BIND_EXPR. */
11169 if (TREE_CODE (DECL_EXPR_DECL (*tp
)) == TYPE_DECL
)
11171 tree
*type_p
= &TREE_TYPE (DECL_EXPR_DECL (*tp
));
11172 if (TREE_CODE (*type_p
) == ERROR_MARK
)
11175 /* Call the function for the type. See if it returns anything or
11176 doesn't want us to continue. If we are to continue, walk both
11177 the normal fields and those for the declaration case. */
11178 result
= (*func
) (type_p
, &walk_subtrees
, data
);
11179 if (result
|| !walk_subtrees
)
11182 /* But do not walk a pointed-to type since it may itself need to
11183 be walked in the declaration case if it isn't anonymous. */
11184 if (!POINTER_TYPE_P (*type_p
))
11186 result
= walk_type_fields (*type_p
, func
, data
, pset
, lh
);
11191 /* If this is a record type, also walk the fields. */
11192 if (RECORD_OR_UNION_TYPE_P (*type_p
))
11196 for (field
= TYPE_FIELDS (*type_p
); field
;
11197 field
= DECL_CHAIN (field
))
11199 /* We'd like to look at the type of the field, but we can
11200 easily get infinite recursion. So assume it's pointed
11201 to elsewhere in the tree. Also, ignore things that
11203 if (TREE_CODE (field
) != FIELD_DECL
)
11206 WALK_SUBTREE (DECL_FIELD_OFFSET (field
));
11207 WALK_SUBTREE (DECL_SIZE (field
));
11208 WALK_SUBTREE (DECL_SIZE_UNIT (field
));
11209 if (TREE_CODE (*type_p
) == QUAL_UNION_TYPE
)
11210 WALK_SUBTREE (DECL_QUALIFIER (field
));
11214 /* Same for scalar types. */
11215 else if (TREE_CODE (*type_p
) == BOOLEAN_TYPE
11216 || TREE_CODE (*type_p
) == ENUMERAL_TYPE
11217 || TREE_CODE (*type_p
) == INTEGER_TYPE
11218 || TREE_CODE (*type_p
) == FIXED_POINT_TYPE
11219 || TREE_CODE (*type_p
) == REAL_TYPE
)
11221 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p
));
11222 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p
));
11225 WALK_SUBTREE (TYPE_SIZE (*type_p
));
11226 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p
));
11231 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code
)))
11235 /* Walk over all the sub-trees of this operand. */
11236 len
= TREE_OPERAND_LENGTH (*tp
);
11238 /* Go through the subtrees. We need to do this in forward order so
11239 that the scope of a FOR_EXPR is handled properly. */
11242 for (i
= 0; i
< len
- 1; ++i
)
11243 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
11244 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
- 1));
11247 /* If this is a type, walk the needed fields in the type. */
11248 else if (TYPE_P (*tp
))
11249 return walk_type_fields (*tp
, func
, data
, pset
, lh
);
11253 /* We didn't find what we were looking for. */
11256 #undef WALK_SUBTREE_TAIL
11258 #undef WALK_SUBTREE
11260 /* Like walk_tree, but does not walk duplicate nodes more than once. */
11263 walk_tree_without_duplicates_1 (tree
*tp
, walk_tree_fn func
, void *data
,
11267 struct pointer_set_t
*pset
;
11269 pset
= pointer_set_create ();
11270 result
= walk_tree_1 (tp
, func
, data
, pset
, lh
);
11271 pointer_set_destroy (pset
);
11277 tree_block (tree t
)
11279 char const c
= TREE_CODE_CLASS (TREE_CODE (t
));
11281 if (IS_EXPR_CODE_CLASS (c
))
11282 return LOCATION_BLOCK (t
->exp
.locus
);
11283 gcc_unreachable ();
11288 tree_set_block (tree t
, tree b
)
11290 char const c
= TREE_CODE_CLASS (TREE_CODE (t
));
11292 if (IS_EXPR_CODE_CLASS (c
))
11295 t
->exp
.locus
= COMBINE_LOCATION_DATA (line_table
, t
->exp
.locus
, b
);
11297 t
->exp
.locus
= LOCATION_LOCUS (t
->exp
.locus
);
11300 gcc_unreachable ();
11303 /* Create a nameless artificial label and put it in the current
11304 function context. The label has a location of LOC. Returns the
11305 newly created label. */
11308 create_artificial_label (location_t loc
)
11310 tree lab
= build_decl (loc
,
11311 LABEL_DECL
, NULL_TREE
, void_type_node
);
11313 DECL_ARTIFICIAL (lab
) = 1;
11314 DECL_IGNORED_P (lab
) = 1;
11315 DECL_CONTEXT (lab
) = current_function_decl
;
11319 /* Given a tree, try to return a useful variable name that we can use
11320 to prefix a temporary that is being assigned the value of the tree.
11321 I.E. given <temp> = &A, return A. */
11326 tree stripped_decl
;
11329 STRIP_NOPS (stripped_decl
);
11330 if (DECL_P (stripped_decl
) && DECL_NAME (stripped_decl
))
11331 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl
));
11332 else if (TREE_CODE (stripped_decl
) == SSA_NAME
)
11334 tree name
= SSA_NAME_IDENTIFIER (stripped_decl
);
11337 return IDENTIFIER_POINTER (name
);
11341 switch (TREE_CODE (stripped_decl
))
11344 return get_name (TREE_OPERAND (stripped_decl
, 0));
11351 /* Return true if TYPE has a variable argument list. */
11354 stdarg_p (const_tree fntype
)
11356 function_args_iterator args_iter
;
11357 tree n
= NULL_TREE
, t
;
11362 FOREACH_FUNCTION_ARGS (fntype
, t
, args_iter
)
11367 return n
!= NULL_TREE
&& n
!= void_type_node
;
11370 /* Return true if TYPE has a prototype. */
11373 prototype_p (tree fntype
)
11377 gcc_assert (fntype
!= NULL_TREE
);
11379 t
= TYPE_ARG_TYPES (fntype
);
11380 return (t
!= NULL_TREE
);
11383 /* If BLOCK is inlined from an __attribute__((__artificial__))
11384 routine, return pointer to location from where it has been
11387 block_nonartificial_location (tree block
)
11389 location_t
*ret
= NULL
;
11391 while (block
&& TREE_CODE (block
) == BLOCK
11392 && BLOCK_ABSTRACT_ORIGIN (block
))
11394 tree ao
= BLOCK_ABSTRACT_ORIGIN (block
);
11396 while (TREE_CODE (ao
) == BLOCK
11397 && BLOCK_ABSTRACT_ORIGIN (ao
)
11398 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
11399 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
11401 if (TREE_CODE (ao
) == FUNCTION_DECL
)
11403 /* If AO is an artificial inline, point RET to the
11404 call site locus at which it has been inlined and continue
11405 the loop, in case AO's caller is also an artificial
11407 if (DECL_DECLARED_INLINE_P (ao
)
11408 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao
)))
11409 ret
= &BLOCK_SOURCE_LOCATION (block
);
11413 else if (TREE_CODE (ao
) != BLOCK
)
11416 block
= BLOCK_SUPERCONTEXT (block
);
11422 /* If EXP is inlined from an __attribute__((__artificial__))
11423 function, return the location of the original call expression. */
11426 tree_nonartificial_location (tree exp
)
11428 location_t
*loc
= block_nonartificial_location (TREE_BLOCK (exp
));
11433 return EXPR_LOCATION (exp
);
11437 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11440 /* Return the hash code code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11443 cl_option_hash_hash (const void *x
)
11445 const_tree
const t
= (const_tree
) x
;
11449 hashval_t hash
= 0;
11451 if (TREE_CODE (t
) == OPTIMIZATION_NODE
)
11453 p
= (const char *)TREE_OPTIMIZATION (t
);
11454 len
= sizeof (struct cl_optimization
);
11457 else if (TREE_CODE (t
) == TARGET_OPTION_NODE
)
11459 p
= (const char *)TREE_TARGET_OPTION (t
);
11460 len
= sizeof (struct cl_target_option
);
11464 gcc_unreachable ();
11466 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11468 for (i
= 0; i
< len
; i
++)
11470 hash
= (hash
<< 4) ^ ((i
<< 2) | p
[i
]);
11475 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11476 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11480 cl_option_hash_eq (const void *x
, const void *y
)
11482 const_tree
const xt
= (const_tree
) x
;
11483 const_tree
const yt
= (const_tree
) y
;
11488 if (TREE_CODE (xt
) != TREE_CODE (yt
))
11491 if (TREE_CODE (xt
) == OPTIMIZATION_NODE
)
11493 xp
= (const char *)TREE_OPTIMIZATION (xt
);
11494 yp
= (const char *)TREE_OPTIMIZATION (yt
);
11495 len
= sizeof (struct cl_optimization
);
11498 else if (TREE_CODE (xt
) == TARGET_OPTION_NODE
)
11500 xp
= (const char *)TREE_TARGET_OPTION (xt
);
11501 yp
= (const char *)TREE_TARGET_OPTION (yt
);
11502 len
= sizeof (struct cl_target_option
);
11506 gcc_unreachable ();
11508 return (memcmp (xp
, yp
, len
) == 0);
11511 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
11514 build_optimization_node (struct gcc_options
*opts
)
11519 /* Use the cache of optimization nodes. */
11521 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node
),
11524 slot
= htab_find_slot (cl_option_hash_table
, cl_optimization_node
, INSERT
);
11528 /* Insert this one into the hash table. */
11529 t
= cl_optimization_node
;
11532 /* Make a new node for next time round. */
11533 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
11539 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
11542 build_target_option_node (struct gcc_options
*opts
)
11547 /* Use the cache of optimization nodes. */
11549 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node
),
11552 slot
= htab_find_slot (cl_option_hash_table
, cl_target_option_node
, INSERT
);
11556 /* Insert this one into the hash table. */
11557 t
= cl_target_option_node
;
11560 /* Make a new node for next time round. */
11561 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
11567 /* Reset TREE_TARGET_GLOBALS cache for TARGET_OPTION_NODE.
11568 Called through htab_traverse. */
11571 prepare_target_option_node_for_pch (void **slot
, void *)
11573 tree node
= (tree
) *slot
;
11574 if (TREE_CODE (node
) == TARGET_OPTION_NODE
)
11575 TREE_TARGET_GLOBALS (node
) = NULL
;
11579 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
11580 so that they aren't saved during PCH writing. */
11583 prepare_target_option_nodes_for_pch (void)
11585 htab_traverse (cl_option_hash_table
, prepare_target_option_node_for_pch
,
11589 /* Determine the "ultimate origin" of a block. The block may be an inlined
11590 instance of an inlined instance of a block which is local to an inline
11591 function, so we have to trace all of the way back through the origin chain
11592 to find out what sort of node actually served as the original seed for the
11596 block_ultimate_origin (const_tree block
)
11598 tree immediate_origin
= BLOCK_ABSTRACT_ORIGIN (block
);
11600 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
11601 nodes in the function to point to themselves; ignore that if
11602 we're trying to output the abstract instance of this function. */
11603 if (BLOCK_ABSTRACT (block
) && immediate_origin
== block
)
11606 if (immediate_origin
== NULL_TREE
)
11611 tree lookahead
= immediate_origin
;
11615 ret_val
= lookahead
;
11616 lookahead
= (TREE_CODE (ret_val
) == BLOCK
11617 ? BLOCK_ABSTRACT_ORIGIN (ret_val
) : NULL
);
11619 while (lookahead
!= NULL
&& lookahead
!= ret_val
);
11621 /* The block's abstract origin chain may not be the *ultimate* origin of
11622 the block. It could lead to a DECL that has an abstract origin set.
11623 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
11624 will give us if it has one). Note that DECL's abstract origins are
11625 supposed to be the most distant ancestor (or so decl_ultimate_origin
11626 claims), so we don't need to loop following the DECL origins. */
11627 if (DECL_P (ret_val
))
11628 return DECL_ORIGIN (ret_val
);
11634 /* Return true iff conversion in EXP generates no instruction. Mark
11635 it inline so that we fully inline into the stripping functions even
11636 though we have two uses of this function. */
11639 tree_nop_conversion (const_tree exp
)
11641 tree outer_type
, inner_type
;
11643 if (!CONVERT_EXPR_P (exp
)
11644 && TREE_CODE (exp
) != NON_LVALUE_EXPR
)
11646 if (TREE_OPERAND (exp
, 0) == error_mark_node
)
11649 outer_type
= TREE_TYPE (exp
);
11650 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11655 /* Use precision rather then machine mode when we can, which gives
11656 the correct answer even for submode (bit-field) types. */
11657 if ((INTEGRAL_TYPE_P (outer_type
)
11658 || POINTER_TYPE_P (outer_type
)
11659 || TREE_CODE (outer_type
) == OFFSET_TYPE
)
11660 && (INTEGRAL_TYPE_P (inner_type
)
11661 || POINTER_TYPE_P (inner_type
)
11662 || TREE_CODE (inner_type
) == OFFSET_TYPE
))
11663 return TYPE_PRECISION (outer_type
) == TYPE_PRECISION (inner_type
);
11665 /* Otherwise fall back on comparing machine modes (e.g. for
11666 aggregate types, floats). */
11667 return TYPE_MODE (outer_type
) == TYPE_MODE (inner_type
);
11670 /* Return true iff conversion in EXP generates no instruction. Don't
11671 consider conversions changing the signedness. */
11674 tree_sign_nop_conversion (const_tree exp
)
11676 tree outer_type
, inner_type
;
11678 if (!tree_nop_conversion (exp
))
11681 outer_type
= TREE_TYPE (exp
);
11682 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11684 return (TYPE_UNSIGNED (outer_type
) == TYPE_UNSIGNED (inner_type
)
11685 && POINTER_TYPE_P (outer_type
) == POINTER_TYPE_P (inner_type
));
11688 /* Strip conversions from EXP according to tree_nop_conversion and
11689 return the resulting expression. */
11692 tree_strip_nop_conversions (tree exp
)
11694 while (tree_nop_conversion (exp
))
11695 exp
= TREE_OPERAND (exp
, 0);
11699 /* Strip conversions from EXP according to tree_sign_nop_conversion
11700 and return the resulting expression. */
11703 tree_strip_sign_nop_conversions (tree exp
)
11705 while (tree_sign_nop_conversion (exp
))
11706 exp
= TREE_OPERAND (exp
, 0);
11710 /* Avoid any floating point extensions from EXP. */
11712 strip_float_extensions (tree exp
)
11714 tree sub
, expt
, subt
;
11716 /* For floating point constant look up the narrowest type that can hold
11717 it properly and handle it like (type)(narrowest_type)constant.
11718 This way we can optimize for instance a=a*2.0 where "a" is float
11719 but 2.0 is double constant. */
11720 if (TREE_CODE (exp
) == REAL_CST
&& !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp
)))
11722 REAL_VALUE_TYPE orig
;
11725 orig
= TREE_REAL_CST (exp
);
11726 if (TYPE_PRECISION (TREE_TYPE (exp
)) > TYPE_PRECISION (float_type_node
)
11727 && exact_real_truncate (TYPE_MODE (float_type_node
), &orig
))
11728 type
= float_type_node
;
11729 else if (TYPE_PRECISION (TREE_TYPE (exp
))
11730 > TYPE_PRECISION (double_type_node
)
11731 && exact_real_truncate (TYPE_MODE (double_type_node
), &orig
))
11732 type
= double_type_node
;
11734 return build_real (type
, real_value_truncate (TYPE_MODE (type
), orig
));
11737 if (!CONVERT_EXPR_P (exp
))
11740 sub
= TREE_OPERAND (exp
, 0);
11741 subt
= TREE_TYPE (sub
);
11742 expt
= TREE_TYPE (exp
);
11744 if (!FLOAT_TYPE_P (subt
))
11747 if (DECIMAL_FLOAT_TYPE_P (expt
) != DECIMAL_FLOAT_TYPE_P (subt
))
11750 if (TYPE_PRECISION (subt
) > TYPE_PRECISION (expt
))
11753 return strip_float_extensions (sub
);
11756 /* Strip out all handled components that produce invariant
11760 strip_invariant_refs (const_tree op
)
11762 while (handled_component_p (op
))
11764 switch (TREE_CODE (op
))
11767 case ARRAY_RANGE_REF
:
11768 if (!is_gimple_constant (TREE_OPERAND (op
, 1))
11769 || TREE_OPERAND (op
, 2) != NULL_TREE
11770 || TREE_OPERAND (op
, 3) != NULL_TREE
)
11774 case COMPONENT_REF
:
11775 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
11781 op
= TREE_OPERAND (op
, 0);
11787 static GTY(()) tree gcc_eh_personality_decl
;
11789 /* Return the GCC personality function decl. */
11792 lhd_gcc_personality (void)
11794 if (!gcc_eh_personality_decl
)
11795 gcc_eh_personality_decl
= build_personality_function ("gcc");
11796 return gcc_eh_personality_decl
;
11799 /* For languages with One Definition Rule, work out if
11800 trees are actually the same even if the tree representation
11801 differs. This handles only decls appearing in TYPE_NAME
11802 and TYPE_CONTEXT. That is NAMESPACE_DECL, TYPE_DECL,
11803 RECORD_TYPE and IDENTIFIER_NODE. */
11806 same_for_odr (tree t1
, tree t2
)
11812 /* C and C++ FEs differ by using IDENTIFIER_NODE and TYPE_DECL. */
11813 if (TREE_CODE (t1
) == IDENTIFIER_NODE
11814 && TREE_CODE (t2
) == TYPE_DECL
11815 && DECL_FILE_SCOPE_P (t1
))
11817 t2
= DECL_NAME (t2
);
11818 gcc_assert (TREE_CODE (t2
) == IDENTIFIER_NODE
);
11820 if (TREE_CODE (t2
) == IDENTIFIER_NODE
11821 && TREE_CODE (t1
) == TYPE_DECL
11822 && DECL_FILE_SCOPE_P (t2
))
11824 t1
= DECL_NAME (t1
);
11825 gcc_assert (TREE_CODE (t1
) == IDENTIFIER_NODE
);
11827 if (TREE_CODE (t1
) != TREE_CODE (t2
))
11830 return types_same_for_odr (t1
, t2
);
11832 return decls_same_for_odr (t1
, t2
);
11836 /* For languages with One Definition Rule, work out if
11837 decls are actually the same even if the tree representation
11838 differs. This handles only decls appearing in TYPE_NAME
11839 and TYPE_CONTEXT. That is NAMESPACE_DECL, TYPE_DECL,
11840 RECORD_TYPE and IDENTIFIER_NODE. */
11843 decls_same_for_odr (tree decl1
, tree decl2
)
11845 if (decl1
&& TREE_CODE (decl1
) == TYPE_DECL
11846 && DECL_ORIGINAL_TYPE (decl1
))
11847 decl1
= DECL_ORIGINAL_TYPE (decl1
);
11848 if (decl2
&& TREE_CODE (decl2
) == TYPE_DECL
11849 && DECL_ORIGINAL_TYPE (decl2
))
11850 decl2
= DECL_ORIGINAL_TYPE (decl2
);
11851 if (decl1
== decl2
)
11853 if (!decl1
|| !decl2
)
11855 gcc_checking_assert (DECL_P (decl1
) && DECL_P (decl2
));
11856 if (TREE_CODE (decl1
) != TREE_CODE (decl2
))
11858 if (TREE_CODE (decl1
) == TRANSLATION_UNIT_DECL
)
11860 if (TREE_CODE (decl1
) != NAMESPACE_DECL
11861 && TREE_CODE (decl1
) != TYPE_DECL
)
11863 if (!DECL_NAME (decl1
))
11865 gcc_checking_assert (TREE_CODE (DECL_NAME (decl1
)) == IDENTIFIER_NODE
);
11866 gcc_checking_assert (!DECL_NAME (decl2
)
11867 || TREE_CODE (DECL_NAME (decl2
)) == IDENTIFIER_NODE
);
11868 if (DECL_NAME (decl1
) != DECL_NAME (decl2
))
11870 return same_for_odr (DECL_CONTEXT (decl1
),
11871 DECL_CONTEXT (decl2
));
11874 /* For languages with One Definition Rule, work out if
11875 types are same even if the tree representation differs.
11876 This is non-trivial for LTO where minnor differences in
11877 the type representation may have prevented type merging
11878 to merge two copies of otherwise equivalent type. */
11881 types_same_for_odr (tree type1
, tree type2
)
11883 gcc_checking_assert (TYPE_P (type1
) && TYPE_P (type2
));
11884 type1
= TYPE_MAIN_VARIANT (type1
);
11885 type2
= TYPE_MAIN_VARIANT (type2
);
11886 if (type1
== type2
)
11889 #ifndef ENABLE_CHECKING
11894 /* Check for anonymous namespaces. Those have !TREE_PUBLIC
11895 on the corresponding TYPE_STUB_DECL. */
11896 if (type_in_anonymous_namespace_p (type1
)
11897 || type_in_anonymous_namespace_p (type2
))
11899 /* When assembler name of virtual table is available, it is
11900 easy to compare types for equivalence. */
11901 if (TYPE_BINFO (type1
) && TYPE_BINFO (type2
)
11902 && BINFO_VTABLE (TYPE_BINFO (type1
))
11903 && BINFO_VTABLE (TYPE_BINFO (type2
)))
11905 tree v1
= BINFO_VTABLE (TYPE_BINFO (type1
));
11906 tree v2
= BINFO_VTABLE (TYPE_BINFO (type2
));
11908 if (TREE_CODE (v1
) == POINTER_PLUS_EXPR
)
11910 if (TREE_CODE (v2
) != POINTER_PLUS_EXPR
11911 || !operand_equal_p (TREE_OPERAND (v1
, 1),
11912 TREE_OPERAND (v2
, 1), 0))
11914 v1
= TREE_OPERAND (TREE_OPERAND (v1
, 0), 0);
11915 v2
= TREE_OPERAND (TREE_OPERAND (v2
, 0), 0);
11917 v1
= DECL_ASSEMBLER_NAME (v1
);
11918 v2
= DECL_ASSEMBLER_NAME (v2
);
11922 /* FIXME: the code comparing type names consider all instantiations of the
11923 same template to have same name. This is because we have no access
11924 to template parameters. For types with no virtual method tables
11925 we thus can return false positives. At the moment we do not need
11926 to compare types in other scenarios than devirtualization. */
11928 /* If types are not structuraly same, do not bother to contnue.
11929 Match in the remainder of code would mean ODR violation. */
11930 if (!types_compatible_p (type1
, type2
))
11932 if (!TYPE_NAME (type1
))
11934 if (!decls_same_for_odr (TYPE_NAME (type1
), TYPE_NAME (type2
)))
11936 if (!same_for_odr (TYPE_CONTEXT (type1
), TYPE_CONTEXT (type2
)))
11938 /* When not in LTO the MAIN_VARIANT check should be the same. */
11939 gcc_assert (in_lto_p
);
11944 /* TARGET is a call target of GIMPLE call statement
11945 (obtained by gimple_call_fn). Return true if it is
11946 OBJ_TYPE_REF representing an virtual call of C++ method.
11947 (As opposed to OBJ_TYPE_REF representing objc calls
11948 through a cast where middle-end devirtualization machinery
11952 virtual_method_call_p (tree target
)
11954 if (TREE_CODE (target
) != OBJ_TYPE_REF
)
11956 target
= TREE_TYPE (target
);
11957 gcc_checking_assert (TREE_CODE (target
) == POINTER_TYPE
);
11958 target
= TREE_TYPE (target
);
11959 if (TREE_CODE (target
) == FUNCTION_TYPE
)
11961 gcc_checking_assert (TREE_CODE (target
) == METHOD_TYPE
);
11965 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
11968 obj_type_ref_class (tree ref
)
11970 gcc_checking_assert (TREE_CODE (ref
) == OBJ_TYPE_REF
);
11971 ref
= TREE_TYPE (ref
);
11972 gcc_checking_assert (TREE_CODE (ref
) == POINTER_TYPE
);
11973 ref
= TREE_TYPE (ref
);
11974 /* We look for type THIS points to. ObjC also builds
11975 OBJ_TYPE_REF with non-method calls, Their first parameter
11976 ID however also corresponds to class type. */
11977 gcc_checking_assert (TREE_CODE (ref
) == METHOD_TYPE
11978 || TREE_CODE (ref
) == FUNCTION_TYPE
);
11979 ref
= TREE_VALUE (TYPE_ARG_TYPES (ref
));
11980 gcc_checking_assert (TREE_CODE (ref
) == POINTER_TYPE
);
11981 return TREE_TYPE (ref
);
11984 /* Return true if T is in anonymous namespace. */
11987 type_in_anonymous_namespace_p (tree t
)
11989 return (TYPE_STUB_DECL (t
) && !TREE_PUBLIC (TYPE_STUB_DECL (t
)));
11992 /* Try to find a base info of BINFO that would have its field decl at offset
11993 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
11994 found, return, otherwise return NULL_TREE. */
11997 get_binfo_at_offset (tree binfo
, HOST_WIDE_INT offset
, tree expected_type
)
11999 tree type
= BINFO_TYPE (binfo
);
12003 HOST_WIDE_INT pos
, size
;
12007 if (types_same_for_odr (type
, expected_type
))
12012 for (fld
= TYPE_FIELDS (type
); fld
; fld
= DECL_CHAIN (fld
))
12014 if (TREE_CODE (fld
) != FIELD_DECL
)
12017 pos
= int_bit_position (fld
);
12018 size
= tree_to_uhwi (DECL_SIZE (fld
));
12019 if (pos
<= offset
&& (pos
+ size
) > offset
)
12022 if (!fld
|| TREE_CODE (TREE_TYPE (fld
)) != RECORD_TYPE
)
12025 if (!DECL_ARTIFICIAL (fld
))
12027 binfo
= TYPE_BINFO (TREE_TYPE (fld
));
12031 /* Offset 0 indicates the primary base, whose vtable contents are
12032 represented in the binfo for the derived class. */
12033 else if (offset
!= 0)
12035 tree base_binfo
, binfo2
= binfo
;
12037 /* Find BINFO corresponding to FLD. This is bit harder
12038 by a fact that in virtual inheritance we may need to walk down
12039 the non-virtual inheritance chain. */
12042 tree containing_binfo
= NULL
, found_binfo
= NULL
;
12043 for (i
= 0; BINFO_BASE_ITERATE (binfo2
, i
, base_binfo
); i
++)
12044 if (types_same_for_odr (TREE_TYPE (base_binfo
), TREE_TYPE (fld
)))
12046 found_binfo
= base_binfo
;
12050 if ((tree_to_shwi (BINFO_OFFSET (base_binfo
))
12051 - tree_to_shwi (BINFO_OFFSET (binfo
)))
12052 * BITS_PER_UNIT
< pos
12053 /* Rule out types with no virtual methods or we can get confused
12054 here by zero sized bases. */
12055 && BINFO_VTABLE (TYPE_BINFO (BINFO_TYPE (base_binfo
)))
12056 && (!containing_binfo
12057 || (tree_to_shwi (BINFO_OFFSET (containing_binfo
))
12058 < tree_to_shwi (BINFO_OFFSET (base_binfo
)))))
12059 containing_binfo
= base_binfo
;
12062 binfo
= found_binfo
;
12065 if (!containing_binfo
)
12067 binfo2
= containing_binfo
;
12071 type
= TREE_TYPE (fld
);
12076 /* Returns true if X is a typedef decl. */
12079 is_typedef_decl (tree x
)
12081 return (x
&& TREE_CODE (x
) == TYPE_DECL
12082 && DECL_ORIGINAL_TYPE (x
) != NULL_TREE
);
12085 /* Returns true iff TYPE is a type variant created for a typedef. */
12088 typedef_variant_p (tree type
)
12090 return is_typedef_decl (TYPE_NAME (type
));
12093 /* Warn about a use of an identifier which was marked deprecated. */
12095 warn_deprecated_use (tree node
, tree attr
)
12099 if (node
== 0 || !warn_deprecated_decl
)
12105 attr
= DECL_ATTRIBUTES (node
);
12106 else if (TYPE_P (node
))
12108 tree decl
= TYPE_STUB_DECL (node
);
12110 attr
= lookup_attribute ("deprecated",
12111 TYPE_ATTRIBUTES (TREE_TYPE (decl
)));
12116 attr
= lookup_attribute ("deprecated", attr
);
12119 msg
= TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr
)));
12125 expanded_location xloc
= expand_location (DECL_SOURCE_LOCATION (node
));
12127 warning (OPT_Wdeprecated_declarations
,
12128 "%qD is deprecated (declared at %r%s:%d%R): %s",
12129 node
, "locus", xloc
.file
, xloc
.line
, msg
);
12131 warning (OPT_Wdeprecated_declarations
,
12132 "%qD is deprecated (declared at %r%s:%d%R)",
12133 node
, "locus", xloc
.file
, xloc
.line
);
12135 else if (TYPE_P (node
))
12137 tree what
= NULL_TREE
;
12138 tree decl
= TYPE_STUB_DECL (node
);
12140 if (TYPE_NAME (node
))
12142 if (TREE_CODE (TYPE_NAME (node
)) == IDENTIFIER_NODE
)
12143 what
= TYPE_NAME (node
);
12144 else if (TREE_CODE (TYPE_NAME (node
)) == TYPE_DECL
12145 && DECL_NAME (TYPE_NAME (node
)))
12146 what
= DECL_NAME (TYPE_NAME (node
));
12151 expanded_location xloc
12152 = expand_location (DECL_SOURCE_LOCATION (decl
));
12156 warning (OPT_Wdeprecated_declarations
,
12157 "%qE is deprecated (declared at %r%s:%d%R): %s",
12158 what
, "locus", xloc
.file
, xloc
.line
, msg
);
12160 warning (OPT_Wdeprecated_declarations
,
12161 "%qE is deprecated (declared at %r%s:%d%R)",
12162 what
, "locus", xloc
.file
, xloc
.line
);
12167 warning (OPT_Wdeprecated_declarations
,
12168 "type is deprecated (declared at %r%s:%d%R): %s",
12169 "locus", xloc
.file
, xloc
.line
, msg
);
12171 warning (OPT_Wdeprecated_declarations
,
12172 "type is deprecated (declared at %r%s:%d%R)",
12173 "locus", xloc
.file
, xloc
.line
);
12181 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated: %s",
12184 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated", what
);
12189 warning (OPT_Wdeprecated_declarations
, "type is deprecated: %s",
12192 warning (OPT_Wdeprecated_declarations
, "type is deprecated");
12198 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
12199 somewhere in it. */
12202 contains_bitfld_component_ref_p (const_tree ref
)
12204 while (handled_component_p (ref
))
12206 if (TREE_CODE (ref
) == COMPONENT_REF
12207 && DECL_BIT_FIELD (TREE_OPERAND (ref
, 1)))
12209 ref
= TREE_OPERAND (ref
, 0);
12215 /* Try to determine whether a TRY_CATCH expression can fall through.
12216 This is a subroutine of block_may_fallthru. */
12219 try_catch_may_fallthru (const_tree stmt
)
12221 tree_stmt_iterator i
;
12223 /* If the TRY block can fall through, the whole TRY_CATCH can
12225 if (block_may_fallthru (TREE_OPERAND (stmt
, 0)))
12228 i
= tsi_start (TREE_OPERAND (stmt
, 1));
12229 switch (TREE_CODE (tsi_stmt (i
)))
12232 /* We expect to see a sequence of CATCH_EXPR trees, each with a
12233 catch expression and a body. The whole TRY_CATCH may fall
12234 through iff any of the catch bodies falls through. */
12235 for (; !tsi_end_p (i
); tsi_next (&i
))
12237 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i
))))
12242 case EH_FILTER_EXPR
:
12243 /* The exception filter expression only matters if there is an
12244 exception. If the exception does not match EH_FILTER_TYPES,
12245 we will execute EH_FILTER_FAILURE, and we will fall through
12246 if that falls through. If the exception does match
12247 EH_FILTER_TYPES, the stack unwinder will continue up the
12248 stack, so we will not fall through. We don't know whether we
12249 will throw an exception which matches EH_FILTER_TYPES or not,
12250 so we just ignore EH_FILTER_TYPES and assume that we might
12251 throw an exception which doesn't match. */
12252 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i
)));
12255 /* This case represents statements to be executed when an
12256 exception occurs. Those statements are implicitly followed
12257 by a RESX statement to resume execution after the exception.
12258 So in this case the TRY_CATCH never falls through. */
12263 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
12264 need not be 100% accurate; simply be conservative and return true if we
12265 don't know. This is used only to avoid stupidly generating extra code.
12266 If we're wrong, we'll just delete the extra code later. */
12269 block_may_fallthru (const_tree block
)
12271 /* This CONST_CAST is okay because expr_last returns its argument
12272 unmodified and we assign it to a const_tree. */
12273 const_tree stmt
= expr_last (CONST_CAST_TREE (block
));
12275 switch (stmt
? TREE_CODE (stmt
) : ERROR_MARK
)
12279 /* Easy cases. If the last statement of the block implies
12280 control transfer, then we can't fall through. */
12284 /* If SWITCH_LABELS is set, this is lowered, and represents a
12285 branch to a selected label and hence can not fall through.
12286 Otherwise SWITCH_BODY is set, and the switch can fall
12288 return SWITCH_LABELS (stmt
) == NULL_TREE
;
12291 if (block_may_fallthru (COND_EXPR_THEN (stmt
)))
12293 return block_may_fallthru (COND_EXPR_ELSE (stmt
));
12296 return block_may_fallthru (BIND_EXPR_BODY (stmt
));
12298 case TRY_CATCH_EXPR
:
12299 return try_catch_may_fallthru (stmt
);
12301 case TRY_FINALLY_EXPR
:
12302 /* The finally clause is always executed after the try clause,
12303 so if it does not fall through, then the try-finally will not
12304 fall through. Otherwise, if the try clause does not fall
12305 through, then when the finally clause falls through it will
12306 resume execution wherever the try clause was going. So the
12307 whole try-finally will only fall through if both the try
12308 clause and the finally clause fall through. */
12309 return (block_may_fallthru (TREE_OPERAND (stmt
, 0))
12310 && block_may_fallthru (TREE_OPERAND (stmt
, 1)));
12313 if (TREE_CODE (TREE_OPERAND (stmt
, 1)) == CALL_EXPR
)
12314 stmt
= TREE_OPERAND (stmt
, 1);
12320 /* Functions that do not return do not fall through. */
12321 return (call_expr_flags (stmt
) & ECF_NORETURN
) == 0;
12323 case CLEANUP_POINT_EXPR
:
12324 return block_may_fallthru (TREE_OPERAND (stmt
, 0));
12327 return block_may_fallthru (TREE_OPERAND (stmt
, 1));
12333 return lang_hooks
.block_may_fallthru (stmt
);
12337 /* True if we are using EH to handle cleanups. */
12338 static bool using_eh_for_cleanups_flag
= false;
12340 /* This routine is called from front ends to indicate eh should be used for
12343 using_eh_for_cleanups (void)
12345 using_eh_for_cleanups_flag
= true;
12348 /* Query whether EH is used for cleanups. */
12350 using_eh_for_cleanups_p (void)
12352 return using_eh_for_cleanups_flag
;
12355 /* Wrapper for tree_code_name to ensure that tree code is valid */
12357 get_tree_code_name (enum tree_code code
)
12359 const char *invalid
= "<invalid tree code>";
12361 if (code
>= MAX_TREE_CODES
)
12364 return tree_code_name
[code
];
12367 /* Drops the TREE_OVERFLOW flag from T. */
12370 drop_tree_overflow (tree t
)
12372 gcc_checking_assert (TREE_OVERFLOW (t
));
12374 /* For tree codes with a sharing machinery re-build the result. */
12375 if (TREE_CODE (t
) == INTEGER_CST
)
12376 return build_int_cst_wide (TREE_TYPE (t
),
12377 TREE_INT_CST_LOW (t
), TREE_INT_CST_HIGH (t
));
12379 /* Otherwise, as all tcc_constants are possibly shared, copy the node
12380 and drop the flag. */
12382 TREE_OVERFLOW (t
) = 0;
12386 /* Given a memory reference expression T, return its base address.
12387 The base address of a memory reference expression is the main
12388 object being referenced. For instance, the base address for
12389 'array[i].fld[j]' is 'array'. You can think of this as stripping
12390 away the offset part from a memory address.
12392 This function calls handled_component_p to strip away all the inner
12393 parts of the memory reference until it reaches the base object. */
12396 get_base_address (tree t
)
12398 while (handled_component_p (t
))
12399 t
= TREE_OPERAND (t
, 0);
12401 if ((TREE_CODE (t
) == MEM_REF
12402 || TREE_CODE (t
) == TARGET_MEM_REF
)
12403 && TREE_CODE (TREE_OPERAND (t
, 0)) == ADDR_EXPR
)
12404 t
= TREE_OPERAND (TREE_OPERAND (t
, 0), 0);
12406 /* ??? Either the alias oracle or all callers need to properly deal
12407 with WITH_SIZE_EXPRs before we can look through those. */
12408 if (TREE_CODE (t
) == WITH_SIZE_EXPR
)
12414 #include "gt-tree.h"