1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains the low level primitives for operating on tree nodes,
21 including allocation, list operations, interning of identifiers,
22 construction of data type nodes and statement nodes,
23 and construction of type conversion nodes. It also contains
24 tables index by tree code that describe how to take apart
27 It is intended to be language-independent but can occasionally
28 calls language-dependent routines. */
32 #include "coretypes.h"
38 #include "fold-const.h"
39 #include "stor-layout.h"
44 #include "hard-reg-set.h"
47 #include "toplev.h" /* get_random_seed */
48 #include "filenames.h"
51 #include "common/common-target.h"
52 #include "langhooks.h"
53 #include "tree-inline.h"
54 #include "tree-iterator.h"
56 #include "dominance.h"
58 #include "basic-block.h"
60 #include "tree-ssa-alias.h"
61 #include "internal-fn.h"
62 #include "gimple-expr.h"
64 #include "gimple-iterator.h"
66 #include "gimple-ssa.h"
67 #include "plugin-api.h"
70 #include "tree-phinodes.h"
71 #include "stringpool.h"
72 #include "tree-ssanames.h"
74 #include "insn-config.h"
83 #include "tree-pass.h"
84 #include "langhooks-def.h"
85 #include "diagnostic.h"
86 #include "tree-diagnostic.h"
87 #include "tree-pretty-print.h"
92 #include "print-tree.h"
93 #include "ipa-utils.h"
95 /* Tree code classes. */
97 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
98 #define END_OF_BASE_TREE_CODES tcc_exceptional,
100 const enum tree_code_class tree_code_type
[] = {
101 #include "all-tree.def"
105 #undef END_OF_BASE_TREE_CODES
107 /* Table indexed by tree code giving number of expression
108 operands beyond the fixed part of the node structure.
109 Not used for types or decls. */
111 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
112 #define END_OF_BASE_TREE_CODES 0,
114 const unsigned char tree_code_length
[] = {
115 #include "all-tree.def"
119 #undef END_OF_BASE_TREE_CODES
121 /* Names of tree components.
122 Used for printing out the tree and error messages. */
123 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
124 #define END_OF_BASE_TREE_CODES "@dummy",
126 static const char *const tree_code_name
[] = {
127 #include "all-tree.def"
131 #undef END_OF_BASE_TREE_CODES
133 /* Each tree code class has an associated string representation.
134 These must correspond to the tree_code_class entries. */
136 const char *const tree_code_class_strings
[] =
151 /* obstack.[ch] explicitly declined to prototype this. */
152 extern int _obstack_allocated_p (struct obstack
*h
, void *obj
);
154 /* Statistics-gathering stuff. */
156 static int tree_code_counts
[MAX_TREE_CODES
];
157 int tree_node_counts
[(int) all_kinds
];
158 int tree_node_sizes
[(int) all_kinds
];
160 /* Keep in sync with tree.h:enum tree_node_kind. */
161 static const char * const tree_node_kind_names
[] = {
180 /* Unique id for next decl created. */
181 static GTY(()) int next_decl_uid
;
182 /* Unique id for next type created. */
183 static GTY(()) int next_type_uid
= 1;
184 /* Unique id for next debug decl created. Use negative numbers,
185 to catch erroneous uses. */
186 static GTY(()) int next_debug_decl_uid
;
188 /* Since we cannot rehash a type after it is in the table, we have to
189 keep the hash code. */
191 struct GTY((for_user
)) type_hash
{
196 /* Initial size of the hash table (rounded to next prime). */
197 #define TYPE_HASH_INITIAL_SIZE 1000
199 struct type_cache_hasher
: ggc_cache_hasher
<type_hash
*>
201 static hashval_t
hash (type_hash
*t
) { return t
->hash
; }
202 static bool equal (type_hash
*a
, type_hash
*b
);
205 handle_cache_entry (type_hash
*&t
)
207 extern void gt_ggc_mx (type_hash
*&);
208 if (t
== HTAB_DELETED_ENTRY
|| t
== HTAB_EMPTY_ENTRY
)
210 else if (ggc_marked_p (t
->type
))
213 t
= static_cast<type_hash
*> (HTAB_DELETED_ENTRY
);
217 /* Now here is the hash table. When recording a type, it is added to
218 the slot whose index is the hash code. Note that the hash table is
219 used for several kinds of types (function types, array types and
220 array index range types, for now). While all these live in the
221 same table, they are completely independent, and the hash code is
222 computed differently for each of these. */
224 static GTY ((cache
)) hash_table
<type_cache_hasher
> *type_hash_table
;
226 /* Hash table and temporary node for larger integer const values. */
227 static GTY (()) tree int_cst_node
;
229 struct int_cst_hasher
: ggc_cache_hasher
<tree
>
231 static hashval_t
hash (tree t
);
232 static bool equal (tree x
, tree y
);
235 static GTY ((cache
)) hash_table
<int_cst_hasher
> *int_cst_hash_table
;
237 /* Hash table for optimization flags and target option flags. Use the same
238 hash table for both sets of options. Nodes for building the current
239 optimization and target option nodes. The assumption is most of the time
240 the options created will already be in the hash table, so we avoid
241 allocating and freeing up a node repeatably. */
242 static GTY (()) tree cl_optimization_node
;
243 static GTY (()) tree cl_target_option_node
;
245 struct cl_option_hasher
: ggc_cache_hasher
<tree
>
247 static hashval_t
hash (tree t
);
248 static bool equal (tree x
, tree y
);
251 static GTY ((cache
)) hash_table
<cl_option_hasher
> *cl_option_hash_table
;
253 /* General tree->tree mapping structure for use in hash tables. */
257 hash_table
<tree_decl_map_cache_hasher
> *debug_expr_for_decl
;
260 hash_table
<tree_decl_map_cache_hasher
> *value_expr_for_decl
;
262 struct tree_vec_map_cache_hasher
: ggc_cache_hasher
<tree_vec_map
*>
264 static hashval_t
hash (tree_vec_map
*m
) { return DECL_UID (m
->base
.from
); }
267 equal (tree_vec_map
*a
, tree_vec_map
*b
)
269 return a
->base
.from
== b
->base
.from
;
273 handle_cache_entry (tree_vec_map
*&m
)
275 extern void gt_ggc_mx (tree_vec_map
*&);
276 if (m
== HTAB_EMPTY_ENTRY
|| m
== HTAB_DELETED_ENTRY
)
278 else if (ggc_marked_p (m
->base
.from
))
281 m
= static_cast<tree_vec_map
*> (HTAB_DELETED_ENTRY
);
286 hash_table
<tree_vec_map_cache_hasher
> *debug_args_for_decl
;
288 static void set_type_quals (tree
, int);
289 static void print_type_hash_statistics (void);
290 static void print_debug_expr_statistics (void);
291 static void print_value_expr_statistics (void);
292 static void type_hash_list (const_tree
, inchash::hash
&);
293 static void attribute_hash_list (const_tree
, inchash::hash
&);
295 tree global_trees
[TI_MAX
];
296 tree integer_types
[itk_none
];
298 bool int_n_enabled_p
[NUM_INT_N_ENTS
];
299 struct int_n_trees_t int_n_trees
[NUM_INT_N_ENTS
];
301 unsigned char tree_contains_struct
[MAX_TREE_CODES
][64];
303 /* Number of operands for each OpenMP clause. */
304 unsigned const char omp_clause_num_ops
[] =
306 0, /* OMP_CLAUSE_ERROR */
307 1, /* OMP_CLAUSE_PRIVATE */
308 1, /* OMP_CLAUSE_SHARED */
309 1, /* OMP_CLAUSE_FIRSTPRIVATE */
310 2, /* OMP_CLAUSE_LASTPRIVATE */
311 4, /* OMP_CLAUSE_REDUCTION */
312 1, /* OMP_CLAUSE_COPYIN */
313 1, /* OMP_CLAUSE_COPYPRIVATE */
314 3, /* OMP_CLAUSE_LINEAR */
315 2, /* OMP_CLAUSE_ALIGNED */
316 1, /* OMP_CLAUSE_DEPEND */
317 1, /* OMP_CLAUSE_UNIFORM */
318 2, /* OMP_CLAUSE_FROM */
319 2, /* OMP_CLAUSE_TO */
320 2, /* OMP_CLAUSE_MAP */
321 2, /* OMP_CLAUSE__CACHE_ */
322 1, /* OMP_CLAUSE_DEVICE_RESIDENT */
323 1, /* OMP_CLAUSE_USE_DEVICE */
324 2, /* OMP_CLAUSE_GANG */
325 1, /* OMP_CLAUSE_ASYNC */
326 1, /* OMP_CLAUSE_WAIT */
327 0, /* OMP_CLAUSE_AUTO */
328 0, /* OMP_CLAUSE_SEQ */
329 1, /* OMP_CLAUSE__LOOPTEMP_ */
330 1, /* OMP_CLAUSE_IF */
331 1, /* OMP_CLAUSE_NUM_THREADS */
332 1, /* OMP_CLAUSE_SCHEDULE */
333 0, /* OMP_CLAUSE_NOWAIT */
334 0, /* OMP_CLAUSE_ORDERED */
335 0, /* OMP_CLAUSE_DEFAULT */
336 3, /* OMP_CLAUSE_COLLAPSE */
337 0, /* OMP_CLAUSE_UNTIED */
338 1, /* OMP_CLAUSE_FINAL */
339 0, /* OMP_CLAUSE_MERGEABLE */
340 1, /* OMP_CLAUSE_DEVICE */
341 1, /* OMP_CLAUSE_DIST_SCHEDULE */
342 0, /* OMP_CLAUSE_INBRANCH */
343 0, /* OMP_CLAUSE_NOTINBRANCH */
344 1, /* OMP_CLAUSE_NUM_TEAMS */
345 1, /* OMP_CLAUSE_THREAD_LIMIT */
346 0, /* OMP_CLAUSE_PROC_BIND */
347 1, /* OMP_CLAUSE_SAFELEN */
348 1, /* OMP_CLAUSE_SIMDLEN */
349 0, /* OMP_CLAUSE_FOR */
350 0, /* OMP_CLAUSE_PARALLEL */
351 0, /* OMP_CLAUSE_SECTIONS */
352 0, /* OMP_CLAUSE_TASKGROUP */
353 1, /* OMP_CLAUSE__SIMDUID_ */
354 1, /* OMP_CLAUSE__CILK_FOR_COUNT_ */
355 0, /* OMP_CLAUSE_INDEPENDENT */
356 1, /* OMP_CLAUSE_WORKER */
357 1, /* OMP_CLAUSE_VECTOR */
358 1, /* OMP_CLAUSE_NUM_GANGS */
359 1, /* OMP_CLAUSE_NUM_WORKERS */
360 1, /* OMP_CLAUSE_VECTOR_LENGTH */
363 const char * const omp_clause_code_name
[] =
423 /* Return the tree node structure used by tree code CODE. */
425 static inline enum tree_node_structure_enum
426 tree_node_structure_for_code (enum tree_code code
)
428 switch (TREE_CODE_CLASS (code
))
430 case tcc_declaration
:
435 return TS_FIELD_DECL
;
441 return TS_LABEL_DECL
;
443 return TS_RESULT_DECL
;
444 case DEBUG_EXPR_DECL
:
447 return TS_CONST_DECL
;
451 return TS_FUNCTION_DECL
;
452 case TRANSLATION_UNIT_DECL
:
453 return TS_TRANSLATION_UNIT_DECL
;
455 return TS_DECL_NON_COMMON
;
459 return TS_TYPE_NON_COMMON
;
468 default: /* tcc_constant and tcc_exceptional */
473 /* tcc_constant cases. */
474 case VOID_CST
: return TS_TYPED
;
475 case INTEGER_CST
: return TS_INT_CST
;
476 case REAL_CST
: return TS_REAL_CST
;
477 case FIXED_CST
: return TS_FIXED_CST
;
478 case COMPLEX_CST
: return TS_COMPLEX
;
479 case VECTOR_CST
: return TS_VECTOR
;
480 case STRING_CST
: return TS_STRING
;
481 /* tcc_exceptional cases. */
482 case ERROR_MARK
: return TS_COMMON
;
483 case IDENTIFIER_NODE
: return TS_IDENTIFIER
;
484 case TREE_LIST
: return TS_LIST
;
485 case TREE_VEC
: return TS_VEC
;
486 case SSA_NAME
: return TS_SSA_NAME
;
487 case PLACEHOLDER_EXPR
: return TS_COMMON
;
488 case STATEMENT_LIST
: return TS_STATEMENT_LIST
;
489 case BLOCK
: return TS_BLOCK
;
490 case CONSTRUCTOR
: return TS_CONSTRUCTOR
;
491 case TREE_BINFO
: return TS_BINFO
;
492 case OMP_CLAUSE
: return TS_OMP_CLAUSE
;
493 case OPTIMIZATION_NODE
: return TS_OPTIMIZATION
;
494 case TARGET_OPTION_NODE
: return TS_TARGET_OPTION
;
502 /* Initialize tree_contains_struct to describe the hierarchy of tree
506 initialize_tree_contains_struct (void)
510 for (i
= ERROR_MARK
; i
< LAST_AND_UNUSED_TREE_CODE
; i
++)
513 enum tree_node_structure_enum ts_code
;
515 code
= (enum tree_code
) i
;
516 ts_code
= tree_node_structure_for_code (code
);
518 /* Mark the TS structure itself. */
519 tree_contains_struct
[code
][ts_code
] = 1;
521 /* Mark all the structures that TS is derived from. */
539 case TS_STATEMENT_LIST
:
540 MARK_TS_TYPED (code
);
544 case TS_DECL_MINIMAL
:
550 case TS_OPTIMIZATION
:
551 case TS_TARGET_OPTION
:
552 MARK_TS_COMMON (code
);
555 case TS_TYPE_WITH_LANG_SPECIFIC
:
556 MARK_TS_TYPE_COMMON (code
);
559 case TS_TYPE_NON_COMMON
:
560 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code
);
564 MARK_TS_DECL_MINIMAL (code
);
569 MARK_TS_DECL_COMMON (code
);
572 case TS_DECL_NON_COMMON
:
573 MARK_TS_DECL_WITH_VIS (code
);
576 case TS_DECL_WITH_VIS
:
580 MARK_TS_DECL_WRTL (code
);
584 MARK_TS_DECL_COMMON (code
);
588 MARK_TS_DECL_WITH_VIS (code
);
592 case TS_FUNCTION_DECL
:
593 MARK_TS_DECL_NON_COMMON (code
);
596 case TS_TRANSLATION_UNIT_DECL
:
597 MARK_TS_DECL_COMMON (code
);
605 /* Basic consistency checks for attributes used in fold. */
606 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_NON_COMMON
]);
607 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_NON_COMMON
]);
608 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_COMMON
]);
609 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_COMMON
]);
610 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_COMMON
]);
611 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_COMMON
]);
612 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_COMMON
]);
613 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_COMMON
]);
614 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_COMMON
]);
615 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_COMMON
]);
616 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_COMMON
]);
617 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WRTL
]);
618 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_WRTL
]);
619 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_WRTL
]);
620 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WRTL
]);
621 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_WRTL
]);
622 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_MINIMAL
]);
623 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_MINIMAL
]);
624 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_MINIMAL
]);
625 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_MINIMAL
]);
626 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_MINIMAL
]);
627 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_MINIMAL
]);
628 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_MINIMAL
]);
629 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_MINIMAL
]);
630 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_MINIMAL
]);
631 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WITH_VIS
]);
632 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WITH_VIS
]);
633 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_WITH_VIS
]);
634 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_VAR_DECL
]);
635 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_FIELD_DECL
]);
636 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_PARM_DECL
]);
637 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_LABEL_DECL
]);
638 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_RESULT_DECL
]);
639 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_CONST_DECL
]);
640 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_TYPE_DECL
]);
641 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_FUNCTION_DECL
]);
642 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_MINIMAL
]);
643 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_COMMON
]);
644 gcc_assert (tree_contains_struct
[NAMELIST_DECL
][TS_DECL_MINIMAL
]);
645 gcc_assert (tree_contains_struct
[NAMELIST_DECL
][TS_DECL_COMMON
]);
654 /* Initialize the hash table of types. */
656 = hash_table
<type_cache_hasher
>::create_ggc (TYPE_HASH_INITIAL_SIZE
);
659 = hash_table
<tree_decl_map_cache_hasher
>::create_ggc (512);
662 = hash_table
<tree_decl_map_cache_hasher
>::create_ggc (512);
664 int_cst_hash_table
= hash_table
<int_cst_hasher
>::create_ggc (1024);
666 int_cst_node
= make_int_cst (1, 1);
668 cl_option_hash_table
= hash_table
<cl_option_hasher
>::create_ggc (64);
670 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
671 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
673 /* Initialize the tree_contains_struct array. */
674 initialize_tree_contains_struct ();
675 lang_hooks
.init_ts ();
679 /* The name of the object as the assembler will see it (but before any
680 translations made by ASM_OUTPUT_LABELREF). Often this is the same
681 as DECL_NAME. It is an IDENTIFIER_NODE. */
683 decl_assembler_name (tree decl
)
685 if (!DECL_ASSEMBLER_NAME_SET_P (decl
))
686 lang_hooks
.set_decl_assembler_name (decl
);
687 return DECL_WITH_VIS_CHECK (decl
)->decl_with_vis
.assembler_name
;
690 /* When the target supports COMDAT groups, this indicates which group the
691 DECL is associated with. This can be either an IDENTIFIER_NODE or a
692 decl, in which case its DECL_ASSEMBLER_NAME identifies the group. */
694 decl_comdat_group (const_tree node
)
696 struct symtab_node
*snode
= symtab_node::get (node
);
699 return snode
->get_comdat_group ();
702 /* Likewise, but make sure it's been reduced to an IDENTIFIER_NODE. */
704 decl_comdat_group_id (const_tree node
)
706 struct symtab_node
*snode
= symtab_node::get (node
);
709 return snode
->get_comdat_group_id ();
712 /* When the target supports named section, return its name as IDENTIFIER_NODE
713 or NULL if it is in no section. */
715 decl_section_name (const_tree node
)
717 struct symtab_node
*snode
= symtab_node::get (node
);
720 return snode
->get_section ();
723 /* Set section section name of NODE to VALUE (that is expected to
724 be identifier node) */
726 set_decl_section_name (tree node
, const char *value
)
728 struct symtab_node
*snode
;
732 snode
= symtab_node::get (node
);
736 else if (TREE_CODE (node
) == VAR_DECL
)
737 snode
= varpool_node::get_create (node
);
739 snode
= cgraph_node::get_create (node
);
740 snode
->set_section (value
);
743 /* Return TLS model of a variable NODE. */
745 decl_tls_model (const_tree node
)
747 struct varpool_node
*snode
= varpool_node::get (node
);
749 return TLS_MODEL_NONE
;
750 return snode
->tls_model
;
753 /* Set TLS model of variable NODE to MODEL. */
755 set_decl_tls_model (tree node
, enum tls_model model
)
757 struct varpool_node
*vnode
;
759 if (model
== TLS_MODEL_NONE
)
761 vnode
= varpool_node::get (node
);
766 vnode
= varpool_node::get_create (node
);
767 vnode
->tls_model
= model
;
770 /* Compute the number of bytes occupied by a tree with code CODE.
771 This function cannot be used for nodes that have variable sizes,
772 including TREE_VEC, INTEGER_CST, STRING_CST, and CALL_EXPR. */
774 tree_code_size (enum tree_code code
)
776 switch (TREE_CODE_CLASS (code
))
778 case tcc_declaration
: /* A decl node */
783 return sizeof (struct tree_field_decl
);
785 return sizeof (struct tree_parm_decl
);
787 return sizeof (struct tree_var_decl
);
789 return sizeof (struct tree_label_decl
);
791 return sizeof (struct tree_result_decl
);
793 return sizeof (struct tree_const_decl
);
795 return sizeof (struct tree_type_decl
);
797 return sizeof (struct tree_function_decl
);
798 case DEBUG_EXPR_DECL
:
799 return sizeof (struct tree_decl_with_rtl
);
800 case TRANSLATION_UNIT_DECL
:
801 return sizeof (struct tree_translation_unit_decl
);
805 return sizeof (struct tree_decl_non_common
);
807 return lang_hooks
.tree_size (code
);
811 case tcc_type
: /* a type node */
812 return sizeof (struct tree_type_non_common
);
814 case tcc_reference
: /* a reference */
815 case tcc_expression
: /* an expression */
816 case tcc_statement
: /* an expression with side effects */
817 case tcc_comparison
: /* a comparison expression */
818 case tcc_unary
: /* a unary arithmetic expression */
819 case tcc_binary
: /* a binary arithmetic expression */
820 return (sizeof (struct tree_exp
)
821 + (TREE_CODE_LENGTH (code
) - 1) * sizeof (tree
));
823 case tcc_constant
: /* a constant */
826 case VOID_CST
: return sizeof (struct tree_typed
);
827 case INTEGER_CST
: gcc_unreachable ();
828 case REAL_CST
: return sizeof (struct tree_real_cst
);
829 case FIXED_CST
: return sizeof (struct tree_fixed_cst
);
830 case COMPLEX_CST
: return sizeof (struct tree_complex
);
831 case VECTOR_CST
: return sizeof (struct tree_vector
);
832 case STRING_CST
: gcc_unreachable ();
834 return lang_hooks
.tree_size (code
);
837 case tcc_exceptional
: /* something random, like an identifier. */
840 case IDENTIFIER_NODE
: return lang_hooks
.identifier_size
;
841 case TREE_LIST
: return sizeof (struct tree_list
);
844 case PLACEHOLDER_EXPR
: return sizeof (struct tree_common
);
847 case OMP_CLAUSE
: gcc_unreachable ();
849 case SSA_NAME
: return sizeof (struct tree_ssa_name
);
851 case STATEMENT_LIST
: return sizeof (struct tree_statement_list
);
852 case BLOCK
: return sizeof (struct tree_block
);
853 case CONSTRUCTOR
: return sizeof (struct tree_constructor
);
854 case OPTIMIZATION_NODE
: return sizeof (struct tree_optimization_option
);
855 case TARGET_OPTION_NODE
: return sizeof (struct tree_target_option
);
858 return lang_hooks
.tree_size (code
);
866 /* Compute the number of bytes occupied by NODE. This routine only
867 looks at TREE_CODE, except for those nodes that have variable sizes. */
869 tree_size (const_tree node
)
871 const enum tree_code code
= TREE_CODE (node
);
875 return (sizeof (struct tree_int_cst
)
876 + (TREE_INT_CST_EXT_NUNITS (node
) - 1) * sizeof (HOST_WIDE_INT
));
879 return (offsetof (struct tree_binfo
, base_binfos
)
881 ::embedded_size (BINFO_N_BASE_BINFOS (node
)));
884 return (sizeof (struct tree_vec
)
885 + (TREE_VEC_LENGTH (node
) - 1) * sizeof (tree
));
888 return (sizeof (struct tree_vector
)
889 + (TYPE_VECTOR_SUBPARTS (TREE_TYPE (node
)) - 1) * sizeof (tree
));
892 return TREE_STRING_LENGTH (node
) + offsetof (struct tree_string
, str
) + 1;
895 return (sizeof (struct tree_omp_clause
)
896 + (omp_clause_num_ops
[OMP_CLAUSE_CODE (node
)] - 1)
900 if (TREE_CODE_CLASS (code
) == tcc_vl_exp
)
901 return (sizeof (struct tree_exp
)
902 + (VL_EXP_OPERAND_LENGTH (node
) - 1) * sizeof (tree
));
904 return tree_code_size (code
);
908 /* Record interesting allocation statistics for a tree node with CODE
912 record_node_allocation_statistics (enum tree_code code ATTRIBUTE_UNUSED
,
913 size_t length ATTRIBUTE_UNUSED
)
915 enum tree_code_class type
= TREE_CODE_CLASS (code
);
918 if (!GATHER_STATISTICS
)
923 case tcc_declaration
: /* A decl node */
927 case tcc_type
: /* a type node */
931 case tcc_statement
: /* an expression with side effects */
935 case tcc_reference
: /* a reference */
939 case tcc_expression
: /* an expression */
940 case tcc_comparison
: /* a comparison expression */
941 case tcc_unary
: /* a unary arithmetic expression */
942 case tcc_binary
: /* a binary arithmetic expression */
946 case tcc_constant
: /* a constant */
950 case tcc_exceptional
: /* something random, like an identifier. */
953 case IDENTIFIER_NODE
:
966 kind
= ssa_name_kind
;
978 kind
= omp_clause_kind
;
995 tree_code_counts
[(int) code
]++;
996 tree_node_counts
[(int) kind
]++;
997 tree_node_sizes
[(int) kind
] += length
;
1000 /* Allocate and return a new UID from the DECL_UID namespace. */
1003 allocate_decl_uid (void)
1005 return next_decl_uid
++;
1008 /* Return a newly allocated node of code CODE. For decl and type
1009 nodes, some other fields are initialized. The rest of the node is
1010 initialized to zero. This function cannot be used for TREE_VEC,
1011 INTEGER_CST or OMP_CLAUSE nodes, which is enforced by asserts in
1014 Achoo! I got a code in the node. */
1017 make_node_stat (enum tree_code code MEM_STAT_DECL
)
1020 enum tree_code_class type
= TREE_CODE_CLASS (code
);
1021 size_t length
= tree_code_size (code
);
1023 record_node_allocation_statistics (code
, length
);
1025 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
1026 TREE_SET_CODE (t
, code
);
1031 TREE_SIDE_EFFECTS (t
) = 1;
1034 case tcc_declaration
:
1035 if (CODE_CONTAINS_STRUCT (code
, TS_DECL_COMMON
))
1037 if (code
== FUNCTION_DECL
)
1039 DECL_ALIGN (t
) = FUNCTION_BOUNDARY
;
1040 DECL_MODE (t
) = FUNCTION_MODE
;
1045 DECL_SOURCE_LOCATION (t
) = input_location
;
1046 if (TREE_CODE (t
) == DEBUG_EXPR_DECL
)
1047 DECL_UID (t
) = --next_debug_decl_uid
;
1050 DECL_UID (t
) = allocate_decl_uid ();
1051 SET_DECL_PT_UID (t
, -1);
1053 if (TREE_CODE (t
) == LABEL_DECL
)
1054 LABEL_DECL_UID (t
) = -1;
1059 TYPE_UID (t
) = next_type_uid
++;
1060 TYPE_ALIGN (t
) = BITS_PER_UNIT
;
1061 TYPE_USER_ALIGN (t
) = 0;
1062 TYPE_MAIN_VARIANT (t
) = t
;
1063 TYPE_CANONICAL (t
) = t
;
1065 /* Default to no attributes for type, but let target change that. */
1066 TYPE_ATTRIBUTES (t
) = NULL_TREE
;
1067 targetm
.set_default_type_attributes (t
);
1069 /* We have not yet computed the alias set for this type. */
1070 TYPE_ALIAS_SET (t
) = -1;
1074 TREE_CONSTANT (t
) = 1;
1077 case tcc_expression
:
1083 case PREDECREMENT_EXPR
:
1084 case PREINCREMENT_EXPR
:
1085 case POSTDECREMENT_EXPR
:
1086 case POSTINCREMENT_EXPR
:
1087 /* All of these have side-effects, no matter what their
1089 TREE_SIDE_EFFECTS (t
) = 1;
1097 case tcc_exceptional
:
1098 if (code
== TARGET_OPTION_NODE
)
1100 TREE_TARGET_OPTION(t
) = ggc_cleared_alloc
<struct cl_target_option
> ();
1105 /* Other classes need no special treatment. */
1112 /* Return a new node with the same contents as NODE except that its
1113 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
1116 copy_node_stat (tree node MEM_STAT_DECL
)
1119 enum tree_code code
= TREE_CODE (node
);
1122 gcc_assert (code
!= STATEMENT_LIST
);
1124 length
= tree_size (node
);
1125 record_node_allocation_statistics (code
, length
);
1126 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
1127 memcpy (t
, node
, length
);
1129 if (CODE_CONTAINS_STRUCT (code
, TS_COMMON
))
1131 TREE_ASM_WRITTEN (t
) = 0;
1132 TREE_VISITED (t
) = 0;
1134 if (TREE_CODE_CLASS (code
) == tcc_declaration
)
1136 if (code
== DEBUG_EXPR_DECL
)
1137 DECL_UID (t
) = --next_debug_decl_uid
;
1140 DECL_UID (t
) = allocate_decl_uid ();
1141 if (DECL_PT_UID_SET_P (node
))
1142 SET_DECL_PT_UID (t
, DECL_PT_UID (node
));
1144 if ((TREE_CODE (node
) == PARM_DECL
|| TREE_CODE (node
) == VAR_DECL
)
1145 && DECL_HAS_VALUE_EXPR_P (node
))
1147 SET_DECL_VALUE_EXPR (t
, DECL_VALUE_EXPR (node
));
1148 DECL_HAS_VALUE_EXPR_P (t
) = 1;
1150 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
1151 if (TREE_CODE (node
) == VAR_DECL
)
1153 DECL_HAS_DEBUG_EXPR_P (t
) = 0;
1154 t
->decl_with_vis
.symtab_node
= NULL
;
1156 if (TREE_CODE (node
) == VAR_DECL
&& DECL_HAS_INIT_PRIORITY_P (node
))
1158 SET_DECL_INIT_PRIORITY (t
, DECL_INIT_PRIORITY (node
));
1159 DECL_HAS_INIT_PRIORITY_P (t
) = 1;
1161 if (TREE_CODE (node
) == FUNCTION_DECL
)
1163 DECL_STRUCT_FUNCTION (t
) = NULL
;
1164 t
->decl_with_vis
.symtab_node
= NULL
;
1167 else if (TREE_CODE_CLASS (code
) == tcc_type
)
1169 TYPE_UID (t
) = next_type_uid
++;
1170 /* The following is so that the debug code for
1171 the copy is different from the original type.
1172 The two statements usually duplicate each other
1173 (because they clear fields of the same union),
1174 but the optimizer should catch that. */
1175 TYPE_SYMTAB_POINTER (t
) = 0;
1176 TYPE_SYMTAB_ADDRESS (t
) = 0;
1178 /* Do not copy the values cache. */
1179 if (TYPE_CACHED_VALUES_P (t
))
1181 TYPE_CACHED_VALUES_P (t
) = 0;
1182 TYPE_CACHED_VALUES (t
) = NULL_TREE
;
1185 else if (code
== TARGET_OPTION_NODE
)
1187 TREE_TARGET_OPTION (t
) = ggc_alloc
<struct cl_target_option
>();
1188 memcpy (TREE_TARGET_OPTION (t
), TREE_TARGET_OPTION (node
),
1189 sizeof (struct cl_target_option
));
1195 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1196 For example, this can copy a list made of TREE_LIST nodes. */
1199 copy_list (tree list
)
1207 head
= prev
= copy_node (list
);
1208 next
= TREE_CHAIN (list
);
1211 TREE_CHAIN (prev
) = copy_node (next
);
1212 prev
= TREE_CHAIN (prev
);
1213 next
= TREE_CHAIN (next
);
1219 /* Return the value that TREE_INT_CST_EXT_NUNITS should have for an
1220 INTEGER_CST with value CST and type TYPE. */
1223 get_int_cst_ext_nunits (tree type
, const wide_int
&cst
)
1225 gcc_checking_assert (cst
.get_precision () == TYPE_PRECISION (type
));
1226 /* We need an extra zero HWI if CST is an unsigned integer with its
1227 upper bit set, and if CST occupies a whole number of HWIs. */
1228 if (TYPE_UNSIGNED (type
)
1230 && (cst
.get_precision () % HOST_BITS_PER_WIDE_INT
) == 0)
1231 return cst
.get_precision () / HOST_BITS_PER_WIDE_INT
+ 1;
1232 return cst
.get_len ();
1235 /* Return a new INTEGER_CST with value CST and type TYPE. */
1238 build_new_int_cst (tree type
, const wide_int
&cst
)
1240 unsigned int len
= cst
.get_len ();
1241 unsigned int ext_len
= get_int_cst_ext_nunits (type
, cst
);
1242 tree nt
= make_int_cst (len
, ext_len
);
1247 TREE_INT_CST_ELT (nt
, ext_len
) = 0;
1248 for (unsigned int i
= len
; i
< ext_len
; ++i
)
1249 TREE_INT_CST_ELT (nt
, i
) = -1;
1251 else if (TYPE_UNSIGNED (type
)
1252 && cst
.get_precision () < len
* HOST_BITS_PER_WIDE_INT
)
1255 TREE_INT_CST_ELT (nt
, len
)
1256 = zext_hwi (cst
.elt (len
),
1257 cst
.get_precision () % HOST_BITS_PER_WIDE_INT
);
1260 for (unsigned int i
= 0; i
< len
; i
++)
1261 TREE_INT_CST_ELT (nt
, i
) = cst
.elt (i
);
1262 TREE_TYPE (nt
) = type
;
1266 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1269 build_int_cst (tree type
, HOST_WIDE_INT low
)
1271 /* Support legacy code. */
1273 type
= integer_type_node
;
1275 return wide_int_to_tree (type
, wi::shwi (low
, TYPE_PRECISION (type
)));
1279 build_int_cstu (tree type
, unsigned HOST_WIDE_INT cst
)
1281 return wide_int_to_tree (type
, wi::uhwi (cst
, TYPE_PRECISION (type
)));
1284 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1287 build_int_cst_type (tree type
, HOST_WIDE_INT low
)
1290 return wide_int_to_tree (type
, wi::shwi (low
, TYPE_PRECISION (type
)));
1293 /* Constructs tree in type TYPE from with value given by CST. Signedness
1294 of CST is assumed to be the same as the signedness of TYPE. */
1297 double_int_to_tree (tree type
, double_int cst
)
1299 return wide_int_to_tree (type
, widest_int::from (cst
, TYPE_SIGN (type
)));
1302 /* We force the wide_int CST to the range of the type TYPE by sign or
1303 zero extending it. OVERFLOWABLE indicates if we are interested in
1304 overflow of the value, when >0 we are only interested in signed
1305 overflow, for <0 we are interested in any overflow. OVERFLOWED
1306 indicates whether overflow has already occurred. CONST_OVERFLOWED
1307 indicates whether constant overflow has already occurred. We force
1308 T's value to be within range of T's type (by setting to 0 or 1 all
1309 the bits outside the type's range). We set TREE_OVERFLOWED if,
1310 OVERFLOWED is nonzero,
1311 or OVERFLOWABLE is >0 and signed overflow occurs
1312 or OVERFLOWABLE is <0 and any overflow occurs
1313 We return a new tree node for the extended wide_int. The node
1314 is shared if no overflow flags are set. */
1318 force_fit_type (tree type
, const wide_int_ref
&cst
,
1319 int overflowable
, bool overflowed
)
1321 signop sign
= TYPE_SIGN (type
);
1323 /* If we need to set overflow flags, return a new unshared node. */
1324 if (overflowed
|| !wi::fits_to_tree_p (cst
, type
))
1328 || (overflowable
> 0 && sign
== SIGNED
))
1330 wide_int tmp
= wide_int::from (cst
, TYPE_PRECISION (type
), sign
);
1331 tree t
= build_new_int_cst (type
, tmp
);
1332 TREE_OVERFLOW (t
) = 1;
1337 /* Else build a shared node. */
1338 return wide_int_to_tree (type
, cst
);
1341 /* These are the hash table functions for the hash table of INTEGER_CST
1342 nodes of a sizetype. */
1344 /* Return the hash code code X, an INTEGER_CST. */
1347 int_cst_hasher::hash (tree x
)
1349 const_tree
const t
= x
;
1350 hashval_t code
= TYPE_UID (TREE_TYPE (t
));
1353 for (i
= 0; i
< TREE_INT_CST_NUNITS (t
); i
++)
1354 code
^= TREE_INT_CST_ELT (t
, i
);
1359 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1360 is the same as that given by *Y, which is the same. */
1363 int_cst_hasher::equal (tree x
, tree y
)
1365 const_tree
const xt
= x
;
1366 const_tree
const yt
= y
;
1368 if (TREE_TYPE (xt
) != TREE_TYPE (yt
)
1369 || TREE_INT_CST_NUNITS (xt
) != TREE_INT_CST_NUNITS (yt
)
1370 || TREE_INT_CST_EXT_NUNITS (xt
) != TREE_INT_CST_EXT_NUNITS (yt
))
1373 for (int i
= 0; i
< TREE_INT_CST_NUNITS (xt
); i
++)
1374 if (TREE_INT_CST_ELT (xt
, i
) != TREE_INT_CST_ELT (yt
, i
))
1380 /* Create an INT_CST node of TYPE and value CST.
1381 The returned node is always shared. For small integers we use a
1382 per-type vector cache, for larger ones we use a single hash table.
1383 The value is extended from its precision according to the sign of
1384 the type to be a multiple of HOST_BITS_PER_WIDE_INT. This defines
1385 the upper bits and ensures that hashing and value equality based
1386 upon the underlying HOST_WIDE_INTs works without masking. */
1389 wide_int_to_tree (tree type
, const wide_int_ref
&pcst
)
1396 unsigned int prec
= TYPE_PRECISION (type
);
1397 signop sgn
= TYPE_SIGN (type
);
1399 /* Verify that everything is canonical. */
1400 int l
= pcst
.get_len ();
1403 if (pcst
.elt (l
- 1) == 0)
1404 gcc_checking_assert (pcst
.elt (l
- 2) < 0);
1405 if (pcst
.elt (l
- 1) == (HOST_WIDE_INT
) -1)
1406 gcc_checking_assert (pcst
.elt (l
- 2) >= 0);
1409 wide_int cst
= wide_int::from (pcst
, prec
, sgn
);
1410 unsigned int ext_len
= get_int_cst_ext_nunits (type
, cst
);
1414 /* We just need to store a single HOST_WIDE_INT. */
1416 if (TYPE_UNSIGNED (type
))
1417 hwi
= cst
.to_uhwi ();
1419 hwi
= cst
.to_shwi ();
1421 switch (TREE_CODE (type
))
1424 gcc_assert (hwi
== 0);
1428 case REFERENCE_TYPE
:
1429 case POINTER_BOUNDS_TYPE
:
1430 /* Cache NULL pointer and zero bounds. */
1439 /* Cache false or true. */
1447 if (TYPE_SIGN (type
) == UNSIGNED
)
1450 limit
= INTEGER_SHARE_LIMIT
;
1451 if (IN_RANGE (hwi
, 0, INTEGER_SHARE_LIMIT
- 1))
1456 /* Cache [-1, N). */
1457 limit
= INTEGER_SHARE_LIMIT
+ 1;
1458 if (IN_RANGE (hwi
, -1, INTEGER_SHARE_LIMIT
- 1))
1472 /* Look for it in the type's vector of small shared ints. */
1473 if (!TYPE_CACHED_VALUES_P (type
))
1475 TYPE_CACHED_VALUES_P (type
) = 1;
1476 TYPE_CACHED_VALUES (type
) = make_tree_vec (limit
);
1479 t
= TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
);
1481 /* Make sure no one is clobbering the shared constant. */
1482 gcc_checking_assert (TREE_TYPE (t
) == type
1483 && TREE_INT_CST_NUNITS (t
) == 1
1484 && TREE_INT_CST_OFFSET_NUNITS (t
) == 1
1485 && TREE_INT_CST_EXT_NUNITS (t
) == 1
1486 && TREE_INT_CST_ELT (t
, 0) == hwi
);
1489 /* Create a new shared int. */
1490 t
= build_new_int_cst (type
, cst
);
1491 TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) = t
;
1496 /* Use the cache of larger shared ints, using int_cst_node as
1499 TREE_INT_CST_ELT (int_cst_node
, 0) = hwi
;
1500 TREE_TYPE (int_cst_node
) = type
;
1502 tree
*slot
= int_cst_hash_table
->find_slot (int_cst_node
, INSERT
);
1506 /* Insert this one into the hash table. */
1509 /* Make a new node for next time round. */
1510 int_cst_node
= make_int_cst (1, 1);
1516 /* The value either hashes properly or we drop it on the floor
1517 for the gc to take care of. There will not be enough of them
1520 tree nt
= build_new_int_cst (type
, cst
);
1521 tree
*slot
= int_cst_hash_table
->find_slot (nt
, INSERT
);
1525 /* Insert this one into the hash table. */
1535 cache_integer_cst (tree t
)
1537 tree type
= TREE_TYPE (t
);
1540 int prec
= TYPE_PRECISION (type
);
1542 gcc_assert (!TREE_OVERFLOW (t
));
1544 switch (TREE_CODE (type
))
1547 gcc_assert (integer_zerop (t
));
1551 case REFERENCE_TYPE
:
1552 /* Cache NULL pointer. */
1553 if (integer_zerop (t
))
1561 /* Cache false or true. */
1563 if (wi::ltu_p (t
, 2))
1564 ix
= TREE_INT_CST_ELT (t
, 0);
1569 if (TYPE_UNSIGNED (type
))
1572 limit
= INTEGER_SHARE_LIMIT
;
1574 /* This is a little hokie, but if the prec is smaller than
1575 what is necessary to hold INTEGER_SHARE_LIMIT, then the
1576 obvious test will not get the correct answer. */
1577 if (prec
< HOST_BITS_PER_WIDE_INT
)
1579 if (tree_to_uhwi (t
) < (unsigned HOST_WIDE_INT
) INTEGER_SHARE_LIMIT
)
1580 ix
= tree_to_uhwi (t
);
1582 else if (wi::ltu_p (t
, INTEGER_SHARE_LIMIT
))
1583 ix
= tree_to_uhwi (t
);
1588 limit
= INTEGER_SHARE_LIMIT
+ 1;
1590 if (integer_minus_onep (t
))
1592 else if (!wi::neg_p (t
))
1594 if (prec
< HOST_BITS_PER_WIDE_INT
)
1596 if (tree_to_shwi (t
) < INTEGER_SHARE_LIMIT
)
1597 ix
= tree_to_shwi (t
) + 1;
1599 else if (wi::ltu_p (t
, INTEGER_SHARE_LIMIT
))
1600 ix
= tree_to_shwi (t
) + 1;
1614 /* Look for it in the type's vector of small shared ints. */
1615 if (!TYPE_CACHED_VALUES_P (type
))
1617 TYPE_CACHED_VALUES_P (type
) = 1;
1618 TYPE_CACHED_VALUES (type
) = make_tree_vec (limit
);
1621 gcc_assert (TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) == NULL_TREE
);
1622 TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) = t
;
1626 /* Use the cache of larger shared ints. */
1627 tree
*slot
= int_cst_hash_table
->find_slot (t
, INSERT
);
1628 /* If there is already an entry for the number verify it's the
1631 gcc_assert (wi::eq_p (tree (*slot
), t
));
1633 /* Otherwise insert this one into the hash table. */
1639 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1640 and the rest are zeros. */
1643 build_low_bits_mask (tree type
, unsigned bits
)
1645 gcc_assert (bits
<= TYPE_PRECISION (type
));
1647 return wide_int_to_tree (type
, wi::mask (bits
, false,
1648 TYPE_PRECISION (type
)));
1651 /* Checks that X is integer constant that can be expressed in (unsigned)
1652 HOST_WIDE_INT without loss of precision. */
1655 cst_and_fits_in_hwi (const_tree x
)
1657 if (TREE_CODE (x
) != INTEGER_CST
)
1660 if (TYPE_PRECISION (TREE_TYPE (x
)) > HOST_BITS_PER_WIDE_INT
)
1663 return TREE_INT_CST_NUNITS (x
) == 1;
1666 /* Build a newly constructed VECTOR_CST node of length LEN. */
1669 make_vector_stat (unsigned len MEM_STAT_DECL
)
1672 unsigned length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vector
);
1674 record_node_allocation_statistics (VECTOR_CST
, length
);
1676 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
1678 TREE_SET_CODE (t
, VECTOR_CST
);
1679 TREE_CONSTANT (t
) = 1;
1684 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1685 are in a list pointed to by VALS. */
1688 build_vector_stat (tree type
, tree
*vals MEM_STAT_DECL
)
1692 tree v
= make_vector (TYPE_VECTOR_SUBPARTS (type
));
1693 TREE_TYPE (v
) = type
;
1695 /* Iterate through elements and check for overflow. */
1696 for (cnt
= 0; cnt
< TYPE_VECTOR_SUBPARTS (type
); ++cnt
)
1698 tree value
= vals
[cnt
];
1700 VECTOR_CST_ELT (v
, cnt
) = value
;
1702 /* Don't crash if we get an address constant. */
1703 if (!CONSTANT_CLASS_P (value
))
1706 over
|= TREE_OVERFLOW (value
);
1709 TREE_OVERFLOW (v
) = over
;
1713 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1714 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1717 build_vector_from_ctor (tree type
, vec
<constructor_elt
, va_gc
> *v
)
1719 tree
*vec
= XALLOCAVEC (tree
, TYPE_VECTOR_SUBPARTS (type
));
1720 unsigned HOST_WIDE_INT idx
;
1723 FOR_EACH_CONSTRUCTOR_VALUE (v
, idx
, value
)
1725 for (; idx
< TYPE_VECTOR_SUBPARTS (type
); ++idx
)
1726 vec
[idx
] = build_zero_cst (TREE_TYPE (type
));
1728 return build_vector (type
, vec
);
1731 /* Build a vector of type VECTYPE where all the elements are SCs. */
1733 build_vector_from_val (tree vectype
, tree sc
)
1735 int i
, nunits
= TYPE_VECTOR_SUBPARTS (vectype
);
1737 if (sc
== error_mark_node
)
1740 /* Verify that the vector type is suitable for SC. Note that there
1741 is some inconsistency in the type-system with respect to restrict
1742 qualifications of pointers. Vector types always have a main-variant
1743 element type and the qualification is applied to the vector-type.
1744 So TREE_TYPE (vector-type) does not return a properly qualified
1745 vector element-type. */
1746 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc
)),
1747 TREE_TYPE (vectype
)));
1749 if (CONSTANT_CLASS_P (sc
))
1751 tree
*v
= XALLOCAVEC (tree
, nunits
);
1752 for (i
= 0; i
< nunits
; ++i
)
1754 return build_vector (vectype
, v
);
1758 vec
<constructor_elt
, va_gc
> *v
;
1759 vec_alloc (v
, nunits
);
1760 for (i
= 0; i
< nunits
; ++i
)
1761 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, sc
);
1762 return build_constructor (vectype
, v
);
1766 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1767 are in the vec pointed to by VALS. */
1769 build_constructor (tree type
, vec
<constructor_elt
, va_gc
> *vals
)
1771 tree c
= make_node (CONSTRUCTOR
);
1773 constructor_elt
*elt
;
1774 bool constant_p
= true;
1775 bool side_effects_p
= false;
1777 TREE_TYPE (c
) = type
;
1778 CONSTRUCTOR_ELTS (c
) = vals
;
1780 FOR_EACH_VEC_SAFE_ELT (vals
, i
, elt
)
1782 /* Mostly ctors will have elts that don't have side-effects, so
1783 the usual case is to scan all the elements. Hence a single
1784 loop for both const and side effects, rather than one loop
1785 each (with early outs). */
1786 if (!TREE_CONSTANT (elt
->value
))
1788 if (TREE_SIDE_EFFECTS (elt
->value
))
1789 side_effects_p
= true;
1792 TREE_SIDE_EFFECTS (c
) = side_effects_p
;
1793 TREE_CONSTANT (c
) = constant_p
;
1798 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1801 build_constructor_single (tree type
, tree index
, tree value
)
1803 vec
<constructor_elt
, va_gc
> *v
;
1804 constructor_elt elt
= {index
, value
};
1807 v
->quick_push (elt
);
1809 return build_constructor (type
, v
);
1813 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1814 are in a list pointed to by VALS. */
1816 build_constructor_from_list (tree type
, tree vals
)
1819 vec
<constructor_elt
, va_gc
> *v
= NULL
;
1823 vec_alloc (v
, list_length (vals
));
1824 for (t
= vals
; t
; t
= TREE_CHAIN (t
))
1825 CONSTRUCTOR_APPEND_ELT (v
, TREE_PURPOSE (t
), TREE_VALUE (t
));
1828 return build_constructor (type
, v
);
1831 /* Return a new CONSTRUCTOR node whose type is TYPE. NELTS is the number
1832 of elements, provided as index/value pairs. */
1835 build_constructor_va (tree type
, int nelts
, ...)
1837 vec
<constructor_elt
, va_gc
> *v
= NULL
;
1840 va_start (p
, nelts
);
1841 vec_alloc (v
, nelts
);
1844 tree index
= va_arg (p
, tree
);
1845 tree value
= va_arg (p
, tree
);
1846 CONSTRUCTOR_APPEND_ELT (v
, index
, value
);
1849 return build_constructor (type
, v
);
1852 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1855 build_fixed (tree type
, FIXED_VALUE_TYPE f
)
1858 FIXED_VALUE_TYPE
*fp
;
1860 v
= make_node (FIXED_CST
);
1861 fp
= ggc_alloc
<fixed_value
> ();
1862 memcpy (fp
, &f
, sizeof (FIXED_VALUE_TYPE
));
1864 TREE_TYPE (v
) = type
;
1865 TREE_FIXED_CST_PTR (v
) = fp
;
1869 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1872 build_real (tree type
, REAL_VALUE_TYPE d
)
1875 REAL_VALUE_TYPE
*dp
;
1878 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1879 Consider doing it via real_convert now. */
1881 v
= make_node (REAL_CST
);
1882 dp
= ggc_alloc
<real_value
> ();
1883 memcpy (dp
, &d
, sizeof (REAL_VALUE_TYPE
));
1885 TREE_TYPE (v
) = type
;
1886 TREE_REAL_CST_PTR (v
) = dp
;
1887 TREE_OVERFLOW (v
) = overflow
;
1891 /* Return a new REAL_CST node whose type is TYPE
1892 and whose value is the integer value of the INTEGER_CST node I. */
1895 real_value_from_int_cst (const_tree type
, const_tree i
)
1899 /* Clear all bits of the real value type so that we can later do
1900 bitwise comparisons to see if two values are the same. */
1901 memset (&d
, 0, sizeof d
);
1903 real_from_integer (&d
, type
? TYPE_MODE (type
) : VOIDmode
, i
,
1904 TYPE_SIGN (TREE_TYPE (i
)));
1908 /* Given a tree representing an integer constant I, return a tree
1909 representing the same value as a floating-point constant of type TYPE. */
1912 build_real_from_int_cst (tree type
, const_tree i
)
1915 int overflow
= TREE_OVERFLOW (i
);
1917 v
= build_real (type
, real_value_from_int_cst (type
, i
));
1919 TREE_OVERFLOW (v
) |= overflow
;
1923 /* Return a newly constructed STRING_CST node whose value is
1924 the LEN characters at STR.
1925 Note that for a C string literal, LEN should include the trailing NUL.
1926 The TREE_TYPE is not initialized. */
1929 build_string (int len
, const char *str
)
1934 /* Do not waste bytes provided by padding of struct tree_string. */
1935 length
= len
+ offsetof (struct tree_string
, str
) + 1;
1937 record_node_allocation_statistics (STRING_CST
, length
);
1939 s
= (tree
) ggc_internal_alloc (length
);
1941 memset (s
, 0, sizeof (struct tree_typed
));
1942 TREE_SET_CODE (s
, STRING_CST
);
1943 TREE_CONSTANT (s
) = 1;
1944 TREE_STRING_LENGTH (s
) = len
;
1945 memcpy (s
->string
.str
, str
, len
);
1946 s
->string
.str
[len
] = '\0';
1951 /* Return a newly constructed COMPLEX_CST node whose value is
1952 specified by the real and imaginary parts REAL and IMAG.
1953 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1954 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
1957 build_complex (tree type
, tree real
, tree imag
)
1959 tree t
= make_node (COMPLEX_CST
);
1961 TREE_REALPART (t
) = real
;
1962 TREE_IMAGPART (t
) = imag
;
1963 TREE_TYPE (t
) = type
? type
: build_complex_type (TREE_TYPE (real
));
1964 TREE_OVERFLOW (t
) = TREE_OVERFLOW (real
) | TREE_OVERFLOW (imag
);
1968 /* Return a constant of arithmetic type TYPE which is the
1969 multiplicative identity of the set TYPE. */
1972 build_one_cst (tree type
)
1974 switch (TREE_CODE (type
))
1976 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
1977 case POINTER_TYPE
: case REFERENCE_TYPE
:
1979 return build_int_cst (type
, 1);
1982 return build_real (type
, dconst1
);
1984 case FIXED_POINT_TYPE
:
1985 /* We can only generate 1 for accum types. */
1986 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)));
1987 return build_fixed (type
, FCONST1 (TYPE_MODE (type
)));
1991 tree scalar
= build_one_cst (TREE_TYPE (type
));
1993 return build_vector_from_val (type
, scalar
);
1997 return build_complex (type
,
1998 build_one_cst (TREE_TYPE (type
)),
1999 build_zero_cst (TREE_TYPE (type
)));
2006 /* Return an integer of type TYPE containing all 1's in as much precision as
2007 it contains, or a complex or vector whose subparts are such integers. */
2010 build_all_ones_cst (tree type
)
2012 if (TREE_CODE (type
) == COMPLEX_TYPE
)
2014 tree scalar
= build_all_ones_cst (TREE_TYPE (type
));
2015 return build_complex (type
, scalar
, scalar
);
2018 return build_minus_one_cst (type
);
2021 /* Return a constant of arithmetic type TYPE which is the
2022 opposite of the multiplicative identity of the set TYPE. */
2025 build_minus_one_cst (tree type
)
2027 switch (TREE_CODE (type
))
2029 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
2030 case POINTER_TYPE
: case REFERENCE_TYPE
:
2032 return build_int_cst (type
, -1);
2035 return build_real (type
, dconstm1
);
2037 case FIXED_POINT_TYPE
:
2038 /* We can only generate 1 for accum types. */
2039 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)));
2040 return build_fixed (type
, fixed_from_double_int (double_int_minus_one
,
2045 tree scalar
= build_minus_one_cst (TREE_TYPE (type
));
2047 return build_vector_from_val (type
, scalar
);
2051 return build_complex (type
,
2052 build_minus_one_cst (TREE_TYPE (type
)),
2053 build_zero_cst (TREE_TYPE (type
)));
2060 /* Build 0 constant of type TYPE. This is used by constructor folding
2061 and thus the constant should be represented in memory by
2065 build_zero_cst (tree type
)
2067 switch (TREE_CODE (type
))
2069 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
2070 case POINTER_TYPE
: case REFERENCE_TYPE
:
2071 case OFFSET_TYPE
: case NULLPTR_TYPE
:
2072 return build_int_cst (type
, 0);
2075 return build_real (type
, dconst0
);
2077 case FIXED_POINT_TYPE
:
2078 return build_fixed (type
, FCONST0 (TYPE_MODE (type
)));
2082 tree scalar
= build_zero_cst (TREE_TYPE (type
));
2084 return build_vector_from_val (type
, scalar
);
2089 tree zero
= build_zero_cst (TREE_TYPE (type
));
2091 return build_complex (type
, zero
, zero
);
2095 if (!AGGREGATE_TYPE_P (type
))
2096 return fold_convert (type
, integer_zero_node
);
2097 return build_constructor (type
, NULL
);
2102 /* Build a BINFO with LEN language slots. */
2105 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL
)
2108 size_t length
= (offsetof (struct tree_binfo
, base_binfos
)
2109 + vec
<tree
, va_gc
>::embedded_size (base_binfos
));
2111 record_node_allocation_statistics (TREE_BINFO
, length
);
2113 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
2115 memset (t
, 0, offsetof (struct tree_binfo
, base_binfos
));
2117 TREE_SET_CODE (t
, TREE_BINFO
);
2119 BINFO_BASE_BINFOS (t
)->embedded_init (base_binfos
);
2124 /* Create a CASE_LABEL_EXPR tree node and return it. */
2127 build_case_label (tree low_value
, tree high_value
, tree label_decl
)
2129 tree t
= make_node (CASE_LABEL_EXPR
);
2131 TREE_TYPE (t
) = void_type_node
;
2132 SET_EXPR_LOCATION (t
, DECL_SOURCE_LOCATION (label_decl
));
2134 CASE_LOW (t
) = low_value
;
2135 CASE_HIGH (t
) = high_value
;
2136 CASE_LABEL (t
) = label_decl
;
2137 CASE_CHAIN (t
) = NULL_TREE
;
2142 /* Build a newly constructed INTEGER_CST node. LEN and EXT_LEN are the
2143 values of TREE_INT_CST_NUNITS and TREE_INT_CST_EXT_NUNITS respectively.
2144 The latter determines the length of the HOST_WIDE_INT vector. */
2147 make_int_cst_stat (int len
, int ext_len MEM_STAT_DECL
)
2150 int length
= ((ext_len
- 1) * sizeof (HOST_WIDE_INT
)
2151 + sizeof (struct tree_int_cst
));
2154 record_node_allocation_statistics (INTEGER_CST
, length
);
2156 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
2158 TREE_SET_CODE (t
, INTEGER_CST
);
2159 TREE_INT_CST_NUNITS (t
) = len
;
2160 TREE_INT_CST_EXT_NUNITS (t
) = ext_len
;
2161 /* to_offset can only be applied to trees that are offset_int-sized
2162 or smaller. EXT_LEN is correct if it fits, otherwise the constant
2163 must be exactly the precision of offset_int and so LEN is correct. */
2164 if (ext_len
<= OFFSET_INT_ELTS
)
2165 TREE_INT_CST_OFFSET_NUNITS (t
) = ext_len
;
2167 TREE_INT_CST_OFFSET_NUNITS (t
) = len
;
2169 TREE_CONSTANT (t
) = 1;
2174 /* Build a newly constructed TREE_VEC node of length LEN. */
2177 make_tree_vec_stat (int len MEM_STAT_DECL
)
2180 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
2182 record_node_allocation_statistics (TREE_VEC
, length
);
2184 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
2186 TREE_SET_CODE (t
, TREE_VEC
);
2187 TREE_VEC_LENGTH (t
) = len
;
2192 /* Grow a TREE_VEC node to new length LEN. */
2195 grow_tree_vec_stat (tree v
, int len MEM_STAT_DECL
)
2197 gcc_assert (TREE_CODE (v
) == TREE_VEC
);
2199 int oldlen
= TREE_VEC_LENGTH (v
);
2200 gcc_assert (len
> oldlen
);
2202 int oldlength
= (oldlen
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
2203 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
2205 record_node_allocation_statistics (TREE_VEC
, length
- oldlength
);
2207 v
= (tree
) ggc_realloc (v
, length PASS_MEM_STAT
);
2209 TREE_VEC_LENGTH (v
) = len
;
2214 /* Return 1 if EXPR is the integer constant zero or a complex constant
2218 integer_zerop (const_tree expr
)
2222 switch (TREE_CODE (expr
))
2225 return wi::eq_p (expr
, 0);
2227 return (integer_zerop (TREE_REALPART (expr
))
2228 && integer_zerop (TREE_IMAGPART (expr
)));
2232 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2233 if (!integer_zerop (VECTOR_CST_ELT (expr
, i
)))
2242 /* Return 1 if EXPR is the integer constant one or the corresponding
2243 complex constant. */
2246 integer_onep (const_tree expr
)
2250 switch (TREE_CODE (expr
))
2253 return wi::eq_p (wi::to_widest (expr
), 1);
2255 return (integer_onep (TREE_REALPART (expr
))
2256 && integer_zerop (TREE_IMAGPART (expr
)));
2260 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2261 if (!integer_onep (VECTOR_CST_ELT (expr
, i
)))
2270 /* Return 1 if EXPR is the integer constant one. For complex and vector,
2271 return 1 if every piece is the integer constant one. */
2274 integer_each_onep (const_tree expr
)
2278 if (TREE_CODE (expr
) == COMPLEX_CST
)
2279 return (integer_onep (TREE_REALPART (expr
))
2280 && integer_onep (TREE_IMAGPART (expr
)));
2282 return integer_onep (expr
);
2285 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
2286 it contains, or a complex or vector whose subparts are such integers. */
2289 integer_all_onesp (const_tree expr
)
2293 if (TREE_CODE (expr
) == COMPLEX_CST
2294 && integer_all_onesp (TREE_REALPART (expr
))
2295 && integer_all_onesp (TREE_IMAGPART (expr
)))
2298 else if (TREE_CODE (expr
) == VECTOR_CST
)
2301 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2302 if (!integer_all_onesp (VECTOR_CST_ELT (expr
, i
)))
2307 else if (TREE_CODE (expr
) != INTEGER_CST
)
2310 return wi::max_value (TYPE_PRECISION (TREE_TYPE (expr
)), UNSIGNED
) == expr
;
2313 /* Return 1 if EXPR is the integer constant minus one. */
2316 integer_minus_onep (const_tree expr
)
2320 if (TREE_CODE (expr
) == COMPLEX_CST
)
2321 return (integer_all_onesp (TREE_REALPART (expr
))
2322 && integer_zerop (TREE_IMAGPART (expr
)));
2324 return integer_all_onesp (expr
);
2327 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
2331 integer_pow2p (const_tree expr
)
2335 if (TREE_CODE (expr
) == COMPLEX_CST
2336 && integer_pow2p (TREE_REALPART (expr
))
2337 && integer_zerop (TREE_IMAGPART (expr
)))
2340 if (TREE_CODE (expr
) != INTEGER_CST
)
2343 return wi::popcount (expr
) == 1;
2346 /* Return 1 if EXPR is an integer constant other than zero or a
2347 complex constant other than zero. */
2350 integer_nonzerop (const_tree expr
)
2354 return ((TREE_CODE (expr
) == INTEGER_CST
2355 && !wi::eq_p (expr
, 0))
2356 || (TREE_CODE (expr
) == COMPLEX_CST
2357 && (integer_nonzerop (TREE_REALPART (expr
))
2358 || integer_nonzerop (TREE_IMAGPART (expr
)))));
2361 /* Return 1 if EXPR is the integer constant one. For vector,
2362 return 1 if every piece is the integer constant minus one
2363 (representing the value TRUE). */
2366 integer_truep (const_tree expr
)
2370 if (TREE_CODE (expr
) == VECTOR_CST
)
2371 return integer_all_onesp (expr
);
2372 return integer_onep (expr
);
2375 /* Return 1 if EXPR is the fixed-point constant zero. */
2378 fixed_zerop (const_tree expr
)
2380 return (TREE_CODE (expr
) == FIXED_CST
2381 && TREE_FIXED_CST (expr
).data
.is_zero ());
2384 /* Return the power of two represented by a tree node known to be a
2388 tree_log2 (const_tree expr
)
2392 if (TREE_CODE (expr
) == COMPLEX_CST
)
2393 return tree_log2 (TREE_REALPART (expr
));
2395 return wi::exact_log2 (expr
);
2398 /* Similar, but return the largest integer Y such that 2 ** Y is less
2399 than or equal to EXPR. */
2402 tree_floor_log2 (const_tree expr
)
2406 if (TREE_CODE (expr
) == COMPLEX_CST
)
2407 return tree_log2 (TREE_REALPART (expr
));
2409 return wi::floor_log2 (expr
);
2412 /* Return number of known trailing zero bits in EXPR, or, if the value of
2413 EXPR is known to be zero, the precision of it's type. */
2416 tree_ctz (const_tree expr
)
2418 if (!INTEGRAL_TYPE_P (TREE_TYPE (expr
))
2419 && !POINTER_TYPE_P (TREE_TYPE (expr
)))
2422 unsigned int ret1
, ret2
, prec
= TYPE_PRECISION (TREE_TYPE (expr
));
2423 switch (TREE_CODE (expr
))
2426 ret1
= wi::ctz (expr
);
2427 return MIN (ret1
, prec
);
2429 ret1
= wi::ctz (get_nonzero_bits (expr
));
2430 return MIN (ret1
, prec
);
2437 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2440 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2441 return MIN (ret1
, ret2
);
2442 case POINTER_PLUS_EXPR
:
2443 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2444 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2445 /* Second operand is sizetype, which could be in theory
2446 wider than pointer's precision. Make sure we never
2447 return more than prec. */
2448 ret2
= MIN (ret2
, prec
);
2449 return MIN (ret1
, ret2
);
2451 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2452 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2453 return MAX (ret1
, ret2
);
2455 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2456 ret2
= tree_ctz (TREE_OPERAND (expr
, 1));
2457 return MIN (ret1
+ ret2
, prec
);
2459 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2460 if (tree_fits_uhwi_p (TREE_OPERAND (expr
, 1))
2461 && (tree_to_uhwi (TREE_OPERAND (expr
, 1)) < prec
))
2463 ret2
= tree_to_uhwi (TREE_OPERAND (expr
, 1));
2464 return MIN (ret1
+ ret2
, prec
);
2468 if (tree_fits_uhwi_p (TREE_OPERAND (expr
, 1))
2469 && (tree_to_uhwi (TREE_OPERAND (expr
, 1)) < prec
))
2471 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2472 ret2
= tree_to_uhwi (TREE_OPERAND (expr
, 1));
2477 case TRUNC_DIV_EXPR
:
2479 case FLOOR_DIV_EXPR
:
2480 case ROUND_DIV_EXPR
:
2481 case EXACT_DIV_EXPR
:
2482 if (TREE_CODE (TREE_OPERAND (expr
, 1)) == INTEGER_CST
2483 && tree_int_cst_sgn (TREE_OPERAND (expr
, 1)) == 1)
2485 int l
= tree_log2 (TREE_OPERAND (expr
, 1));
2488 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2496 ret1
= tree_ctz (TREE_OPERAND (expr
, 0));
2497 if (ret1
&& ret1
== TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr
, 0))))
2499 return MIN (ret1
, prec
);
2501 return tree_ctz (TREE_OPERAND (expr
, 0));
2503 ret1
= tree_ctz (TREE_OPERAND (expr
, 1));
2506 ret2
= tree_ctz (TREE_OPERAND (expr
, 2));
2507 return MIN (ret1
, ret2
);
2509 return tree_ctz (TREE_OPERAND (expr
, 1));
2511 ret1
= get_pointer_alignment (CONST_CAST_TREE (expr
));
2512 if (ret1
> BITS_PER_UNIT
)
2514 ret1
= ctz_hwi (ret1
/ BITS_PER_UNIT
);
2515 return MIN (ret1
, prec
);
2523 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
2524 decimal float constants, so don't return 1 for them. */
2527 real_zerop (const_tree expr
)
2531 switch (TREE_CODE (expr
))
2534 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst0
)
2535 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2537 return real_zerop (TREE_REALPART (expr
))
2538 && real_zerop (TREE_IMAGPART (expr
));
2542 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2543 if (!real_zerop (VECTOR_CST_ELT (expr
, i
)))
2552 /* Return 1 if EXPR is the real constant one in real or complex form.
2553 Trailing zeroes matter for decimal float constants, so don't return
2557 real_onep (const_tree expr
)
2561 switch (TREE_CODE (expr
))
2564 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst1
)
2565 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2567 return real_onep (TREE_REALPART (expr
))
2568 && real_zerop (TREE_IMAGPART (expr
));
2572 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2573 if (!real_onep (VECTOR_CST_ELT (expr
, i
)))
2582 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2583 matter for decimal float constants, so don't return 1 for them. */
2586 real_minus_onep (const_tree expr
)
2590 switch (TREE_CODE (expr
))
2593 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconstm1
)
2594 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2596 return real_minus_onep (TREE_REALPART (expr
))
2597 && real_zerop (TREE_IMAGPART (expr
));
2601 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2602 if (!real_minus_onep (VECTOR_CST_ELT (expr
, i
)))
2611 /* Nonzero if EXP is a constant or a cast of a constant. */
2614 really_constant_p (const_tree exp
)
2616 /* This is not quite the same as STRIP_NOPS. It does more. */
2617 while (CONVERT_EXPR_P (exp
)
2618 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
2619 exp
= TREE_OPERAND (exp
, 0);
2620 return TREE_CONSTANT (exp
);
2623 /* Return first list element whose TREE_VALUE is ELEM.
2624 Return 0 if ELEM is not in LIST. */
2627 value_member (tree elem
, tree list
)
2631 if (elem
== TREE_VALUE (list
))
2633 list
= TREE_CHAIN (list
);
2638 /* Return first list element whose TREE_PURPOSE is ELEM.
2639 Return 0 if ELEM is not in LIST. */
2642 purpose_member (const_tree elem
, tree list
)
2646 if (elem
== TREE_PURPOSE (list
))
2648 list
= TREE_CHAIN (list
);
2653 /* Return true if ELEM is in V. */
2656 vec_member (const_tree elem
, vec
<tree
, va_gc
> *v
)
2660 FOR_EACH_VEC_SAFE_ELT (v
, ix
, t
)
2666 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2670 chain_index (int idx
, tree chain
)
2672 for (; chain
&& idx
> 0; --idx
)
2673 chain
= TREE_CHAIN (chain
);
2677 /* Return nonzero if ELEM is part of the chain CHAIN. */
2680 chain_member (const_tree elem
, const_tree chain
)
2686 chain
= DECL_CHAIN (chain
);
2692 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2693 We expect a null pointer to mark the end of the chain.
2694 This is the Lisp primitive `length'. */
2697 list_length (const_tree t
)
2700 #ifdef ENABLE_TREE_CHECKING
2708 #ifdef ENABLE_TREE_CHECKING
2711 gcc_assert (p
!= q
);
2719 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2720 UNION_TYPE TYPE, or NULL_TREE if none. */
2723 first_field (const_tree type
)
2725 tree t
= TYPE_FIELDS (type
);
2726 while (t
&& TREE_CODE (t
) != FIELD_DECL
)
2731 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2732 by modifying the last node in chain 1 to point to chain 2.
2733 This is the Lisp primitive `nconc'. */
2736 chainon (tree op1
, tree op2
)
2745 for (t1
= op1
; TREE_CHAIN (t1
); t1
= TREE_CHAIN (t1
))
2747 TREE_CHAIN (t1
) = op2
;
2749 #ifdef ENABLE_TREE_CHECKING
2752 for (t2
= op2
; t2
; t2
= TREE_CHAIN (t2
))
2753 gcc_assert (t2
!= t1
);
2760 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2763 tree_last (tree chain
)
2767 while ((next
= TREE_CHAIN (chain
)))
2772 /* Reverse the order of elements in the chain T,
2773 and return the new head of the chain (old last element). */
2778 tree prev
= 0, decl
, next
;
2779 for (decl
= t
; decl
; decl
= next
)
2781 /* We shouldn't be using this function to reverse BLOCK chains; we
2782 have blocks_nreverse for that. */
2783 gcc_checking_assert (TREE_CODE (decl
) != BLOCK
);
2784 next
= TREE_CHAIN (decl
);
2785 TREE_CHAIN (decl
) = prev
;
2791 /* Return a newly created TREE_LIST node whose
2792 purpose and value fields are PARM and VALUE. */
2795 build_tree_list_stat (tree parm
, tree value MEM_STAT_DECL
)
2797 tree t
= make_node_stat (TREE_LIST PASS_MEM_STAT
);
2798 TREE_PURPOSE (t
) = parm
;
2799 TREE_VALUE (t
) = value
;
2803 /* Build a chain of TREE_LIST nodes from a vector. */
2806 build_tree_list_vec_stat (const vec
<tree
, va_gc
> *vec MEM_STAT_DECL
)
2808 tree ret
= NULL_TREE
;
2812 FOR_EACH_VEC_SAFE_ELT (vec
, i
, t
)
2814 *pp
= build_tree_list_stat (NULL
, t PASS_MEM_STAT
);
2815 pp
= &TREE_CHAIN (*pp
);
2820 /* Return a newly created TREE_LIST node whose
2821 purpose and value fields are PURPOSE and VALUE
2822 and whose TREE_CHAIN is CHAIN. */
2825 tree_cons_stat (tree purpose
, tree value
, tree chain MEM_STAT_DECL
)
2829 node
= ggc_alloc_tree_node_stat (sizeof (struct tree_list
) PASS_MEM_STAT
);
2830 memset (node
, 0, sizeof (struct tree_common
));
2832 record_node_allocation_statistics (TREE_LIST
, sizeof (struct tree_list
));
2834 TREE_SET_CODE (node
, TREE_LIST
);
2835 TREE_CHAIN (node
) = chain
;
2836 TREE_PURPOSE (node
) = purpose
;
2837 TREE_VALUE (node
) = value
;
2841 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2845 ctor_to_vec (tree ctor
)
2847 vec
<tree
, va_gc
> *vec
;
2848 vec_alloc (vec
, CONSTRUCTOR_NELTS (ctor
));
2852 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor
), ix
, val
)
2853 vec
->quick_push (val
);
2858 /* Return the size nominally occupied by an object of type TYPE
2859 when it resides in memory. The value is measured in units of bytes,
2860 and its data type is that normally used for type sizes
2861 (which is the first type created by make_signed_type or
2862 make_unsigned_type). */
2865 size_in_bytes (const_tree type
)
2869 if (type
== error_mark_node
)
2870 return integer_zero_node
;
2872 type
= TYPE_MAIN_VARIANT (type
);
2873 t
= TYPE_SIZE_UNIT (type
);
2877 lang_hooks
.types
.incomplete_type_error (NULL_TREE
, type
);
2878 return size_zero_node
;
2884 /* Return the size of TYPE (in bytes) as a wide integer
2885 or return -1 if the size can vary or is larger than an integer. */
2888 int_size_in_bytes (const_tree type
)
2892 if (type
== error_mark_node
)
2895 type
= TYPE_MAIN_VARIANT (type
);
2896 t
= TYPE_SIZE_UNIT (type
);
2898 if (t
&& tree_fits_uhwi_p (t
))
2899 return TREE_INT_CST_LOW (t
);
2904 /* Return the maximum size of TYPE (in bytes) as a wide integer
2905 or return -1 if the size can vary or is larger than an integer. */
2908 max_int_size_in_bytes (const_tree type
)
2910 HOST_WIDE_INT size
= -1;
2913 /* If this is an array type, check for a possible MAX_SIZE attached. */
2915 if (TREE_CODE (type
) == ARRAY_TYPE
)
2917 size_tree
= TYPE_ARRAY_MAX_SIZE (type
);
2919 if (size_tree
&& tree_fits_uhwi_p (size_tree
))
2920 size
= tree_to_uhwi (size_tree
);
2923 /* If we still haven't been able to get a size, see if the language
2924 can compute a maximum size. */
2928 size_tree
= lang_hooks
.types
.max_size (type
);
2930 if (size_tree
&& tree_fits_uhwi_p (size_tree
))
2931 size
= tree_to_uhwi (size_tree
);
2937 /* Return the bit position of FIELD, in bits from the start of the record.
2938 This is a tree of type bitsizetype. */
2941 bit_position (const_tree field
)
2943 return bit_from_pos (DECL_FIELD_OFFSET (field
),
2944 DECL_FIELD_BIT_OFFSET (field
));
2947 /* Return the byte position of FIELD, in bytes from the start of the record.
2948 This is a tree of type sizetype. */
2951 byte_position (const_tree field
)
2953 return byte_from_pos (DECL_FIELD_OFFSET (field
),
2954 DECL_FIELD_BIT_OFFSET (field
));
2957 /* Likewise, but return as an integer. It must be representable in
2958 that way (since it could be a signed value, we don't have the
2959 option of returning -1 like int_size_in_byte can. */
2962 int_byte_position (const_tree field
)
2964 return tree_to_shwi (byte_position (field
));
2967 /* Return the strictest alignment, in bits, that T is known to have. */
2970 expr_align (const_tree t
)
2972 unsigned int align0
, align1
;
2974 switch (TREE_CODE (t
))
2976 CASE_CONVERT
: case NON_LVALUE_EXPR
:
2977 /* If we have conversions, we know that the alignment of the
2978 object must meet each of the alignments of the types. */
2979 align0
= expr_align (TREE_OPERAND (t
, 0));
2980 align1
= TYPE_ALIGN (TREE_TYPE (t
));
2981 return MAX (align0
, align1
);
2983 case SAVE_EXPR
: case COMPOUND_EXPR
: case MODIFY_EXPR
:
2984 case INIT_EXPR
: case TARGET_EXPR
: case WITH_CLEANUP_EXPR
:
2985 case CLEANUP_POINT_EXPR
:
2986 /* These don't change the alignment of an object. */
2987 return expr_align (TREE_OPERAND (t
, 0));
2990 /* The best we can do is say that the alignment is the least aligned
2992 align0
= expr_align (TREE_OPERAND (t
, 1));
2993 align1
= expr_align (TREE_OPERAND (t
, 2));
2994 return MIN (align0
, align1
);
2996 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
2997 meaningfully, it's always 1. */
2998 case LABEL_DECL
: case CONST_DECL
:
2999 case VAR_DECL
: case PARM_DECL
: case RESULT_DECL
:
3001 gcc_assert (DECL_ALIGN (t
) != 0);
3002 return DECL_ALIGN (t
);
3008 /* Otherwise take the alignment from that of the type. */
3009 return TYPE_ALIGN (TREE_TYPE (t
));
3012 /* Return, as a tree node, the number of elements for TYPE (which is an
3013 ARRAY_TYPE) minus one. This counts only elements of the top array. */
3016 array_type_nelts (const_tree type
)
3018 tree index_type
, min
, max
;
3020 /* If they did it with unspecified bounds, then we should have already
3021 given an error about it before we got here. */
3022 if (! TYPE_DOMAIN (type
))
3023 return error_mark_node
;
3025 index_type
= TYPE_DOMAIN (type
);
3026 min
= TYPE_MIN_VALUE (index_type
);
3027 max
= TYPE_MAX_VALUE (index_type
);
3029 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
3031 return error_mark_node
;
3033 return (integer_zerop (min
)
3035 : fold_build2 (MINUS_EXPR
, TREE_TYPE (max
), max
, min
));
3038 /* If arg is static -- a reference to an object in static storage -- then
3039 return the object. This is not the same as the C meaning of `static'.
3040 If arg isn't static, return NULL. */
3045 switch (TREE_CODE (arg
))
3048 /* Nested functions are static, even though taking their address will
3049 involve a trampoline as we unnest the nested function and create
3050 the trampoline on the tree level. */
3054 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
3055 && ! DECL_THREAD_LOCAL_P (arg
)
3056 && ! DECL_DLLIMPORT_P (arg
)
3060 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
3064 return TREE_STATIC (arg
) ? arg
: NULL
;
3071 /* If the thing being referenced is not a field, then it is
3072 something language specific. */
3073 gcc_assert (TREE_CODE (TREE_OPERAND (arg
, 1)) == FIELD_DECL
);
3075 /* If we are referencing a bitfield, we can't evaluate an
3076 ADDR_EXPR at compile time and so it isn't a constant. */
3077 if (DECL_BIT_FIELD (TREE_OPERAND (arg
, 1)))
3080 return staticp (TREE_OPERAND (arg
, 0));
3086 return TREE_CONSTANT (TREE_OPERAND (arg
, 0)) ? arg
: NULL
;
3089 case ARRAY_RANGE_REF
:
3090 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg
))) == INTEGER_CST
3091 && TREE_CODE (TREE_OPERAND (arg
, 1)) == INTEGER_CST
)
3092 return staticp (TREE_OPERAND (arg
, 0));
3096 case COMPOUND_LITERAL_EXPR
:
3097 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg
)) ? arg
: NULL
;
3107 /* Return whether OP is a DECL whose address is function-invariant. */
3110 decl_address_invariant_p (const_tree op
)
3112 /* The conditions below are slightly less strict than the one in
3115 switch (TREE_CODE (op
))
3124 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
3125 || DECL_THREAD_LOCAL_P (op
)
3126 || DECL_CONTEXT (op
) == current_function_decl
3127 || decl_function_context (op
) == current_function_decl
)
3132 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
3133 || decl_function_context (op
) == current_function_decl
)
3144 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
3147 decl_address_ip_invariant_p (const_tree op
)
3149 /* The conditions below are slightly less strict than the one in
3152 switch (TREE_CODE (op
))
3160 if (((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
3161 && !DECL_DLLIMPORT_P (op
))
3162 || DECL_THREAD_LOCAL_P (op
))
3167 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
)))
3179 /* Return true if T is function-invariant (internal function, does
3180 not handle arithmetic; that's handled in skip_simple_arithmetic and
3181 tree_invariant_p). */
3183 static bool tree_invariant_p (tree t
);
3186 tree_invariant_p_1 (tree t
)
3190 if (TREE_CONSTANT (t
)
3191 || (TREE_READONLY (t
) && !TREE_SIDE_EFFECTS (t
)))
3194 switch (TREE_CODE (t
))
3200 op
= TREE_OPERAND (t
, 0);
3201 while (handled_component_p (op
))
3203 switch (TREE_CODE (op
))
3206 case ARRAY_RANGE_REF
:
3207 if (!tree_invariant_p (TREE_OPERAND (op
, 1))
3208 || TREE_OPERAND (op
, 2) != NULL_TREE
3209 || TREE_OPERAND (op
, 3) != NULL_TREE
)
3214 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
3220 op
= TREE_OPERAND (op
, 0);
3223 return CONSTANT_CLASS_P (op
) || decl_address_invariant_p (op
);
3232 /* Return true if T is function-invariant. */
3235 tree_invariant_p (tree t
)
3237 tree inner
= skip_simple_arithmetic (t
);
3238 return tree_invariant_p_1 (inner
);
3241 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
3242 Do this to any expression which may be used in more than one place,
3243 but must be evaluated only once.
3245 Normally, expand_expr would reevaluate the expression each time.
3246 Calling save_expr produces something that is evaluated and recorded
3247 the first time expand_expr is called on it. Subsequent calls to
3248 expand_expr just reuse the recorded value.
3250 The call to expand_expr that generates code that actually computes
3251 the value is the first call *at compile time*. Subsequent calls
3252 *at compile time* generate code to use the saved value.
3253 This produces correct result provided that *at run time* control
3254 always flows through the insns made by the first expand_expr
3255 before reaching the other places where the save_expr was evaluated.
3256 You, the caller of save_expr, must make sure this is so.
3258 Constants, and certain read-only nodes, are returned with no
3259 SAVE_EXPR because that is safe. Expressions containing placeholders
3260 are not touched; see tree.def for an explanation of what these
3264 save_expr (tree expr
)
3266 tree t
= fold (expr
);
3269 /* If the tree evaluates to a constant, then we don't want to hide that
3270 fact (i.e. this allows further folding, and direct checks for constants).
3271 However, a read-only object that has side effects cannot be bypassed.
3272 Since it is no problem to reevaluate literals, we just return the
3274 inner
= skip_simple_arithmetic (t
);
3275 if (TREE_CODE (inner
) == ERROR_MARK
)
3278 if (tree_invariant_p_1 (inner
))
3281 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
3282 it means that the size or offset of some field of an object depends on
3283 the value within another field.
3285 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
3286 and some variable since it would then need to be both evaluated once and
3287 evaluated more than once. Front-ends must assure this case cannot
3288 happen by surrounding any such subexpressions in their own SAVE_EXPR
3289 and forcing evaluation at the proper time. */
3290 if (contains_placeholder_p (inner
))
3293 t
= build1 (SAVE_EXPR
, TREE_TYPE (expr
), t
);
3294 SET_EXPR_LOCATION (t
, EXPR_LOCATION (expr
));
3296 /* This expression might be placed ahead of a jump to ensure that the
3297 value was computed on both sides of the jump. So make sure it isn't
3298 eliminated as dead. */
3299 TREE_SIDE_EFFECTS (t
) = 1;
3303 /* Look inside EXPR into any simple arithmetic operations. Return the
3304 outermost non-arithmetic or non-invariant node. */
3307 skip_simple_arithmetic (tree expr
)
3309 /* We don't care about whether this can be used as an lvalue in this
3311 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
3312 expr
= TREE_OPERAND (expr
, 0);
3314 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
3315 a constant, it will be more efficient to not make another SAVE_EXPR since
3316 it will allow better simplification and GCSE will be able to merge the
3317 computations if they actually occur. */
3320 if (UNARY_CLASS_P (expr
))
3321 expr
= TREE_OPERAND (expr
, 0);
3322 else if (BINARY_CLASS_P (expr
))
3324 if (tree_invariant_p (TREE_OPERAND (expr
, 1)))
3325 expr
= TREE_OPERAND (expr
, 0);
3326 else if (tree_invariant_p (TREE_OPERAND (expr
, 0)))
3327 expr
= TREE_OPERAND (expr
, 1);
3338 /* Look inside EXPR into simple arithmetic operations involving constants.
3339 Return the outermost non-arithmetic or non-constant node. */
3342 skip_simple_constant_arithmetic (tree expr
)
3344 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
3345 expr
= TREE_OPERAND (expr
, 0);
3349 if (UNARY_CLASS_P (expr
))
3350 expr
= TREE_OPERAND (expr
, 0);
3351 else if (BINARY_CLASS_P (expr
))
3353 if (TREE_CONSTANT (TREE_OPERAND (expr
, 1)))
3354 expr
= TREE_OPERAND (expr
, 0);
3355 else if (TREE_CONSTANT (TREE_OPERAND (expr
, 0)))
3356 expr
= TREE_OPERAND (expr
, 1);
3367 /* Return which tree structure is used by T. */
3369 enum tree_node_structure_enum
3370 tree_node_structure (const_tree t
)
3372 const enum tree_code code
= TREE_CODE (t
);
3373 return tree_node_structure_for_code (code
);
3376 /* Set various status flags when building a CALL_EXPR object T. */
3379 process_call_operands (tree t
)
3381 bool side_effects
= TREE_SIDE_EFFECTS (t
);
3382 bool read_only
= false;
3383 int i
= call_expr_flags (t
);
3385 /* Calls have side-effects, except those to const or pure functions. */
3386 if ((i
& ECF_LOOPING_CONST_OR_PURE
) || !(i
& (ECF_CONST
| ECF_PURE
)))
3387 side_effects
= true;
3388 /* Propagate TREE_READONLY of arguments for const functions. */
3392 if (!side_effects
|| read_only
)
3393 for (i
= 1; i
< TREE_OPERAND_LENGTH (t
); i
++)
3395 tree op
= TREE_OPERAND (t
, i
);
3396 if (op
&& TREE_SIDE_EFFECTS (op
))
3397 side_effects
= true;
3398 if (op
&& !TREE_READONLY (op
) && !CONSTANT_CLASS_P (op
))
3402 TREE_SIDE_EFFECTS (t
) = side_effects
;
3403 TREE_READONLY (t
) = read_only
;
3406 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
3407 size or offset that depends on a field within a record. */
3410 contains_placeholder_p (const_tree exp
)
3412 enum tree_code code
;
3417 code
= TREE_CODE (exp
);
3418 if (code
== PLACEHOLDER_EXPR
)
3421 switch (TREE_CODE_CLASS (code
))
3424 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
3425 position computations since they will be converted into a
3426 WITH_RECORD_EXPR involving the reference, which will assume
3427 here will be valid. */
3428 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
3430 case tcc_exceptional
:
3431 if (code
== TREE_LIST
)
3432 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp
))
3433 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp
)));
3438 case tcc_comparison
:
3439 case tcc_expression
:
3443 /* Ignoring the first operand isn't quite right, but works best. */
3444 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1));
3447 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
3448 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1))
3449 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 2)));
3452 /* The save_expr function never wraps anything containing
3453 a PLACEHOLDER_EXPR. */
3460 switch (TREE_CODE_LENGTH (code
))
3463 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
3465 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
3466 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1)));
3477 const_call_expr_arg_iterator iter
;
3478 FOR_EACH_CONST_CALL_EXPR_ARG (arg
, iter
, exp
)
3479 if (CONTAINS_PLACEHOLDER_P (arg
))
3493 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3494 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3498 type_contains_placeholder_1 (const_tree type
)
3500 /* If the size contains a placeholder or the parent type (component type in
3501 the case of arrays) type involves a placeholder, this type does. */
3502 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type
))
3503 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type
))
3504 || (!POINTER_TYPE_P (type
)
3506 && type_contains_placeholder_p (TREE_TYPE (type
))))
3509 /* Now do type-specific checks. Note that the last part of the check above
3510 greatly limits what we have to do below. */
3511 switch (TREE_CODE (type
))
3514 case POINTER_BOUNDS_TYPE
:
3520 case REFERENCE_TYPE
:
3529 case FIXED_POINT_TYPE
:
3530 /* Here we just check the bounds. */
3531 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type
))
3532 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type
)));
3535 /* We have already checked the component type above, so just check the
3537 return type_contains_placeholder_p (TYPE_DOMAIN (type
));
3541 case QUAL_UNION_TYPE
:
3545 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
3546 if (TREE_CODE (field
) == FIELD_DECL
3547 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field
))
3548 || (TREE_CODE (type
) == QUAL_UNION_TYPE
3549 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field
)))
3550 || type_contains_placeholder_p (TREE_TYPE (field
))))
3561 /* Wrapper around above function used to cache its result. */
3564 type_contains_placeholder_p (tree type
)
3568 /* If the contains_placeholder_bits field has been initialized,
3569 then we know the answer. */
3570 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) > 0)
3571 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) - 1;
3573 /* Indicate that we've seen this type node, and the answer is false.
3574 This is what we want to return if we run into recursion via fields. */
3575 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = 1;
3577 /* Compute the real value. */
3578 result
= type_contains_placeholder_1 (type
);
3580 /* Store the real value. */
3581 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = result
+ 1;
3586 /* Push tree EXP onto vector QUEUE if it is not already present. */
3589 push_without_duplicates (tree exp
, vec
<tree
> *queue
)
3594 FOR_EACH_VEC_ELT (*queue
, i
, iter
)
3595 if (simple_cst_equal (iter
, exp
) == 1)
3599 queue
->safe_push (exp
);
3602 /* Given a tree EXP, find all occurrences of references to fields
3603 in a PLACEHOLDER_EXPR and place them in vector REFS without
3604 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3605 we assume here that EXP contains only arithmetic expressions
3606 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3610 find_placeholder_in_expr (tree exp
, vec
<tree
> *refs
)
3612 enum tree_code code
= TREE_CODE (exp
);
3616 /* We handle TREE_LIST and COMPONENT_REF separately. */
3617 if (code
== TREE_LIST
)
3619 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), refs
);
3620 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), refs
);
3622 else if (code
== COMPONENT_REF
)
3624 for (inner
= TREE_OPERAND (exp
, 0);
3625 REFERENCE_CLASS_P (inner
);
3626 inner
= TREE_OPERAND (inner
, 0))
3629 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
)
3630 push_without_duplicates (exp
, refs
);
3632 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), refs
);
3635 switch (TREE_CODE_CLASS (code
))
3640 case tcc_declaration
:
3641 /* Variables allocated to static storage can stay. */
3642 if (!TREE_STATIC (exp
))
3643 push_without_duplicates (exp
, refs
);
3646 case tcc_expression
:
3647 /* This is the pattern built in ada/make_aligning_type. */
3648 if (code
== ADDR_EXPR
3649 && TREE_CODE (TREE_OPERAND (exp
, 0)) == PLACEHOLDER_EXPR
)
3651 push_without_duplicates (exp
, refs
);
3655 /* Fall through... */
3657 case tcc_exceptional
:
3660 case tcc_comparison
:
3662 for (i
= 0; i
< TREE_CODE_LENGTH (code
); i
++)
3663 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3667 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3668 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3676 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3677 return a tree with all occurrences of references to F in a
3678 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3679 CONST_DECLs. Note that we assume here that EXP contains only
3680 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3681 occurring only in their argument list. */
3684 substitute_in_expr (tree exp
, tree f
, tree r
)
3686 enum tree_code code
= TREE_CODE (exp
);
3687 tree op0
, op1
, op2
, op3
;
3690 /* We handle TREE_LIST and COMPONENT_REF separately. */
3691 if (code
== TREE_LIST
)
3693 op0
= SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp
), f
, r
);
3694 op1
= SUBSTITUTE_IN_EXPR (TREE_VALUE (exp
), f
, r
);
3695 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3698 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3700 else if (code
== COMPONENT_REF
)
3704 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3705 and it is the right field, replace it with R. */
3706 for (inner
= TREE_OPERAND (exp
, 0);
3707 REFERENCE_CLASS_P (inner
);
3708 inner
= TREE_OPERAND (inner
, 0))
3712 op1
= TREE_OPERAND (exp
, 1);
3714 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& op1
== f
)
3717 /* If this expression hasn't been completed let, leave it alone. */
3718 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& !TREE_TYPE (inner
))
3721 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3722 if (op0
== TREE_OPERAND (exp
, 0))
3726 = fold_build3 (COMPONENT_REF
, TREE_TYPE (exp
), op0
, op1
, NULL_TREE
);
3729 switch (TREE_CODE_CLASS (code
))
3734 case tcc_declaration
:
3740 case tcc_expression
:
3744 /* Fall through... */
3746 case tcc_exceptional
:
3749 case tcc_comparison
:
3751 switch (TREE_CODE_LENGTH (code
))
3757 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3758 if (op0
== TREE_OPERAND (exp
, 0))
3761 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3765 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3766 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3768 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3771 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3775 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3776 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3777 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3779 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3780 && op2
== TREE_OPERAND (exp
, 2))
3783 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3787 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3788 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3789 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3790 op3
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 3), f
, r
);
3792 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3793 && op2
== TREE_OPERAND (exp
, 2)
3794 && op3
== TREE_OPERAND (exp
, 3))
3798 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3810 new_tree
= NULL_TREE
;
3812 /* If we are trying to replace F with a constant, inline back
3813 functions which do nothing else than computing a value from
3814 the arguments they are passed. This makes it possible to
3815 fold partially or entirely the replacement expression. */
3816 if (CONSTANT_CLASS_P (r
) && code
== CALL_EXPR
)
3818 tree t
= maybe_inline_call_in_expr (exp
);
3820 return SUBSTITUTE_IN_EXPR (t
, f
, r
);
3823 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3825 tree op
= TREE_OPERAND (exp
, i
);
3826 tree new_op
= SUBSTITUTE_IN_EXPR (op
, f
, r
);
3830 new_tree
= copy_node (exp
);
3831 TREE_OPERAND (new_tree
, i
) = new_op
;
3837 new_tree
= fold (new_tree
);
3838 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3839 process_call_operands (new_tree
);
3850 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3852 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3853 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3858 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3859 for it within OBJ, a tree that is an object or a chain of references. */
3862 substitute_placeholder_in_expr (tree exp
, tree obj
)
3864 enum tree_code code
= TREE_CODE (exp
);
3865 tree op0
, op1
, op2
, op3
;
3868 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3869 in the chain of OBJ. */
3870 if (code
== PLACEHOLDER_EXPR
)
3872 tree need_type
= TYPE_MAIN_VARIANT (TREE_TYPE (exp
));
3875 for (elt
= obj
; elt
!= 0;
3876 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3877 || TREE_CODE (elt
) == COND_EXPR
)
3878 ? TREE_OPERAND (elt
, 1)
3879 : (REFERENCE_CLASS_P (elt
)
3880 || UNARY_CLASS_P (elt
)
3881 || BINARY_CLASS_P (elt
)
3882 || VL_EXP_CLASS_P (elt
)
3883 || EXPRESSION_CLASS_P (elt
))
3884 ? TREE_OPERAND (elt
, 0) : 0))
3885 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt
)) == need_type
)
3888 for (elt
= obj
; elt
!= 0;
3889 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3890 || TREE_CODE (elt
) == COND_EXPR
)
3891 ? TREE_OPERAND (elt
, 1)
3892 : (REFERENCE_CLASS_P (elt
)
3893 || UNARY_CLASS_P (elt
)
3894 || BINARY_CLASS_P (elt
)
3895 || VL_EXP_CLASS_P (elt
)
3896 || EXPRESSION_CLASS_P (elt
))
3897 ? TREE_OPERAND (elt
, 0) : 0))
3898 if (POINTER_TYPE_P (TREE_TYPE (elt
))
3899 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt
)))
3901 return fold_build1 (INDIRECT_REF
, need_type
, elt
);
3903 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3904 survives until RTL generation, there will be an error. */
3908 /* TREE_LIST is special because we need to look at TREE_VALUE
3909 and TREE_CHAIN, not TREE_OPERANDS. */
3910 else if (code
== TREE_LIST
)
3912 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), obj
);
3913 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), obj
);
3914 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3917 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3920 switch (TREE_CODE_CLASS (code
))
3923 case tcc_declaration
:
3926 case tcc_exceptional
:
3929 case tcc_comparison
:
3930 case tcc_expression
:
3933 switch (TREE_CODE_LENGTH (code
))
3939 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3940 if (op0
== TREE_OPERAND (exp
, 0))
3943 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3947 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3948 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3950 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3953 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3957 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3958 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3959 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3961 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3962 && op2
== TREE_OPERAND (exp
, 2))
3965 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3969 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3970 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3971 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3972 op3
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 3), obj
);
3974 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3975 && op2
== TREE_OPERAND (exp
, 2)
3976 && op3
== TREE_OPERAND (exp
, 3))
3980 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3992 new_tree
= NULL_TREE
;
3994 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3996 tree op
= TREE_OPERAND (exp
, i
);
3997 tree new_op
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (op
, obj
);
4001 new_tree
= copy_node (exp
);
4002 TREE_OPERAND (new_tree
, i
) = new_op
;
4008 new_tree
= fold (new_tree
);
4009 if (TREE_CODE (new_tree
) == CALL_EXPR
)
4010 process_call_operands (new_tree
);
4021 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
4023 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
4024 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
4030 /* Subroutine of stabilize_reference; this is called for subtrees of
4031 references. Any expression with side-effects must be put in a SAVE_EXPR
4032 to ensure that it is only evaluated once.
4034 We don't put SAVE_EXPR nodes around everything, because assigning very
4035 simple expressions to temporaries causes us to miss good opportunities
4036 for optimizations. Among other things, the opportunity to fold in the
4037 addition of a constant into an addressing mode often gets lost, e.g.
4038 "y[i+1] += x;". In general, we take the approach that we should not make
4039 an assignment unless we are forced into it - i.e., that any non-side effect
4040 operator should be allowed, and that cse should take care of coalescing
4041 multiple utterances of the same expression should that prove fruitful. */
4044 stabilize_reference_1 (tree e
)
4047 enum tree_code code
= TREE_CODE (e
);
4049 /* We cannot ignore const expressions because it might be a reference
4050 to a const array but whose index contains side-effects. But we can
4051 ignore things that are actual constant or that already have been
4052 handled by this function. */
4054 if (tree_invariant_p (e
))
4057 switch (TREE_CODE_CLASS (code
))
4059 case tcc_exceptional
:
4061 case tcc_declaration
:
4062 case tcc_comparison
:
4064 case tcc_expression
:
4067 /* If the expression has side-effects, then encase it in a SAVE_EXPR
4068 so that it will only be evaluated once. */
4069 /* The reference (r) and comparison (<) classes could be handled as
4070 below, but it is generally faster to only evaluate them once. */
4071 if (TREE_SIDE_EFFECTS (e
))
4072 return save_expr (e
);
4076 /* Constants need no processing. In fact, we should never reach
4081 /* Division is slow and tends to be compiled with jumps,
4082 especially the division by powers of 2 that is often
4083 found inside of an array reference. So do it just once. */
4084 if (code
== TRUNC_DIV_EXPR
|| code
== TRUNC_MOD_EXPR
4085 || code
== FLOOR_DIV_EXPR
|| code
== FLOOR_MOD_EXPR
4086 || code
== CEIL_DIV_EXPR
|| code
== CEIL_MOD_EXPR
4087 || code
== ROUND_DIV_EXPR
|| code
== ROUND_MOD_EXPR
)
4088 return save_expr (e
);
4089 /* Recursively stabilize each operand. */
4090 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)),
4091 stabilize_reference_1 (TREE_OPERAND (e
, 1)));
4095 /* Recursively stabilize each operand. */
4096 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)));
4103 TREE_TYPE (result
) = TREE_TYPE (e
);
4104 TREE_READONLY (result
) = TREE_READONLY (e
);
4105 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (e
);
4106 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (e
);
4111 /* Stabilize a reference so that we can use it any number of times
4112 without causing its operands to be evaluated more than once.
4113 Returns the stabilized reference. This works by means of save_expr,
4114 so see the caveats in the comments about save_expr.
4116 Also allows conversion expressions whose operands are references.
4117 Any other kind of expression is returned unchanged. */
4120 stabilize_reference (tree ref
)
4123 enum tree_code code
= TREE_CODE (ref
);
4130 /* No action is needed in this case. */
4135 case FIX_TRUNC_EXPR
:
4136 result
= build_nt (code
, stabilize_reference (TREE_OPERAND (ref
, 0)));
4140 result
= build_nt (INDIRECT_REF
,
4141 stabilize_reference_1 (TREE_OPERAND (ref
, 0)));
4145 result
= build_nt (COMPONENT_REF
,
4146 stabilize_reference (TREE_OPERAND (ref
, 0)),
4147 TREE_OPERAND (ref
, 1), NULL_TREE
);
4151 result
= build_nt (BIT_FIELD_REF
,
4152 stabilize_reference (TREE_OPERAND (ref
, 0)),
4153 TREE_OPERAND (ref
, 1), TREE_OPERAND (ref
, 2));
4157 result
= build_nt (ARRAY_REF
,
4158 stabilize_reference (TREE_OPERAND (ref
, 0)),
4159 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
4160 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
4163 case ARRAY_RANGE_REF
:
4164 result
= build_nt (ARRAY_RANGE_REF
,
4165 stabilize_reference (TREE_OPERAND (ref
, 0)),
4166 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
4167 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
4171 /* We cannot wrap the first expression in a SAVE_EXPR, as then
4172 it wouldn't be ignored. This matters when dealing with
4174 return stabilize_reference_1 (ref
);
4176 /* If arg isn't a kind of lvalue we recognize, make no change.
4177 Caller should recognize the error for an invalid lvalue. */
4182 return error_mark_node
;
4185 TREE_TYPE (result
) = TREE_TYPE (ref
);
4186 TREE_READONLY (result
) = TREE_READONLY (ref
);
4187 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (ref
);
4188 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (ref
);
4193 /* Low-level constructors for expressions. */
4195 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
4196 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
4199 recompute_tree_invariant_for_addr_expr (tree t
)
4202 bool tc
= true, se
= false;
4204 /* We started out assuming this address is both invariant and constant, but
4205 does not have side effects. Now go down any handled components and see if
4206 any of them involve offsets that are either non-constant or non-invariant.
4207 Also check for side-effects.
4209 ??? Note that this code makes no attempt to deal with the case where
4210 taking the address of something causes a copy due to misalignment. */
4212 #define UPDATE_FLAGS(NODE) \
4213 do { tree _node = (NODE); \
4214 if (_node && !TREE_CONSTANT (_node)) tc = false; \
4215 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
4217 for (node
= TREE_OPERAND (t
, 0); handled_component_p (node
);
4218 node
= TREE_OPERAND (node
, 0))
4220 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
4221 array reference (probably made temporarily by the G++ front end),
4222 so ignore all the operands. */
4223 if ((TREE_CODE (node
) == ARRAY_REF
4224 || TREE_CODE (node
) == ARRAY_RANGE_REF
)
4225 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node
, 0))) == ARRAY_TYPE
)
4227 UPDATE_FLAGS (TREE_OPERAND (node
, 1));
4228 if (TREE_OPERAND (node
, 2))
4229 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
4230 if (TREE_OPERAND (node
, 3))
4231 UPDATE_FLAGS (TREE_OPERAND (node
, 3));
4233 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
4234 FIELD_DECL, apparently. The G++ front end can put something else
4235 there, at least temporarily. */
4236 else if (TREE_CODE (node
) == COMPONENT_REF
4237 && TREE_CODE (TREE_OPERAND (node
, 1)) == FIELD_DECL
)
4239 if (TREE_OPERAND (node
, 2))
4240 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
4244 node
= lang_hooks
.expr_to_decl (node
, &tc
, &se
);
4246 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
4247 the address, since &(*a)->b is a form of addition. If it's a constant, the
4248 address is constant too. If it's a decl, its address is constant if the
4249 decl is static. Everything else is not constant and, furthermore,
4250 taking the address of a volatile variable is not volatile. */
4251 if (TREE_CODE (node
) == INDIRECT_REF
4252 || TREE_CODE (node
) == MEM_REF
)
4253 UPDATE_FLAGS (TREE_OPERAND (node
, 0));
4254 else if (CONSTANT_CLASS_P (node
))
4256 else if (DECL_P (node
))
4257 tc
&= (staticp (node
) != NULL_TREE
);
4261 se
|= TREE_SIDE_EFFECTS (node
);
4265 TREE_CONSTANT (t
) = tc
;
4266 TREE_SIDE_EFFECTS (t
) = se
;
4270 /* Build an expression of code CODE, data type TYPE, and operands as
4271 specified. Expressions and reference nodes can be created this way.
4272 Constants, decls, types and misc nodes cannot be.
4274 We define 5 non-variadic functions, from 0 to 4 arguments. This is
4275 enough for all extant tree codes. */
4278 build0_stat (enum tree_code code
, tree tt MEM_STAT_DECL
)
4282 gcc_assert (TREE_CODE_LENGTH (code
) == 0);
4284 t
= make_node_stat (code PASS_MEM_STAT
);
4291 build1_stat (enum tree_code code
, tree type
, tree node MEM_STAT_DECL
)
4293 int length
= sizeof (struct tree_exp
);
4296 record_node_allocation_statistics (code
, length
);
4298 gcc_assert (TREE_CODE_LENGTH (code
) == 1);
4300 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
4302 memset (t
, 0, sizeof (struct tree_common
));
4304 TREE_SET_CODE (t
, code
);
4306 TREE_TYPE (t
) = type
;
4307 SET_EXPR_LOCATION (t
, UNKNOWN_LOCATION
);
4308 TREE_OPERAND (t
, 0) = node
;
4309 if (node
&& !TYPE_P (node
))
4311 TREE_SIDE_EFFECTS (t
) = TREE_SIDE_EFFECTS (node
);
4312 TREE_READONLY (t
) = TREE_READONLY (node
);
4315 if (TREE_CODE_CLASS (code
) == tcc_statement
)
4316 TREE_SIDE_EFFECTS (t
) = 1;
4320 /* All of these have side-effects, no matter what their
4322 TREE_SIDE_EFFECTS (t
) = 1;
4323 TREE_READONLY (t
) = 0;
4327 /* Whether a dereference is readonly has nothing to do with whether
4328 its operand is readonly. */
4329 TREE_READONLY (t
) = 0;
4334 recompute_tree_invariant_for_addr_expr (t
);
4338 if ((TREE_CODE_CLASS (code
) == tcc_unary
|| code
== VIEW_CONVERT_EXPR
)
4339 && node
&& !TYPE_P (node
)
4340 && TREE_CONSTANT (node
))
4341 TREE_CONSTANT (t
) = 1;
4342 if (TREE_CODE_CLASS (code
) == tcc_reference
4343 && node
&& TREE_THIS_VOLATILE (node
))
4344 TREE_THIS_VOLATILE (t
) = 1;
4351 #define PROCESS_ARG(N) \
4353 TREE_OPERAND (t, N) = arg##N; \
4354 if (arg##N &&!TYPE_P (arg##N)) \
4356 if (TREE_SIDE_EFFECTS (arg##N)) \
4358 if (!TREE_READONLY (arg##N) \
4359 && !CONSTANT_CLASS_P (arg##N)) \
4360 (void) (read_only = 0); \
4361 if (!TREE_CONSTANT (arg##N)) \
4362 (void) (constant = 0); \
4367 build2_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1 MEM_STAT_DECL
)
4369 bool constant
, read_only
, side_effects
;
4372 gcc_assert (TREE_CODE_LENGTH (code
) == 2);
4374 if ((code
== MINUS_EXPR
|| code
== PLUS_EXPR
|| code
== MULT_EXPR
)
4375 && arg0
&& arg1
&& tt
&& POINTER_TYPE_P (tt
)
4376 /* When sizetype precision doesn't match that of pointers
4377 we need to be able to build explicit extensions or truncations
4378 of the offset argument. */
4379 && TYPE_PRECISION (sizetype
) == TYPE_PRECISION (tt
))
4380 gcc_assert (TREE_CODE (arg0
) == INTEGER_CST
4381 && TREE_CODE (arg1
) == INTEGER_CST
);
4383 if (code
== POINTER_PLUS_EXPR
&& arg0
&& arg1
&& tt
)
4384 gcc_assert (POINTER_TYPE_P (tt
) && POINTER_TYPE_P (TREE_TYPE (arg0
))
4385 && ptrofftype_p (TREE_TYPE (arg1
)));
4387 t
= make_node_stat (code PASS_MEM_STAT
);
4390 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
4391 result based on those same flags for the arguments. But if the
4392 arguments aren't really even `tree' expressions, we shouldn't be trying
4395 /* Expressions without side effects may be constant if their
4396 arguments are as well. */
4397 constant
= (TREE_CODE_CLASS (code
) == tcc_comparison
4398 || TREE_CODE_CLASS (code
) == tcc_binary
);
4400 side_effects
= TREE_SIDE_EFFECTS (t
);
4405 TREE_SIDE_EFFECTS (t
) = side_effects
;
4406 if (code
== MEM_REF
)
4408 if (arg0
&& TREE_CODE (arg0
) == ADDR_EXPR
)
4410 tree o
= TREE_OPERAND (arg0
, 0);
4411 TREE_READONLY (t
) = TREE_READONLY (o
);
4412 TREE_THIS_VOLATILE (t
) = TREE_THIS_VOLATILE (o
);
4417 TREE_READONLY (t
) = read_only
;
4418 TREE_CONSTANT (t
) = constant
;
4419 TREE_THIS_VOLATILE (t
)
4420 = (TREE_CODE_CLASS (code
) == tcc_reference
4421 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4429 build3_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4430 tree arg2 MEM_STAT_DECL
)
4432 bool constant
, read_only
, side_effects
;
4435 gcc_assert (TREE_CODE_LENGTH (code
) == 3);
4436 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
4438 t
= make_node_stat (code PASS_MEM_STAT
);
4443 /* As a special exception, if COND_EXPR has NULL branches, we
4444 assume that it is a gimple statement and always consider
4445 it to have side effects. */
4446 if (code
== COND_EXPR
4447 && tt
== void_type_node
4448 && arg1
== NULL_TREE
4449 && arg2
== NULL_TREE
)
4450 side_effects
= true;
4452 side_effects
= TREE_SIDE_EFFECTS (t
);
4458 if (code
== COND_EXPR
)
4459 TREE_READONLY (t
) = read_only
;
4461 TREE_SIDE_EFFECTS (t
) = side_effects
;
4462 TREE_THIS_VOLATILE (t
)
4463 = (TREE_CODE_CLASS (code
) == tcc_reference
4464 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4470 build4_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4471 tree arg2
, tree arg3 MEM_STAT_DECL
)
4473 bool constant
, read_only
, side_effects
;
4476 gcc_assert (TREE_CODE_LENGTH (code
) == 4);
4478 t
= make_node_stat (code PASS_MEM_STAT
);
4481 side_effects
= TREE_SIDE_EFFECTS (t
);
4488 TREE_SIDE_EFFECTS (t
) = side_effects
;
4489 TREE_THIS_VOLATILE (t
)
4490 = (TREE_CODE_CLASS (code
) == tcc_reference
4491 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4497 build5_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4498 tree arg2
, tree arg3
, tree arg4 MEM_STAT_DECL
)
4500 bool constant
, read_only
, side_effects
;
4503 gcc_assert (TREE_CODE_LENGTH (code
) == 5);
4505 t
= make_node_stat (code PASS_MEM_STAT
);
4508 side_effects
= TREE_SIDE_EFFECTS (t
);
4516 TREE_SIDE_EFFECTS (t
) = side_effects
;
4517 if (code
== TARGET_MEM_REF
)
4519 if (arg0
&& TREE_CODE (arg0
) == ADDR_EXPR
)
4521 tree o
= TREE_OPERAND (arg0
, 0);
4522 TREE_READONLY (t
) = TREE_READONLY (o
);
4523 TREE_THIS_VOLATILE (t
) = TREE_THIS_VOLATILE (o
);
4527 TREE_THIS_VOLATILE (t
)
4528 = (TREE_CODE_CLASS (code
) == tcc_reference
4529 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4534 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4535 on the pointer PTR. */
4538 build_simple_mem_ref_loc (location_t loc
, tree ptr
)
4540 HOST_WIDE_INT offset
= 0;
4541 tree ptype
= TREE_TYPE (ptr
);
4543 /* For convenience allow addresses that collapse to a simple base
4545 if (TREE_CODE (ptr
) == ADDR_EXPR
4546 && (handled_component_p (TREE_OPERAND (ptr
, 0))
4547 || TREE_CODE (TREE_OPERAND (ptr
, 0)) == MEM_REF
))
4549 ptr
= get_addr_base_and_unit_offset (TREE_OPERAND (ptr
, 0), &offset
);
4551 ptr
= build_fold_addr_expr (ptr
);
4552 gcc_assert (is_gimple_reg (ptr
) || is_gimple_min_invariant (ptr
));
4554 tem
= build2 (MEM_REF
, TREE_TYPE (ptype
),
4555 ptr
, build_int_cst (ptype
, offset
));
4556 SET_EXPR_LOCATION (tem
, loc
);
4560 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4563 mem_ref_offset (const_tree t
)
4565 return offset_int::from (TREE_OPERAND (t
, 1), SIGNED
);
4568 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4569 offsetted by OFFSET units. */
4572 build_invariant_address (tree type
, tree base
, HOST_WIDE_INT offset
)
4574 tree ref
= fold_build2 (MEM_REF
, TREE_TYPE (type
),
4575 build_fold_addr_expr (base
),
4576 build_int_cst (ptr_type_node
, offset
));
4577 tree addr
= build1 (ADDR_EXPR
, type
, ref
);
4578 recompute_tree_invariant_for_addr_expr (addr
);
4582 /* Similar except don't specify the TREE_TYPE
4583 and leave the TREE_SIDE_EFFECTS as 0.
4584 It is permissible for arguments to be null,
4585 or even garbage if their values do not matter. */
4588 build_nt (enum tree_code code
, ...)
4595 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
4599 t
= make_node (code
);
4600 length
= TREE_CODE_LENGTH (code
);
4602 for (i
= 0; i
< length
; i
++)
4603 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
4609 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4613 build_nt_call_vec (tree fn
, vec
<tree
, va_gc
> *args
)
4618 ret
= build_vl_exp (CALL_EXPR
, vec_safe_length (args
) + 3);
4619 CALL_EXPR_FN (ret
) = fn
;
4620 CALL_EXPR_STATIC_CHAIN (ret
) = NULL_TREE
;
4621 FOR_EACH_VEC_SAFE_ELT (args
, ix
, t
)
4622 CALL_EXPR_ARG (ret
, ix
) = t
;
4626 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4627 We do NOT enter this node in any sort of symbol table.
4629 LOC is the location of the decl.
4631 layout_decl is used to set up the decl's storage layout.
4632 Other slots are initialized to 0 or null pointers. */
4635 build_decl_stat (location_t loc
, enum tree_code code
, tree name
,
4636 tree type MEM_STAT_DECL
)
4640 t
= make_node_stat (code PASS_MEM_STAT
);
4641 DECL_SOURCE_LOCATION (t
) = loc
;
4643 /* if (type == error_mark_node)
4644 type = integer_type_node; */
4645 /* That is not done, deliberately, so that having error_mark_node
4646 as the type can suppress useless errors in the use of this variable. */
4648 DECL_NAME (t
) = name
;
4649 TREE_TYPE (t
) = type
;
4651 if (code
== VAR_DECL
|| code
== PARM_DECL
|| code
== RESULT_DECL
)
4657 /* Builds and returns function declaration with NAME and TYPE. */
4660 build_fn_decl (const char *name
, tree type
)
4662 tree id
= get_identifier (name
);
4663 tree decl
= build_decl (input_location
, FUNCTION_DECL
, id
, type
);
4665 DECL_EXTERNAL (decl
) = 1;
4666 TREE_PUBLIC (decl
) = 1;
4667 DECL_ARTIFICIAL (decl
) = 1;
4668 TREE_NOTHROW (decl
) = 1;
4673 vec
<tree
, va_gc
> *all_translation_units
;
4675 /* Builds a new translation-unit decl with name NAME, queues it in the
4676 global list of translation-unit decls and returns it. */
4679 build_translation_unit_decl (tree name
)
4681 tree tu
= build_decl (UNKNOWN_LOCATION
, TRANSLATION_UNIT_DECL
,
4683 TRANSLATION_UNIT_LANGUAGE (tu
) = lang_hooks
.name
;
4684 vec_safe_push (all_translation_units
, tu
);
4689 /* BLOCK nodes are used to represent the structure of binding contours
4690 and declarations, once those contours have been exited and their contents
4691 compiled. This information is used for outputting debugging info. */
4694 build_block (tree vars
, tree subblocks
, tree supercontext
, tree chain
)
4696 tree block
= make_node (BLOCK
);
4698 BLOCK_VARS (block
) = vars
;
4699 BLOCK_SUBBLOCKS (block
) = subblocks
;
4700 BLOCK_SUPERCONTEXT (block
) = supercontext
;
4701 BLOCK_CHAIN (block
) = chain
;
4706 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4708 LOC is the location to use in tree T. */
4711 protected_set_expr_location (tree t
, location_t loc
)
4713 if (CAN_HAVE_LOCATION_P (t
))
4714 SET_EXPR_LOCATION (t
, loc
);
4717 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
4721 build_decl_attribute_variant (tree ddecl
, tree attribute
)
4723 DECL_ATTRIBUTES (ddecl
) = attribute
;
4727 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4728 is ATTRIBUTE and its qualifiers are QUALS.
4730 Record such modified types already made so we don't make duplicates. */
4733 build_type_attribute_qual_variant (tree ttype
, tree attribute
, int quals
)
4735 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype
), attribute
))
4737 inchash::hash hstate
;
4741 enum tree_code code
= TREE_CODE (ttype
);
4743 /* Building a distinct copy of a tagged type is inappropriate; it
4744 causes breakage in code that expects there to be a one-to-one
4745 relationship between a struct and its fields.
4746 build_duplicate_type is another solution (as used in
4747 handle_transparent_union_attribute), but that doesn't play well
4748 with the stronger C++ type identity model. */
4749 if (TREE_CODE (ttype
) == RECORD_TYPE
4750 || TREE_CODE (ttype
) == UNION_TYPE
4751 || TREE_CODE (ttype
) == QUAL_UNION_TYPE
4752 || TREE_CODE (ttype
) == ENUMERAL_TYPE
)
4754 warning (OPT_Wattributes
,
4755 "ignoring attributes applied to %qT after definition",
4756 TYPE_MAIN_VARIANT (ttype
));
4757 return build_qualified_type (ttype
, quals
);
4760 ttype
= build_qualified_type (ttype
, TYPE_UNQUALIFIED
);
4761 ntype
= build_distinct_type_copy (ttype
);
4763 TYPE_ATTRIBUTES (ntype
) = attribute
;
4765 hstate
.add_int (code
);
4766 if (TREE_TYPE (ntype
))
4767 hstate
.add_object (TYPE_HASH (TREE_TYPE (ntype
)));
4768 attribute_hash_list (attribute
, hstate
);
4770 switch (TREE_CODE (ntype
))
4773 type_hash_list (TYPE_ARG_TYPES (ntype
), hstate
);
4776 if (TYPE_DOMAIN (ntype
))
4777 hstate
.add_object (TYPE_HASH (TYPE_DOMAIN (ntype
)));
4780 t
= TYPE_MAX_VALUE (ntype
);
4781 for (i
= 0; i
< TREE_INT_CST_NUNITS (t
); i
++)
4782 hstate
.add_object (TREE_INT_CST_ELT (t
, i
));
4785 case FIXED_POINT_TYPE
:
4787 unsigned int precision
= TYPE_PRECISION (ntype
);
4788 hstate
.add_object (precision
);
4795 ntype
= type_hash_canon (hstate
.end(), ntype
);
4797 /* If the target-dependent attributes make NTYPE different from
4798 its canonical type, we will need to use structural equality
4799 checks for this type. */
4800 if (TYPE_STRUCTURAL_EQUALITY_P (ttype
)
4801 || !comp_type_attributes (ntype
, ttype
))
4802 SET_TYPE_STRUCTURAL_EQUALITY (ntype
);
4803 else if (TYPE_CANONICAL (ntype
) == ntype
)
4804 TYPE_CANONICAL (ntype
) = TYPE_CANONICAL (ttype
);
4806 ttype
= build_qualified_type (ntype
, quals
);
4808 else if (TYPE_QUALS (ttype
) != quals
)
4809 ttype
= build_qualified_type (ttype
, quals
);
4814 /* Check if "omp declare simd" attribute arguments, CLAUSES1 and CLAUSES2, are
4818 omp_declare_simd_clauses_equal (tree clauses1
, tree clauses2
)
4821 for (cl1
= clauses1
, cl2
= clauses2
;
4823 cl1
= OMP_CLAUSE_CHAIN (cl1
), cl2
= OMP_CLAUSE_CHAIN (cl2
))
4825 if (OMP_CLAUSE_CODE (cl1
) != OMP_CLAUSE_CODE (cl2
))
4827 if (OMP_CLAUSE_CODE (cl1
) != OMP_CLAUSE_SIMDLEN
)
4829 if (simple_cst_equal (OMP_CLAUSE_DECL (cl1
),
4830 OMP_CLAUSE_DECL (cl2
)) != 1)
4833 switch (OMP_CLAUSE_CODE (cl1
))
4835 case OMP_CLAUSE_ALIGNED
:
4836 if (simple_cst_equal (OMP_CLAUSE_ALIGNED_ALIGNMENT (cl1
),
4837 OMP_CLAUSE_ALIGNED_ALIGNMENT (cl2
)) != 1)
4840 case OMP_CLAUSE_LINEAR
:
4841 if (simple_cst_equal (OMP_CLAUSE_LINEAR_STEP (cl1
),
4842 OMP_CLAUSE_LINEAR_STEP (cl2
)) != 1)
4845 case OMP_CLAUSE_SIMDLEN
:
4846 if (simple_cst_equal (OMP_CLAUSE_SIMDLEN_EXPR (cl1
),
4847 OMP_CLAUSE_SIMDLEN_EXPR (cl2
)) != 1)
4856 /* Compare two constructor-element-type constants. Return 1 if the lists
4857 are known to be equal; otherwise return 0. */
4860 simple_cst_list_equal (const_tree l1
, const_tree l2
)
4862 while (l1
!= NULL_TREE
&& l2
!= NULL_TREE
)
4864 if (simple_cst_equal (TREE_VALUE (l1
), TREE_VALUE (l2
)) != 1)
4867 l1
= TREE_CHAIN (l1
);
4868 l2
= TREE_CHAIN (l2
);
4874 /* Compare two identifier nodes representing attributes. Either one may
4875 be in wrapped __ATTR__ form. Return true if they are the same, false
4879 cmp_attrib_identifiers (const_tree attr1
, const_tree attr2
)
4881 /* Make sure we're dealing with IDENTIFIER_NODEs. */
4882 gcc_checking_assert (TREE_CODE (attr1
) == IDENTIFIER_NODE
4883 && TREE_CODE (attr2
) == IDENTIFIER_NODE
);
4885 /* Identifiers can be compared directly for equality. */
4889 /* If they are not equal, they may still be one in the form
4890 'text' while the other one is in the form '__text__'. TODO:
4891 If we were storing attributes in normalized 'text' form, then
4892 this could all go away and we could take full advantage of
4893 the fact that we're comparing identifiers. :-) */
4894 const size_t attr1_len
= IDENTIFIER_LENGTH (attr1
);
4895 const size_t attr2_len
= IDENTIFIER_LENGTH (attr2
);
4897 if (attr2_len
== attr1_len
+ 4)
4899 const char *p
= IDENTIFIER_POINTER (attr2
);
4900 const char *q
= IDENTIFIER_POINTER (attr1
);
4901 if (p
[0] == '_' && p
[1] == '_'
4902 && p
[attr2_len
- 2] == '_' && p
[attr2_len
- 1] == '_'
4903 && strncmp (q
, p
+ 2, attr1_len
) == 0)
4906 else if (attr2_len
+ 4 == attr1_len
)
4908 const char *p
= IDENTIFIER_POINTER (attr2
);
4909 const char *q
= IDENTIFIER_POINTER (attr1
);
4910 if (q
[0] == '_' && q
[1] == '_'
4911 && q
[attr1_len
- 2] == '_' && q
[attr1_len
- 1] == '_'
4912 && strncmp (q
+ 2, p
, attr2_len
) == 0)
4919 /* Compare two attributes for their value identity. Return true if the
4920 attribute values are known to be equal; otherwise return false. */
4923 attribute_value_equal (const_tree attr1
, const_tree attr2
)
4925 if (TREE_VALUE (attr1
) == TREE_VALUE (attr2
))
4928 if (TREE_VALUE (attr1
) != NULL_TREE
4929 && TREE_CODE (TREE_VALUE (attr1
)) == TREE_LIST
4930 && TREE_VALUE (attr2
) != NULL_TREE
4931 && TREE_CODE (TREE_VALUE (attr2
)) == TREE_LIST
)
4933 /* Handle attribute format. */
4934 if (is_attribute_p ("format", TREE_PURPOSE (attr1
)))
4936 attr1
= TREE_VALUE (attr1
);
4937 attr2
= TREE_VALUE (attr2
);
4938 /* Compare the archetypes (printf/scanf/strftime/...). */
4939 if (!cmp_attrib_identifiers (TREE_VALUE (attr1
),
4940 TREE_VALUE (attr2
)))
4942 /* Archetypes are the same. Compare the rest. */
4943 return (simple_cst_list_equal (TREE_CHAIN (attr1
),
4944 TREE_CHAIN (attr2
)) == 1);
4946 return (simple_cst_list_equal (TREE_VALUE (attr1
),
4947 TREE_VALUE (attr2
)) == 1);
4950 if ((flag_openmp
|| flag_openmp_simd
)
4951 && TREE_VALUE (attr1
) && TREE_VALUE (attr2
)
4952 && TREE_CODE (TREE_VALUE (attr1
)) == OMP_CLAUSE
4953 && TREE_CODE (TREE_VALUE (attr2
)) == OMP_CLAUSE
)
4954 return omp_declare_simd_clauses_equal (TREE_VALUE (attr1
),
4955 TREE_VALUE (attr2
));
4957 return (simple_cst_equal (TREE_VALUE (attr1
), TREE_VALUE (attr2
)) == 1);
4960 /* Return 0 if the attributes for two types are incompatible, 1 if they
4961 are compatible, and 2 if they are nearly compatible (which causes a
4962 warning to be generated). */
4964 comp_type_attributes (const_tree type1
, const_tree type2
)
4966 const_tree a1
= TYPE_ATTRIBUTES (type1
);
4967 const_tree a2
= TYPE_ATTRIBUTES (type2
);
4972 for (a
= a1
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
4974 const struct attribute_spec
*as
;
4977 as
= lookup_attribute_spec (get_attribute_name (a
));
4978 if (!as
|| as
->affects_type_identity
== false)
4981 attr
= lookup_attribute (as
->name
, CONST_CAST_TREE (a2
));
4982 if (!attr
|| !attribute_value_equal (a
, attr
))
4987 for (a
= a2
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
4989 const struct attribute_spec
*as
;
4991 as
= lookup_attribute_spec (get_attribute_name (a
));
4992 if (!as
|| as
->affects_type_identity
== false)
4995 if (!lookup_attribute (as
->name
, CONST_CAST_TREE (a1
)))
4997 /* We don't need to compare trees again, as we did this
4998 already in first loop. */
5000 /* All types - affecting identity - are equal, so
5001 there is no need to call target hook for comparison. */
5005 /* As some type combinations - like default calling-convention - might
5006 be compatible, we have to call the target hook to get the final result. */
5007 return targetm
.comp_type_attributes (type1
, type2
);
5010 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
5013 Record such modified types already made so we don't make duplicates. */
5016 build_type_attribute_variant (tree ttype
, tree attribute
)
5018 return build_type_attribute_qual_variant (ttype
, attribute
,
5019 TYPE_QUALS (ttype
));
5023 /* Reset the expression *EXPR_P, a size or position.
5025 ??? We could reset all non-constant sizes or positions. But it's cheap
5026 enough to not do so and refrain from adding workarounds to dwarf2out.c.
5028 We need to reset self-referential sizes or positions because they cannot
5029 be gimplified and thus can contain a CALL_EXPR after the gimplification
5030 is finished, which will run afoul of LTO streaming. And they need to be
5031 reset to something essentially dummy but not constant, so as to preserve
5032 the properties of the object they are attached to. */
5035 free_lang_data_in_one_sizepos (tree
*expr_p
)
5037 tree expr
= *expr_p
;
5038 if (CONTAINS_PLACEHOLDER_P (expr
))
5039 *expr_p
= build0 (PLACEHOLDER_EXPR
, TREE_TYPE (expr
));
5043 /* Reset all the fields in a binfo node BINFO. We only keep
5044 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
5047 free_lang_data_in_binfo (tree binfo
)
5052 gcc_assert (TREE_CODE (binfo
) == TREE_BINFO
);
5054 BINFO_VIRTUALS (binfo
) = NULL_TREE
;
5055 BINFO_BASE_ACCESSES (binfo
) = NULL
;
5056 BINFO_INHERITANCE_CHAIN (binfo
) = NULL_TREE
;
5057 BINFO_SUBVTT_INDEX (binfo
) = NULL_TREE
;
5059 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo
), i
, t
)
5060 free_lang_data_in_binfo (t
);
5064 /* Reset all language specific information still present in TYPE. */
5067 free_lang_data_in_type (tree type
)
5069 gcc_assert (TYPE_P (type
));
5071 /* Give the FE a chance to remove its own data first. */
5072 lang_hooks
.free_lang_data (type
);
5074 TREE_LANG_FLAG_0 (type
) = 0;
5075 TREE_LANG_FLAG_1 (type
) = 0;
5076 TREE_LANG_FLAG_2 (type
) = 0;
5077 TREE_LANG_FLAG_3 (type
) = 0;
5078 TREE_LANG_FLAG_4 (type
) = 0;
5079 TREE_LANG_FLAG_5 (type
) = 0;
5080 TREE_LANG_FLAG_6 (type
) = 0;
5082 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5084 /* Remove the const and volatile qualifiers from arguments. The
5085 C++ front end removes them, but the C front end does not,
5086 leading to false ODR violation errors when merging two
5087 instances of the same function signature compiled by
5088 different front ends. */
5091 for (p
= TYPE_ARG_TYPES (type
); p
; p
= TREE_CHAIN (p
))
5093 tree arg_type
= TREE_VALUE (p
);
5095 if (TYPE_READONLY (arg_type
) || TYPE_VOLATILE (arg_type
))
5097 int quals
= TYPE_QUALS (arg_type
)
5099 & ~TYPE_QUAL_VOLATILE
;
5100 TREE_VALUE (p
) = build_qualified_type (arg_type
, quals
);
5101 free_lang_data_in_type (TREE_VALUE (p
));
5103 /* C++ FE uses TREE_PURPOSE to store initial values. */
5104 TREE_PURPOSE (p
) = NULL
;
5106 /* Java uses TYPE_MINVAL for TYPE_ARGUMENT_SIGNATURE. */
5107 TYPE_MINVAL (type
) = NULL
;
5109 if (TREE_CODE (type
) == METHOD_TYPE
)
5113 for (p
= TYPE_ARG_TYPES (type
); p
; p
= TREE_CHAIN (p
))
5115 /* C++ FE uses TREE_PURPOSE to store initial values. */
5116 TREE_PURPOSE (p
) = NULL
;
5118 /* Java uses TYPE_MINVAL for TYPE_ARGUMENT_SIGNATURE. */
5119 TYPE_MINVAL (type
) = NULL
;
5122 /* Remove members that are not actually FIELD_DECLs from the field
5123 list of an aggregate. These occur in C++. */
5124 if (RECORD_OR_UNION_TYPE_P (type
))
5128 /* Note that TYPE_FIELDS can be shared across distinct
5129 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
5130 to be removed, we cannot set its TREE_CHAIN to NULL.
5131 Otherwise, we would not be able to find all the other fields
5132 in the other instances of this TREE_TYPE.
5134 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
5136 member
= TYPE_FIELDS (type
);
5139 if (TREE_CODE (member
) == FIELD_DECL
5140 || TREE_CODE (member
) == TYPE_DECL
)
5143 TREE_CHAIN (prev
) = member
;
5145 TYPE_FIELDS (type
) = member
;
5149 member
= TREE_CHAIN (member
);
5153 TREE_CHAIN (prev
) = NULL_TREE
;
5155 TYPE_FIELDS (type
) = NULL_TREE
;
5157 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
5158 and danagle the pointer from time to time. */
5159 if (TYPE_VFIELD (type
) && TREE_CODE (TYPE_VFIELD (type
)) != FIELD_DECL
)
5160 TYPE_VFIELD (type
) = NULL_TREE
;
5162 /* Remove TYPE_METHODS list. While it would be nice to keep it
5163 to enable ODR warnings about different method lists, doing so
5164 seems to impractically increase size of LTO data streamed.
5165 Keep the infrmation if TYPE_METHODS was non-NULL. This is used
5166 by function.c and pretty printers. */
5167 if (TYPE_METHODS (type
))
5168 TYPE_METHODS (type
) = error_mark_node
;
5169 if (TYPE_BINFO (type
))
5171 free_lang_data_in_binfo (TYPE_BINFO (type
));
5172 /* We need to preserve link to bases and virtual table for all
5173 polymorphic types to make devirtualization machinery working.
5174 Debug output cares only about bases, but output also
5175 virtual table pointers so merging of -fdevirtualize and
5176 -fno-devirtualize units is easier. */
5177 if ((!BINFO_VTABLE (TYPE_BINFO (type
))
5178 || !flag_devirtualize
)
5179 && ((!BINFO_N_BASE_BINFOS (TYPE_BINFO (type
))
5180 && !BINFO_VTABLE (TYPE_BINFO (type
)))
5181 || debug_info_level
!= DINFO_LEVEL_NONE
))
5182 TYPE_BINFO (type
) = NULL
;
5187 /* For non-aggregate types, clear out the language slot (which
5188 overloads TYPE_BINFO). */
5189 TYPE_LANG_SLOT_1 (type
) = NULL_TREE
;
5191 if (INTEGRAL_TYPE_P (type
)
5192 || SCALAR_FLOAT_TYPE_P (type
)
5193 || FIXED_POINT_TYPE_P (type
))
5195 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type
));
5196 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type
));
5200 free_lang_data_in_one_sizepos (&TYPE_SIZE (type
));
5201 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type
));
5203 if (TYPE_CONTEXT (type
)
5204 && TREE_CODE (TYPE_CONTEXT (type
)) == BLOCK
)
5206 tree ctx
= TYPE_CONTEXT (type
);
5209 ctx
= BLOCK_SUPERCONTEXT (ctx
);
5211 while (ctx
&& TREE_CODE (ctx
) == BLOCK
);
5212 TYPE_CONTEXT (type
) = ctx
;
5217 /* Return true if DECL may need an assembler name to be set. */
5220 need_assembler_name_p (tree decl
)
5222 /* We use DECL_ASSEMBLER_NAME to hold mangled type names for One Definition
5223 Rule merging. This makes type_odr_p to return true on those types during
5224 LTO and by comparing the mangled name, we can say what types are intended
5225 to be equivalent across compilation unit.
5227 We do not store names of type_in_anonymous_namespace_p.
5229 Record, union and enumeration type have linkage that allows use
5230 to check type_in_anonymous_namespace_p. We do not mangle compound types
5231 that always can be compared structurally.
5233 Similarly for builtin types, we compare properties of their main variant.
5234 A special case are integer types where mangling do make differences
5235 between char/signed char/unsigned char etc. Storing name for these makes
5236 e.g. -fno-signed-char/-fsigned-char mismatches to be handled well.
5237 See cp/mangle.c:write_builtin_type for details. */
5239 if (flag_lto_odr_type_mering
5240 && TREE_CODE (decl
) == TYPE_DECL
5242 && decl
== TYPE_NAME (TREE_TYPE (decl
))
5243 && !TYPE_ARTIFICIAL (TREE_TYPE (decl
))
5244 && (type_with_linkage_p (TREE_TYPE (decl
))
5245 || TREE_CODE (TREE_TYPE (decl
)) == INTEGER_TYPE
)
5246 && !variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
5247 return !DECL_ASSEMBLER_NAME_SET_P (decl
);
5248 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
5249 if (TREE_CODE (decl
) != FUNCTION_DECL
5250 && TREE_CODE (decl
) != VAR_DECL
)
5253 /* If DECL already has its assembler name set, it does not need a
5255 if (!HAS_DECL_ASSEMBLER_NAME_P (decl
)
5256 || DECL_ASSEMBLER_NAME_SET_P (decl
))
5259 /* Abstract decls do not need an assembler name. */
5260 if (DECL_ABSTRACT_P (decl
))
5263 /* For VAR_DECLs, only static, public and external symbols need an
5265 if (TREE_CODE (decl
) == VAR_DECL
5266 && !TREE_STATIC (decl
)
5267 && !TREE_PUBLIC (decl
)
5268 && !DECL_EXTERNAL (decl
))
5271 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5273 /* Do not set assembler name on builtins. Allow RTL expansion to
5274 decide whether to expand inline or via a regular call. */
5275 if (DECL_BUILT_IN (decl
)
5276 && DECL_BUILT_IN_CLASS (decl
) != BUILT_IN_FRONTEND
)
5279 /* Functions represented in the callgraph need an assembler name. */
5280 if (cgraph_node::get (decl
) != NULL
)
5283 /* Unused and not public functions don't need an assembler name. */
5284 if (!TREE_USED (decl
) && !TREE_PUBLIC (decl
))
5292 /* Reset all language specific information still present in symbol
5296 free_lang_data_in_decl (tree decl
)
5298 gcc_assert (DECL_P (decl
));
5300 /* Give the FE a chance to remove its own data first. */
5301 lang_hooks
.free_lang_data (decl
);
5303 TREE_LANG_FLAG_0 (decl
) = 0;
5304 TREE_LANG_FLAG_1 (decl
) = 0;
5305 TREE_LANG_FLAG_2 (decl
) = 0;
5306 TREE_LANG_FLAG_3 (decl
) = 0;
5307 TREE_LANG_FLAG_4 (decl
) = 0;
5308 TREE_LANG_FLAG_5 (decl
) = 0;
5309 TREE_LANG_FLAG_6 (decl
) = 0;
5311 free_lang_data_in_one_sizepos (&DECL_SIZE (decl
));
5312 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl
));
5313 if (TREE_CODE (decl
) == FIELD_DECL
)
5315 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl
));
5316 if (TREE_CODE (DECL_CONTEXT (decl
)) == QUAL_UNION_TYPE
)
5317 DECL_QUALIFIER (decl
) = NULL_TREE
;
5320 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5322 struct cgraph_node
*node
;
5323 if (!(node
= cgraph_node::get (decl
))
5324 || (!node
->definition
&& !node
->clones
))
5327 node
->release_body ();
5330 release_function_body (decl
);
5331 DECL_ARGUMENTS (decl
) = NULL
;
5332 DECL_RESULT (decl
) = NULL
;
5333 DECL_INITIAL (decl
) = error_mark_node
;
5336 if (gimple_has_body_p (decl
))
5340 /* If DECL has a gimple body, then the context for its
5341 arguments must be DECL. Otherwise, it doesn't really
5342 matter, as we will not be emitting any code for DECL. In
5343 general, there may be other instances of DECL created by
5344 the front end and since PARM_DECLs are generally shared,
5345 their DECL_CONTEXT changes as the replicas of DECL are
5346 created. The only time where DECL_CONTEXT is important
5347 is for the FUNCTION_DECLs that have a gimple body (since
5348 the PARM_DECL will be used in the function's body). */
5349 for (t
= DECL_ARGUMENTS (decl
); t
; t
= TREE_CHAIN (t
))
5350 DECL_CONTEXT (t
) = decl
;
5351 if (!DECL_FUNCTION_SPECIFIC_TARGET (decl
))
5352 DECL_FUNCTION_SPECIFIC_TARGET (decl
)
5353 = target_option_default_node
;
5354 if (!DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl
))
5355 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (decl
)
5356 = optimization_default_node
;
5359 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
5360 At this point, it is not needed anymore. */
5361 DECL_SAVED_TREE (decl
) = NULL_TREE
;
5363 /* Clear the abstract origin if it refers to a method. Otherwise
5364 dwarf2out.c will ICE as we clear TYPE_METHODS and thus the
5365 origin will not be output correctly. */
5366 if (DECL_ABSTRACT_ORIGIN (decl
)
5367 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))
5368 && RECORD_OR_UNION_TYPE_P
5369 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))))
5370 DECL_ABSTRACT_ORIGIN (decl
) = NULL_TREE
;
5372 /* Sometimes the C++ frontend doesn't manage to transform a temporary
5373 DECL_VINDEX referring to itself into a vtable slot number as it
5374 should. Happens with functions that are copied and then forgotten
5375 about. Just clear it, it won't matter anymore. */
5376 if (DECL_VINDEX (decl
) && !tree_fits_shwi_p (DECL_VINDEX (decl
)))
5377 DECL_VINDEX (decl
) = NULL_TREE
;
5379 else if (TREE_CODE (decl
) == VAR_DECL
)
5381 if ((DECL_EXTERNAL (decl
)
5382 && (!TREE_STATIC (decl
) || !TREE_READONLY (decl
)))
5383 || (decl_function_context (decl
) && !TREE_STATIC (decl
)))
5384 DECL_INITIAL (decl
) = NULL_TREE
;
5386 else if (TREE_CODE (decl
) == TYPE_DECL
5387 || TREE_CODE (decl
) == FIELD_DECL
)
5388 DECL_INITIAL (decl
) = NULL_TREE
;
5389 else if (TREE_CODE (decl
) == TRANSLATION_UNIT_DECL
5390 && DECL_INITIAL (decl
)
5391 && TREE_CODE (DECL_INITIAL (decl
)) == BLOCK
)
5393 /* Strip builtins from the translation-unit BLOCK. We still have targets
5394 without builtin_decl_explicit support and also builtins are shared
5395 nodes and thus we can't use TREE_CHAIN in multiple lists. */
5396 tree
*nextp
= &BLOCK_VARS (DECL_INITIAL (decl
));
5400 if (TREE_CODE (var
) == FUNCTION_DECL
5401 && DECL_BUILT_IN (var
))
5402 *nextp
= TREE_CHAIN (var
);
5404 nextp
= &TREE_CHAIN (var
);
5410 /* Data used when collecting DECLs and TYPEs for language data removal. */
5412 struct free_lang_data_d
5414 /* Worklist to avoid excessive recursion. */
5417 /* Set of traversed objects. Used to avoid duplicate visits. */
5418 hash_set
<tree
> *pset
;
5420 /* Array of symbols to process with free_lang_data_in_decl. */
5423 /* Array of types to process with free_lang_data_in_type. */
5428 /* Save all language fields needed to generate proper debug information
5429 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
5432 save_debug_info_for_decl (tree t
)
5434 /*struct saved_debug_info_d *sdi;*/
5436 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& DECL_P (t
));
5438 /* FIXME. Partial implementation for saving debug info removed. */
5442 /* Save all language fields needed to generate proper debug information
5443 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
5446 save_debug_info_for_type (tree t
)
5448 /*struct saved_debug_info_d *sdi;*/
5450 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& TYPE_P (t
));
5452 /* FIXME. Partial implementation for saving debug info removed. */
5456 /* Add type or decl T to one of the list of tree nodes that need their
5457 language data removed. The lists are held inside FLD. */
5460 add_tree_to_fld_list (tree t
, struct free_lang_data_d
*fld
)
5464 fld
->decls
.safe_push (t
);
5465 if (debug_info_level
> DINFO_LEVEL_TERSE
)
5466 save_debug_info_for_decl (t
);
5468 else if (TYPE_P (t
))
5470 fld
->types
.safe_push (t
);
5471 if (debug_info_level
> DINFO_LEVEL_TERSE
)
5472 save_debug_info_for_type (t
);
5478 /* Push tree node T into FLD->WORKLIST. */
5481 fld_worklist_push (tree t
, struct free_lang_data_d
*fld
)
5483 if (t
&& !is_lang_specific (t
) && !fld
->pset
->contains (t
))
5484 fld
->worklist
.safe_push ((t
));
5488 /* Operand callback helper for free_lang_data_in_node. *TP is the
5489 subtree operand being considered. */
5492 find_decls_types_r (tree
*tp
, int *ws
, void *data
)
5495 struct free_lang_data_d
*fld
= (struct free_lang_data_d
*) data
;
5497 if (TREE_CODE (t
) == TREE_LIST
)
5500 /* Language specific nodes will be removed, so there is no need
5501 to gather anything under them. */
5502 if (is_lang_specific (t
))
5510 /* Note that walk_tree does not traverse every possible field in
5511 decls, so we have to do our own traversals here. */
5512 add_tree_to_fld_list (t
, fld
);
5514 fld_worklist_push (DECL_NAME (t
), fld
);
5515 fld_worklist_push (DECL_CONTEXT (t
), fld
);
5516 fld_worklist_push (DECL_SIZE (t
), fld
);
5517 fld_worklist_push (DECL_SIZE_UNIT (t
), fld
);
5519 /* We are going to remove everything under DECL_INITIAL for
5520 TYPE_DECLs. No point walking them. */
5521 if (TREE_CODE (t
) != TYPE_DECL
)
5522 fld_worklist_push (DECL_INITIAL (t
), fld
);
5524 fld_worklist_push (DECL_ATTRIBUTES (t
), fld
);
5525 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t
), fld
);
5527 if (TREE_CODE (t
) == FUNCTION_DECL
)
5529 fld_worklist_push (DECL_ARGUMENTS (t
), fld
);
5530 fld_worklist_push (DECL_RESULT (t
), fld
);
5532 else if (TREE_CODE (t
) == TYPE_DECL
)
5534 fld_worklist_push (DECL_ORIGINAL_TYPE (t
), fld
);
5536 else if (TREE_CODE (t
) == FIELD_DECL
)
5538 fld_worklist_push (DECL_FIELD_OFFSET (t
), fld
);
5539 fld_worklist_push (DECL_BIT_FIELD_TYPE (t
), fld
);
5540 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t
), fld
);
5541 fld_worklist_push (DECL_FCONTEXT (t
), fld
);
5544 if ((TREE_CODE (t
) == VAR_DECL
|| TREE_CODE (t
) == PARM_DECL
)
5545 && DECL_HAS_VALUE_EXPR_P (t
))
5546 fld_worklist_push (DECL_VALUE_EXPR (t
), fld
);
5548 if (TREE_CODE (t
) != FIELD_DECL
5549 && TREE_CODE (t
) != TYPE_DECL
)
5550 fld_worklist_push (TREE_CHAIN (t
), fld
);
5553 else if (TYPE_P (t
))
5555 /* Note that walk_tree does not traverse every possible field in
5556 types, so we have to do our own traversals here. */
5557 add_tree_to_fld_list (t
, fld
);
5559 if (!RECORD_OR_UNION_TYPE_P (t
))
5560 fld_worklist_push (TYPE_CACHED_VALUES (t
), fld
);
5561 fld_worklist_push (TYPE_SIZE (t
), fld
);
5562 fld_worklist_push (TYPE_SIZE_UNIT (t
), fld
);
5563 fld_worklist_push (TYPE_ATTRIBUTES (t
), fld
);
5564 fld_worklist_push (TYPE_POINTER_TO (t
), fld
);
5565 fld_worklist_push (TYPE_REFERENCE_TO (t
), fld
);
5566 fld_worklist_push (TYPE_NAME (t
), fld
);
5567 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
5568 them and thus do not and want not to reach unused pointer types
5570 if (!POINTER_TYPE_P (t
))
5571 fld_worklist_push (TYPE_MINVAL (t
), fld
);
5572 if (!RECORD_OR_UNION_TYPE_P (t
))
5573 fld_worklist_push (TYPE_MAXVAL (t
), fld
);
5574 fld_worklist_push (TYPE_MAIN_VARIANT (t
), fld
);
5575 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
5576 do not and want not to reach unused variants this way. */
5577 if (TYPE_CONTEXT (t
))
5579 tree ctx
= TYPE_CONTEXT (t
);
5580 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
5581 So push that instead. */
5582 while (ctx
&& TREE_CODE (ctx
) == BLOCK
)
5583 ctx
= BLOCK_SUPERCONTEXT (ctx
);
5584 fld_worklist_push (ctx
, fld
);
5586 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
5587 and want not to reach unused types this way. */
5589 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_BINFO (t
))
5593 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t
)), i
, tem
)
5594 fld_worklist_push (TREE_TYPE (tem
), fld
);
5595 tem
= BINFO_VIRTUALS (TYPE_BINFO (t
));
5597 /* The Java FE overloads BINFO_VIRTUALS for its own purpose. */
5598 && TREE_CODE (tem
) == TREE_LIST
)
5601 fld_worklist_push (TREE_VALUE (tem
), fld
);
5602 tem
= TREE_CHAIN (tem
);
5606 if (RECORD_OR_UNION_TYPE_P (t
))
5609 /* Push all TYPE_FIELDS - there can be interleaving interesting
5610 and non-interesting things. */
5611 tem
= TYPE_FIELDS (t
);
5614 if (TREE_CODE (tem
) == FIELD_DECL
5615 || TREE_CODE (tem
) == TYPE_DECL
)
5616 fld_worklist_push (tem
, fld
);
5617 tem
= TREE_CHAIN (tem
);
5621 fld_worklist_push (TYPE_STUB_DECL (t
), fld
);
5624 else if (TREE_CODE (t
) == BLOCK
)
5627 for (tem
= BLOCK_VARS (t
); tem
; tem
= TREE_CHAIN (tem
))
5628 fld_worklist_push (tem
, fld
);
5629 for (tem
= BLOCK_SUBBLOCKS (t
); tem
; tem
= BLOCK_CHAIN (tem
))
5630 fld_worklist_push (tem
, fld
);
5631 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t
), fld
);
5634 if (TREE_CODE (t
) != IDENTIFIER_NODE
5635 && CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_TYPED
))
5636 fld_worklist_push (TREE_TYPE (t
), fld
);
5642 /* Find decls and types in T. */
5645 find_decls_types (tree t
, struct free_lang_data_d
*fld
)
5649 if (!fld
->pset
->contains (t
))
5650 walk_tree (&t
, find_decls_types_r
, fld
, fld
->pset
);
5651 if (fld
->worklist
.is_empty ())
5653 t
= fld
->worklist
.pop ();
5657 /* Translate all the types in LIST with the corresponding runtime
5661 get_eh_types_for_runtime (tree list
)
5665 if (list
== NULL_TREE
)
5668 head
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5670 list
= TREE_CHAIN (list
);
5673 tree n
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5674 TREE_CHAIN (prev
) = n
;
5675 prev
= TREE_CHAIN (prev
);
5676 list
= TREE_CHAIN (list
);
5683 /* Find decls and types referenced in EH region R and store them in
5684 FLD->DECLS and FLD->TYPES. */
5687 find_decls_types_in_eh_region (eh_region r
, struct free_lang_data_d
*fld
)
5698 /* The types referenced in each catch must first be changed to the
5699 EH types used at runtime. This removes references to FE types
5701 for (c
= r
->u
.eh_try
.first_catch
; c
; c
= c
->next_catch
)
5703 c
->type_list
= get_eh_types_for_runtime (c
->type_list
);
5704 walk_tree (&c
->type_list
, find_decls_types_r
, fld
, fld
->pset
);
5709 case ERT_ALLOWED_EXCEPTIONS
:
5710 r
->u
.allowed
.type_list
5711 = get_eh_types_for_runtime (r
->u
.allowed
.type_list
);
5712 walk_tree (&r
->u
.allowed
.type_list
, find_decls_types_r
, fld
, fld
->pset
);
5715 case ERT_MUST_NOT_THROW
:
5716 walk_tree (&r
->u
.must_not_throw
.failure_decl
,
5717 find_decls_types_r
, fld
, fld
->pset
);
5723 /* Find decls and types referenced in cgraph node N and store them in
5724 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5725 look for *every* kind of DECL and TYPE node reachable from N,
5726 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5727 NAMESPACE_DECLs, etc). */
5730 find_decls_types_in_node (struct cgraph_node
*n
, struct free_lang_data_d
*fld
)
5733 struct function
*fn
;
5737 find_decls_types (n
->decl
, fld
);
5739 if (!gimple_has_body_p (n
->decl
))
5742 gcc_assert (current_function_decl
== NULL_TREE
&& cfun
== NULL
);
5744 fn
= DECL_STRUCT_FUNCTION (n
->decl
);
5746 /* Traverse locals. */
5747 FOR_EACH_LOCAL_DECL (fn
, ix
, t
)
5748 find_decls_types (t
, fld
);
5750 /* Traverse EH regions in FN. */
5753 FOR_ALL_EH_REGION_FN (r
, fn
)
5754 find_decls_types_in_eh_region (r
, fld
);
5757 /* Traverse every statement in FN. */
5758 FOR_EACH_BB_FN (bb
, fn
)
5761 gimple_stmt_iterator si
;
5764 for (psi
= gsi_start_phis (bb
); !gsi_end_p (psi
); gsi_next (&psi
))
5766 gphi
*phi
= psi
.phi ();
5768 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
5770 tree
*arg_p
= gimple_phi_arg_def_ptr (phi
, i
);
5771 find_decls_types (*arg_p
, fld
);
5775 for (si
= gsi_start_bb (bb
); !gsi_end_p (si
); gsi_next (&si
))
5777 gimple stmt
= gsi_stmt (si
);
5779 if (is_gimple_call (stmt
))
5780 find_decls_types (gimple_call_fntype (stmt
), fld
);
5782 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
5784 tree arg
= gimple_op (stmt
, i
);
5785 find_decls_types (arg
, fld
);
5792 /* Find decls and types referenced in varpool node N and store them in
5793 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5794 look for *every* kind of DECL and TYPE node reachable from N,
5795 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5796 NAMESPACE_DECLs, etc). */
5799 find_decls_types_in_var (varpool_node
*v
, struct free_lang_data_d
*fld
)
5801 find_decls_types (v
->decl
, fld
);
5804 /* If T needs an assembler name, have one created for it. */
5807 assign_assembler_name_if_neeeded (tree t
)
5809 if (need_assembler_name_p (t
))
5811 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5812 diagnostics that use input_location to show locus
5813 information. The problem here is that, at this point,
5814 input_location is generally anchored to the end of the file
5815 (since the parser is long gone), so we don't have a good
5816 position to pin it to.
5818 To alleviate this problem, this uses the location of T's
5819 declaration. Examples of this are
5820 testsuite/g++.dg/template/cond2.C and
5821 testsuite/g++.dg/template/pr35240.C. */
5822 location_t saved_location
= input_location
;
5823 input_location
= DECL_SOURCE_LOCATION (t
);
5825 decl_assembler_name (t
);
5827 input_location
= saved_location
;
5832 /* Free language specific information for every operand and expression
5833 in every node of the call graph. This process operates in three stages:
5835 1- Every callgraph node and varpool node is traversed looking for
5836 decls and types embedded in them. This is a more exhaustive
5837 search than that done by find_referenced_vars, because it will
5838 also collect individual fields, decls embedded in types, etc.
5840 2- All the decls found are sent to free_lang_data_in_decl.
5842 3- All the types found are sent to free_lang_data_in_type.
5844 The ordering between decls and types is important because
5845 free_lang_data_in_decl sets assembler names, which includes
5846 mangling. So types cannot be freed up until assembler names have
5850 free_lang_data_in_cgraph (void)
5852 struct cgraph_node
*n
;
5854 struct free_lang_data_d fld
;
5859 /* Initialize sets and arrays to store referenced decls and types. */
5860 fld
.pset
= new hash_set
<tree
>;
5861 fld
.worklist
.create (0);
5862 fld
.decls
.create (100);
5863 fld
.types
.create (100);
5865 /* Find decls and types in the body of every function in the callgraph. */
5866 FOR_EACH_FUNCTION (n
)
5867 find_decls_types_in_node (n
, &fld
);
5869 FOR_EACH_VEC_SAFE_ELT (alias_pairs
, i
, p
)
5870 find_decls_types (p
->decl
, &fld
);
5872 /* Find decls and types in every varpool symbol. */
5873 FOR_EACH_VARIABLE (v
)
5874 find_decls_types_in_var (v
, &fld
);
5876 /* Set the assembler name on every decl found. We need to do this
5877 now because free_lang_data_in_decl will invalidate data needed
5878 for mangling. This breaks mangling on interdependent decls. */
5879 FOR_EACH_VEC_ELT (fld
.decls
, i
, t
)
5880 assign_assembler_name_if_neeeded (t
);
5882 /* Traverse every decl found freeing its language data. */
5883 FOR_EACH_VEC_ELT (fld
.decls
, i
, t
)
5884 free_lang_data_in_decl (t
);
5886 /* Traverse every type found freeing its language data. */
5887 FOR_EACH_VEC_ELT (fld
.types
, i
, t
)
5888 free_lang_data_in_type (t
);
5889 #ifdef ENABLE_CHECKING
5890 FOR_EACH_VEC_ELT (fld
.types
, i
, t
)
5895 fld
.worklist
.release ();
5896 fld
.decls
.release ();
5897 fld
.types
.release ();
5901 /* Free resources that are used by FE but are not needed once they are done. */
5904 free_lang_data (void)
5908 /* If we are the LTO frontend we have freed lang-specific data already. */
5910 || (!flag_generate_lto
&& !flag_generate_offload
))
5913 /* Allocate and assign alias sets to the standard integer types
5914 while the slots are still in the way the frontends generated them. */
5915 for (i
= 0; i
< itk_none
; ++i
)
5916 if (integer_types
[i
])
5917 TYPE_ALIAS_SET (integer_types
[i
]) = get_alias_set (integer_types
[i
]);
5919 /* Traverse the IL resetting language specific information for
5920 operands, expressions, etc. */
5921 free_lang_data_in_cgraph ();
5923 /* Create gimple variants for common types. */
5924 ptrdiff_type_node
= integer_type_node
;
5925 fileptr_type_node
= ptr_type_node
;
5927 /* Reset some langhooks. Do not reset types_compatible_p, it may
5928 still be used indirectly via the get_alias_set langhook. */
5929 lang_hooks
.dwarf_name
= lhd_dwarf_name
;
5930 lang_hooks
.decl_printable_name
= gimple_decl_printable_name
;
5931 lang_hooks
.gimplify_expr
= lhd_gimplify_expr
;
5933 /* We do not want the default decl_assembler_name implementation,
5934 rather if we have fixed everything we want a wrapper around it
5935 asserting that all non-local symbols already got their assembler
5936 name and only produce assembler names for local symbols. Or rather
5937 make sure we never call decl_assembler_name on local symbols and
5938 devise a separate, middle-end private scheme for it. */
5940 /* Reset diagnostic machinery. */
5941 tree_diagnostics_defaults (global_dc
);
5949 const pass_data pass_data_ipa_free_lang_data
=
5951 SIMPLE_IPA_PASS
, /* type */
5952 "*free_lang_data", /* name */
5953 OPTGROUP_NONE
, /* optinfo_flags */
5954 TV_IPA_FREE_LANG_DATA
, /* tv_id */
5955 0, /* properties_required */
5956 0, /* properties_provided */
5957 0, /* properties_destroyed */
5958 0, /* todo_flags_start */
5959 0, /* todo_flags_finish */
5962 class pass_ipa_free_lang_data
: public simple_ipa_opt_pass
5965 pass_ipa_free_lang_data (gcc::context
*ctxt
)
5966 : simple_ipa_opt_pass (pass_data_ipa_free_lang_data
, ctxt
)
5969 /* opt_pass methods: */
5970 virtual unsigned int execute (function
*) { return free_lang_data (); }
5972 }; // class pass_ipa_free_lang_data
5976 simple_ipa_opt_pass
*
5977 make_pass_ipa_free_lang_data (gcc::context
*ctxt
)
5979 return new pass_ipa_free_lang_data (ctxt
);
5982 /* The backbone of is_attribute_p(). ATTR_LEN is the string length of
5983 ATTR_NAME. Also used internally by remove_attribute(). */
5985 private_is_attribute_p (const char *attr_name
, size_t attr_len
, const_tree ident
)
5987 size_t ident_len
= IDENTIFIER_LENGTH (ident
);
5989 if (ident_len
== attr_len
)
5991 if (strcmp (attr_name
, IDENTIFIER_POINTER (ident
)) == 0)
5994 else if (ident_len
== attr_len
+ 4)
5996 /* There is the possibility that ATTR is 'text' and IDENT is
5998 const char *p
= IDENTIFIER_POINTER (ident
);
5999 if (p
[0] == '_' && p
[1] == '_'
6000 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
6001 && strncmp (attr_name
, p
+ 2, attr_len
) == 0)
6008 /* The backbone of lookup_attribute(). ATTR_LEN is the string length
6009 of ATTR_NAME, and LIST is not NULL_TREE. */
6011 private_lookup_attribute (const char *attr_name
, size_t attr_len
, tree list
)
6015 size_t ident_len
= IDENTIFIER_LENGTH (get_attribute_name (list
));
6017 if (ident_len
== attr_len
)
6019 if (!strcmp (attr_name
,
6020 IDENTIFIER_POINTER (get_attribute_name (list
))))
6023 /* TODO: If we made sure that attributes were stored in the
6024 canonical form without '__...__' (ie, as in 'text' as opposed
6025 to '__text__') then we could avoid the following case. */
6026 else if (ident_len
== attr_len
+ 4)
6028 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
6029 if (p
[0] == '_' && p
[1] == '_'
6030 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
6031 && strncmp (attr_name
, p
+ 2, attr_len
) == 0)
6034 list
= TREE_CHAIN (list
);
6040 /* Given an attribute name ATTR_NAME and a list of attributes LIST,
6041 return a pointer to the attribute's list first element if the attribute
6042 starts with ATTR_NAME. ATTR_NAME must be in the form 'text' (not
6046 private_lookup_attribute_by_prefix (const char *attr_name
, size_t attr_len
,
6051 size_t ident_len
= IDENTIFIER_LENGTH (get_attribute_name (list
));
6053 if (attr_len
> ident_len
)
6055 list
= TREE_CHAIN (list
);
6059 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
6061 if (strncmp (attr_name
, p
, attr_len
) == 0)
6064 /* TODO: If we made sure that attributes were stored in the
6065 canonical form without '__...__' (ie, as in 'text' as opposed
6066 to '__text__') then we could avoid the following case. */
6067 if (p
[0] == '_' && p
[1] == '_' &&
6068 strncmp (attr_name
, p
+ 2, attr_len
) == 0)
6071 list
= TREE_CHAIN (list
);
6078 /* A variant of lookup_attribute() that can be used with an identifier
6079 as the first argument, and where the identifier can be either
6080 'text' or '__text__'.
6082 Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
6083 return a pointer to the attribute's list element if the attribute
6084 is part of the list, or NULL_TREE if not found. If the attribute
6085 appears more than once, this only returns the first occurrence; the
6086 TREE_CHAIN of the return value should be passed back in if further
6087 occurrences are wanted. ATTR_IDENTIFIER must be an identifier but
6088 can be in the form 'text' or '__text__'. */
6090 lookup_ident_attribute (tree attr_identifier
, tree list
)
6092 gcc_checking_assert (TREE_CODE (attr_identifier
) == IDENTIFIER_NODE
);
6096 gcc_checking_assert (TREE_CODE (get_attribute_name (list
))
6097 == IDENTIFIER_NODE
);
6099 if (cmp_attrib_identifiers (attr_identifier
,
6100 get_attribute_name (list
)))
6103 list
= TREE_CHAIN (list
);
6109 /* Remove any instances of attribute ATTR_NAME in LIST and return the
6113 remove_attribute (const char *attr_name
, tree list
)
6116 size_t attr_len
= strlen (attr_name
);
6118 gcc_checking_assert (attr_name
[0] != '_');
6120 for (p
= &list
; *p
; )
6123 /* TODO: If we were storing attributes in normalized form, here
6124 we could use a simple strcmp(). */
6125 if (private_is_attribute_p (attr_name
, attr_len
, get_attribute_name (l
)))
6126 *p
= TREE_CHAIN (l
);
6128 p
= &TREE_CHAIN (l
);
6134 /* Return an attribute list that is the union of a1 and a2. */
6137 merge_attributes (tree a1
, tree a2
)
6141 /* Either one unset? Take the set one. */
6143 if ((attributes
= a1
) == 0)
6146 /* One that completely contains the other? Take it. */
6148 else if (a2
!= 0 && ! attribute_list_contained (a1
, a2
))
6150 if (attribute_list_contained (a2
, a1
))
6154 /* Pick the longest list, and hang on the other list. */
6156 if (list_length (a1
) < list_length (a2
))
6157 attributes
= a2
, a2
= a1
;
6159 for (; a2
!= 0; a2
= TREE_CHAIN (a2
))
6162 for (a
= lookup_ident_attribute (get_attribute_name (a2
),
6164 a
!= NULL_TREE
&& !attribute_value_equal (a
, a2
);
6165 a
= lookup_ident_attribute (get_attribute_name (a2
),
6170 a1
= copy_node (a2
);
6171 TREE_CHAIN (a1
) = attributes
;
6180 /* Given types T1 and T2, merge their attributes and return
6184 merge_type_attributes (tree t1
, tree t2
)
6186 return merge_attributes (TYPE_ATTRIBUTES (t1
),
6187 TYPE_ATTRIBUTES (t2
));
6190 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
6194 merge_decl_attributes (tree olddecl
, tree newdecl
)
6196 return merge_attributes (DECL_ATTRIBUTES (olddecl
),
6197 DECL_ATTRIBUTES (newdecl
));
6200 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
6202 /* Specialization of merge_decl_attributes for various Windows targets.
6204 This handles the following situation:
6206 __declspec (dllimport) int foo;
6209 The second instance of `foo' nullifies the dllimport. */
6212 merge_dllimport_decl_attributes (tree old
, tree new_tree
)
6215 int delete_dllimport_p
= 1;
6217 /* What we need to do here is remove from `old' dllimport if it doesn't
6218 appear in `new'. dllimport behaves like extern: if a declaration is
6219 marked dllimport and a definition appears later, then the object
6220 is not dllimport'd. We also remove a `new' dllimport if the old list
6221 contains dllexport: dllexport always overrides dllimport, regardless
6222 of the order of declaration. */
6223 if (!VAR_OR_FUNCTION_DECL_P (new_tree
))
6224 delete_dllimport_p
= 0;
6225 else if (DECL_DLLIMPORT_P (new_tree
)
6226 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old
)))
6228 DECL_DLLIMPORT_P (new_tree
) = 0;
6229 warning (OPT_Wattributes
, "%q+D already declared with dllexport attribute: "
6230 "dllimport ignored", new_tree
);
6232 else if (DECL_DLLIMPORT_P (old
) && !DECL_DLLIMPORT_P (new_tree
))
6234 /* Warn about overriding a symbol that has already been used, e.g.:
6235 extern int __attribute__ ((dllimport)) foo;
6236 int* bar () {return &foo;}
6239 if (TREE_USED (old
))
6241 warning (0, "%q+D redeclared without dllimport attribute "
6242 "after being referenced with dll linkage", new_tree
);
6243 /* If we have used a variable's address with dllimport linkage,
6244 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
6245 decl may already have had TREE_CONSTANT computed.
6246 We still remove the attribute so that assembler code refers
6247 to '&foo rather than '_imp__foo'. */
6248 if (TREE_CODE (old
) == VAR_DECL
&& TREE_ADDRESSABLE (old
))
6249 DECL_DLLIMPORT_P (new_tree
) = 1;
6252 /* Let an inline definition silently override the external reference,
6253 but otherwise warn about attribute inconsistency. */
6254 else if (TREE_CODE (new_tree
) == VAR_DECL
6255 || !DECL_DECLARED_INLINE_P (new_tree
))
6256 warning (OPT_Wattributes
, "%q+D redeclared without dllimport attribute: "
6257 "previous dllimport ignored", new_tree
);
6260 delete_dllimport_p
= 0;
6262 a
= merge_attributes (DECL_ATTRIBUTES (old
), DECL_ATTRIBUTES (new_tree
));
6264 if (delete_dllimport_p
)
6265 a
= remove_attribute ("dllimport", a
);
6270 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
6271 struct attribute_spec.handler. */
6274 handle_dll_attribute (tree
* pnode
, tree name
, tree args
, int flags
,
6280 /* These attributes may apply to structure and union types being created,
6281 but otherwise should pass to the declaration involved. */
6284 if (flags
& ((int) ATTR_FLAG_DECL_NEXT
| (int) ATTR_FLAG_FUNCTION_NEXT
6285 | (int) ATTR_FLAG_ARRAY_NEXT
))
6287 *no_add_attrs
= true;
6288 return tree_cons (name
, args
, NULL_TREE
);
6290 if (TREE_CODE (node
) == RECORD_TYPE
6291 || TREE_CODE (node
) == UNION_TYPE
)
6293 node
= TYPE_NAME (node
);
6299 warning (OPT_Wattributes
, "%qE attribute ignored",
6301 *no_add_attrs
= true;
6306 if (TREE_CODE (node
) != FUNCTION_DECL
6307 && TREE_CODE (node
) != VAR_DECL
6308 && TREE_CODE (node
) != TYPE_DECL
)
6310 *no_add_attrs
= true;
6311 warning (OPT_Wattributes
, "%qE attribute ignored",
6316 if (TREE_CODE (node
) == TYPE_DECL
6317 && TREE_CODE (TREE_TYPE (node
)) != RECORD_TYPE
6318 && TREE_CODE (TREE_TYPE (node
)) != UNION_TYPE
)
6320 *no_add_attrs
= true;
6321 warning (OPT_Wattributes
, "%qE attribute ignored",
6326 is_dllimport
= is_attribute_p ("dllimport", name
);
6328 /* Report error on dllimport ambiguities seen now before they cause
6332 /* Honor any target-specific overrides. */
6333 if (!targetm
.valid_dllimport_attribute_p (node
))
6334 *no_add_attrs
= true;
6336 else if (TREE_CODE (node
) == FUNCTION_DECL
6337 && DECL_DECLARED_INLINE_P (node
))
6339 warning (OPT_Wattributes
, "inline function %q+D declared as "
6340 " dllimport: attribute ignored", node
);
6341 *no_add_attrs
= true;
6343 /* Like MS, treat definition of dllimported variables and
6344 non-inlined functions on declaration as syntax errors. */
6345 else if (TREE_CODE (node
) == FUNCTION_DECL
&& DECL_INITIAL (node
))
6347 error ("function %q+D definition is marked dllimport", node
);
6348 *no_add_attrs
= true;
6351 else if (TREE_CODE (node
) == VAR_DECL
)
6353 if (DECL_INITIAL (node
))
6355 error ("variable %q+D definition is marked dllimport",
6357 *no_add_attrs
= true;
6360 /* `extern' needn't be specified with dllimport.
6361 Specify `extern' now and hope for the best. Sigh. */
6362 DECL_EXTERNAL (node
) = 1;
6363 /* Also, implicitly give dllimport'd variables declared within
6364 a function global scope, unless declared static. */
6365 if (current_function_decl
!= NULL_TREE
&& !TREE_STATIC (node
))
6366 TREE_PUBLIC (node
) = 1;
6369 if (*no_add_attrs
== false)
6370 DECL_DLLIMPORT_P (node
) = 1;
6372 else if (TREE_CODE (node
) == FUNCTION_DECL
6373 && DECL_DECLARED_INLINE_P (node
)
6374 && flag_keep_inline_dllexport
)
6375 /* An exported function, even if inline, must be emitted. */
6376 DECL_EXTERNAL (node
) = 0;
6378 /* Report error if symbol is not accessible at global scope. */
6379 if (!TREE_PUBLIC (node
)
6380 && (TREE_CODE (node
) == VAR_DECL
6381 || TREE_CODE (node
) == FUNCTION_DECL
))
6383 error ("external linkage required for symbol %q+D because of "
6384 "%qE attribute", node
, name
);
6385 *no_add_attrs
= true;
6388 /* A dllexport'd entity must have default visibility so that other
6389 program units (shared libraries or the main executable) can see
6390 it. A dllimport'd entity must have default visibility so that
6391 the linker knows that undefined references within this program
6392 unit can be resolved by the dynamic linker. */
6395 if (DECL_VISIBILITY_SPECIFIED (node
)
6396 && DECL_VISIBILITY (node
) != VISIBILITY_DEFAULT
)
6397 error ("%qE implies default visibility, but %qD has already "
6398 "been declared with a different visibility",
6400 DECL_VISIBILITY (node
) = VISIBILITY_DEFAULT
;
6401 DECL_VISIBILITY_SPECIFIED (node
) = 1;
6407 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
6409 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
6410 of the various TYPE_QUAL values. */
6413 set_type_quals (tree type
, int type_quals
)
6415 TYPE_READONLY (type
) = (type_quals
& TYPE_QUAL_CONST
) != 0;
6416 TYPE_VOLATILE (type
) = (type_quals
& TYPE_QUAL_VOLATILE
) != 0;
6417 TYPE_RESTRICT (type
) = (type_quals
& TYPE_QUAL_RESTRICT
) != 0;
6418 TYPE_ATOMIC (type
) = (type_quals
& TYPE_QUAL_ATOMIC
) != 0;
6419 TYPE_ADDR_SPACE (type
) = DECODE_QUAL_ADDR_SPACE (type_quals
);
6422 /* Returns true iff unqualified CAND and BASE are equivalent. */
6425 check_base_type (const_tree cand
, const_tree base
)
6427 return (TYPE_NAME (cand
) == TYPE_NAME (base
)
6428 /* Apparently this is needed for Objective-C. */
6429 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
6430 /* Check alignment. */
6431 && TYPE_ALIGN (cand
) == TYPE_ALIGN (base
)
6432 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
6433 TYPE_ATTRIBUTES (base
)));
6436 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
6439 check_qualified_type (const_tree cand
, const_tree base
, int type_quals
)
6441 return (TYPE_QUALS (cand
) == type_quals
6442 && check_base_type (cand
, base
));
6445 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
6448 check_aligned_type (const_tree cand
, const_tree base
, unsigned int align
)
6450 return (TYPE_QUALS (cand
) == TYPE_QUALS (base
)
6451 && TYPE_NAME (cand
) == TYPE_NAME (base
)
6452 /* Apparently this is needed for Objective-C. */
6453 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
6454 /* Check alignment. */
6455 && TYPE_ALIGN (cand
) == align
6456 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
6457 TYPE_ATTRIBUTES (base
)));
6460 /* This function checks to see if TYPE matches the size one of the built-in
6461 atomic types, and returns that core atomic type. */
6464 find_atomic_core_type (tree type
)
6466 tree base_atomic_type
;
6468 /* Only handle complete types. */
6469 if (TYPE_SIZE (type
) == NULL_TREE
)
6472 HOST_WIDE_INT type_size
= tree_to_uhwi (TYPE_SIZE (type
));
6476 base_atomic_type
= atomicQI_type_node
;
6480 base_atomic_type
= atomicHI_type_node
;
6484 base_atomic_type
= atomicSI_type_node
;
6488 base_atomic_type
= atomicDI_type_node
;
6492 base_atomic_type
= atomicTI_type_node
;
6496 base_atomic_type
= NULL_TREE
;
6499 return base_atomic_type
;
6502 /* Return a version of the TYPE, qualified as indicated by the
6503 TYPE_QUALS, if one exists. If no qualified version exists yet,
6504 return NULL_TREE. */
6507 get_qualified_type (tree type
, int type_quals
)
6511 if (TYPE_QUALS (type
) == type_quals
)
6514 /* Search the chain of variants to see if there is already one there just
6515 like the one we need to have. If so, use that existing one. We must
6516 preserve the TYPE_NAME, since there is code that depends on this. */
6517 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
6518 if (check_qualified_type (t
, type
, type_quals
))
6524 /* Like get_qualified_type, but creates the type if it does not
6525 exist. This function never returns NULL_TREE. */
6528 build_qualified_type (tree type
, int type_quals
)
6532 /* See if we already have the appropriate qualified variant. */
6533 t
= get_qualified_type (type
, type_quals
);
6535 /* If not, build it. */
6538 t
= build_variant_type_copy (type
);
6539 set_type_quals (t
, type_quals
);
6541 if (((type_quals
& TYPE_QUAL_ATOMIC
) == TYPE_QUAL_ATOMIC
))
6543 /* See if this object can map to a basic atomic type. */
6544 tree atomic_type
= find_atomic_core_type (type
);
6547 /* Ensure the alignment of this type is compatible with
6548 the required alignment of the atomic type. */
6549 if (TYPE_ALIGN (atomic_type
) > TYPE_ALIGN (t
))
6550 TYPE_ALIGN (t
) = TYPE_ALIGN (atomic_type
);
6554 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
6555 /* Propagate structural equality. */
6556 SET_TYPE_STRUCTURAL_EQUALITY (t
);
6557 else if (TYPE_CANONICAL (type
) != type
)
6558 /* Build the underlying canonical type, since it is different
6561 tree c
= build_qualified_type (TYPE_CANONICAL (type
), type_quals
);
6562 TYPE_CANONICAL (t
) = TYPE_CANONICAL (c
);
6565 /* T is its own canonical type. */
6566 TYPE_CANONICAL (t
) = t
;
6573 /* Create a variant of type T with alignment ALIGN. */
6576 build_aligned_type (tree type
, unsigned int align
)
6580 if (TYPE_PACKED (type
)
6581 || TYPE_ALIGN (type
) == align
)
6584 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
6585 if (check_aligned_type (t
, type
, align
))
6588 t
= build_variant_type_copy (type
);
6589 TYPE_ALIGN (t
) = align
;
6594 /* Create a new distinct copy of TYPE. The new type is made its own
6595 MAIN_VARIANT. If TYPE requires structural equality checks, the
6596 resulting type requires structural equality checks; otherwise, its
6597 TYPE_CANONICAL points to itself. */
6600 build_distinct_type_copy (tree type
)
6602 tree t
= copy_node (type
);
6604 TYPE_POINTER_TO (t
) = 0;
6605 TYPE_REFERENCE_TO (t
) = 0;
6607 /* Set the canonical type either to a new equivalence class, or
6608 propagate the need for structural equality checks. */
6609 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
6610 SET_TYPE_STRUCTURAL_EQUALITY (t
);
6612 TYPE_CANONICAL (t
) = t
;
6614 /* Make it its own variant. */
6615 TYPE_MAIN_VARIANT (t
) = t
;
6616 TYPE_NEXT_VARIANT (t
) = 0;
6618 /* We do not record methods in type copies nor variants
6619 so we do not need to keep them up to date when new method
6621 if (RECORD_OR_UNION_TYPE_P (t
))
6622 TYPE_METHODS (t
) = NULL_TREE
;
6624 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
6625 whose TREE_TYPE is not t. This can also happen in the Ada
6626 frontend when using subtypes. */
6631 /* Create a new variant of TYPE, equivalent but distinct. This is so
6632 the caller can modify it. TYPE_CANONICAL for the return type will
6633 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
6634 are considered equal by the language itself (or that both types
6635 require structural equality checks). */
6638 build_variant_type_copy (tree type
)
6640 tree t
, m
= TYPE_MAIN_VARIANT (type
);
6642 t
= build_distinct_type_copy (type
);
6644 /* Since we're building a variant, assume that it is a non-semantic
6645 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
6646 TYPE_CANONICAL (t
) = TYPE_CANONICAL (type
);
6648 /* Add the new type to the chain of variants of TYPE. */
6649 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (m
);
6650 TYPE_NEXT_VARIANT (m
) = t
;
6651 TYPE_MAIN_VARIANT (t
) = m
;
6656 /* Return true if the from tree in both tree maps are equal. */
6659 tree_map_base_eq (const void *va
, const void *vb
)
6661 const struct tree_map_base
*const a
= (const struct tree_map_base
*) va
,
6662 *const b
= (const struct tree_map_base
*) vb
;
6663 return (a
->from
== b
->from
);
6666 /* Hash a from tree in a tree_base_map. */
6669 tree_map_base_hash (const void *item
)
6671 return htab_hash_pointer (((const struct tree_map_base
*)item
)->from
);
6674 /* Return true if this tree map structure is marked for garbage collection
6675 purposes. We simply return true if the from tree is marked, so that this
6676 structure goes away when the from tree goes away. */
6679 tree_map_base_marked_p (const void *p
)
6681 return ggc_marked_p (((const struct tree_map_base
*) p
)->from
);
6684 /* Hash a from tree in a tree_map. */
6687 tree_map_hash (const void *item
)
6689 return (((const struct tree_map
*) item
)->hash
);
6692 /* Hash a from tree in a tree_decl_map. */
6695 tree_decl_map_hash (const void *item
)
6697 return DECL_UID (((const struct tree_decl_map
*) item
)->base
.from
);
6700 /* Return the initialization priority for DECL. */
6703 decl_init_priority_lookup (tree decl
)
6705 symtab_node
*snode
= symtab_node::get (decl
);
6708 return DEFAULT_INIT_PRIORITY
;
6710 snode
->get_init_priority ();
6713 /* Return the finalization priority for DECL. */
6716 decl_fini_priority_lookup (tree decl
)
6718 cgraph_node
*node
= cgraph_node::get (decl
);
6721 return DEFAULT_INIT_PRIORITY
;
6723 node
->get_fini_priority ();
6726 /* Set the initialization priority for DECL to PRIORITY. */
6729 decl_init_priority_insert (tree decl
, priority_type priority
)
6731 struct symtab_node
*snode
;
6733 if (priority
== DEFAULT_INIT_PRIORITY
)
6735 snode
= symtab_node::get (decl
);
6739 else if (TREE_CODE (decl
) == VAR_DECL
)
6740 snode
= varpool_node::get_create (decl
);
6742 snode
= cgraph_node::get_create (decl
);
6743 snode
->set_init_priority (priority
);
6746 /* Set the finalization priority for DECL to PRIORITY. */
6749 decl_fini_priority_insert (tree decl
, priority_type priority
)
6751 struct cgraph_node
*node
;
6753 if (priority
== DEFAULT_INIT_PRIORITY
)
6755 node
= cgraph_node::get (decl
);
6760 node
= cgraph_node::get_create (decl
);
6761 node
->set_fini_priority (priority
);
6764 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6767 print_debug_expr_statistics (void)
6769 fprintf (stderr
, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6770 (long) debug_expr_for_decl
->size (),
6771 (long) debug_expr_for_decl
->elements (),
6772 debug_expr_for_decl
->collisions ());
6775 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6778 print_value_expr_statistics (void)
6780 fprintf (stderr
, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6781 (long) value_expr_for_decl
->size (),
6782 (long) value_expr_for_decl
->elements (),
6783 value_expr_for_decl
->collisions ());
6786 /* Lookup a debug expression for FROM, and return it if we find one. */
6789 decl_debug_expr_lookup (tree from
)
6791 struct tree_decl_map
*h
, in
;
6792 in
.base
.from
= from
;
6794 h
= debug_expr_for_decl
->find_with_hash (&in
, DECL_UID (from
));
6800 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6803 decl_debug_expr_insert (tree from
, tree to
)
6805 struct tree_decl_map
*h
;
6807 h
= ggc_alloc
<tree_decl_map
> ();
6808 h
->base
.from
= from
;
6810 *debug_expr_for_decl
->find_slot_with_hash (h
, DECL_UID (from
), INSERT
) = h
;
6813 /* Lookup a value expression for FROM, and return it if we find one. */
6816 decl_value_expr_lookup (tree from
)
6818 struct tree_decl_map
*h
, in
;
6819 in
.base
.from
= from
;
6821 h
= value_expr_for_decl
->find_with_hash (&in
, DECL_UID (from
));
6827 /* Insert a mapping FROM->TO in the value expression hashtable. */
6830 decl_value_expr_insert (tree from
, tree to
)
6832 struct tree_decl_map
*h
;
6834 h
= ggc_alloc
<tree_decl_map
> ();
6835 h
->base
.from
= from
;
6837 *value_expr_for_decl
->find_slot_with_hash (h
, DECL_UID (from
), INSERT
) = h
;
6840 /* Lookup a vector of debug arguments for FROM, and return it if we
6844 decl_debug_args_lookup (tree from
)
6846 struct tree_vec_map
*h
, in
;
6848 if (!DECL_HAS_DEBUG_ARGS_P (from
))
6850 gcc_checking_assert (debug_args_for_decl
!= NULL
);
6851 in
.base
.from
= from
;
6852 h
= debug_args_for_decl
->find_with_hash (&in
, DECL_UID (from
));
6858 /* Insert a mapping FROM->empty vector of debug arguments in the value
6859 expression hashtable. */
6862 decl_debug_args_insert (tree from
)
6864 struct tree_vec_map
*h
;
6867 if (DECL_HAS_DEBUG_ARGS_P (from
))
6868 return decl_debug_args_lookup (from
);
6869 if (debug_args_for_decl
== NULL
)
6870 debug_args_for_decl
= hash_table
<tree_vec_map_cache_hasher
>::create_ggc (64);
6871 h
= ggc_alloc
<tree_vec_map
> ();
6872 h
->base
.from
= from
;
6874 loc
= debug_args_for_decl
->find_slot_with_hash (h
, DECL_UID (from
), INSERT
);
6876 DECL_HAS_DEBUG_ARGS_P (from
) = 1;
6880 /* Hashing of types so that we don't make duplicates.
6881 The entry point is `type_hash_canon'. */
6883 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
6884 with types in the TREE_VALUE slots), by adding the hash codes
6885 of the individual types. */
6888 type_hash_list (const_tree list
, inchash::hash
&hstate
)
6892 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
6893 if (TREE_VALUE (tail
) != error_mark_node
)
6894 hstate
.add_object (TYPE_HASH (TREE_VALUE (tail
)));
6897 /* These are the Hashtable callback functions. */
6899 /* Returns true iff the types are equivalent. */
6902 type_cache_hasher::equal (type_hash
*a
, type_hash
*b
)
6904 /* First test the things that are the same for all types. */
6905 if (a
->hash
!= b
->hash
6906 || TREE_CODE (a
->type
) != TREE_CODE (b
->type
)
6907 || TREE_TYPE (a
->type
) != TREE_TYPE (b
->type
)
6908 || !attribute_list_equal (TYPE_ATTRIBUTES (a
->type
),
6909 TYPE_ATTRIBUTES (b
->type
))
6910 || (TREE_CODE (a
->type
) != COMPLEX_TYPE
6911 && TYPE_NAME (a
->type
) != TYPE_NAME (b
->type
)))
6914 /* Be careful about comparing arrays before and after the element type
6915 has been completed; don't compare TYPE_ALIGN unless both types are
6917 if (COMPLETE_TYPE_P (a
->type
) && COMPLETE_TYPE_P (b
->type
)
6918 && (TYPE_ALIGN (a
->type
) != TYPE_ALIGN (b
->type
)
6919 || TYPE_MODE (a
->type
) != TYPE_MODE (b
->type
)))
6922 switch (TREE_CODE (a
->type
))
6927 case REFERENCE_TYPE
:
6932 return TYPE_VECTOR_SUBPARTS (a
->type
) == TYPE_VECTOR_SUBPARTS (b
->type
);
6935 if (TYPE_VALUES (a
->type
) != TYPE_VALUES (b
->type
)
6936 && !(TYPE_VALUES (a
->type
)
6937 && TREE_CODE (TYPE_VALUES (a
->type
)) == TREE_LIST
6938 && TYPE_VALUES (b
->type
)
6939 && TREE_CODE (TYPE_VALUES (b
->type
)) == TREE_LIST
6940 && type_list_equal (TYPE_VALUES (a
->type
),
6941 TYPE_VALUES (b
->type
))))
6944 /* ... fall through ... */
6949 if (TYPE_PRECISION (a
->type
) != TYPE_PRECISION (b
->type
))
6951 return ((TYPE_MAX_VALUE (a
->type
) == TYPE_MAX_VALUE (b
->type
)
6952 || tree_int_cst_equal (TYPE_MAX_VALUE (a
->type
),
6953 TYPE_MAX_VALUE (b
->type
)))
6954 && (TYPE_MIN_VALUE (a
->type
) == TYPE_MIN_VALUE (b
->type
)
6955 || tree_int_cst_equal (TYPE_MIN_VALUE (a
->type
),
6956 TYPE_MIN_VALUE (b
->type
))));
6958 case FIXED_POINT_TYPE
:
6959 return TYPE_SATURATING (a
->type
) == TYPE_SATURATING (b
->type
);
6962 return TYPE_OFFSET_BASETYPE (a
->type
) == TYPE_OFFSET_BASETYPE (b
->type
);
6965 if (TYPE_METHOD_BASETYPE (a
->type
) == TYPE_METHOD_BASETYPE (b
->type
)
6966 && (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6967 || (TYPE_ARG_TYPES (a
->type
)
6968 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6969 && TYPE_ARG_TYPES (b
->type
)
6970 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6971 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6972 TYPE_ARG_TYPES (b
->type
)))))
6976 return TYPE_DOMAIN (a
->type
) == TYPE_DOMAIN (b
->type
);
6980 case QUAL_UNION_TYPE
:
6981 return (TYPE_FIELDS (a
->type
) == TYPE_FIELDS (b
->type
)
6982 || (TYPE_FIELDS (a
->type
)
6983 && TREE_CODE (TYPE_FIELDS (a
->type
)) == TREE_LIST
6984 && TYPE_FIELDS (b
->type
)
6985 && TREE_CODE (TYPE_FIELDS (b
->type
)) == TREE_LIST
6986 && type_list_equal (TYPE_FIELDS (a
->type
),
6987 TYPE_FIELDS (b
->type
))));
6990 if (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6991 || (TYPE_ARG_TYPES (a
->type
)
6992 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6993 && TYPE_ARG_TYPES (b
->type
)
6994 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6995 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6996 TYPE_ARG_TYPES (b
->type
))))
7004 if (lang_hooks
.types
.type_hash_eq
!= NULL
)
7005 return lang_hooks
.types
.type_hash_eq (a
->type
, b
->type
);
7010 /* Given TYPE, and HASHCODE its hash code, return the canonical
7011 object for an identical type if one already exists.
7012 Otherwise, return TYPE, and record it as the canonical object.
7014 To use this function, first create a type of the sort you want.
7015 Then compute its hash code from the fields of the type that
7016 make it different from other similar types.
7017 Then call this function and use the value. */
7020 type_hash_canon (unsigned int hashcode
, tree type
)
7025 /* The hash table only contains main variants, so ensure that's what we're
7027 gcc_assert (TYPE_MAIN_VARIANT (type
) == type
);
7029 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
7030 must call that routine before comparing TYPE_ALIGNs. */
7036 loc
= type_hash_table
->find_slot_with_hash (&in
, hashcode
, INSERT
);
7039 tree t1
= ((type_hash
*) *loc
)->type
;
7040 gcc_assert (TYPE_MAIN_VARIANT (t1
) == t1
);
7041 if (GATHER_STATISTICS
)
7043 tree_code_counts
[(int) TREE_CODE (type
)]--;
7044 tree_node_counts
[(int) t_kind
]--;
7045 tree_node_sizes
[(int) t_kind
] -= sizeof (struct tree_type_non_common
);
7051 struct type_hash
*h
;
7053 h
= ggc_alloc
<type_hash
> ();
7063 print_type_hash_statistics (void)
7065 fprintf (stderr
, "Type hash: size %ld, %ld elements, %f collisions\n",
7066 (long) type_hash_table
->size (),
7067 (long) type_hash_table
->elements (),
7068 type_hash_table
->collisions ());
7071 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
7072 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
7073 by adding the hash codes of the individual attributes. */
7076 attribute_hash_list (const_tree list
, inchash::hash
&hstate
)
7080 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
7081 /* ??? Do we want to add in TREE_VALUE too? */
7082 hstate
.add_object (IDENTIFIER_HASH_VALUE (get_attribute_name (tail
)));
7085 /* Given two lists of attributes, return true if list l2 is
7086 equivalent to l1. */
7089 attribute_list_equal (const_tree l1
, const_tree l2
)
7094 return attribute_list_contained (l1
, l2
)
7095 && attribute_list_contained (l2
, l1
);
7098 /* Given two lists of attributes, return true if list L2 is
7099 completely contained within L1. */
7100 /* ??? This would be faster if attribute names were stored in a canonicalized
7101 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
7102 must be used to show these elements are equivalent (which they are). */
7103 /* ??? It's not clear that attributes with arguments will always be handled
7107 attribute_list_contained (const_tree l1
, const_tree l2
)
7111 /* First check the obvious, maybe the lists are identical. */
7115 /* Maybe the lists are similar. */
7116 for (t1
= l1
, t2
= l2
;
7118 && get_attribute_name (t1
) == get_attribute_name (t2
)
7119 && TREE_VALUE (t1
) == TREE_VALUE (t2
);
7120 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
7123 /* Maybe the lists are equal. */
7124 if (t1
== 0 && t2
== 0)
7127 for (; t2
!= 0; t2
= TREE_CHAIN (t2
))
7130 /* This CONST_CAST is okay because lookup_attribute does not
7131 modify its argument and the return value is assigned to a
7133 for (attr
= lookup_ident_attribute (get_attribute_name (t2
),
7134 CONST_CAST_TREE (l1
));
7135 attr
!= NULL_TREE
&& !attribute_value_equal (t2
, attr
);
7136 attr
= lookup_ident_attribute (get_attribute_name (t2
),
7140 if (attr
== NULL_TREE
)
7147 /* Given two lists of types
7148 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
7149 return 1 if the lists contain the same types in the same order.
7150 Also, the TREE_PURPOSEs must match. */
7153 type_list_equal (const_tree l1
, const_tree l2
)
7157 for (t1
= l1
, t2
= l2
; t1
&& t2
; t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
7158 if (TREE_VALUE (t1
) != TREE_VALUE (t2
)
7159 || (TREE_PURPOSE (t1
) != TREE_PURPOSE (t2
)
7160 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1
), TREE_PURPOSE (t2
))
7161 && (TREE_TYPE (TREE_PURPOSE (t1
))
7162 == TREE_TYPE (TREE_PURPOSE (t2
))))))
7168 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
7169 given by TYPE. If the argument list accepts variable arguments,
7170 then this function counts only the ordinary arguments. */
7173 type_num_arguments (const_tree type
)
7178 for (t
= TYPE_ARG_TYPES (type
); t
; t
= TREE_CHAIN (t
))
7179 /* If the function does not take a variable number of arguments,
7180 the last element in the list will have type `void'. */
7181 if (VOID_TYPE_P (TREE_VALUE (t
)))
7189 /* Nonzero if integer constants T1 and T2
7190 represent the same constant value. */
7193 tree_int_cst_equal (const_tree t1
, const_tree t2
)
7198 if (t1
== 0 || t2
== 0)
7201 if (TREE_CODE (t1
) == INTEGER_CST
7202 && TREE_CODE (t2
) == INTEGER_CST
7203 && wi::to_widest (t1
) == wi::to_widest (t2
))
7209 /* Return true if T is an INTEGER_CST whose numerical value (extended
7210 according to TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. */
7213 tree_fits_shwi_p (const_tree t
)
7215 return (t
!= NULL_TREE
7216 && TREE_CODE (t
) == INTEGER_CST
7217 && wi::fits_shwi_p (wi::to_widest (t
)));
7220 /* Return true if T is an INTEGER_CST whose numerical value (extended
7221 according to TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. */
7224 tree_fits_uhwi_p (const_tree t
)
7226 return (t
!= NULL_TREE
7227 && TREE_CODE (t
) == INTEGER_CST
7228 && wi::fits_uhwi_p (wi::to_widest (t
)));
7231 /* T is an INTEGER_CST whose numerical value (extended according to
7232 TYPE_UNSIGNED) fits in a signed HOST_WIDE_INT. Return that
7236 tree_to_shwi (const_tree t
)
7238 gcc_assert (tree_fits_shwi_p (t
));
7239 return TREE_INT_CST_LOW (t
);
7242 /* T is an INTEGER_CST whose numerical value (extended according to
7243 TYPE_UNSIGNED) fits in an unsigned HOST_WIDE_INT. Return that
7246 unsigned HOST_WIDE_INT
7247 tree_to_uhwi (const_tree t
)
7249 gcc_assert (tree_fits_uhwi_p (t
));
7250 return TREE_INT_CST_LOW (t
);
7253 /* Return the most significant (sign) bit of T. */
7256 tree_int_cst_sign_bit (const_tree t
)
7258 unsigned bitno
= TYPE_PRECISION (TREE_TYPE (t
)) - 1;
7260 return wi::extract_uhwi (t
, bitno
, 1);
7263 /* Return an indication of the sign of the integer constant T.
7264 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
7265 Note that -1 will never be returned if T's type is unsigned. */
7268 tree_int_cst_sgn (const_tree t
)
7270 if (wi::eq_p (t
, 0))
7272 else if (TYPE_UNSIGNED (TREE_TYPE (t
)))
7274 else if (wi::neg_p (t
))
7280 /* Return the minimum number of bits needed to represent VALUE in a
7281 signed or unsigned type, UNSIGNEDP says which. */
7284 tree_int_cst_min_precision (tree value
, signop sgn
)
7286 /* If the value is negative, compute its negative minus 1. The latter
7287 adjustment is because the absolute value of the largest negative value
7288 is one larger than the largest positive value. This is equivalent to
7289 a bit-wise negation, so use that operation instead. */
7291 if (tree_int_cst_sgn (value
) < 0)
7292 value
= fold_build1 (BIT_NOT_EXPR
, TREE_TYPE (value
), value
);
7294 /* Return the number of bits needed, taking into account the fact
7295 that we need one more bit for a signed than unsigned type.
7296 If value is 0 or -1, the minimum precision is 1 no matter
7297 whether unsignedp is true or false. */
7299 if (integer_zerop (value
))
7302 return tree_floor_log2 (value
) + 1 + (sgn
== SIGNED
? 1 : 0) ;
7305 /* Return truthvalue of whether T1 is the same tree structure as T2.
7306 Return 1 if they are the same.
7307 Return 0 if they are understandably different.
7308 Return -1 if either contains tree structure not understood by
7312 simple_cst_equal (const_tree t1
, const_tree t2
)
7314 enum tree_code code1
, code2
;
7320 if (t1
== 0 || t2
== 0)
7323 code1
= TREE_CODE (t1
);
7324 code2
= TREE_CODE (t2
);
7326 if (CONVERT_EXPR_CODE_P (code1
) || code1
== NON_LVALUE_EXPR
)
7328 if (CONVERT_EXPR_CODE_P (code2
)
7329 || code2
== NON_LVALUE_EXPR
)
7330 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7332 return simple_cst_equal (TREE_OPERAND (t1
, 0), t2
);
7335 else if (CONVERT_EXPR_CODE_P (code2
)
7336 || code2
== NON_LVALUE_EXPR
)
7337 return simple_cst_equal (t1
, TREE_OPERAND (t2
, 0));
7345 return wi::to_widest (t1
) == wi::to_widest (t2
);
7348 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
7351 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
7354 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
7355 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
7356 TREE_STRING_LENGTH (t1
)));
7360 unsigned HOST_WIDE_INT idx
;
7361 vec
<constructor_elt
, va_gc
> *v1
= CONSTRUCTOR_ELTS (t1
);
7362 vec
<constructor_elt
, va_gc
> *v2
= CONSTRUCTOR_ELTS (t2
);
7364 if (vec_safe_length (v1
) != vec_safe_length (v2
))
7367 for (idx
= 0; idx
< vec_safe_length (v1
); ++idx
)
7368 /* ??? Should we handle also fields here? */
7369 if (!simple_cst_equal ((*v1
)[idx
].value
, (*v2
)[idx
].value
))
7375 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7378 cmp
= simple_cst_equal (CALL_EXPR_FN (t1
), CALL_EXPR_FN (t2
));
7381 if (call_expr_nargs (t1
) != call_expr_nargs (t2
))
7384 const_tree arg1
, arg2
;
7385 const_call_expr_arg_iterator iter1
, iter2
;
7386 for (arg1
= first_const_call_expr_arg (t1
, &iter1
),
7387 arg2
= first_const_call_expr_arg (t2
, &iter2
);
7389 arg1
= next_const_call_expr_arg (&iter1
),
7390 arg2
= next_const_call_expr_arg (&iter2
))
7392 cmp
= simple_cst_equal (arg1
, arg2
);
7396 return arg1
== arg2
;
7400 /* Special case: if either target is an unallocated VAR_DECL,
7401 it means that it's going to be unified with whatever the
7402 TARGET_EXPR is really supposed to initialize, so treat it
7403 as being equivalent to anything. */
7404 if ((TREE_CODE (TREE_OPERAND (t1
, 0)) == VAR_DECL
7405 && DECL_NAME (TREE_OPERAND (t1
, 0)) == NULL_TREE
7406 && !DECL_RTL_SET_P (TREE_OPERAND (t1
, 0)))
7407 || (TREE_CODE (TREE_OPERAND (t2
, 0)) == VAR_DECL
7408 && DECL_NAME (TREE_OPERAND (t2
, 0)) == NULL_TREE
7409 && !DECL_RTL_SET_P (TREE_OPERAND (t2
, 0))))
7412 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7417 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
7419 case WITH_CLEANUP_EXPR
:
7420 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7424 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t1
, 1));
7427 if (TREE_OPERAND (t1
, 1) == TREE_OPERAND (t2
, 1))
7428 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
7442 /* This general rule works for most tree codes. All exceptions should be
7443 handled above. If this is a language-specific tree code, we can't
7444 trust what might be in the operand, so say we don't know
7446 if ((int) code1
>= (int) LAST_AND_UNUSED_TREE_CODE
)
7449 switch (TREE_CODE_CLASS (code1
))
7453 case tcc_comparison
:
7454 case tcc_expression
:
7458 for (i
= 0; i
< TREE_CODE_LENGTH (code1
); i
++)
7460 cmp
= simple_cst_equal (TREE_OPERAND (t1
, i
), TREE_OPERAND (t2
, i
));
7472 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
7473 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
7474 than U, respectively. */
7477 compare_tree_int (const_tree t
, unsigned HOST_WIDE_INT u
)
7479 if (tree_int_cst_sgn (t
) < 0)
7481 else if (!tree_fits_uhwi_p (t
))
7483 else if (TREE_INT_CST_LOW (t
) == u
)
7485 else if (TREE_INT_CST_LOW (t
) < u
)
7491 /* Return true if SIZE represents a constant size that is in bounds of
7492 what the middle-end and the backend accepts (covering not more than
7493 half of the address-space). */
7496 valid_constant_size_p (const_tree size
)
7498 if (! tree_fits_uhwi_p (size
)
7499 || TREE_OVERFLOW (size
)
7500 || tree_int_cst_sign_bit (size
) != 0)
7505 /* Return the precision of the type, or for a complex or vector type the
7506 precision of the type of its elements. */
7509 element_precision (const_tree type
)
7511 enum tree_code code
= TREE_CODE (type
);
7512 if (code
== COMPLEX_TYPE
|| code
== VECTOR_TYPE
)
7513 type
= TREE_TYPE (type
);
7515 return TYPE_PRECISION (type
);
7518 /* Return true if CODE represents an associative tree code. Otherwise
7521 associative_tree_code (enum tree_code code
)
7540 /* Return true if CODE represents a commutative tree code. Otherwise
7543 commutative_tree_code (enum tree_code code
)
7549 case MULT_HIGHPART_EXPR
:
7557 case UNORDERED_EXPR
:
7561 case TRUTH_AND_EXPR
:
7562 case TRUTH_XOR_EXPR
:
7564 case WIDEN_MULT_EXPR
:
7565 case VEC_WIDEN_MULT_HI_EXPR
:
7566 case VEC_WIDEN_MULT_LO_EXPR
:
7567 case VEC_WIDEN_MULT_EVEN_EXPR
:
7568 case VEC_WIDEN_MULT_ODD_EXPR
:
7577 /* Return true if CODE represents a ternary tree code for which the
7578 first two operands are commutative. Otherwise return false. */
7580 commutative_ternary_tree_code (enum tree_code code
)
7584 case WIDEN_MULT_PLUS_EXPR
:
7585 case WIDEN_MULT_MINUS_EXPR
:
7599 /* Generate a hash value for an expression. This can be used iteratively
7600 by passing a previous result as the HSTATE argument.
7602 This function is intended to produce the same hash for expressions which
7603 would compare equal using operand_equal_p. */
7605 add_expr (const_tree t
, inchash::hash
&hstate
)
7608 enum tree_code code
;
7609 enum tree_code_class tclass
;
7613 hstate
.merge_hash (0);
7617 code
= TREE_CODE (t
);
7621 /* Alas, constants aren't shared, so we can't rely on pointer
7624 hstate
.merge_hash (0);
7627 for (i
= 0; i
< TREE_INT_CST_NUNITS (t
); i
++)
7628 hstate
.add_wide_int (TREE_INT_CST_ELT (t
, i
));
7632 unsigned int val2
= real_hash (TREE_REAL_CST_PTR (t
));
7633 hstate
.merge_hash (val2
);
7638 unsigned int val2
= fixed_hash (TREE_FIXED_CST_PTR (t
));
7639 hstate
.merge_hash (val2
);
7643 hstate
.add ((const void *) TREE_STRING_POINTER (t
), TREE_STRING_LENGTH (t
));
7646 inchash::add_expr (TREE_REALPART (t
), hstate
);
7647 inchash::add_expr (TREE_IMAGPART (t
), hstate
);
7652 for (i
= 0; i
< VECTOR_CST_NELTS (t
); ++i
)
7653 inchash::add_expr (VECTOR_CST_ELT (t
, i
), hstate
);
7657 /* We can just compare by pointer. */
7658 hstate
.add_wide_int (SSA_NAME_VERSION (t
));
7660 case PLACEHOLDER_EXPR
:
7661 /* The node itself doesn't matter. */
7664 /* A list of expressions, for a CALL_EXPR or as the elements of a
7666 for (; t
; t
= TREE_CHAIN (t
))
7667 inchash::add_expr (TREE_VALUE (t
), hstate
);
7671 unsigned HOST_WIDE_INT idx
;
7673 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t
), idx
, field
, value
)
7675 inchash::add_expr (field
, hstate
);
7676 inchash::add_expr (value
, hstate
);
7681 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7682 Otherwise nodes that compare equal according to operand_equal_p might
7683 get different hash codes. However, don't do this for machine specific
7684 or front end builtins, since the function code is overloaded in those
7686 if (DECL_BUILT_IN_CLASS (t
) == BUILT_IN_NORMAL
7687 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t
)))
7689 t
= builtin_decl_explicit (DECL_FUNCTION_CODE (t
));
7690 code
= TREE_CODE (t
);
7694 tclass
= TREE_CODE_CLASS (code
);
7696 if (tclass
== tcc_declaration
)
7698 /* DECL's have a unique ID */
7699 hstate
.add_wide_int (DECL_UID (t
));
7703 gcc_assert (IS_EXPR_CODE_CLASS (tclass
));
7705 hstate
.add_object (code
);
7707 /* Don't hash the type, that can lead to having nodes which
7708 compare equal according to operand_equal_p, but which
7709 have different hash codes. */
7710 if (CONVERT_EXPR_CODE_P (code
)
7711 || code
== NON_LVALUE_EXPR
)
7713 /* Make sure to include signness in the hash computation. */
7714 hstate
.add_int (TYPE_UNSIGNED (TREE_TYPE (t
)));
7715 inchash::add_expr (TREE_OPERAND (t
, 0), hstate
);
7718 else if (commutative_tree_code (code
))
7720 /* It's a commutative expression. We want to hash it the same
7721 however it appears. We do this by first hashing both operands
7722 and then rehashing based on the order of their independent
7724 inchash::hash one
, two
;
7725 inchash::add_expr (TREE_OPERAND (t
, 0), one
);
7726 inchash::add_expr (TREE_OPERAND (t
, 1), two
);
7727 hstate
.add_commutative (one
, two
);
7730 for (i
= TREE_OPERAND_LENGTH (t
) - 1; i
>= 0; --i
)
7731 inchash::add_expr (TREE_OPERAND (t
, i
), hstate
);
7739 /* Constructors for pointer, array and function types.
7740 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7741 constructed by language-dependent code, not here.) */
7743 /* Construct, lay out and return the type of pointers to TO_TYPE with
7744 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7745 reference all of memory. If such a type has already been
7746 constructed, reuse it. */
7749 build_pointer_type_for_mode (tree to_type
, machine_mode mode
,
7753 bool could_alias
= can_alias_all
;
7755 if (to_type
== error_mark_node
)
7756 return error_mark_node
;
7758 /* If the pointed-to type has the may_alias attribute set, force
7759 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7760 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7761 can_alias_all
= true;
7763 /* In some cases, languages will have things that aren't a POINTER_TYPE
7764 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7765 In that case, return that type without regard to the rest of our
7768 ??? This is a kludge, but consistent with the way this function has
7769 always operated and there doesn't seem to be a good way to avoid this
7771 if (TYPE_POINTER_TO (to_type
) != 0
7772 && TREE_CODE (TYPE_POINTER_TO (to_type
)) != POINTER_TYPE
)
7773 return TYPE_POINTER_TO (to_type
);
7775 /* First, if we already have a type for pointers to TO_TYPE and it's
7776 the proper mode, use it. */
7777 for (t
= TYPE_POINTER_TO (to_type
); t
; t
= TYPE_NEXT_PTR_TO (t
))
7778 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7781 t
= make_node (POINTER_TYPE
);
7783 TREE_TYPE (t
) = to_type
;
7784 SET_TYPE_MODE (t
, mode
);
7785 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7786 TYPE_NEXT_PTR_TO (t
) = TYPE_POINTER_TO (to_type
);
7787 TYPE_POINTER_TO (to_type
) = t
;
7789 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
7790 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7791 else if (TYPE_CANONICAL (to_type
) != to_type
|| could_alias
)
7793 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type
),
7796 /* Lay out the type. This function has many callers that are concerned
7797 with expression-construction, and this simplifies them all. */
7803 /* By default build pointers in ptr_mode. */
7806 build_pointer_type (tree to_type
)
7808 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7809 : TYPE_ADDR_SPACE (to_type
);
7810 machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7811 return build_pointer_type_for_mode (to_type
, pointer_mode
, false);
7814 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7817 build_reference_type_for_mode (tree to_type
, machine_mode mode
,
7821 bool could_alias
= can_alias_all
;
7823 if (to_type
== error_mark_node
)
7824 return error_mark_node
;
7826 /* If the pointed-to type has the may_alias attribute set, force
7827 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7828 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7829 can_alias_all
= true;
7831 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7832 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7833 In that case, return that type without regard to the rest of our
7836 ??? This is a kludge, but consistent with the way this function has
7837 always operated and there doesn't seem to be a good way to avoid this
7839 if (TYPE_REFERENCE_TO (to_type
) != 0
7840 && TREE_CODE (TYPE_REFERENCE_TO (to_type
)) != REFERENCE_TYPE
)
7841 return TYPE_REFERENCE_TO (to_type
);
7843 /* First, if we already have a type for pointers to TO_TYPE and it's
7844 the proper mode, use it. */
7845 for (t
= TYPE_REFERENCE_TO (to_type
); t
; t
= TYPE_NEXT_REF_TO (t
))
7846 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7849 t
= make_node (REFERENCE_TYPE
);
7851 TREE_TYPE (t
) = to_type
;
7852 SET_TYPE_MODE (t
, mode
);
7853 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7854 TYPE_NEXT_REF_TO (t
) = TYPE_REFERENCE_TO (to_type
);
7855 TYPE_REFERENCE_TO (to_type
) = t
;
7857 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
7858 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7859 else if (TYPE_CANONICAL (to_type
) != to_type
|| could_alias
)
7861 = build_reference_type_for_mode (TYPE_CANONICAL (to_type
),
7870 /* Build the node for the type of references-to-TO_TYPE by default
7874 build_reference_type (tree to_type
)
7876 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7877 : TYPE_ADDR_SPACE (to_type
);
7878 machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7879 return build_reference_type_for_mode (to_type
, pointer_mode
, false);
7882 #define MAX_INT_CACHED_PREC \
7883 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7884 static GTY(()) tree nonstandard_integer_type_cache
[2 * MAX_INT_CACHED_PREC
+ 2];
7886 /* Builds a signed or unsigned integer type of precision PRECISION.
7887 Used for C bitfields whose precision does not match that of
7888 built-in target types. */
7890 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision
,
7896 unsignedp
= MAX_INT_CACHED_PREC
+ 1;
7898 if (precision
<= MAX_INT_CACHED_PREC
)
7900 itype
= nonstandard_integer_type_cache
[precision
+ unsignedp
];
7905 itype
= make_node (INTEGER_TYPE
);
7906 TYPE_PRECISION (itype
) = precision
;
7909 fixup_unsigned_type (itype
);
7911 fixup_signed_type (itype
);
7914 if (tree_fits_uhwi_p (TYPE_MAX_VALUE (itype
)))
7915 ret
= type_hash_canon (tree_to_uhwi (TYPE_MAX_VALUE (itype
)), itype
);
7916 if (precision
<= MAX_INT_CACHED_PREC
)
7917 nonstandard_integer_type_cache
[precision
+ unsignedp
] = ret
;
7922 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7923 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7924 is true, reuse such a type that has already been constructed. */
7927 build_range_type_1 (tree type
, tree lowval
, tree highval
, bool shared
)
7929 tree itype
= make_node (INTEGER_TYPE
);
7930 inchash::hash hstate
;
7932 TREE_TYPE (itype
) = type
;
7934 TYPE_MIN_VALUE (itype
) = fold_convert (type
, lowval
);
7935 TYPE_MAX_VALUE (itype
) = highval
? fold_convert (type
, highval
) : NULL
;
7937 TYPE_PRECISION (itype
) = TYPE_PRECISION (type
);
7938 SET_TYPE_MODE (itype
, TYPE_MODE (type
));
7939 TYPE_SIZE (itype
) = TYPE_SIZE (type
);
7940 TYPE_SIZE_UNIT (itype
) = TYPE_SIZE_UNIT (type
);
7941 TYPE_ALIGN (itype
) = TYPE_ALIGN (type
);
7942 TYPE_USER_ALIGN (itype
) = TYPE_USER_ALIGN (type
);
7947 if ((TYPE_MIN_VALUE (itype
)
7948 && TREE_CODE (TYPE_MIN_VALUE (itype
)) != INTEGER_CST
)
7949 || (TYPE_MAX_VALUE (itype
)
7950 && TREE_CODE (TYPE_MAX_VALUE (itype
)) != INTEGER_CST
))
7952 /* Since we cannot reliably merge this type, we need to compare it using
7953 structural equality checks. */
7954 SET_TYPE_STRUCTURAL_EQUALITY (itype
);
7958 inchash::add_expr (TYPE_MIN_VALUE (itype
), hstate
);
7959 inchash::add_expr (TYPE_MAX_VALUE (itype
), hstate
);
7960 hstate
.merge_hash (TYPE_HASH (type
));
7961 itype
= type_hash_canon (hstate
.end (), itype
);
7966 /* Wrapper around build_range_type_1 with SHARED set to true. */
7969 build_range_type (tree type
, tree lowval
, tree highval
)
7971 return build_range_type_1 (type
, lowval
, highval
, true);
7974 /* Wrapper around build_range_type_1 with SHARED set to false. */
7977 build_nonshared_range_type (tree type
, tree lowval
, tree highval
)
7979 return build_range_type_1 (type
, lowval
, highval
, false);
7982 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7983 MAXVAL should be the maximum value in the domain
7984 (one less than the length of the array).
7986 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7987 We don't enforce this limit, that is up to caller (e.g. language front end).
7988 The limit exists because the result is a signed type and we don't handle
7989 sizes that use more than one HOST_WIDE_INT. */
7992 build_index_type (tree maxval
)
7994 return build_range_type (sizetype
, size_zero_node
, maxval
);
7997 /* Return true if the debug information for TYPE, a subtype, should be emitted
7998 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7999 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
8000 debug info and doesn't reflect the source code. */
8003 subrange_type_for_debug_p (const_tree type
, tree
*lowval
, tree
*highval
)
8005 tree base_type
= TREE_TYPE (type
), low
, high
;
8007 /* Subrange types have a base type which is an integral type. */
8008 if (!INTEGRAL_TYPE_P (base_type
))
8011 /* Get the real bounds of the subtype. */
8012 if (lang_hooks
.types
.get_subrange_bounds
)
8013 lang_hooks
.types
.get_subrange_bounds (type
, &low
, &high
);
8016 low
= TYPE_MIN_VALUE (type
);
8017 high
= TYPE_MAX_VALUE (type
);
8020 /* If the type and its base type have the same representation and the same
8021 name, then the type is not a subrange but a copy of the base type. */
8022 if ((TREE_CODE (base_type
) == INTEGER_TYPE
8023 || TREE_CODE (base_type
) == BOOLEAN_TYPE
)
8024 && int_size_in_bytes (type
) == int_size_in_bytes (base_type
)
8025 && tree_int_cst_equal (low
, TYPE_MIN_VALUE (base_type
))
8026 && tree_int_cst_equal (high
, TYPE_MAX_VALUE (base_type
))
8027 && TYPE_IDENTIFIER (type
) == TYPE_IDENTIFIER (base_type
))
8037 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
8038 and number of elements specified by the range of values of INDEX_TYPE.
8039 If SHARED is true, reuse such a type that has already been constructed. */
8042 build_array_type_1 (tree elt_type
, tree index_type
, bool shared
)
8046 if (TREE_CODE (elt_type
) == FUNCTION_TYPE
)
8048 error ("arrays of functions are not meaningful");
8049 elt_type
= integer_type_node
;
8052 t
= make_node (ARRAY_TYPE
);
8053 TREE_TYPE (t
) = elt_type
;
8054 TYPE_DOMAIN (t
) = index_type
;
8055 TYPE_ADDR_SPACE (t
) = TYPE_ADDR_SPACE (elt_type
);
8058 /* If the element type is incomplete at this point we get marked for
8059 structural equality. Do not record these types in the canonical
8061 if (TYPE_STRUCTURAL_EQUALITY_P (t
))
8066 inchash::hash hstate
;
8067 hstate
.add_object (TYPE_HASH (elt_type
));
8069 hstate
.add_object (TYPE_HASH (index_type
));
8070 t
= type_hash_canon (hstate
.end (), t
);
8073 if (TYPE_CANONICAL (t
) == t
)
8075 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type
)
8076 || (index_type
&& TYPE_STRUCTURAL_EQUALITY_P (index_type
)))
8077 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8078 else if (TYPE_CANONICAL (elt_type
) != elt_type
8079 || (index_type
&& TYPE_CANONICAL (index_type
) != index_type
))
8081 = build_array_type_1 (TYPE_CANONICAL (elt_type
),
8083 ? TYPE_CANONICAL (index_type
) : NULL_TREE
,
8090 /* Wrapper around build_array_type_1 with SHARED set to true. */
8093 build_array_type (tree elt_type
, tree index_type
)
8095 return build_array_type_1 (elt_type
, index_type
, true);
8098 /* Wrapper around build_array_type_1 with SHARED set to false. */
8101 build_nonshared_array_type (tree elt_type
, tree index_type
)
8103 return build_array_type_1 (elt_type
, index_type
, false);
8106 /* Return a representation of ELT_TYPE[NELTS], using indices of type
8110 build_array_type_nelts (tree elt_type
, unsigned HOST_WIDE_INT nelts
)
8112 return build_array_type (elt_type
, build_index_type (size_int (nelts
- 1)));
8115 /* Recursively examines the array elements of TYPE, until a non-array
8116 element type is found. */
8119 strip_array_types (tree type
)
8121 while (TREE_CODE (type
) == ARRAY_TYPE
)
8122 type
= TREE_TYPE (type
);
8127 /* Computes the canonical argument types from the argument type list
8130 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
8131 on entry to this function, or if any of the ARGTYPES are
8134 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
8135 true on entry to this function, or if any of the ARGTYPES are
8138 Returns a canonical argument list, which may be ARGTYPES when the
8139 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
8140 true) or would not differ from ARGTYPES. */
8143 maybe_canonicalize_argtypes (tree argtypes
,
8144 bool *any_structural_p
,
8145 bool *any_noncanonical_p
)
8148 bool any_noncanonical_argtypes_p
= false;
8150 for (arg
= argtypes
; arg
&& !(*any_structural_p
); arg
= TREE_CHAIN (arg
))
8152 if (!TREE_VALUE (arg
) || TREE_VALUE (arg
) == error_mark_node
)
8153 /* Fail gracefully by stating that the type is structural. */
8154 *any_structural_p
= true;
8155 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg
)))
8156 *any_structural_p
= true;
8157 else if (TYPE_CANONICAL (TREE_VALUE (arg
)) != TREE_VALUE (arg
)
8158 || TREE_PURPOSE (arg
))
8159 /* If the argument has a default argument, we consider it
8160 non-canonical even though the type itself is canonical.
8161 That way, different variants of function and method types
8162 with default arguments will all point to the variant with
8163 no defaults as their canonical type. */
8164 any_noncanonical_argtypes_p
= true;
8167 if (*any_structural_p
)
8170 if (any_noncanonical_argtypes_p
)
8172 /* Build the canonical list of argument types. */
8173 tree canon_argtypes
= NULL_TREE
;
8174 bool is_void
= false;
8176 for (arg
= argtypes
; arg
; arg
= TREE_CHAIN (arg
))
8178 if (arg
== void_list_node
)
8181 canon_argtypes
= tree_cons (NULL_TREE
,
8182 TYPE_CANONICAL (TREE_VALUE (arg
)),
8186 canon_argtypes
= nreverse (canon_argtypes
);
8188 canon_argtypes
= chainon (canon_argtypes
, void_list_node
);
8190 /* There is a non-canonical type. */
8191 *any_noncanonical_p
= true;
8192 return canon_argtypes
;
8195 /* The canonical argument types are the same as ARGTYPES. */
8199 /* Construct, lay out and return
8200 the type of functions returning type VALUE_TYPE
8201 given arguments of types ARG_TYPES.
8202 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
8203 are data type nodes for the arguments of the function.
8204 If such a type has already been constructed, reuse it. */
8207 build_function_type (tree value_type
, tree arg_types
)
8210 inchash::hash hstate
;
8211 bool any_structural_p
, any_noncanonical_p
;
8212 tree canon_argtypes
;
8214 if (TREE_CODE (value_type
) == FUNCTION_TYPE
)
8216 error ("function return type cannot be function");
8217 value_type
= integer_type_node
;
8220 /* Make a node of the sort we want. */
8221 t
= make_node (FUNCTION_TYPE
);
8222 TREE_TYPE (t
) = value_type
;
8223 TYPE_ARG_TYPES (t
) = arg_types
;
8225 /* If we already have such a type, use the old one. */
8226 hstate
.add_object (TYPE_HASH (value_type
));
8227 type_hash_list (arg_types
, hstate
);
8228 t
= type_hash_canon (hstate
.end (), t
);
8230 /* Set up the canonical type. */
8231 any_structural_p
= TYPE_STRUCTURAL_EQUALITY_P (value_type
);
8232 any_noncanonical_p
= TYPE_CANONICAL (value_type
) != value_type
;
8233 canon_argtypes
= maybe_canonicalize_argtypes (arg_types
,
8235 &any_noncanonical_p
);
8236 if (any_structural_p
)
8237 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8238 else if (any_noncanonical_p
)
8239 TYPE_CANONICAL (t
) = build_function_type (TYPE_CANONICAL (value_type
),
8242 if (!COMPLETE_TYPE_P (t
))
8247 /* Build a function type. The RETURN_TYPE is the type returned by the
8248 function. If VAARGS is set, no void_type_node is appended to the
8249 the list. ARGP must be always be terminated be a NULL_TREE. */
8252 build_function_type_list_1 (bool vaargs
, tree return_type
, va_list argp
)
8256 t
= va_arg (argp
, tree
);
8257 for (args
= NULL_TREE
; t
!= NULL_TREE
; t
= va_arg (argp
, tree
))
8258 args
= tree_cons (NULL_TREE
, t
, args
);
8263 if (args
!= NULL_TREE
)
8264 args
= nreverse (args
);
8265 gcc_assert (last
!= void_list_node
);
8267 else if (args
== NULL_TREE
)
8268 args
= void_list_node
;
8272 args
= nreverse (args
);
8273 TREE_CHAIN (last
) = void_list_node
;
8275 args
= build_function_type (return_type
, args
);
8280 /* Build a function type. The RETURN_TYPE is the type returned by the
8281 function. If additional arguments are provided, they are
8282 additional argument types. The list of argument types must always
8283 be terminated by NULL_TREE. */
8286 build_function_type_list (tree return_type
, ...)
8291 va_start (p
, return_type
);
8292 args
= build_function_type_list_1 (false, return_type
, p
);
8297 /* Build a variable argument function type. The RETURN_TYPE is the
8298 type returned by the function. If additional arguments are provided,
8299 they are additional argument types. The list of argument types must
8300 always be terminated by NULL_TREE. */
8303 build_varargs_function_type_list (tree return_type
, ...)
8308 va_start (p
, return_type
);
8309 args
= build_function_type_list_1 (true, return_type
, p
);
8315 /* Build a function type. RETURN_TYPE is the type returned by the
8316 function; VAARGS indicates whether the function takes varargs. The
8317 function takes N named arguments, the types of which are provided in
8321 build_function_type_array_1 (bool vaargs
, tree return_type
, int n
,
8325 tree t
= vaargs
? NULL_TREE
: void_list_node
;
8327 for (i
= n
- 1; i
>= 0; i
--)
8328 t
= tree_cons (NULL_TREE
, arg_types
[i
], t
);
8330 return build_function_type (return_type
, t
);
8333 /* Build a function type. RETURN_TYPE is the type returned by the
8334 function. The function takes N named arguments, the types of which
8335 are provided in ARG_TYPES. */
8338 build_function_type_array (tree return_type
, int n
, tree
*arg_types
)
8340 return build_function_type_array_1 (false, return_type
, n
, arg_types
);
8343 /* Build a variable argument function type. RETURN_TYPE is the type
8344 returned by the function. The function takes N named arguments, the
8345 types of which are provided in ARG_TYPES. */
8348 build_varargs_function_type_array (tree return_type
, int n
, tree
*arg_types
)
8350 return build_function_type_array_1 (true, return_type
, n
, arg_types
);
8353 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
8354 and ARGTYPES (a TREE_LIST) are the return type and arguments types
8355 for the method. An implicit additional parameter (of type
8356 pointer-to-BASETYPE) is added to the ARGTYPES. */
8359 build_method_type_directly (tree basetype
,
8365 inchash::hash hstate
;
8366 bool any_structural_p
, any_noncanonical_p
;
8367 tree canon_argtypes
;
8369 /* Make a node of the sort we want. */
8370 t
= make_node (METHOD_TYPE
);
8372 TYPE_METHOD_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
8373 TREE_TYPE (t
) = rettype
;
8374 ptype
= build_pointer_type (basetype
);
8376 /* The actual arglist for this function includes a "hidden" argument
8377 which is "this". Put it into the list of argument types. */
8378 argtypes
= tree_cons (NULL_TREE
, ptype
, argtypes
);
8379 TYPE_ARG_TYPES (t
) = argtypes
;
8381 /* If we already have such a type, use the old one. */
8382 hstate
.add_object (TYPE_HASH (basetype
));
8383 hstate
.add_object (TYPE_HASH (rettype
));
8384 type_hash_list (argtypes
, hstate
);
8385 t
= type_hash_canon (hstate
.end (), t
);
8387 /* Set up the canonical type. */
8389 = (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
8390 || TYPE_STRUCTURAL_EQUALITY_P (rettype
));
8392 = (TYPE_CANONICAL (basetype
) != basetype
8393 || TYPE_CANONICAL (rettype
) != rettype
);
8394 canon_argtypes
= maybe_canonicalize_argtypes (TREE_CHAIN (argtypes
),
8396 &any_noncanonical_p
);
8397 if (any_structural_p
)
8398 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8399 else if (any_noncanonical_p
)
8401 = build_method_type_directly (TYPE_CANONICAL (basetype
),
8402 TYPE_CANONICAL (rettype
),
8404 if (!COMPLETE_TYPE_P (t
))
8410 /* Construct, lay out and return the type of methods belonging to class
8411 BASETYPE and whose arguments and values are described by TYPE.
8412 If that type exists already, reuse it.
8413 TYPE must be a FUNCTION_TYPE node. */
8416 build_method_type (tree basetype
, tree type
)
8418 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
8420 return build_method_type_directly (basetype
,
8422 TYPE_ARG_TYPES (type
));
8425 /* Construct, lay out and return the type of offsets to a value
8426 of type TYPE, within an object of type BASETYPE.
8427 If a suitable offset type exists already, reuse it. */
8430 build_offset_type (tree basetype
, tree type
)
8433 inchash::hash hstate
;
8435 /* Make a node of the sort we want. */
8436 t
= make_node (OFFSET_TYPE
);
8438 TYPE_OFFSET_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
8439 TREE_TYPE (t
) = type
;
8441 /* If we already have such a type, use the old one. */
8442 hstate
.add_object (TYPE_HASH (basetype
));
8443 hstate
.add_object (TYPE_HASH (type
));
8444 t
= type_hash_canon (hstate
.end (), t
);
8446 if (!COMPLETE_TYPE_P (t
))
8449 if (TYPE_CANONICAL (t
) == t
)
8451 if (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
8452 || TYPE_STRUCTURAL_EQUALITY_P (type
))
8453 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8454 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)) != basetype
8455 || TYPE_CANONICAL (type
) != type
)
8457 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)),
8458 TYPE_CANONICAL (type
));
8464 /* Create a complex type whose components are COMPONENT_TYPE. */
8467 build_complex_type (tree component_type
)
8470 inchash::hash hstate
;
8472 gcc_assert (INTEGRAL_TYPE_P (component_type
)
8473 || SCALAR_FLOAT_TYPE_P (component_type
)
8474 || FIXED_POINT_TYPE_P (component_type
));
8476 /* Make a node of the sort we want. */
8477 t
= make_node (COMPLEX_TYPE
);
8479 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (component_type
);
8481 /* If we already have such a type, use the old one. */
8482 hstate
.add_object (TYPE_HASH (component_type
));
8483 t
= type_hash_canon (hstate
.end (), t
);
8485 if (!COMPLETE_TYPE_P (t
))
8488 if (TYPE_CANONICAL (t
) == t
)
8490 if (TYPE_STRUCTURAL_EQUALITY_P (component_type
))
8491 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8492 else if (TYPE_CANONICAL (component_type
) != component_type
)
8494 = build_complex_type (TYPE_CANONICAL (component_type
));
8497 /* We need to create a name, since complex is a fundamental type. */
8498 if (! TYPE_NAME (t
))
8501 if (component_type
== char_type_node
)
8502 name
= "complex char";
8503 else if (component_type
== signed_char_type_node
)
8504 name
= "complex signed char";
8505 else if (component_type
== unsigned_char_type_node
)
8506 name
= "complex unsigned char";
8507 else if (component_type
== short_integer_type_node
)
8508 name
= "complex short int";
8509 else if (component_type
== short_unsigned_type_node
)
8510 name
= "complex short unsigned int";
8511 else if (component_type
== integer_type_node
)
8512 name
= "complex int";
8513 else if (component_type
== unsigned_type_node
)
8514 name
= "complex unsigned int";
8515 else if (component_type
== long_integer_type_node
)
8516 name
= "complex long int";
8517 else if (component_type
== long_unsigned_type_node
)
8518 name
= "complex long unsigned int";
8519 else if (component_type
== long_long_integer_type_node
)
8520 name
= "complex long long int";
8521 else if (component_type
== long_long_unsigned_type_node
)
8522 name
= "complex long long unsigned int";
8527 TYPE_NAME (t
) = build_decl (UNKNOWN_LOCATION
, TYPE_DECL
,
8528 get_identifier (name
), t
);
8531 return build_qualified_type (t
, TYPE_QUALS (component_type
));
8534 /* If TYPE is a real or complex floating-point type and the target
8535 does not directly support arithmetic on TYPE then return the wider
8536 type to be used for arithmetic on TYPE. Otherwise, return
8540 excess_precision_type (tree type
)
8542 if (flag_excess_precision
!= EXCESS_PRECISION_FAST
)
8544 int flt_eval_method
= TARGET_FLT_EVAL_METHOD
;
8545 switch (TREE_CODE (type
))
8548 switch (flt_eval_method
)
8551 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
))
8552 return double_type_node
;
8555 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
)
8556 || TYPE_MODE (type
) == TYPE_MODE (double_type_node
))
8557 return long_double_type_node
;
8564 if (TREE_CODE (TREE_TYPE (type
)) != REAL_TYPE
)
8566 switch (flt_eval_method
)
8569 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
))
8570 return complex_double_type_node
;
8573 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
)
8574 || (TYPE_MODE (TREE_TYPE (type
))
8575 == TYPE_MODE (double_type_node
)))
8576 return complex_long_double_type_node
;
8589 /* Return OP, stripped of any conversions to wider types as much as is safe.
8590 Converting the value back to OP's type makes a value equivalent to OP.
8592 If FOR_TYPE is nonzero, we return a value which, if converted to
8593 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8595 OP must have integer, real or enumeral type. Pointers are not allowed!
8597 There are some cases where the obvious value we could return
8598 would regenerate to OP if converted to OP's type,
8599 but would not extend like OP to wider types.
8600 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8601 For example, if OP is (unsigned short)(signed char)-1,
8602 we avoid returning (signed char)-1 if FOR_TYPE is int,
8603 even though extending that to an unsigned short would regenerate OP,
8604 since the result of extending (signed char)-1 to (int)
8605 is different from (int) OP. */
8608 get_unwidened (tree op
, tree for_type
)
8610 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8611 tree type
= TREE_TYPE (op
);
8613 = TYPE_PRECISION (for_type
!= 0 ? for_type
: type
);
8615 = (for_type
!= 0 && for_type
!= type
8616 && final_prec
> TYPE_PRECISION (type
)
8617 && TYPE_UNSIGNED (type
));
8620 while (CONVERT_EXPR_P (op
))
8624 /* TYPE_PRECISION on vector types has different meaning
8625 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8626 so avoid them here. */
8627 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op
, 0))) == VECTOR_TYPE
)
8630 bitschange
= TYPE_PRECISION (TREE_TYPE (op
))
8631 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0)));
8633 /* Truncations are many-one so cannot be removed.
8634 Unless we are later going to truncate down even farther. */
8636 && final_prec
> TYPE_PRECISION (TREE_TYPE (op
)))
8639 /* See what's inside this conversion. If we decide to strip it,
8641 op
= TREE_OPERAND (op
, 0);
8643 /* If we have not stripped any zero-extensions (uns is 0),
8644 we can strip any kind of extension.
8645 If we have previously stripped a zero-extension,
8646 only zero-extensions can safely be stripped.
8647 Any extension can be stripped if the bits it would produce
8648 are all going to be discarded later by truncating to FOR_TYPE. */
8652 if (! uns
|| final_prec
<= TYPE_PRECISION (TREE_TYPE (op
)))
8654 /* TYPE_UNSIGNED says whether this is a zero-extension.
8655 Let's avoid computing it if it does not affect WIN
8656 and if UNS will not be needed again. */
8658 || CONVERT_EXPR_P (op
))
8659 && TYPE_UNSIGNED (TREE_TYPE (op
)))
8667 /* If we finally reach a constant see if it fits in for_type and
8668 in that case convert it. */
8670 && TREE_CODE (win
) == INTEGER_CST
8671 && TREE_TYPE (win
) != for_type
8672 && int_fits_type_p (win
, for_type
))
8673 win
= fold_convert (for_type
, win
);
8678 /* Return OP or a simpler expression for a narrower value
8679 which can be sign-extended or zero-extended to give back OP.
8680 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8681 or 0 if the value should be sign-extended. */
8684 get_narrower (tree op
, int *unsignedp_ptr
)
8689 bool integral_p
= INTEGRAL_TYPE_P (TREE_TYPE (op
));
8691 while (TREE_CODE (op
) == NOP_EXPR
)
8694 = (TYPE_PRECISION (TREE_TYPE (op
))
8695 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0))));
8697 /* Truncations are many-one so cannot be removed. */
8701 /* See what's inside this conversion. If we decide to strip it,
8706 op
= TREE_OPERAND (op
, 0);
8707 /* An extension: the outermost one can be stripped,
8708 but remember whether it is zero or sign extension. */
8710 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8711 /* Otherwise, if a sign extension has been stripped,
8712 only sign extensions can now be stripped;
8713 if a zero extension has been stripped, only zero-extensions. */
8714 else if (uns
!= TYPE_UNSIGNED (TREE_TYPE (op
)))
8718 else /* bitschange == 0 */
8720 /* A change in nominal type can always be stripped, but we must
8721 preserve the unsignedness. */
8723 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8725 op
= TREE_OPERAND (op
, 0);
8726 /* Keep trying to narrow, but don't assign op to win if it
8727 would turn an integral type into something else. */
8728 if (INTEGRAL_TYPE_P (TREE_TYPE (op
)) != integral_p
)
8735 if (TREE_CODE (op
) == COMPONENT_REF
8736 /* Since type_for_size always gives an integer type. */
8737 && TREE_CODE (TREE_TYPE (op
)) != REAL_TYPE
8738 && TREE_CODE (TREE_TYPE (op
)) != FIXED_POINT_TYPE
8739 /* Ensure field is laid out already. */
8740 && DECL_SIZE (TREE_OPERAND (op
, 1)) != 0
8741 && tree_fits_uhwi_p (DECL_SIZE (TREE_OPERAND (op
, 1))))
8743 unsigned HOST_WIDE_INT innerprec
8744 = tree_to_uhwi (DECL_SIZE (TREE_OPERAND (op
, 1)));
8745 int unsignedp
= (DECL_UNSIGNED (TREE_OPERAND (op
, 1))
8746 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op
, 1))));
8747 tree type
= lang_hooks
.types
.type_for_size (innerprec
, unsignedp
);
8749 /* We can get this structure field in a narrower type that fits it,
8750 but the resulting extension to its nominal type (a fullword type)
8751 must satisfy the same conditions as for other extensions.
8753 Do this only for fields that are aligned (not bit-fields),
8754 because when bit-field insns will be used there is no
8755 advantage in doing this. */
8757 if (innerprec
< TYPE_PRECISION (TREE_TYPE (op
))
8758 && ! DECL_BIT_FIELD (TREE_OPERAND (op
, 1))
8759 && (first
|| uns
== DECL_UNSIGNED (TREE_OPERAND (op
, 1)))
8763 uns
= DECL_UNSIGNED (TREE_OPERAND (op
, 1));
8764 win
= fold_convert (type
, op
);
8768 *unsignedp_ptr
= uns
;
8772 /* Returns true if integer constant C has a value that is permissible
8773 for type TYPE (an INTEGER_TYPE). */
8776 int_fits_type_p (const_tree c
, const_tree type
)
8778 tree type_low_bound
, type_high_bound
;
8779 bool ok_for_low_bound
, ok_for_high_bound
;
8780 signop sgn_c
= TYPE_SIGN (TREE_TYPE (c
));
8783 type_low_bound
= TYPE_MIN_VALUE (type
);
8784 type_high_bound
= TYPE_MAX_VALUE (type
);
8786 /* If at least one bound of the type is a constant integer, we can check
8787 ourselves and maybe make a decision. If no such decision is possible, but
8788 this type is a subtype, try checking against that. Otherwise, use
8789 fits_to_tree_p, which checks against the precision.
8791 Compute the status for each possibly constant bound, and return if we see
8792 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8793 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8794 for "constant known to fit". */
8796 /* Check if c >= type_low_bound. */
8797 if (type_low_bound
&& TREE_CODE (type_low_bound
) == INTEGER_CST
)
8799 if (tree_int_cst_lt (c
, type_low_bound
))
8801 ok_for_low_bound
= true;
8804 ok_for_low_bound
= false;
8806 /* Check if c <= type_high_bound. */
8807 if (type_high_bound
&& TREE_CODE (type_high_bound
) == INTEGER_CST
)
8809 if (tree_int_cst_lt (type_high_bound
, c
))
8811 ok_for_high_bound
= true;
8814 ok_for_high_bound
= false;
8816 /* If the constant fits both bounds, the result is known. */
8817 if (ok_for_low_bound
&& ok_for_high_bound
)
8820 /* Perform some generic filtering which may allow making a decision
8821 even if the bounds are not constant. First, negative integers
8822 never fit in unsigned types, */
8823 if (TYPE_UNSIGNED (type
) && sgn_c
== SIGNED
&& wi::neg_p (c
))
8826 /* Second, narrower types always fit in wider ones. */
8827 if (TYPE_PRECISION (type
) > TYPE_PRECISION (TREE_TYPE (c
)))
8830 /* Third, unsigned integers with top bit set never fit signed types. */
8831 if (!TYPE_UNSIGNED (type
) && sgn_c
== UNSIGNED
)
8833 int prec
= GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (c
))) - 1;
8834 if (prec
< TYPE_PRECISION (TREE_TYPE (c
)))
8836 /* When a tree_cst is converted to a wide-int, the precision
8837 is taken from the type. However, if the precision of the
8838 mode underneath the type is smaller than that, it is
8839 possible that the value will not fit. The test below
8840 fails if any bit is set between the sign bit of the
8841 underlying mode and the top bit of the type. */
8842 if (wi::ne_p (wi::zext (c
, prec
- 1), c
))
8845 else if (wi::neg_p (c
))
8849 /* If we haven't been able to decide at this point, there nothing more we
8850 can check ourselves here. Look at the base type if we have one and it
8851 has the same precision. */
8852 if (TREE_CODE (type
) == INTEGER_TYPE
8853 && TREE_TYPE (type
) != 0
8854 && TYPE_PRECISION (type
) == TYPE_PRECISION (TREE_TYPE (type
)))
8856 type
= TREE_TYPE (type
);
8860 /* Or to fits_to_tree_p, if nothing else. */
8861 return wi::fits_to_tree_p (c
, type
);
8864 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8865 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8866 represented (assuming two's-complement arithmetic) within the bit
8867 precision of the type are returned instead. */
8870 get_type_static_bounds (const_tree type
, mpz_t min
, mpz_t max
)
8872 if (!POINTER_TYPE_P (type
) && TYPE_MIN_VALUE (type
)
8873 && TREE_CODE (TYPE_MIN_VALUE (type
)) == INTEGER_CST
)
8874 wi::to_mpz (TYPE_MIN_VALUE (type
), min
, TYPE_SIGN (type
));
8877 if (TYPE_UNSIGNED (type
))
8878 mpz_set_ui (min
, 0);
8881 wide_int mn
= wi::min_value (TYPE_PRECISION (type
), SIGNED
);
8882 wi::to_mpz (mn
, min
, SIGNED
);
8886 if (!POINTER_TYPE_P (type
) && TYPE_MAX_VALUE (type
)
8887 && TREE_CODE (TYPE_MAX_VALUE (type
)) == INTEGER_CST
)
8888 wi::to_mpz (TYPE_MAX_VALUE (type
), max
, TYPE_SIGN (type
));
8891 wide_int mn
= wi::max_value (TYPE_PRECISION (type
), TYPE_SIGN (type
));
8892 wi::to_mpz (mn
, max
, TYPE_SIGN (type
));
8896 /* Return true if VAR is an automatic variable defined in function FN. */
8899 auto_var_in_fn_p (const_tree var
, const_tree fn
)
8901 return (DECL_P (var
) && DECL_CONTEXT (var
) == fn
8902 && ((((TREE_CODE (var
) == VAR_DECL
&& ! DECL_EXTERNAL (var
))
8903 || TREE_CODE (var
) == PARM_DECL
)
8904 && ! TREE_STATIC (var
))
8905 || TREE_CODE (var
) == LABEL_DECL
8906 || TREE_CODE (var
) == RESULT_DECL
));
8909 /* Subprogram of following function. Called by walk_tree.
8911 Return *TP if it is an automatic variable or parameter of the
8912 function passed in as DATA. */
8915 find_var_from_fn (tree
*tp
, int *walk_subtrees
, void *data
)
8917 tree fn
= (tree
) data
;
8922 else if (DECL_P (*tp
)
8923 && auto_var_in_fn_p (*tp
, fn
))
8929 /* Returns true if T is, contains, or refers to a type with variable
8930 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8931 arguments, but not the return type. If FN is nonzero, only return
8932 true if a modifier of the type or position of FN is a variable or
8933 parameter inside FN.
8935 This concept is more general than that of C99 'variably modified types':
8936 in C99, a struct type is never variably modified because a VLA may not
8937 appear as a structure member. However, in GNU C code like:
8939 struct S { int i[f()]; };
8941 is valid, and other languages may define similar constructs. */
8944 variably_modified_type_p (tree type
, tree fn
)
8948 /* Test if T is either variable (if FN is zero) or an expression containing
8949 a variable in FN. If TYPE isn't gimplified, return true also if
8950 gimplify_one_sizepos would gimplify the expression into a local
8952 #define RETURN_TRUE_IF_VAR(T) \
8953 do { tree _t = (T); \
8954 if (_t != NULL_TREE \
8955 && _t != error_mark_node \
8956 && TREE_CODE (_t) != INTEGER_CST \
8957 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8959 || (!TYPE_SIZES_GIMPLIFIED (type) \
8960 && !is_gimple_sizepos (_t)) \
8961 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8962 return true; } while (0)
8964 if (type
== error_mark_node
)
8967 /* If TYPE itself has variable size, it is variably modified. */
8968 RETURN_TRUE_IF_VAR (TYPE_SIZE (type
));
8969 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type
));
8971 switch (TREE_CODE (type
))
8974 case REFERENCE_TYPE
:
8976 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8982 /* If TYPE is a function type, it is variably modified if the
8983 return type is variably modified. */
8984 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8990 case FIXED_POINT_TYPE
:
8993 /* Scalar types are variably modified if their end points
8995 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type
));
8996 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type
));
9001 case QUAL_UNION_TYPE
:
9002 /* We can't see if any of the fields are variably-modified by the
9003 definition we normally use, since that would produce infinite
9004 recursion via pointers. */
9005 /* This is variably modified if some field's type is. */
9006 for (t
= TYPE_FIELDS (type
); t
; t
= DECL_CHAIN (t
))
9007 if (TREE_CODE (t
) == FIELD_DECL
)
9009 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t
));
9010 RETURN_TRUE_IF_VAR (DECL_SIZE (t
));
9011 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t
));
9013 if (TREE_CODE (type
) == QUAL_UNION_TYPE
)
9014 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t
));
9019 /* Do not call ourselves to avoid infinite recursion. This is
9020 variably modified if the element type is. */
9021 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type
)));
9022 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type
)));
9029 /* The current language may have other cases to check, but in general,
9030 all other types are not variably modified. */
9031 return lang_hooks
.tree_inlining
.var_mod_type_p (type
, fn
);
9033 #undef RETURN_TRUE_IF_VAR
9036 /* Given a DECL or TYPE, return the scope in which it was declared, or
9037 NULL_TREE if there is no containing scope. */
9040 get_containing_scope (const_tree t
)
9042 return (TYPE_P (t
) ? TYPE_CONTEXT (t
) : DECL_CONTEXT (t
));
9045 /* Return the innermost context enclosing DECL that is
9046 a FUNCTION_DECL, or zero if none. */
9049 decl_function_context (const_tree decl
)
9053 if (TREE_CODE (decl
) == ERROR_MARK
)
9056 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
9057 where we look up the function at runtime. Such functions always take
9058 a first argument of type 'pointer to real context'.
9060 C++ should really be fixed to use DECL_CONTEXT for the real context,
9061 and use something else for the "virtual context". */
9062 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_VINDEX (decl
))
9065 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
9067 context
= DECL_CONTEXT (decl
);
9069 while (context
&& TREE_CODE (context
) != FUNCTION_DECL
)
9071 if (TREE_CODE (context
) == BLOCK
)
9072 context
= BLOCK_SUPERCONTEXT (context
);
9074 context
= get_containing_scope (context
);
9080 /* Return the innermost context enclosing DECL that is
9081 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
9082 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
9085 decl_type_context (const_tree decl
)
9087 tree context
= DECL_CONTEXT (decl
);
9090 switch (TREE_CODE (context
))
9092 case NAMESPACE_DECL
:
9093 case TRANSLATION_UNIT_DECL
:
9098 case QUAL_UNION_TYPE
:
9103 context
= DECL_CONTEXT (context
);
9107 context
= BLOCK_SUPERCONTEXT (context
);
9117 /* CALL is a CALL_EXPR. Return the declaration for the function
9118 called, or NULL_TREE if the called function cannot be
9122 get_callee_fndecl (const_tree call
)
9126 if (call
== error_mark_node
)
9127 return error_mark_node
;
9129 /* It's invalid to call this function with anything but a
9131 gcc_assert (TREE_CODE (call
) == CALL_EXPR
);
9133 /* The first operand to the CALL is the address of the function
9135 addr
= CALL_EXPR_FN (call
);
9137 /* If there is no function, return early. */
9138 if (addr
== NULL_TREE
)
9143 /* If this is a readonly function pointer, extract its initial value. */
9144 if (DECL_P (addr
) && TREE_CODE (addr
) != FUNCTION_DECL
9145 && TREE_READONLY (addr
) && ! TREE_THIS_VOLATILE (addr
)
9146 && DECL_INITIAL (addr
))
9147 addr
= DECL_INITIAL (addr
);
9149 /* If the address is just `&f' for some function `f', then we know
9150 that `f' is being called. */
9151 if (TREE_CODE (addr
) == ADDR_EXPR
9152 && TREE_CODE (TREE_OPERAND (addr
, 0)) == FUNCTION_DECL
)
9153 return TREE_OPERAND (addr
, 0);
9155 /* We couldn't figure out what was being called. */
9159 #define TREE_MEM_USAGE_SPACES 40
9161 /* Print debugging information about tree nodes generated during the compile,
9162 and any language-specific information. */
9165 dump_tree_statistics (void)
9167 if (GATHER_STATISTICS
)
9170 int total_nodes
, total_bytes
;
9171 fprintf (stderr
, "\nKind Nodes Bytes\n");
9172 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES
);
9173 total_nodes
= total_bytes
= 0;
9174 for (i
= 0; i
< (int) all_kinds
; i
++)
9176 fprintf (stderr
, "%-20s %7d %10d\n", tree_node_kind_names
[i
],
9177 tree_node_counts
[i
], tree_node_sizes
[i
]);
9178 total_nodes
+= tree_node_counts
[i
];
9179 total_bytes
+= tree_node_sizes
[i
];
9181 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES
);
9182 fprintf (stderr
, "%-20s %7d %10d\n", "Total", total_nodes
, total_bytes
);
9183 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES
);
9184 fprintf (stderr
, "Code Nodes\n");
9185 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES
);
9186 for (i
= 0; i
< (int) MAX_TREE_CODES
; i
++)
9187 fprintf (stderr
, "%-32s %7d\n", get_tree_code_name ((enum tree_code
) i
),
9188 tree_code_counts
[i
]);
9189 mem_usage::print_dash_line (TREE_MEM_USAGE_SPACES
);
9190 fprintf (stderr
, "\n");
9191 ssanames_print_statistics ();
9192 fprintf (stderr
, "\n");
9193 phinodes_print_statistics ();
9194 fprintf (stderr
, "\n");
9197 fprintf (stderr
, "(No per-node statistics)\n");
9199 print_type_hash_statistics ();
9200 print_debug_expr_statistics ();
9201 print_value_expr_statistics ();
9202 lang_hooks
.print_statistics ();
9205 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
9207 /* Generate a crc32 of a byte. */
9210 crc32_unsigned_bits (unsigned chksum
, unsigned value
, unsigned bits
)
9214 for (ix
= bits
; ix
--; value
<<= 1)
9218 feedback
= (value
^ chksum
) & 0x80000000 ? 0x04c11db7 : 0;
9225 /* Generate a crc32 of a 32-bit unsigned. */
9228 crc32_unsigned (unsigned chksum
, unsigned value
)
9230 return crc32_unsigned_bits (chksum
, value
, 32);
9233 /* Generate a crc32 of a byte. */
9236 crc32_byte (unsigned chksum
, char byte
)
9238 return crc32_unsigned_bits (chksum
, (unsigned) byte
<< 24, 8);
9241 /* Generate a crc32 of a string. */
9244 crc32_string (unsigned chksum
, const char *string
)
9248 chksum
= crc32_byte (chksum
, *string
);
9254 /* P is a string that will be used in a symbol. Mask out any characters
9255 that are not valid in that context. */
9258 clean_symbol_name (char *p
)
9262 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
9265 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
9272 /* For anonymous aggregate types, we need some sort of name to
9273 hold on to. In practice, this should not appear, but it should
9274 not be harmful if it does. */
9276 anon_aggrname_p(const_tree id_node
)
9278 #ifndef NO_DOT_IN_LABEL
9279 return (IDENTIFIER_POINTER (id_node
)[0] == '.'
9280 && IDENTIFIER_POINTER (id_node
)[1] == '_');
9281 #else /* NO_DOT_IN_LABEL */
9282 #ifndef NO_DOLLAR_IN_LABEL
9283 return (IDENTIFIER_POINTER (id_node
)[0] == '$' \
9284 && IDENTIFIER_POINTER (id_node
)[1] == '_');
9285 #else /* NO_DOLLAR_IN_LABEL */
9286 #define ANON_AGGRNAME_PREFIX "__anon_"
9287 return (!strncmp (IDENTIFIER_POINTER (id_node
), ANON_AGGRNAME_PREFIX
,
9288 sizeof (ANON_AGGRNAME_PREFIX
) - 1));
9289 #endif /* NO_DOLLAR_IN_LABEL */
9290 #endif /* NO_DOT_IN_LABEL */
9293 /* Return a format for an anonymous aggregate name. */
9295 anon_aggrname_format()
9297 #ifndef NO_DOT_IN_LABEL
9299 #else /* NO_DOT_IN_LABEL */
9300 #ifndef NO_DOLLAR_IN_LABEL
9302 #else /* NO_DOLLAR_IN_LABEL */
9304 #endif /* NO_DOLLAR_IN_LABEL */
9305 #endif /* NO_DOT_IN_LABEL */
9308 /* Generate a name for a special-purpose function.
9309 The generated name may need to be unique across the whole link.
9310 Changes to this function may also require corresponding changes to
9311 xstrdup_mask_random.
9312 TYPE is some string to identify the purpose of this function to the
9313 linker or collect2; it must start with an uppercase letter,
9315 I - for constructors
9317 N - for C++ anonymous namespaces
9318 F - for DWARF unwind frame information. */
9321 get_file_function_name (const char *type
)
9327 /* If we already have a name we know to be unique, just use that. */
9328 if (first_global_object_name
)
9329 p
= q
= ASTRDUP (first_global_object_name
);
9330 /* If the target is handling the constructors/destructors, they
9331 will be local to this file and the name is only necessary for
9333 We also assign sub_I and sub_D sufixes to constructors called from
9334 the global static constructors. These are always local. */
9335 else if (((type
[0] == 'I' || type
[0] == 'D') && targetm
.have_ctors_dtors
)
9336 || (strncmp (type
, "sub_", 4) == 0
9337 && (type
[4] == 'I' || type
[4] == 'D')))
9339 const char *file
= main_input_filename
;
9341 file
= LOCATION_FILE (input_location
);
9342 /* Just use the file's basename, because the full pathname
9343 might be quite long. */
9344 p
= q
= ASTRDUP (lbasename (file
));
9348 /* Otherwise, the name must be unique across the entire link.
9349 We don't have anything that we know to be unique to this translation
9350 unit, so use what we do have and throw in some randomness. */
9352 const char *name
= weak_global_object_name
;
9353 const char *file
= main_input_filename
;
9358 file
= LOCATION_FILE (input_location
);
9360 len
= strlen (file
);
9361 q
= (char *) alloca (9 + 17 + len
+ 1);
9362 memcpy (q
, file
, len
+ 1);
9364 snprintf (q
+ len
, 9 + 17 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX
,
9365 crc32_string (0, name
), get_random_seed (false));
9370 clean_symbol_name (q
);
9371 buf
= (char *) alloca (sizeof (FILE_FUNCTION_FORMAT
) + strlen (p
)
9374 /* Set up the name of the file-level functions we may need.
9375 Use a global object (which is already required to be unique over
9376 the program) rather than the file name (which imposes extra
9378 sprintf (buf
, FILE_FUNCTION_FORMAT
, type
, p
);
9380 return get_identifier (buf
);
9383 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
9385 /* Complain that the tree code of NODE does not match the expected 0
9386 terminated list of trailing codes. The trailing code list can be
9387 empty, for a more vague error message. FILE, LINE, and FUNCTION
9388 are of the caller. */
9391 tree_check_failed (const_tree node
, const char *file
,
9392 int line
, const char *function
, ...)
9396 unsigned length
= 0;
9397 enum tree_code code
;
9399 va_start (args
, function
);
9400 while ((code
= (enum tree_code
) va_arg (args
, int)))
9401 length
+= 4 + strlen (get_tree_code_name (code
));
9406 va_start (args
, function
);
9407 length
+= strlen ("expected ");
9408 buffer
= tmp
= (char *) alloca (length
);
9410 while ((code
= (enum tree_code
) va_arg (args
, int)))
9412 const char *prefix
= length
? " or " : "expected ";
9414 strcpy (tmp
+ length
, prefix
);
9415 length
+= strlen (prefix
);
9416 strcpy (tmp
+ length
, get_tree_code_name (code
));
9417 length
+= strlen (get_tree_code_name (code
));
9422 buffer
= "unexpected node";
9424 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9425 buffer
, get_tree_code_name (TREE_CODE (node
)),
9426 function
, trim_filename (file
), line
);
9429 /* Complain that the tree code of NODE does match the expected 0
9430 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
9434 tree_not_check_failed (const_tree node
, const char *file
,
9435 int line
, const char *function
, ...)
9439 unsigned length
= 0;
9440 enum tree_code code
;
9442 va_start (args
, function
);
9443 while ((code
= (enum tree_code
) va_arg (args
, int)))
9444 length
+= 4 + strlen (get_tree_code_name (code
));
9446 va_start (args
, function
);
9447 buffer
= (char *) alloca (length
);
9449 while ((code
= (enum tree_code
) va_arg (args
, int)))
9453 strcpy (buffer
+ length
, " or ");
9456 strcpy (buffer
+ length
, get_tree_code_name (code
));
9457 length
+= strlen (get_tree_code_name (code
));
9461 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9462 buffer
, get_tree_code_name (TREE_CODE (node
)),
9463 function
, trim_filename (file
), line
);
9466 /* Similar to tree_check_failed, except that we check for a class of tree
9467 code, given in CL. */
9470 tree_class_check_failed (const_tree node
, const enum tree_code_class cl
,
9471 const char *file
, int line
, const char *function
)
9474 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9475 TREE_CODE_CLASS_STRING (cl
),
9476 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9477 get_tree_code_name (TREE_CODE (node
)), function
, trim_filename (file
), line
);
9480 /* Similar to tree_check_failed, except that instead of specifying a
9481 dozen codes, use the knowledge that they're all sequential. */
9484 tree_range_check_failed (const_tree node
, const char *file
, int line
,
9485 const char *function
, enum tree_code c1
,
9489 unsigned length
= 0;
9492 for (c
= c1
; c
<= c2
; ++c
)
9493 length
+= 4 + strlen (get_tree_code_name ((enum tree_code
) c
));
9495 length
+= strlen ("expected ");
9496 buffer
= (char *) alloca (length
);
9499 for (c
= c1
; c
<= c2
; ++c
)
9501 const char *prefix
= length
? " or " : "expected ";
9503 strcpy (buffer
+ length
, prefix
);
9504 length
+= strlen (prefix
);
9505 strcpy (buffer
+ length
, get_tree_code_name ((enum tree_code
) c
));
9506 length
+= strlen (get_tree_code_name ((enum tree_code
) c
));
9509 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9510 buffer
, get_tree_code_name (TREE_CODE (node
)),
9511 function
, trim_filename (file
), line
);
9515 /* Similar to tree_check_failed, except that we check that a tree does
9516 not have the specified code, given in CL. */
9519 tree_not_class_check_failed (const_tree node
, const enum tree_code_class cl
,
9520 const char *file
, int line
, const char *function
)
9523 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9524 TREE_CODE_CLASS_STRING (cl
),
9525 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9526 get_tree_code_name (TREE_CODE (node
)), function
, trim_filename (file
), line
);
9530 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9533 omp_clause_check_failed (const_tree node
, const char *file
, int line
,
9534 const char *function
, enum omp_clause_code code
)
9536 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9537 omp_clause_code_name
[code
], get_tree_code_name (TREE_CODE (node
)),
9538 function
, trim_filename (file
), line
);
9542 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9545 omp_clause_range_check_failed (const_tree node
, const char *file
, int line
,
9546 const char *function
, enum omp_clause_code c1
,
9547 enum omp_clause_code c2
)
9550 unsigned length
= 0;
9553 for (c
= c1
; c
<= c2
; ++c
)
9554 length
+= 4 + strlen (omp_clause_code_name
[c
]);
9556 length
+= strlen ("expected ");
9557 buffer
= (char *) alloca (length
);
9560 for (c
= c1
; c
<= c2
; ++c
)
9562 const char *prefix
= length
? " or " : "expected ";
9564 strcpy (buffer
+ length
, prefix
);
9565 length
+= strlen (prefix
);
9566 strcpy (buffer
+ length
, omp_clause_code_name
[c
]);
9567 length
+= strlen (omp_clause_code_name
[c
]);
9570 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9571 buffer
, omp_clause_code_name
[TREE_CODE (node
)],
9572 function
, trim_filename (file
), line
);
9576 #undef DEFTREESTRUCT
9577 #define DEFTREESTRUCT(VAL, NAME) NAME,
9579 static const char *ts_enum_names
[] = {
9580 #include "treestruct.def"
9582 #undef DEFTREESTRUCT
9584 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9586 /* Similar to tree_class_check_failed, except that we check for
9587 whether CODE contains the tree structure identified by EN. */
9590 tree_contains_struct_check_failed (const_tree node
,
9591 const enum tree_node_structure_enum en
,
9592 const char *file
, int line
,
9593 const char *function
)
9596 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9598 get_tree_code_name (TREE_CODE (node
)), function
, trim_filename (file
), line
);
9602 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9603 (dynamically sized) vector. */
9606 tree_int_cst_elt_check_failed (int idx
, int len
, const char *file
, int line
,
9607 const char *function
)
9610 ("tree check: accessed elt %d of tree_int_cst with %d elts in %s, at %s:%d",
9611 idx
+ 1, len
, function
, trim_filename (file
), line
);
9614 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9615 (dynamically sized) vector. */
9618 tree_vec_elt_check_failed (int idx
, int len
, const char *file
, int line
,
9619 const char *function
)
9622 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9623 idx
+ 1, len
, function
, trim_filename (file
), line
);
9626 /* Similar to above, except that the check is for the bounds of the operand
9627 vector of an expression node EXP. */
9630 tree_operand_check_failed (int idx
, const_tree exp
, const char *file
,
9631 int line
, const char *function
)
9633 enum tree_code code
= TREE_CODE (exp
);
9635 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9636 idx
+ 1, get_tree_code_name (code
), TREE_OPERAND_LENGTH (exp
),
9637 function
, trim_filename (file
), line
);
9640 /* Similar to above, except that the check is for the number of
9641 operands of an OMP_CLAUSE node. */
9644 omp_clause_operand_check_failed (int idx
, const_tree t
, const char *file
,
9645 int line
, const char *function
)
9648 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9649 "in %s, at %s:%d", idx
+ 1, omp_clause_code_name
[OMP_CLAUSE_CODE (t
)],
9650 omp_clause_num_ops
[OMP_CLAUSE_CODE (t
)], function
,
9651 trim_filename (file
), line
);
9653 #endif /* ENABLE_TREE_CHECKING */
9655 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9656 and mapped to the machine mode MODE. Initialize its fields and build
9657 the information necessary for debugging output. */
9660 make_vector_type (tree innertype
, int nunits
, machine_mode mode
)
9663 inchash::hash hstate
;
9665 t
= make_node (VECTOR_TYPE
);
9666 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (innertype
);
9667 SET_TYPE_VECTOR_SUBPARTS (t
, nunits
);
9668 SET_TYPE_MODE (t
, mode
);
9670 if (TYPE_STRUCTURAL_EQUALITY_P (innertype
))
9671 SET_TYPE_STRUCTURAL_EQUALITY (t
);
9672 else if (TYPE_CANONICAL (innertype
) != innertype
9673 || mode
!= VOIDmode
)
9675 = make_vector_type (TYPE_CANONICAL (innertype
), nunits
, VOIDmode
);
9679 hstate
.add_wide_int (VECTOR_TYPE
);
9680 hstate
.add_wide_int (nunits
);
9681 hstate
.add_wide_int (mode
);
9682 hstate
.add_object (TYPE_HASH (TREE_TYPE (t
)));
9683 t
= type_hash_canon (hstate
.end (), t
);
9685 /* We have built a main variant, based on the main variant of the
9686 inner type. Use it to build the variant we return. */
9687 if ((TYPE_ATTRIBUTES (innertype
) || TYPE_QUALS (innertype
))
9688 && TREE_TYPE (t
) != innertype
)
9689 return build_type_attribute_qual_variant (t
,
9690 TYPE_ATTRIBUTES (innertype
),
9691 TYPE_QUALS (innertype
));
9697 make_or_reuse_type (unsigned size
, int unsignedp
)
9701 if (size
== INT_TYPE_SIZE
)
9702 return unsignedp
? unsigned_type_node
: integer_type_node
;
9703 if (size
== CHAR_TYPE_SIZE
)
9704 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
9705 if (size
== SHORT_TYPE_SIZE
)
9706 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
9707 if (size
== LONG_TYPE_SIZE
)
9708 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
9709 if (size
== LONG_LONG_TYPE_SIZE
)
9710 return (unsignedp
? long_long_unsigned_type_node
9711 : long_long_integer_type_node
);
9713 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
9714 if (size
== int_n_data
[i
].bitsize
9715 && int_n_enabled_p
[i
])
9716 return (unsignedp
? int_n_trees
[i
].unsigned_type
9717 : int_n_trees
[i
].signed_type
);
9720 return make_unsigned_type (size
);
9722 return make_signed_type (size
);
9725 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9728 make_or_reuse_fract_type (unsigned size
, int unsignedp
, int satp
)
9732 if (size
== SHORT_FRACT_TYPE_SIZE
)
9733 return unsignedp
? sat_unsigned_short_fract_type_node
9734 : sat_short_fract_type_node
;
9735 if (size
== FRACT_TYPE_SIZE
)
9736 return unsignedp
? sat_unsigned_fract_type_node
: sat_fract_type_node
;
9737 if (size
== LONG_FRACT_TYPE_SIZE
)
9738 return unsignedp
? sat_unsigned_long_fract_type_node
9739 : sat_long_fract_type_node
;
9740 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9741 return unsignedp
? sat_unsigned_long_long_fract_type_node
9742 : sat_long_long_fract_type_node
;
9746 if (size
== SHORT_FRACT_TYPE_SIZE
)
9747 return unsignedp
? unsigned_short_fract_type_node
9748 : short_fract_type_node
;
9749 if (size
== FRACT_TYPE_SIZE
)
9750 return unsignedp
? unsigned_fract_type_node
: fract_type_node
;
9751 if (size
== LONG_FRACT_TYPE_SIZE
)
9752 return unsignedp
? unsigned_long_fract_type_node
9753 : long_fract_type_node
;
9754 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9755 return unsignedp
? unsigned_long_long_fract_type_node
9756 : long_long_fract_type_node
;
9759 return make_fract_type (size
, unsignedp
, satp
);
9762 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9765 make_or_reuse_accum_type (unsigned size
, int unsignedp
, int satp
)
9769 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9770 return unsignedp
? sat_unsigned_short_accum_type_node
9771 : sat_short_accum_type_node
;
9772 if (size
== ACCUM_TYPE_SIZE
)
9773 return unsignedp
? sat_unsigned_accum_type_node
: sat_accum_type_node
;
9774 if (size
== LONG_ACCUM_TYPE_SIZE
)
9775 return unsignedp
? sat_unsigned_long_accum_type_node
9776 : sat_long_accum_type_node
;
9777 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9778 return unsignedp
? sat_unsigned_long_long_accum_type_node
9779 : sat_long_long_accum_type_node
;
9783 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9784 return unsignedp
? unsigned_short_accum_type_node
9785 : short_accum_type_node
;
9786 if (size
== ACCUM_TYPE_SIZE
)
9787 return unsignedp
? unsigned_accum_type_node
: accum_type_node
;
9788 if (size
== LONG_ACCUM_TYPE_SIZE
)
9789 return unsignedp
? unsigned_long_accum_type_node
9790 : long_accum_type_node
;
9791 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9792 return unsignedp
? unsigned_long_long_accum_type_node
9793 : long_long_accum_type_node
;
9796 return make_accum_type (size
, unsignedp
, satp
);
9800 /* Create an atomic variant node for TYPE. This routine is called
9801 during initialization of data types to create the 5 basic atomic
9802 types. The generic build_variant_type function requires these to
9803 already be set up in order to function properly, so cannot be
9804 called from there. If ALIGN is non-zero, then ensure alignment is
9805 overridden to this value. */
9808 build_atomic_base (tree type
, unsigned int align
)
9812 /* Make sure its not already registered. */
9813 if ((t
= get_qualified_type (type
, TYPE_QUAL_ATOMIC
)))
9816 t
= build_variant_type_copy (type
);
9817 set_type_quals (t
, TYPE_QUAL_ATOMIC
);
9820 TYPE_ALIGN (t
) = align
;
9825 /* Create nodes for all integer types (and error_mark_node) using the sizes
9826 of C datatypes. SIGNED_CHAR specifies whether char is signed,
9827 SHORT_DOUBLE specifies whether double should be of the same precision
9831 build_common_tree_nodes (bool signed_char
, bool short_double
)
9835 error_mark_node
= make_node (ERROR_MARK
);
9836 TREE_TYPE (error_mark_node
) = error_mark_node
;
9838 initialize_sizetypes ();
9840 /* Define both `signed char' and `unsigned char'. */
9841 signed_char_type_node
= make_signed_type (CHAR_TYPE_SIZE
);
9842 TYPE_STRING_FLAG (signed_char_type_node
) = 1;
9843 unsigned_char_type_node
= make_unsigned_type (CHAR_TYPE_SIZE
);
9844 TYPE_STRING_FLAG (unsigned_char_type_node
) = 1;
9846 /* Define `char', which is like either `signed char' or `unsigned char'
9847 but not the same as either. */
9850 ? make_signed_type (CHAR_TYPE_SIZE
)
9851 : make_unsigned_type (CHAR_TYPE_SIZE
));
9852 TYPE_STRING_FLAG (char_type_node
) = 1;
9854 short_integer_type_node
= make_signed_type (SHORT_TYPE_SIZE
);
9855 short_unsigned_type_node
= make_unsigned_type (SHORT_TYPE_SIZE
);
9856 integer_type_node
= make_signed_type (INT_TYPE_SIZE
);
9857 unsigned_type_node
= make_unsigned_type (INT_TYPE_SIZE
);
9858 long_integer_type_node
= make_signed_type (LONG_TYPE_SIZE
);
9859 long_unsigned_type_node
= make_unsigned_type (LONG_TYPE_SIZE
);
9860 long_long_integer_type_node
= make_signed_type (LONG_LONG_TYPE_SIZE
);
9861 long_long_unsigned_type_node
= make_unsigned_type (LONG_LONG_TYPE_SIZE
);
9863 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
9865 int_n_trees
[i
].signed_type
= make_signed_type (int_n_data
[i
].bitsize
);
9866 int_n_trees
[i
].unsigned_type
= make_unsigned_type (int_n_data
[i
].bitsize
);
9867 TYPE_SIZE (int_n_trees
[i
].signed_type
) = bitsize_int (int_n_data
[i
].bitsize
);
9868 TYPE_SIZE (int_n_trees
[i
].unsigned_type
) = bitsize_int (int_n_data
[i
].bitsize
);
9870 if (int_n_data
[i
].bitsize
> LONG_LONG_TYPE_SIZE
9871 && int_n_enabled_p
[i
])
9873 integer_types
[itk_intN_0
+ i
* 2] = int_n_trees
[i
].signed_type
;
9874 integer_types
[itk_unsigned_intN_0
+ i
* 2] = int_n_trees
[i
].unsigned_type
;
9878 /* Define a boolean type. This type only represents boolean values but
9879 may be larger than char depending on the value of BOOL_TYPE_SIZE. */
9880 boolean_type_node
= make_unsigned_type (BOOL_TYPE_SIZE
);
9881 TREE_SET_CODE (boolean_type_node
, BOOLEAN_TYPE
);
9882 TYPE_PRECISION (boolean_type_node
) = 1;
9883 TYPE_MAX_VALUE (boolean_type_node
) = build_int_cst (boolean_type_node
, 1);
9885 /* Define what type to use for size_t. */
9886 if (strcmp (SIZE_TYPE
, "unsigned int") == 0)
9887 size_type_node
= unsigned_type_node
;
9888 else if (strcmp (SIZE_TYPE
, "long unsigned int") == 0)
9889 size_type_node
= long_unsigned_type_node
;
9890 else if (strcmp (SIZE_TYPE
, "long long unsigned int") == 0)
9891 size_type_node
= long_long_unsigned_type_node
;
9892 else if (strcmp (SIZE_TYPE
, "short unsigned int") == 0)
9893 size_type_node
= short_unsigned_type_node
;
9898 size_type_node
= NULL_TREE
;
9899 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
9900 if (int_n_enabled_p
[i
])
9903 sprintf (name
, "__int%d unsigned", int_n_data
[i
].bitsize
);
9905 if (strcmp (name
, SIZE_TYPE
) == 0)
9907 size_type_node
= int_n_trees
[i
].unsigned_type
;
9910 if (size_type_node
== NULL_TREE
)
9914 /* Fill in the rest of the sized types. Reuse existing type nodes
9916 intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 0);
9917 intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 0);
9918 intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 0);
9919 intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 0);
9920 intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 0);
9922 unsigned_intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 1);
9923 unsigned_intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 1);
9924 unsigned_intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 1);
9925 unsigned_intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 1);
9926 unsigned_intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 1);
9928 /* Don't call build_qualified type for atomics. That routine does
9929 special processing for atomics, and until they are initialized
9930 it's better not to make that call.
9932 Check to see if there is a target override for atomic types. */
9934 atomicQI_type_node
= build_atomic_base (unsigned_intQI_type_node
,
9935 targetm
.atomic_align_for_mode (QImode
));
9936 atomicHI_type_node
= build_atomic_base (unsigned_intHI_type_node
,
9937 targetm
.atomic_align_for_mode (HImode
));
9938 atomicSI_type_node
= build_atomic_base (unsigned_intSI_type_node
,
9939 targetm
.atomic_align_for_mode (SImode
));
9940 atomicDI_type_node
= build_atomic_base (unsigned_intDI_type_node
,
9941 targetm
.atomic_align_for_mode (DImode
));
9942 atomicTI_type_node
= build_atomic_base (unsigned_intTI_type_node
,
9943 targetm
.atomic_align_for_mode (TImode
));
9945 access_public_node
= get_identifier ("public");
9946 access_protected_node
= get_identifier ("protected");
9947 access_private_node
= get_identifier ("private");
9949 /* Define these next since types below may used them. */
9950 integer_zero_node
= build_int_cst (integer_type_node
, 0);
9951 integer_one_node
= build_int_cst (integer_type_node
, 1);
9952 integer_three_node
= build_int_cst (integer_type_node
, 3);
9953 integer_minus_one_node
= build_int_cst (integer_type_node
, -1);
9955 size_zero_node
= size_int (0);
9956 size_one_node
= size_int (1);
9957 bitsize_zero_node
= bitsize_int (0);
9958 bitsize_one_node
= bitsize_int (1);
9959 bitsize_unit_node
= bitsize_int (BITS_PER_UNIT
);
9961 boolean_false_node
= TYPE_MIN_VALUE (boolean_type_node
);
9962 boolean_true_node
= TYPE_MAX_VALUE (boolean_type_node
);
9964 void_type_node
= make_node (VOID_TYPE
);
9965 layout_type (void_type_node
);
9967 pointer_bounds_type_node
= targetm
.chkp_bound_type ();
9969 /* We are not going to have real types in C with less than byte alignment,
9970 so we might as well not have any types that claim to have it. */
9971 TYPE_ALIGN (void_type_node
) = BITS_PER_UNIT
;
9972 TYPE_USER_ALIGN (void_type_node
) = 0;
9974 void_node
= make_node (VOID_CST
);
9975 TREE_TYPE (void_node
) = void_type_node
;
9977 null_pointer_node
= build_int_cst (build_pointer_type (void_type_node
), 0);
9978 layout_type (TREE_TYPE (null_pointer_node
));
9980 ptr_type_node
= build_pointer_type (void_type_node
);
9982 = build_pointer_type (build_type_variant (void_type_node
, 1, 0));
9983 fileptr_type_node
= ptr_type_node
;
9985 pointer_sized_int_node
= build_nonstandard_integer_type (POINTER_SIZE
, 1);
9987 float_type_node
= make_node (REAL_TYPE
);
9988 TYPE_PRECISION (float_type_node
) = FLOAT_TYPE_SIZE
;
9989 layout_type (float_type_node
);
9991 double_type_node
= make_node (REAL_TYPE
);
9993 TYPE_PRECISION (double_type_node
) = FLOAT_TYPE_SIZE
;
9995 TYPE_PRECISION (double_type_node
) = DOUBLE_TYPE_SIZE
;
9996 layout_type (double_type_node
);
9998 long_double_type_node
= make_node (REAL_TYPE
);
9999 TYPE_PRECISION (long_double_type_node
) = LONG_DOUBLE_TYPE_SIZE
;
10000 layout_type (long_double_type_node
);
10002 float_ptr_type_node
= build_pointer_type (float_type_node
);
10003 double_ptr_type_node
= build_pointer_type (double_type_node
);
10004 long_double_ptr_type_node
= build_pointer_type (long_double_type_node
);
10005 integer_ptr_type_node
= build_pointer_type (integer_type_node
);
10007 /* Fixed size integer types. */
10008 uint16_type_node
= make_or_reuse_type (16, 1);
10009 uint32_type_node
= make_or_reuse_type (32, 1);
10010 uint64_type_node
= make_or_reuse_type (64, 1);
10012 /* Decimal float types. */
10013 dfloat32_type_node
= make_node (REAL_TYPE
);
10014 TYPE_PRECISION (dfloat32_type_node
) = DECIMAL32_TYPE_SIZE
;
10015 layout_type (dfloat32_type_node
);
10016 SET_TYPE_MODE (dfloat32_type_node
, SDmode
);
10017 dfloat32_ptr_type_node
= build_pointer_type (dfloat32_type_node
);
10019 dfloat64_type_node
= make_node (REAL_TYPE
);
10020 TYPE_PRECISION (dfloat64_type_node
) = DECIMAL64_TYPE_SIZE
;
10021 layout_type (dfloat64_type_node
);
10022 SET_TYPE_MODE (dfloat64_type_node
, DDmode
);
10023 dfloat64_ptr_type_node
= build_pointer_type (dfloat64_type_node
);
10025 dfloat128_type_node
= make_node (REAL_TYPE
);
10026 TYPE_PRECISION (dfloat128_type_node
) = DECIMAL128_TYPE_SIZE
;
10027 layout_type (dfloat128_type_node
);
10028 SET_TYPE_MODE (dfloat128_type_node
, TDmode
);
10029 dfloat128_ptr_type_node
= build_pointer_type (dfloat128_type_node
);
10031 complex_integer_type_node
= build_complex_type (integer_type_node
);
10032 complex_float_type_node
= build_complex_type (float_type_node
);
10033 complex_double_type_node
= build_complex_type (double_type_node
);
10034 complex_long_double_type_node
= build_complex_type (long_double_type_node
);
10036 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
10037 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
10038 sat_ ## KIND ## _type_node = \
10039 make_sat_signed_ ## KIND ## _type (SIZE); \
10040 sat_unsigned_ ## KIND ## _type_node = \
10041 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10042 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10043 unsigned_ ## KIND ## _type_node = \
10044 make_unsigned_ ## KIND ## _type (SIZE);
10046 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
10047 sat_ ## WIDTH ## KIND ## _type_node = \
10048 make_sat_signed_ ## KIND ## _type (SIZE); \
10049 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
10050 make_sat_unsigned_ ## KIND ## _type (SIZE); \
10051 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
10052 unsigned_ ## WIDTH ## KIND ## _type_node = \
10053 make_unsigned_ ## KIND ## _type (SIZE);
10055 /* Make fixed-point type nodes based on four different widths. */
10056 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
10057 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
10058 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
10059 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
10060 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
10062 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
10063 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
10064 NAME ## _type_node = \
10065 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
10066 u ## NAME ## _type_node = \
10067 make_or_reuse_unsigned_ ## KIND ## _type \
10068 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
10069 sat_ ## NAME ## _type_node = \
10070 make_or_reuse_sat_signed_ ## KIND ## _type \
10071 (GET_MODE_BITSIZE (MODE ## mode)); \
10072 sat_u ## NAME ## _type_node = \
10073 make_or_reuse_sat_unsigned_ ## KIND ## _type \
10074 (GET_MODE_BITSIZE (U ## MODE ## mode));
10076 /* Fixed-point type and mode nodes. */
10077 MAKE_FIXED_TYPE_NODE_FAMILY (fract
, FRACT
)
10078 MAKE_FIXED_TYPE_NODE_FAMILY (accum
, ACCUM
)
10079 MAKE_FIXED_MODE_NODE (fract
, qq
, QQ
)
10080 MAKE_FIXED_MODE_NODE (fract
, hq
, HQ
)
10081 MAKE_FIXED_MODE_NODE (fract
, sq
, SQ
)
10082 MAKE_FIXED_MODE_NODE (fract
, dq
, DQ
)
10083 MAKE_FIXED_MODE_NODE (fract
, tq
, TQ
)
10084 MAKE_FIXED_MODE_NODE (accum
, ha
, HA
)
10085 MAKE_FIXED_MODE_NODE (accum
, sa
, SA
)
10086 MAKE_FIXED_MODE_NODE (accum
, da
, DA
)
10087 MAKE_FIXED_MODE_NODE (accum
, ta
, TA
)
10090 tree t
= targetm
.build_builtin_va_list ();
10092 /* Many back-ends define record types without setting TYPE_NAME.
10093 If we copied the record type here, we'd keep the original
10094 record type without a name. This breaks name mangling. So,
10095 don't copy record types and let c_common_nodes_and_builtins()
10096 declare the type to be __builtin_va_list. */
10097 if (TREE_CODE (t
) != RECORD_TYPE
)
10098 t
= build_variant_type_copy (t
);
10100 va_list_type_node
= t
;
10104 /* Modify DECL for given flags.
10105 TM_PURE attribute is set only on types, so the function will modify
10106 DECL's type when ECF_TM_PURE is used. */
10109 set_call_expr_flags (tree decl
, int flags
)
10111 if (flags
& ECF_NOTHROW
)
10112 TREE_NOTHROW (decl
) = 1;
10113 if (flags
& ECF_CONST
)
10114 TREE_READONLY (decl
) = 1;
10115 if (flags
& ECF_PURE
)
10116 DECL_PURE_P (decl
) = 1;
10117 if (flags
& ECF_LOOPING_CONST_OR_PURE
)
10118 DECL_LOOPING_CONST_OR_PURE_P (decl
) = 1;
10119 if (flags
& ECF_NOVOPS
)
10120 DECL_IS_NOVOPS (decl
) = 1;
10121 if (flags
& ECF_NORETURN
)
10122 TREE_THIS_VOLATILE (decl
) = 1;
10123 if (flags
& ECF_MALLOC
)
10124 DECL_IS_MALLOC (decl
) = 1;
10125 if (flags
& ECF_RETURNS_TWICE
)
10126 DECL_IS_RETURNS_TWICE (decl
) = 1;
10127 if (flags
& ECF_LEAF
)
10128 DECL_ATTRIBUTES (decl
) = tree_cons (get_identifier ("leaf"),
10129 NULL
, DECL_ATTRIBUTES (decl
));
10130 if ((flags
& ECF_TM_PURE
) && flag_tm
)
10131 apply_tm_attr (decl
, get_identifier ("transaction_pure"));
10132 /* Looping const or pure is implied by noreturn.
10133 There is currently no way to declare looping const or looping pure alone. */
10134 gcc_assert (!(flags
& ECF_LOOPING_CONST_OR_PURE
)
10135 || ((flags
& ECF_NORETURN
) && (flags
& (ECF_CONST
| ECF_PURE
))));
10139 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
10142 local_define_builtin (const char *name
, tree type
, enum built_in_function code
,
10143 const char *library_name
, int ecf_flags
)
10147 decl
= add_builtin_function (name
, type
, code
, BUILT_IN_NORMAL
,
10148 library_name
, NULL_TREE
);
10149 set_call_expr_flags (decl
, ecf_flags
);
10151 set_builtin_decl (code
, decl
, true);
10154 /* Call this function after instantiating all builtins that the language
10155 front end cares about. This will build the rest of the builtins
10156 and internal functions that are relied upon by the tree optimizers and
10160 build_common_builtin_nodes (void)
10165 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE
))
10167 ftype
= build_function_type (void_type_node
, void_list_node
);
10168 local_define_builtin ("__builtin_unreachable", ftype
, BUILT_IN_UNREACHABLE
,
10169 "__builtin_unreachable",
10170 ECF_NOTHROW
| ECF_LEAF
| ECF_NORETURN
10174 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
)
10175 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
10177 ftype
= build_function_type_list (ptr_type_node
,
10178 ptr_type_node
, const_ptr_type_node
,
10179 size_type_node
, NULL_TREE
);
10181 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
))
10182 local_define_builtin ("__builtin_memcpy", ftype
, BUILT_IN_MEMCPY
,
10183 "memcpy", ECF_NOTHROW
| ECF_LEAF
);
10184 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
10185 local_define_builtin ("__builtin_memmove", ftype
, BUILT_IN_MEMMOVE
,
10186 "memmove", ECF_NOTHROW
| ECF_LEAF
);
10189 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP
))
10191 ftype
= build_function_type_list (integer_type_node
, const_ptr_type_node
,
10192 const_ptr_type_node
, size_type_node
,
10194 local_define_builtin ("__builtin_memcmp", ftype
, BUILT_IN_MEMCMP
,
10195 "memcmp", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
10198 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET
))
10200 ftype
= build_function_type_list (ptr_type_node
,
10201 ptr_type_node
, integer_type_node
,
10202 size_type_node
, NULL_TREE
);
10203 local_define_builtin ("__builtin_memset", ftype
, BUILT_IN_MEMSET
,
10204 "memset", ECF_NOTHROW
| ECF_LEAF
);
10207 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA
))
10209 ftype
= build_function_type_list (ptr_type_node
,
10210 size_type_node
, NULL_TREE
);
10211 local_define_builtin ("__builtin_alloca", ftype
, BUILT_IN_ALLOCA
,
10212 "alloca", ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
10215 ftype
= build_function_type_list (ptr_type_node
, size_type_node
,
10216 size_type_node
, NULL_TREE
);
10217 local_define_builtin ("__builtin_alloca_with_align", ftype
,
10218 BUILT_IN_ALLOCA_WITH_ALIGN
,
10219 "__builtin_alloca_with_align",
10220 ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
10222 /* If we're checking the stack, `alloca' can throw. */
10223 if (flag_stack_check
)
10225 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA
)) = 0;
10226 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
)) = 0;
10229 ftype
= build_function_type_list (void_type_node
,
10230 ptr_type_node
, ptr_type_node
,
10231 ptr_type_node
, NULL_TREE
);
10232 local_define_builtin ("__builtin_init_trampoline", ftype
,
10233 BUILT_IN_INIT_TRAMPOLINE
,
10234 "__builtin_init_trampoline", ECF_NOTHROW
| ECF_LEAF
);
10235 local_define_builtin ("__builtin_init_heap_trampoline", ftype
,
10236 BUILT_IN_INIT_HEAP_TRAMPOLINE
,
10237 "__builtin_init_heap_trampoline",
10238 ECF_NOTHROW
| ECF_LEAF
);
10240 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
10241 local_define_builtin ("__builtin_adjust_trampoline", ftype
,
10242 BUILT_IN_ADJUST_TRAMPOLINE
,
10243 "__builtin_adjust_trampoline",
10244 ECF_CONST
| ECF_NOTHROW
);
10246 ftype
= build_function_type_list (void_type_node
,
10247 ptr_type_node
, ptr_type_node
, NULL_TREE
);
10248 local_define_builtin ("__builtin_nonlocal_goto", ftype
,
10249 BUILT_IN_NONLOCAL_GOTO
,
10250 "__builtin_nonlocal_goto",
10251 ECF_NORETURN
| ECF_NOTHROW
);
10253 ftype
= build_function_type_list (void_type_node
,
10254 ptr_type_node
, ptr_type_node
, NULL_TREE
);
10255 local_define_builtin ("__builtin_setjmp_setup", ftype
,
10256 BUILT_IN_SETJMP_SETUP
,
10257 "__builtin_setjmp_setup", ECF_NOTHROW
);
10259 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
10260 local_define_builtin ("__builtin_setjmp_receiver", ftype
,
10261 BUILT_IN_SETJMP_RECEIVER
,
10262 "__builtin_setjmp_receiver", ECF_NOTHROW
| ECF_LEAF
);
10264 ftype
= build_function_type_list (ptr_type_node
, NULL_TREE
);
10265 local_define_builtin ("__builtin_stack_save", ftype
, BUILT_IN_STACK_SAVE
,
10266 "__builtin_stack_save", ECF_NOTHROW
| ECF_LEAF
);
10268 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
10269 local_define_builtin ("__builtin_stack_restore", ftype
,
10270 BUILT_IN_STACK_RESTORE
,
10271 "__builtin_stack_restore", ECF_NOTHROW
| ECF_LEAF
);
10273 /* If there's a possibility that we might use the ARM EABI, build the
10274 alternate __cxa_end_cleanup node used to resume from C++ and Java. */
10275 if (targetm
.arm_eabi_unwinder
)
10277 ftype
= build_function_type_list (void_type_node
, NULL_TREE
);
10278 local_define_builtin ("__builtin_cxa_end_cleanup", ftype
,
10279 BUILT_IN_CXA_END_CLEANUP
,
10280 "__cxa_end_cleanup", ECF_NORETURN
| ECF_LEAF
);
10283 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
10284 local_define_builtin ("__builtin_unwind_resume", ftype
,
10285 BUILT_IN_UNWIND_RESUME
,
10286 ((targetm_common
.except_unwind_info (&global_options
)
10288 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
10291 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS
) == NULL_TREE
)
10293 ftype
= build_function_type_list (ptr_type_node
, integer_type_node
,
10295 local_define_builtin ("__builtin_return_address", ftype
,
10296 BUILT_IN_RETURN_ADDRESS
,
10297 "__builtin_return_address",
10301 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
)
10302 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
10304 ftype
= build_function_type_list (void_type_node
, ptr_type_node
,
10305 ptr_type_node
, NULL_TREE
);
10306 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
))
10307 local_define_builtin ("__cyg_profile_func_enter", ftype
,
10308 BUILT_IN_PROFILE_FUNC_ENTER
,
10309 "__cyg_profile_func_enter", 0);
10310 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
10311 local_define_builtin ("__cyg_profile_func_exit", ftype
,
10312 BUILT_IN_PROFILE_FUNC_EXIT
,
10313 "__cyg_profile_func_exit", 0);
10316 /* The exception object and filter values from the runtime. The argument
10317 must be zero before exception lowering, i.e. from the front end. After
10318 exception lowering, it will be the region number for the exception
10319 landing pad. These functions are PURE instead of CONST to prevent
10320 them from being hoisted past the exception edge that will initialize
10321 its value in the landing pad. */
10322 ftype
= build_function_type_list (ptr_type_node
,
10323 integer_type_node
, NULL_TREE
);
10324 ecf_flags
= ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
;
10325 /* Only use TM_PURE if we we have TM language support. */
10326 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1
))
10327 ecf_flags
|= ECF_TM_PURE
;
10328 local_define_builtin ("__builtin_eh_pointer", ftype
, BUILT_IN_EH_POINTER
,
10329 "__builtin_eh_pointer", ecf_flags
);
10331 tmp
= lang_hooks
.types
.type_for_mode (targetm
.eh_return_filter_mode (), 0);
10332 ftype
= build_function_type_list (tmp
, integer_type_node
, NULL_TREE
);
10333 local_define_builtin ("__builtin_eh_filter", ftype
, BUILT_IN_EH_FILTER
,
10334 "__builtin_eh_filter", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
10336 ftype
= build_function_type_list (void_type_node
,
10337 integer_type_node
, integer_type_node
,
10339 local_define_builtin ("__builtin_eh_copy_values", ftype
,
10340 BUILT_IN_EH_COPY_VALUES
,
10341 "__builtin_eh_copy_values", ECF_NOTHROW
);
10343 /* Complex multiplication and division. These are handled as builtins
10344 rather than optabs because emit_library_call_value doesn't support
10345 complex. Further, we can do slightly better with folding these
10346 beasties if the real and complex parts of the arguments are separate. */
10350 for (mode
= MIN_MODE_COMPLEX_FLOAT
; mode
<= MAX_MODE_COMPLEX_FLOAT
; ++mode
)
10352 char mode_name_buf
[4], *q
;
10354 enum built_in_function mcode
, dcode
;
10355 tree type
, inner_type
;
10356 const char *prefix
= "__";
10358 if (targetm
.libfunc_gnu_prefix
)
10361 type
= lang_hooks
.types
.type_for_mode ((machine_mode
) mode
, 0);
10364 inner_type
= TREE_TYPE (type
);
10366 ftype
= build_function_type_list (type
, inner_type
, inner_type
,
10367 inner_type
, inner_type
, NULL_TREE
);
10369 mcode
= ((enum built_in_function
)
10370 (BUILT_IN_COMPLEX_MUL_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
10371 dcode
= ((enum built_in_function
)
10372 (BUILT_IN_COMPLEX_DIV_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
10374 for (p
= GET_MODE_NAME (mode
), q
= mode_name_buf
; *p
; p
++, q
++)
10378 built_in_names
[mcode
] = concat (prefix
, "mul", mode_name_buf
, "3",
10380 local_define_builtin (built_in_names
[mcode
], ftype
, mcode
,
10381 built_in_names
[mcode
],
10382 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
10384 built_in_names
[dcode
] = concat (prefix
, "div", mode_name_buf
, "3",
10386 local_define_builtin (built_in_names
[dcode
], ftype
, dcode
,
10387 built_in_names
[dcode
],
10388 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
10392 init_internal_fns ();
10395 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
10398 If we requested a pointer to a vector, build up the pointers that
10399 we stripped off while looking for the inner type. Similarly for
10400 return values from functions.
10402 The argument TYPE is the top of the chain, and BOTTOM is the
10403 new type which we will point to. */
10406 reconstruct_complex_type (tree type
, tree bottom
)
10410 if (TREE_CODE (type
) == POINTER_TYPE
)
10412 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10413 outer
= build_pointer_type_for_mode (inner
, TYPE_MODE (type
),
10414 TYPE_REF_CAN_ALIAS_ALL (type
));
10416 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
10418 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10419 outer
= build_reference_type_for_mode (inner
, TYPE_MODE (type
),
10420 TYPE_REF_CAN_ALIAS_ALL (type
));
10422 else if (TREE_CODE (type
) == ARRAY_TYPE
)
10424 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10425 outer
= build_array_type (inner
, TYPE_DOMAIN (type
));
10427 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
10429 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10430 outer
= build_function_type (inner
, TYPE_ARG_TYPES (type
));
10432 else if (TREE_CODE (type
) == METHOD_TYPE
)
10434 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10435 /* The build_method_type_directly() routine prepends 'this' to argument list,
10436 so we must compensate by getting rid of it. */
10438 = build_method_type_directly
10439 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type
))),
10441 TREE_CHAIN (TYPE_ARG_TYPES (type
)));
10443 else if (TREE_CODE (type
) == OFFSET_TYPE
)
10445 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
10446 outer
= build_offset_type (TYPE_OFFSET_BASETYPE (type
), inner
);
10451 return build_type_attribute_qual_variant (outer
, TYPE_ATTRIBUTES (type
),
10452 TYPE_QUALS (type
));
10455 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
10458 build_vector_type_for_mode (tree innertype
, machine_mode mode
)
10462 switch (GET_MODE_CLASS (mode
))
10464 case MODE_VECTOR_INT
:
10465 case MODE_VECTOR_FLOAT
:
10466 case MODE_VECTOR_FRACT
:
10467 case MODE_VECTOR_UFRACT
:
10468 case MODE_VECTOR_ACCUM
:
10469 case MODE_VECTOR_UACCUM
:
10470 nunits
= GET_MODE_NUNITS (mode
);
10474 /* Check that there are no leftover bits. */
10475 gcc_assert (GET_MODE_BITSIZE (mode
)
10476 % TREE_INT_CST_LOW (TYPE_SIZE (innertype
)) == 0);
10478 nunits
= GET_MODE_BITSIZE (mode
)
10479 / TREE_INT_CST_LOW (TYPE_SIZE (innertype
));
10483 gcc_unreachable ();
10486 return make_vector_type (innertype
, nunits
, mode
);
10489 /* Similarly, but takes the inner type and number of units, which must be
10493 build_vector_type (tree innertype
, int nunits
)
10495 return make_vector_type (innertype
, nunits
, VOIDmode
);
10498 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
10501 build_opaque_vector_type (tree innertype
, int nunits
)
10503 tree t
= make_vector_type (innertype
, nunits
, VOIDmode
);
10505 /* We always build the non-opaque variant before the opaque one,
10506 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
10507 cand
= TYPE_NEXT_VARIANT (t
);
10509 && TYPE_VECTOR_OPAQUE (cand
)
10510 && check_qualified_type (cand
, t
, TYPE_QUALS (t
)))
10512 /* Othewise build a variant type and make sure to queue it after
10513 the non-opaque type. */
10514 cand
= build_distinct_type_copy (t
);
10515 TYPE_VECTOR_OPAQUE (cand
) = true;
10516 TYPE_CANONICAL (cand
) = TYPE_CANONICAL (t
);
10517 TYPE_NEXT_VARIANT (cand
) = TYPE_NEXT_VARIANT (t
);
10518 TYPE_NEXT_VARIANT (t
) = cand
;
10519 TYPE_MAIN_VARIANT (cand
) = TYPE_MAIN_VARIANT (t
);
10524 /* Given an initializer INIT, return TRUE if INIT is zero or some
10525 aggregate of zeros. Otherwise return FALSE. */
10527 initializer_zerop (const_tree init
)
10533 switch (TREE_CODE (init
))
10536 return integer_zerop (init
);
10539 /* ??? Note that this is not correct for C4X float formats. There,
10540 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
10541 negative exponent. */
10542 return real_zerop (init
)
10543 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init
));
10546 return fixed_zerop (init
);
10549 return integer_zerop (init
)
10550 || (real_zerop (init
)
10551 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init
)))
10552 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init
))));
10557 for (i
= 0; i
< VECTOR_CST_NELTS (init
); ++i
)
10558 if (!initializer_zerop (VECTOR_CST_ELT (init
, i
)))
10565 unsigned HOST_WIDE_INT idx
;
10567 if (TREE_CLOBBER_P (init
))
10569 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init
), idx
, elt
)
10570 if (!initializer_zerop (elt
))
10579 /* We need to loop through all elements to handle cases like
10580 "\0" and "\0foobar". */
10581 for (i
= 0; i
< TREE_STRING_LENGTH (init
); ++i
)
10582 if (TREE_STRING_POINTER (init
)[i
] != '\0')
10593 /* Check if vector VEC consists of all the equal elements and
10594 that the number of elements corresponds to the type of VEC.
10595 The function returns first element of the vector
10596 or NULL_TREE if the vector is not uniform. */
10598 uniform_vector_p (const_tree vec
)
10603 if (vec
== NULL_TREE
)
10606 gcc_assert (VECTOR_TYPE_P (TREE_TYPE (vec
)));
10608 if (TREE_CODE (vec
) == VECTOR_CST
)
10610 first
= VECTOR_CST_ELT (vec
, 0);
10611 for (i
= 1; i
< VECTOR_CST_NELTS (vec
); ++i
)
10612 if (!operand_equal_p (first
, VECTOR_CST_ELT (vec
, i
), 0))
10618 else if (TREE_CODE (vec
) == CONSTRUCTOR
)
10620 first
= error_mark_node
;
10622 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (vec
), i
, t
)
10629 if (!operand_equal_p (first
, t
, 0))
10632 if (i
!= TYPE_VECTOR_SUBPARTS (TREE_TYPE (vec
)))
10641 /* Build an empty statement at location LOC. */
10644 build_empty_stmt (location_t loc
)
10646 tree t
= build1 (NOP_EXPR
, void_type_node
, size_zero_node
);
10647 SET_EXPR_LOCATION (t
, loc
);
10652 /* Build an OpenMP clause with code CODE. LOC is the location of the
10656 build_omp_clause (location_t loc
, enum omp_clause_code code
)
10661 length
= omp_clause_num_ops
[code
];
10662 size
= (sizeof (struct tree_omp_clause
) + (length
- 1) * sizeof (tree
));
10664 record_node_allocation_statistics (OMP_CLAUSE
, size
);
10666 t
= (tree
) ggc_internal_alloc (size
);
10667 memset (t
, 0, size
);
10668 TREE_SET_CODE (t
, OMP_CLAUSE
);
10669 OMP_CLAUSE_SET_CODE (t
, code
);
10670 OMP_CLAUSE_LOCATION (t
) = loc
;
10675 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10676 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10677 Except for the CODE and operand count field, other storage for the
10678 object is initialized to zeros. */
10681 build_vl_exp_stat (enum tree_code code
, int len MEM_STAT_DECL
)
10684 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_exp
);
10686 gcc_assert (TREE_CODE_CLASS (code
) == tcc_vl_exp
);
10687 gcc_assert (len
>= 1);
10689 record_node_allocation_statistics (code
, length
);
10691 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
10693 TREE_SET_CODE (t
, code
);
10695 /* Can't use TREE_OPERAND to store the length because if checking is
10696 enabled, it will try to check the length before we store it. :-P */
10697 t
->exp
.operands
[0] = build_int_cst (sizetype
, len
);
10702 /* Helper function for build_call_* functions; build a CALL_EXPR with
10703 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10704 the argument slots. */
10707 build_call_1 (tree return_type
, tree fn
, int nargs
)
10711 t
= build_vl_exp (CALL_EXPR
, nargs
+ 3);
10712 TREE_TYPE (t
) = return_type
;
10713 CALL_EXPR_FN (t
) = fn
;
10714 CALL_EXPR_STATIC_CHAIN (t
) = NULL
;
10719 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10720 FN and a null static chain slot. NARGS is the number of call arguments
10721 which are specified as "..." arguments. */
10724 build_call_nary (tree return_type
, tree fn
, int nargs
, ...)
10728 va_start (args
, nargs
);
10729 ret
= build_call_valist (return_type
, fn
, nargs
, args
);
10734 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10735 FN and a null static chain slot. NARGS is the number of call arguments
10736 which are specified as a va_list ARGS. */
10739 build_call_valist (tree return_type
, tree fn
, int nargs
, va_list args
)
10744 t
= build_call_1 (return_type
, fn
, nargs
);
10745 for (i
= 0; i
< nargs
; i
++)
10746 CALL_EXPR_ARG (t
, i
) = va_arg (args
, tree
);
10747 process_call_operands (t
);
10751 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10752 FN and a null static chain slot. NARGS is the number of call arguments
10753 which are specified as a tree array ARGS. */
10756 build_call_array_loc (location_t loc
, tree return_type
, tree fn
,
10757 int nargs
, const tree
*args
)
10762 t
= build_call_1 (return_type
, fn
, nargs
);
10763 for (i
= 0; i
< nargs
; i
++)
10764 CALL_EXPR_ARG (t
, i
) = args
[i
];
10765 process_call_operands (t
);
10766 SET_EXPR_LOCATION (t
, loc
);
10770 /* Like build_call_array, but takes a vec. */
10773 build_call_vec (tree return_type
, tree fn
, vec
<tree
, va_gc
> *args
)
10778 ret
= build_call_1 (return_type
, fn
, vec_safe_length (args
));
10779 FOR_EACH_VEC_SAFE_ELT (args
, ix
, t
)
10780 CALL_EXPR_ARG (ret
, ix
) = t
;
10781 process_call_operands (ret
);
10785 /* Conveniently construct a function call expression. FNDECL names the
10786 function to be called and N arguments are passed in the array
10790 build_call_expr_loc_array (location_t loc
, tree fndecl
, int n
, tree
*argarray
)
10792 tree fntype
= TREE_TYPE (fndecl
);
10793 tree fn
= build1 (ADDR_EXPR
, build_pointer_type (fntype
), fndecl
);
10795 return fold_build_call_array_loc (loc
, TREE_TYPE (fntype
), fn
, n
, argarray
);
10798 /* Conveniently construct a function call expression. FNDECL names the
10799 function to be called and the arguments are passed in the vector
10803 build_call_expr_loc_vec (location_t loc
, tree fndecl
, vec
<tree
, va_gc
> *vec
)
10805 return build_call_expr_loc_array (loc
, fndecl
, vec_safe_length (vec
),
10806 vec_safe_address (vec
));
10810 /* Conveniently construct a function call expression. FNDECL names the
10811 function to be called, N is the number of arguments, and the "..."
10812 parameters are the argument expressions. */
10815 build_call_expr_loc (location_t loc
, tree fndecl
, int n
, ...)
10818 tree
*argarray
= XALLOCAVEC (tree
, n
);
10822 for (i
= 0; i
< n
; i
++)
10823 argarray
[i
] = va_arg (ap
, tree
);
10825 return build_call_expr_loc_array (loc
, fndecl
, n
, argarray
);
10828 /* Like build_call_expr_loc (UNKNOWN_LOCATION, ...). Duplicated because
10829 varargs macros aren't supported by all bootstrap compilers. */
10832 build_call_expr (tree fndecl
, int n
, ...)
10835 tree
*argarray
= XALLOCAVEC (tree
, n
);
10839 for (i
= 0; i
< n
; i
++)
10840 argarray
[i
] = va_arg (ap
, tree
);
10842 return build_call_expr_loc_array (UNKNOWN_LOCATION
, fndecl
, n
, argarray
);
10845 /* Build internal call expression. This is just like CALL_EXPR, except
10846 its CALL_EXPR_FN is NULL. It will get gimplified later into ordinary
10847 internal function. */
10850 build_call_expr_internal_loc (location_t loc
, enum internal_fn ifn
,
10851 tree type
, int n
, ...)
10856 tree fn
= build_call_1 (type
, NULL_TREE
, n
);
10858 for (i
= 0; i
< n
; i
++)
10859 CALL_EXPR_ARG (fn
, i
) = va_arg (ap
, tree
);
10861 SET_EXPR_LOCATION (fn
, loc
);
10862 CALL_EXPR_IFN (fn
) = ifn
;
10866 /* Create a new constant string literal and return a char* pointer to it.
10867 The STRING_CST value is the LEN characters at STR. */
10869 build_string_literal (int len
, const char *str
)
10871 tree t
, elem
, index
, type
;
10873 t
= build_string (len
, str
);
10874 elem
= build_type_variant (char_type_node
, 1, 0);
10875 index
= build_index_type (size_int (len
- 1));
10876 type
= build_array_type (elem
, index
);
10877 TREE_TYPE (t
) = type
;
10878 TREE_CONSTANT (t
) = 1;
10879 TREE_READONLY (t
) = 1;
10880 TREE_STATIC (t
) = 1;
10882 type
= build_pointer_type (elem
);
10883 t
= build1 (ADDR_EXPR
, type
,
10884 build4 (ARRAY_REF
, elem
,
10885 t
, integer_zero_node
, NULL_TREE
, NULL_TREE
));
10891 /* Return true if T (assumed to be a DECL) must be assigned a memory
10895 needs_to_live_in_memory (const_tree t
)
10897 return (TREE_ADDRESSABLE (t
)
10898 || is_global_var (t
)
10899 || (TREE_CODE (t
) == RESULT_DECL
10900 && !DECL_BY_REFERENCE (t
)
10901 && aggregate_value_p (t
, current_function_decl
)));
10904 /* Return value of a constant X and sign-extend it. */
10907 int_cst_value (const_tree x
)
10909 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
10910 unsigned HOST_WIDE_INT val
= TREE_INT_CST_LOW (x
);
10912 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10913 gcc_assert (cst_and_fits_in_hwi (x
));
10915 if (bits
< HOST_BITS_PER_WIDE_INT
)
10917 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
10919 val
|= (~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1;
10921 val
&= ~((~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1);
10927 /* If TYPE is an integral or pointer type, return an integer type with
10928 the same precision which is unsigned iff UNSIGNEDP is true, or itself
10929 if TYPE is already an integer type of signedness UNSIGNEDP. */
10932 signed_or_unsigned_type_for (int unsignedp
, tree type
)
10934 if (TREE_CODE (type
) == INTEGER_TYPE
&& TYPE_UNSIGNED (type
) == unsignedp
)
10937 if (TREE_CODE (type
) == VECTOR_TYPE
)
10939 tree inner
= TREE_TYPE (type
);
10940 tree inner2
= signed_or_unsigned_type_for (unsignedp
, inner
);
10943 if (inner
== inner2
)
10945 return build_vector_type (inner2
, TYPE_VECTOR_SUBPARTS (type
));
10948 if (!INTEGRAL_TYPE_P (type
)
10949 && !POINTER_TYPE_P (type
)
10950 && TREE_CODE (type
) != OFFSET_TYPE
)
10953 return build_nonstandard_integer_type (TYPE_PRECISION (type
), unsignedp
);
10956 /* If TYPE is an integral or pointer type, return an integer type with
10957 the same precision which is unsigned, or itself if TYPE is already an
10958 unsigned integer type. */
10961 unsigned_type_for (tree type
)
10963 return signed_or_unsigned_type_for (1, type
);
10966 /* If TYPE is an integral or pointer type, return an integer type with
10967 the same precision which is signed, or itself if TYPE is already a
10968 signed integer type. */
10971 signed_type_for (tree type
)
10973 return signed_or_unsigned_type_for (0, type
);
10976 /* If TYPE is a vector type, return a signed integer vector type with the
10977 same width and number of subparts. Otherwise return boolean_type_node. */
10980 truth_type_for (tree type
)
10982 if (TREE_CODE (type
) == VECTOR_TYPE
)
10984 tree elem
= lang_hooks
.types
.type_for_size
10985 (GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type
))), 0);
10986 return build_opaque_vector_type (elem
, TYPE_VECTOR_SUBPARTS (type
));
10989 return boolean_type_node
;
10992 /* Returns the largest value obtainable by casting something in INNER type to
10996 upper_bound_in_type (tree outer
, tree inner
)
10998 unsigned int det
= 0;
10999 unsigned oprec
= TYPE_PRECISION (outer
);
11000 unsigned iprec
= TYPE_PRECISION (inner
);
11003 /* Compute a unique number for every combination. */
11004 det
|= (oprec
> iprec
) ? 4 : 0;
11005 det
|= TYPE_UNSIGNED (outer
) ? 2 : 0;
11006 det
|= TYPE_UNSIGNED (inner
) ? 1 : 0;
11008 /* Determine the exponent to use. */
11013 /* oprec <= iprec, outer: signed, inner: don't care. */
11018 /* oprec <= iprec, outer: unsigned, inner: don't care. */
11022 /* oprec > iprec, outer: signed, inner: signed. */
11026 /* oprec > iprec, outer: signed, inner: unsigned. */
11030 /* oprec > iprec, outer: unsigned, inner: signed. */
11034 /* oprec > iprec, outer: unsigned, inner: unsigned. */
11038 gcc_unreachable ();
11041 return wide_int_to_tree (outer
,
11042 wi::mask (prec
, false, TYPE_PRECISION (outer
)));
11045 /* Returns the smallest value obtainable by casting something in INNER type to
11049 lower_bound_in_type (tree outer
, tree inner
)
11051 unsigned oprec
= TYPE_PRECISION (outer
);
11052 unsigned iprec
= TYPE_PRECISION (inner
);
11054 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
11056 if (TYPE_UNSIGNED (outer
)
11057 /* If we are widening something of an unsigned type, OUTER type
11058 contains all values of INNER type. In particular, both INNER
11059 and OUTER types have zero in common. */
11060 || (oprec
> iprec
&& TYPE_UNSIGNED (inner
)))
11061 return build_int_cst (outer
, 0);
11064 /* If we are widening a signed type to another signed type, we
11065 want to obtain -2^^(iprec-1). If we are keeping the
11066 precision or narrowing to a signed type, we want to obtain
11068 unsigned prec
= oprec
> iprec
? iprec
: oprec
;
11069 return wide_int_to_tree (outer
,
11070 wi::mask (prec
- 1, true,
11071 TYPE_PRECISION (outer
)));
11075 /* Return nonzero if two operands that are suitable for PHI nodes are
11076 necessarily equal. Specifically, both ARG0 and ARG1 must be either
11077 SSA_NAME or invariant. Note that this is strictly an optimization.
11078 That is, callers of this function can directly call operand_equal_p
11079 and get the same result, only slower. */
11082 operand_equal_for_phi_arg_p (const_tree arg0
, const_tree arg1
)
11086 if (TREE_CODE (arg0
) == SSA_NAME
|| TREE_CODE (arg1
) == SSA_NAME
)
11088 return operand_equal_p (arg0
, arg1
, 0);
11091 /* Returns number of zeros at the end of binary representation of X. */
11094 num_ending_zeros (const_tree x
)
11096 return build_int_cst (TREE_TYPE (x
), wi::ctz (x
));
11100 #define WALK_SUBTREE(NODE) \
11103 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
11109 /* This is a subroutine of walk_tree that walks field of TYPE that are to
11110 be walked whenever a type is seen in the tree. Rest of operands and return
11111 value are as for walk_tree. */
11114 walk_type_fields (tree type
, walk_tree_fn func
, void *data
,
11115 hash_set
<tree
> *pset
, walk_tree_lh lh
)
11117 tree result
= NULL_TREE
;
11119 switch (TREE_CODE (type
))
11122 case REFERENCE_TYPE
:
11124 /* We have to worry about mutually recursive pointers. These can't
11125 be written in C. They can in Ada. It's pathological, but
11126 there's an ACATS test (c38102a) that checks it. Deal with this
11127 by checking if we're pointing to another pointer, that one
11128 points to another pointer, that one does too, and we have no htab.
11129 If so, get a hash table. We check three levels deep to avoid
11130 the cost of the hash table if we don't need one. */
11131 if (POINTER_TYPE_P (TREE_TYPE (type
))
11132 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type
)))
11133 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type
))))
11136 result
= walk_tree_without_duplicates (&TREE_TYPE (type
),
11144 /* ... fall through ... */
11147 WALK_SUBTREE (TREE_TYPE (type
));
11151 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type
));
11153 /* Fall through. */
11155 case FUNCTION_TYPE
:
11156 WALK_SUBTREE (TREE_TYPE (type
));
11160 /* We never want to walk into default arguments. */
11161 for (arg
= TYPE_ARG_TYPES (type
); arg
; arg
= TREE_CHAIN (arg
))
11162 WALK_SUBTREE (TREE_VALUE (arg
));
11167 /* Don't follow this nodes's type if a pointer for fear that
11168 we'll have infinite recursion. If we have a PSET, then we
11171 || (!POINTER_TYPE_P (TREE_TYPE (type
))
11172 && TREE_CODE (TREE_TYPE (type
)) != OFFSET_TYPE
))
11173 WALK_SUBTREE (TREE_TYPE (type
));
11174 WALK_SUBTREE (TYPE_DOMAIN (type
));
11178 WALK_SUBTREE (TREE_TYPE (type
));
11179 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type
));
11189 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
11190 called with the DATA and the address of each sub-tree. If FUNC returns a
11191 non-NULL value, the traversal is stopped, and the value returned by FUNC
11192 is returned. If PSET is non-NULL it is used to record the nodes visited,
11193 and to avoid visiting a node more than once. */
11196 walk_tree_1 (tree
*tp
, walk_tree_fn func
, void *data
,
11197 hash_set
<tree
> *pset
, walk_tree_lh lh
)
11199 enum tree_code code
;
11203 #define WALK_SUBTREE_TAIL(NODE) \
11207 goto tail_recurse; \
11212 /* Skip empty subtrees. */
11216 /* Don't walk the same tree twice, if the user has requested
11217 that we avoid doing so. */
11218 if (pset
&& pset
->add (*tp
))
11221 /* Call the function. */
11223 result
= (*func
) (tp
, &walk_subtrees
, data
);
11225 /* If we found something, return it. */
11229 code
= TREE_CODE (*tp
);
11231 /* Even if we didn't, FUNC may have decided that there was nothing
11232 interesting below this point in the tree. */
11233 if (!walk_subtrees
)
11235 /* But we still need to check our siblings. */
11236 if (code
== TREE_LIST
)
11237 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
11238 else if (code
== OMP_CLAUSE
)
11239 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11246 result
= (*lh
) (tp
, &walk_subtrees
, func
, data
, pset
);
11247 if (result
|| !walk_subtrees
)
11254 case IDENTIFIER_NODE
:
11261 case PLACEHOLDER_EXPR
:
11265 /* None of these have subtrees other than those already walked
11270 WALK_SUBTREE (TREE_VALUE (*tp
));
11271 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
11276 int len
= TREE_VEC_LENGTH (*tp
);
11281 /* Walk all elements but the first. */
11283 WALK_SUBTREE (TREE_VEC_ELT (*tp
, len
));
11285 /* Now walk the first one as a tail call. */
11286 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp
, 0));
11290 WALK_SUBTREE (TREE_REALPART (*tp
));
11291 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp
));
11295 unsigned HOST_WIDE_INT idx
;
11296 constructor_elt
*ce
;
11298 for (idx
= 0; vec_safe_iterate (CONSTRUCTOR_ELTS (*tp
), idx
, &ce
);
11300 WALK_SUBTREE (ce
->value
);
11305 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, 0));
11310 for (decl
= BIND_EXPR_VARS (*tp
); decl
; decl
= DECL_CHAIN (decl
))
11312 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
11313 into declarations that are just mentioned, rather than
11314 declared; they don't really belong to this part of the tree.
11315 And, we can see cycles: the initializer for a declaration
11316 can refer to the declaration itself. */
11317 WALK_SUBTREE (DECL_INITIAL (decl
));
11318 WALK_SUBTREE (DECL_SIZE (decl
));
11319 WALK_SUBTREE (DECL_SIZE_UNIT (decl
));
11321 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp
));
11324 case STATEMENT_LIST
:
11326 tree_stmt_iterator i
;
11327 for (i
= tsi_start (*tp
); !tsi_end_p (i
); tsi_next (&i
))
11328 WALK_SUBTREE (*tsi_stmt_ptr (i
));
11333 switch (OMP_CLAUSE_CODE (*tp
))
11335 case OMP_CLAUSE_GANG
:
11336 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 1));
11339 case OMP_CLAUSE_DEVICE_RESIDENT
:
11340 case OMP_CLAUSE_USE_DEVICE
:
11341 case OMP_CLAUSE_ASYNC
:
11342 case OMP_CLAUSE_WAIT
:
11343 case OMP_CLAUSE_WORKER
:
11344 case OMP_CLAUSE_VECTOR
:
11345 case OMP_CLAUSE_NUM_GANGS
:
11346 case OMP_CLAUSE_NUM_WORKERS
:
11347 case OMP_CLAUSE_VECTOR_LENGTH
:
11348 case OMP_CLAUSE_PRIVATE
:
11349 case OMP_CLAUSE_SHARED
:
11350 case OMP_CLAUSE_FIRSTPRIVATE
:
11351 case OMP_CLAUSE_COPYIN
:
11352 case OMP_CLAUSE_COPYPRIVATE
:
11353 case OMP_CLAUSE_FINAL
:
11354 case OMP_CLAUSE_IF
:
11355 case OMP_CLAUSE_NUM_THREADS
:
11356 case OMP_CLAUSE_SCHEDULE
:
11357 case OMP_CLAUSE_UNIFORM
:
11358 case OMP_CLAUSE_DEPEND
:
11359 case OMP_CLAUSE_NUM_TEAMS
:
11360 case OMP_CLAUSE_THREAD_LIMIT
:
11361 case OMP_CLAUSE_DEVICE
:
11362 case OMP_CLAUSE_DIST_SCHEDULE
:
11363 case OMP_CLAUSE_SAFELEN
:
11364 case OMP_CLAUSE_SIMDLEN
:
11365 case OMP_CLAUSE__LOOPTEMP_
:
11366 case OMP_CLAUSE__SIMDUID_
:
11367 case OMP_CLAUSE__CILK_FOR_COUNT_
:
11368 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 0));
11371 case OMP_CLAUSE_INDEPENDENT
:
11372 case OMP_CLAUSE_NOWAIT
:
11373 case OMP_CLAUSE_ORDERED
:
11374 case OMP_CLAUSE_DEFAULT
:
11375 case OMP_CLAUSE_UNTIED
:
11376 case OMP_CLAUSE_MERGEABLE
:
11377 case OMP_CLAUSE_PROC_BIND
:
11378 case OMP_CLAUSE_INBRANCH
:
11379 case OMP_CLAUSE_NOTINBRANCH
:
11380 case OMP_CLAUSE_FOR
:
11381 case OMP_CLAUSE_PARALLEL
:
11382 case OMP_CLAUSE_SECTIONS
:
11383 case OMP_CLAUSE_TASKGROUP
:
11384 case OMP_CLAUSE_AUTO
:
11385 case OMP_CLAUSE_SEQ
:
11386 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11388 case OMP_CLAUSE_LASTPRIVATE
:
11389 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
11390 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp
));
11391 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11393 case OMP_CLAUSE_COLLAPSE
:
11396 for (i
= 0; i
< 3; i
++)
11397 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
11398 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11401 case OMP_CLAUSE_LINEAR
:
11402 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
11403 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STEP (*tp
));
11404 WALK_SUBTREE (OMP_CLAUSE_LINEAR_STMT (*tp
));
11405 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11407 case OMP_CLAUSE_ALIGNED
:
11408 case OMP_CLAUSE_FROM
:
11409 case OMP_CLAUSE_TO
:
11410 case OMP_CLAUSE_MAP
:
11411 case OMP_CLAUSE__CACHE_
:
11412 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
11413 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 1));
11414 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11416 case OMP_CLAUSE_REDUCTION
:
11419 for (i
= 0; i
< 4; i
++)
11420 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
11421 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
11425 gcc_unreachable ();
11433 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
11434 But, we only want to walk once. */
11435 len
= (TREE_OPERAND (*tp
, 3) == TREE_OPERAND (*tp
, 1)) ? 2 : 3;
11436 for (i
= 0; i
< len
; ++i
)
11437 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
11438 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
));
11442 /* If this is a TYPE_DECL, walk into the fields of the type that it's
11443 defining. We only want to walk into these fields of a type in this
11444 case and not in the general case of a mere reference to the type.
11446 The criterion is as follows: if the field can be an expression, it
11447 must be walked only here. This should be in keeping with the fields
11448 that are directly gimplified in gimplify_type_sizes in order for the
11449 mark/copy-if-shared/unmark machinery of the gimplifier to work with
11450 variable-sized types.
11452 Note that DECLs get walked as part of processing the BIND_EXPR. */
11453 if (TREE_CODE (DECL_EXPR_DECL (*tp
)) == TYPE_DECL
)
11455 tree
*type_p
= &TREE_TYPE (DECL_EXPR_DECL (*tp
));
11456 if (TREE_CODE (*type_p
) == ERROR_MARK
)
11459 /* Call the function for the type. See if it returns anything or
11460 doesn't want us to continue. If we are to continue, walk both
11461 the normal fields and those for the declaration case. */
11462 result
= (*func
) (type_p
, &walk_subtrees
, data
);
11463 if (result
|| !walk_subtrees
)
11466 /* But do not walk a pointed-to type since it may itself need to
11467 be walked in the declaration case if it isn't anonymous. */
11468 if (!POINTER_TYPE_P (*type_p
))
11470 result
= walk_type_fields (*type_p
, func
, data
, pset
, lh
);
11475 /* If this is a record type, also walk the fields. */
11476 if (RECORD_OR_UNION_TYPE_P (*type_p
))
11480 for (field
= TYPE_FIELDS (*type_p
); field
;
11481 field
= DECL_CHAIN (field
))
11483 /* We'd like to look at the type of the field, but we can
11484 easily get infinite recursion. So assume it's pointed
11485 to elsewhere in the tree. Also, ignore things that
11487 if (TREE_CODE (field
) != FIELD_DECL
)
11490 WALK_SUBTREE (DECL_FIELD_OFFSET (field
));
11491 WALK_SUBTREE (DECL_SIZE (field
));
11492 WALK_SUBTREE (DECL_SIZE_UNIT (field
));
11493 if (TREE_CODE (*type_p
) == QUAL_UNION_TYPE
)
11494 WALK_SUBTREE (DECL_QUALIFIER (field
));
11498 /* Same for scalar types. */
11499 else if (TREE_CODE (*type_p
) == BOOLEAN_TYPE
11500 || TREE_CODE (*type_p
) == ENUMERAL_TYPE
11501 || TREE_CODE (*type_p
) == INTEGER_TYPE
11502 || TREE_CODE (*type_p
) == FIXED_POINT_TYPE
11503 || TREE_CODE (*type_p
) == REAL_TYPE
)
11505 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p
));
11506 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p
));
11509 WALK_SUBTREE (TYPE_SIZE (*type_p
));
11510 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p
));
11515 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code
)))
11519 /* Walk over all the sub-trees of this operand. */
11520 len
= TREE_OPERAND_LENGTH (*tp
);
11522 /* Go through the subtrees. We need to do this in forward order so
11523 that the scope of a FOR_EXPR is handled properly. */
11526 for (i
= 0; i
< len
- 1; ++i
)
11527 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
11528 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
- 1));
11531 /* If this is a type, walk the needed fields in the type. */
11532 else if (TYPE_P (*tp
))
11533 return walk_type_fields (*tp
, func
, data
, pset
, lh
);
11537 /* We didn't find what we were looking for. */
11540 #undef WALK_SUBTREE_TAIL
11542 #undef WALK_SUBTREE
11544 /* Like walk_tree, but does not walk duplicate nodes more than once. */
11547 walk_tree_without_duplicates_1 (tree
*tp
, walk_tree_fn func
, void *data
,
11552 hash_set
<tree
> pset
;
11553 result
= walk_tree_1 (tp
, func
, data
, &pset
, lh
);
11559 tree_block (tree t
)
11561 const enum tree_code_class c
= TREE_CODE_CLASS (TREE_CODE (t
));
11563 if (IS_EXPR_CODE_CLASS (c
))
11564 return LOCATION_BLOCK (t
->exp
.locus
);
11565 gcc_unreachable ();
11570 tree_set_block (tree t
, tree b
)
11572 const enum tree_code_class c
= TREE_CODE_CLASS (TREE_CODE (t
));
11574 if (IS_EXPR_CODE_CLASS (c
))
11577 t
->exp
.locus
= COMBINE_LOCATION_DATA (line_table
, t
->exp
.locus
, b
);
11579 t
->exp
.locus
= LOCATION_LOCUS (t
->exp
.locus
);
11582 gcc_unreachable ();
11585 /* Create a nameless artificial label and put it in the current
11586 function context. The label has a location of LOC. Returns the
11587 newly created label. */
11590 create_artificial_label (location_t loc
)
11592 tree lab
= build_decl (loc
,
11593 LABEL_DECL
, NULL_TREE
, void_type_node
);
11595 DECL_ARTIFICIAL (lab
) = 1;
11596 DECL_IGNORED_P (lab
) = 1;
11597 DECL_CONTEXT (lab
) = current_function_decl
;
11601 /* Given a tree, try to return a useful variable name that we can use
11602 to prefix a temporary that is being assigned the value of the tree.
11603 I.E. given <temp> = &A, return A. */
11608 tree stripped_decl
;
11611 STRIP_NOPS (stripped_decl
);
11612 if (DECL_P (stripped_decl
) && DECL_NAME (stripped_decl
))
11613 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl
));
11614 else if (TREE_CODE (stripped_decl
) == SSA_NAME
)
11616 tree name
= SSA_NAME_IDENTIFIER (stripped_decl
);
11619 return IDENTIFIER_POINTER (name
);
11623 switch (TREE_CODE (stripped_decl
))
11626 return get_name (TREE_OPERAND (stripped_decl
, 0));
11633 /* Return true if TYPE has a variable argument list. */
11636 stdarg_p (const_tree fntype
)
11638 function_args_iterator args_iter
;
11639 tree n
= NULL_TREE
, t
;
11644 FOREACH_FUNCTION_ARGS (fntype
, t
, args_iter
)
11649 return n
!= NULL_TREE
&& n
!= void_type_node
;
11652 /* Return true if TYPE has a prototype. */
11655 prototype_p (const_tree fntype
)
11659 gcc_assert (fntype
!= NULL_TREE
);
11661 t
= TYPE_ARG_TYPES (fntype
);
11662 return (t
!= NULL_TREE
);
11665 /* If BLOCK is inlined from an __attribute__((__artificial__))
11666 routine, return pointer to location from where it has been
11669 block_nonartificial_location (tree block
)
11671 location_t
*ret
= NULL
;
11673 while (block
&& TREE_CODE (block
) == BLOCK
11674 && BLOCK_ABSTRACT_ORIGIN (block
))
11676 tree ao
= BLOCK_ABSTRACT_ORIGIN (block
);
11678 while (TREE_CODE (ao
) == BLOCK
11679 && BLOCK_ABSTRACT_ORIGIN (ao
)
11680 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
11681 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
11683 if (TREE_CODE (ao
) == FUNCTION_DECL
)
11685 /* If AO is an artificial inline, point RET to the
11686 call site locus at which it has been inlined and continue
11687 the loop, in case AO's caller is also an artificial
11689 if (DECL_DECLARED_INLINE_P (ao
)
11690 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao
)))
11691 ret
= &BLOCK_SOURCE_LOCATION (block
);
11695 else if (TREE_CODE (ao
) != BLOCK
)
11698 block
= BLOCK_SUPERCONTEXT (block
);
11704 /* If EXP is inlined from an __attribute__((__artificial__))
11705 function, return the location of the original call expression. */
11708 tree_nonartificial_location (tree exp
)
11710 location_t
*loc
= block_nonartificial_location (TREE_BLOCK (exp
));
11715 return EXPR_LOCATION (exp
);
11719 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11722 /* Return the hash code code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11725 cl_option_hasher::hash (tree x
)
11727 const_tree
const t
= x
;
11731 hashval_t hash
= 0;
11733 if (TREE_CODE (t
) == OPTIMIZATION_NODE
)
11735 p
= (const char *)TREE_OPTIMIZATION (t
);
11736 len
= sizeof (struct cl_optimization
);
11739 else if (TREE_CODE (t
) == TARGET_OPTION_NODE
)
11740 return cl_target_option_hash (TREE_TARGET_OPTION (t
));
11743 gcc_unreachable ();
11745 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11747 for (i
= 0; i
< len
; i
++)
11749 hash
= (hash
<< 4) ^ ((i
<< 2) | p
[i
]);
11754 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11755 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11759 cl_option_hasher::equal (tree x
, tree y
)
11761 const_tree
const xt
= x
;
11762 const_tree
const yt
= y
;
11767 if (TREE_CODE (xt
) != TREE_CODE (yt
))
11770 if (TREE_CODE (xt
) == OPTIMIZATION_NODE
)
11772 xp
= (const char *)TREE_OPTIMIZATION (xt
);
11773 yp
= (const char *)TREE_OPTIMIZATION (yt
);
11774 len
= sizeof (struct cl_optimization
);
11777 else if (TREE_CODE (xt
) == TARGET_OPTION_NODE
)
11779 return cl_target_option_eq (TREE_TARGET_OPTION (xt
),
11780 TREE_TARGET_OPTION (yt
));
11784 gcc_unreachable ();
11786 return (memcmp (xp
, yp
, len
) == 0);
11789 /* Build an OPTIMIZATION_NODE based on the options in OPTS. */
11792 build_optimization_node (struct gcc_options
*opts
)
11796 /* Use the cache of optimization nodes. */
11798 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node
),
11801 tree
*slot
= cl_option_hash_table
->find_slot (cl_optimization_node
, INSERT
);
11805 /* Insert this one into the hash table. */
11806 t
= cl_optimization_node
;
11809 /* Make a new node for next time round. */
11810 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
11816 /* Build a TARGET_OPTION_NODE based on the options in OPTS. */
11819 build_target_option_node (struct gcc_options
*opts
)
11823 /* Use the cache of optimization nodes. */
11825 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node
),
11828 tree
*slot
= cl_option_hash_table
->find_slot (cl_target_option_node
, INSERT
);
11832 /* Insert this one into the hash table. */
11833 t
= cl_target_option_node
;
11836 /* Make a new node for next time round. */
11837 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
11843 /* Clear TREE_TARGET_GLOBALS of all TARGET_OPTION_NODE trees,
11844 so that they aren't saved during PCH writing. */
11847 prepare_target_option_nodes_for_pch (void)
11849 hash_table
<cl_option_hasher
>::iterator iter
= cl_option_hash_table
->begin ();
11850 for (; iter
!= cl_option_hash_table
->end (); ++iter
)
11851 if (TREE_CODE (*iter
) == TARGET_OPTION_NODE
)
11852 TREE_TARGET_GLOBALS (*iter
) = NULL
;
11855 /* Determine the "ultimate origin" of a block. The block may be an inlined
11856 instance of an inlined instance of a block which is local to an inline
11857 function, so we have to trace all of the way back through the origin chain
11858 to find out what sort of node actually served as the original seed for the
11862 block_ultimate_origin (const_tree block
)
11864 tree immediate_origin
= BLOCK_ABSTRACT_ORIGIN (block
);
11866 /* BLOCK_ABSTRACT_ORIGIN can point to itself; ignore that if
11867 we're trying to output the abstract instance of this function. */
11868 if (BLOCK_ABSTRACT (block
) && immediate_origin
== block
)
11871 if (immediate_origin
== NULL_TREE
)
11876 tree lookahead
= immediate_origin
;
11880 ret_val
= lookahead
;
11881 lookahead
= (TREE_CODE (ret_val
) == BLOCK
11882 ? BLOCK_ABSTRACT_ORIGIN (ret_val
) : NULL
);
11884 while (lookahead
!= NULL
&& lookahead
!= ret_val
);
11886 /* The block's abstract origin chain may not be the *ultimate* origin of
11887 the block. It could lead to a DECL that has an abstract origin set.
11888 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
11889 will give us if it has one). Note that DECL's abstract origins are
11890 supposed to be the most distant ancestor (or so decl_ultimate_origin
11891 claims), so we don't need to loop following the DECL origins. */
11892 if (DECL_P (ret_val
))
11893 return DECL_ORIGIN (ret_val
);
11899 /* Return true iff conversion from INNER_TYPE to OUTER_TYPE generates
11903 tree_nop_conversion_p (const_tree outer_type
, const_tree inner_type
)
11905 /* Use precision rather then machine mode when we can, which gives
11906 the correct answer even for submode (bit-field) types. */
11907 if ((INTEGRAL_TYPE_P (outer_type
)
11908 || POINTER_TYPE_P (outer_type
)
11909 || TREE_CODE (outer_type
) == OFFSET_TYPE
)
11910 && (INTEGRAL_TYPE_P (inner_type
)
11911 || POINTER_TYPE_P (inner_type
)
11912 || TREE_CODE (inner_type
) == OFFSET_TYPE
))
11913 return TYPE_PRECISION (outer_type
) == TYPE_PRECISION (inner_type
);
11915 /* Otherwise fall back on comparing machine modes (e.g. for
11916 aggregate types, floats). */
11917 return TYPE_MODE (outer_type
) == TYPE_MODE (inner_type
);
11920 /* Return true iff conversion in EXP generates no instruction. Mark
11921 it inline so that we fully inline into the stripping functions even
11922 though we have two uses of this function. */
11925 tree_nop_conversion (const_tree exp
)
11927 tree outer_type
, inner_type
;
11929 if (!CONVERT_EXPR_P (exp
)
11930 && TREE_CODE (exp
) != NON_LVALUE_EXPR
)
11932 if (TREE_OPERAND (exp
, 0) == error_mark_node
)
11935 outer_type
= TREE_TYPE (exp
);
11936 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11941 return tree_nop_conversion_p (outer_type
, inner_type
);
11944 /* Return true iff conversion in EXP generates no instruction. Don't
11945 consider conversions changing the signedness. */
11948 tree_sign_nop_conversion (const_tree exp
)
11950 tree outer_type
, inner_type
;
11952 if (!tree_nop_conversion (exp
))
11955 outer_type
= TREE_TYPE (exp
);
11956 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11958 return (TYPE_UNSIGNED (outer_type
) == TYPE_UNSIGNED (inner_type
)
11959 && POINTER_TYPE_P (outer_type
) == POINTER_TYPE_P (inner_type
));
11962 /* Strip conversions from EXP according to tree_nop_conversion and
11963 return the resulting expression. */
11966 tree_strip_nop_conversions (tree exp
)
11968 while (tree_nop_conversion (exp
))
11969 exp
= TREE_OPERAND (exp
, 0);
11973 /* Strip conversions from EXP according to tree_sign_nop_conversion
11974 and return the resulting expression. */
11977 tree_strip_sign_nop_conversions (tree exp
)
11979 while (tree_sign_nop_conversion (exp
))
11980 exp
= TREE_OPERAND (exp
, 0);
11984 /* Avoid any floating point extensions from EXP. */
11986 strip_float_extensions (tree exp
)
11988 tree sub
, expt
, subt
;
11990 /* For floating point constant look up the narrowest type that can hold
11991 it properly and handle it like (type)(narrowest_type)constant.
11992 This way we can optimize for instance a=a*2.0 where "a" is float
11993 but 2.0 is double constant. */
11994 if (TREE_CODE (exp
) == REAL_CST
&& !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp
)))
11996 REAL_VALUE_TYPE orig
;
11999 orig
= TREE_REAL_CST (exp
);
12000 if (TYPE_PRECISION (TREE_TYPE (exp
)) > TYPE_PRECISION (float_type_node
)
12001 && exact_real_truncate (TYPE_MODE (float_type_node
), &orig
))
12002 type
= float_type_node
;
12003 else if (TYPE_PRECISION (TREE_TYPE (exp
))
12004 > TYPE_PRECISION (double_type_node
)
12005 && exact_real_truncate (TYPE_MODE (double_type_node
), &orig
))
12006 type
= double_type_node
;
12008 return build_real (type
, real_value_truncate (TYPE_MODE (type
), orig
));
12011 if (!CONVERT_EXPR_P (exp
))
12014 sub
= TREE_OPERAND (exp
, 0);
12015 subt
= TREE_TYPE (sub
);
12016 expt
= TREE_TYPE (exp
);
12018 if (!FLOAT_TYPE_P (subt
))
12021 if (DECIMAL_FLOAT_TYPE_P (expt
) != DECIMAL_FLOAT_TYPE_P (subt
))
12024 if (TYPE_PRECISION (subt
) > TYPE_PRECISION (expt
))
12027 return strip_float_extensions (sub
);
12030 /* Strip out all handled components that produce invariant
12034 strip_invariant_refs (const_tree op
)
12036 while (handled_component_p (op
))
12038 switch (TREE_CODE (op
))
12041 case ARRAY_RANGE_REF
:
12042 if (!is_gimple_constant (TREE_OPERAND (op
, 1))
12043 || TREE_OPERAND (op
, 2) != NULL_TREE
12044 || TREE_OPERAND (op
, 3) != NULL_TREE
)
12048 case COMPONENT_REF
:
12049 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
12055 op
= TREE_OPERAND (op
, 0);
12061 static GTY(()) tree gcc_eh_personality_decl
;
12063 /* Return the GCC personality function decl. */
12066 lhd_gcc_personality (void)
12068 if (!gcc_eh_personality_decl
)
12069 gcc_eh_personality_decl
= build_personality_function ("gcc");
12070 return gcc_eh_personality_decl
;
12073 /* TARGET is a call target of GIMPLE call statement
12074 (obtained by gimple_call_fn). Return true if it is
12075 OBJ_TYPE_REF representing an virtual call of C++ method.
12076 (As opposed to OBJ_TYPE_REF representing objc calls
12077 through a cast where middle-end devirtualization machinery
12081 virtual_method_call_p (const_tree target
)
12083 if (TREE_CODE (target
) != OBJ_TYPE_REF
)
12085 tree t
= TREE_TYPE (target
);
12086 gcc_checking_assert (TREE_CODE (t
) == POINTER_TYPE
);
12088 if (TREE_CODE (t
) == FUNCTION_TYPE
)
12090 gcc_checking_assert (TREE_CODE (t
) == METHOD_TYPE
);
12091 /* If we do not have BINFO associated, it means that type was built
12092 without devirtualization enabled. Do not consider this a virtual
12094 if (!TYPE_BINFO (obj_type_ref_class (target
)))
12099 /* REF is OBJ_TYPE_REF, return the class the ref corresponds to. */
12102 obj_type_ref_class (const_tree ref
)
12104 gcc_checking_assert (TREE_CODE (ref
) == OBJ_TYPE_REF
);
12105 ref
= TREE_TYPE (ref
);
12106 gcc_checking_assert (TREE_CODE (ref
) == POINTER_TYPE
);
12107 ref
= TREE_TYPE (ref
);
12108 /* We look for type THIS points to. ObjC also builds
12109 OBJ_TYPE_REF with non-method calls, Their first parameter
12110 ID however also corresponds to class type. */
12111 gcc_checking_assert (TREE_CODE (ref
) == METHOD_TYPE
12112 || TREE_CODE (ref
) == FUNCTION_TYPE
);
12113 ref
= TREE_VALUE (TYPE_ARG_TYPES (ref
));
12114 gcc_checking_assert (TREE_CODE (ref
) == POINTER_TYPE
);
12115 return TREE_TYPE (ref
);
12118 /* Lookup sub-BINFO of BINFO of TYPE at offset POS. */
12121 lookup_binfo_at_offset (tree binfo
, tree type
, HOST_WIDE_INT pos
)
12124 tree base_binfo
, b
;
12126 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
12127 if (pos
== tree_to_shwi (BINFO_OFFSET (base_binfo
))
12128 && types_same_for_odr (TREE_TYPE (base_binfo
), type
))
12130 else if ((b
= lookup_binfo_at_offset (base_binfo
, type
, pos
)) != NULL
)
12135 /* Try to find a base info of BINFO that would have its field decl at offset
12136 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
12137 found, return, otherwise return NULL_TREE. */
12140 get_binfo_at_offset (tree binfo
, HOST_WIDE_INT offset
, tree expected_type
)
12142 tree type
= BINFO_TYPE (binfo
);
12146 HOST_WIDE_INT pos
, size
;
12150 if (types_same_for_odr (type
, expected_type
))
12155 for (fld
= TYPE_FIELDS (type
); fld
; fld
= DECL_CHAIN (fld
))
12157 if (TREE_CODE (fld
) != FIELD_DECL
|| !DECL_ARTIFICIAL (fld
))
12160 pos
= int_bit_position (fld
);
12161 size
= tree_to_uhwi (DECL_SIZE (fld
));
12162 if (pos
<= offset
&& (pos
+ size
) > offset
)
12165 if (!fld
|| TREE_CODE (TREE_TYPE (fld
)) != RECORD_TYPE
)
12168 /* Offset 0 indicates the primary base, whose vtable contents are
12169 represented in the binfo for the derived class. */
12170 else if (offset
!= 0)
12172 tree found_binfo
= NULL
, base_binfo
;
12173 /* Offsets in BINFO are in bytes relative to the whole structure
12174 while POS is in bits relative to the containing field. */
12175 int binfo_offset
= (tree_to_shwi (BINFO_OFFSET (binfo
)) + pos
12178 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
12179 if (tree_to_shwi (BINFO_OFFSET (base_binfo
)) == binfo_offset
12180 && types_same_for_odr (TREE_TYPE (base_binfo
), TREE_TYPE (fld
)))
12182 found_binfo
= base_binfo
;
12186 binfo
= found_binfo
;
12188 binfo
= lookup_binfo_at_offset (binfo
, TREE_TYPE (fld
),
12192 type
= TREE_TYPE (fld
);
12197 /* Returns true if X is a typedef decl. */
12200 is_typedef_decl (const_tree x
)
12202 return (x
&& TREE_CODE (x
) == TYPE_DECL
12203 && DECL_ORIGINAL_TYPE (x
) != NULL_TREE
);
12206 /* Returns true iff TYPE is a type variant created for a typedef. */
12209 typedef_variant_p (const_tree type
)
12211 return is_typedef_decl (TYPE_NAME (type
));
12214 /* Warn about a use of an identifier which was marked deprecated. */
12216 warn_deprecated_use (tree node
, tree attr
)
12220 if (node
== 0 || !warn_deprecated_decl
)
12226 attr
= DECL_ATTRIBUTES (node
);
12227 else if (TYPE_P (node
))
12229 tree decl
= TYPE_STUB_DECL (node
);
12231 attr
= lookup_attribute ("deprecated",
12232 TYPE_ATTRIBUTES (TREE_TYPE (decl
)));
12237 attr
= lookup_attribute ("deprecated", attr
);
12240 msg
= TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr
)));
12248 w
= warning (OPT_Wdeprecated_declarations
,
12249 "%qD is deprecated: %s", node
, msg
);
12251 w
= warning (OPT_Wdeprecated_declarations
,
12252 "%qD is deprecated", node
);
12254 inform (DECL_SOURCE_LOCATION (node
), "declared here");
12256 else if (TYPE_P (node
))
12258 tree what
= NULL_TREE
;
12259 tree decl
= TYPE_STUB_DECL (node
);
12261 if (TYPE_NAME (node
))
12263 if (TREE_CODE (TYPE_NAME (node
)) == IDENTIFIER_NODE
)
12264 what
= TYPE_NAME (node
);
12265 else if (TREE_CODE (TYPE_NAME (node
)) == TYPE_DECL
12266 && DECL_NAME (TYPE_NAME (node
)))
12267 what
= DECL_NAME (TYPE_NAME (node
));
12275 w
= warning (OPT_Wdeprecated_declarations
,
12276 "%qE is deprecated: %s", what
, msg
);
12278 w
= warning (OPT_Wdeprecated_declarations
,
12279 "%qE is deprecated", what
);
12284 w
= warning (OPT_Wdeprecated_declarations
,
12285 "type is deprecated: %s", msg
);
12287 w
= warning (OPT_Wdeprecated_declarations
,
12288 "type is deprecated");
12291 inform (DECL_SOURCE_LOCATION (decl
), "declared here");
12298 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated: %s",
12301 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated", what
);
12306 warning (OPT_Wdeprecated_declarations
, "type is deprecated: %s",
12309 warning (OPT_Wdeprecated_declarations
, "type is deprecated");
12315 /* Return true if REF has a COMPONENT_REF with a bit-field field declaration
12316 somewhere in it. */
12319 contains_bitfld_component_ref_p (const_tree ref
)
12321 while (handled_component_p (ref
))
12323 if (TREE_CODE (ref
) == COMPONENT_REF
12324 && DECL_BIT_FIELD (TREE_OPERAND (ref
, 1)))
12326 ref
= TREE_OPERAND (ref
, 0);
12332 /* Try to determine whether a TRY_CATCH expression can fall through.
12333 This is a subroutine of block_may_fallthru. */
12336 try_catch_may_fallthru (const_tree stmt
)
12338 tree_stmt_iterator i
;
12340 /* If the TRY block can fall through, the whole TRY_CATCH can
12342 if (block_may_fallthru (TREE_OPERAND (stmt
, 0)))
12345 i
= tsi_start (TREE_OPERAND (stmt
, 1));
12346 switch (TREE_CODE (tsi_stmt (i
)))
12349 /* We expect to see a sequence of CATCH_EXPR trees, each with a
12350 catch expression and a body. The whole TRY_CATCH may fall
12351 through iff any of the catch bodies falls through. */
12352 for (; !tsi_end_p (i
); tsi_next (&i
))
12354 if (block_may_fallthru (CATCH_BODY (tsi_stmt (i
))))
12359 case EH_FILTER_EXPR
:
12360 /* The exception filter expression only matters if there is an
12361 exception. If the exception does not match EH_FILTER_TYPES,
12362 we will execute EH_FILTER_FAILURE, and we will fall through
12363 if that falls through. If the exception does match
12364 EH_FILTER_TYPES, the stack unwinder will continue up the
12365 stack, so we will not fall through. We don't know whether we
12366 will throw an exception which matches EH_FILTER_TYPES or not,
12367 so we just ignore EH_FILTER_TYPES and assume that we might
12368 throw an exception which doesn't match. */
12369 return block_may_fallthru (EH_FILTER_FAILURE (tsi_stmt (i
)));
12372 /* This case represents statements to be executed when an
12373 exception occurs. Those statements are implicitly followed
12374 by a RESX statement to resume execution after the exception.
12375 So in this case the TRY_CATCH never falls through. */
12380 /* Try to determine if we can fall out of the bottom of BLOCK. This guess
12381 need not be 100% accurate; simply be conservative and return true if we
12382 don't know. This is used only to avoid stupidly generating extra code.
12383 If we're wrong, we'll just delete the extra code later. */
12386 block_may_fallthru (const_tree block
)
12388 /* This CONST_CAST is okay because expr_last returns its argument
12389 unmodified and we assign it to a const_tree. */
12390 const_tree stmt
= expr_last (CONST_CAST_TREE (block
));
12392 switch (stmt
? TREE_CODE (stmt
) : ERROR_MARK
)
12396 /* Easy cases. If the last statement of the block implies
12397 control transfer, then we can't fall through. */
12401 /* If SWITCH_LABELS is set, this is lowered, and represents a
12402 branch to a selected label and hence can not fall through.
12403 Otherwise SWITCH_BODY is set, and the switch can fall
12405 return SWITCH_LABELS (stmt
) == NULL_TREE
;
12408 if (block_may_fallthru (COND_EXPR_THEN (stmt
)))
12410 return block_may_fallthru (COND_EXPR_ELSE (stmt
));
12413 return block_may_fallthru (BIND_EXPR_BODY (stmt
));
12415 case TRY_CATCH_EXPR
:
12416 return try_catch_may_fallthru (stmt
);
12418 case TRY_FINALLY_EXPR
:
12419 /* The finally clause is always executed after the try clause,
12420 so if it does not fall through, then the try-finally will not
12421 fall through. Otherwise, if the try clause does not fall
12422 through, then when the finally clause falls through it will
12423 resume execution wherever the try clause was going. So the
12424 whole try-finally will only fall through if both the try
12425 clause and the finally clause fall through. */
12426 return (block_may_fallthru (TREE_OPERAND (stmt
, 0))
12427 && block_may_fallthru (TREE_OPERAND (stmt
, 1)));
12430 if (TREE_CODE (TREE_OPERAND (stmt
, 1)) == CALL_EXPR
)
12431 stmt
= TREE_OPERAND (stmt
, 1);
12437 /* Functions that do not return do not fall through. */
12438 return (call_expr_flags (stmt
) & ECF_NORETURN
) == 0;
12440 case CLEANUP_POINT_EXPR
:
12441 return block_may_fallthru (TREE_OPERAND (stmt
, 0));
12444 return block_may_fallthru (TREE_OPERAND (stmt
, 1));
12450 return lang_hooks
.block_may_fallthru (stmt
);
12454 /* True if we are using EH to handle cleanups. */
12455 static bool using_eh_for_cleanups_flag
= false;
12457 /* This routine is called from front ends to indicate eh should be used for
12460 using_eh_for_cleanups (void)
12462 using_eh_for_cleanups_flag
= true;
12465 /* Query whether EH is used for cleanups. */
12467 using_eh_for_cleanups_p (void)
12469 return using_eh_for_cleanups_flag
;
12472 /* Wrapper for tree_code_name to ensure that tree code is valid */
12474 get_tree_code_name (enum tree_code code
)
12476 const char *invalid
= "<invalid tree code>";
12478 if (code
>= MAX_TREE_CODES
)
12481 return tree_code_name
[code
];
12484 /* Drops the TREE_OVERFLOW flag from T. */
12487 drop_tree_overflow (tree t
)
12489 gcc_checking_assert (TREE_OVERFLOW (t
));
12491 /* For tree codes with a sharing machinery re-build the result. */
12492 if (TREE_CODE (t
) == INTEGER_CST
)
12493 return wide_int_to_tree (TREE_TYPE (t
), t
);
12495 /* Otherwise, as all tcc_constants are possibly shared, copy the node
12496 and drop the flag. */
12498 TREE_OVERFLOW (t
) = 0;
12502 /* Given a memory reference expression T, return its base address.
12503 The base address of a memory reference expression is the main
12504 object being referenced. For instance, the base address for
12505 'array[i].fld[j]' is 'array'. You can think of this as stripping
12506 away the offset part from a memory address.
12508 This function calls handled_component_p to strip away all the inner
12509 parts of the memory reference until it reaches the base object. */
12512 get_base_address (tree t
)
12514 while (handled_component_p (t
))
12515 t
= TREE_OPERAND (t
, 0);
12517 if ((TREE_CODE (t
) == MEM_REF
12518 || TREE_CODE (t
) == TARGET_MEM_REF
)
12519 && TREE_CODE (TREE_OPERAND (t
, 0)) == ADDR_EXPR
)
12520 t
= TREE_OPERAND (TREE_OPERAND (t
, 0), 0);
12522 /* ??? Either the alias oracle or all callers need to properly deal
12523 with WITH_SIZE_EXPRs before we can look through those. */
12524 if (TREE_CODE (t
) == WITH_SIZE_EXPR
)
12530 /* Return a tree of sizetype representing the size, in bytes, of the element
12531 of EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12534 array_ref_element_size (tree exp
)
12536 tree aligned_size
= TREE_OPERAND (exp
, 3);
12537 tree elmt_type
= TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp
, 0)));
12538 location_t loc
= EXPR_LOCATION (exp
);
12540 /* If a size was specified in the ARRAY_REF, it's the size measured
12541 in alignment units of the element type. So multiply by that value. */
12544 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12545 sizetype from another type of the same width and signedness. */
12546 if (TREE_TYPE (aligned_size
) != sizetype
)
12547 aligned_size
= fold_convert_loc (loc
, sizetype
, aligned_size
);
12548 return size_binop_loc (loc
, MULT_EXPR
, aligned_size
,
12549 size_int (TYPE_ALIGN_UNIT (elmt_type
)));
12552 /* Otherwise, take the size from that of the element type. Substitute
12553 any PLACEHOLDER_EXPR that we have. */
12555 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (elmt_type
), exp
);
12558 /* Return a tree representing the lower bound of the array mentioned in
12559 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12562 array_ref_low_bound (tree exp
)
12564 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp
, 0)));
12566 /* If a lower bound is specified in EXP, use it. */
12567 if (TREE_OPERAND (exp
, 2))
12568 return TREE_OPERAND (exp
, 2);
12570 /* Otherwise, if there is a domain type and it has a lower bound, use it,
12571 substituting for a PLACEHOLDER_EXPR as needed. */
12572 if (domain_type
&& TYPE_MIN_VALUE (domain_type
))
12573 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MIN_VALUE (domain_type
), exp
);
12575 /* Otherwise, return a zero of the appropriate type. */
12576 return build_int_cst (TREE_TYPE (TREE_OPERAND (exp
, 1)), 0);
12579 /* Return a tree representing the upper bound of the array mentioned in
12580 EXP, an ARRAY_REF or an ARRAY_RANGE_REF. */
12583 array_ref_up_bound (tree exp
)
12585 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (TREE_OPERAND (exp
, 0)));
12587 /* If there is a domain type and it has an upper bound, use it, substituting
12588 for a PLACEHOLDER_EXPR as needed. */
12589 if (domain_type
&& TYPE_MAX_VALUE (domain_type
))
12590 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_MAX_VALUE (domain_type
), exp
);
12592 /* Otherwise fail. */
12596 /* Returns true if REF is an array reference to an array at the end of
12597 a structure. If this is the case, the array may be allocated larger
12598 than its upper bound implies. */
12601 array_at_struct_end_p (tree ref
)
12603 if (TREE_CODE (ref
) != ARRAY_REF
12604 && TREE_CODE (ref
) != ARRAY_RANGE_REF
)
12607 while (handled_component_p (ref
))
12609 /* If the reference chain contains a component reference to a
12610 non-union type and there follows another field the reference
12611 is not at the end of a structure. */
12612 if (TREE_CODE (ref
) == COMPONENT_REF
12613 && TREE_CODE (TREE_TYPE (TREE_OPERAND (ref
, 0))) == RECORD_TYPE
)
12615 tree nextf
= DECL_CHAIN (TREE_OPERAND (ref
, 1));
12616 while (nextf
&& TREE_CODE (nextf
) != FIELD_DECL
)
12617 nextf
= DECL_CHAIN (nextf
);
12622 ref
= TREE_OPERAND (ref
, 0);
12625 /* If the reference is based on a declared entity, the size of the array
12626 is constrained by its given domain. */
12633 /* Return a tree representing the offset, in bytes, of the field referenced
12634 by EXP. This does not include any offset in DECL_FIELD_BIT_OFFSET. */
12637 component_ref_field_offset (tree exp
)
12639 tree aligned_offset
= TREE_OPERAND (exp
, 2);
12640 tree field
= TREE_OPERAND (exp
, 1);
12641 location_t loc
= EXPR_LOCATION (exp
);
12643 /* If an offset was specified in the COMPONENT_REF, it's the offset measured
12644 in units of DECL_OFFSET_ALIGN / BITS_PER_UNIT. So multiply by that
12646 if (aligned_offset
)
12648 /* ??? tree_ssa_useless_type_conversion will eliminate casts to
12649 sizetype from another type of the same width and signedness. */
12650 if (TREE_TYPE (aligned_offset
) != sizetype
)
12651 aligned_offset
= fold_convert_loc (loc
, sizetype
, aligned_offset
);
12652 return size_binop_loc (loc
, MULT_EXPR
, aligned_offset
,
12653 size_int (DECL_OFFSET_ALIGN (field
)
12657 /* Otherwise, take the offset from that of the field. Substitute
12658 any PLACEHOLDER_EXPR that we have. */
12660 return SUBSTITUTE_PLACEHOLDER_IN_EXPR (DECL_FIELD_OFFSET (field
), exp
);
12663 /* Return the machine mode of T. For vectors, returns the mode of the
12664 inner type. The main use case is to feed the result to HONOR_NANS,
12665 avoiding the BLKmode that a direct TYPE_MODE (T) might return. */
12668 element_mode (const_tree t
)
12672 if (VECTOR_TYPE_P (t
) || TREE_CODE (t
) == COMPLEX_TYPE
)
12674 return TYPE_MODE (t
);
12678 /* Veirfy that basic properties of T match TV and thus T can be a variant of
12679 TV. TV should be the more specified variant (i.e. the main variant). */
12682 verify_type_variant (const_tree t
, tree tv
)
12684 /* Type variant can differ by:
12686 - TYPE_QUALS: TYPE_READONLY, TYPE_VOLATILE, TYPE_ATOMIC, TYPE_RESTRICT,
12687 ENCODE_QUAL_ADDR_SPACE.
12688 - main variant may be TYPE_COMPLETE_P and variant types !TYPE_COMPLETE_P
12689 in this case some values may not be set in the variant types
12690 (see TYPE_COMPLETE_P checks).
12691 - it is possible to have TYPE_ARTIFICIAL variant of non-artifical type
12692 - by TYPE_NAME and attributes (i.e. when variant originate by typedef)
12693 - TYPE_CANONICAL (TYPE_ALIAS_SET is the same among variants)
12694 - by the alignment: TYPE_ALIGN and TYPE_USER_ALIGN
12695 - during LTO by TYPE_CONTEXT if type is TYPE_FILE_SCOPE_P
12696 this is necessary to make it possible to merge types form different TUs
12697 - arrays, pointers and references may have TREE_TYPE that is a variant
12698 of TREE_TYPE of their main variants.
12699 - aggregates may have new TYPE_FIELDS list that list variants of
12700 the main variant TYPE_FIELDS.
12701 - vector types may differ by TYPE_VECTOR_OPAQUE
12702 - TYPE_METHODS is always NULL for vairant types and maintained for
12706 /* Convenience macro for matching individual fields. */
12707 #define verify_variant_match(flag) \
12709 if (flag (tv) != flag (t)) \
12711 error ("type variant differs by " #flag "."); \
12717 /* tree_base checks. */
12719 verify_variant_match (TREE_CODE
);
12720 /* FIXME: Ada builds non-artificial variants of artificial types. */
12721 if (TYPE_ARTIFICIAL (tv
) && 0)
12722 verify_variant_match (TYPE_ARTIFICIAL
);
12723 if (POINTER_TYPE_P (tv
))
12724 verify_variant_match (TYPE_REF_CAN_ALIAS_ALL
);
12725 /* FIXME: TYPE_SIZES_GIMPLIFIED may differs for Ada build. */
12726 verify_variant_match (TYPE_UNSIGNED
);
12727 verify_variant_match (TYPE_ALIGN_OK
);
12728 verify_variant_match (TYPE_PACKED
);
12729 if (TREE_CODE (t
) == REFERENCE_TYPE
)
12730 verify_variant_match (TYPE_REF_IS_RVALUE
);
12731 verify_variant_match (TYPE_SATURATING
);
12732 /* FIXME: This check trigger during libstdc++ build. */
12733 if (RECORD_OR_UNION_TYPE_P (t
) && COMPLETE_TYPE_P (t
) && 0)
12734 verify_variant_match (TYPE_FINAL_P
);
12736 /* tree_type_common checks. */
12738 if (COMPLETE_TYPE_P (t
))
12740 verify_variant_match (TYPE_SIZE
);
12741 verify_variant_match (TYPE_MODE
);
12742 if (TYPE_SIZE_UNIT (t
) != TYPE_SIZE_UNIT (tv
)
12743 /* FIXME: ideally we should compare pointer equality, but java FE
12744 produce variants where size is INTEGER_CST of different type (int
12745 wrt size_type) during libjava biuld. */
12746 && !operand_equal_p (TYPE_SIZE_UNIT (t
), TYPE_SIZE_UNIT (tv
), 0))
12748 error ("type variant has different TYPE_SIZE_UNIT");
12750 error ("type variant's TYPE_SIZE_UNIT");
12751 debug_tree (TYPE_SIZE_UNIT (tv
));
12752 error ("type's TYPE_SIZE_UNIT");
12753 debug_tree (TYPE_SIZE_UNIT (t
));
12757 verify_variant_match (TYPE_PRECISION
);
12758 verify_variant_match (TYPE_NEEDS_CONSTRUCTING
);
12759 if (RECORD_OR_UNION_TYPE_P (t
))
12760 verify_variant_match (TYPE_TRANSPARENT_AGGR
);
12761 else if (TREE_CODE (t
) == ARRAY_TYPE
)
12762 verify_variant_match (TYPE_NONALIASED_COMPONENT
);
12763 /* During LTO we merge variant lists from diferent translation units
12764 that may differ BY TYPE_CONTEXT that in turn may point
12765 to TRANSLATION_UNIT_DECL.
12766 Ada also builds variants of types with different TYPE_CONTEXT. */
12767 if ((!in_lto_p
|| !TYPE_FILE_SCOPE_P (t
)) && 0)
12768 verify_variant_match (TYPE_CONTEXT
);
12769 verify_variant_match (TYPE_STRING_FLAG
);
12770 if (TYPE_ALIAS_SET_KNOWN_P (t
) && TYPE_ALIAS_SET_KNOWN_P (tv
))
12771 verify_variant_match (TYPE_ALIAS_SET
);
12773 /* tree_type_non_common checks. */
12775 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
12776 and dangle the pointer from time to time. */
12777 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_VFIELD (t
) != TYPE_VFIELD (tv
)
12778 && (in_lto_p
|| !TYPE_VFIELD (tv
)
12779 || TREE_CODE (TYPE_VFIELD (tv
)) != TREE_LIST
))
12781 error ("type variant has different TYPE_VFIELD");
12785 if ((TREE_CODE (t
) == ENUMERAL_TYPE
&& COMPLETE_TYPE_P (t
))
12786 || TREE_CODE (t
) == INTEGER_TYPE
12787 || TREE_CODE (t
) == BOOLEAN_TYPE
12788 || TREE_CODE (t
) == REAL_TYPE
12789 || TREE_CODE (t
) == FIXED_POINT_TYPE
)
12791 verify_variant_match (TYPE_MAX_VALUE
);
12792 verify_variant_match (TYPE_MIN_VALUE
);
12794 if (TREE_CODE (t
) == METHOD_TYPE
)
12795 verify_variant_match (TYPE_METHOD_BASETYPE
);
12796 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_METHODS (t
))
12798 error ("type variant has TYPE_METHODS");
12802 if (TREE_CODE (t
) == OFFSET_TYPE
)
12803 verify_variant_match (TYPE_OFFSET_BASETYPE
);
12804 if (TREE_CODE (t
) == ARRAY_TYPE
)
12805 verify_variant_match (TYPE_ARRAY_MAX_SIZE
);
12806 /* FIXME: Be lax and allow TYPE_BINFO to be missing in variant types
12807 or even type's main variant. This is needed to make bootstrap pass
12808 and the bug seems new in GCC 5.
12809 C++ FE should be updated to make this consistent and we should check
12810 that TYPE_BINFO is always NULL for !COMPLETE_TYPE_P and otherwise there
12811 is a match with main variant.
12813 Also disable the check for Java for now because of parser hack that builds
12814 first an dummy BINFO and then sometimes replace it by real BINFO in some
12816 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_BINFO (t
) && TYPE_BINFO (tv
)
12817 && TYPE_BINFO (t
) != TYPE_BINFO (tv
)
12818 /* FIXME: Java sometimes keep dump TYPE_BINFOs on variant types.
12819 Since there is no cheap way to tell C++/Java type w/o LTO, do checking
12820 at LTO time only. */
12821 && (in_lto_p
&& odr_type_p (t
)))
12823 error ("type variant has different TYPE_BINFO");
12825 error ("type variant's TYPE_BINFO");
12826 debug_tree (TYPE_BINFO (tv
));
12827 error ("type's TYPE_BINFO");
12828 debug_tree (TYPE_BINFO (t
));
12832 /* Check various uses of TYPE_VALUES_RAW. */
12833 if (TREE_CODE (t
) == ENUMERAL_TYPE
)
12834 verify_variant_match (TYPE_VALUES
);
12835 else if (TREE_CODE (t
) == ARRAY_TYPE
)
12836 verify_variant_match (TYPE_DOMAIN
);
12837 /* Permit incomplete variants of complete type. While FEs may complete
12838 all variants, this does not happen for C++ templates in all cases. */
12839 else if (RECORD_OR_UNION_TYPE_P (t
)
12840 && COMPLETE_TYPE_P (t
)
12841 && TYPE_FIELDS (t
) != TYPE_FIELDS (tv
))
12845 /* Fortran builds qualified variants as new records with items of
12846 qualified type. Verify that they looks same. */
12847 for (f1
= TYPE_FIELDS (t
), f2
= TYPE_FIELDS (tv
);
12849 f1
= TREE_CHAIN (f1
), f2
= TREE_CHAIN (f2
))
12850 if (TREE_CODE (f1
) != FIELD_DECL
|| TREE_CODE (f2
) != FIELD_DECL
12851 || (TYPE_MAIN_VARIANT (TREE_TYPE (f1
))
12852 != TYPE_MAIN_VARIANT (TREE_TYPE (f2
))
12853 /* FIXME: gfc_nonrestricted_type builds all types as variants
12854 with exception of pointer types. It deeply copies the type
12855 which means that we may end up with a variant type
12856 referring non-variant pointer. We may change it to
12857 produce types as variants, too, like
12858 objc_get_protocol_qualified_type does. */
12859 && !POINTER_TYPE_P (TREE_TYPE (f1
)))
12860 || DECL_FIELD_OFFSET (f1
) != DECL_FIELD_OFFSET (f2
)
12861 || DECL_FIELD_BIT_OFFSET (f1
) != DECL_FIELD_BIT_OFFSET (f2
))
12865 error ("type variant has different TYPE_FIELDS");
12867 error ("first mismatch is field");
12869 error ("and field");
12874 else if ((TREE_CODE (t
) == FUNCTION_TYPE
|| TREE_CODE (t
) == METHOD_TYPE
))
12875 verify_variant_match (TYPE_ARG_TYPES
);
12876 /* For C++ the qualified variant of array type is really an array type
12877 of qualified TREE_TYPE.
12878 objc builds variants of pointer where pointer to type is a variant, too
12879 in objc_get_protocol_qualified_type. */
12880 if (TREE_TYPE (t
) != TREE_TYPE (tv
)
12881 && ((TREE_CODE (t
) != ARRAY_TYPE
12882 && !POINTER_TYPE_P (t
))
12883 || TYPE_MAIN_VARIANT (TREE_TYPE (t
))
12884 != TYPE_MAIN_VARIANT (TREE_TYPE (tv
))))
12886 error ("type variant has different TREE_TYPE");
12888 error ("type variant's TREE_TYPE");
12889 debug_tree (TREE_TYPE (tv
));
12890 error ("type's TREE_TYPE");
12891 debug_tree (TREE_TYPE (t
));
12894 if (type_with_alias_set_p (t
)
12895 && !gimple_canonical_types_compatible_p (t
, tv
, false))
12897 error ("type is not compatible with its vairant");
12899 error ("type variant's TREE_TYPE");
12900 debug_tree (TREE_TYPE (tv
));
12901 error ("type's TREE_TYPE");
12902 debug_tree (TREE_TYPE (t
));
12906 #undef verify_variant_match
12910 /* The TYPE_CANONICAL merging machinery. It should closely resemble
12911 the middle-end types_compatible_p function. It needs to avoid
12912 claiming types are different for types that should be treated
12913 the same with respect to TBAA. Canonical types are also used
12914 for IL consistency checks via the useless_type_conversion_p
12915 predicate which does not handle all type kinds itself but falls
12916 back to pointer-comparison of TYPE_CANONICAL for aggregates
12919 /* Return true iff T1 and T2 are structurally identical for what
12921 This function is used both by lto.c canonical type merging and by the
12922 verifier. If TRUST_TYPE_CANONICAL we do not look into structure of types
12923 that have TYPE_CANONICAL defined and assume them equivalent. */
12926 gimple_canonical_types_compatible_p (const_tree t1
, const_tree t2
,
12927 bool trust_type_canonical
)
12929 /* Type variants should be same as the main variant. When not doing sanity
12930 checking to verify this fact, go to main variants and save some work. */
12931 if (trust_type_canonical
)
12933 t1
= TYPE_MAIN_VARIANT (t1
);
12934 t2
= TYPE_MAIN_VARIANT (t2
);
12937 /* Check first for the obvious case of pointer identity. */
12941 /* Check that we have two types to compare. */
12942 if (t1
== NULL_TREE
|| t2
== NULL_TREE
)
12945 /* We consider complete types always compatible with incomplete type.
12946 This does not make sense for canonical type calculation and thus we
12947 need to ensure that we are never called on it.
12949 FIXME: For more correctness the function probably should have three modes
12950 1) mode assuming that types are complete mathcing their structure
12951 2) mode allowing incomplete types but producing equivalence classes
12952 and thus ignoring all info from complete types
12953 3) mode allowing incomplete types to match complete but checking
12954 compatibility between complete types.
12956 1 and 2 can be used for canonical type calculation. 3 is the real
12957 definition of type compatibility that can be used i.e. for warnings during
12958 declaration merging. */
12960 gcc_assert (!trust_type_canonical
12961 || (type_with_alias_set_p (t1
) && type_with_alias_set_p (t2
)));
12962 /* If the types have been previously registered and found equal
12964 if (TYPE_CANONICAL (t1
) && TYPE_CANONICAL (t2
)
12965 && trust_type_canonical
)
12966 return TYPE_CANONICAL (t1
) == TYPE_CANONICAL (t2
);
12968 /* Can't be the same type if the types don't have the same code. */
12969 if (tree_code_for_canonical_type_merging (TREE_CODE (t1
))
12970 != tree_code_for_canonical_type_merging (TREE_CODE (t2
)))
12973 /* Qualifiers do not matter for canonical type comparison purposes. */
12975 /* Void types and nullptr types are always the same. */
12976 if (TREE_CODE (t1
) == VOID_TYPE
12977 || TREE_CODE (t1
) == NULLPTR_TYPE
)
12980 /* Can't be the same type if they have different mode. */
12981 if (TYPE_MODE (t1
) != TYPE_MODE (t2
))
12984 /* Non-aggregate types can be handled cheaply. */
12985 if (INTEGRAL_TYPE_P (t1
)
12986 || SCALAR_FLOAT_TYPE_P (t1
)
12987 || FIXED_POINT_TYPE_P (t1
)
12988 || TREE_CODE (t1
) == VECTOR_TYPE
12989 || TREE_CODE (t1
) == COMPLEX_TYPE
12990 || TREE_CODE (t1
) == OFFSET_TYPE
12991 || POINTER_TYPE_P (t1
))
12993 /* Can't be the same type if they have different sign or precision. */
12994 if (TYPE_PRECISION (t1
) != TYPE_PRECISION (t2
)
12995 || TYPE_UNSIGNED (t1
) != TYPE_UNSIGNED (t2
))
12998 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
12999 interoperable with "signed char". Unless all frontends are revisited
13000 to agree on these types, we must ignore the flag completely. */
13002 /* Fortran standard define C_PTR type that is compatible with every
13003 C pointer. For this reason we need to glob all pointers into one.
13004 Still pointers in different address spaces are not compatible. */
13005 if (POINTER_TYPE_P (t1
))
13007 if (TYPE_ADDR_SPACE (TREE_TYPE (t1
))
13008 != TYPE_ADDR_SPACE (TREE_TYPE (t2
)))
13012 /* Tail-recurse to components. */
13013 if (TREE_CODE (t1
) == VECTOR_TYPE
13014 || TREE_CODE (t1
) == COMPLEX_TYPE
)
13015 return gimple_canonical_types_compatible_p (TREE_TYPE (t1
),
13017 trust_type_canonical
);
13022 /* Do type-specific comparisons. */
13023 switch (TREE_CODE (t1
))
13026 /* Array types are the same if the element types are the same and
13027 the number of elements are the same. */
13028 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1
), TREE_TYPE (t2
),
13029 trust_type_canonical
)
13030 || TYPE_STRING_FLAG (t1
) != TYPE_STRING_FLAG (t2
)
13031 || TYPE_NONALIASED_COMPONENT (t1
) != TYPE_NONALIASED_COMPONENT (t2
))
13035 tree i1
= TYPE_DOMAIN (t1
);
13036 tree i2
= TYPE_DOMAIN (t2
);
13038 /* For an incomplete external array, the type domain can be
13039 NULL_TREE. Check this condition also. */
13040 if (i1
== NULL_TREE
&& i2
== NULL_TREE
)
13042 else if (i1
== NULL_TREE
|| i2
== NULL_TREE
)
13046 tree min1
= TYPE_MIN_VALUE (i1
);
13047 tree min2
= TYPE_MIN_VALUE (i2
);
13048 tree max1
= TYPE_MAX_VALUE (i1
);
13049 tree max2
= TYPE_MAX_VALUE (i2
);
13051 /* The minimum/maximum values have to be the same. */
13054 && ((TREE_CODE (min1
) == PLACEHOLDER_EXPR
13055 && TREE_CODE (min2
) == PLACEHOLDER_EXPR
)
13056 || operand_equal_p (min1
, min2
, 0))))
13059 && ((TREE_CODE (max1
) == PLACEHOLDER_EXPR
13060 && TREE_CODE (max2
) == PLACEHOLDER_EXPR
)
13061 || operand_equal_p (max1
, max2
, 0)))))
13069 case FUNCTION_TYPE
:
13070 /* Function types are the same if the return type and arguments types
13072 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1
), TREE_TYPE (t2
),
13073 trust_type_canonical
))
13076 if (TYPE_ARG_TYPES (t1
) == TYPE_ARG_TYPES (t2
))
13080 tree parms1
, parms2
;
13082 for (parms1
= TYPE_ARG_TYPES (t1
), parms2
= TYPE_ARG_TYPES (t2
);
13084 parms1
= TREE_CHAIN (parms1
), parms2
= TREE_CHAIN (parms2
))
13086 if (!gimple_canonical_types_compatible_p
13087 (TREE_VALUE (parms1
), TREE_VALUE (parms2
),
13088 trust_type_canonical
))
13092 if (parms1
|| parms2
)
13100 case QUAL_UNION_TYPE
:
13104 /* For aggregate types, all the fields must be the same. */
13105 for (f1
= TYPE_FIELDS (t1
), f2
= TYPE_FIELDS (t2
);
13107 f1
= TREE_CHAIN (f1
), f2
= TREE_CHAIN (f2
))
13109 /* Skip non-fields. */
13110 while (f1
&& TREE_CODE (f1
) != FIELD_DECL
)
13111 f1
= TREE_CHAIN (f1
);
13112 while (f2
&& TREE_CODE (f2
) != FIELD_DECL
)
13113 f2
= TREE_CHAIN (f2
);
13116 /* The fields must have the same name, offset and type. */
13117 if (DECL_NONADDRESSABLE_P (f1
) != DECL_NONADDRESSABLE_P (f2
)
13118 || !gimple_compare_field_offset (f1
, f2
)
13119 || !gimple_canonical_types_compatible_p
13120 (TREE_TYPE (f1
), TREE_TYPE (f2
),
13121 trust_type_canonical
))
13125 /* If one aggregate has more fields than the other, they
13126 are not the same. */
13134 /* Consider all types with language specific trees in them mutually
13135 compatible. This is executed only from verify_type and false
13136 positives can be tolerated. */
13137 gcc_assert (!in_lto_p
);
13142 /* Verify type T. */
13145 verify_type (const_tree t
)
13147 bool error_found
= false;
13148 tree mv
= TYPE_MAIN_VARIANT (t
);
13151 error ("Main variant is not defined");
13152 error_found
= true;
13154 else if (mv
!= TYPE_MAIN_VARIANT (mv
))
13156 error ("TYPE_MAIN_VARIANT has different TYPE_MAIN_VARIANT");
13158 error_found
= true;
13160 else if (t
!= mv
&& !verify_type_variant (t
, mv
))
13161 error_found
= true;
13163 tree ct
= TYPE_CANONICAL (t
);
13166 else if (TYPE_CANONICAL (t
) != ct
)
13168 error ("TYPE_CANONICAL has different TYPE_CANONICAL");
13170 error_found
= true;
13172 /* Method and function types can not be used to address memory and thus
13173 TYPE_CANONICAL really matters only for determining useless conversions.
13175 FIXME: C++ FE produce declarations of builtin functions that are not
13176 compatible with main variants. */
13177 else if (TREE_CODE (t
) == FUNCTION_TYPE
)
13180 /* FIXME: gimple_canonical_types_compatible_p can not compare types
13181 with variably sized arrays because their sizes possibly
13182 gimplified to different variables. */
13183 && !variably_modified_type_p (ct
, NULL
)
13184 && !gimple_canonical_types_compatible_p (t
, ct
, false))
13186 error ("TYPE_CANONICAL is not compatible");
13188 error_found
= true;
13192 /* Check various uses of TYPE_MINVAL. */
13193 if (RECORD_OR_UNION_TYPE_P (t
))
13195 /* FIXME: C FE uses TYPE_VFIELD to record C_TYPE_INCOMPLETE_VARS
13196 and danagle the pointer from time to time. */
13197 if (TYPE_VFIELD (t
)
13198 && TREE_CODE (TYPE_VFIELD (t
)) != FIELD_DECL
13199 && TREE_CODE (TYPE_VFIELD (t
)) != TREE_LIST
)
13201 error ("TYPE_VFIELD is not FIELD_DECL nor TREE_LIST");
13202 debug_tree (TYPE_VFIELD (t
));
13203 error_found
= true;
13206 else if (TREE_CODE (t
) == POINTER_TYPE
)
13208 if (TYPE_NEXT_PTR_TO (t
)
13209 && TREE_CODE (TYPE_NEXT_PTR_TO (t
)) != POINTER_TYPE
)
13211 error ("TYPE_NEXT_PTR_TO is not POINTER_TYPE");
13212 debug_tree (TYPE_NEXT_PTR_TO (t
));
13213 error_found
= true;
13216 else if (TREE_CODE (t
) == REFERENCE_TYPE
)
13218 if (TYPE_NEXT_REF_TO (t
)
13219 && TREE_CODE (TYPE_NEXT_REF_TO (t
)) != REFERENCE_TYPE
)
13221 error ("TYPE_NEXT_REF_TO is not REFERENCE_TYPE");
13222 debug_tree (TYPE_NEXT_REF_TO (t
));
13223 error_found
= true;
13226 else if (INTEGRAL_TYPE_P (t
) || TREE_CODE (t
) == REAL_TYPE
13227 || TREE_CODE (t
) == FIXED_POINT_TYPE
)
13229 /* FIXME: The following check should pass:
13230 useless_type_conversion_p (const_cast <tree> (t),
13231 TREE_TYPE (TYPE_MIN_VALUE (t))
13232 but does not for C sizetypes in LTO. */
13234 /* Java uses TYPE_MINVAL for TYPE_ARGUMENT_SIGNATURE. */
13235 else if (TYPE_MINVAL (t
)
13236 && ((TREE_CODE (t
) != METHOD_TYPE
&& TREE_CODE (t
) != FUNCTION_TYPE
)
13239 error ("TYPE_MINVAL non-NULL");
13240 debug_tree (TYPE_MINVAL (t
));
13241 error_found
= true;
13244 /* Check various uses of TYPE_MAXVAL. */
13245 if (RECORD_OR_UNION_TYPE_P (t
))
13247 if (TYPE_METHODS (t
) && TREE_CODE (TYPE_METHODS (t
)) != FUNCTION_DECL
13248 && TREE_CODE (TYPE_METHODS (t
)) != TEMPLATE_DECL
13249 && TYPE_METHODS (t
) != error_mark_node
)
13251 error ("TYPE_METHODS is not FUNCTION_DECL, TEMPLATE_DECL nor error_mark_node");
13252 debug_tree (TYPE_METHODS (t
));
13253 error_found
= true;
13256 else if (TREE_CODE (t
) == FUNCTION_TYPE
|| TREE_CODE (t
) == METHOD_TYPE
)
13258 if (TYPE_METHOD_BASETYPE (t
)
13259 && TREE_CODE (TYPE_METHOD_BASETYPE (t
)) != RECORD_TYPE
13260 && TREE_CODE (TYPE_METHOD_BASETYPE (t
)) != UNION_TYPE
)
13262 error ("TYPE_METHOD_BASETYPE is not record nor union");
13263 debug_tree (TYPE_METHOD_BASETYPE (t
));
13264 error_found
= true;
13267 else if (TREE_CODE (t
) == OFFSET_TYPE
)
13269 if (TYPE_OFFSET_BASETYPE (t
)
13270 && TREE_CODE (TYPE_OFFSET_BASETYPE (t
)) != RECORD_TYPE
13271 && TREE_CODE (TYPE_OFFSET_BASETYPE (t
)) != UNION_TYPE
)
13273 error ("TYPE_OFFSET_BASETYPE is not record nor union");
13274 debug_tree (TYPE_OFFSET_BASETYPE (t
));
13275 error_found
= true;
13278 else if (INTEGRAL_TYPE_P (t
) || TREE_CODE (t
) == REAL_TYPE
13279 || TREE_CODE (t
) == FIXED_POINT_TYPE
)
13281 /* FIXME: The following check should pass:
13282 useless_type_conversion_p (const_cast <tree> (t),
13283 TREE_TYPE (TYPE_MAX_VALUE (t))
13284 but does not for C sizetypes in LTO. */
13286 else if (TREE_CODE (t
) == ARRAY_TYPE
)
13288 if (TYPE_ARRAY_MAX_SIZE (t
)
13289 && TREE_CODE (TYPE_ARRAY_MAX_SIZE (t
)) != INTEGER_CST
)
13291 error ("TYPE_ARRAY_MAX_SIZE not INTEGER_CST");
13292 debug_tree (TYPE_ARRAY_MAX_SIZE (t
));
13293 error_found
= true;
13296 else if (TYPE_MAXVAL (t
))
13298 error ("TYPE_MAXVAL non-NULL");
13299 debug_tree (TYPE_MAXVAL (t
));
13300 error_found
= true;
13303 /* Check various uses of TYPE_BINFO. */
13304 if (RECORD_OR_UNION_TYPE_P (t
))
13306 if (!TYPE_BINFO (t
))
13308 else if (TREE_CODE (TYPE_BINFO (t
)) != TREE_BINFO
)
13310 error ("TYPE_BINFO is not TREE_BINFO");
13311 debug_tree (TYPE_BINFO (t
));
13312 error_found
= true;
13314 /* FIXME: Java builds invalid empty binfos that do not have
13316 else if (TREE_TYPE (TYPE_BINFO (t
)) != TYPE_MAIN_VARIANT (t
) && 0)
13318 error ("TYPE_BINFO type is not TYPE_MAIN_VARIANT");
13319 debug_tree (TREE_TYPE (TYPE_BINFO (t
)));
13320 error_found
= true;
13323 else if (TYPE_LANG_SLOT_1 (t
) && in_lto_p
)
13325 error ("TYPE_LANG_SLOT_1 (binfo) field is non-NULL");
13326 debug_tree (TYPE_LANG_SLOT_1 (t
));
13327 error_found
= true;
13330 /* Check various uses of TYPE_VALUES_RAW. */
13331 if (TREE_CODE (t
) == ENUMERAL_TYPE
)
13332 for (tree l
= TYPE_VALUES (t
); l
; l
= TREE_CHAIN (l
))
13334 tree value
= TREE_VALUE (l
);
13335 tree name
= TREE_PURPOSE (l
);
13337 /* C FE porduce INTEGER_CST of INTEGER_TYPE, while C++ FE uses
13338 CONST_DECL of ENUMERAL TYPE. */
13339 if (TREE_CODE (value
) != INTEGER_CST
&& TREE_CODE (value
) != CONST_DECL
)
13341 error ("Enum value is not CONST_DECL or INTEGER_CST");
13342 debug_tree (value
);
13344 error_found
= true;
13346 if (TREE_CODE (TREE_TYPE (value
)) != INTEGER_TYPE
13347 && !useless_type_conversion_p (const_cast <tree
> (t
), TREE_TYPE (value
)))
13349 error ("Enum value type is not INTEGER_TYPE nor convertible to the enum");
13350 debug_tree (value
);
13352 error_found
= true;
13354 if (TREE_CODE (name
) != IDENTIFIER_NODE
)
13356 error ("Enum value name is not IDENTIFIER_NODE");
13357 debug_tree (value
);
13359 error_found
= true;
13362 else if (TREE_CODE (t
) == ARRAY_TYPE
)
13364 if (TYPE_DOMAIN (t
) && TREE_CODE (TYPE_DOMAIN (t
)) != INTEGER_TYPE
)
13366 error ("Array TYPE_DOMAIN is not integer type");
13367 debug_tree (TYPE_DOMAIN (t
));
13368 error_found
= true;
13371 else if (RECORD_OR_UNION_TYPE_P (t
))
13372 for (tree fld
= TYPE_FIELDS (t
); fld
; fld
= TREE_CHAIN (fld
))
13374 /* TODO: verify properties of decls. */
13375 if (TREE_CODE (fld
) == FIELD_DECL
)
13377 else if (TREE_CODE (fld
) == TYPE_DECL
)
13379 else if (TREE_CODE (fld
) == CONST_DECL
)
13381 else if (TREE_CODE (fld
) == VAR_DECL
)
13383 else if (TREE_CODE (fld
) == TEMPLATE_DECL
)
13385 else if (TREE_CODE (fld
) == USING_DECL
)
13389 error ("Wrong tree in TYPE_FIELDS list");
13391 error_found
= true;
13394 else if (TREE_CODE (t
) == INTEGER_TYPE
13395 || TREE_CODE (t
) == BOOLEAN_TYPE
13396 || TREE_CODE (t
) == OFFSET_TYPE
13397 || TREE_CODE (t
) == REFERENCE_TYPE
13398 || TREE_CODE (t
) == NULLPTR_TYPE
13399 || TREE_CODE (t
) == POINTER_TYPE
)
13401 if (TYPE_CACHED_VALUES_P (t
) != (TYPE_CACHED_VALUES (t
) != NULL
))
13403 error ("TYPE_CACHED_VALUES_P is %i while TYPE_CACHED_VALUES is %p",
13404 TYPE_CACHED_VALUES_P (t
), (void *)TYPE_CACHED_VALUES (t
));
13405 error_found
= true;
13407 else if (TYPE_CACHED_VALUES_P (t
) && TREE_CODE (TYPE_CACHED_VALUES (t
)) != TREE_VEC
)
13409 error ("TYPE_CACHED_VALUES is not TREE_VEC");
13410 debug_tree (TYPE_CACHED_VALUES (t
));
13411 error_found
= true;
13413 /* Verify just enough of cache to ensure that no one copied it to new type.
13414 All copying should go by copy_node that should clear it. */
13415 else if (TYPE_CACHED_VALUES_P (t
))
13418 for (i
= 0; i
< TREE_VEC_LENGTH (TYPE_CACHED_VALUES (t
)); i
++)
13419 if (TREE_VEC_ELT (TYPE_CACHED_VALUES (t
), i
)
13420 && TREE_TYPE (TREE_VEC_ELT (TYPE_CACHED_VALUES (t
), i
)) != t
)
13422 error ("wrong TYPE_CACHED_VALUES entry");
13423 debug_tree (TREE_VEC_ELT (TYPE_CACHED_VALUES (t
), i
));
13424 error_found
= true;
13429 else if (TREE_CODE (t
) == FUNCTION_TYPE
|| TREE_CODE (t
) == METHOD_TYPE
)
13430 for (tree l
= TYPE_ARG_TYPES (t
); l
; l
= TREE_CHAIN (l
))
13432 /* C++ FE uses TREE_PURPOSE to store initial values. */
13433 if (TREE_PURPOSE (l
) && in_lto_p
)
13435 error ("TREE_PURPOSE is non-NULL in TYPE_ARG_TYPES list");
13437 error_found
= true;
13439 if (!TYPE_P (TREE_VALUE (l
)))
13441 error ("Wrong entry in TYPE_ARG_TYPES list");
13443 error_found
= true;
13446 else if (!is_lang_specific (t
) && TYPE_VALUES_RAW (t
))
13448 error ("TYPE_VALUES_RAW field is non-NULL");
13449 debug_tree (TYPE_VALUES_RAW (t
));
13450 error_found
= true;
13452 if (TREE_CODE (t
) != INTEGER_TYPE
13453 && TREE_CODE (t
) != BOOLEAN_TYPE
13454 && TREE_CODE (t
) != OFFSET_TYPE
13455 && TREE_CODE (t
) != REFERENCE_TYPE
13456 && TREE_CODE (t
) != NULLPTR_TYPE
13457 && TREE_CODE (t
) != POINTER_TYPE
13458 && TYPE_CACHED_VALUES_P (t
))
13460 error ("TYPE_CACHED_VALUES_P is set while it should not");
13461 error_found
= true;
13463 if (TYPE_STRING_FLAG (t
)
13464 && TREE_CODE (t
) != ARRAY_TYPE
&& TREE_CODE (t
) != INTEGER_TYPE
)
13466 error ("TYPE_STRING_FLAG is set on wrong type code");
13467 error_found
= true;
13469 else if (TYPE_STRING_FLAG (t
))
13472 if (TREE_CODE (b
) == ARRAY_TYPE
)
13474 /* Java builds arrays with TYPE_STRING_FLAG of promoted_char_type
13476 if (TREE_CODE (b
) != INTEGER_TYPE
)
13478 error ("TYPE_STRING_FLAG is set on type that does not look like "
13479 "char nor array of chars");
13480 error_found
= true;
13484 /* ipa-devirt makes an assumption that TYPE_METHOD_BASETYPE is always
13485 TYPE_MAIN_VARIANT and it would be odd to add methods only to variatns
13487 if (TREE_CODE (t
) == METHOD_TYPE
13488 && TYPE_MAIN_VARIANT (TYPE_METHOD_BASETYPE (t
)) != TYPE_METHOD_BASETYPE (t
))
13490 error ("TYPE_METHOD_BASETYPE is not main variant");
13491 error_found
= true;
13496 debug_tree (const_cast <tree
> (t
));
13497 internal_error ("verify_type failed");
13501 #include "gt-tree.h"