1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains the low level primitives for operating on tree nodes,
21 including allocation, list operations, interning of identifiers,
22 construction of data type nodes and statement nodes,
23 and construction of type conversion nodes. It also contains
24 tables index by tree code that describe how to take apart
27 It is intended to be language-independent, but occasionally
28 calls language-dependent routines defined (for C) in typecheck.c. */
32 #include "coretypes.h"
39 #include "toplev.h" /* get_random_seed */
42 #include "filenames.h"
45 #include "common/common-target.h"
46 #include "langhooks.h"
47 #include "tree-inline.h"
48 #include "tree-iterator.h"
49 #include "basic-block.h"
50 #include "tree-flow.h"
52 #include "pointer-set.h"
53 #include "tree-pass.h"
54 #include "langhooks-def.h"
55 #include "diagnostic.h"
56 #include "tree-diagnostic.h"
57 #include "tree-pretty-print.h"
63 /* Tree code classes. */
65 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
66 #define END_OF_BASE_TREE_CODES tcc_exceptional,
68 const enum tree_code_class tree_code_type
[] = {
69 #include "all-tree.def"
73 #undef END_OF_BASE_TREE_CODES
75 /* Table indexed by tree code giving number of expression
76 operands beyond the fixed part of the node structure.
77 Not used for types or decls. */
79 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
80 #define END_OF_BASE_TREE_CODES 0,
82 const unsigned char tree_code_length
[] = {
83 #include "all-tree.def"
87 #undef END_OF_BASE_TREE_CODES
89 /* Names of tree components.
90 Used for printing out the tree and error messages. */
91 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
92 #define END_OF_BASE_TREE_CODES "@dummy",
94 const char *const tree_code_name
[] = {
95 #include "all-tree.def"
99 #undef END_OF_BASE_TREE_CODES
101 /* Each tree code class has an associated string representation.
102 These must correspond to the tree_code_class entries. */
104 const char *const tree_code_class_strings
[] =
119 /* obstack.[ch] explicitly declined to prototype this. */
120 extern int _obstack_allocated_p (struct obstack
*h
, void *obj
);
122 /* Statistics-gathering stuff. */
124 static int tree_code_counts
[MAX_TREE_CODES
];
125 int tree_node_counts
[(int) all_kinds
];
126 int tree_node_sizes
[(int) all_kinds
];
128 /* Keep in sync with tree.h:enum tree_node_kind. */
129 static const char * const tree_node_kind_names
[] = {
148 /* Unique id for next decl created. */
149 static GTY(()) int next_decl_uid
;
150 /* Unique id for next type created. */
151 static GTY(()) int next_type_uid
= 1;
152 /* Unique id for next debug decl created. Use negative numbers,
153 to catch erroneous uses. */
154 static GTY(()) int next_debug_decl_uid
;
156 /* Since we cannot rehash a type after it is in the table, we have to
157 keep the hash code. */
159 struct GTY(()) type_hash
{
164 /* Initial size of the hash table (rounded to next prime). */
165 #define TYPE_HASH_INITIAL_SIZE 1000
167 /* Now here is the hash table. When recording a type, it is added to
168 the slot whose index is the hash code. Note that the hash table is
169 used for several kinds of types (function types, array types and
170 array index range types, for now). While all these live in the
171 same table, they are completely independent, and the hash code is
172 computed differently for each of these. */
174 static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash
)))
175 htab_t type_hash_table
;
177 /* Hash table and temporary node for larger integer const values. */
178 static GTY (()) tree int_cst_node
;
179 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node
)))
180 htab_t int_cst_hash_table
;
182 /* Hash table for optimization flags and target option flags. Use the same
183 hash table for both sets of options. Nodes for building the current
184 optimization and target option nodes. The assumption is most of the time
185 the options created will already be in the hash table, so we avoid
186 allocating and freeing up a node repeatably. */
187 static GTY (()) tree cl_optimization_node
;
188 static GTY (()) tree cl_target_option_node
;
189 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node
)))
190 htab_t cl_option_hash_table
;
192 /* General tree->tree mapping structure for use in hash tables. */
195 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map
)))
196 htab_t debug_expr_for_decl
;
198 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map
)))
199 htab_t value_expr_for_decl
;
201 static GTY ((if_marked ("tree_vec_map_marked_p"), param_is (struct tree_vec_map
)))
202 htab_t debug_args_for_decl
;
204 static GTY ((if_marked ("tree_priority_map_marked_p"),
205 param_is (struct tree_priority_map
)))
206 htab_t init_priority_for_decl
;
208 static void set_type_quals (tree
, int);
209 static int type_hash_eq (const void *, const void *);
210 static hashval_t
type_hash_hash (const void *);
211 static hashval_t
int_cst_hash_hash (const void *);
212 static int int_cst_hash_eq (const void *, const void *);
213 static hashval_t
cl_option_hash_hash (const void *);
214 static int cl_option_hash_eq (const void *, const void *);
215 static void print_type_hash_statistics (void);
216 static void print_debug_expr_statistics (void);
217 static void print_value_expr_statistics (void);
218 static int type_hash_marked_p (const void *);
219 static unsigned int type_hash_list (const_tree
, hashval_t
);
220 static unsigned int attribute_hash_list (const_tree
, hashval_t
);
222 tree global_trees
[TI_MAX
];
223 tree integer_types
[itk_none
];
225 unsigned char tree_contains_struct
[MAX_TREE_CODES
][64];
227 /* Number of operands for each OpenMP clause. */
228 unsigned const char omp_clause_num_ops
[] =
230 0, /* OMP_CLAUSE_ERROR */
231 1, /* OMP_CLAUSE_PRIVATE */
232 1, /* OMP_CLAUSE_SHARED */
233 1, /* OMP_CLAUSE_FIRSTPRIVATE */
234 2, /* OMP_CLAUSE_LASTPRIVATE */
235 4, /* OMP_CLAUSE_REDUCTION */
236 1, /* OMP_CLAUSE_COPYIN */
237 1, /* OMP_CLAUSE_COPYPRIVATE */
238 1, /* OMP_CLAUSE_IF */
239 1, /* OMP_CLAUSE_NUM_THREADS */
240 1, /* OMP_CLAUSE_SCHEDULE */
241 0, /* OMP_CLAUSE_NOWAIT */
242 0, /* OMP_CLAUSE_ORDERED */
243 0, /* OMP_CLAUSE_DEFAULT */
244 3, /* OMP_CLAUSE_COLLAPSE */
245 0, /* OMP_CLAUSE_UNTIED */
246 1, /* OMP_CLAUSE_FINAL */
247 0 /* OMP_CLAUSE_MERGEABLE */
250 const char * const omp_clause_code_name
[] =
273 /* Return the tree node structure used by tree code CODE. */
275 static inline enum tree_node_structure_enum
276 tree_node_structure_for_code (enum tree_code code
)
278 switch (TREE_CODE_CLASS (code
))
280 case tcc_declaration
:
285 return TS_FIELD_DECL
;
291 return TS_LABEL_DECL
;
293 return TS_RESULT_DECL
;
294 case DEBUG_EXPR_DECL
:
297 return TS_CONST_DECL
;
301 return TS_FUNCTION_DECL
;
302 case TRANSLATION_UNIT_DECL
:
303 return TS_TRANSLATION_UNIT_DECL
;
305 return TS_DECL_NON_COMMON
;
309 return TS_TYPE_NON_COMMON
;
318 default: /* tcc_constant and tcc_exceptional */
323 /* tcc_constant cases. */
324 case INTEGER_CST
: return TS_INT_CST
;
325 case REAL_CST
: return TS_REAL_CST
;
326 case FIXED_CST
: return TS_FIXED_CST
;
327 case COMPLEX_CST
: return TS_COMPLEX
;
328 case VECTOR_CST
: return TS_VECTOR
;
329 case STRING_CST
: return TS_STRING
;
330 /* tcc_exceptional cases. */
331 case ERROR_MARK
: return TS_COMMON
;
332 case IDENTIFIER_NODE
: return TS_IDENTIFIER
;
333 case TREE_LIST
: return TS_LIST
;
334 case TREE_VEC
: return TS_VEC
;
335 case SSA_NAME
: return TS_SSA_NAME
;
336 case PLACEHOLDER_EXPR
: return TS_COMMON
;
337 case STATEMENT_LIST
: return TS_STATEMENT_LIST
;
338 case BLOCK
: return TS_BLOCK
;
339 case CONSTRUCTOR
: return TS_CONSTRUCTOR
;
340 case TREE_BINFO
: return TS_BINFO
;
341 case OMP_CLAUSE
: return TS_OMP_CLAUSE
;
342 case OPTIMIZATION_NODE
: return TS_OPTIMIZATION
;
343 case TARGET_OPTION_NODE
: return TS_TARGET_OPTION
;
351 /* Initialize tree_contains_struct to describe the hierarchy of tree
355 initialize_tree_contains_struct (void)
359 for (i
= ERROR_MARK
; i
< LAST_AND_UNUSED_TREE_CODE
; i
++)
362 enum tree_node_structure_enum ts_code
;
364 code
= (enum tree_code
) i
;
365 ts_code
= tree_node_structure_for_code (code
);
367 /* Mark the TS structure itself. */
368 tree_contains_struct
[code
][ts_code
] = 1;
370 /* Mark all the structures that TS is derived from. */
388 case TS_STATEMENT_LIST
:
389 MARK_TS_TYPED (code
);
393 case TS_DECL_MINIMAL
:
399 case TS_OPTIMIZATION
:
400 case TS_TARGET_OPTION
:
401 MARK_TS_COMMON (code
);
404 case TS_TYPE_WITH_LANG_SPECIFIC
:
405 MARK_TS_TYPE_COMMON (code
);
408 case TS_TYPE_NON_COMMON
:
409 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code
);
413 MARK_TS_DECL_MINIMAL (code
);
418 MARK_TS_DECL_COMMON (code
);
421 case TS_DECL_NON_COMMON
:
422 MARK_TS_DECL_WITH_VIS (code
);
425 case TS_DECL_WITH_VIS
:
429 MARK_TS_DECL_WRTL (code
);
433 MARK_TS_DECL_COMMON (code
);
437 MARK_TS_DECL_WITH_VIS (code
);
441 case TS_FUNCTION_DECL
:
442 MARK_TS_DECL_NON_COMMON (code
);
445 case TS_TRANSLATION_UNIT_DECL
:
446 MARK_TS_DECL_COMMON (code
);
454 /* Basic consistency checks for attributes used in fold. */
455 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_NON_COMMON
]);
456 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_NON_COMMON
]);
457 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_COMMON
]);
458 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_COMMON
]);
459 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_COMMON
]);
460 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_COMMON
]);
461 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_COMMON
]);
462 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_COMMON
]);
463 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_COMMON
]);
464 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_COMMON
]);
465 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_COMMON
]);
466 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WRTL
]);
467 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_WRTL
]);
468 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_WRTL
]);
469 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WRTL
]);
470 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_WRTL
]);
471 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_MINIMAL
]);
472 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_MINIMAL
]);
473 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_MINIMAL
]);
474 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_MINIMAL
]);
475 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_MINIMAL
]);
476 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_MINIMAL
]);
477 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_MINIMAL
]);
478 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_MINIMAL
]);
479 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_MINIMAL
]);
480 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WITH_VIS
]);
481 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WITH_VIS
]);
482 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_WITH_VIS
]);
483 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_VAR_DECL
]);
484 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_FIELD_DECL
]);
485 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_PARM_DECL
]);
486 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_LABEL_DECL
]);
487 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_RESULT_DECL
]);
488 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_CONST_DECL
]);
489 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_TYPE_DECL
]);
490 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_FUNCTION_DECL
]);
491 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_MINIMAL
]);
492 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_COMMON
]);
501 /* Initialize the hash table of types. */
502 type_hash_table
= htab_create_ggc (TYPE_HASH_INITIAL_SIZE
, type_hash_hash
,
505 debug_expr_for_decl
= htab_create_ggc (512, tree_decl_map_hash
,
506 tree_decl_map_eq
, 0);
508 value_expr_for_decl
= htab_create_ggc (512, tree_decl_map_hash
,
509 tree_decl_map_eq
, 0);
510 init_priority_for_decl
= htab_create_ggc (512, tree_priority_map_hash
,
511 tree_priority_map_eq
, 0);
513 int_cst_hash_table
= htab_create_ggc (1024, int_cst_hash_hash
,
514 int_cst_hash_eq
, NULL
);
516 int_cst_node
= make_node (INTEGER_CST
);
518 cl_option_hash_table
= htab_create_ggc (64, cl_option_hash_hash
,
519 cl_option_hash_eq
, NULL
);
521 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
522 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
524 /* Initialize the tree_contains_struct array. */
525 initialize_tree_contains_struct ();
526 lang_hooks
.init_ts ();
530 /* The name of the object as the assembler will see it (but before any
531 translations made by ASM_OUTPUT_LABELREF). Often this is the same
532 as DECL_NAME. It is an IDENTIFIER_NODE. */
534 decl_assembler_name (tree decl
)
536 if (!DECL_ASSEMBLER_NAME_SET_P (decl
))
537 lang_hooks
.set_decl_assembler_name (decl
);
538 return DECL_WITH_VIS_CHECK (decl
)->decl_with_vis
.assembler_name
;
541 /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */
544 decl_assembler_name_equal (tree decl
, const_tree asmname
)
546 tree decl_asmname
= DECL_ASSEMBLER_NAME (decl
);
547 const char *decl_str
;
548 const char *asmname_str
;
551 if (decl_asmname
== asmname
)
554 decl_str
= IDENTIFIER_POINTER (decl_asmname
);
555 asmname_str
= IDENTIFIER_POINTER (asmname
);
558 /* If the target assembler name was set by the user, things are trickier.
559 We have a leading '*' to begin with. After that, it's arguable what
560 is the correct thing to do with -fleading-underscore. Arguably, we've
561 historically been doing the wrong thing in assemble_alias by always
562 printing the leading underscore. Since we're not changing that, make
563 sure user_label_prefix follows the '*' before matching. */
564 if (decl_str
[0] == '*')
566 size_t ulp_len
= strlen (user_label_prefix
);
572 else if (strncmp (decl_str
, user_label_prefix
, ulp_len
) == 0)
573 decl_str
+= ulp_len
, test
=true;
577 if (asmname_str
[0] == '*')
579 size_t ulp_len
= strlen (user_label_prefix
);
585 else if (strncmp (asmname_str
, user_label_prefix
, ulp_len
) == 0)
586 asmname_str
+= ulp_len
, test
=true;
593 return strcmp (decl_str
, asmname_str
) == 0;
596 /* Hash asmnames ignoring the user specified marks. */
599 decl_assembler_name_hash (const_tree asmname
)
601 if (IDENTIFIER_POINTER (asmname
)[0] == '*')
603 const char *decl_str
= IDENTIFIER_POINTER (asmname
) + 1;
604 size_t ulp_len
= strlen (user_label_prefix
);
608 else if (strncmp (decl_str
, user_label_prefix
, ulp_len
) == 0)
611 return htab_hash_string (decl_str
);
614 return htab_hash_string (IDENTIFIER_POINTER (asmname
));
617 /* Compute the number of bytes occupied by a tree with code CODE.
618 This function cannot be used for nodes that have variable sizes,
619 including TREE_VEC, STRING_CST, and CALL_EXPR. */
621 tree_code_size (enum tree_code code
)
623 switch (TREE_CODE_CLASS (code
))
625 case tcc_declaration
: /* A decl node */
630 return sizeof (struct tree_field_decl
);
632 return sizeof (struct tree_parm_decl
);
634 return sizeof (struct tree_var_decl
);
636 return sizeof (struct tree_label_decl
);
638 return sizeof (struct tree_result_decl
);
640 return sizeof (struct tree_const_decl
);
642 return sizeof (struct tree_type_decl
);
644 return sizeof (struct tree_function_decl
);
645 case DEBUG_EXPR_DECL
:
646 return sizeof (struct tree_decl_with_rtl
);
648 return sizeof (struct tree_decl_non_common
);
652 case tcc_type
: /* a type node */
653 return sizeof (struct tree_type_non_common
);
655 case tcc_reference
: /* a reference */
656 case tcc_expression
: /* an expression */
657 case tcc_statement
: /* an expression with side effects */
658 case tcc_comparison
: /* a comparison expression */
659 case tcc_unary
: /* a unary arithmetic expression */
660 case tcc_binary
: /* a binary arithmetic expression */
661 return (sizeof (struct tree_exp
)
662 + (TREE_CODE_LENGTH (code
) - 1) * sizeof (tree
));
664 case tcc_constant
: /* a constant */
667 case INTEGER_CST
: return sizeof (struct tree_int_cst
);
668 case REAL_CST
: return sizeof (struct tree_real_cst
);
669 case FIXED_CST
: return sizeof (struct tree_fixed_cst
);
670 case COMPLEX_CST
: return sizeof (struct tree_complex
);
671 case VECTOR_CST
: return sizeof (struct tree_vector
);
672 case STRING_CST
: gcc_unreachable ();
674 return lang_hooks
.tree_size (code
);
677 case tcc_exceptional
: /* something random, like an identifier. */
680 case IDENTIFIER_NODE
: return lang_hooks
.identifier_size
;
681 case TREE_LIST
: return sizeof (struct tree_list
);
684 case PLACEHOLDER_EXPR
: return sizeof (struct tree_common
);
687 case OMP_CLAUSE
: gcc_unreachable ();
689 case SSA_NAME
: return sizeof (struct tree_ssa_name
);
691 case STATEMENT_LIST
: return sizeof (struct tree_statement_list
);
692 case BLOCK
: return sizeof (struct tree_block
);
693 case CONSTRUCTOR
: return sizeof (struct tree_constructor
);
694 case OPTIMIZATION_NODE
: return sizeof (struct tree_optimization_option
);
695 case TARGET_OPTION_NODE
: return sizeof (struct tree_target_option
);
698 return lang_hooks
.tree_size (code
);
706 /* Compute the number of bytes occupied by NODE. This routine only
707 looks at TREE_CODE, except for those nodes that have variable sizes. */
709 tree_size (const_tree node
)
711 const enum tree_code code
= TREE_CODE (node
);
715 return (offsetof (struct tree_binfo
, base_binfos
)
717 ::embedded_size (BINFO_N_BASE_BINFOS (node
)));
720 return (sizeof (struct tree_vec
)
721 + (TREE_VEC_LENGTH (node
) - 1) * sizeof (tree
));
724 return (sizeof (struct tree_vector
)
725 + (TYPE_VECTOR_SUBPARTS (TREE_TYPE (node
)) - 1) * sizeof (tree
));
728 return TREE_STRING_LENGTH (node
) + offsetof (struct tree_string
, str
) + 1;
731 return (sizeof (struct tree_omp_clause
)
732 + (omp_clause_num_ops
[OMP_CLAUSE_CODE (node
)] - 1)
736 if (TREE_CODE_CLASS (code
) == tcc_vl_exp
)
737 return (sizeof (struct tree_exp
)
738 + (VL_EXP_OPERAND_LENGTH (node
) - 1) * sizeof (tree
));
740 return tree_code_size (code
);
744 /* Record interesting allocation statistics for a tree node with CODE
748 record_node_allocation_statistics (enum tree_code code ATTRIBUTE_UNUSED
,
749 size_t length ATTRIBUTE_UNUSED
)
751 enum tree_code_class type
= TREE_CODE_CLASS (code
);
754 if (!GATHER_STATISTICS
)
759 case tcc_declaration
: /* A decl node */
763 case tcc_type
: /* a type node */
767 case tcc_statement
: /* an expression with side effects */
771 case tcc_reference
: /* a reference */
775 case tcc_expression
: /* an expression */
776 case tcc_comparison
: /* a comparison expression */
777 case tcc_unary
: /* a unary arithmetic expression */
778 case tcc_binary
: /* a binary arithmetic expression */
782 case tcc_constant
: /* a constant */
786 case tcc_exceptional
: /* something random, like an identifier. */
789 case IDENTIFIER_NODE
:
802 kind
= ssa_name_kind
;
814 kind
= omp_clause_kind
;
831 tree_code_counts
[(int) code
]++;
832 tree_node_counts
[(int) kind
]++;
833 tree_node_sizes
[(int) kind
] += length
;
836 /* Allocate and return a new UID from the DECL_UID namespace. */
839 allocate_decl_uid (void)
841 return next_decl_uid
++;
844 /* Return a newly allocated node of code CODE. For decl and type
845 nodes, some other fields are initialized. The rest of the node is
846 initialized to zero. This function cannot be used for TREE_VEC or
847 OMP_CLAUSE nodes, which is enforced by asserts in tree_code_size.
849 Achoo! I got a code in the node. */
852 make_node_stat (enum tree_code code MEM_STAT_DECL
)
855 enum tree_code_class type
= TREE_CODE_CLASS (code
);
856 size_t length
= tree_code_size (code
);
858 record_node_allocation_statistics (code
, length
);
860 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
861 TREE_SET_CODE (t
, code
);
866 TREE_SIDE_EFFECTS (t
) = 1;
869 case tcc_declaration
:
870 if (CODE_CONTAINS_STRUCT (code
, TS_DECL_COMMON
))
872 if (code
== FUNCTION_DECL
)
874 DECL_ALIGN (t
) = FUNCTION_BOUNDARY
;
875 DECL_MODE (t
) = FUNCTION_MODE
;
880 DECL_SOURCE_LOCATION (t
) = input_location
;
881 if (TREE_CODE (t
) == DEBUG_EXPR_DECL
)
882 DECL_UID (t
) = --next_debug_decl_uid
;
885 DECL_UID (t
) = allocate_decl_uid ();
886 SET_DECL_PT_UID (t
, -1);
888 if (TREE_CODE (t
) == LABEL_DECL
)
889 LABEL_DECL_UID (t
) = -1;
894 TYPE_UID (t
) = next_type_uid
++;
895 TYPE_ALIGN (t
) = BITS_PER_UNIT
;
896 TYPE_USER_ALIGN (t
) = 0;
897 TYPE_MAIN_VARIANT (t
) = t
;
898 TYPE_CANONICAL (t
) = t
;
900 /* Default to no attributes for type, but let target change that. */
901 TYPE_ATTRIBUTES (t
) = NULL_TREE
;
902 targetm
.set_default_type_attributes (t
);
904 /* We have not yet computed the alias set for this type. */
905 TYPE_ALIAS_SET (t
) = -1;
909 TREE_CONSTANT (t
) = 1;
918 case PREDECREMENT_EXPR
:
919 case PREINCREMENT_EXPR
:
920 case POSTDECREMENT_EXPR
:
921 case POSTINCREMENT_EXPR
:
922 /* All of these have side-effects, no matter what their
924 TREE_SIDE_EFFECTS (t
) = 1;
933 /* Other classes need no special treatment. */
940 /* Return a new node with the same contents as NODE except that its
941 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
944 copy_node_stat (tree node MEM_STAT_DECL
)
947 enum tree_code code
= TREE_CODE (node
);
950 gcc_assert (code
!= STATEMENT_LIST
);
952 length
= tree_size (node
);
953 record_node_allocation_statistics (code
, length
);
954 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
955 memcpy (t
, node
, length
);
957 if (CODE_CONTAINS_STRUCT (code
, TS_COMMON
))
959 TREE_ASM_WRITTEN (t
) = 0;
960 TREE_VISITED (t
) = 0;
962 if (TREE_CODE_CLASS (code
) == tcc_declaration
)
964 if (code
== DEBUG_EXPR_DECL
)
965 DECL_UID (t
) = --next_debug_decl_uid
;
968 DECL_UID (t
) = allocate_decl_uid ();
969 if (DECL_PT_UID_SET_P (node
))
970 SET_DECL_PT_UID (t
, DECL_PT_UID (node
));
972 if ((TREE_CODE (node
) == PARM_DECL
|| TREE_CODE (node
) == VAR_DECL
)
973 && DECL_HAS_VALUE_EXPR_P (node
))
975 SET_DECL_VALUE_EXPR (t
, DECL_VALUE_EXPR (node
));
976 DECL_HAS_VALUE_EXPR_P (t
) = 1;
978 /* DECL_DEBUG_EXPR is copied explicitely by callers. */
979 if (TREE_CODE (node
) == VAR_DECL
)
980 DECL_HAS_DEBUG_EXPR_P (t
) = 0;
981 if (TREE_CODE (node
) == VAR_DECL
&& DECL_HAS_INIT_PRIORITY_P (node
))
983 SET_DECL_INIT_PRIORITY (t
, DECL_INIT_PRIORITY (node
));
984 DECL_HAS_INIT_PRIORITY_P (t
) = 1;
986 if (TREE_CODE (node
) == FUNCTION_DECL
)
987 DECL_STRUCT_FUNCTION (t
) = NULL
;
989 else if (TREE_CODE_CLASS (code
) == tcc_type
)
991 TYPE_UID (t
) = next_type_uid
++;
992 /* The following is so that the debug code for
993 the copy is different from the original type.
994 The two statements usually duplicate each other
995 (because they clear fields of the same union),
996 but the optimizer should catch that. */
997 TYPE_SYMTAB_POINTER (t
) = 0;
998 TYPE_SYMTAB_ADDRESS (t
) = 0;
1000 /* Do not copy the values cache. */
1001 if (TYPE_CACHED_VALUES_P(t
))
1003 TYPE_CACHED_VALUES_P (t
) = 0;
1004 TYPE_CACHED_VALUES (t
) = NULL_TREE
;
1011 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
1012 For example, this can copy a list made of TREE_LIST nodes. */
1015 copy_list (tree list
)
1023 head
= prev
= copy_node (list
);
1024 next
= TREE_CHAIN (list
);
1027 TREE_CHAIN (prev
) = copy_node (next
);
1028 prev
= TREE_CHAIN (prev
);
1029 next
= TREE_CHAIN (next
);
1035 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1038 build_int_cst (tree type
, HOST_WIDE_INT low
)
1040 /* Support legacy code. */
1042 type
= integer_type_node
;
1044 return double_int_to_tree (type
, double_int::from_shwi (low
));
1047 /* Create an INT_CST node with a LOW value sign extended to TYPE. */
1050 build_int_cst_type (tree type
, HOST_WIDE_INT low
)
1054 return double_int_to_tree (type
, double_int::from_shwi (low
));
1057 /* Constructs tree in type TYPE from with value given by CST. Signedness
1058 of CST is assumed to be the same as the signedness of TYPE. */
1061 double_int_to_tree (tree type
, double_int cst
)
1063 bool sign_extended_type
= !TYPE_UNSIGNED (type
);
1065 cst
= cst
.ext (TYPE_PRECISION (type
), !sign_extended_type
);
1067 return build_int_cst_wide (type
, cst
.low
, cst
.high
);
1070 /* Returns true if CST fits into range of TYPE. Signedness of CST is assumed
1071 to be the same as the signedness of TYPE. */
1074 double_int_fits_to_tree_p (const_tree type
, double_int cst
)
1076 bool sign_extended_type
= !TYPE_UNSIGNED (type
);
1079 = cst
.ext (TYPE_PRECISION (type
), !sign_extended_type
);
1084 /* We force the double_int CST to the range of the type TYPE by sign or
1085 zero extending it. OVERFLOWABLE indicates if we are interested in
1086 overflow of the value, when >0 we are only interested in signed
1087 overflow, for <0 we are interested in any overflow. OVERFLOWED
1088 indicates whether overflow has already occurred. CONST_OVERFLOWED
1089 indicates whether constant overflow has already occurred. We force
1090 T's value to be within range of T's type (by setting to 0 or 1 all
1091 the bits outside the type's range). We set TREE_OVERFLOWED if,
1092 OVERFLOWED is nonzero,
1093 or OVERFLOWABLE is >0 and signed overflow occurs
1094 or OVERFLOWABLE is <0 and any overflow occurs
1095 We return a new tree node for the extended double_int. The node
1096 is shared if no overflow flags are set. */
1100 force_fit_type_double (tree type
, double_int cst
, int overflowable
,
1103 bool sign_extended_type
= !TYPE_UNSIGNED (type
);
1105 /* If we need to set overflow flags, return a new unshared node. */
1106 if (overflowed
|| !double_int_fits_to_tree_p(type
, cst
))
1110 || (overflowable
> 0 && sign_extended_type
))
1112 tree t
= make_node (INTEGER_CST
);
1114 = cst
.ext (TYPE_PRECISION (type
), !sign_extended_type
);
1115 TREE_TYPE (t
) = type
;
1116 TREE_OVERFLOW (t
) = 1;
1121 /* Else build a shared node. */
1122 return double_int_to_tree (type
, cst
);
1125 /* These are the hash table functions for the hash table of INTEGER_CST
1126 nodes of a sizetype. */
1128 /* Return the hash code code X, an INTEGER_CST. */
1131 int_cst_hash_hash (const void *x
)
1133 const_tree
const t
= (const_tree
) x
;
1135 return (TREE_INT_CST_HIGH (t
) ^ TREE_INT_CST_LOW (t
)
1136 ^ htab_hash_pointer (TREE_TYPE (t
)));
1139 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1140 is the same as that given by *Y, which is the same. */
1143 int_cst_hash_eq (const void *x
, const void *y
)
1145 const_tree
const xt
= (const_tree
) x
;
1146 const_tree
const yt
= (const_tree
) y
;
1148 return (TREE_TYPE (xt
) == TREE_TYPE (yt
)
1149 && TREE_INT_CST_HIGH (xt
) == TREE_INT_CST_HIGH (yt
)
1150 && TREE_INT_CST_LOW (xt
) == TREE_INT_CST_LOW (yt
));
1153 /* Create an INT_CST node of TYPE and value HI:LOW.
1154 The returned node is always shared. For small integers we use a
1155 per-type vector cache, for larger ones we use a single hash table. */
1158 build_int_cst_wide (tree type
, unsigned HOST_WIDE_INT low
, HOST_WIDE_INT hi
)
1166 switch (TREE_CODE (type
))
1169 gcc_assert (hi
== 0 && low
== 0);
1173 case REFERENCE_TYPE
:
1174 /* Cache NULL pointer. */
1183 /* Cache false or true. */
1191 if (TYPE_UNSIGNED (type
))
1194 limit
= INTEGER_SHARE_LIMIT
;
1195 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1201 limit
= INTEGER_SHARE_LIMIT
+ 1;
1202 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1204 else if (hi
== -1 && low
== -(unsigned HOST_WIDE_INT
)1)
1218 /* Look for it in the type's vector of small shared ints. */
1219 if (!TYPE_CACHED_VALUES_P (type
))
1221 TYPE_CACHED_VALUES_P (type
) = 1;
1222 TYPE_CACHED_VALUES (type
) = make_tree_vec (limit
);
1225 t
= TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
);
1228 /* Make sure no one is clobbering the shared constant. */
1229 gcc_assert (TREE_TYPE (t
) == type
);
1230 gcc_assert (TREE_INT_CST_LOW (t
) == low
);
1231 gcc_assert (TREE_INT_CST_HIGH (t
) == hi
);
1235 /* Create a new shared int. */
1236 t
= make_node (INTEGER_CST
);
1238 TREE_INT_CST_LOW (t
) = low
;
1239 TREE_INT_CST_HIGH (t
) = hi
;
1240 TREE_TYPE (t
) = type
;
1242 TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) = t
;
1247 /* Use the cache of larger shared ints. */
1250 TREE_INT_CST_LOW (int_cst_node
) = low
;
1251 TREE_INT_CST_HIGH (int_cst_node
) = hi
;
1252 TREE_TYPE (int_cst_node
) = type
;
1254 slot
= htab_find_slot (int_cst_hash_table
, int_cst_node
, INSERT
);
1258 /* Insert this one into the hash table. */
1261 /* Make a new node for next time round. */
1262 int_cst_node
= make_node (INTEGER_CST
);
1269 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1270 and the rest are zeros. */
1273 build_low_bits_mask (tree type
, unsigned bits
)
1277 gcc_assert (bits
<= TYPE_PRECISION (type
));
1279 if (bits
== TYPE_PRECISION (type
)
1280 && !TYPE_UNSIGNED (type
))
1281 /* Sign extended all-ones mask. */
1282 mask
= double_int_minus_one
;
1284 mask
= double_int::mask (bits
);
1286 return build_int_cst_wide (type
, mask
.low
, mask
.high
);
1289 /* Checks that X is integer constant that can be expressed in (unsigned)
1290 HOST_WIDE_INT without loss of precision. */
1293 cst_and_fits_in_hwi (const_tree x
)
1295 if (TREE_CODE (x
) != INTEGER_CST
)
1298 if (TYPE_PRECISION (TREE_TYPE (x
)) > HOST_BITS_PER_WIDE_INT
)
1301 return (TREE_INT_CST_HIGH (x
) == 0
1302 || TREE_INT_CST_HIGH (x
) == -1);
1305 /* Build a newly constructed TREE_VEC node of length LEN. */
1308 make_vector_stat (unsigned len MEM_STAT_DECL
)
1311 unsigned length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vector
);
1313 record_node_allocation_statistics (VECTOR_CST
, length
);
1315 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
1317 TREE_SET_CODE (t
, VECTOR_CST
);
1318 TREE_CONSTANT (t
) = 1;
1323 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1324 are in a list pointed to by VALS. */
1327 build_vector_stat (tree type
, tree
*vals MEM_STAT_DECL
)
1331 tree v
= make_vector (TYPE_VECTOR_SUBPARTS (type
));
1332 TREE_TYPE (v
) = type
;
1334 /* Iterate through elements and check for overflow. */
1335 for (cnt
= 0; cnt
< TYPE_VECTOR_SUBPARTS (type
); ++cnt
)
1337 tree value
= vals
[cnt
];
1339 VECTOR_CST_ELT (v
, cnt
) = value
;
1341 /* Don't crash if we get an address constant. */
1342 if (!CONSTANT_CLASS_P (value
))
1345 over
|= TREE_OVERFLOW (value
);
1348 TREE_OVERFLOW (v
) = over
;
1352 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1353 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1356 build_vector_from_ctor (tree type
, vec
<constructor_elt
, va_gc
> *v
)
1358 tree
*vec
= XALLOCAVEC (tree
, TYPE_VECTOR_SUBPARTS (type
));
1359 unsigned HOST_WIDE_INT idx
;
1362 FOR_EACH_CONSTRUCTOR_VALUE (v
, idx
, value
)
1364 for (; idx
< TYPE_VECTOR_SUBPARTS (type
); ++idx
)
1365 vec
[idx
] = build_zero_cst (TREE_TYPE (type
));
1367 return build_vector (type
, vec
);
1370 /* Build a vector of type VECTYPE where all the elements are SCs. */
1372 build_vector_from_val (tree vectype
, tree sc
)
1374 int i
, nunits
= TYPE_VECTOR_SUBPARTS (vectype
);
1376 if (sc
== error_mark_node
)
1379 /* Verify that the vector type is suitable for SC. Note that there
1380 is some inconsistency in the type-system with respect to restrict
1381 qualifications of pointers. Vector types always have a main-variant
1382 element type and the qualification is applied to the vector-type.
1383 So TREE_TYPE (vector-type) does not return a properly qualified
1384 vector element-type. */
1385 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc
)),
1386 TREE_TYPE (vectype
)));
1388 if (CONSTANT_CLASS_P (sc
))
1390 tree
*v
= XALLOCAVEC (tree
, nunits
);
1391 for (i
= 0; i
< nunits
; ++i
)
1393 return build_vector (vectype
, v
);
1397 vec
<constructor_elt
, va_gc
> *v
;
1398 vec_alloc (v
, nunits
);
1399 for (i
= 0; i
< nunits
; ++i
)
1400 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, sc
);
1401 return build_constructor (vectype
, v
);
1405 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1406 are in the vec pointed to by VALS. */
1408 build_constructor (tree type
, vec
<constructor_elt
, va_gc
> *vals
)
1410 tree c
= make_node (CONSTRUCTOR
);
1412 constructor_elt
*elt
;
1413 bool constant_p
= true;
1414 bool side_effects_p
= false;
1416 TREE_TYPE (c
) = type
;
1417 CONSTRUCTOR_ELTS (c
) = vals
;
1419 FOR_EACH_VEC_SAFE_ELT (vals
, i
, elt
)
1421 /* Mostly ctors will have elts that don't have side-effects, so
1422 the usual case is to scan all the elements. Hence a single
1423 loop for both const and side effects, rather than one loop
1424 each (with early outs). */
1425 if (!TREE_CONSTANT (elt
->value
))
1427 if (TREE_SIDE_EFFECTS (elt
->value
))
1428 side_effects_p
= true;
1431 TREE_SIDE_EFFECTS (c
) = side_effects_p
;
1432 TREE_CONSTANT (c
) = constant_p
;
1437 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1440 build_constructor_single (tree type
, tree index
, tree value
)
1442 vec
<constructor_elt
, va_gc
> *v
;
1443 constructor_elt elt
= {index
, value
};
1446 v
->quick_push (elt
);
1448 return build_constructor (type
, v
);
1452 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1453 are in a list pointed to by VALS. */
1455 build_constructor_from_list (tree type
, tree vals
)
1458 vec
<constructor_elt
, va_gc
> *v
= NULL
;
1462 vec_alloc (v
, list_length (vals
));
1463 for (t
= vals
; t
; t
= TREE_CHAIN (t
))
1464 CONSTRUCTOR_APPEND_ELT (v
, TREE_PURPOSE (t
), TREE_VALUE (t
));
1467 return build_constructor (type
, v
);
1470 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1473 build_fixed (tree type
, FIXED_VALUE_TYPE f
)
1476 FIXED_VALUE_TYPE
*fp
;
1478 v
= make_node (FIXED_CST
);
1479 fp
= ggc_alloc_fixed_value ();
1480 memcpy (fp
, &f
, sizeof (FIXED_VALUE_TYPE
));
1482 TREE_TYPE (v
) = type
;
1483 TREE_FIXED_CST_PTR (v
) = fp
;
1487 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1490 build_real (tree type
, REAL_VALUE_TYPE d
)
1493 REAL_VALUE_TYPE
*dp
;
1496 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1497 Consider doing it via real_convert now. */
1499 v
= make_node (REAL_CST
);
1500 dp
= ggc_alloc_real_value ();
1501 memcpy (dp
, &d
, sizeof (REAL_VALUE_TYPE
));
1503 TREE_TYPE (v
) = type
;
1504 TREE_REAL_CST_PTR (v
) = dp
;
1505 TREE_OVERFLOW (v
) = overflow
;
1509 /* Return a new REAL_CST node whose type is TYPE
1510 and whose value is the integer value of the INTEGER_CST node I. */
1513 real_value_from_int_cst (const_tree type
, const_tree i
)
1517 /* Clear all bits of the real value type so that we can later do
1518 bitwise comparisons to see if two values are the same. */
1519 memset (&d
, 0, sizeof d
);
1521 real_from_integer (&d
, type
? TYPE_MODE (type
) : VOIDmode
,
1522 TREE_INT_CST_LOW (i
), TREE_INT_CST_HIGH (i
),
1523 TYPE_UNSIGNED (TREE_TYPE (i
)));
1527 /* Given a tree representing an integer constant I, return a tree
1528 representing the same value as a floating-point constant of type TYPE. */
1531 build_real_from_int_cst (tree type
, const_tree i
)
1534 int overflow
= TREE_OVERFLOW (i
);
1536 v
= build_real (type
, real_value_from_int_cst (type
, i
));
1538 TREE_OVERFLOW (v
) |= overflow
;
1542 /* Return a newly constructed STRING_CST node whose value is
1543 the LEN characters at STR.
1544 Note that for a C string literal, LEN should include the trailing NUL.
1545 The TREE_TYPE is not initialized. */
1548 build_string (int len
, const char *str
)
1553 /* Do not waste bytes provided by padding of struct tree_string. */
1554 length
= len
+ offsetof (struct tree_string
, str
) + 1;
1556 record_node_allocation_statistics (STRING_CST
, length
);
1558 s
= ggc_alloc_tree_node (length
);
1560 memset (s
, 0, sizeof (struct tree_typed
));
1561 TREE_SET_CODE (s
, STRING_CST
);
1562 TREE_CONSTANT (s
) = 1;
1563 TREE_STRING_LENGTH (s
) = len
;
1564 memcpy (s
->string
.str
, str
, len
);
1565 s
->string
.str
[len
] = '\0';
1570 /* Return a newly constructed COMPLEX_CST node whose value is
1571 specified by the real and imaginary parts REAL and IMAG.
1572 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1573 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
1576 build_complex (tree type
, tree real
, tree imag
)
1578 tree t
= make_node (COMPLEX_CST
);
1580 TREE_REALPART (t
) = real
;
1581 TREE_IMAGPART (t
) = imag
;
1582 TREE_TYPE (t
) = type
? type
: build_complex_type (TREE_TYPE (real
));
1583 TREE_OVERFLOW (t
) = TREE_OVERFLOW (real
) | TREE_OVERFLOW (imag
);
1587 /* Return a constant of arithmetic type TYPE which is the
1588 multiplicative identity of the set TYPE. */
1591 build_one_cst (tree type
)
1593 switch (TREE_CODE (type
))
1595 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
1596 case POINTER_TYPE
: case REFERENCE_TYPE
:
1598 return build_int_cst (type
, 1);
1601 return build_real (type
, dconst1
);
1603 case FIXED_POINT_TYPE
:
1604 /* We can only generate 1 for accum types. */
1605 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)));
1606 return build_fixed (type
, FCONST1(TYPE_MODE (type
)));
1610 tree scalar
= build_one_cst (TREE_TYPE (type
));
1612 return build_vector_from_val (type
, scalar
);
1616 return build_complex (type
,
1617 build_one_cst (TREE_TYPE (type
)),
1618 build_zero_cst (TREE_TYPE (type
)));
1625 /* Build 0 constant of type TYPE. This is used by constructor folding
1626 and thus the constant should be represented in memory by
1630 build_zero_cst (tree type
)
1632 switch (TREE_CODE (type
))
1634 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
1635 case POINTER_TYPE
: case REFERENCE_TYPE
:
1636 case OFFSET_TYPE
: case NULLPTR_TYPE
:
1637 return build_int_cst (type
, 0);
1640 return build_real (type
, dconst0
);
1642 case FIXED_POINT_TYPE
:
1643 return build_fixed (type
, FCONST0 (TYPE_MODE (type
)));
1647 tree scalar
= build_zero_cst (TREE_TYPE (type
));
1649 return build_vector_from_val (type
, scalar
);
1654 tree zero
= build_zero_cst (TREE_TYPE (type
));
1656 return build_complex (type
, zero
, zero
);
1660 if (!AGGREGATE_TYPE_P (type
))
1661 return fold_convert (type
, integer_zero_node
);
1662 return build_constructor (type
, NULL
);
1667 /* Build a BINFO with LEN language slots. */
1670 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL
)
1673 size_t length
= (offsetof (struct tree_binfo
, base_binfos
)
1674 + vec
<tree
, va_gc
>::embedded_size (base_binfos
));
1676 record_node_allocation_statistics (TREE_BINFO
, length
);
1678 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
1680 memset (t
, 0, offsetof (struct tree_binfo
, base_binfos
));
1682 TREE_SET_CODE (t
, TREE_BINFO
);
1684 BINFO_BASE_BINFOS (t
)->embedded_init (base_binfos
);
1689 /* Create a CASE_LABEL_EXPR tree node and return it. */
1692 build_case_label (tree low_value
, tree high_value
, tree label_decl
)
1694 tree t
= make_node (CASE_LABEL_EXPR
);
1696 TREE_TYPE (t
) = void_type_node
;
1697 SET_EXPR_LOCATION (t
, DECL_SOURCE_LOCATION (label_decl
));
1699 CASE_LOW (t
) = low_value
;
1700 CASE_HIGH (t
) = high_value
;
1701 CASE_LABEL (t
) = label_decl
;
1702 CASE_CHAIN (t
) = NULL_TREE
;
1707 /* Build a newly constructed TREE_VEC node of length LEN. */
1710 make_tree_vec_stat (int len MEM_STAT_DECL
)
1713 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
1715 record_node_allocation_statistics (TREE_VEC
, length
);
1717 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
1719 TREE_SET_CODE (t
, TREE_VEC
);
1720 TREE_VEC_LENGTH (t
) = len
;
1725 /* Return 1 if EXPR is the integer constant zero or a complex constant
1729 integer_zerop (const_tree expr
)
1733 switch (TREE_CODE (expr
))
1736 return (TREE_INT_CST_LOW (expr
) == 0
1737 && TREE_INT_CST_HIGH (expr
) == 0);
1739 return (integer_zerop (TREE_REALPART (expr
))
1740 && integer_zerop (TREE_IMAGPART (expr
)));
1744 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
1745 if (!integer_zerop (VECTOR_CST_ELT (expr
, i
)))
1754 /* Return 1 if EXPR is the integer constant one or the corresponding
1755 complex constant. */
1758 integer_onep (const_tree expr
)
1762 switch (TREE_CODE (expr
))
1765 return (TREE_INT_CST_LOW (expr
) == 1
1766 && TREE_INT_CST_HIGH (expr
) == 0);
1768 return (integer_onep (TREE_REALPART (expr
))
1769 && integer_zerop (TREE_IMAGPART (expr
)));
1773 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
1774 if (!integer_onep (VECTOR_CST_ELT (expr
, i
)))
1783 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
1784 it contains. Likewise for the corresponding complex constant. */
1787 integer_all_onesp (const_tree expr
)
1794 if (TREE_CODE (expr
) == COMPLEX_CST
1795 && integer_all_onesp (TREE_REALPART (expr
))
1796 && integer_zerop (TREE_IMAGPART (expr
)))
1799 else if (TREE_CODE (expr
) == VECTOR_CST
)
1802 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
1803 if (!integer_all_onesp (VECTOR_CST_ELT (expr
, i
)))
1808 else if (TREE_CODE (expr
) != INTEGER_CST
)
1811 uns
= TYPE_UNSIGNED (TREE_TYPE (expr
));
1812 if (TREE_INT_CST_LOW (expr
) == ~(unsigned HOST_WIDE_INT
) 0
1813 && TREE_INT_CST_HIGH (expr
) == -1)
1818 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
1819 if (prec
>= HOST_BITS_PER_WIDE_INT
)
1821 HOST_WIDE_INT high_value
;
1824 shift_amount
= prec
- HOST_BITS_PER_WIDE_INT
;
1826 /* Can not handle precisions greater than twice the host int size. */
1827 gcc_assert (shift_amount
<= HOST_BITS_PER_WIDE_INT
);
1828 if (shift_amount
== HOST_BITS_PER_WIDE_INT
)
1829 /* Shifting by the host word size is undefined according to the ANSI
1830 standard, so we must handle this as a special case. */
1833 high_value
= ((HOST_WIDE_INT
) 1 << shift_amount
) - 1;
1835 return (TREE_INT_CST_LOW (expr
) == ~(unsigned HOST_WIDE_INT
) 0
1836 && TREE_INT_CST_HIGH (expr
) == high_value
);
1839 return TREE_INT_CST_LOW (expr
) == ((unsigned HOST_WIDE_INT
) 1 << prec
) - 1;
1842 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
1846 integer_pow2p (const_tree expr
)
1849 unsigned HOST_WIDE_INT high
, low
;
1853 if (TREE_CODE (expr
) == COMPLEX_CST
1854 && integer_pow2p (TREE_REALPART (expr
))
1855 && integer_zerop (TREE_IMAGPART (expr
)))
1858 if (TREE_CODE (expr
) != INTEGER_CST
)
1861 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
1862 high
= TREE_INT_CST_HIGH (expr
);
1863 low
= TREE_INT_CST_LOW (expr
);
1865 /* First clear all bits that are beyond the type's precision in case
1866 we've been sign extended. */
1868 if (prec
== HOST_BITS_PER_DOUBLE_INT
)
1870 else if (prec
> HOST_BITS_PER_WIDE_INT
)
1871 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
1875 if (prec
< HOST_BITS_PER_WIDE_INT
)
1876 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
1879 if (high
== 0 && low
== 0)
1882 return ((high
== 0 && (low
& (low
- 1)) == 0)
1883 || (low
== 0 && (high
& (high
- 1)) == 0));
1886 /* Return 1 if EXPR is an integer constant other than zero or a
1887 complex constant other than zero. */
1890 integer_nonzerop (const_tree expr
)
1894 return ((TREE_CODE (expr
) == INTEGER_CST
1895 && (TREE_INT_CST_LOW (expr
) != 0
1896 || TREE_INT_CST_HIGH (expr
) != 0))
1897 || (TREE_CODE (expr
) == COMPLEX_CST
1898 && (integer_nonzerop (TREE_REALPART (expr
))
1899 || integer_nonzerop (TREE_IMAGPART (expr
)))));
1902 /* Return 1 if EXPR is the fixed-point constant zero. */
1905 fixed_zerop (const_tree expr
)
1907 return (TREE_CODE (expr
) == FIXED_CST
1908 && TREE_FIXED_CST (expr
).data
.is_zero ());
1911 /* Return the power of two represented by a tree node known to be a
1915 tree_log2 (const_tree expr
)
1918 HOST_WIDE_INT high
, low
;
1922 if (TREE_CODE (expr
) == COMPLEX_CST
)
1923 return tree_log2 (TREE_REALPART (expr
));
1925 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
1926 high
= TREE_INT_CST_HIGH (expr
);
1927 low
= TREE_INT_CST_LOW (expr
);
1929 /* First clear all bits that are beyond the type's precision in case
1930 we've been sign extended. */
1932 if (prec
== HOST_BITS_PER_DOUBLE_INT
)
1934 else if (prec
> HOST_BITS_PER_WIDE_INT
)
1935 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
1939 if (prec
< HOST_BITS_PER_WIDE_INT
)
1940 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
1943 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ exact_log2 (high
)
1944 : exact_log2 (low
));
1947 /* Similar, but return the largest integer Y such that 2 ** Y is less
1948 than or equal to EXPR. */
1951 tree_floor_log2 (const_tree expr
)
1954 HOST_WIDE_INT high
, low
;
1958 if (TREE_CODE (expr
) == COMPLEX_CST
)
1959 return tree_log2 (TREE_REALPART (expr
));
1961 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
1962 high
= TREE_INT_CST_HIGH (expr
);
1963 low
= TREE_INT_CST_LOW (expr
);
1965 /* First clear all bits that are beyond the type's precision in case
1966 we've been sign extended. Ignore if type's precision hasn't been set
1967 since what we are doing is setting it. */
1969 if (prec
== HOST_BITS_PER_DOUBLE_INT
|| prec
== 0)
1971 else if (prec
> HOST_BITS_PER_WIDE_INT
)
1972 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
1976 if (prec
< HOST_BITS_PER_WIDE_INT
)
1977 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
1980 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ floor_log2 (high
)
1981 : floor_log2 (low
));
1984 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
1985 decimal float constants, so don't return 1 for them. */
1988 real_zerop (const_tree expr
)
1992 switch (TREE_CODE (expr
))
1995 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst0
)
1996 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
1998 return real_zerop (TREE_REALPART (expr
))
1999 && real_zerop (TREE_IMAGPART (expr
));
2003 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2004 if (!real_zerop (VECTOR_CST_ELT (expr
, i
)))
2013 /* Return 1 if EXPR is the real constant one in real or complex form.
2014 Trailing zeroes matter for decimal float constants, so don't return
2018 real_onep (const_tree expr
)
2022 switch (TREE_CODE (expr
))
2025 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst1
)
2026 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2028 return real_onep (TREE_REALPART (expr
))
2029 && real_zerop (TREE_IMAGPART (expr
));
2033 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2034 if (!real_onep (VECTOR_CST_ELT (expr
, i
)))
2043 /* Return 1 if EXPR is the real constant two. Trailing zeroes matter
2044 for decimal float constants, so don't return 1 for them. */
2047 real_twop (const_tree expr
)
2051 switch (TREE_CODE (expr
))
2054 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst2
)
2055 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2057 return real_twop (TREE_REALPART (expr
))
2058 && real_zerop (TREE_IMAGPART (expr
));
2062 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2063 if (!real_twop (VECTOR_CST_ELT (expr
, i
)))
2072 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2073 matter for decimal float constants, so don't return 1 for them. */
2076 real_minus_onep (const_tree expr
)
2080 switch (TREE_CODE (expr
))
2083 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconstm1
)
2084 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2086 return real_minus_onep (TREE_REALPART (expr
))
2087 && real_zerop (TREE_IMAGPART (expr
));
2091 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2092 if (!real_minus_onep (VECTOR_CST_ELT (expr
, i
)))
2101 /* Nonzero if EXP is a constant or a cast of a constant. */
2104 really_constant_p (const_tree exp
)
2106 /* This is not quite the same as STRIP_NOPS. It does more. */
2107 while (CONVERT_EXPR_P (exp
)
2108 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
2109 exp
= TREE_OPERAND (exp
, 0);
2110 return TREE_CONSTANT (exp
);
2113 /* Return first list element whose TREE_VALUE is ELEM.
2114 Return 0 if ELEM is not in LIST. */
2117 value_member (tree elem
, tree list
)
2121 if (elem
== TREE_VALUE (list
))
2123 list
= TREE_CHAIN (list
);
2128 /* Return first list element whose TREE_PURPOSE is ELEM.
2129 Return 0 if ELEM is not in LIST. */
2132 purpose_member (const_tree elem
, tree list
)
2136 if (elem
== TREE_PURPOSE (list
))
2138 list
= TREE_CHAIN (list
);
2143 /* Return true if ELEM is in V. */
2146 vec_member (const_tree elem
, vec
<tree
, va_gc
> *v
)
2150 FOR_EACH_VEC_SAFE_ELT (v
, ix
, t
)
2156 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2160 chain_index (int idx
, tree chain
)
2162 for (; chain
&& idx
> 0; --idx
)
2163 chain
= TREE_CHAIN (chain
);
2167 /* Return nonzero if ELEM is part of the chain CHAIN. */
2170 chain_member (const_tree elem
, const_tree chain
)
2176 chain
= DECL_CHAIN (chain
);
2182 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2183 We expect a null pointer to mark the end of the chain.
2184 This is the Lisp primitive `length'. */
2187 list_length (const_tree t
)
2190 #ifdef ENABLE_TREE_CHECKING
2198 #ifdef ENABLE_TREE_CHECKING
2201 gcc_assert (p
!= q
);
2209 /* Returns the number of FIELD_DECLs in TYPE. */
2212 fields_length (const_tree type
)
2214 tree t
= TYPE_FIELDS (type
);
2217 for (; t
; t
= DECL_CHAIN (t
))
2218 if (TREE_CODE (t
) == FIELD_DECL
)
2224 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2225 UNION_TYPE TYPE, or NULL_TREE if none. */
2228 first_field (const_tree type
)
2230 tree t
= TYPE_FIELDS (type
);
2231 while (t
&& TREE_CODE (t
) != FIELD_DECL
)
2236 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2237 by modifying the last node in chain 1 to point to chain 2.
2238 This is the Lisp primitive `nconc'. */
2241 chainon (tree op1
, tree op2
)
2250 for (t1
= op1
; TREE_CHAIN (t1
); t1
= TREE_CHAIN (t1
))
2252 TREE_CHAIN (t1
) = op2
;
2254 #ifdef ENABLE_TREE_CHECKING
2257 for (t2
= op2
; t2
; t2
= TREE_CHAIN (t2
))
2258 gcc_assert (t2
!= t1
);
2265 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2268 tree_last (tree chain
)
2272 while ((next
= TREE_CHAIN (chain
)))
2277 /* Reverse the order of elements in the chain T,
2278 and return the new head of the chain (old last element). */
2283 tree prev
= 0, decl
, next
;
2284 for (decl
= t
; decl
; decl
= next
)
2286 /* We shouldn't be using this function to reverse BLOCK chains; we
2287 have blocks_nreverse for that. */
2288 gcc_checking_assert (TREE_CODE (decl
) != BLOCK
);
2289 next
= TREE_CHAIN (decl
);
2290 TREE_CHAIN (decl
) = prev
;
2296 /* Return a newly created TREE_LIST node whose
2297 purpose and value fields are PARM and VALUE. */
2300 build_tree_list_stat (tree parm
, tree value MEM_STAT_DECL
)
2302 tree t
= make_node_stat (TREE_LIST PASS_MEM_STAT
);
2303 TREE_PURPOSE (t
) = parm
;
2304 TREE_VALUE (t
) = value
;
2308 /* Build a chain of TREE_LIST nodes from a vector. */
2311 build_tree_list_vec_stat (const vec
<tree
, va_gc
> *vec MEM_STAT_DECL
)
2313 tree ret
= NULL_TREE
;
2317 FOR_EACH_VEC_SAFE_ELT (vec
, i
, t
)
2319 *pp
= build_tree_list_stat (NULL
, t PASS_MEM_STAT
);
2320 pp
= &TREE_CHAIN (*pp
);
2325 /* Return a newly created TREE_LIST node whose
2326 purpose and value fields are PURPOSE and VALUE
2327 and whose TREE_CHAIN is CHAIN. */
2330 tree_cons_stat (tree purpose
, tree value
, tree chain MEM_STAT_DECL
)
2334 node
= ggc_alloc_tree_node_stat (sizeof (struct tree_list
) PASS_MEM_STAT
);
2335 memset (node
, 0, sizeof (struct tree_common
));
2337 record_node_allocation_statistics (TREE_LIST
, sizeof (struct tree_list
));
2339 TREE_SET_CODE (node
, TREE_LIST
);
2340 TREE_CHAIN (node
) = chain
;
2341 TREE_PURPOSE (node
) = purpose
;
2342 TREE_VALUE (node
) = value
;
2346 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2350 ctor_to_vec (tree ctor
)
2352 vec
<tree
, va_gc
> *vec
;
2353 vec_alloc (vec
, CONSTRUCTOR_NELTS (ctor
));
2357 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor
), ix
, val
)
2358 vec
->quick_push (val
);
2363 /* Return the size nominally occupied by an object of type TYPE
2364 when it resides in memory. The value is measured in units of bytes,
2365 and its data type is that normally used for type sizes
2366 (which is the first type created by make_signed_type or
2367 make_unsigned_type). */
2370 size_in_bytes (const_tree type
)
2374 if (type
== error_mark_node
)
2375 return integer_zero_node
;
2377 type
= TYPE_MAIN_VARIANT (type
);
2378 t
= TYPE_SIZE_UNIT (type
);
2382 lang_hooks
.types
.incomplete_type_error (NULL_TREE
, type
);
2383 return size_zero_node
;
2389 /* Return the size of TYPE (in bytes) as a wide integer
2390 or return -1 if the size can vary or is larger than an integer. */
2393 int_size_in_bytes (const_tree type
)
2397 if (type
== error_mark_node
)
2400 type
= TYPE_MAIN_VARIANT (type
);
2401 t
= TYPE_SIZE_UNIT (type
);
2403 || TREE_CODE (t
) != INTEGER_CST
2404 || TREE_INT_CST_HIGH (t
) != 0
2405 /* If the result would appear negative, it's too big to represent. */
2406 || (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0)
2409 return TREE_INT_CST_LOW (t
);
2412 /* Return the maximum size of TYPE (in bytes) as a wide integer
2413 or return -1 if the size can vary or is larger than an integer. */
2416 max_int_size_in_bytes (const_tree type
)
2418 HOST_WIDE_INT size
= -1;
2421 /* If this is an array type, check for a possible MAX_SIZE attached. */
2423 if (TREE_CODE (type
) == ARRAY_TYPE
)
2425 size_tree
= TYPE_ARRAY_MAX_SIZE (type
);
2427 if (size_tree
&& host_integerp (size_tree
, 1))
2428 size
= tree_low_cst (size_tree
, 1);
2431 /* If we still haven't been able to get a size, see if the language
2432 can compute a maximum size. */
2436 size_tree
= lang_hooks
.types
.max_size (type
);
2438 if (size_tree
&& host_integerp (size_tree
, 1))
2439 size
= tree_low_cst (size_tree
, 1);
2445 /* Returns a tree for the size of EXP in bytes. */
2448 tree_expr_size (const_tree exp
)
2451 && DECL_SIZE_UNIT (exp
) != 0)
2452 return DECL_SIZE_UNIT (exp
);
2454 return size_in_bytes (TREE_TYPE (exp
));
2457 /* Return the bit position of FIELD, in bits from the start of the record.
2458 This is a tree of type bitsizetype. */
2461 bit_position (const_tree field
)
2463 return bit_from_pos (DECL_FIELD_OFFSET (field
),
2464 DECL_FIELD_BIT_OFFSET (field
));
2467 /* Likewise, but return as an integer. It must be representable in
2468 that way (since it could be a signed value, we don't have the
2469 option of returning -1 like int_size_in_byte can. */
2472 int_bit_position (const_tree field
)
2474 return tree_low_cst (bit_position (field
), 0);
2477 /* Return the byte position of FIELD, in bytes from the start of the record.
2478 This is a tree of type sizetype. */
2481 byte_position (const_tree field
)
2483 return byte_from_pos (DECL_FIELD_OFFSET (field
),
2484 DECL_FIELD_BIT_OFFSET (field
));
2487 /* Likewise, but return as an integer. It must be representable in
2488 that way (since it could be a signed value, we don't have the
2489 option of returning -1 like int_size_in_byte can. */
2492 int_byte_position (const_tree field
)
2494 return tree_low_cst (byte_position (field
), 0);
2497 /* Return the strictest alignment, in bits, that T is known to have. */
2500 expr_align (const_tree t
)
2502 unsigned int align0
, align1
;
2504 switch (TREE_CODE (t
))
2506 CASE_CONVERT
: case NON_LVALUE_EXPR
:
2507 /* If we have conversions, we know that the alignment of the
2508 object must meet each of the alignments of the types. */
2509 align0
= expr_align (TREE_OPERAND (t
, 0));
2510 align1
= TYPE_ALIGN (TREE_TYPE (t
));
2511 return MAX (align0
, align1
);
2513 case SAVE_EXPR
: case COMPOUND_EXPR
: case MODIFY_EXPR
:
2514 case INIT_EXPR
: case TARGET_EXPR
: case WITH_CLEANUP_EXPR
:
2515 case CLEANUP_POINT_EXPR
:
2516 /* These don't change the alignment of an object. */
2517 return expr_align (TREE_OPERAND (t
, 0));
2520 /* The best we can do is say that the alignment is the least aligned
2522 align0
= expr_align (TREE_OPERAND (t
, 1));
2523 align1
= expr_align (TREE_OPERAND (t
, 2));
2524 return MIN (align0
, align1
);
2526 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
2527 meaningfully, it's always 1. */
2528 case LABEL_DECL
: case CONST_DECL
:
2529 case VAR_DECL
: case PARM_DECL
: case RESULT_DECL
:
2531 gcc_assert (DECL_ALIGN (t
) != 0);
2532 return DECL_ALIGN (t
);
2538 /* Otherwise take the alignment from that of the type. */
2539 return TYPE_ALIGN (TREE_TYPE (t
));
2542 /* Return, as a tree node, the number of elements for TYPE (which is an
2543 ARRAY_TYPE) minus one. This counts only elements of the top array. */
2546 array_type_nelts (const_tree type
)
2548 tree index_type
, min
, max
;
2550 /* If they did it with unspecified bounds, then we should have already
2551 given an error about it before we got here. */
2552 if (! TYPE_DOMAIN (type
))
2553 return error_mark_node
;
2555 index_type
= TYPE_DOMAIN (type
);
2556 min
= TYPE_MIN_VALUE (index_type
);
2557 max
= TYPE_MAX_VALUE (index_type
);
2559 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
2561 return error_mark_node
;
2563 return (integer_zerop (min
)
2565 : fold_build2 (MINUS_EXPR
, TREE_TYPE (max
), max
, min
));
2568 /* If arg is static -- a reference to an object in static storage -- then
2569 return the object. This is not the same as the C meaning of `static'.
2570 If arg isn't static, return NULL. */
2575 switch (TREE_CODE (arg
))
2578 /* Nested functions are static, even though taking their address will
2579 involve a trampoline as we unnest the nested function and create
2580 the trampoline on the tree level. */
2584 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
2585 && ! DECL_THREAD_LOCAL_P (arg
)
2586 && ! DECL_DLLIMPORT_P (arg
)
2590 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
2594 return TREE_STATIC (arg
) ? arg
: NULL
;
2601 /* If the thing being referenced is not a field, then it is
2602 something language specific. */
2603 gcc_assert (TREE_CODE (TREE_OPERAND (arg
, 1)) == FIELD_DECL
);
2605 /* If we are referencing a bitfield, we can't evaluate an
2606 ADDR_EXPR at compile time and so it isn't a constant. */
2607 if (DECL_BIT_FIELD (TREE_OPERAND (arg
, 1)))
2610 return staticp (TREE_OPERAND (arg
, 0));
2616 return TREE_CONSTANT (TREE_OPERAND (arg
, 0)) ? arg
: NULL
;
2619 case ARRAY_RANGE_REF
:
2620 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg
))) == INTEGER_CST
2621 && TREE_CODE (TREE_OPERAND (arg
, 1)) == INTEGER_CST
)
2622 return staticp (TREE_OPERAND (arg
, 0));
2626 case COMPOUND_LITERAL_EXPR
:
2627 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg
)) ? arg
: NULL
;
2637 /* Return whether OP is a DECL whose address is function-invariant. */
2640 decl_address_invariant_p (const_tree op
)
2642 /* The conditions below are slightly less strict than the one in
2645 switch (TREE_CODE (op
))
2654 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2655 || DECL_THREAD_LOCAL_P (op
)
2656 || DECL_CONTEXT (op
) == current_function_decl
2657 || decl_function_context (op
) == current_function_decl
)
2662 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2663 || decl_function_context (op
) == current_function_decl
)
2674 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
2677 decl_address_ip_invariant_p (const_tree op
)
2679 /* The conditions below are slightly less strict than the one in
2682 switch (TREE_CODE (op
))
2690 if (((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2691 && !DECL_DLLIMPORT_P (op
))
2692 || DECL_THREAD_LOCAL_P (op
))
2697 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
)))
2709 /* Return true if T is function-invariant (internal function, does
2710 not handle arithmetic; that's handled in skip_simple_arithmetic and
2711 tree_invariant_p). */
2713 static bool tree_invariant_p (tree t
);
2716 tree_invariant_p_1 (tree t
)
2720 if (TREE_CONSTANT (t
)
2721 || (TREE_READONLY (t
) && !TREE_SIDE_EFFECTS (t
)))
2724 switch (TREE_CODE (t
))
2730 op
= TREE_OPERAND (t
, 0);
2731 while (handled_component_p (op
))
2733 switch (TREE_CODE (op
))
2736 case ARRAY_RANGE_REF
:
2737 if (!tree_invariant_p (TREE_OPERAND (op
, 1))
2738 || TREE_OPERAND (op
, 2) != NULL_TREE
2739 || TREE_OPERAND (op
, 3) != NULL_TREE
)
2744 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
2750 op
= TREE_OPERAND (op
, 0);
2753 return CONSTANT_CLASS_P (op
) || decl_address_invariant_p (op
);
2762 /* Return true if T is function-invariant. */
2765 tree_invariant_p (tree t
)
2767 tree inner
= skip_simple_arithmetic (t
);
2768 return tree_invariant_p_1 (inner
);
2771 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
2772 Do this to any expression which may be used in more than one place,
2773 but must be evaluated only once.
2775 Normally, expand_expr would reevaluate the expression each time.
2776 Calling save_expr produces something that is evaluated and recorded
2777 the first time expand_expr is called on it. Subsequent calls to
2778 expand_expr just reuse the recorded value.
2780 The call to expand_expr that generates code that actually computes
2781 the value is the first call *at compile time*. Subsequent calls
2782 *at compile time* generate code to use the saved value.
2783 This produces correct result provided that *at run time* control
2784 always flows through the insns made by the first expand_expr
2785 before reaching the other places where the save_expr was evaluated.
2786 You, the caller of save_expr, must make sure this is so.
2788 Constants, and certain read-only nodes, are returned with no
2789 SAVE_EXPR because that is safe. Expressions containing placeholders
2790 are not touched; see tree.def for an explanation of what these
2794 save_expr (tree expr
)
2796 tree t
= fold (expr
);
2799 /* If the tree evaluates to a constant, then we don't want to hide that
2800 fact (i.e. this allows further folding, and direct checks for constants).
2801 However, a read-only object that has side effects cannot be bypassed.
2802 Since it is no problem to reevaluate literals, we just return the
2804 inner
= skip_simple_arithmetic (t
);
2805 if (TREE_CODE (inner
) == ERROR_MARK
)
2808 if (tree_invariant_p_1 (inner
))
2811 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
2812 it means that the size or offset of some field of an object depends on
2813 the value within another field.
2815 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
2816 and some variable since it would then need to be both evaluated once and
2817 evaluated more than once. Front-ends must assure this case cannot
2818 happen by surrounding any such subexpressions in their own SAVE_EXPR
2819 and forcing evaluation at the proper time. */
2820 if (contains_placeholder_p (inner
))
2823 t
= build1 (SAVE_EXPR
, TREE_TYPE (expr
), t
);
2824 SET_EXPR_LOCATION (t
, EXPR_LOCATION (expr
));
2826 /* This expression might be placed ahead of a jump to ensure that the
2827 value was computed on both sides of the jump. So make sure it isn't
2828 eliminated as dead. */
2829 TREE_SIDE_EFFECTS (t
) = 1;
2833 /* Look inside EXPR and into any simple arithmetic operations. Return
2834 the innermost non-arithmetic node. */
2837 skip_simple_arithmetic (tree expr
)
2841 /* We don't care about whether this can be used as an lvalue in this
2843 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
2844 expr
= TREE_OPERAND (expr
, 0);
2846 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
2847 a constant, it will be more efficient to not make another SAVE_EXPR since
2848 it will allow better simplification and GCSE will be able to merge the
2849 computations if they actually occur. */
2853 if (UNARY_CLASS_P (inner
))
2854 inner
= TREE_OPERAND (inner
, 0);
2855 else if (BINARY_CLASS_P (inner
))
2857 if (tree_invariant_p (TREE_OPERAND (inner
, 1)))
2858 inner
= TREE_OPERAND (inner
, 0);
2859 else if (tree_invariant_p (TREE_OPERAND (inner
, 0)))
2860 inner
= TREE_OPERAND (inner
, 1);
2872 /* Return which tree structure is used by T. */
2874 enum tree_node_structure_enum
2875 tree_node_structure (const_tree t
)
2877 const enum tree_code code
= TREE_CODE (t
);
2878 return tree_node_structure_for_code (code
);
2881 /* Set various status flags when building a CALL_EXPR object T. */
2884 process_call_operands (tree t
)
2886 bool side_effects
= TREE_SIDE_EFFECTS (t
);
2887 bool read_only
= false;
2888 int i
= call_expr_flags (t
);
2890 /* Calls have side-effects, except those to const or pure functions. */
2891 if ((i
& ECF_LOOPING_CONST_OR_PURE
) || !(i
& (ECF_CONST
| ECF_PURE
)))
2892 side_effects
= true;
2893 /* Propagate TREE_READONLY of arguments for const functions. */
2897 if (!side_effects
|| read_only
)
2898 for (i
= 1; i
< TREE_OPERAND_LENGTH (t
); i
++)
2900 tree op
= TREE_OPERAND (t
, i
);
2901 if (op
&& TREE_SIDE_EFFECTS (op
))
2902 side_effects
= true;
2903 if (op
&& !TREE_READONLY (op
) && !CONSTANT_CLASS_P (op
))
2907 TREE_SIDE_EFFECTS (t
) = side_effects
;
2908 TREE_READONLY (t
) = read_only
;
2911 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
2912 size or offset that depends on a field within a record. */
2915 contains_placeholder_p (const_tree exp
)
2917 enum tree_code code
;
2922 code
= TREE_CODE (exp
);
2923 if (code
== PLACEHOLDER_EXPR
)
2926 switch (TREE_CODE_CLASS (code
))
2929 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
2930 position computations since they will be converted into a
2931 WITH_RECORD_EXPR involving the reference, which will assume
2932 here will be valid. */
2933 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
2935 case tcc_exceptional
:
2936 if (code
== TREE_LIST
)
2937 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp
))
2938 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp
)));
2943 case tcc_comparison
:
2944 case tcc_expression
:
2948 /* Ignoring the first operand isn't quite right, but works best. */
2949 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1));
2952 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
2953 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1))
2954 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 2)));
2957 /* The save_expr function never wraps anything containing
2958 a PLACEHOLDER_EXPR. */
2965 switch (TREE_CODE_LENGTH (code
))
2968 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
2970 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
2971 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1)));
2982 const_call_expr_arg_iterator iter
;
2983 FOR_EACH_CONST_CALL_EXPR_ARG (arg
, iter
, exp
)
2984 if (CONTAINS_PLACEHOLDER_P (arg
))
2998 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
2999 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3003 type_contains_placeholder_1 (const_tree type
)
3005 /* If the size contains a placeholder or the parent type (component type in
3006 the case of arrays) type involves a placeholder, this type does. */
3007 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type
))
3008 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type
))
3009 || (!POINTER_TYPE_P (type
)
3011 && type_contains_placeholder_p (TREE_TYPE (type
))))
3014 /* Now do type-specific checks. Note that the last part of the check above
3015 greatly limits what we have to do below. */
3016 switch (TREE_CODE (type
))
3024 case REFERENCE_TYPE
:
3033 case FIXED_POINT_TYPE
:
3034 /* Here we just check the bounds. */
3035 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type
))
3036 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type
)));
3039 /* We have already checked the component type above, so just check the
3041 return type_contains_placeholder_p (TYPE_DOMAIN (type
));
3045 case QUAL_UNION_TYPE
:
3049 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
3050 if (TREE_CODE (field
) == FIELD_DECL
3051 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field
))
3052 || (TREE_CODE (type
) == QUAL_UNION_TYPE
3053 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field
)))
3054 || type_contains_placeholder_p (TREE_TYPE (field
))))
3065 /* Wrapper around above function used to cache its result. */
3068 type_contains_placeholder_p (tree type
)
3072 /* If the contains_placeholder_bits field has been initialized,
3073 then we know the answer. */
3074 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) > 0)
3075 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) - 1;
3077 /* Indicate that we've seen this type node, and the answer is false.
3078 This is what we want to return if we run into recursion via fields. */
3079 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = 1;
3081 /* Compute the real value. */
3082 result
= type_contains_placeholder_1 (type
);
3084 /* Store the real value. */
3085 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = result
+ 1;
3090 /* Push tree EXP onto vector QUEUE if it is not already present. */
3093 push_without_duplicates (tree exp
, vec
<tree
> *queue
)
3098 FOR_EACH_VEC_ELT (*queue
, i
, iter
)
3099 if (simple_cst_equal (iter
, exp
) == 1)
3103 queue
->safe_push (exp
);
3106 /* Given a tree EXP, find all occurrences of references to fields
3107 in a PLACEHOLDER_EXPR and place them in vector REFS without
3108 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3109 we assume here that EXP contains only arithmetic expressions
3110 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3114 find_placeholder_in_expr (tree exp
, vec
<tree
> *refs
)
3116 enum tree_code code
= TREE_CODE (exp
);
3120 /* We handle TREE_LIST and COMPONENT_REF separately. */
3121 if (code
== TREE_LIST
)
3123 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), refs
);
3124 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), refs
);
3126 else if (code
== COMPONENT_REF
)
3128 for (inner
= TREE_OPERAND (exp
, 0);
3129 REFERENCE_CLASS_P (inner
);
3130 inner
= TREE_OPERAND (inner
, 0))
3133 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
)
3134 push_without_duplicates (exp
, refs
);
3136 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), refs
);
3139 switch (TREE_CODE_CLASS (code
))
3144 case tcc_declaration
:
3145 /* Variables allocated to static storage can stay. */
3146 if (!TREE_STATIC (exp
))
3147 push_without_duplicates (exp
, refs
);
3150 case tcc_expression
:
3151 /* This is the pattern built in ada/make_aligning_type. */
3152 if (code
== ADDR_EXPR
3153 && TREE_CODE (TREE_OPERAND (exp
, 0)) == PLACEHOLDER_EXPR
)
3155 push_without_duplicates (exp
, refs
);
3159 /* Fall through... */
3161 case tcc_exceptional
:
3164 case tcc_comparison
:
3166 for (i
= 0; i
< TREE_CODE_LENGTH (code
); i
++)
3167 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3171 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3172 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3180 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3181 return a tree with all occurrences of references to F in a
3182 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3183 CONST_DECLs. Note that we assume here that EXP contains only
3184 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3185 occurring only in their argument list. */
3188 substitute_in_expr (tree exp
, tree f
, tree r
)
3190 enum tree_code code
= TREE_CODE (exp
);
3191 tree op0
, op1
, op2
, op3
;
3194 /* We handle TREE_LIST and COMPONENT_REF separately. */
3195 if (code
== TREE_LIST
)
3197 op0
= SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp
), f
, r
);
3198 op1
= SUBSTITUTE_IN_EXPR (TREE_VALUE (exp
), f
, r
);
3199 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3202 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3204 else if (code
== COMPONENT_REF
)
3208 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3209 and it is the right field, replace it with R. */
3210 for (inner
= TREE_OPERAND (exp
, 0);
3211 REFERENCE_CLASS_P (inner
);
3212 inner
= TREE_OPERAND (inner
, 0))
3216 op1
= TREE_OPERAND (exp
, 1);
3218 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& op1
== f
)
3221 /* If this expression hasn't been completed let, leave it alone. */
3222 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& !TREE_TYPE (inner
))
3225 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3226 if (op0
== TREE_OPERAND (exp
, 0))
3230 = fold_build3 (COMPONENT_REF
, TREE_TYPE (exp
), op0
, op1
, NULL_TREE
);
3233 switch (TREE_CODE_CLASS (code
))
3238 case tcc_declaration
:
3244 case tcc_expression
:
3248 /* Fall through... */
3250 case tcc_exceptional
:
3253 case tcc_comparison
:
3255 switch (TREE_CODE_LENGTH (code
))
3261 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3262 if (op0
== TREE_OPERAND (exp
, 0))
3265 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3269 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3270 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3272 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3275 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3279 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3280 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3281 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3283 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3284 && op2
== TREE_OPERAND (exp
, 2))
3287 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3291 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3292 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3293 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3294 op3
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 3), f
, r
);
3296 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3297 && op2
== TREE_OPERAND (exp
, 2)
3298 && op3
== TREE_OPERAND (exp
, 3))
3302 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3314 new_tree
= NULL_TREE
;
3316 /* If we are trying to replace F with a constant, inline back
3317 functions which do nothing else than computing a value from
3318 the arguments they are passed. This makes it possible to
3319 fold partially or entirely the replacement expression. */
3320 if (CONSTANT_CLASS_P (r
) && code
== CALL_EXPR
)
3322 tree t
= maybe_inline_call_in_expr (exp
);
3324 return SUBSTITUTE_IN_EXPR (t
, f
, r
);
3327 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3329 tree op
= TREE_OPERAND (exp
, i
);
3330 tree new_op
= SUBSTITUTE_IN_EXPR (op
, f
, r
);
3334 new_tree
= copy_node (exp
);
3335 TREE_OPERAND (new_tree
, i
) = new_op
;
3341 new_tree
= fold (new_tree
);
3342 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3343 process_call_operands (new_tree
);
3354 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3356 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3357 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3362 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3363 for it within OBJ, a tree that is an object or a chain of references. */
3366 substitute_placeholder_in_expr (tree exp
, tree obj
)
3368 enum tree_code code
= TREE_CODE (exp
);
3369 tree op0
, op1
, op2
, op3
;
3372 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3373 in the chain of OBJ. */
3374 if (code
== PLACEHOLDER_EXPR
)
3376 tree need_type
= TYPE_MAIN_VARIANT (TREE_TYPE (exp
));
3379 for (elt
= obj
; elt
!= 0;
3380 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3381 || TREE_CODE (elt
) == COND_EXPR
)
3382 ? TREE_OPERAND (elt
, 1)
3383 : (REFERENCE_CLASS_P (elt
)
3384 || UNARY_CLASS_P (elt
)
3385 || BINARY_CLASS_P (elt
)
3386 || VL_EXP_CLASS_P (elt
)
3387 || EXPRESSION_CLASS_P (elt
))
3388 ? TREE_OPERAND (elt
, 0) : 0))
3389 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt
)) == need_type
)
3392 for (elt
= obj
; elt
!= 0;
3393 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3394 || TREE_CODE (elt
) == COND_EXPR
)
3395 ? TREE_OPERAND (elt
, 1)
3396 : (REFERENCE_CLASS_P (elt
)
3397 || UNARY_CLASS_P (elt
)
3398 || BINARY_CLASS_P (elt
)
3399 || VL_EXP_CLASS_P (elt
)
3400 || EXPRESSION_CLASS_P (elt
))
3401 ? TREE_OPERAND (elt
, 0) : 0))
3402 if (POINTER_TYPE_P (TREE_TYPE (elt
))
3403 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt
)))
3405 return fold_build1 (INDIRECT_REF
, need_type
, elt
);
3407 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3408 survives until RTL generation, there will be an error. */
3412 /* TREE_LIST is special because we need to look at TREE_VALUE
3413 and TREE_CHAIN, not TREE_OPERANDS. */
3414 else if (code
== TREE_LIST
)
3416 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), obj
);
3417 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), obj
);
3418 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3421 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3424 switch (TREE_CODE_CLASS (code
))
3427 case tcc_declaration
:
3430 case tcc_exceptional
:
3433 case tcc_comparison
:
3434 case tcc_expression
:
3437 switch (TREE_CODE_LENGTH (code
))
3443 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3444 if (op0
== TREE_OPERAND (exp
, 0))
3447 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3451 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3452 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3454 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3457 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3461 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3462 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3463 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3465 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3466 && op2
== TREE_OPERAND (exp
, 2))
3469 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3473 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3474 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3475 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3476 op3
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 3), obj
);
3478 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3479 && op2
== TREE_OPERAND (exp
, 2)
3480 && op3
== TREE_OPERAND (exp
, 3))
3484 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3496 new_tree
= NULL_TREE
;
3498 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3500 tree op
= TREE_OPERAND (exp
, i
);
3501 tree new_op
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (op
, obj
);
3505 new_tree
= copy_node (exp
);
3506 TREE_OPERAND (new_tree
, i
) = new_op
;
3512 new_tree
= fold (new_tree
);
3513 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3514 process_call_operands (new_tree
);
3525 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3527 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3528 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3533 /* Stabilize a reference so that we can use it any number of times
3534 without causing its operands to be evaluated more than once.
3535 Returns the stabilized reference. This works by means of save_expr,
3536 so see the caveats in the comments about save_expr.
3538 Also allows conversion expressions whose operands are references.
3539 Any other kind of expression is returned unchanged. */
3542 stabilize_reference (tree ref
)
3545 enum tree_code code
= TREE_CODE (ref
);
3552 /* No action is needed in this case. */
3557 case FIX_TRUNC_EXPR
:
3558 result
= build_nt (code
, stabilize_reference (TREE_OPERAND (ref
, 0)));
3562 result
= build_nt (INDIRECT_REF
,
3563 stabilize_reference_1 (TREE_OPERAND (ref
, 0)));
3567 result
= build_nt (COMPONENT_REF
,
3568 stabilize_reference (TREE_OPERAND (ref
, 0)),
3569 TREE_OPERAND (ref
, 1), NULL_TREE
);
3573 result
= build_nt (BIT_FIELD_REF
,
3574 stabilize_reference (TREE_OPERAND (ref
, 0)),
3575 TREE_OPERAND (ref
, 1), TREE_OPERAND (ref
, 2));
3579 result
= build_nt (ARRAY_REF
,
3580 stabilize_reference (TREE_OPERAND (ref
, 0)),
3581 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3582 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
3585 case ARRAY_RANGE_REF
:
3586 result
= build_nt (ARRAY_RANGE_REF
,
3587 stabilize_reference (TREE_OPERAND (ref
, 0)),
3588 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3589 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
3593 /* We cannot wrap the first expression in a SAVE_EXPR, as then
3594 it wouldn't be ignored. This matters when dealing with
3596 return stabilize_reference_1 (ref
);
3598 /* If arg isn't a kind of lvalue we recognize, make no change.
3599 Caller should recognize the error for an invalid lvalue. */
3604 return error_mark_node
;
3607 TREE_TYPE (result
) = TREE_TYPE (ref
);
3608 TREE_READONLY (result
) = TREE_READONLY (ref
);
3609 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (ref
);
3610 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (ref
);
3615 /* Subroutine of stabilize_reference; this is called for subtrees of
3616 references. Any expression with side-effects must be put in a SAVE_EXPR
3617 to ensure that it is only evaluated once.
3619 We don't put SAVE_EXPR nodes around everything, because assigning very
3620 simple expressions to temporaries causes us to miss good opportunities
3621 for optimizations. Among other things, the opportunity to fold in the
3622 addition of a constant into an addressing mode often gets lost, e.g.
3623 "y[i+1] += x;". In general, we take the approach that we should not make
3624 an assignment unless we are forced into it - i.e., that any non-side effect
3625 operator should be allowed, and that cse should take care of coalescing
3626 multiple utterances of the same expression should that prove fruitful. */
3629 stabilize_reference_1 (tree e
)
3632 enum tree_code code
= TREE_CODE (e
);
3634 /* We cannot ignore const expressions because it might be a reference
3635 to a const array but whose index contains side-effects. But we can
3636 ignore things that are actual constant or that already have been
3637 handled by this function. */
3639 if (tree_invariant_p (e
))
3642 switch (TREE_CODE_CLASS (code
))
3644 case tcc_exceptional
:
3646 case tcc_declaration
:
3647 case tcc_comparison
:
3649 case tcc_expression
:
3652 /* If the expression has side-effects, then encase it in a SAVE_EXPR
3653 so that it will only be evaluated once. */
3654 /* The reference (r) and comparison (<) classes could be handled as
3655 below, but it is generally faster to only evaluate them once. */
3656 if (TREE_SIDE_EFFECTS (e
))
3657 return save_expr (e
);
3661 /* Constants need no processing. In fact, we should never reach
3666 /* Division is slow and tends to be compiled with jumps,
3667 especially the division by powers of 2 that is often
3668 found inside of an array reference. So do it just once. */
3669 if (code
== TRUNC_DIV_EXPR
|| code
== TRUNC_MOD_EXPR
3670 || code
== FLOOR_DIV_EXPR
|| code
== FLOOR_MOD_EXPR
3671 || code
== CEIL_DIV_EXPR
|| code
== CEIL_MOD_EXPR
3672 || code
== ROUND_DIV_EXPR
|| code
== ROUND_MOD_EXPR
)
3673 return save_expr (e
);
3674 /* Recursively stabilize each operand. */
3675 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)),
3676 stabilize_reference_1 (TREE_OPERAND (e
, 1)));
3680 /* Recursively stabilize each operand. */
3681 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)));
3688 TREE_TYPE (result
) = TREE_TYPE (e
);
3689 TREE_READONLY (result
) = TREE_READONLY (e
);
3690 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (e
);
3691 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (e
);
3696 /* Low-level constructors for expressions. */
3698 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
3699 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
3702 recompute_tree_invariant_for_addr_expr (tree t
)
3705 bool tc
= true, se
= false;
3707 /* We started out assuming this address is both invariant and constant, but
3708 does not have side effects. Now go down any handled components and see if
3709 any of them involve offsets that are either non-constant or non-invariant.
3710 Also check for side-effects.
3712 ??? Note that this code makes no attempt to deal with the case where
3713 taking the address of something causes a copy due to misalignment. */
3715 #define UPDATE_FLAGS(NODE) \
3716 do { tree _node = (NODE); \
3717 if (_node && !TREE_CONSTANT (_node)) tc = false; \
3718 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
3720 for (node
= TREE_OPERAND (t
, 0); handled_component_p (node
);
3721 node
= TREE_OPERAND (node
, 0))
3723 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
3724 array reference (probably made temporarily by the G++ front end),
3725 so ignore all the operands. */
3726 if ((TREE_CODE (node
) == ARRAY_REF
3727 || TREE_CODE (node
) == ARRAY_RANGE_REF
)
3728 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node
, 0))) == ARRAY_TYPE
)
3730 UPDATE_FLAGS (TREE_OPERAND (node
, 1));
3731 if (TREE_OPERAND (node
, 2))
3732 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
3733 if (TREE_OPERAND (node
, 3))
3734 UPDATE_FLAGS (TREE_OPERAND (node
, 3));
3736 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
3737 FIELD_DECL, apparently. The G++ front end can put something else
3738 there, at least temporarily. */
3739 else if (TREE_CODE (node
) == COMPONENT_REF
3740 && TREE_CODE (TREE_OPERAND (node
, 1)) == FIELD_DECL
)
3742 if (TREE_OPERAND (node
, 2))
3743 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
3747 node
= lang_hooks
.expr_to_decl (node
, &tc
, &se
);
3749 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
3750 the address, since &(*a)->b is a form of addition. If it's a constant, the
3751 address is constant too. If it's a decl, its address is constant if the
3752 decl is static. Everything else is not constant and, furthermore,
3753 taking the address of a volatile variable is not volatile. */
3754 if (TREE_CODE (node
) == INDIRECT_REF
3755 || TREE_CODE (node
) == MEM_REF
)
3756 UPDATE_FLAGS (TREE_OPERAND (node
, 0));
3757 else if (CONSTANT_CLASS_P (node
))
3759 else if (DECL_P (node
))
3760 tc
&= (staticp (node
) != NULL_TREE
);
3764 se
|= TREE_SIDE_EFFECTS (node
);
3768 TREE_CONSTANT (t
) = tc
;
3769 TREE_SIDE_EFFECTS (t
) = se
;
3773 /* Build an expression of code CODE, data type TYPE, and operands as
3774 specified. Expressions and reference nodes can be created this way.
3775 Constants, decls, types and misc nodes cannot be.
3777 We define 5 non-variadic functions, from 0 to 4 arguments. This is
3778 enough for all extant tree codes. */
3781 build0_stat (enum tree_code code
, tree tt MEM_STAT_DECL
)
3785 gcc_assert (TREE_CODE_LENGTH (code
) == 0);
3787 t
= make_node_stat (code PASS_MEM_STAT
);
3794 build1_stat (enum tree_code code
, tree type
, tree node MEM_STAT_DECL
)
3796 int length
= sizeof (struct tree_exp
);
3799 record_node_allocation_statistics (code
, length
);
3801 gcc_assert (TREE_CODE_LENGTH (code
) == 1);
3803 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
3805 memset (t
, 0, sizeof (struct tree_common
));
3807 TREE_SET_CODE (t
, code
);
3809 TREE_TYPE (t
) = type
;
3810 SET_EXPR_LOCATION (t
, UNKNOWN_LOCATION
);
3811 TREE_OPERAND (t
, 0) = node
;
3812 if (node
&& !TYPE_P (node
))
3814 TREE_SIDE_EFFECTS (t
) = TREE_SIDE_EFFECTS (node
);
3815 TREE_READONLY (t
) = TREE_READONLY (node
);
3818 if (TREE_CODE_CLASS (code
) == tcc_statement
)
3819 TREE_SIDE_EFFECTS (t
) = 1;
3823 /* All of these have side-effects, no matter what their
3825 TREE_SIDE_EFFECTS (t
) = 1;
3826 TREE_READONLY (t
) = 0;
3830 /* Whether a dereference is readonly has nothing to do with whether
3831 its operand is readonly. */
3832 TREE_READONLY (t
) = 0;
3837 recompute_tree_invariant_for_addr_expr (t
);
3841 if ((TREE_CODE_CLASS (code
) == tcc_unary
|| code
== VIEW_CONVERT_EXPR
)
3842 && node
&& !TYPE_P (node
)
3843 && TREE_CONSTANT (node
))
3844 TREE_CONSTANT (t
) = 1;
3845 if (TREE_CODE_CLASS (code
) == tcc_reference
3846 && node
&& TREE_THIS_VOLATILE (node
))
3847 TREE_THIS_VOLATILE (t
) = 1;
3854 #define PROCESS_ARG(N) \
3856 TREE_OPERAND (t, N) = arg##N; \
3857 if (arg##N &&!TYPE_P (arg##N)) \
3859 if (TREE_SIDE_EFFECTS (arg##N)) \
3861 if (!TREE_READONLY (arg##N) \
3862 && !CONSTANT_CLASS_P (arg##N)) \
3863 (void) (read_only = 0); \
3864 if (!TREE_CONSTANT (arg##N)) \
3865 (void) (constant = 0); \
3870 build2_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1 MEM_STAT_DECL
)
3872 bool constant
, read_only
, side_effects
;
3875 gcc_assert (TREE_CODE_LENGTH (code
) == 2);
3877 if ((code
== MINUS_EXPR
|| code
== PLUS_EXPR
|| code
== MULT_EXPR
)
3878 && arg0
&& arg1
&& tt
&& POINTER_TYPE_P (tt
)
3879 /* When sizetype precision doesn't match that of pointers
3880 we need to be able to build explicit extensions or truncations
3881 of the offset argument. */
3882 && TYPE_PRECISION (sizetype
) == TYPE_PRECISION (tt
))
3883 gcc_assert (TREE_CODE (arg0
) == INTEGER_CST
3884 && TREE_CODE (arg1
) == INTEGER_CST
);
3886 if (code
== POINTER_PLUS_EXPR
&& arg0
&& arg1
&& tt
)
3887 gcc_assert (POINTER_TYPE_P (tt
) && POINTER_TYPE_P (TREE_TYPE (arg0
))
3888 && ptrofftype_p (TREE_TYPE (arg1
)));
3890 t
= make_node_stat (code PASS_MEM_STAT
);
3893 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
3894 result based on those same flags for the arguments. But if the
3895 arguments aren't really even `tree' expressions, we shouldn't be trying
3898 /* Expressions without side effects may be constant if their
3899 arguments are as well. */
3900 constant
= (TREE_CODE_CLASS (code
) == tcc_comparison
3901 || TREE_CODE_CLASS (code
) == tcc_binary
);
3903 side_effects
= TREE_SIDE_EFFECTS (t
);
3908 TREE_READONLY (t
) = read_only
;
3909 TREE_CONSTANT (t
) = constant
;
3910 TREE_SIDE_EFFECTS (t
) = side_effects
;
3911 TREE_THIS_VOLATILE (t
)
3912 = (TREE_CODE_CLASS (code
) == tcc_reference
3913 && arg0
&& TREE_THIS_VOLATILE (arg0
));
3920 build3_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
3921 tree arg2 MEM_STAT_DECL
)
3923 bool constant
, read_only
, side_effects
;
3926 gcc_assert (TREE_CODE_LENGTH (code
) == 3);
3927 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
3929 t
= make_node_stat (code PASS_MEM_STAT
);
3934 /* As a special exception, if COND_EXPR has NULL branches, we
3935 assume that it is a gimple statement and always consider
3936 it to have side effects. */
3937 if (code
== COND_EXPR
3938 && tt
== void_type_node
3939 && arg1
== NULL_TREE
3940 && arg2
== NULL_TREE
)
3941 side_effects
= true;
3943 side_effects
= TREE_SIDE_EFFECTS (t
);
3949 if (code
== COND_EXPR
)
3950 TREE_READONLY (t
) = read_only
;
3952 TREE_SIDE_EFFECTS (t
) = side_effects
;
3953 TREE_THIS_VOLATILE (t
)
3954 = (TREE_CODE_CLASS (code
) == tcc_reference
3955 && arg0
&& TREE_THIS_VOLATILE (arg0
));
3961 build4_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
3962 tree arg2
, tree arg3 MEM_STAT_DECL
)
3964 bool constant
, read_only
, side_effects
;
3967 gcc_assert (TREE_CODE_LENGTH (code
) == 4);
3969 t
= make_node_stat (code PASS_MEM_STAT
);
3972 side_effects
= TREE_SIDE_EFFECTS (t
);
3979 TREE_SIDE_EFFECTS (t
) = side_effects
;
3980 TREE_THIS_VOLATILE (t
)
3981 = (TREE_CODE_CLASS (code
) == tcc_reference
3982 && arg0
&& TREE_THIS_VOLATILE (arg0
));
3988 build5_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
3989 tree arg2
, tree arg3
, tree arg4 MEM_STAT_DECL
)
3991 bool constant
, read_only
, side_effects
;
3994 gcc_assert (TREE_CODE_LENGTH (code
) == 5);
3996 t
= make_node_stat (code PASS_MEM_STAT
);
3999 side_effects
= TREE_SIDE_EFFECTS (t
);
4007 TREE_SIDE_EFFECTS (t
) = side_effects
;
4008 TREE_THIS_VOLATILE (t
)
4009 = (TREE_CODE_CLASS (code
) == tcc_reference
4010 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4015 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4016 on the pointer PTR. */
4019 build_simple_mem_ref_loc (location_t loc
, tree ptr
)
4021 HOST_WIDE_INT offset
= 0;
4022 tree ptype
= TREE_TYPE (ptr
);
4024 /* For convenience allow addresses that collapse to a simple base
4026 if (TREE_CODE (ptr
) == ADDR_EXPR
4027 && (handled_component_p (TREE_OPERAND (ptr
, 0))
4028 || TREE_CODE (TREE_OPERAND (ptr
, 0)) == MEM_REF
))
4030 ptr
= get_addr_base_and_unit_offset (TREE_OPERAND (ptr
, 0), &offset
);
4032 ptr
= build_fold_addr_expr (ptr
);
4033 gcc_assert (is_gimple_reg (ptr
) || is_gimple_min_invariant (ptr
));
4035 tem
= build2 (MEM_REF
, TREE_TYPE (ptype
),
4036 ptr
, build_int_cst (ptype
, offset
));
4037 SET_EXPR_LOCATION (tem
, loc
);
4041 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4044 mem_ref_offset (const_tree t
)
4046 tree toff
= TREE_OPERAND (t
, 1);
4047 return tree_to_double_int (toff
).sext (TYPE_PRECISION (TREE_TYPE (toff
)));
4050 /* Return the pointer-type relevant for TBAA purposes from the
4051 gimple memory reference tree T. This is the type to be used for
4052 the offset operand of MEM_REF or TARGET_MEM_REF replacements of T. */
4055 reference_alias_ptr_type (const_tree t
)
4057 const_tree base
= t
;
4058 while (handled_component_p (base
))
4059 base
= TREE_OPERAND (base
, 0);
4060 if (TREE_CODE (base
) == MEM_REF
)
4061 return TREE_TYPE (TREE_OPERAND (base
, 1));
4062 else if (TREE_CODE (base
) == TARGET_MEM_REF
)
4063 return TREE_TYPE (TMR_OFFSET (base
));
4065 return build_pointer_type (TYPE_MAIN_VARIANT (TREE_TYPE (base
)));
4068 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4069 offsetted by OFFSET units. */
4072 build_invariant_address (tree type
, tree base
, HOST_WIDE_INT offset
)
4074 tree ref
= fold_build2 (MEM_REF
, TREE_TYPE (type
),
4075 build_fold_addr_expr (base
),
4076 build_int_cst (ptr_type_node
, offset
));
4077 tree addr
= build1 (ADDR_EXPR
, type
, ref
);
4078 recompute_tree_invariant_for_addr_expr (addr
);
4082 /* Similar except don't specify the TREE_TYPE
4083 and leave the TREE_SIDE_EFFECTS as 0.
4084 It is permissible for arguments to be null,
4085 or even garbage if their values do not matter. */
4088 build_nt (enum tree_code code
, ...)
4095 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
4099 t
= make_node (code
);
4100 length
= TREE_CODE_LENGTH (code
);
4102 for (i
= 0; i
< length
; i
++)
4103 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
4109 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4113 build_nt_call_vec (tree fn
, vec
<tree
, va_gc
> *args
)
4118 ret
= build_vl_exp (CALL_EXPR
, vec_safe_length (args
) + 3);
4119 CALL_EXPR_FN (ret
) = fn
;
4120 CALL_EXPR_STATIC_CHAIN (ret
) = NULL_TREE
;
4121 FOR_EACH_VEC_SAFE_ELT (args
, ix
, t
)
4122 CALL_EXPR_ARG (ret
, ix
) = t
;
4126 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4127 We do NOT enter this node in any sort of symbol table.
4129 LOC is the location of the decl.
4131 layout_decl is used to set up the decl's storage layout.
4132 Other slots are initialized to 0 or null pointers. */
4135 build_decl_stat (location_t loc
, enum tree_code code
, tree name
,
4136 tree type MEM_STAT_DECL
)
4140 t
= make_node_stat (code PASS_MEM_STAT
);
4141 DECL_SOURCE_LOCATION (t
) = loc
;
4143 /* if (type == error_mark_node)
4144 type = integer_type_node; */
4145 /* That is not done, deliberately, so that having error_mark_node
4146 as the type can suppress useless errors in the use of this variable. */
4148 DECL_NAME (t
) = name
;
4149 TREE_TYPE (t
) = type
;
4151 if (code
== VAR_DECL
|| code
== PARM_DECL
|| code
== RESULT_DECL
)
4157 /* Builds and returns function declaration with NAME and TYPE. */
4160 build_fn_decl (const char *name
, tree type
)
4162 tree id
= get_identifier (name
);
4163 tree decl
= build_decl (input_location
, FUNCTION_DECL
, id
, type
);
4165 DECL_EXTERNAL (decl
) = 1;
4166 TREE_PUBLIC (decl
) = 1;
4167 DECL_ARTIFICIAL (decl
) = 1;
4168 TREE_NOTHROW (decl
) = 1;
4173 vec
<tree
, va_gc
> *all_translation_units
;
4175 /* Builds a new translation-unit decl with name NAME, queues it in the
4176 global list of translation-unit decls and returns it. */
4179 build_translation_unit_decl (tree name
)
4181 tree tu
= build_decl (UNKNOWN_LOCATION
, TRANSLATION_UNIT_DECL
,
4183 TRANSLATION_UNIT_LANGUAGE (tu
) = lang_hooks
.name
;
4184 vec_safe_push (all_translation_units
, tu
);
4189 /* BLOCK nodes are used to represent the structure of binding contours
4190 and declarations, once those contours have been exited and their contents
4191 compiled. This information is used for outputting debugging info. */
4194 build_block (tree vars
, tree subblocks
, tree supercontext
, tree chain
)
4196 tree block
= make_node (BLOCK
);
4198 BLOCK_VARS (block
) = vars
;
4199 BLOCK_SUBBLOCKS (block
) = subblocks
;
4200 BLOCK_SUPERCONTEXT (block
) = supercontext
;
4201 BLOCK_CHAIN (block
) = chain
;
4206 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4208 LOC is the location to use in tree T. */
4211 protected_set_expr_location (tree t
, location_t loc
)
4213 if (t
&& CAN_HAVE_LOCATION_P (t
))
4214 SET_EXPR_LOCATION (t
, loc
);
4217 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
4221 build_decl_attribute_variant (tree ddecl
, tree attribute
)
4223 DECL_ATTRIBUTES (ddecl
) = attribute
;
4227 /* Borrowed from hashtab.c iterative_hash implementation. */
4228 #define mix(a,b,c) \
4230 a -= b; a -= c; a ^= (c>>13); \
4231 b -= c; b -= a; b ^= (a<< 8); \
4232 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
4233 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
4234 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
4235 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
4236 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
4237 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
4238 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
4242 /* Produce good hash value combining VAL and VAL2. */
4244 iterative_hash_hashval_t (hashval_t val
, hashval_t val2
)
4246 /* the golden ratio; an arbitrary value. */
4247 hashval_t a
= 0x9e3779b9;
4253 /* Produce good hash value combining VAL and VAL2. */
4255 iterative_hash_host_wide_int (HOST_WIDE_INT val
, hashval_t val2
)
4257 if (sizeof (HOST_WIDE_INT
) == sizeof (hashval_t
))
4258 return iterative_hash_hashval_t (val
, val2
);
4261 hashval_t a
= (hashval_t
) val
;
4262 /* Avoid warnings about shifting of more than the width of the type on
4263 hosts that won't execute this path. */
4265 hashval_t b
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 8 + zero
));
4267 if (sizeof (HOST_WIDE_INT
) > 2 * sizeof (hashval_t
))
4269 hashval_t a
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 16 + zero
));
4270 hashval_t b
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 24 + zero
));
4277 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4278 is ATTRIBUTE and its qualifiers are QUALS.
4280 Record such modified types already made so we don't make duplicates. */
4283 build_type_attribute_qual_variant (tree ttype
, tree attribute
, int quals
)
4285 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype
), attribute
))
4287 hashval_t hashcode
= 0;
4289 enum tree_code code
= TREE_CODE (ttype
);
4291 /* Building a distinct copy of a tagged type is inappropriate; it
4292 causes breakage in code that expects there to be a one-to-one
4293 relationship between a struct and its fields.
4294 build_duplicate_type is another solution (as used in
4295 handle_transparent_union_attribute), but that doesn't play well
4296 with the stronger C++ type identity model. */
4297 if (TREE_CODE (ttype
) == RECORD_TYPE
4298 || TREE_CODE (ttype
) == UNION_TYPE
4299 || TREE_CODE (ttype
) == QUAL_UNION_TYPE
4300 || TREE_CODE (ttype
) == ENUMERAL_TYPE
)
4302 warning (OPT_Wattributes
,
4303 "ignoring attributes applied to %qT after definition",
4304 TYPE_MAIN_VARIANT (ttype
));
4305 return build_qualified_type (ttype
, quals
);
4308 ttype
= build_qualified_type (ttype
, TYPE_UNQUALIFIED
);
4309 ntype
= build_distinct_type_copy (ttype
);
4311 TYPE_ATTRIBUTES (ntype
) = attribute
;
4313 hashcode
= iterative_hash_object (code
, hashcode
);
4314 if (TREE_TYPE (ntype
))
4315 hashcode
= iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype
)),
4317 hashcode
= attribute_hash_list (attribute
, hashcode
);
4319 switch (TREE_CODE (ntype
))
4322 hashcode
= type_hash_list (TYPE_ARG_TYPES (ntype
), hashcode
);
4325 if (TYPE_DOMAIN (ntype
))
4326 hashcode
= iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype
)),
4330 hashcode
= iterative_hash_object
4331 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype
)), hashcode
);
4332 hashcode
= iterative_hash_object
4333 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype
)), hashcode
);
4336 case FIXED_POINT_TYPE
:
4338 unsigned int precision
= TYPE_PRECISION (ntype
);
4339 hashcode
= iterative_hash_object (precision
, hashcode
);
4346 ntype
= type_hash_canon (hashcode
, ntype
);
4348 /* If the target-dependent attributes make NTYPE different from
4349 its canonical type, we will need to use structural equality
4350 checks for this type. */
4351 if (TYPE_STRUCTURAL_EQUALITY_P (ttype
)
4352 || !comp_type_attributes (ntype
, ttype
))
4353 SET_TYPE_STRUCTURAL_EQUALITY (ntype
);
4354 else if (TYPE_CANONICAL (ntype
) == ntype
)
4355 TYPE_CANONICAL (ntype
) = TYPE_CANONICAL (ttype
);
4357 ttype
= build_qualified_type (ntype
, quals
);
4359 else if (TYPE_QUALS (ttype
) != quals
)
4360 ttype
= build_qualified_type (ttype
, quals
);
4365 /* Compare two attributes for their value identity. Return true if the
4366 attribute values are known to be equal; otherwise return false.
4370 attribute_value_equal (const_tree attr1
, const_tree attr2
)
4372 if (TREE_VALUE (attr1
) == TREE_VALUE (attr2
))
4375 if (TREE_VALUE (attr1
) != NULL_TREE
4376 && TREE_CODE (TREE_VALUE (attr1
)) == TREE_LIST
4377 && TREE_VALUE (attr2
) != NULL
4378 && TREE_CODE (TREE_VALUE (attr2
)) == TREE_LIST
)
4379 return (simple_cst_list_equal (TREE_VALUE (attr1
),
4380 TREE_VALUE (attr2
)) == 1);
4382 return (simple_cst_equal (TREE_VALUE (attr1
), TREE_VALUE (attr2
)) == 1);
4385 /* Return 0 if the attributes for two types are incompatible, 1 if they
4386 are compatible, and 2 if they are nearly compatible (which causes a
4387 warning to be generated). */
4389 comp_type_attributes (const_tree type1
, const_tree type2
)
4391 const_tree a1
= TYPE_ATTRIBUTES (type1
);
4392 const_tree a2
= TYPE_ATTRIBUTES (type2
);
4397 for (a
= a1
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
4399 const struct attribute_spec
*as
;
4402 as
= lookup_attribute_spec (get_attribute_name (a
));
4403 if (!as
|| as
->affects_type_identity
== false)
4406 attr
= lookup_attribute (as
->name
, CONST_CAST_TREE (a2
));
4407 if (!attr
|| !attribute_value_equal (a
, attr
))
4412 for (a
= a2
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
4414 const struct attribute_spec
*as
;
4416 as
= lookup_attribute_spec (get_attribute_name (a
));
4417 if (!as
|| as
->affects_type_identity
== false)
4420 if (!lookup_attribute (as
->name
, CONST_CAST_TREE (a1
)))
4422 /* We don't need to compare trees again, as we did this
4423 already in first loop. */
4425 /* All types - affecting identity - are equal, so
4426 there is no need to call target hook for comparison. */
4430 /* As some type combinations - like default calling-convention - might
4431 be compatible, we have to call the target hook to get the final result. */
4432 return targetm
.comp_type_attributes (type1
, type2
);
4435 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4438 Record such modified types already made so we don't make duplicates. */
4441 build_type_attribute_variant (tree ttype
, tree attribute
)
4443 return build_type_attribute_qual_variant (ttype
, attribute
,
4444 TYPE_QUALS (ttype
));
4448 /* Reset the expression *EXPR_P, a size or position.
4450 ??? We could reset all non-constant sizes or positions. But it's cheap
4451 enough to not do so and refrain from adding workarounds to dwarf2out.c.
4453 We need to reset self-referential sizes or positions because they cannot
4454 be gimplified and thus can contain a CALL_EXPR after the gimplification
4455 is finished, which will run afoul of LTO streaming. And they need to be
4456 reset to something essentially dummy but not constant, so as to preserve
4457 the properties of the object they are attached to. */
4460 free_lang_data_in_one_sizepos (tree
*expr_p
)
4462 tree expr
= *expr_p
;
4463 if (CONTAINS_PLACEHOLDER_P (expr
))
4464 *expr_p
= build0 (PLACEHOLDER_EXPR
, TREE_TYPE (expr
));
4468 /* Reset all the fields in a binfo node BINFO. We only keep
4469 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
4472 free_lang_data_in_binfo (tree binfo
)
4477 gcc_assert (TREE_CODE (binfo
) == TREE_BINFO
);
4479 BINFO_VIRTUALS (binfo
) = NULL_TREE
;
4480 BINFO_BASE_ACCESSES (binfo
) = NULL
;
4481 BINFO_INHERITANCE_CHAIN (binfo
) = NULL_TREE
;
4482 BINFO_SUBVTT_INDEX (binfo
) = NULL_TREE
;
4484 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo
), i
, t
)
4485 free_lang_data_in_binfo (t
);
4489 /* Reset all language specific information still present in TYPE. */
4492 free_lang_data_in_type (tree type
)
4494 gcc_assert (TYPE_P (type
));
4496 /* Give the FE a chance to remove its own data first. */
4497 lang_hooks
.free_lang_data (type
);
4499 TREE_LANG_FLAG_0 (type
) = 0;
4500 TREE_LANG_FLAG_1 (type
) = 0;
4501 TREE_LANG_FLAG_2 (type
) = 0;
4502 TREE_LANG_FLAG_3 (type
) = 0;
4503 TREE_LANG_FLAG_4 (type
) = 0;
4504 TREE_LANG_FLAG_5 (type
) = 0;
4505 TREE_LANG_FLAG_6 (type
) = 0;
4507 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4509 /* Remove the const and volatile qualifiers from arguments. The
4510 C++ front end removes them, but the C front end does not,
4511 leading to false ODR violation errors when merging two
4512 instances of the same function signature compiled by
4513 different front ends. */
4516 for (p
= TYPE_ARG_TYPES (type
); p
; p
= TREE_CHAIN (p
))
4518 tree arg_type
= TREE_VALUE (p
);
4520 if (TYPE_READONLY (arg_type
) || TYPE_VOLATILE (arg_type
))
4522 int quals
= TYPE_QUALS (arg_type
)
4524 & ~TYPE_QUAL_VOLATILE
;
4525 TREE_VALUE (p
) = build_qualified_type (arg_type
, quals
);
4526 free_lang_data_in_type (TREE_VALUE (p
));
4531 /* Remove members that are not actually FIELD_DECLs from the field
4532 list of an aggregate. These occur in C++. */
4533 if (RECORD_OR_UNION_TYPE_P (type
))
4537 /* Note that TYPE_FIELDS can be shared across distinct
4538 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
4539 to be removed, we cannot set its TREE_CHAIN to NULL.
4540 Otherwise, we would not be able to find all the other fields
4541 in the other instances of this TREE_TYPE.
4543 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
4545 member
= TYPE_FIELDS (type
);
4548 if (TREE_CODE (member
) == FIELD_DECL
4549 || TREE_CODE (member
) == TYPE_DECL
)
4552 TREE_CHAIN (prev
) = member
;
4554 TYPE_FIELDS (type
) = member
;
4558 member
= TREE_CHAIN (member
);
4562 TREE_CHAIN (prev
) = NULL_TREE
;
4564 TYPE_FIELDS (type
) = NULL_TREE
;
4566 TYPE_METHODS (type
) = NULL_TREE
;
4567 if (TYPE_BINFO (type
))
4568 free_lang_data_in_binfo (TYPE_BINFO (type
));
4572 /* For non-aggregate types, clear out the language slot (which
4573 overloads TYPE_BINFO). */
4574 TYPE_LANG_SLOT_1 (type
) = NULL_TREE
;
4576 if (INTEGRAL_TYPE_P (type
)
4577 || SCALAR_FLOAT_TYPE_P (type
)
4578 || FIXED_POINT_TYPE_P (type
))
4580 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type
));
4581 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type
));
4585 free_lang_data_in_one_sizepos (&TYPE_SIZE (type
));
4586 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type
));
4588 if (TYPE_CONTEXT (type
)
4589 && TREE_CODE (TYPE_CONTEXT (type
)) == BLOCK
)
4591 tree ctx
= TYPE_CONTEXT (type
);
4594 ctx
= BLOCK_SUPERCONTEXT (ctx
);
4596 while (ctx
&& TREE_CODE (ctx
) == BLOCK
);
4597 TYPE_CONTEXT (type
) = ctx
;
4602 /* Return true if DECL may need an assembler name to be set. */
4605 need_assembler_name_p (tree decl
)
4607 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
4608 if (TREE_CODE (decl
) != FUNCTION_DECL
4609 && TREE_CODE (decl
) != VAR_DECL
)
4612 /* If DECL already has its assembler name set, it does not need a
4614 if (!HAS_DECL_ASSEMBLER_NAME_P (decl
)
4615 || DECL_ASSEMBLER_NAME_SET_P (decl
))
4618 /* Abstract decls do not need an assembler name. */
4619 if (DECL_ABSTRACT (decl
))
4622 /* For VAR_DECLs, only static, public and external symbols need an
4624 if (TREE_CODE (decl
) == VAR_DECL
4625 && !TREE_STATIC (decl
)
4626 && !TREE_PUBLIC (decl
)
4627 && !DECL_EXTERNAL (decl
))
4630 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4632 /* Do not set assembler name on builtins. Allow RTL expansion to
4633 decide whether to expand inline or via a regular call. */
4634 if (DECL_BUILT_IN (decl
)
4635 && DECL_BUILT_IN_CLASS (decl
) != BUILT_IN_FRONTEND
)
4638 /* Functions represented in the callgraph need an assembler name. */
4639 if (cgraph_get_node (decl
) != NULL
)
4642 /* Unused and not public functions don't need an assembler name. */
4643 if (!TREE_USED (decl
) && !TREE_PUBLIC (decl
))
4651 /* Reset all language specific information still present in symbol
4655 free_lang_data_in_decl (tree decl
)
4657 gcc_assert (DECL_P (decl
));
4659 /* Give the FE a chance to remove its own data first. */
4660 lang_hooks
.free_lang_data (decl
);
4662 TREE_LANG_FLAG_0 (decl
) = 0;
4663 TREE_LANG_FLAG_1 (decl
) = 0;
4664 TREE_LANG_FLAG_2 (decl
) = 0;
4665 TREE_LANG_FLAG_3 (decl
) = 0;
4666 TREE_LANG_FLAG_4 (decl
) = 0;
4667 TREE_LANG_FLAG_5 (decl
) = 0;
4668 TREE_LANG_FLAG_6 (decl
) = 0;
4670 free_lang_data_in_one_sizepos (&DECL_SIZE (decl
));
4671 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl
));
4672 if (TREE_CODE (decl
) == FIELD_DECL
)
4674 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl
));
4675 if (TREE_CODE (DECL_CONTEXT (decl
)) == QUAL_UNION_TYPE
)
4676 DECL_QUALIFIER (decl
) = NULL_TREE
;
4679 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4681 if (gimple_has_body_p (decl
))
4685 /* If DECL has a gimple body, then the context for its
4686 arguments must be DECL. Otherwise, it doesn't really
4687 matter, as we will not be emitting any code for DECL. In
4688 general, there may be other instances of DECL created by
4689 the front end and since PARM_DECLs are generally shared,
4690 their DECL_CONTEXT changes as the replicas of DECL are
4691 created. The only time where DECL_CONTEXT is important
4692 is for the FUNCTION_DECLs that have a gimple body (since
4693 the PARM_DECL will be used in the function's body). */
4694 for (t
= DECL_ARGUMENTS (decl
); t
; t
= TREE_CHAIN (t
))
4695 DECL_CONTEXT (t
) = decl
;
4698 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
4699 At this point, it is not needed anymore. */
4700 DECL_SAVED_TREE (decl
) = NULL_TREE
;
4702 /* Clear the abstract origin if it refers to a method. Otherwise
4703 dwarf2out.c will ICE as we clear TYPE_METHODS and thus the
4704 origin will not be output correctly. */
4705 if (DECL_ABSTRACT_ORIGIN (decl
)
4706 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))
4707 && RECORD_OR_UNION_TYPE_P
4708 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))))
4709 DECL_ABSTRACT_ORIGIN (decl
) = NULL_TREE
;
4711 /* Sometimes the C++ frontend doesn't manage to transform a temporary
4712 DECL_VINDEX referring to itself into a vtable slot number as it
4713 should. Happens with functions that are copied and then forgotten
4714 about. Just clear it, it won't matter anymore. */
4715 if (DECL_VINDEX (decl
) && !host_integerp (DECL_VINDEX (decl
), 0))
4716 DECL_VINDEX (decl
) = NULL_TREE
;
4718 else if (TREE_CODE (decl
) == VAR_DECL
)
4720 if ((DECL_EXTERNAL (decl
)
4721 && (!TREE_STATIC (decl
) || !TREE_READONLY (decl
)))
4722 || (decl_function_context (decl
) && !TREE_STATIC (decl
)))
4723 DECL_INITIAL (decl
) = NULL_TREE
;
4725 else if (TREE_CODE (decl
) == TYPE_DECL
4726 || TREE_CODE (decl
) == FIELD_DECL
)
4727 DECL_INITIAL (decl
) = NULL_TREE
;
4728 else if (TREE_CODE (decl
) == TRANSLATION_UNIT_DECL
4729 && DECL_INITIAL (decl
)
4730 && TREE_CODE (DECL_INITIAL (decl
)) == BLOCK
)
4732 /* Strip builtins from the translation-unit BLOCK. We still have targets
4733 without builtin_decl_explicit support and also builtins are shared
4734 nodes and thus we can't use TREE_CHAIN in multiple lists. */
4735 tree
*nextp
= &BLOCK_VARS (DECL_INITIAL (decl
));
4739 if (TREE_CODE (var
) == FUNCTION_DECL
4740 && DECL_BUILT_IN (var
))
4741 *nextp
= TREE_CHAIN (var
);
4743 nextp
= &TREE_CHAIN (var
);
4749 /* Data used when collecting DECLs and TYPEs for language data removal. */
4751 struct free_lang_data_d
4753 /* Worklist to avoid excessive recursion. */
4756 /* Set of traversed objects. Used to avoid duplicate visits. */
4757 struct pointer_set_t
*pset
;
4759 /* Array of symbols to process with free_lang_data_in_decl. */
4762 /* Array of types to process with free_lang_data_in_type. */
4767 /* Save all language fields needed to generate proper debug information
4768 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
4771 save_debug_info_for_decl (tree t
)
4773 /*struct saved_debug_info_d *sdi;*/
4775 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& DECL_P (t
));
4777 /* FIXME. Partial implementation for saving debug info removed. */
4781 /* Save all language fields needed to generate proper debug information
4782 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
4785 save_debug_info_for_type (tree t
)
4787 /*struct saved_debug_info_d *sdi;*/
4789 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& TYPE_P (t
));
4791 /* FIXME. Partial implementation for saving debug info removed. */
4795 /* Add type or decl T to one of the list of tree nodes that need their
4796 language data removed. The lists are held inside FLD. */
4799 add_tree_to_fld_list (tree t
, struct free_lang_data_d
*fld
)
4803 fld
->decls
.safe_push (t
);
4804 if (debug_info_level
> DINFO_LEVEL_TERSE
)
4805 save_debug_info_for_decl (t
);
4807 else if (TYPE_P (t
))
4809 fld
->types
.safe_push (t
);
4810 if (debug_info_level
> DINFO_LEVEL_TERSE
)
4811 save_debug_info_for_type (t
);
4817 /* Push tree node T into FLD->WORKLIST. */
4820 fld_worklist_push (tree t
, struct free_lang_data_d
*fld
)
4822 if (t
&& !is_lang_specific (t
) && !pointer_set_contains (fld
->pset
, t
))
4823 fld
->worklist
.safe_push ((t
));
4827 /* Operand callback helper for free_lang_data_in_node. *TP is the
4828 subtree operand being considered. */
4831 find_decls_types_r (tree
*tp
, int *ws
, void *data
)
4834 struct free_lang_data_d
*fld
= (struct free_lang_data_d
*) data
;
4836 if (TREE_CODE (t
) == TREE_LIST
)
4839 /* Language specific nodes will be removed, so there is no need
4840 to gather anything under them. */
4841 if (is_lang_specific (t
))
4849 /* Note that walk_tree does not traverse every possible field in
4850 decls, so we have to do our own traversals here. */
4851 add_tree_to_fld_list (t
, fld
);
4853 fld_worklist_push (DECL_NAME (t
), fld
);
4854 fld_worklist_push (DECL_CONTEXT (t
), fld
);
4855 fld_worklist_push (DECL_SIZE (t
), fld
);
4856 fld_worklist_push (DECL_SIZE_UNIT (t
), fld
);
4858 /* We are going to remove everything under DECL_INITIAL for
4859 TYPE_DECLs. No point walking them. */
4860 if (TREE_CODE (t
) != TYPE_DECL
)
4861 fld_worklist_push (DECL_INITIAL (t
), fld
);
4863 fld_worklist_push (DECL_ATTRIBUTES (t
), fld
);
4864 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t
), fld
);
4866 if (TREE_CODE (t
) == FUNCTION_DECL
)
4868 fld_worklist_push (DECL_ARGUMENTS (t
), fld
);
4869 fld_worklist_push (DECL_RESULT (t
), fld
);
4871 else if (TREE_CODE (t
) == TYPE_DECL
)
4873 fld_worklist_push (DECL_ARGUMENT_FLD (t
), fld
);
4874 fld_worklist_push (DECL_VINDEX (t
), fld
);
4875 fld_worklist_push (DECL_ORIGINAL_TYPE (t
), fld
);
4877 else if (TREE_CODE (t
) == FIELD_DECL
)
4879 fld_worklist_push (DECL_FIELD_OFFSET (t
), fld
);
4880 fld_worklist_push (DECL_BIT_FIELD_TYPE (t
), fld
);
4881 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t
), fld
);
4882 fld_worklist_push (DECL_FCONTEXT (t
), fld
);
4884 else if (TREE_CODE (t
) == VAR_DECL
)
4886 fld_worklist_push (DECL_SECTION_NAME (t
), fld
);
4887 fld_worklist_push (DECL_COMDAT_GROUP (t
), fld
);
4890 if ((TREE_CODE (t
) == VAR_DECL
|| TREE_CODE (t
) == PARM_DECL
)
4891 && DECL_HAS_VALUE_EXPR_P (t
))
4892 fld_worklist_push (DECL_VALUE_EXPR (t
), fld
);
4894 if (TREE_CODE (t
) != FIELD_DECL
4895 && TREE_CODE (t
) != TYPE_DECL
)
4896 fld_worklist_push (TREE_CHAIN (t
), fld
);
4899 else if (TYPE_P (t
))
4901 /* Note that walk_tree does not traverse every possible field in
4902 types, so we have to do our own traversals here. */
4903 add_tree_to_fld_list (t
, fld
);
4905 if (!RECORD_OR_UNION_TYPE_P (t
))
4906 fld_worklist_push (TYPE_CACHED_VALUES (t
), fld
);
4907 fld_worklist_push (TYPE_SIZE (t
), fld
);
4908 fld_worklist_push (TYPE_SIZE_UNIT (t
), fld
);
4909 fld_worklist_push (TYPE_ATTRIBUTES (t
), fld
);
4910 fld_worklist_push (TYPE_POINTER_TO (t
), fld
);
4911 fld_worklist_push (TYPE_REFERENCE_TO (t
), fld
);
4912 fld_worklist_push (TYPE_NAME (t
), fld
);
4913 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
4914 them and thus do not and want not to reach unused pointer types
4916 if (!POINTER_TYPE_P (t
))
4917 fld_worklist_push (TYPE_MINVAL (t
), fld
);
4918 if (!RECORD_OR_UNION_TYPE_P (t
))
4919 fld_worklist_push (TYPE_MAXVAL (t
), fld
);
4920 fld_worklist_push (TYPE_MAIN_VARIANT (t
), fld
);
4921 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
4922 do not and want not to reach unused variants this way. */
4923 if (TYPE_CONTEXT (t
))
4925 tree ctx
= TYPE_CONTEXT (t
);
4926 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
4927 So push that instead. */
4928 while (ctx
&& TREE_CODE (ctx
) == BLOCK
)
4929 ctx
= BLOCK_SUPERCONTEXT (ctx
);
4930 fld_worklist_push (ctx
, fld
);
4932 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
4933 and want not to reach unused types this way. */
4935 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_BINFO (t
))
4939 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t
)), i
, tem
)
4940 fld_worklist_push (TREE_TYPE (tem
), fld
);
4941 tem
= BINFO_VIRTUALS (TYPE_BINFO (t
));
4943 /* The Java FE overloads BINFO_VIRTUALS for its own purpose. */
4944 && TREE_CODE (tem
) == TREE_LIST
)
4947 fld_worklist_push (TREE_VALUE (tem
), fld
);
4948 tem
= TREE_CHAIN (tem
);
4952 if (RECORD_OR_UNION_TYPE_P (t
))
4955 /* Push all TYPE_FIELDS - there can be interleaving interesting
4956 and non-interesting things. */
4957 tem
= TYPE_FIELDS (t
);
4960 if (TREE_CODE (tem
) == FIELD_DECL
4961 || TREE_CODE (tem
) == TYPE_DECL
)
4962 fld_worklist_push (tem
, fld
);
4963 tem
= TREE_CHAIN (tem
);
4967 fld_worklist_push (TYPE_STUB_DECL (t
), fld
);
4970 else if (TREE_CODE (t
) == BLOCK
)
4973 for (tem
= BLOCK_VARS (t
); tem
; tem
= TREE_CHAIN (tem
))
4974 fld_worklist_push (tem
, fld
);
4975 for (tem
= BLOCK_SUBBLOCKS (t
); tem
; tem
= BLOCK_CHAIN (tem
))
4976 fld_worklist_push (tem
, fld
);
4977 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t
), fld
);
4980 if (TREE_CODE (t
) != IDENTIFIER_NODE
4981 && CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_TYPED
))
4982 fld_worklist_push (TREE_TYPE (t
), fld
);
4988 /* Find decls and types in T. */
4991 find_decls_types (tree t
, struct free_lang_data_d
*fld
)
4995 if (!pointer_set_contains (fld
->pset
, t
))
4996 walk_tree (&t
, find_decls_types_r
, fld
, fld
->pset
);
4997 if (fld
->worklist
.is_empty ())
4999 t
= fld
->worklist
.pop ();
5003 /* Translate all the types in LIST with the corresponding runtime
5007 get_eh_types_for_runtime (tree list
)
5011 if (list
== NULL_TREE
)
5014 head
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5016 list
= TREE_CHAIN (list
);
5019 tree n
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5020 TREE_CHAIN (prev
) = n
;
5021 prev
= TREE_CHAIN (prev
);
5022 list
= TREE_CHAIN (list
);
5029 /* Find decls and types referenced in EH region R and store them in
5030 FLD->DECLS and FLD->TYPES. */
5033 find_decls_types_in_eh_region (eh_region r
, struct free_lang_data_d
*fld
)
5044 /* The types referenced in each catch must first be changed to the
5045 EH types used at runtime. This removes references to FE types
5047 for (c
= r
->u
.eh_try
.first_catch
; c
; c
= c
->next_catch
)
5049 c
->type_list
= get_eh_types_for_runtime (c
->type_list
);
5050 walk_tree (&c
->type_list
, find_decls_types_r
, fld
, fld
->pset
);
5055 case ERT_ALLOWED_EXCEPTIONS
:
5056 r
->u
.allowed
.type_list
5057 = get_eh_types_for_runtime (r
->u
.allowed
.type_list
);
5058 walk_tree (&r
->u
.allowed
.type_list
, find_decls_types_r
, fld
, fld
->pset
);
5061 case ERT_MUST_NOT_THROW
:
5062 walk_tree (&r
->u
.must_not_throw
.failure_decl
,
5063 find_decls_types_r
, fld
, fld
->pset
);
5069 /* Find decls and types referenced in cgraph node N and store them in
5070 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5071 look for *every* kind of DECL and TYPE node reachable from N,
5072 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5073 NAMESPACE_DECLs, etc). */
5076 find_decls_types_in_node (struct cgraph_node
*n
, struct free_lang_data_d
*fld
)
5079 struct function
*fn
;
5083 find_decls_types (n
->symbol
.decl
, fld
);
5085 if (!gimple_has_body_p (n
->symbol
.decl
))
5088 gcc_assert (current_function_decl
== NULL_TREE
&& cfun
== NULL
);
5090 fn
= DECL_STRUCT_FUNCTION (n
->symbol
.decl
);
5092 /* Traverse locals. */
5093 FOR_EACH_LOCAL_DECL (fn
, ix
, t
)
5094 find_decls_types (t
, fld
);
5096 /* Traverse EH regions in FN. */
5099 FOR_ALL_EH_REGION_FN (r
, fn
)
5100 find_decls_types_in_eh_region (r
, fld
);
5103 /* Traverse every statement in FN. */
5104 FOR_EACH_BB_FN (bb
, fn
)
5106 gimple_stmt_iterator si
;
5109 for (si
= gsi_start_phis (bb
); !gsi_end_p (si
); gsi_next (&si
))
5111 gimple phi
= gsi_stmt (si
);
5113 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
5115 tree
*arg_p
= gimple_phi_arg_def_ptr (phi
, i
);
5116 find_decls_types (*arg_p
, fld
);
5120 for (si
= gsi_start_bb (bb
); !gsi_end_p (si
); gsi_next (&si
))
5122 gimple stmt
= gsi_stmt (si
);
5124 if (is_gimple_call (stmt
))
5125 find_decls_types (gimple_call_fntype (stmt
), fld
);
5127 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
5129 tree arg
= gimple_op (stmt
, i
);
5130 find_decls_types (arg
, fld
);
5137 /* Find decls and types referenced in varpool node N and store them in
5138 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5139 look for *every* kind of DECL and TYPE node reachable from N,
5140 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5141 NAMESPACE_DECLs, etc). */
5144 find_decls_types_in_var (struct varpool_node
*v
, struct free_lang_data_d
*fld
)
5146 find_decls_types (v
->symbol
.decl
, fld
);
5149 /* If T needs an assembler name, have one created for it. */
5152 assign_assembler_name_if_neeeded (tree t
)
5154 if (need_assembler_name_p (t
))
5156 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5157 diagnostics that use input_location to show locus
5158 information. The problem here is that, at this point,
5159 input_location is generally anchored to the end of the file
5160 (since the parser is long gone), so we don't have a good
5161 position to pin it to.
5163 To alleviate this problem, this uses the location of T's
5164 declaration. Examples of this are
5165 testsuite/g++.dg/template/cond2.C and
5166 testsuite/g++.dg/template/pr35240.C. */
5167 location_t saved_location
= input_location
;
5168 input_location
= DECL_SOURCE_LOCATION (t
);
5170 decl_assembler_name (t
);
5172 input_location
= saved_location
;
5177 /* Free language specific information for every operand and expression
5178 in every node of the call graph. This process operates in three stages:
5180 1- Every callgraph node and varpool node is traversed looking for
5181 decls and types embedded in them. This is a more exhaustive
5182 search than that done by find_referenced_vars, because it will
5183 also collect individual fields, decls embedded in types, etc.
5185 2- All the decls found are sent to free_lang_data_in_decl.
5187 3- All the types found are sent to free_lang_data_in_type.
5189 The ordering between decls and types is important because
5190 free_lang_data_in_decl sets assembler names, which includes
5191 mangling. So types cannot be freed up until assembler names have
5195 free_lang_data_in_cgraph (void)
5197 struct cgraph_node
*n
;
5198 struct varpool_node
*v
;
5199 struct free_lang_data_d fld
;
5204 /* Initialize sets and arrays to store referenced decls and types. */
5205 fld
.pset
= pointer_set_create ();
5206 fld
.worklist
.create (0);
5207 fld
.decls
.create (100);
5208 fld
.types
.create (100);
5210 /* Find decls and types in the body of every function in the callgraph. */
5211 FOR_EACH_FUNCTION (n
)
5212 find_decls_types_in_node (n
, &fld
);
5214 FOR_EACH_VEC_SAFE_ELT (alias_pairs
, i
, p
)
5215 find_decls_types (p
->decl
, &fld
);
5217 /* Find decls and types in every varpool symbol. */
5218 FOR_EACH_VARIABLE (v
)
5219 find_decls_types_in_var (v
, &fld
);
5221 /* Set the assembler name on every decl found. We need to do this
5222 now because free_lang_data_in_decl will invalidate data needed
5223 for mangling. This breaks mangling on interdependent decls. */
5224 FOR_EACH_VEC_ELT (fld
.decls
, i
, t
)
5225 assign_assembler_name_if_neeeded (t
);
5227 /* Traverse every decl found freeing its language data. */
5228 FOR_EACH_VEC_ELT (fld
.decls
, i
, t
)
5229 free_lang_data_in_decl (t
);
5231 /* Traverse every type found freeing its language data. */
5232 FOR_EACH_VEC_ELT (fld
.types
, i
, t
)
5233 free_lang_data_in_type (t
);
5235 pointer_set_destroy (fld
.pset
);
5236 fld
.worklist
.release ();
5237 fld
.decls
.release ();
5238 fld
.types
.release ();
5242 /* Free resources that are used by FE but are not needed once they are done. */
5245 free_lang_data (void)
5249 /* If we are the LTO frontend we have freed lang-specific data already. */
5251 || !flag_generate_lto
)
5254 /* Allocate and assign alias sets to the standard integer types
5255 while the slots are still in the way the frontends generated them. */
5256 for (i
= 0; i
< itk_none
; ++i
)
5257 if (integer_types
[i
])
5258 TYPE_ALIAS_SET (integer_types
[i
]) = get_alias_set (integer_types
[i
]);
5260 /* Traverse the IL resetting language specific information for
5261 operands, expressions, etc. */
5262 free_lang_data_in_cgraph ();
5264 /* Create gimple variants for common types. */
5265 ptrdiff_type_node
= integer_type_node
;
5266 fileptr_type_node
= ptr_type_node
;
5268 /* Reset some langhooks. Do not reset types_compatible_p, it may
5269 still be used indirectly via the get_alias_set langhook. */
5270 lang_hooks
.dwarf_name
= lhd_dwarf_name
;
5271 lang_hooks
.decl_printable_name
= gimple_decl_printable_name
;
5272 /* We do not want the default decl_assembler_name implementation,
5273 rather if we have fixed everything we want a wrapper around it
5274 asserting that all non-local symbols already got their assembler
5275 name and only produce assembler names for local symbols. Or rather
5276 make sure we never call decl_assembler_name on local symbols and
5277 devise a separate, middle-end private scheme for it. */
5279 /* Reset diagnostic machinery. */
5280 tree_diagnostics_defaults (global_dc
);
5286 struct simple_ipa_opt_pass pass_ipa_free_lang_data
=
5290 "*free_lang_data", /* name */
5291 OPTGROUP_NONE
, /* optinfo_flags */
5293 free_lang_data
, /* execute */
5296 0, /* static_pass_number */
5297 TV_IPA_FREE_LANG_DATA
, /* tv_id */
5298 0, /* properties_required */
5299 0, /* properties_provided */
5300 0, /* properties_destroyed */
5301 0, /* todo_flags_start */
5302 TODO_ggc_collect
/* todo_flags_finish */
5306 /* The backbone of is_attribute_p(). ATTR_LEN is the string length of
5307 ATTR_NAME. Also used internally by remove_attribute(). */
5309 private_is_attribute_p (const char *attr_name
, size_t attr_len
, const_tree ident
)
5311 size_t ident_len
= IDENTIFIER_LENGTH (ident
);
5313 if (ident_len
== attr_len
)
5315 if (strcmp (attr_name
, IDENTIFIER_POINTER (ident
)) == 0)
5318 else if (ident_len
== attr_len
+ 4)
5320 /* There is the possibility that ATTR is 'text' and IDENT is
5322 const char *p
= IDENTIFIER_POINTER (ident
);
5323 if (p
[0] == '_' && p
[1] == '_'
5324 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5325 && strncmp (attr_name
, p
+ 2, attr_len
) == 0)
5332 /* The backbone of lookup_attribute(). ATTR_LEN is the string length
5333 of ATTR_NAME, and LIST is not NULL_TREE. */
5335 private_lookup_attribute (const char *attr_name
, size_t attr_len
, tree list
)
5339 size_t ident_len
= IDENTIFIER_LENGTH (get_attribute_name (list
));
5341 if (ident_len
== attr_len
)
5343 if (!strcmp (attr_name
,
5344 IDENTIFIER_POINTER (get_attribute_name (list
))))
5347 /* TODO: If we made sure that attributes were stored in the
5348 canonical form without '__...__' (ie, as in 'text' as opposed
5349 to '__text__') then we could avoid the following case. */
5350 else if (ident_len
== attr_len
+ 4)
5352 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5353 if (p
[0] == '_' && p
[1] == '_'
5354 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5355 && strncmp (attr_name
, p
+ 2, attr_len
) == 0)
5358 list
= TREE_CHAIN (list
);
5364 /* A variant of lookup_attribute() that can be used with an identifier
5365 as the first argument, and where the identifier can be either
5366 'text' or '__text__'.
5368 Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
5369 return a pointer to the attribute's list element if the attribute
5370 is part of the list, or NULL_TREE if not found. If the attribute
5371 appears more than once, this only returns the first occurrence; the
5372 TREE_CHAIN of the return value should be passed back in if further
5373 occurrences are wanted. ATTR_IDENTIFIER must be an identifier but
5374 can be in the form 'text' or '__text__'. */
5376 lookup_ident_attribute (tree attr_identifier
, tree list
)
5378 gcc_checking_assert (TREE_CODE (attr_identifier
) == IDENTIFIER_NODE
);
5382 gcc_checking_assert (TREE_CODE (get_attribute_name (list
))
5383 == IDENTIFIER_NODE
);
5385 /* Identifiers can be compared directly for equality. */
5386 if (attr_identifier
== get_attribute_name (list
))
5389 /* If they are not equal, they may still be one in the form
5390 'text' while the other one is in the form '__text__'. TODO:
5391 If we were storing attributes in normalized 'text' form, then
5392 this could all go away and we could take full advantage of
5393 the fact that we're comparing identifiers. :-) */
5395 size_t attr_len
= IDENTIFIER_LENGTH (attr_identifier
);
5396 size_t ident_len
= IDENTIFIER_LENGTH (get_attribute_name (list
));
5398 if (ident_len
== attr_len
+ 4)
5400 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5401 const char *q
= IDENTIFIER_POINTER (attr_identifier
);
5402 if (p
[0] == '_' && p
[1] == '_'
5403 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5404 && strncmp (q
, p
+ 2, attr_len
) == 0)
5407 else if (ident_len
+ 4 == attr_len
)
5409 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5410 const char *q
= IDENTIFIER_POINTER (attr_identifier
);
5411 if (q
[0] == '_' && q
[1] == '_'
5412 && q
[attr_len
- 2] == '_' && q
[attr_len
- 1] == '_'
5413 && strncmp (q
+ 2, p
, ident_len
) == 0)
5417 list
= TREE_CHAIN (list
);
5423 /* Remove any instances of attribute ATTR_NAME in LIST and return the
5427 remove_attribute (const char *attr_name
, tree list
)
5430 size_t attr_len
= strlen (attr_name
);
5432 gcc_checking_assert (attr_name
[0] != '_');
5434 for (p
= &list
; *p
; )
5437 /* TODO: If we were storing attributes in normalized form, here
5438 we could use a simple strcmp(). */
5439 if (private_is_attribute_p (attr_name
, attr_len
, get_attribute_name (l
)))
5440 *p
= TREE_CHAIN (l
);
5442 p
= &TREE_CHAIN (l
);
5448 /* Return an attribute list that is the union of a1 and a2. */
5451 merge_attributes (tree a1
, tree a2
)
5455 /* Either one unset? Take the set one. */
5457 if ((attributes
= a1
) == 0)
5460 /* One that completely contains the other? Take it. */
5462 else if (a2
!= 0 && ! attribute_list_contained (a1
, a2
))
5464 if (attribute_list_contained (a2
, a1
))
5468 /* Pick the longest list, and hang on the other list. */
5470 if (list_length (a1
) < list_length (a2
))
5471 attributes
= a2
, a2
= a1
;
5473 for (; a2
!= 0; a2
= TREE_CHAIN (a2
))
5476 for (a
= lookup_ident_attribute (get_attribute_name (a2
),
5478 a
!= NULL_TREE
&& !attribute_value_equal (a
, a2
);
5479 a
= lookup_ident_attribute (get_attribute_name (a2
),
5484 a1
= copy_node (a2
);
5485 TREE_CHAIN (a1
) = attributes
;
5494 /* Given types T1 and T2, merge their attributes and return
5498 merge_type_attributes (tree t1
, tree t2
)
5500 return merge_attributes (TYPE_ATTRIBUTES (t1
),
5501 TYPE_ATTRIBUTES (t2
));
5504 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
5508 merge_decl_attributes (tree olddecl
, tree newdecl
)
5510 return merge_attributes (DECL_ATTRIBUTES (olddecl
),
5511 DECL_ATTRIBUTES (newdecl
));
5514 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
5516 /* Specialization of merge_decl_attributes for various Windows targets.
5518 This handles the following situation:
5520 __declspec (dllimport) int foo;
5523 The second instance of `foo' nullifies the dllimport. */
5526 merge_dllimport_decl_attributes (tree old
, tree new_tree
)
5529 int delete_dllimport_p
= 1;
5531 /* What we need to do here is remove from `old' dllimport if it doesn't
5532 appear in `new'. dllimport behaves like extern: if a declaration is
5533 marked dllimport and a definition appears later, then the object
5534 is not dllimport'd. We also remove a `new' dllimport if the old list
5535 contains dllexport: dllexport always overrides dllimport, regardless
5536 of the order of declaration. */
5537 if (!VAR_OR_FUNCTION_DECL_P (new_tree
))
5538 delete_dllimport_p
= 0;
5539 else if (DECL_DLLIMPORT_P (new_tree
)
5540 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old
)))
5542 DECL_DLLIMPORT_P (new_tree
) = 0;
5543 warning (OPT_Wattributes
, "%q+D already declared with dllexport attribute: "
5544 "dllimport ignored", new_tree
);
5546 else if (DECL_DLLIMPORT_P (old
) && !DECL_DLLIMPORT_P (new_tree
))
5548 /* Warn about overriding a symbol that has already been used, e.g.:
5549 extern int __attribute__ ((dllimport)) foo;
5550 int* bar () {return &foo;}
5553 if (TREE_USED (old
))
5555 warning (0, "%q+D redeclared without dllimport attribute "
5556 "after being referenced with dll linkage", new_tree
);
5557 /* If we have used a variable's address with dllimport linkage,
5558 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
5559 decl may already have had TREE_CONSTANT computed.
5560 We still remove the attribute so that assembler code refers
5561 to '&foo rather than '_imp__foo'. */
5562 if (TREE_CODE (old
) == VAR_DECL
&& TREE_ADDRESSABLE (old
))
5563 DECL_DLLIMPORT_P (new_tree
) = 1;
5566 /* Let an inline definition silently override the external reference,
5567 but otherwise warn about attribute inconsistency. */
5568 else if (TREE_CODE (new_tree
) == VAR_DECL
5569 || !DECL_DECLARED_INLINE_P (new_tree
))
5570 warning (OPT_Wattributes
, "%q+D redeclared without dllimport attribute: "
5571 "previous dllimport ignored", new_tree
);
5574 delete_dllimport_p
= 0;
5576 a
= merge_attributes (DECL_ATTRIBUTES (old
), DECL_ATTRIBUTES (new_tree
));
5578 if (delete_dllimport_p
)
5579 a
= remove_attribute ("dllimport", a
);
5584 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
5585 struct attribute_spec.handler. */
5588 handle_dll_attribute (tree
* pnode
, tree name
, tree args
, int flags
,
5594 /* These attributes may apply to structure and union types being created,
5595 but otherwise should pass to the declaration involved. */
5598 if (flags
& ((int) ATTR_FLAG_DECL_NEXT
| (int) ATTR_FLAG_FUNCTION_NEXT
5599 | (int) ATTR_FLAG_ARRAY_NEXT
))
5601 *no_add_attrs
= true;
5602 return tree_cons (name
, args
, NULL_TREE
);
5604 if (TREE_CODE (node
) == RECORD_TYPE
5605 || TREE_CODE (node
) == UNION_TYPE
)
5607 node
= TYPE_NAME (node
);
5613 warning (OPT_Wattributes
, "%qE attribute ignored",
5615 *no_add_attrs
= true;
5620 if (TREE_CODE (node
) != FUNCTION_DECL
5621 && TREE_CODE (node
) != VAR_DECL
5622 && TREE_CODE (node
) != TYPE_DECL
)
5624 *no_add_attrs
= true;
5625 warning (OPT_Wattributes
, "%qE attribute ignored",
5630 if (TREE_CODE (node
) == TYPE_DECL
5631 && TREE_CODE (TREE_TYPE (node
)) != RECORD_TYPE
5632 && TREE_CODE (TREE_TYPE (node
)) != UNION_TYPE
)
5634 *no_add_attrs
= true;
5635 warning (OPT_Wattributes
, "%qE attribute ignored",
5640 is_dllimport
= is_attribute_p ("dllimport", name
);
5642 /* Report error on dllimport ambiguities seen now before they cause
5646 /* Honor any target-specific overrides. */
5647 if (!targetm
.valid_dllimport_attribute_p (node
))
5648 *no_add_attrs
= true;
5650 else if (TREE_CODE (node
) == FUNCTION_DECL
5651 && DECL_DECLARED_INLINE_P (node
))
5653 warning (OPT_Wattributes
, "inline function %q+D declared as "
5654 " dllimport: attribute ignored", node
);
5655 *no_add_attrs
= true;
5657 /* Like MS, treat definition of dllimported variables and
5658 non-inlined functions on declaration as syntax errors. */
5659 else if (TREE_CODE (node
) == FUNCTION_DECL
&& DECL_INITIAL (node
))
5661 error ("function %q+D definition is marked dllimport", node
);
5662 *no_add_attrs
= true;
5665 else if (TREE_CODE (node
) == VAR_DECL
)
5667 if (DECL_INITIAL (node
))
5669 error ("variable %q+D definition is marked dllimport",
5671 *no_add_attrs
= true;
5674 /* `extern' needn't be specified with dllimport.
5675 Specify `extern' now and hope for the best. Sigh. */
5676 DECL_EXTERNAL (node
) = 1;
5677 /* Also, implicitly give dllimport'd variables declared within
5678 a function global scope, unless declared static. */
5679 if (current_function_decl
!= NULL_TREE
&& !TREE_STATIC (node
))
5680 TREE_PUBLIC (node
) = 1;
5683 if (*no_add_attrs
== false)
5684 DECL_DLLIMPORT_P (node
) = 1;
5686 else if (TREE_CODE (node
) == FUNCTION_DECL
5687 && DECL_DECLARED_INLINE_P (node
)
5688 && flag_keep_inline_dllexport
)
5689 /* An exported function, even if inline, must be emitted. */
5690 DECL_EXTERNAL (node
) = 0;
5692 /* Report error if symbol is not accessible at global scope. */
5693 if (!TREE_PUBLIC (node
)
5694 && (TREE_CODE (node
) == VAR_DECL
5695 || TREE_CODE (node
) == FUNCTION_DECL
))
5697 error ("external linkage required for symbol %q+D because of "
5698 "%qE attribute", node
, name
);
5699 *no_add_attrs
= true;
5702 /* A dllexport'd entity must have default visibility so that other
5703 program units (shared libraries or the main executable) can see
5704 it. A dllimport'd entity must have default visibility so that
5705 the linker knows that undefined references within this program
5706 unit can be resolved by the dynamic linker. */
5709 if (DECL_VISIBILITY_SPECIFIED (node
)
5710 && DECL_VISIBILITY (node
) != VISIBILITY_DEFAULT
)
5711 error ("%qE implies default visibility, but %qD has already "
5712 "been declared with a different visibility",
5714 DECL_VISIBILITY (node
) = VISIBILITY_DEFAULT
;
5715 DECL_VISIBILITY_SPECIFIED (node
) = 1;
5721 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
5723 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5724 of the various TYPE_QUAL values. */
5727 set_type_quals (tree type
, int type_quals
)
5729 TYPE_READONLY (type
) = (type_quals
& TYPE_QUAL_CONST
) != 0;
5730 TYPE_VOLATILE (type
) = (type_quals
& TYPE_QUAL_VOLATILE
) != 0;
5731 TYPE_RESTRICT (type
) = (type_quals
& TYPE_QUAL_RESTRICT
) != 0;
5732 TYPE_ADDR_SPACE (type
) = DECODE_QUAL_ADDR_SPACE (type_quals
);
5735 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
5738 check_qualified_type (const_tree cand
, const_tree base
, int type_quals
)
5740 return (TYPE_QUALS (cand
) == type_quals
5741 && TYPE_NAME (cand
) == TYPE_NAME (base
)
5742 /* Apparently this is needed for Objective-C. */
5743 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
5744 /* Check alignment. */
5745 && TYPE_ALIGN (cand
) == TYPE_ALIGN (base
)
5746 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
5747 TYPE_ATTRIBUTES (base
)));
5750 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
5753 check_aligned_type (const_tree cand
, const_tree base
, unsigned int align
)
5755 return (TYPE_QUALS (cand
) == TYPE_QUALS (base
)
5756 && TYPE_NAME (cand
) == TYPE_NAME (base
)
5757 /* Apparently this is needed for Objective-C. */
5758 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
5759 /* Check alignment. */
5760 && TYPE_ALIGN (cand
) == align
5761 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
5762 TYPE_ATTRIBUTES (base
)));
5765 /* Return a version of the TYPE, qualified as indicated by the
5766 TYPE_QUALS, if one exists. If no qualified version exists yet,
5767 return NULL_TREE. */
5770 get_qualified_type (tree type
, int type_quals
)
5774 if (TYPE_QUALS (type
) == type_quals
)
5777 /* Search the chain of variants to see if there is already one there just
5778 like the one we need to have. If so, use that existing one. We must
5779 preserve the TYPE_NAME, since there is code that depends on this. */
5780 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
5781 if (check_qualified_type (t
, type
, type_quals
))
5787 /* Like get_qualified_type, but creates the type if it does not
5788 exist. This function never returns NULL_TREE. */
5791 build_qualified_type (tree type
, int type_quals
)
5795 /* See if we already have the appropriate qualified variant. */
5796 t
= get_qualified_type (type
, type_quals
);
5798 /* If not, build it. */
5801 t
= build_variant_type_copy (type
);
5802 set_type_quals (t
, type_quals
);
5804 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
5805 /* Propagate structural equality. */
5806 SET_TYPE_STRUCTURAL_EQUALITY (t
);
5807 else if (TYPE_CANONICAL (type
) != type
)
5808 /* Build the underlying canonical type, since it is different
5810 TYPE_CANONICAL (t
) = build_qualified_type (TYPE_CANONICAL (type
),
5813 /* T is its own canonical type. */
5814 TYPE_CANONICAL (t
) = t
;
5821 /* Create a variant of type T with alignment ALIGN. */
5824 build_aligned_type (tree type
, unsigned int align
)
5828 if (TYPE_PACKED (type
)
5829 || TYPE_ALIGN (type
) == align
)
5832 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
5833 if (check_aligned_type (t
, type
, align
))
5836 t
= build_variant_type_copy (type
);
5837 TYPE_ALIGN (t
) = align
;
5842 /* Create a new distinct copy of TYPE. The new type is made its own
5843 MAIN_VARIANT. If TYPE requires structural equality checks, the
5844 resulting type requires structural equality checks; otherwise, its
5845 TYPE_CANONICAL points to itself. */
5848 build_distinct_type_copy (tree type
)
5850 tree t
= copy_node (type
);
5852 TYPE_POINTER_TO (t
) = 0;
5853 TYPE_REFERENCE_TO (t
) = 0;
5855 /* Set the canonical type either to a new equivalence class, or
5856 propagate the need for structural equality checks. */
5857 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
5858 SET_TYPE_STRUCTURAL_EQUALITY (t
);
5860 TYPE_CANONICAL (t
) = t
;
5862 /* Make it its own variant. */
5863 TYPE_MAIN_VARIANT (t
) = t
;
5864 TYPE_NEXT_VARIANT (t
) = 0;
5866 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
5867 whose TREE_TYPE is not t. This can also happen in the Ada
5868 frontend when using subtypes. */
5873 /* Create a new variant of TYPE, equivalent but distinct. This is so
5874 the caller can modify it. TYPE_CANONICAL for the return type will
5875 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
5876 are considered equal by the language itself (or that both types
5877 require structural equality checks). */
5880 build_variant_type_copy (tree type
)
5882 tree t
, m
= TYPE_MAIN_VARIANT (type
);
5884 t
= build_distinct_type_copy (type
);
5886 /* Since we're building a variant, assume that it is a non-semantic
5887 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
5888 TYPE_CANONICAL (t
) = TYPE_CANONICAL (type
);
5890 /* Add the new type to the chain of variants of TYPE. */
5891 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (m
);
5892 TYPE_NEXT_VARIANT (m
) = t
;
5893 TYPE_MAIN_VARIANT (t
) = m
;
5898 /* Return true if the from tree in both tree maps are equal. */
5901 tree_map_base_eq (const void *va
, const void *vb
)
5903 const struct tree_map_base
*const a
= (const struct tree_map_base
*) va
,
5904 *const b
= (const struct tree_map_base
*) vb
;
5905 return (a
->from
== b
->from
);
5908 /* Hash a from tree in a tree_base_map. */
5911 tree_map_base_hash (const void *item
)
5913 return htab_hash_pointer (((const struct tree_map_base
*)item
)->from
);
5916 /* Return true if this tree map structure is marked for garbage collection
5917 purposes. We simply return true if the from tree is marked, so that this
5918 structure goes away when the from tree goes away. */
5921 tree_map_base_marked_p (const void *p
)
5923 return ggc_marked_p (((const struct tree_map_base
*) p
)->from
);
5926 /* Hash a from tree in a tree_map. */
5929 tree_map_hash (const void *item
)
5931 return (((const struct tree_map
*) item
)->hash
);
5934 /* Hash a from tree in a tree_decl_map. */
5937 tree_decl_map_hash (const void *item
)
5939 return DECL_UID (((const struct tree_decl_map
*) item
)->base
.from
);
5942 /* Return the initialization priority for DECL. */
5945 decl_init_priority_lookup (tree decl
)
5947 struct tree_priority_map
*h
;
5948 struct tree_map_base in
;
5950 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
5952 h
= (struct tree_priority_map
*) htab_find (init_priority_for_decl
, &in
);
5953 return h
? h
->init
: DEFAULT_INIT_PRIORITY
;
5956 /* Return the finalization priority for DECL. */
5959 decl_fini_priority_lookup (tree decl
)
5961 struct tree_priority_map
*h
;
5962 struct tree_map_base in
;
5964 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
5966 h
= (struct tree_priority_map
*) htab_find (init_priority_for_decl
, &in
);
5967 return h
? h
->fini
: DEFAULT_INIT_PRIORITY
;
5970 /* Return the initialization and finalization priority information for
5971 DECL. If there is no previous priority information, a freshly
5972 allocated structure is returned. */
5974 static struct tree_priority_map
*
5975 decl_priority_info (tree decl
)
5977 struct tree_priority_map in
;
5978 struct tree_priority_map
*h
;
5981 in
.base
.from
= decl
;
5982 loc
= htab_find_slot (init_priority_for_decl
, &in
, INSERT
);
5983 h
= (struct tree_priority_map
*) *loc
;
5986 h
= ggc_alloc_cleared_tree_priority_map ();
5988 h
->base
.from
= decl
;
5989 h
->init
= DEFAULT_INIT_PRIORITY
;
5990 h
->fini
= DEFAULT_INIT_PRIORITY
;
5996 /* Set the initialization priority for DECL to PRIORITY. */
5999 decl_init_priority_insert (tree decl
, priority_type priority
)
6001 struct tree_priority_map
*h
;
6003 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
6004 if (priority
== DEFAULT_INIT_PRIORITY
)
6006 h
= decl_priority_info (decl
);
6010 /* Set the finalization priority for DECL to PRIORITY. */
6013 decl_fini_priority_insert (tree decl
, priority_type priority
)
6015 struct tree_priority_map
*h
;
6017 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
6018 if (priority
== DEFAULT_INIT_PRIORITY
)
6020 h
= decl_priority_info (decl
);
6024 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6027 print_debug_expr_statistics (void)
6029 fprintf (stderr
, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6030 (long) htab_size (debug_expr_for_decl
),
6031 (long) htab_elements (debug_expr_for_decl
),
6032 htab_collisions (debug_expr_for_decl
));
6035 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6038 print_value_expr_statistics (void)
6040 fprintf (stderr
, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6041 (long) htab_size (value_expr_for_decl
),
6042 (long) htab_elements (value_expr_for_decl
),
6043 htab_collisions (value_expr_for_decl
));
6046 /* Lookup a debug expression for FROM, and return it if we find one. */
6049 decl_debug_expr_lookup (tree from
)
6051 struct tree_decl_map
*h
, in
;
6052 in
.base
.from
= from
;
6054 h
= (struct tree_decl_map
*)
6055 htab_find_with_hash (debug_expr_for_decl
, &in
, DECL_UID (from
));
6061 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6064 decl_debug_expr_insert (tree from
, tree to
)
6066 struct tree_decl_map
*h
;
6069 h
= ggc_alloc_tree_decl_map ();
6070 h
->base
.from
= from
;
6072 loc
= htab_find_slot_with_hash (debug_expr_for_decl
, h
, DECL_UID (from
),
6074 *(struct tree_decl_map
**) loc
= h
;
6077 /* Lookup a value expression for FROM, and return it if we find one. */
6080 decl_value_expr_lookup (tree from
)
6082 struct tree_decl_map
*h
, in
;
6083 in
.base
.from
= from
;
6085 h
= (struct tree_decl_map
*)
6086 htab_find_with_hash (value_expr_for_decl
, &in
, DECL_UID (from
));
6092 /* Insert a mapping FROM->TO in the value expression hashtable. */
6095 decl_value_expr_insert (tree from
, tree to
)
6097 struct tree_decl_map
*h
;
6100 h
= ggc_alloc_tree_decl_map ();
6101 h
->base
.from
= from
;
6103 loc
= htab_find_slot_with_hash (value_expr_for_decl
, h
, DECL_UID (from
),
6105 *(struct tree_decl_map
**) loc
= h
;
6108 /* Lookup a vector of debug arguments for FROM, and return it if we
6112 decl_debug_args_lookup (tree from
)
6114 struct tree_vec_map
*h
, in
;
6116 if (!DECL_HAS_DEBUG_ARGS_P (from
))
6118 gcc_checking_assert (debug_args_for_decl
!= NULL
);
6119 in
.base
.from
= from
;
6120 h
= (struct tree_vec_map
*)
6121 htab_find_with_hash (debug_args_for_decl
, &in
, DECL_UID (from
));
6127 /* Insert a mapping FROM->empty vector of debug arguments in the value
6128 expression hashtable. */
6131 decl_debug_args_insert (tree from
)
6133 struct tree_vec_map
*h
;
6136 if (DECL_HAS_DEBUG_ARGS_P (from
))
6137 return decl_debug_args_lookup (from
);
6138 if (debug_args_for_decl
== NULL
)
6139 debug_args_for_decl
= htab_create_ggc (64, tree_vec_map_hash
,
6140 tree_vec_map_eq
, 0);
6141 h
= ggc_alloc_tree_vec_map ();
6142 h
->base
.from
= from
;
6144 loc
= htab_find_slot_with_hash (debug_args_for_decl
, h
, DECL_UID (from
),
6146 *(struct tree_vec_map
**) loc
= h
;
6147 DECL_HAS_DEBUG_ARGS_P (from
) = 1;
6151 /* Hashing of types so that we don't make duplicates.
6152 The entry point is `type_hash_canon'. */
6154 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
6155 with types in the TREE_VALUE slots), by adding the hash codes
6156 of the individual types. */
6159 type_hash_list (const_tree list
, hashval_t hashcode
)
6163 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
6164 if (TREE_VALUE (tail
) != error_mark_node
)
6165 hashcode
= iterative_hash_object (TYPE_HASH (TREE_VALUE (tail
)),
6171 /* These are the Hashtable callback functions. */
6173 /* Returns true iff the types are equivalent. */
6176 type_hash_eq (const void *va
, const void *vb
)
6178 const struct type_hash
*const a
= (const struct type_hash
*) va
,
6179 *const b
= (const struct type_hash
*) vb
;
6181 /* First test the things that are the same for all types. */
6182 if (a
->hash
!= b
->hash
6183 || TREE_CODE (a
->type
) != TREE_CODE (b
->type
)
6184 || TREE_TYPE (a
->type
) != TREE_TYPE (b
->type
)
6185 || !attribute_list_equal (TYPE_ATTRIBUTES (a
->type
),
6186 TYPE_ATTRIBUTES (b
->type
))
6187 || (TREE_CODE (a
->type
) != COMPLEX_TYPE
6188 && TYPE_NAME (a
->type
) != TYPE_NAME (b
->type
)))
6191 /* Be careful about comparing arrays before and after the element type
6192 has been completed; don't compare TYPE_ALIGN unless both types are
6194 if (COMPLETE_TYPE_P (a
->type
) && COMPLETE_TYPE_P (b
->type
)
6195 && (TYPE_ALIGN (a
->type
) != TYPE_ALIGN (b
->type
)
6196 || TYPE_MODE (a
->type
) != TYPE_MODE (b
->type
)))
6199 switch (TREE_CODE (a
->type
))
6204 case REFERENCE_TYPE
:
6209 return TYPE_VECTOR_SUBPARTS (a
->type
) == TYPE_VECTOR_SUBPARTS (b
->type
);
6212 if (TYPE_VALUES (a
->type
) != TYPE_VALUES (b
->type
)
6213 && !(TYPE_VALUES (a
->type
)
6214 && TREE_CODE (TYPE_VALUES (a
->type
)) == TREE_LIST
6215 && TYPE_VALUES (b
->type
)
6216 && TREE_CODE (TYPE_VALUES (b
->type
)) == TREE_LIST
6217 && type_list_equal (TYPE_VALUES (a
->type
),
6218 TYPE_VALUES (b
->type
))))
6221 /* ... fall through ... */
6226 return ((TYPE_MAX_VALUE (a
->type
) == TYPE_MAX_VALUE (b
->type
)
6227 || tree_int_cst_equal (TYPE_MAX_VALUE (a
->type
),
6228 TYPE_MAX_VALUE (b
->type
)))
6229 && (TYPE_MIN_VALUE (a
->type
) == TYPE_MIN_VALUE (b
->type
)
6230 || tree_int_cst_equal (TYPE_MIN_VALUE (a
->type
),
6231 TYPE_MIN_VALUE (b
->type
))));
6233 case FIXED_POINT_TYPE
:
6234 return TYPE_SATURATING (a
->type
) == TYPE_SATURATING (b
->type
);
6237 return TYPE_OFFSET_BASETYPE (a
->type
) == TYPE_OFFSET_BASETYPE (b
->type
);
6240 if (TYPE_METHOD_BASETYPE (a
->type
) == TYPE_METHOD_BASETYPE (b
->type
)
6241 && (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6242 || (TYPE_ARG_TYPES (a
->type
)
6243 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6244 && TYPE_ARG_TYPES (b
->type
)
6245 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6246 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6247 TYPE_ARG_TYPES (b
->type
)))))
6251 return TYPE_DOMAIN (a
->type
) == TYPE_DOMAIN (b
->type
);
6255 case QUAL_UNION_TYPE
:
6256 return (TYPE_FIELDS (a
->type
) == TYPE_FIELDS (b
->type
)
6257 || (TYPE_FIELDS (a
->type
)
6258 && TREE_CODE (TYPE_FIELDS (a
->type
)) == TREE_LIST
6259 && TYPE_FIELDS (b
->type
)
6260 && TREE_CODE (TYPE_FIELDS (b
->type
)) == TREE_LIST
6261 && type_list_equal (TYPE_FIELDS (a
->type
),
6262 TYPE_FIELDS (b
->type
))));
6265 if (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6266 || (TYPE_ARG_TYPES (a
->type
)
6267 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6268 && TYPE_ARG_TYPES (b
->type
)
6269 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6270 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6271 TYPE_ARG_TYPES (b
->type
))))
6279 if (lang_hooks
.types
.type_hash_eq
!= NULL
)
6280 return lang_hooks
.types
.type_hash_eq (a
->type
, b
->type
);
6285 /* Return the cached hash value. */
6288 type_hash_hash (const void *item
)
6290 return ((const struct type_hash
*) item
)->hash
;
6293 /* Look in the type hash table for a type isomorphic to TYPE.
6294 If one is found, return it. Otherwise return 0. */
6297 type_hash_lookup (hashval_t hashcode
, tree type
)
6299 struct type_hash
*h
, in
;
6301 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6302 must call that routine before comparing TYPE_ALIGNs. */
6308 h
= (struct type_hash
*) htab_find_with_hash (type_hash_table
, &in
,
6315 /* Add an entry to the type-hash-table
6316 for a type TYPE whose hash code is HASHCODE. */
6319 type_hash_add (hashval_t hashcode
, tree type
)
6321 struct type_hash
*h
;
6324 h
= ggc_alloc_type_hash ();
6327 loc
= htab_find_slot_with_hash (type_hash_table
, h
, hashcode
, INSERT
);
6331 /* Given TYPE, and HASHCODE its hash code, return the canonical
6332 object for an identical type if one already exists.
6333 Otherwise, return TYPE, and record it as the canonical object.
6335 To use this function, first create a type of the sort you want.
6336 Then compute its hash code from the fields of the type that
6337 make it different from other similar types.
6338 Then call this function and use the value. */
6341 type_hash_canon (unsigned int hashcode
, tree type
)
6345 /* The hash table only contains main variants, so ensure that's what we're
6347 gcc_assert (TYPE_MAIN_VARIANT (type
) == type
);
6349 /* See if the type is in the hash table already. If so, return it.
6350 Otherwise, add the type. */
6351 t1
= type_hash_lookup (hashcode
, type
);
6354 if (GATHER_STATISTICS
)
6356 tree_code_counts
[(int) TREE_CODE (type
)]--;
6357 tree_node_counts
[(int) t_kind
]--;
6358 tree_node_sizes
[(int) t_kind
] -= sizeof (struct tree_type_non_common
);
6364 type_hash_add (hashcode
, type
);
6369 /* See if the data pointed to by the type hash table is marked. We consider
6370 it marked if the type is marked or if a debug type number or symbol
6371 table entry has been made for the type. */
6374 type_hash_marked_p (const void *p
)
6376 const_tree
const type
= ((const struct type_hash
*) p
)->type
;
6378 return ggc_marked_p (type
);
6382 print_type_hash_statistics (void)
6384 fprintf (stderr
, "Type hash: size %ld, %ld elements, %f collisions\n",
6385 (long) htab_size (type_hash_table
),
6386 (long) htab_elements (type_hash_table
),
6387 htab_collisions (type_hash_table
));
6390 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
6391 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
6392 by adding the hash codes of the individual attributes. */
6395 attribute_hash_list (const_tree list
, hashval_t hashcode
)
6399 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
6400 /* ??? Do we want to add in TREE_VALUE too? */
6401 hashcode
= iterative_hash_object
6402 (IDENTIFIER_HASH_VALUE (get_attribute_name (tail
)), hashcode
);
6406 /* Given two lists of attributes, return true if list l2 is
6407 equivalent to l1. */
6410 attribute_list_equal (const_tree l1
, const_tree l2
)
6415 return attribute_list_contained (l1
, l2
)
6416 && attribute_list_contained (l2
, l1
);
6419 /* Given two lists of attributes, return true if list L2 is
6420 completely contained within L1. */
6421 /* ??? This would be faster if attribute names were stored in a canonicalized
6422 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
6423 must be used to show these elements are equivalent (which they are). */
6424 /* ??? It's not clear that attributes with arguments will always be handled
6428 attribute_list_contained (const_tree l1
, const_tree l2
)
6432 /* First check the obvious, maybe the lists are identical. */
6436 /* Maybe the lists are similar. */
6437 for (t1
= l1
, t2
= l2
;
6439 && get_attribute_name (t1
) == get_attribute_name (t2
)
6440 && TREE_VALUE (t1
) == TREE_VALUE (t2
);
6441 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
6444 /* Maybe the lists are equal. */
6445 if (t1
== 0 && t2
== 0)
6448 for (; t2
!= 0; t2
= TREE_CHAIN (t2
))
6451 /* This CONST_CAST is okay because lookup_attribute does not
6452 modify its argument and the return value is assigned to a
6454 for (attr
= lookup_ident_attribute (get_attribute_name (t2
), CONST_CAST_TREE(l1
));
6455 attr
!= NULL_TREE
&& !attribute_value_equal (t2
, attr
);
6456 attr
= lookup_ident_attribute (get_attribute_name (t2
), TREE_CHAIN (attr
)))
6459 if (attr
== NULL_TREE
)
6466 /* Given two lists of types
6467 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6468 return 1 if the lists contain the same types in the same order.
6469 Also, the TREE_PURPOSEs must match. */
6472 type_list_equal (const_tree l1
, const_tree l2
)
6476 for (t1
= l1
, t2
= l2
; t1
&& t2
; t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
6477 if (TREE_VALUE (t1
) != TREE_VALUE (t2
)
6478 || (TREE_PURPOSE (t1
) != TREE_PURPOSE (t2
)
6479 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1
), TREE_PURPOSE (t2
))
6480 && (TREE_TYPE (TREE_PURPOSE (t1
))
6481 == TREE_TYPE (TREE_PURPOSE (t2
))))))
6487 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6488 given by TYPE. If the argument list accepts variable arguments,
6489 then this function counts only the ordinary arguments. */
6492 type_num_arguments (const_tree type
)
6497 for (t
= TYPE_ARG_TYPES (type
); t
; t
= TREE_CHAIN (t
))
6498 /* If the function does not take a variable number of arguments,
6499 the last element in the list will have type `void'. */
6500 if (VOID_TYPE_P (TREE_VALUE (t
)))
6508 /* Nonzero if integer constants T1 and T2
6509 represent the same constant value. */
6512 tree_int_cst_equal (const_tree t1
, const_tree t2
)
6517 if (t1
== 0 || t2
== 0)
6520 if (TREE_CODE (t1
) == INTEGER_CST
6521 && TREE_CODE (t2
) == INTEGER_CST
6522 && TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
6523 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
))
6529 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
6530 The precise way of comparison depends on their data type. */
6533 tree_int_cst_lt (const_tree t1
, const_tree t2
)
6538 if (TYPE_UNSIGNED (TREE_TYPE (t1
)) != TYPE_UNSIGNED (TREE_TYPE (t2
)))
6540 int t1_sgn
= tree_int_cst_sgn (t1
);
6541 int t2_sgn
= tree_int_cst_sgn (t2
);
6543 if (t1_sgn
< t2_sgn
)
6545 else if (t1_sgn
> t2_sgn
)
6547 /* Otherwise, both are non-negative, so we compare them as
6548 unsigned just in case one of them would overflow a signed
6551 else if (!TYPE_UNSIGNED (TREE_TYPE (t1
)))
6552 return INT_CST_LT (t1
, t2
);
6554 return INT_CST_LT_UNSIGNED (t1
, t2
);
6557 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
6560 tree_int_cst_compare (const_tree t1
, const_tree t2
)
6562 if (tree_int_cst_lt (t1
, t2
))
6564 else if (tree_int_cst_lt (t2
, t1
))
6570 /* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
6571 the host. If POS is zero, the value can be represented in a single
6572 HOST_WIDE_INT. If POS is nonzero, the value must be non-negative and can
6573 be represented in a single unsigned HOST_WIDE_INT. */
6576 host_integerp (const_tree t
, int pos
)
6581 return (TREE_CODE (t
) == INTEGER_CST
6582 && ((TREE_INT_CST_HIGH (t
) == 0
6583 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) >= 0)
6584 || (! pos
&& TREE_INT_CST_HIGH (t
) == -1
6585 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0
6586 && !TYPE_UNSIGNED (TREE_TYPE (t
)))
6587 || (pos
&& TREE_INT_CST_HIGH (t
) == 0)));
6590 /* Return the HOST_WIDE_INT least significant bits of T if it is an
6591 INTEGER_CST and there is no overflow. POS is nonzero if the result must
6592 be non-negative. We must be able to satisfy the above conditions. */
6595 tree_low_cst (const_tree t
, int pos
)
6597 gcc_assert (host_integerp (t
, pos
));
6598 return TREE_INT_CST_LOW (t
);
6601 /* Return the HOST_WIDE_INT least significant bits of T, a sizetype
6602 kind INTEGER_CST. This makes sure to properly sign-extend the
6606 size_low_cst (const_tree t
)
6608 double_int d
= tree_to_double_int (t
);
6609 return d
.sext (TYPE_PRECISION (TREE_TYPE (t
))).low
;
6612 /* Return the most significant (sign) bit of T. */
6615 tree_int_cst_sign_bit (const_tree t
)
6617 unsigned bitno
= TYPE_PRECISION (TREE_TYPE (t
)) - 1;
6618 unsigned HOST_WIDE_INT w
;
6620 if (bitno
< HOST_BITS_PER_WIDE_INT
)
6621 w
= TREE_INT_CST_LOW (t
);
6624 w
= TREE_INT_CST_HIGH (t
);
6625 bitno
-= HOST_BITS_PER_WIDE_INT
;
6628 return (w
>> bitno
) & 1;
6631 /* Return an indication of the sign of the integer constant T.
6632 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6633 Note that -1 will never be returned if T's type is unsigned. */
6636 tree_int_cst_sgn (const_tree t
)
6638 if (TREE_INT_CST_LOW (t
) == 0 && TREE_INT_CST_HIGH (t
) == 0)
6640 else if (TYPE_UNSIGNED (TREE_TYPE (t
)))
6642 else if (TREE_INT_CST_HIGH (t
) < 0)
6648 /* Return the minimum number of bits needed to represent VALUE in a
6649 signed or unsigned type, UNSIGNEDP says which. */
6652 tree_int_cst_min_precision (tree value
, bool unsignedp
)
6654 /* If the value is negative, compute its negative minus 1. The latter
6655 adjustment is because the absolute value of the largest negative value
6656 is one larger than the largest positive value. This is equivalent to
6657 a bit-wise negation, so use that operation instead. */
6659 if (tree_int_cst_sgn (value
) < 0)
6660 value
= fold_build1 (BIT_NOT_EXPR
, TREE_TYPE (value
), value
);
6662 /* Return the number of bits needed, taking into account the fact
6663 that we need one more bit for a signed than unsigned type.
6664 If value is 0 or -1, the minimum precision is 1 no matter
6665 whether unsignedp is true or false. */
6667 if (integer_zerop (value
))
6670 return tree_floor_log2 (value
) + 1 + !unsignedp
;
6673 /* Compare two constructor-element-type constants. Return 1 if the lists
6674 are known to be equal; otherwise return 0. */
6677 simple_cst_list_equal (const_tree l1
, const_tree l2
)
6679 while (l1
!= NULL_TREE
&& l2
!= NULL_TREE
)
6681 if (simple_cst_equal (TREE_VALUE (l1
), TREE_VALUE (l2
)) != 1)
6684 l1
= TREE_CHAIN (l1
);
6685 l2
= TREE_CHAIN (l2
);
6691 /* Return truthvalue of whether T1 is the same tree structure as T2.
6692 Return 1 if they are the same.
6693 Return 0 if they are understandably different.
6694 Return -1 if either contains tree structure not understood by
6698 simple_cst_equal (const_tree t1
, const_tree t2
)
6700 enum tree_code code1
, code2
;
6706 if (t1
== 0 || t2
== 0)
6709 code1
= TREE_CODE (t1
);
6710 code2
= TREE_CODE (t2
);
6712 if (CONVERT_EXPR_CODE_P (code1
) || code1
== NON_LVALUE_EXPR
)
6714 if (CONVERT_EXPR_CODE_P (code2
)
6715 || code2
== NON_LVALUE_EXPR
)
6716 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6718 return simple_cst_equal (TREE_OPERAND (t1
, 0), t2
);
6721 else if (CONVERT_EXPR_CODE_P (code2
)
6722 || code2
== NON_LVALUE_EXPR
)
6723 return simple_cst_equal (t1
, TREE_OPERAND (t2
, 0));
6731 return (TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
6732 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
));
6735 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
6738 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
6741 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
6742 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
6743 TREE_STRING_LENGTH (t1
)));
6747 unsigned HOST_WIDE_INT idx
;
6748 vec
<constructor_elt
, va_gc
> *v1
= CONSTRUCTOR_ELTS (t1
);
6749 vec
<constructor_elt
, va_gc
> *v2
= CONSTRUCTOR_ELTS (t2
);
6751 if (vec_safe_length (v1
) != vec_safe_length (v2
))
6754 for (idx
= 0; idx
< vec_safe_length (v1
); ++idx
)
6755 /* ??? Should we handle also fields here? */
6756 if (!simple_cst_equal ((*v1
)[idx
].value
, (*v2
)[idx
].value
))
6762 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6765 cmp
= simple_cst_equal (CALL_EXPR_FN (t1
), CALL_EXPR_FN (t2
));
6768 if (call_expr_nargs (t1
) != call_expr_nargs (t2
))
6771 const_tree arg1
, arg2
;
6772 const_call_expr_arg_iterator iter1
, iter2
;
6773 for (arg1
= first_const_call_expr_arg (t1
, &iter1
),
6774 arg2
= first_const_call_expr_arg (t2
, &iter2
);
6776 arg1
= next_const_call_expr_arg (&iter1
),
6777 arg2
= next_const_call_expr_arg (&iter2
))
6779 cmp
= simple_cst_equal (arg1
, arg2
);
6783 return arg1
== arg2
;
6787 /* Special case: if either target is an unallocated VAR_DECL,
6788 it means that it's going to be unified with whatever the
6789 TARGET_EXPR is really supposed to initialize, so treat it
6790 as being equivalent to anything. */
6791 if ((TREE_CODE (TREE_OPERAND (t1
, 0)) == VAR_DECL
6792 && DECL_NAME (TREE_OPERAND (t1
, 0)) == NULL_TREE
6793 && !DECL_RTL_SET_P (TREE_OPERAND (t1
, 0)))
6794 || (TREE_CODE (TREE_OPERAND (t2
, 0)) == VAR_DECL
6795 && DECL_NAME (TREE_OPERAND (t2
, 0)) == NULL_TREE
6796 && !DECL_RTL_SET_P (TREE_OPERAND (t2
, 0))))
6799 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6804 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
6806 case WITH_CLEANUP_EXPR
:
6807 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6811 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t1
, 1));
6814 if (TREE_OPERAND (t1
, 1) == TREE_OPERAND (t2
, 1))
6815 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6829 /* This general rule works for most tree codes. All exceptions should be
6830 handled above. If this is a language-specific tree code, we can't
6831 trust what might be in the operand, so say we don't know
6833 if ((int) code1
>= (int) LAST_AND_UNUSED_TREE_CODE
)
6836 switch (TREE_CODE_CLASS (code1
))
6840 case tcc_comparison
:
6841 case tcc_expression
:
6845 for (i
= 0; i
< TREE_CODE_LENGTH (code1
); i
++)
6847 cmp
= simple_cst_equal (TREE_OPERAND (t1
, i
), TREE_OPERAND (t2
, i
));
6859 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
6860 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
6861 than U, respectively. */
6864 compare_tree_int (const_tree t
, unsigned HOST_WIDE_INT u
)
6866 if (tree_int_cst_sgn (t
) < 0)
6868 else if (TREE_INT_CST_HIGH (t
) != 0)
6870 else if (TREE_INT_CST_LOW (t
) == u
)
6872 else if (TREE_INT_CST_LOW (t
) < u
)
6878 /* Return true if SIZE represents a constant size that is in bounds of
6879 what the middle-end and the backend accepts (covering not more than
6880 half of the address-space). */
6883 valid_constant_size_p (const_tree size
)
6885 if (! host_integerp (size
, 1)
6886 || TREE_OVERFLOW (size
)
6887 || tree_int_cst_sign_bit (size
) != 0)
6892 /* Return true if CODE represents an associative tree code. Otherwise
6895 associative_tree_code (enum tree_code code
)
6914 /* Return true if CODE represents a commutative tree code. Otherwise
6917 commutative_tree_code (enum tree_code code
)
6923 case MULT_HIGHPART_EXPR
:
6931 case UNORDERED_EXPR
:
6935 case TRUTH_AND_EXPR
:
6936 case TRUTH_XOR_EXPR
:
6938 case WIDEN_MULT_EXPR
:
6939 case VEC_WIDEN_MULT_HI_EXPR
:
6940 case VEC_WIDEN_MULT_LO_EXPR
:
6941 case VEC_WIDEN_MULT_EVEN_EXPR
:
6942 case VEC_WIDEN_MULT_ODD_EXPR
:
6951 /* Return true if CODE represents a ternary tree code for which the
6952 first two operands are commutative. Otherwise return false. */
6954 commutative_ternary_tree_code (enum tree_code code
)
6958 case WIDEN_MULT_PLUS_EXPR
:
6959 case WIDEN_MULT_MINUS_EXPR
:
6968 /* Generate a hash value for an expression. This can be used iteratively
6969 by passing a previous result as the VAL argument.
6971 This function is intended to produce the same hash for expressions which
6972 would compare equal using operand_equal_p. */
6975 iterative_hash_expr (const_tree t
, hashval_t val
)
6978 enum tree_code code
;
6982 return iterative_hash_hashval_t (0, val
);
6984 code
= TREE_CODE (t
);
6988 /* Alas, constants aren't shared, so we can't rely on pointer
6991 val
= iterative_hash_host_wide_int (TREE_INT_CST_LOW (t
), val
);
6992 return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t
), val
);
6995 unsigned int val2
= real_hash (TREE_REAL_CST_PTR (t
));
6997 return iterative_hash_hashval_t (val2
, val
);
7001 unsigned int val2
= fixed_hash (TREE_FIXED_CST_PTR (t
));
7003 return iterative_hash_hashval_t (val2
, val
);
7006 return iterative_hash (TREE_STRING_POINTER (t
),
7007 TREE_STRING_LENGTH (t
), val
);
7009 val
= iterative_hash_expr (TREE_REALPART (t
), val
);
7010 return iterative_hash_expr (TREE_IMAGPART (t
), val
);
7014 for (i
= 0; i
< VECTOR_CST_NELTS (t
); ++i
)
7015 val
= iterative_hash_expr (VECTOR_CST_ELT (t
, i
), val
);
7019 /* We can just compare by pointer. */
7020 return iterative_hash_host_wide_int (SSA_NAME_VERSION (t
), val
);
7021 case PLACEHOLDER_EXPR
:
7022 /* The node itself doesn't matter. */
7025 /* A list of expressions, for a CALL_EXPR or as the elements of a
7027 for (; t
; t
= TREE_CHAIN (t
))
7028 val
= iterative_hash_expr (TREE_VALUE (t
), val
);
7032 unsigned HOST_WIDE_INT idx
;
7034 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t
), idx
, field
, value
)
7036 val
= iterative_hash_expr (field
, val
);
7037 val
= iterative_hash_expr (value
, val
);
7043 /* The type of the second operand is relevant, except for
7044 its top-level qualifiers. */
7045 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (t
, 1)));
7047 val
= iterative_hash_object (TYPE_HASH (type
), val
);
7049 /* We could use the standard hash computation from this point
7051 val
= iterative_hash_object (code
, val
);
7052 val
= iterative_hash_expr (TREE_OPERAND (t
, 1), val
);
7053 val
= iterative_hash_expr (TREE_OPERAND (t
, 0), val
);
7057 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7058 Otherwise nodes that compare equal according to operand_equal_p might
7059 get different hash codes. However, don't do this for machine specific
7060 or front end builtins, since the function code is overloaded in those
7062 if (DECL_BUILT_IN_CLASS (t
) == BUILT_IN_NORMAL
7063 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t
)))
7065 t
= builtin_decl_explicit (DECL_FUNCTION_CODE (t
));
7066 code
= TREE_CODE (t
);
7070 tclass
= TREE_CODE_CLASS (code
);
7072 if (tclass
== tcc_declaration
)
7074 /* DECL's have a unique ID */
7075 val
= iterative_hash_host_wide_int (DECL_UID (t
), val
);
7079 gcc_assert (IS_EXPR_CODE_CLASS (tclass
));
7081 val
= iterative_hash_object (code
, val
);
7083 /* Don't hash the type, that can lead to having nodes which
7084 compare equal according to operand_equal_p, but which
7085 have different hash codes. */
7086 if (CONVERT_EXPR_CODE_P (code
)
7087 || code
== NON_LVALUE_EXPR
)
7089 /* Make sure to include signness in the hash computation. */
7090 val
+= TYPE_UNSIGNED (TREE_TYPE (t
));
7091 val
= iterative_hash_expr (TREE_OPERAND (t
, 0), val
);
7094 else if (commutative_tree_code (code
))
7096 /* It's a commutative expression. We want to hash it the same
7097 however it appears. We do this by first hashing both operands
7098 and then rehashing based on the order of their independent
7100 hashval_t one
= iterative_hash_expr (TREE_OPERAND (t
, 0), 0);
7101 hashval_t two
= iterative_hash_expr (TREE_OPERAND (t
, 1), 0);
7105 t
= one
, one
= two
, two
= t
;
7107 val
= iterative_hash_hashval_t (one
, val
);
7108 val
= iterative_hash_hashval_t (two
, val
);
7111 for (i
= TREE_OPERAND_LENGTH (t
) - 1; i
>= 0; --i
)
7112 val
= iterative_hash_expr (TREE_OPERAND (t
, i
), val
);
7118 /* Generate a hash value for a pair of expressions. This can be used
7119 iteratively by passing a previous result as the VAL argument.
7121 The same hash value is always returned for a given pair of expressions,
7122 regardless of the order in which they are presented. This is useful in
7123 hashing the operands of commutative functions. */
7126 iterative_hash_exprs_commutative (const_tree t1
,
7127 const_tree t2
, hashval_t val
)
7129 hashval_t one
= iterative_hash_expr (t1
, 0);
7130 hashval_t two
= iterative_hash_expr (t2
, 0);
7134 t
= one
, one
= two
, two
= t
;
7135 val
= iterative_hash_hashval_t (one
, val
);
7136 val
= iterative_hash_hashval_t (two
, val
);
7141 /* Constructors for pointer, array and function types.
7142 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7143 constructed by language-dependent code, not here.) */
7145 /* Construct, lay out and return the type of pointers to TO_TYPE with
7146 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7147 reference all of memory. If such a type has already been
7148 constructed, reuse it. */
7151 build_pointer_type_for_mode (tree to_type
, enum machine_mode mode
,
7156 if (to_type
== error_mark_node
)
7157 return error_mark_node
;
7159 /* If the pointed-to type has the may_alias attribute set, force
7160 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7161 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7162 can_alias_all
= true;
7164 /* In some cases, languages will have things that aren't a POINTER_TYPE
7165 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7166 In that case, return that type without regard to the rest of our
7169 ??? This is a kludge, but consistent with the way this function has
7170 always operated and there doesn't seem to be a good way to avoid this
7172 if (TYPE_POINTER_TO (to_type
) != 0
7173 && TREE_CODE (TYPE_POINTER_TO (to_type
)) != POINTER_TYPE
)
7174 return TYPE_POINTER_TO (to_type
);
7176 /* First, if we already have a type for pointers to TO_TYPE and it's
7177 the proper mode, use it. */
7178 for (t
= TYPE_POINTER_TO (to_type
); t
; t
= TYPE_NEXT_PTR_TO (t
))
7179 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7182 t
= make_node (POINTER_TYPE
);
7184 TREE_TYPE (t
) = to_type
;
7185 SET_TYPE_MODE (t
, mode
);
7186 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7187 TYPE_NEXT_PTR_TO (t
) = TYPE_POINTER_TO (to_type
);
7188 TYPE_POINTER_TO (to_type
) = t
;
7190 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
7191 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7192 else if (TYPE_CANONICAL (to_type
) != to_type
)
7194 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type
),
7195 mode
, can_alias_all
);
7197 /* Lay out the type. This function has many callers that are concerned
7198 with expression-construction, and this simplifies them all. */
7204 /* By default build pointers in ptr_mode. */
7207 build_pointer_type (tree to_type
)
7209 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7210 : TYPE_ADDR_SPACE (to_type
);
7211 enum machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7212 return build_pointer_type_for_mode (to_type
, pointer_mode
, false);
7215 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7218 build_reference_type_for_mode (tree to_type
, enum machine_mode mode
,
7223 if (to_type
== error_mark_node
)
7224 return error_mark_node
;
7226 /* If the pointed-to type has the may_alias attribute set, force
7227 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7228 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7229 can_alias_all
= true;
7231 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7232 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7233 In that case, return that type without regard to the rest of our
7236 ??? This is a kludge, but consistent with the way this function has
7237 always operated and there doesn't seem to be a good way to avoid this
7239 if (TYPE_REFERENCE_TO (to_type
) != 0
7240 && TREE_CODE (TYPE_REFERENCE_TO (to_type
)) != REFERENCE_TYPE
)
7241 return TYPE_REFERENCE_TO (to_type
);
7243 /* First, if we already have a type for pointers to TO_TYPE and it's
7244 the proper mode, use it. */
7245 for (t
= TYPE_REFERENCE_TO (to_type
); t
; t
= TYPE_NEXT_REF_TO (t
))
7246 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7249 t
= make_node (REFERENCE_TYPE
);
7251 TREE_TYPE (t
) = to_type
;
7252 SET_TYPE_MODE (t
, mode
);
7253 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7254 TYPE_NEXT_REF_TO (t
) = TYPE_REFERENCE_TO (to_type
);
7255 TYPE_REFERENCE_TO (to_type
) = t
;
7257 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
7258 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7259 else if (TYPE_CANONICAL (to_type
) != to_type
)
7261 = build_reference_type_for_mode (TYPE_CANONICAL (to_type
),
7262 mode
, can_alias_all
);
7270 /* Build the node for the type of references-to-TO_TYPE by default
7274 build_reference_type (tree to_type
)
7276 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7277 : TYPE_ADDR_SPACE (to_type
);
7278 enum machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7279 return build_reference_type_for_mode (to_type
, pointer_mode
, false);
7282 /* Build a type that is compatible with t but has no cv quals anywhere
7285 const char *const *const * -> char ***. */
7288 build_type_no_quals (tree t
)
7290 switch (TREE_CODE (t
))
7293 return build_pointer_type_for_mode (build_type_no_quals (TREE_TYPE (t
)),
7295 TYPE_REF_CAN_ALIAS_ALL (t
));
7296 case REFERENCE_TYPE
:
7298 build_reference_type_for_mode (build_type_no_quals (TREE_TYPE (t
)),
7300 TYPE_REF_CAN_ALIAS_ALL (t
));
7302 return TYPE_MAIN_VARIANT (t
);
7306 #define MAX_INT_CACHED_PREC \
7307 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7308 static GTY(()) tree nonstandard_integer_type_cache
[2 * MAX_INT_CACHED_PREC
+ 2];
7310 /* Builds a signed or unsigned integer type of precision PRECISION.
7311 Used for C bitfields whose precision does not match that of
7312 built-in target types. */
7314 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision
,
7320 unsignedp
= MAX_INT_CACHED_PREC
+ 1;
7322 if (precision
<= MAX_INT_CACHED_PREC
)
7324 itype
= nonstandard_integer_type_cache
[precision
+ unsignedp
];
7329 itype
= make_node (INTEGER_TYPE
);
7330 TYPE_PRECISION (itype
) = precision
;
7333 fixup_unsigned_type (itype
);
7335 fixup_signed_type (itype
);
7338 if (host_integerp (TYPE_MAX_VALUE (itype
), 1))
7339 ret
= type_hash_canon (tree_low_cst (TYPE_MAX_VALUE (itype
), 1), itype
);
7340 if (precision
<= MAX_INT_CACHED_PREC
)
7341 nonstandard_integer_type_cache
[precision
+ unsignedp
] = ret
;
7346 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7347 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7348 is true, reuse such a type that has already been constructed. */
7351 build_range_type_1 (tree type
, tree lowval
, tree highval
, bool shared
)
7353 tree itype
= make_node (INTEGER_TYPE
);
7354 hashval_t hashcode
= 0;
7356 TREE_TYPE (itype
) = type
;
7358 TYPE_MIN_VALUE (itype
) = fold_convert (type
, lowval
);
7359 TYPE_MAX_VALUE (itype
) = highval
? fold_convert (type
, highval
) : NULL
;
7361 TYPE_PRECISION (itype
) = TYPE_PRECISION (type
);
7362 SET_TYPE_MODE (itype
, TYPE_MODE (type
));
7363 TYPE_SIZE (itype
) = TYPE_SIZE (type
);
7364 TYPE_SIZE_UNIT (itype
) = TYPE_SIZE_UNIT (type
);
7365 TYPE_ALIGN (itype
) = TYPE_ALIGN (type
);
7366 TYPE_USER_ALIGN (itype
) = TYPE_USER_ALIGN (type
);
7371 if ((TYPE_MIN_VALUE (itype
)
7372 && TREE_CODE (TYPE_MIN_VALUE (itype
)) != INTEGER_CST
)
7373 || (TYPE_MAX_VALUE (itype
)
7374 && TREE_CODE (TYPE_MAX_VALUE (itype
)) != INTEGER_CST
))
7376 /* Since we cannot reliably merge this type, we need to compare it using
7377 structural equality checks. */
7378 SET_TYPE_STRUCTURAL_EQUALITY (itype
);
7382 hashcode
= iterative_hash_expr (TYPE_MIN_VALUE (itype
), hashcode
);
7383 hashcode
= iterative_hash_expr (TYPE_MAX_VALUE (itype
), hashcode
);
7384 hashcode
= iterative_hash_hashval_t (TYPE_HASH (type
), hashcode
);
7385 itype
= type_hash_canon (hashcode
, itype
);
7390 /* Wrapper around build_range_type_1 with SHARED set to true. */
7393 build_range_type (tree type
, tree lowval
, tree highval
)
7395 return build_range_type_1 (type
, lowval
, highval
, true);
7398 /* Wrapper around build_range_type_1 with SHARED set to false. */
7401 build_nonshared_range_type (tree type
, tree lowval
, tree highval
)
7403 return build_range_type_1 (type
, lowval
, highval
, false);
7406 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7407 MAXVAL should be the maximum value in the domain
7408 (one less than the length of the array).
7410 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7411 We don't enforce this limit, that is up to caller (e.g. language front end).
7412 The limit exists because the result is a signed type and we don't handle
7413 sizes that use more than one HOST_WIDE_INT. */
7416 build_index_type (tree maxval
)
7418 return build_range_type (sizetype
, size_zero_node
, maxval
);
7421 /* Return true if the debug information for TYPE, a subtype, should be emitted
7422 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7423 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7424 debug info and doesn't reflect the source code. */
7427 subrange_type_for_debug_p (const_tree type
, tree
*lowval
, tree
*highval
)
7429 tree base_type
= TREE_TYPE (type
), low
, high
;
7431 /* Subrange types have a base type which is an integral type. */
7432 if (!INTEGRAL_TYPE_P (base_type
))
7435 /* Get the real bounds of the subtype. */
7436 if (lang_hooks
.types
.get_subrange_bounds
)
7437 lang_hooks
.types
.get_subrange_bounds (type
, &low
, &high
);
7440 low
= TYPE_MIN_VALUE (type
);
7441 high
= TYPE_MAX_VALUE (type
);
7444 /* If the type and its base type have the same representation and the same
7445 name, then the type is not a subrange but a copy of the base type. */
7446 if ((TREE_CODE (base_type
) == INTEGER_TYPE
7447 || TREE_CODE (base_type
) == BOOLEAN_TYPE
)
7448 && int_size_in_bytes (type
) == int_size_in_bytes (base_type
)
7449 && tree_int_cst_equal (low
, TYPE_MIN_VALUE (base_type
))
7450 && tree_int_cst_equal (high
, TYPE_MAX_VALUE (base_type
)))
7452 tree type_name
= TYPE_NAME (type
);
7453 tree base_type_name
= TYPE_NAME (base_type
);
7455 if (type_name
&& TREE_CODE (type_name
) == TYPE_DECL
)
7456 type_name
= DECL_NAME (type_name
);
7458 if (base_type_name
&& TREE_CODE (base_type_name
) == TYPE_DECL
)
7459 base_type_name
= DECL_NAME (base_type_name
);
7461 if (type_name
== base_type_name
)
7472 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7473 and number of elements specified by the range of values of INDEX_TYPE.
7474 If SHARED is true, reuse such a type that has already been constructed. */
7477 build_array_type_1 (tree elt_type
, tree index_type
, bool shared
)
7481 if (TREE_CODE (elt_type
) == FUNCTION_TYPE
)
7483 error ("arrays of functions are not meaningful");
7484 elt_type
= integer_type_node
;
7487 t
= make_node (ARRAY_TYPE
);
7488 TREE_TYPE (t
) = elt_type
;
7489 TYPE_DOMAIN (t
) = index_type
;
7490 TYPE_ADDR_SPACE (t
) = TYPE_ADDR_SPACE (elt_type
);
7493 /* If the element type is incomplete at this point we get marked for
7494 structural equality. Do not record these types in the canonical
7496 if (TYPE_STRUCTURAL_EQUALITY_P (t
))
7501 hashval_t hashcode
= iterative_hash_object (TYPE_HASH (elt_type
), 0);
7503 hashcode
= iterative_hash_object (TYPE_HASH (index_type
), hashcode
);
7504 t
= type_hash_canon (hashcode
, t
);
7507 if (TYPE_CANONICAL (t
) == t
)
7509 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type
)
7510 || (index_type
&& TYPE_STRUCTURAL_EQUALITY_P (index_type
)))
7511 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7512 else if (TYPE_CANONICAL (elt_type
) != elt_type
7513 || (index_type
&& TYPE_CANONICAL (index_type
) != index_type
))
7515 = build_array_type_1 (TYPE_CANONICAL (elt_type
),
7517 ? TYPE_CANONICAL (index_type
) : NULL_TREE
,
7524 /* Wrapper around build_array_type_1 with SHARED set to true. */
7527 build_array_type (tree elt_type
, tree index_type
)
7529 return build_array_type_1 (elt_type
, index_type
, true);
7532 /* Wrapper around build_array_type_1 with SHARED set to false. */
7535 build_nonshared_array_type (tree elt_type
, tree index_type
)
7537 return build_array_type_1 (elt_type
, index_type
, false);
7540 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7544 build_array_type_nelts (tree elt_type
, unsigned HOST_WIDE_INT nelts
)
7546 return build_array_type (elt_type
, build_index_type (size_int (nelts
- 1)));
7549 /* Recursively examines the array elements of TYPE, until a non-array
7550 element type is found. */
7553 strip_array_types (tree type
)
7555 while (TREE_CODE (type
) == ARRAY_TYPE
)
7556 type
= TREE_TYPE (type
);
7561 /* Computes the canonical argument types from the argument type list
7564 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7565 on entry to this function, or if any of the ARGTYPES are
7568 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7569 true on entry to this function, or if any of the ARGTYPES are
7572 Returns a canonical argument list, which may be ARGTYPES when the
7573 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7574 true) or would not differ from ARGTYPES. */
7577 maybe_canonicalize_argtypes(tree argtypes
,
7578 bool *any_structural_p
,
7579 bool *any_noncanonical_p
)
7582 bool any_noncanonical_argtypes_p
= false;
7584 for (arg
= argtypes
; arg
&& !(*any_structural_p
); arg
= TREE_CHAIN (arg
))
7586 if (!TREE_VALUE (arg
) || TREE_VALUE (arg
) == error_mark_node
)
7587 /* Fail gracefully by stating that the type is structural. */
7588 *any_structural_p
= true;
7589 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg
)))
7590 *any_structural_p
= true;
7591 else if (TYPE_CANONICAL (TREE_VALUE (arg
)) != TREE_VALUE (arg
)
7592 || TREE_PURPOSE (arg
))
7593 /* If the argument has a default argument, we consider it
7594 non-canonical even though the type itself is canonical.
7595 That way, different variants of function and method types
7596 with default arguments will all point to the variant with
7597 no defaults as their canonical type. */
7598 any_noncanonical_argtypes_p
= true;
7601 if (*any_structural_p
)
7604 if (any_noncanonical_argtypes_p
)
7606 /* Build the canonical list of argument types. */
7607 tree canon_argtypes
= NULL_TREE
;
7608 bool is_void
= false;
7610 for (arg
= argtypes
; arg
; arg
= TREE_CHAIN (arg
))
7612 if (arg
== void_list_node
)
7615 canon_argtypes
= tree_cons (NULL_TREE
,
7616 TYPE_CANONICAL (TREE_VALUE (arg
)),
7620 canon_argtypes
= nreverse (canon_argtypes
);
7622 canon_argtypes
= chainon (canon_argtypes
, void_list_node
);
7624 /* There is a non-canonical type. */
7625 *any_noncanonical_p
= true;
7626 return canon_argtypes
;
7629 /* The canonical argument types are the same as ARGTYPES. */
7633 /* Construct, lay out and return
7634 the type of functions returning type VALUE_TYPE
7635 given arguments of types ARG_TYPES.
7636 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
7637 are data type nodes for the arguments of the function.
7638 If such a type has already been constructed, reuse it. */
7641 build_function_type (tree value_type
, tree arg_types
)
7644 hashval_t hashcode
= 0;
7645 bool any_structural_p
, any_noncanonical_p
;
7646 tree canon_argtypes
;
7648 if (TREE_CODE (value_type
) == FUNCTION_TYPE
)
7650 error ("function return type cannot be function");
7651 value_type
= integer_type_node
;
7654 /* Make a node of the sort we want. */
7655 t
= make_node (FUNCTION_TYPE
);
7656 TREE_TYPE (t
) = value_type
;
7657 TYPE_ARG_TYPES (t
) = arg_types
;
7659 /* If we already have such a type, use the old one. */
7660 hashcode
= iterative_hash_object (TYPE_HASH (value_type
), hashcode
);
7661 hashcode
= type_hash_list (arg_types
, hashcode
);
7662 t
= type_hash_canon (hashcode
, t
);
7664 /* Set up the canonical type. */
7665 any_structural_p
= TYPE_STRUCTURAL_EQUALITY_P (value_type
);
7666 any_noncanonical_p
= TYPE_CANONICAL (value_type
) != value_type
;
7667 canon_argtypes
= maybe_canonicalize_argtypes (arg_types
,
7669 &any_noncanonical_p
);
7670 if (any_structural_p
)
7671 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7672 else if (any_noncanonical_p
)
7673 TYPE_CANONICAL (t
) = build_function_type (TYPE_CANONICAL (value_type
),
7676 if (!COMPLETE_TYPE_P (t
))
7681 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP and the
7682 return value if SKIP_RETURN is true. */
7685 build_function_type_skip_args (tree orig_type
, bitmap args_to_skip
,
7688 tree new_type
= NULL
;
7689 tree args
, new_args
= NULL
, t
;
7693 for (args
= TYPE_ARG_TYPES (orig_type
); args
&& args
!= void_list_node
;
7694 args
= TREE_CHAIN (args
), i
++)
7695 if (!args_to_skip
|| !bitmap_bit_p (args_to_skip
, i
))
7696 new_args
= tree_cons (NULL_TREE
, TREE_VALUE (args
), new_args
);
7698 new_reversed
= nreverse (new_args
);
7702 TREE_CHAIN (new_args
) = void_list_node
;
7704 new_reversed
= void_list_node
;
7707 /* Use copy_node to preserve as much as possible from original type
7708 (debug info, attribute lists etc.)
7709 Exception is METHOD_TYPEs must have THIS argument.
7710 When we are asked to remove it, we need to build new FUNCTION_TYPE
7712 if (TREE_CODE (orig_type
) != METHOD_TYPE
7714 || !bitmap_bit_p (args_to_skip
, 0))
7716 new_type
= build_distinct_type_copy (orig_type
);
7717 TYPE_ARG_TYPES (new_type
) = new_reversed
;
7722 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type
),
7724 TYPE_CONTEXT (new_type
) = TYPE_CONTEXT (orig_type
);
7728 TREE_TYPE (new_type
) = void_type_node
;
7730 /* This is a new type, not a copy of an old type. Need to reassociate
7731 variants. We can handle everything except the main variant lazily. */
7732 t
= TYPE_MAIN_VARIANT (orig_type
);
7735 t
= build_function_type_skip_args (t
, args_to_skip
, skip_return
);
7736 TYPE_MAIN_VARIANT (new_type
) = t
;
7737 TYPE_NEXT_VARIANT (new_type
) = TYPE_NEXT_VARIANT (t
);
7738 TYPE_NEXT_VARIANT (t
) = new_type
;
7742 TYPE_MAIN_VARIANT (new_type
) = new_type
;
7743 TYPE_NEXT_VARIANT (new_type
) = NULL
;
7749 /* Build variant of function decl ORIG_DECL skipping ARGS_TO_SKIP and the
7750 return value if SKIP_RETURN is true.
7752 Arguments from DECL_ARGUMENTS list can't be removed now, since they are
7753 linked by TREE_CHAIN directly. The caller is responsible for eliminating
7754 them when they are being duplicated (i.e. copy_arguments_for_versioning). */
7757 build_function_decl_skip_args (tree orig_decl
, bitmap args_to_skip
,
7760 tree new_decl
= copy_node (orig_decl
);
7763 new_type
= TREE_TYPE (orig_decl
);
7764 if (prototype_p (new_type
)
7765 || (skip_return
&& !VOID_TYPE_P (TREE_TYPE (new_type
))))
7767 = build_function_type_skip_args (new_type
, args_to_skip
, skip_return
);
7768 TREE_TYPE (new_decl
) = new_type
;
7770 /* For declarations setting DECL_VINDEX (i.e. methods)
7771 we expect first argument to be THIS pointer. */
7772 if (args_to_skip
&& bitmap_bit_p (args_to_skip
, 0))
7773 DECL_VINDEX (new_decl
) = NULL_TREE
;
7775 /* When signature changes, we need to clear builtin info. */
7776 if (DECL_BUILT_IN (new_decl
)
7778 && !bitmap_empty_p (args_to_skip
))
7780 DECL_BUILT_IN_CLASS (new_decl
) = NOT_BUILT_IN
;
7781 DECL_FUNCTION_CODE (new_decl
) = (enum built_in_function
) 0;
7786 /* Build a function type. The RETURN_TYPE is the type returned by the
7787 function. If VAARGS is set, no void_type_node is appended to the
7788 the list. ARGP must be always be terminated be a NULL_TREE. */
7791 build_function_type_list_1 (bool vaargs
, tree return_type
, va_list argp
)
7795 t
= va_arg (argp
, tree
);
7796 for (args
= NULL_TREE
; t
!= NULL_TREE
; t
= va_arg (argp
, tree
))
7797 args
= tree_cons (NULL_TREE
, t
, args
);
7802 if (args
!= NULL_TREE
)
7803 args
= nreverse (args
);
7804 gcc_assert (last
!= void_list_node
);
7806 else if (args
== NULL_TREE
)
7807 args
= void_list_node
;
7811 args
= nreverse (args
);
7812 TREE_CHAIN (last
) = void_list_node
;
7814 args
= build_function_type (return_type
, args
);
7819 /* Build a function type. The RETURN_TYPE is the type returned by the
7820 function. If additional arguments are provided, they are
7821 additional argument types. The list of argument types must always
7822 be terminated by NULL_TREE. */
7825 build_function_type_list (tree return_type
, ...)
7830 va_start (p
, return_type
);
7831 args
= build_function_type_list_1 (false, return_type
, p
);
7836 /* Build a variable argument function type. The RETURN_TYPE is the
7837 type returned by the function. If additional arguments are provided,
7838 they are additional argument types. The list of argument types must
7839 always be terminated by NULL_TREE. */
7842 build_varargs_function_type_list (tree return_type
, ...)
7847 va_start (p
, return_type
);
7848 args
= build_function_type_list_1 (true, return_type
, p
);
7854 /* Build a function type. RETURN_TYPE is the type returned by the
7855 function; VAARGS indicates whether the function takes varargs. The
7856 function takes N named arguments, the types of which are provided in
7860 build_function_type_array_1 (bool vaargs
, tree return_type
, int n
,
7864 tree t
= vaargs
? NULL_TREE
: void_list_node
;
7866 for (i
= n
- 1; i
>= 0; i
--)
7867 t
= tree_cons (NULL_TREE
, arg_types
[i
], t
);
7869 return build_function_type (return_type
, t
);
7872 /* Build a function type. RETURN_TYPE is the type returned by the
7873 function. The function takes N named arguments, the types of which
7874 are provided in ARG_TYPES. */
7877 build_function_type_array (tree return_type
, int n
, tree
*arg_types
)
7879 return build_function_type_array_1 (false, return_type
, n
, arg_types
);
7882 /* Build a variable argument function type. RETURN_TYPE is the type
7883 returned by the function. The function takes N named arguments, the
7884 types of which are provided in ARG_TYPES. */
7887 build_varargs_function_type_array (tree return_type
, int n
, tree
*arg_types
)
7889 return build_function_type_array_1 (true, return_type
, n
, arg_types
);
7892 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
7893 and ARGTYPES (a TREE_LIST) are the return type and arguments types
7894 for the method. An implicit additional parameter (of type
7895 pointer-to-BASETYPE) is added to the ARGTYPES. */
7898 build_method_type_directly (tree basetype
,
7905 bool any_structural_p
, any_noncanonical_p
;
7906 tree canon_argtypes
;
7908 /* Make a node of the sort we want. */
7909 t
= make_node (METHOD_TYPE
);
7911 TYPE_METHOD_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
7912 TREE_TYPE (t
) = rettype
;
7913 ptype
= build_pointer_type (basetype
);
7915 /* The actual arglist for this function includes a "hidden" argument
7916 which is "this". Put it into the list of argument types. */
7917 argtypes
= tree_cons (NULL_TREE
, ptype
, argtypes
);
7918 TYPE_ARG_TYPES (t
) = argtypes
;
7920 /* If we already have such a type, use the old one. */
7921 hashcode
= iterative_hash_object (TYPE_HASH (basetype
), hashcode
);
7922 hashcode
= iterative_hash_object (TYPE_HASH (rettype
), hashcode
);
7923 hashcode
= type_hash_list (argtypes
, hashcode
);
7924 t
= type_hash_canon (hashcode
, t
);
7926 /* Set up the canonical type. */
7928 = (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
7929 || TYPE_STRUCTURAL_EQUALITY_P (rettype
));
7931 = (TYPE_CANONICAL (basetype
) != basetype
7932 || TYPE_CANONICAL (rettype
) != rettype
);
7933 canon_argtypes
= maybe_canonicalize_argtypes (TREE_CHAIN (argtypes
),
7935 &any_noncanonical_p
);
7936 if (any_structural_p
)
7937 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7938 else if (any_noncanonical_p
)
7940 = build_method_type_directly (TYPE_CANONICAL (basetype
),
7941 TYPE_CANONICAL (rettype
),
7943 if (!COMPLETE_TYPE_P (t
))
7949 /* Construct, lay out and return the type of methods belonging to class
7950 BASETYPE and whose arguments and values are described by TYPE.
7951 If that type exists already, reuse it.
7952 TYPE must be a FUNCTION_TYPE node. */
7955 build_method_type (tree basetype
, tree type
)
7957 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
7959 return build_method_type_directly (basetype
,
7961 TYPE_ARG_TYPES (type
));
7964 /* Construct, lay out and return the type of offsets to a value
7965 of type TYPE, within an object of type BASETYPE.
7966 If a suitable offset type exists already, reuse it. */
7969 build_offset_type (tree basetype
, tree type
)
7972 hashval_t hashcode
= 0;
7974 /* Make a node of the sort we want. */
7975 t
= make_node (OFFSET_TYPE
);
7977 TYPE_OFFSET_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
7978 TREE_TYPE (t
) = type
;
7980 /* If we already have such a type, use the old one. */
7981 hashcode
= iterative_hash_object (TYPE_HASH (basetype
), hashcode
);
7982 hashcode
= iterative_hash_object (TYPE_HASH (type
), hashcode
);
7983 t
= type_hash_canon (hashcode
, t
);
7985 if (!COMPLETE_TYPE_P (t
))
7988 if (TYPE_CANONICAL (t
) == t
)
7990 if (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
7991 || TYPE_STRUCTURAL_EQUALITY_P (type
))
7992 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7993 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)) != basetype
7994 || TYPE_CANONICAL (type
) != type
)
7996 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)),
7997 TYPE_CANONICAL (type
));
8003 /* Create a complex type whose components are COMPONENT_TYPE. */
8006 build_complex_type (tree component_type
)
8011 gcc_assert (INTEGRAL_TYPE_P (component_type
)
8012 || SCALAR_FLOAT_TYPE_P (component_type
)
8013 || FIXED_POINT_TYPE_P (component_type
));
8015 /* Make a node of the sort we want. */
8016 t
= make_node (COMPLEX_TYPE
);
8018 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (component_type
);
8020 /* If we already have such a type, use the old one. */
8021 hashcode
= iterative_hash_object (TYPE_HASH (component_type
), 0);
8022 t
= type_hash_canon (hashcode
, t
);
8024 if (!COMPLETE_TYPE_P (t
))
8027 if (TYPE_CANONICAL (t
) == t
)
8029 if (TYPE_STRUCTURAL_EQUALITY_P (component_type
))
8030 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8031 else if (TYPE_CANONICAL (component_type
) != component_type
)
8033 = build_complex_type (TYPE_CANONICAL (component_type
));
8036 /* We need to create a name, since complex is a fundamental type. */
8037 if (! TYPE_NAME (t
))
8040 if (component_type
== char_type_node
)
8041 name
= "complex char";
8042 else if (component_type
== signed_char_type_node
)
8043 name
= "complex signed char";
8044 else if (component_type
== unsigned_char_type_node
)
8045 name
= "complex unsigned char";
8046 else if (component_type
== short_integer_type_node
)
8047 name
= "complex short int";
8048 else if (component_type
== short_unsigned_type_node
)
8049 name
= "complex short unsigned int";
8050 else if (component_type
== integer_type_node
)
8051 name
= "complex int";
8052 else if (component_type
== unsigned_type_node
)
8053 name
= "complex unsigned int";
8054 else if (component_type
== long_integer_type_node
)
8055 name
= "complex long int";
8056 else if (component_type
== long_unsigned_type_node
)
8057 name
= "complex long unsigned int";
8058 else if (component_type
== long_long_integer_type_node
)
8059 name
= "complex long long int";
8060 else if (component_type
== long_long_unsigned_type_node
)
8061 name
= "complex long long unsigned int";
8066 TYPE_NAME (t
) = build_decl (UNKNOWN_LOCATION
, TYPE_DECL
,
8067 get_identifier (name
), t
);
8070 return build_qualified_type (t
, TYPE_QUALS (component_type
));
8073 /* If TYPE is a real or complex floating-point type and the target
8074 does not directly support arithmetic on TYPE then return the wider
8075 type to be used for arithmetic on TYPE. Otherwise, return
8079 excess_precision_type (tree type
)
8081 if (flag_excess_precision
!= EXCESS_PRECISION_FAST
)
8083 int flt_eval_method
= TARGET_FLT_EVAL_METHOD
;
8084 switch (TREE_CODE (type
))
8087 switch (flt_eval_method
)
8090 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
))
8091 return double_type_node
;
8094 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
)
8095 || TYPE_MODE (type
) == TYPE_MODE (double_type_node
))
8096 return long_double_type_node
;
8103 if (TREE_CODE (TREE_TYPE (type
)) != REAL_TYPE
)
8105 switch (flt_eval_method
)
8108 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
))
8109 return complex_double_type_node
;
8112 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
)
8113 || (TYPE_MODE (TREE_TYPE (type
))
8114 == TYPE_MODE (double_type_node
)))
8115 return complex_long_double_type_node
;
8128 /* Return OP, stripped of any conversions to wider types as much as is safe.
8129 Converting the value back to OP's type makes a value equivalent to OP.
8131 If FOR_TYPE is nonzero, we return a value which, if converted to
8132 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8134 OP must have integer, real or enumeral type. Pointers are not allowed!
8136 There are some cases where the obvious value we could return
8137 would regenerate to OP if converted to OP's type,
8138 but would not extend like OP to wider types.
8139 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8140 For example, if OP is (unsigned short)(signed char)-1,
8141 we avoid returning (signed char)-1 if FOR_TYPE is int,
8142 even though extending that to an unsigned short would regenerate OP,
8143 since the result of extending (signed char)-1 to (int)
8144 is different from (int) OP. */
8147 get_unwidened (tree op
, tree for_type
)
8149 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8150 tree type
= TREE_TYPE (op
);
8152 = TYPE_PRECISION (for_type
!= 0 ? for_type
: type
);
8154 = (for_type
!= 0 && for_type
!= type
8155 && final_prec
> TYPE_PRECISION (type
)
8156 && TYPE_UNSIGNED (type
));
8159 while (CONVERT_EXPR_P (op
))
8163 /* TYPE_PRECISION on vector types has different meaning
8164 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8165 so avoid them here. */
8166 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op
, 0))) == VECTOR_TYPE
)
8169 bitschange
= TYPE_PRECISION (TREE_TYPE (op
))
8170 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0)));
8172 /* Truncations are many-one so cannot be removed.
8173 Unless we are later going to truncate down even farther. */
8175 && final_prec
> TYPE_PRECISION (TREE_TYPE (op
)))
8178 /* See what's inside this conversion. If we decide to strip it,
8180 op
= TREE_OPERAND (op
, 0);
8182 /* If we have not stripped any zero-extensions (uns is 0),
8183 we can strip any kind of extension.
8184 If we have previously stripped a zero-extension,
8185 only zero-extensions can safely be stripped.
8186 Any extension can be stripped if the bits it would produce
8187 are all going to be discarded later by truncating to FOR_TYPE. */
8191 if (! uns
|| final_prec
<= TYPE_PRECISION (TREE_TYPE (op
)))
8193 /* TYPE_UNSIGNED says whether this is a zero-extension.
8194 Let's avoid computing it if it does not affect WIN
8195 and if UNS will not be needed again. */
8197 || CONVERT_EXPR_P (op
))
8198 && TYPE_UNSIGNED (TREE_TYPE (op
)))
8206 /* If we finally reach a constant see if it fits in for_type and
8207 in that case convert it. */
8209 && TREE_CODE (win
) == INTEGER_CST
8210 && TREE_TYPE (win
) != for_type
8211 && int_fits_type_p (win
, for_type
))
8212 win
= fold_convert (for_type
, win
);
8217 /* Return OP or a simpler expression for a narrower value
8218 which can be sign-extended or zero-extended to give back OP.
8219 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8220 or 0 if the value should be sign-extended. */
8223 get_narrower (tree op
, int *unsignedp_ptr
)
8228 bool integral_p
= INTEGRAL_TYPE_P (TREE_TYPE (op
));
8230 while (TREE_CODE (op
) == NOP_EXPR
)
8233 = (TYPE_PRECISION (TREE_TYPE (op
))
8234 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0))));
8236 /* Truncations are many-one so cannot be removed. */
8240 /* See what's inside this conversion. If we decide to strip it,
8245 op
= TREE_OPERAND (op
, 0);
8246 /* An extension: the outermost one can be stripped,
8247 but remember whether it is zero or sign extension. */
8249 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8250 /* Otherwise, if a sign extension has been stripped,
8251 only sign extensions can now be stripped;
8252 if a zero extension has been stripped, only zero-extensions. */
8253 else if (uns
!= TYPE_UNSIGNED (TREE_TYPE (op
)))
8257 else /* bitschange == 0 */
8259 /* A change in nominal type can always be stripped, but we must
8260 preserve the unsignedness. */
8262 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8264 op
= TREE_OPERAND (op
, 0);
8265 /* Keep trying to narrow, but don't assign op to win if it
8266 would turn an integral type into something else. */
8267 if (INTEGRAL_TYPE_P (TREE_TYPE (op
)) != integral_p
)
8274 if (TREE_CODE (op
) == COMPONENT_REF
8275 /* Since type_for_size always gives an integer type. */
8276 && TREE_CODE (TREE_TYPE (op
)) != REAL_TYPE
8277 && TREE_CODE (TREE_TYPE (op
)) != FIXED_POINT_TYPE
8278 /* Ensure field is laid out already. */
8279 && DECL_SIZE (TREE_OPERAND (op
, 1)) != 0
8280 && host_integerp (DECL_SIZE (TREE_OPERAND (op
, 1)), 1))
8282 unsigned HOST_WIDE_INT innerprec
8283 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op
, 1)), 1);
8284 int unsignedp
= (DECL_UNSIGNED (TREE_OPERAND (op
, 1))
8285 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op
, 1))));
8286 tree type
= lang_hooks
.types
.type_for_size (innerprec
, unsignedp
);
8288 /* We can get this structure field in a narrower type that fits it,
8289 but the resulting extension to its nominal type (a fullword type)
8290 must satisfy the same conditions as for other extensions.
8292 Do this only for fields that are aligned (not bit-fields),
8293 because when bit-field insns will be used there is no
8294 advantage in doing this. */
8296 if (innerprec
< TYPE_PRECISION (TREE_TYPE (op
))
8297 && ! DECL_BIT_FIELD (TREE_OPERAND (op
, 1))
8298 && (first
|| uns
== DECL_UNSIGNED (TREE_OPERAND (op
, 1)))
8302 uns
= DECL_UNSIGNED (TREE_OPERAND (op
, 1));
8303 win
= fold_convert (type
, op
);
8307 *unsignedp_ptr
= uns
;
8311 /* Returns true if integer constant C has a value that is permissible
8312 for type TYPE (an INTEGER_TYPE). */
8315 int_fits_type_p (const_tree c
, const_tree type
)
8317 tree type_low_bound
, type_high_bound
;
8318 bool ok_for_low_bound
, ok_for_high_bound
, unsc
;
8321 dc
= tree_to_double_int (c
);
8322 unsc
= TYPE_UNSIGNED (TREE_TYPE (c
));
8325 type_low_bound
= TYPE_MIN_VALUE (type
);
8326 type_high_bound
= TYPE_MAX_VALUE (type
);
8328 /* If at least one bound of the type is a constant integer, we can check
8329 ourselves and maybe make a decision. If no such decision is possible, but
8330 this type is a subtype, try checking against that. Otherwise, use
8331 double_int_fits_to_tree_p, which checks against the precision.
8333 Compute the status for each possibly constant bound, and return if we see
8334 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8335 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8336 for "constant known to fit". */
8338 /* Check if c >= type_low_bound. */
8339 if (type_low_bound
&& TREE_CODE (type_low_bound
) == INTEGER_CST
)
8341 dd
= tree_to_double_int (type_low_bound
);
8342 if (unsc
!= TYPE_UNSIGNED (TREE_TYPE (type_low_bound
)))
8344 int c_neg
= (!unsc
&& dc
.is_negative ());
8345 int t_neg
= (unsc
&& dd
.is_negative ());
8347 if (c_neg
&& !t_neg
)
8349 if ((c_neg
|| !t_neg
) && dc
.ult (dd
))
8352 else if (dc
.cmp (dd
, unsc
) < 0)
8354 ok_for_low_bound
= true;
8357 ok_for_low_bound
= false;
8359 /* Check if c <= type_high_bound. */
8360 if (type_high_bound
&& TREE_CODE (type_high_bound
) == INTEGER_CST
)
8362 dd
= tree_to_double_int (type_high_bound
);
8363 if (unsc
!= TYPE_UNSIGNED (TREE_TYPE (type_high_bound
)))
8365 int c_neg
= (!unsc
&& dc
.is_negative ());
8366 int t_neg
= (unsc
&& dd
.is_negative ());
8368 if (t_neg
&& !c_neg
)
8370 if ((t_neg
|| !c_neg
) && dc
.ugt (dd
))
8373 else if (dc
.cmp (dd
, unsc
) > 0)
8375 ok_for_high_bound
= true;
8378 ok_for_high_bound
= false;
8380 /* If the constant fits both bounds, the result is known. */
8381 if (ok_for_low_bound
&& ok_for_high_bound
)
8384 /* Perform some generic filtering which may allow making a decision
8385 even if the bounds are not constant. First, negative integers
8386 never fit in unsigned types, */
8387 if (TYPE_UNSIGNED (type
) && !unsc
&& dc
.is_negative ())
8390 /* Second, narrower types always fit in wider ones. */
8391 if (TYPE_PRECISION (type
) > TYPE_PRECISION (TREE_TYPE (c
)))
8394 /* Third, unsigned integers with top bit set never fit signed types. */
8395 if (! TYPE_UNSIGNED (type
) && unsc
)
8397 int prec
= GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (c
))) - 1;
8398 if (prec
< HOST_BITS_PER_WIDE_INT
)
8400 if (((((unsigned HOST_WIDE_INT
) 1) << prec
) & dc
.low
) != 0)
8403 else if (((((unsigned HOST_WIDE_INT
) 1)
8404 << (prec
- HOST_BITS_PER_WIDE_INT
)) & dc
.high
) != 0)
8408 /* If we haven't been able to decide at this point, there nothing more we
8409 can check ourselves here. Look at the base type if we have one and it
8410 has the same precision. */
8411 if (TREE_CODE (type
) == INTEGER_TYPE
8412 && TREE_TYPE (type
) != 0
8413 && TYPE_PRECISION (type
) == TYPE_PRECISION (TREE_TYPE (type
)))
8415 type
= TREE_TYPE (type
);
8419 /* Or to double_int_fits_to_tree_p, if nothing else. */
8420 return double_int_fits_to_tree_p (type
, dc
);
8423 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8424 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8425 represented (assuming two's-complement arithmetic) within the bit
8426 precision of the type are returned instead. */
8429 get_type_static_bounds (const_tree type
, mpz_t min
, mpz_t max
)
8431 if (!POINTER_TYPE_P (type
) && TYPE_MIN_VALUE (type
)
8432 && TREE_CODE (TYPE_MIN_VALUE (type
)) == INTEGER_CST
)
8433 mpz_set_double_int (min
, tree_to_double_int (TYPE_MIN_VALUE (type
)),
8434 TYPE_UNSIGNED (type
));
8437 if (TYPE_UNSIGNED (type
))
8438 mpz_set_ui (min
, 0);
8442 mn
= double_int::mask (TYPE_PRECISION (type
) - 1);
8443 mn
= (mn
+ double_int_one
).sext (TYPE_PRECISION (type
));
8444 mpz_set_double_int (min
, mn
, false);
8448 if (!POINTER_TYPE_P (type
) && TYPE_MAX_VALUE (type
)
8449 && TREE_CODE (TYPE_MAX_VALUE (type
)) == INTEGER_CST
)
8450 mpz_set_double_int (max
, tree_to_double_int (TYPE_MAX_VALUE (type
)),
8451 TYPE_UNSIGNED (type
));
8454 if (TYPE_UNSIGNED (type
))
8455 mpz_set_double_int (max
, double_int::mask (TYPE_PRECISION (type
)),
8458 mpz_set_double_int (max
, double_int::mask (TYPE_PRECISION (type
) - 1),
8463 /* Return true if VAR is an automatic variable defined in function FN. */
8466 auto_var_in_fn_p (const_tree var
, const_tree fn
)
8468 return (DECL_P (var
) && DECL_CONTEXT (var
) == fn
8469 && ((((TREE_CODE (var
) == VAR_DECL
&& ! DECL_EXTERNAL (var
))
8470 || TREE_CODE (var
) == PARM_DECL
)
8471 && ! TREE_STATIC (var
))
8472 || TREE_CODE (var
) == LABEL_DECL
8473 || TREE_CODE (var
) == RESULT_DECL
));
8476 /* Subprogram of following function. Called by walk_tree.
8478 Return *TP if it is an automatic variable or parameter of the
8479 function passed in as DATA. */
8482 find_var_from_fn (tree
*tp
, int *walk_subtrees
, void *data
)
8484 tree fn
= (tree
) data
;
8489 else if (DECL_P (*tp
)
8490 && auto_var_in_fn_p (*tp
, fn
))
8496 /* Returns true if T is, contains, or refers to a type with variable
8497 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8498 arguments, but not the return type. If FN is nonzero, only return
8499 true if a modifier of the type or position of FN is a variable or
8500 parameter inside FN.
8502 This concept is more general than that of C99 'variably modified types':
8503 in C99, a struct type is never variably modified because a VLA may not
8504 appear as a structure member. However, in GNU C code like:
8506 struct S { int i[f()]; };
8508 is valid, and other languages may define similar constructs. */
8511 variably_modified_type_p (tree type
, tree fn
)
8515 /* Test if T is either variable (if FN is zero) or an expression containing
8516 a variable in FN. If TYPE isn't gimplified, return true also if
8517 gimplify_one_sizepos would gimplify the expression into a local
8519 #define RETURN_TRUE_IF_VAR(T) \
8520 do { tree _t = (T); \
8521 if (_t != NULL_TREE \
8522 && _t != error_mark_node \
8523 && TREE_CODE (_t) != INTEGER_CST \
8524 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8526 || (!TYPE_SIZES_GIMPLIFIED (type) \
8527 && !is_gimple_sizepos (_t)) \
8528 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8529 return true; } while (0)
8531 if (type
== error_mark_node
)
8534 /* If TYPE itself has variable size, it is variably modified. */
8535 RETURN_TRUE_IF_VAR (TYPE_SIZE (type
));
8536 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type
));
8538 switch (TREE_CODE (type
))
8541 case REFERENCE_TYPE
:
8543 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8549 /* If TYPE is a function type, it is variably modified if the
8550 return type is variably modified. */
8551 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8557 case FIXED_POINT_TYPE
:
8560 /* Scalar types are variably modified if their end points
8562 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type
));
8563 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type
));
8568 case QUAL_UNION_TYPE
:
8569 /* We can't see if any of the fields are variably-modified by the
8570 definition we normally use, since that would produce infinite
8571 recursion via pointers. */
8572 /* This is variably modified if some field's type is. */
8573 for (t
= TYPE_FIELDS (type
); t
; t
= DECL_CHAIN (t
))
8574 if (TREE_CODE (t
) == FIELD_DECL
)
8576 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t
));
8577 RETURN_TRUE_IF_VAR (DECL_SIZE (t
));
8578 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t
));
8580 if (TREE_CODE (type
) == QUAL_UNION_TYPE
)
8581 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t
));
8586 /* Do not call ourselves to avoid infinite recursion. This is
8587 variably modified if the element type is. */
8588 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type
)));
8589 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type
)));
8596 /* The current language may have other cases to check, but in general,
8597 all other types are not variably modified. */
8598 return lang_hooks
.tree_inlining
.var_mod_type_p (type
, fn
);
8600 #undef RETURN_TRUE_IF_VAR
8603 /* Given a DECL or TYPE, return the scope in which it was declared, or
8604 NULL_TREE if there is no containing scope. */
8607 get_containing_scope (const_tree t
)
8609 return (TYPE_P (t
) ? TYPE_CONTEXT (t
) : DECL_CONTEXT (t
));
8612 /* Return the innermost context enclosing DECL that is
8613 a FUNCTION_DECL, or zero if none. */
8616 decl_function_context (const_tree decl
)
8620 if (TREE_CODE (decl
) == ERROR_MARK
)
8623 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8624 where we look up the function at runtime. Such functions always take
8625 a first argument of type 'pointer to real context'.
8627 C++ should really be fixed to use DECL_CONTEXT for the real context,
8628 and use something else for the "virtual context". */
8629 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_VINDEX (decl
))
8632 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
8634 context
= DECL_CONTEXT (decl
);
8636 while (context
&& TREE_CODE (context
) != FUNCTION_DECL
)
8638 if (TREE_CODE (context
) == BLOCK
)
8639 context
= BLOCK_SUPERCONTEXT (context
);
8641 context
= get_containing_scope (context
);
8647 /* Return the innermost context enclosing DECL that is
8648 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8649 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8652 decl_type_context (const_tree decl
)
8654 tree context
= DECL_CONTEXT (decl
);
8657 switch (TREE_CODE (context
))
8659 case NAMESPACE_DECL
:
8660 case TRANSLATION_UNIT_DECL
:
8665 case QUAL_UNION_TYPE
:
8670 context
= DECL_CONTEXT (context
);
8674 context
= BLOCK_SUPERCONTEXT (context
);
8684 /* CALL is a CALL_EXPR. Return the declaration for the function
8685 called, or NULL_TREE if the called function cannot be
8689 get_callee_fndecl (const_tree call
)
8693 if (call
== error_mark_node
)
8694 return error_mark_node
;
8696 /* It's invalid to call this function with anything but a
8698 gcc_assert (TREE_CODE (call
) == CALL_EXPR
);
8700 /* The first operand to the CALL is the address of the function
8702 addr
= CALL_EXPR_FN (call
);
8706 /* If this is a readonly function pointer, extract its initial value. */
8707 if (DECL_P (addr
) && TREE_CODE (addr
) != FUNCTION_DECL
8708 && TREE_READONLY (addr
) && ! TREE_THIS_VOLATILE (addr
)
8709 && DECL_INITIAL (addr
))
8710 addr
= DECL_INITIAL (addr
);
8712 /* If the address is just `&f' for some function `f', then we know
8713 that `f' is being called. */
8714 if (TREE_CODE (addr
) == ADDR_EXPR
8715 && TREE_CODE (TREE_OPERAND (addr
, 0)) == FUNCTION_DECL
)
8716 return TREE_OPERAND (addr
, 0);
8718 /* We couldn't figure out what was being called. */
8722 /* Print debugging information about tree nodes generated during the compile,
8723 and any language-specific information. */
8726 dump_tree_statistics (void)
8728 if (GATHER_STATISTICS
)
8731 int total_nodes
, total_bytes
;
8732 fprintf (stderr
, "Kind Nodes Bytes\n");
8733 fprintf (stderr
, "---------------------------------------\n");
8734 total_nodes
= total_bytes
= 0;
8735 for (i
= 0; i
< (int) all_kinds
; i
++)
8737 fprintf (stderr
, "%-20s %7d %10d\n", tree_node_kind_names
[i
],
8738 tree_node_counts
[i
], tree_node_sizes
[i
]);
8739 total_nodes
+= tree_node_counts
[i
];
8740 total_bytes
+= tree_node_sizes
[i
];
8742 fprintf (stderr
, "---------------------------------------\n");
8743 fprintf (stderr
, "%-20s %7d %10d\n", "Total", total_nodes
, total_bytes
);
8744 fprintf (stderr
, "---------------------------------------\n");
8745 fprintf (stderr
, "Code Nodes\n");
8746 fprintf (stderr
, "----------------------------\n");
8747 for (i
= 0; i
< (int) MAX_TREE_CODES
; i
++)
8748 fprintf (stderr
, "%-20s %7d\n", tree_code_name
[i
], tree_code_counts
[i
]);
8749 fprintf (stderr
, "----------------------------\n");
8750 ssanames_print_statistics ();
8751 phinodes_print_statistics ();
8754 fprintf (stderr
, "(No per-node statistics)\n");
8756 print_type_hash_statistics ();
8757 print_debug_expr_statistics ();
8758 print_value_expr_statistics ();
8759 lang_hooks
.print_statistics ();
8762 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
8764 /* Generate a crc32 of a byte. */
8767 crc32_unsigned_bits (unsigned chksum
, unsigned value
, unsigned bits
)
8771 for (ix
= bits
; ix
--; value
<<= 1)
8775 feedback
= (value
^ chksum
) & 0x80000000 ? 0x04c11db7 : 0;
8782 /* Generate a crc32 of a 32-bit unsigned. */
8785 crc32_unsigned (unsigned chksum
, unsigned value
)
8787 return crc32_unsigned_bits (chksum
, value
, 32);
8790 /* Generate a crc32 of a byte. */
8793 crc32_byte (unsigned chksum
, char byte
)
8795 return crc32_unsigned_bits (chksum
, (unsigned) byte
<< 24, 8);
8798 /* Generate a crc32 of a string. */
8801 crc32_string (unsigned chksum
, const char *string
)
8805 chksum
= crc32_byte (chksum
, *string
);
8811 /* P is a string that will be used in a symbol. Mask out any characters
8812 that are not valid in that context. */
8815 clean_symbol_name (char *p
)
8819 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
8822 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
8829 /* Generate a name for a special-purpose function.
8830 The generated name may need to be unique across the whole link.
8831 Changes to this function may also require corresponding changes to
8832 xstrdup_mask_random.
8833 TYPE is some string to identify the purpose of this function to the
8834 linker or collect2; it must start with an uppercase letter,
8836 I - for constructors
8838 N - for C++ anonymous namespaces
8839 F - for DWARF unwind frame information. */
8842 get_file_function_name (const char *type
)
8848 /* If we already have a name we know to be unique, just use that. */
8849 if (first_global_object_name
)
8850 p
= q
= ASTRDUP (first_global_object_name
);
8851 /* If the target is handling the constructors/destructors, they
8852 will be local to this file and the name is only necessary for
8854 We also assign sub_I and sub_D sufixes to constructors called from
8855 the global static constructors. These are always local. */
8856 else if (((type
[0] == 'I' || type
[0] == 'D') && targetm
.have_ctors_dtors
)
8857 || (strncmp (type
, "sub_", 4) == 0
8858 && (type
[4] == 'I' || type
[4] == 'D')))
8860 const char *file
= main_input_filename
;
8862 file
= input_filename
;
8863 /* Just use the file's basename, because the full pathname
8864 might be quite long. */
8865 p
= q
= ASTRDUP (lbasename (file
));
8869 /* Otherwise, the name must be unique across the entire link.
8870 We don't have anything that we know to be unique to this translation
8871 unit, so use what we do have and throw in some randomness. */
8873 const char *name
= weak_global_object_name
;
8874 const char *file
= main_input_filename
;
8879 file
= input_filename
;
8881 len
= strlen (file
);
8882 q
= (char *) alloca (9 + 17 + len
+ 1);
8883 memcpy (q
, file
, len
+ 1);
8885 snprintf (q
+ len
, 9 + 17 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX
,
8886 crc32_string (0, name
), get_random_seed (false));
8891 clean_symbol_name (q
);
8892 buf
= (char *) alloca (sizeof (FILE_FUNCTION_FORMAT
) + strlen (p
)
8895 /* Set up the name of the file-level functions we may need.
8896 Use a global object (which is already required to be unique over
8897 the program) rather than the file name (which imposes extra
8899 sprintf (buf
, FILE_FUNCTION_FORMAT
, type
, p
);
8901 return get_identifier (buf
);
8904 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
8906 /* Complain that the tree code of NODE does not match the expected 0
8907 terminated list of trailing codes. The trailing code list can be
8908 empty, for a more vague error message. FILE, LINE, and FUNCTION
8909 are of the caller. */
8912 tree_check_failed (const_tree node
, const char *file
,
8913 int line
, const char *function
, ...)
8917 unsigned length
= 0;
8920 va_start (args
, function
);
8921 while ((code
= va_arg (args
, int)))
8922 length
+= 4 + strlen (tree_code_name
[code
]);
8927 va_start (args
, function
);
8928 length
+= strlen ("expected ");
8929 buffer
= tmp
= (char *) alloca (length
);
8931 while ((code
= va_arg (args
, int)))
8933 const char *prefix
= length
? " or " : "expected ";
8935 strcpy (tmp
+ length
, prefix
);
8936 length
+= strlen (prefix
);
8937 strcpy (tmp
+ length
, tree_code_name
[code
]);
8938 length
+= strlen (tree_code_name
[code
]);
8943 buffer
= "unexpected node";
8945 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8946 buffer
, tree_code_name
[TREE_CODE (node
)],
8947 function
, trim_filename (file
), line
);
8950 /* Complain that the tree code of NODE does match the expected 0
8951 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
8955 tree_not_check_failed (const_tree node
, const char *file
,
8956 int line
, const char *function
, ...)
8960 unsigned length
= 0;
8963 va_start (args
, function
);
8964 while ((code
= va_arg (args
, int)))
8965 length
+= 4 + strlen (tree_code_name
[code
]);
8967 va_start (args
, function
);
8968 buffer
= (char *) alloca (length
);
8970 while ((code
= va_arg (args
, int)))
8974 strcpy (buffer
+ length
, " or ");
8977 strcpy (buffer
+ length
, tree_code_name
[code
]);
8978 length
+= strlen (tree_code_name
[code
]);
8982 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
8983 buffer
, tree_code_name
[TREE_CODE (node
)],
8984 function
, trim_filename (file
), line
);
8987 /* Similar to tree_check_failed, except that we check for a class of tree
8988 code, given in CL. */
8991 tree_class_check_failed (const_tree node
, const enum tree_code_class cl
,
8992 const char *file
, int line
, const char *function
)
8995 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
8996 TREE_CODE_CLASS_STRING (cl
),
8997 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
8998 tree_code_name
[TREE_CODE (node
)], function
, trim_filename (file
), line
);
9001 /* Similar to tree_check_failed, except that instead of specifying a
9002 dozen codes, use the knowledge that they're all sequential. */
9005 tree_range_check_failed (const_tree node
, const char *file
, int line
,
9006 const char *function
, enum tree_code c1
,
9010 unsigned length
= 0;
9013 for (c
= c1
; c
<= c2
; ++c
)
9014 length
+= 4 + strlen (tree_code_name
[c
]);
9016 length
+= strlen ("expected ");
9017 buffer
= (char *) alloca (length
);
9020 for (c
= c1
; c
<= c2
; ++c
)
9022 const char *prefix
= length
? " or " : "expected ";
9024 strcpy (buffer
+ length
, prefix
);
9025 length
+= strlen (prefix
);
9026 strcpy (buffer
+ length
, tree_code_name
[c
]);
9027 length
+= strlen (tree_code_name
[c
]);
9030 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9031 buffer
, tree_code_name
[TREE_CODE (node
)],
9032 function
, trim_filename (file
), line
);
9036 /* Similar to tree_check_failed, except that we check that a tree does
9037 not have the specified code, given in CL. */
9040 tree_not_class_check_failed (const_tree node
, const enum tree_code_class cl
,
9041 const char *file
, int line
, const char *function
)
9044 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9045 TREE_CODE_CLASS_STRING (cl
),
9046 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9047 tree_code_name
[TREE_CODE (node
)], function
, trim_filename (file
), line
);
9051 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9054 omp_clause_check_failed (const_tree node
, const char *file
, int line
,
9055 const char *function
, enum omp_clause_code code
)
9057 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9058 omp_clause_code_name
[code
], tree_code_name
[TREE_CODE (node
)],
9059 function
, trim_filename (file
), line
);
9063 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9066 omp_clause_range_check_failed (const_tree node
, const char *file
, int line
,
9067 const char *function
, enum omp_clause_code c1
,
9068 enum omp_clause_code c2
)
9071 unsigned length
= 0;
9074 for (c
= c1
; c
<= c2
; ++c
)
9075 length
+= 4 + strlen (omp_clause_code_name
[c
]);
9077 length
+= strlen ("expected ");
9078 buffer
= (char *) alloca (length
);
9081 for (c
= c1
; c
<= c2
; ++c
)
9083 const char *prefix
= length
? " or " : "expected ";
9085 strcpy (buffer
+ length
, prefix
);
9086 length
+= strlen (prefix
);
9087 strcpy (buffer
+ length
, omp_clause_code_name
[c
]);
9088 length
+= strlen (omp_clause_code_name
[c
]);
9091 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9092 buffer
, omp_clause_code_name
[TREE_CODE (node
)],
9093 function
, trim_filename (file
), line
);
9097 #undef DEFTREESTRUCT
9098 #define DEFTREESTRUCT(VAL, NAME) NAME,
9100 static const char *ts_enum_names
[] = {
9101 #include "treestruct.def"
9103 #undef DEFTREESTRUCT
9105 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9107 /* Similar to tree_class_check_failed, except that we check for
9108 whether CODE contains the tree structure identified by EN. */
9111 tree_contains_struct_check_failed (const_tree node
,
9112 const enum tree_node_structure_enum en
,
9113 const char *file
, int line
,
9114 const char *function
)
9117 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9119 tree_code_name
[TREE_CODE (node
)], function
, trim_filename (file
), line
);
9123 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9124 (dynamically sized) vector. */
9127 tree_vec_elt_check_failed (int idx
, int len
, const char *file
, int line
,
9128 const char *function
)
9131 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9132 idx
+ 1, len
, function
, trim_filename (file
), line
);
9135 /* Similar to above, except that the check is for the bounds of the operand
9136 vector of an expression node EXP. */
9139 tree_operand_check_failed (int idx
, const_tree exp
, const char *file
,
9140 int line
, const char *function
)
9142 int code
= TREE_CODE (exp
);
9144 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9145 idx
+ 1, tree_code_name
[code
], TREE_OPERAND_LENGTH (exp
),
9146 function
, trim_filename (file
), line
);
9149 /* Similar to above, except that the check is for the number of
9150 operands of an OMP_CLAUSE node. */
9153 omp_clause_operand_check_failed (int idx
, const_tree t
, const char *file
,
9154 int line
, const char *function
)
9157 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9158 "in %s, at %s:%d", idx
+ 1, omp_clause_code_name
[OMP_CLAUSE_CODE (t
)],
9159 omp_clause_num_ops
[OMP_CLAUSE_CODE (t
)], function
,
9160 trim_filename (file
), line
);
9162 #endif /* ENABLE_TREE_CHECKING */
9164 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9165 and mapped to the machine mode MODE. Initialize its fields and build
9166 the information necessary for debugging output. */
9169 make_vector_type (tree innertype
, int nunits
, enum machine_mode mode
)
9172 hashval_t hashcode
= 0;
9174 t
= make_node (VECTOR_TYPE
);
9175 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (innertype
);
9176 SET_TYPE_VECTOR_SUBPARTS (t
, nunits
);
9177 SET_TYPE_MODE (t
, mode
);
9179 if (TYPE_STRUCTURAL_EQUALITY_P (innertype
))
9180 SET_TYPE_STRUCTURAL_EQUALITY (t
);
9181 else if (TYPE_CANONICAL (innertype
) != innertype
9182 || mode
!= VOIDmode
)
9184 = make_vector_type (TYPE_CANONICAL (innertype
), nunits
, VOIDmode
);
9188 hashcode
= iterative_hash_host_wide_int (VECTOR_TYPE
, hashcode
);
9189 hashcode
= iterative_hash_host_wide_int (nunits
, hashcode
);
9190 hashcode
= iterative_hash_host_wide_int (mode
, hashcode
);
9191 hashcode
= iterative_hash_object (TYPE_HASH (TREE_TYPE (t
)), hashcode
);
9192 t
= type_hash_canon (hashcode
, t
);
9194 /* We have built a main variant, based on the main variant of the
9195 inner type. Use it to build the variant we return. */
9196 if ((TYPE_ATTRIBUTES (innertype
) || TYPE_QUALS (innertype
))
9197 && TREE_TYPE (t
) != innertype
)
9198 return build_type_attribute_qual_variant (t
,
9199 TYPE_ATTRIBUTES (innertype
),
9200 TYPE_QUALS (innertype
));
9206 make_or_reuse_type (unsigned size
, int unsignedp
)
9208 if (size
== INT_TYPE_SIZE
)
9209 return unsignedp
? unsigned_type_node
: integer_type_node
;
9210 if (size
== CHAR_TYPE_SIZE
)
9211 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
9212 if (size
== SHORT_TYPE_SIZE
)
9213 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
9214 if (size
== LONG_TYPE_SIZE
)
9215 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
9216 if (size
== LONG_LONG_TYPE_SIZE
)
9217 return (unsignedp
? long_long_unsigned_type_node
9218 : long_long_integer_type_node
);
9219 if (size
== 128 && int128_integer_type_node
)
9220 return (unsignedp
? int128_unsigned_type_node
9221 : int128_integer_type_node
);
9224 return make_unsigned_type (size
);
9226 return make_signed_type (size
);
9229 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9232 make_or_reuse_fract_type (unsigned size
, int unsignedp
, int satp
)
9236 if (size
== SHORT_FRACT_TYPE_SIZE
)
9237 return unsignedp
? sat_unsigned_short_fract_type_node
9238 : sat_short_fract_type_node
;
9239 if (size
== FRACT_TYPE_SIZE
)
9240 return unsignedp
? sat_unsigned_fract_type_node
: sat_fract_type_node
;
9241 if (size
== LONG_FRACT_TYPE_SIZE
)
9242 return unsignedp
? sat_unsigned_long_fract_type_node
9243 : sat_long_fract_type_node
;
9244 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9245 return unsignedp
? sat_unsigned_long_long_fract_type_node
9246 : sat_long_long_fract_type_node
;
9250 if (size
== SHORT_FRACT_TYPE_SIZE
)
9251 return unsignedp
? unsigned_short_fract_type_node
9252 : short_fract_type_node
;
9253 if (size
== FRACT_TYPE_SIZE
)
9254 return unsignedp
? unsigned_fract_type_node
: fract_type_node
;
9255 if (size
== LONG_FRACT_TYPE_SIZE
)
9256 return unsignedp
? unsigned_long_fract_type_node
9257 : long_fract_type_node
;
9258 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9259 return unsignedp
? unsigned_long_long_fract_type_node
9260 : long_long_fract_type_node
;
9263 return make_fract_type (size
, unsignedp
, satp
);
9266 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9269 make_or_reuse_accum_type (unsigned size
, int unsignedp
, int satp
)
9273 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9274 return unsignedp
? sat_unsigned_short_accum_type_node
9275 : sat_short_accum_type_node
;
9276 if (size
== ACCUM_TYPE_SIZE
)
9277 return unsignedp
? sat_unsigned_accum_type_node
: sat_accum_type_node
;
9278 if (size
== LONG_ACCUM_TYPE_SIZE
)
9279 return unsignedp
? sat_unsigned_long_accum_type_node
9280 : sat_long_accum_type_node
;
9281 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9282 return unsignedp
? sat_unsigned_long_long_accum_type_node
9283 : sat_long_long_accum_type_node
;
9287 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9288 return unsignedp
? unsigned_short_accum_type_node
9289 : short_accum_type_node
;
9290 if (size
== ACCUM_TYPE_SIZE
)
9291 return unsignedp
? unsigned_accum_type_node
: accum_type_node
;
9292 if (size
== LONG_ACCUM_TYPE_SIZE
)
9293 return unsignedp
? unsigned_long_accum_type_node
9294 : long_accum_type_node
;
9295 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9296 return unsignedp
? unsigned_long_long_accum_type_node
9297 : long_long_accum_type_node
;
9300 return make_accum_type (size
, unsignedp
, satp
);
9303 /* Create nodes for all integer types (and error_mark_node) using the sizes
9304 of C datatypes. SIGNED_CHAR specifies whether char is signed,
9305 SHORT_DOUBLE specifies whether double should be of the same precision
9309 build_common_tree_nodes (bool signed_char
, bool short_double
)
9311 error_mark_node
= make_node (ERROR_MARK
);
9312 TREE_TYPE (error_mark_node
) = error_mark_node
;
9314 initialize_sizetypes ();
9316 /* Define both `signed char' and `unsigned char'. */
9317 signed_char_type_node
= make_signed_type (CHAR_TYPE_SIZE
);
9318 TYPE_STRING_FLAG (signed_char_type_node
) = 1;
9319 unsigned_char_type_node
= make_unsigned_type (CHAR_TYPE_SIZE
);
9320 TYPE_STRING_FLAG (unsigned_char_type_node
) = 1;
9322 /* Define `char', which is like either `signed char' or `unsigned char'
9323 but not the same as either. */
9326 ? make_signed_type (CHAR_TYPE_SIZE
)
9327 : make_unsigned_type (CHAR_TYPE_SIZE
));
9328 TYPE_STRING_FLAG (char_type_node
) = 1;
9330 short_integer_type_node
= make_signed_type (SHORT_TYPE_SIZE
);
9331 short_unsigned_type_node
= make_unsigned_type (SHORT_TYPE_SIZE
);
9332 integer_type_node
= make_signed_type (INT_TYPE_SIZE
);
9333 unsigned_type_node
= make_unsigned_type (INT_TYPE_SIZE
);
9334 long_integer_type_node
= make_signed_type (LONG_TYPE_SIZE
);
9335 long_unsigned_type_node
= make_unsigned_type (LONG_TYPE_SIZE
);
9336 long_long_integer_type_node
= make_signed_type (LONG_LONG_TYPE_SIZE
);
9337 long_long_unsigned_type_node
= make_unsigned_type (LONG_LONG_TYPE_SIZE
);
9338 #if HOST_BITS_PER_WIDE_INT >= 64
9339 /* TODO: This isn't correct, but as logic depends at the moment on
9340 host's instead of target's wide-integer.
9341 If there is a target not supporting TImode, but has an 128-bit
9342 integer-scalar register, this target check needs to be adjusted. */
9343 if (targetm
.scalar_mode_supported_p (TImode
))
9345 int128_integer_type_node
= make_signed_type (128);
9346 int128_unsigned_type_node
= make_unsigned_type (128);
9350 /* Define a boolean type. This type only represents boolean values but
9351 may be larger than char depending on the value of BOOL_TYPE_SIZE.
9352 Front ends which want to override this size (i.e. Java) can redefine
9353 boolean_type_node before calling build_common_tree_nodes_2. */
9354 boolean_type_node
= make_unsigned_type (BOOL_TYPE_SIZE
);
9355 TREE_SET_CODE (boolean_type_node
, BOOLEAN_TYPE
);
9356 TYPE_MAX_VALUE (boolean_type_node
) = build_int_cst (boolean_type_node
, 1);
9357 TYPE_PRECISION (boolean_type_node
) = 1;
9359 /* Define what type to use for size_t. */
9360 if (strcmp (SIZE_TYPE
, "unsigned int") == 0)
9361 size_type_node
= unsigned_type_node
;
9362 else if (strcmp (SIZE_TYPE
, "long unsigned int") == 0)
9363 size_type_node
= long_unsigned_type_node
;
9364 else if (strcmp (SIZE_TYPE
, "long long unsigned int") == 0)
9365 size_type_node
= long_long_unsigned_type_node
;
9366 else if (strcmp (SIZE_TYPE
, "short unsigned int") == 0)
9367 size_type_node
= short_unsigned_type_node
;
9371 /* Fill in the rest of the sized types. Reuse existing type nodes
9373 intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 0);
9374 intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 0);
9375 intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 0);
9376 intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 0);
9377 intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 0);
9379 unsigned_intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 1);
9380 unsigned_intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 1);
9381 unsigned_intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 1);
9382 unsigned_intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 1);
9383 unsigned_intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 1);
9385 access_public_node
= get_identifier ("public");
9386 access_protected_node
= get_identifier ("protected");
9387 access_private_node
= get_identifier ("private");
9389 /* Define these next since types below may used them. */
9390 integer_zero_node
= build_int_cst (integer_type_node
, 0);
9391 integer_one_node
= build_int_cst (integer_type_node
, 1);
9392 integer_three_node
= build_int_cst (integer_type_node
, 3);
9393 integer_minus_one_node
= build_int_cst (integer_type_node
, -1);
9395 size_zero_node
= size_int (0);
9396 size_one_node
= size_int (1);
9397 bitsize_zero_node
= bitsize_int (0);
9398 bitsize_one_node
= bitsize_int (1);
9399 bitsize_unit_node
= bitsize_int (BITS_PER_UNIT
);
9401 boolean_false_node
= TYPE_MIN_VALUE (boolean_type_node
);
9402 boolean_true_node
= TYPE_MAX_VALUE (boolean_type_node
);
9404 void_type_node
= make_node (VOID_TYPE
);
9405 layout_type (void_type_node
);
9407 /* We are not going to have real types in C with less than byte alignment,
9408 so we might as well not have any types that claim to have it. */
9409 TYPE_ALIGN (void_type_node
) = BITS_PER_UNIT
;
9410 TYPE_USER_ALIGN (void_type_node
) = 0;
9412 null_pointer_node
= build_int_cst (build_pointer_type (void_type_node
), 0);
9413 layout_type (TREE_TYPE (null_pointer_node
));
9415 ptr_type_node
= build_pointer_type (void_type_node
);
9417 = build_pointer_type (build_type_variant (void_type_node
, 1, 0));
9418 fileptr_type_node
= ptr_type_node
;
9420 float_type_node
= make_node (REAL_TYPE
);
9421 TYPE_PRECISION (float_type_node
) = FLOAT_TYPE_SIZE
;
9422 layout_type (float_type_node
);
9424 double_type_node
= make_node (REAL_TYPE
);
9426 TYPE_PRECISION (double_type_node
) = FLOAT_TYPE_SIZE
;
9428 TYPE_PRECISION (double_type_node
) = DOUBLE_TYPE_SIZE
;
9429 layout_type (double_type_node
);
9431 long_double_type_node
= make_node (REAL_TYPE
);
9432 TYPE_PRECISION (long_double_type_node
) = LONG_DOUBLE_TYPE_SIZE
;
9433 layout_type (long_double_type_node
);
9435 float_ptr_type_node
= build_pointer_type (float_type_node
);
9436 double_ptr_type_node
= build_pointer_type (double_type_node
);
9437 long_double_ptr_type_node
= build_pointer_type (long_double_type_node
);
9438 integer_ptr_type_node
= build_pointer_type (integer_type_node
);
9440 /* Fixed size integer types. */
9441 uint16_type_node
= build_nonstandard_integer_type (16, true);
9442 uint32_type_node
= build_nonstandard_integer_type (32, true);
9443 uint64_type_node
= build_nonstandard_integer_type (64, true);
9445 /* Decimal float types. */
9446 dfloat32_type_node
= make_node (REAL_TYPE
);
9447 TYPE_PRECISION (dfloat32_type_node
) = DECIMAL32_TYPE_SIZE
;
9448 layout_type (dfloat32_type_node
);
9449 SET_TYPE_MODE (dfloat32_type_node
, SDmode
);
9450 dfloat32_ptr_type_node
= build_pointer_type (dfloat32_type_node
);
9452 dfloat64_type_node
= make_node (REAL_TYPE
);
9453 TYPE_PRECISION (dfloat64_type_node
) = DECIMAL64_TYPE_SIZE
;
9454 layout_type (dfloat64_type_node
);
9455 SET_TYPE_MODE (dfloat64_type_node
, DDmode
);
9456 dfloat64_ptr_type_node
= build_pointer_type (dfloat64_type_node
);
9458 dfloat128_type_node
= make_node (REAL_TYPE
);
9459 TYPE_PRECISION (dfloat128_type_node
) = DECIMAL128_TYPE_SIZE
;
9460 layout_type (dfloat128_type_node
);
9461 SET_TYPE_MODE (dfloat128_type_node
, TDmode
);
9462 dfloat128_ptr_type_node
= build_pointer_type (dfloat128_type_node
);
9464 complex_integer_type_node
= build_complex_type (integer_type_node
);
9465 complex_float_type_node
= build_complex_type (float_type_node
);
9466 complex_double_type_node
= build_complex_type (double_type_node
);
9467 complex_long_double_type_node
= build_complex_type (long_double_type_node
);
9469 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
9470 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
9471 sat_ ## KIND ## _type_node = \
9472 make_sat_signed_ ## KIND ## _type (SIZE); \
9473 sat_unsigned_ ## KIND ## _type_node = \
9474 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9475 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9476 unsigned_ ## KIND ## _type_node = \
9477 make_unsigned_ ## KIND ## _type (SIZE);
9479 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
9480 sat_ ## WIDTH ## KIND ## _type_node = \
9481 make_sat_signed_ ## KIND ## _type (SIZE); \
9482 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
9483 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9484 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9485 unsigned_ ## WIDTH ## KIND ## _type_node = \
9486 make_unsigned_ ## KIND ## _type (SIZE);
9488 /* Make fixed-point type nodes based on four different widths. */
9489 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
9490 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
9491 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
9492 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
9493 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
9495 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
9496 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
9497 NAME ## _type_node = \
9498 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
9499 u ## NAME ## _type_node = \
9500 make_or_reuse_unsigned_ ## KIND ## _type \
9501 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
9502 sat_ ## NAME ## _type_node = \
9503 make_or_reuse_sat_signed_ ## KIND ## _type \
9504 (GET_MODE_BITSIZE (MODE ## mode)); \
9505 sat_u ## NAME ## _type_node = \
9506 make_or_reuse_sat_unsigned_ ## KIND ## _type \
9507 (GET_MODE_BITSIZE (U ## MODE ## mode));
9509 /* Fixed-point type and mode nodes. */
9510 MAKE_FIXED_TYPE_NODE_FAMILY (fract
, FRACT
)
9511 MAKE_FIXED_TYPE_NODE_FAMILY (accum
, ACCUM
)
9512 MAKE_FIXED_MODE_NODE (fract
, qq
, QQ
)
9513 MAKE_FIXED_MODE_NODE (fract
, hq
, HQ
)
9514 MAKE_FIXED_MODE_NODE (fract
, sq
, SQ
)
9515 MAKE_FIXED_MODE_NODE (fract
, dq
, DQ
)
9516 MAKE_FIXED_MODE_NODE (fract
, tq
, TQ
)
9517 MAKE_FIXED_MODE_NODE (accum
, ha
, HA
)
9518 MAKE_FIXED_MODE_NODE (accum
, sa
, SA
)
9519 MAKE_FIXED_MODE_NODE (accum
, da
, DA
)
9520 MAKE_FIXED_MODE_NODE (accum
, ta
, TA
)
9523 tree t
= targetm
.build_builtin_va_list ();
9525 /* Many back-ends define record types without setting TYPE_NAME.
9526 If we copied the record type here, we'd keep the original
9527 record type without a name. This breaks name mangling. So,
9528 don't copy record types and let c_common_nodes_and_builtins()
9529 declare the type to be __builtin_va_list. */
9530 if (TREE_CODE (t
) != RECORD_TYPE
)
9531 t
= build_variant_type_copy (t
);
9533 va_list_type_node
= t
;
9537 /* Modify DECL for given flags. */
9539 set_call_expr_flags (tree decl
, int flags
)
9541 if (flags
& ECF_NOTHROW
)
9542 TREE_NOTHROW (decl
) = 1;
9543 if (flags
& ECF_CONST
)
9544 TREE_READONLY (decl
) = 1;
9545 if (flags
& ECF_PURE
)
9546 DECL_PURE_P (decl
) = 1;
9547 if (flags
& ECF_LOOPING_CONST_OR_PURE
)
9548 DECL_LOOPING_CONST_OR_PURE_P (decl
) = 1;
9549 if (flags
& ECF_NOVOPS
)
9550 DECL_IS_NOVOPS (decl
) = 1;
9551 if (flags
& ECF_NORETURN
)
9552 TREE_THIS_VOLATILE (decl
) = 1;
9553 if (flags
& ECF_MALLOC
)
9554 DECL_IS_MALLOC (decl
) = 1;
9555 if (flags
& ECF_RETURNS_TWICE
)
9556 DECL_IS_RETURNS_TWICE (decl
) = 1;
9557 if (flags
& ECF_LEAF
)
9558 DECL_ATTRIBUTES (decl
) = tree_cons (get_identifier ("leaf"),
9559 NULL
, DECL_ATTRIBUTES (decl
));
9560 if ((flags
& ECF_TM_PURE
) && flag_tm
)
9561 DECL_ATTRIBUTES (decl
) = tree_cons (get_identifier ("transaction_pure"),
9562 NULL
, DECL_ATTRIBUTES (decl
));
9563 /* Looping const or pure is implied by noreturn.
9564 There is currently no way to declare looping const or looping pure alone. */
9565 gcc_assert (!(flags
& ECF_LOOPING_CONST_OR_PURE
)
9566 || ((flags
& ECF_NORETURN
) && (flags
& (ECF_CONST
| ECF_PURE
))));
9570 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
9573 local_define_builtin (const char *name
, tree type
, enum built_in_function code
,
9574 const char *library_name
, int ecf_flags
)
9578 decl
= add_builtin_function (name
, type
, code
, BUILT_IN_NORMAL
,
9579 library_name
, NULL_TREE
);
9580 set_call_expr_flags (decl
, ecf_flags
);
9582 set_builtin_decl (code
, decl
, true);
9585 /* Call this function after instantiating all builtins that the language
9586 front end cares about. This will build the rest of the builtins that
9587 are relied upon by the tree optimizers and the middle-end. */
9590 build_common_builtin_nodes (void)
9595 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE
))
9597 ftype
= build_function_type (void_type_node
, void_list_node
);
9598 local_define_builtin ("__builtin_unreachable", ftype
, BUILT_IN_UNREACHABLE
,
9599 "__builtin_unreachable",
9600 ECF_NOTHROW
| ECF_LEAF
| ECF_NORETURN
9601 | ECF_CONST
| ECF_LEAF
);
9604 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
)
9605 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
9607 ftype
= build_function_type_list (ptr_type_node
,
9608 ptr_type_node
, const_ptr_type_node
,
9609 size_type_node
, NULL_TREE
);
9611 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
))
9612 local_define_builtin ("__builtin_memcpy", ftype
, BUILT_IN_MEMCPY
,
9613 "memcpy", ECF_NOTHROW
| ECF_LEAF
);
9614 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
9615 local_define_builtin ("__builtin_memmove", ftype
, BUILT_IN_MEMMOVE
,
9616 "memmove", ECF_NOTHROW
| ECF_LEAF
);
9619 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP
))
9621 ftype
= build_function_type_list (integer_type_node
, const_ptr_type_node
,
9622 const_ptr_type_node
, size_type_node
,
9624 local_define_builtin ("__builtin_memcmp", ftype
, BUILT_IN_MEMCMP
,
9625 "memcmp", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
9628 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET
))
9630 ftype
= build_function_type_list (ptr_type_node
,
9631 ptr_type_node
, integer_type_node
,
9632 size_type_node
, NULL_TREE
);
9633 local_define_builtin ("__builtin_memset", ftype
, BUILT_IN_MEMSET
,
9634 "memset", ECF_NOTHROW
| ECF_LEAF
);
9637 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA
))
9639 ftype
= build_function_type_list (ptr_type_node
,
9640 size_type_node
, NULL_TREE
);
9641 local_define_builtin ("__builtin_alloca", ftype
, BUILT_IN_ALLOCA
,
9642 "alloca", ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
9645 ftype
= build_function_type_list (ptr_type_node
, size_type_node
,
9646 size_type_node
, NULL_TREE
);
9647 local_define_builtin ("__builtin_alloca_with_align", ftype
,
9648 BUILT_IN_ALLOCA_WITH_ALIGN
, "alloca",
9649 ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
9651 /* If we're checking the stack, `alloca' can throw. */
9652 if (flag_stack_check
)
9654 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA
)) = 0;
9655 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
)) = 0;
9658 ftype
= build_function_type_list (void_type_node
,
9659 ptr_type_node
, ptr_type_node
,
9660 ptr_type_node
, NULL_TREE
);
9661 local_define_builtin ("__builtin_init_trampoline", ftype
,
9662 BUILT_IN_INIT_TRAMPOLINE
,
9663 "__builtin_init_trampoline", ECF_NOTHROW
| ECF_LEAF
);
9664 local_define_builtin ("__builtin_init_heap_trampoline", ftype
,
9665 BUILT_IN_INIT_HEAP_TRAMPOLINE
,
9666 "__builtin_init_heap_trampoline",
9667 ECF_NOTHROW
| ECF_LEAF
);
9669 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
9670 local_define_builtin ("__builtin_adjust_trampoline", ftype
,
9671 BUILT_IN_ADJUST_TRAMPOLINE
,
9672 "__builtin_adjust_trampoline",
9673 ECF_CONST
| ECF_NOTHROW
);
9675 ftype
= build_function_type_list (void_type_node
,
9676 ptr_type_node
, ptr_type_node
, NULL_TREE
);
9677 local_define_builtin ("__builtin_nonlocal_goto", ftype
,
9678 BUILT_IN_NONLOCAL_GOTO
,
9679 "__builtin_nonlocal_goto",
9680 ECF_NORETURN
| ECF_NOTHROW
);
9682 ftype
= build_function_type_list (void_type_node
,
9683 ptr_type_node
, ptr_type_node
, NULL_TREE
);
9684 local_define_builtin ("__builtin_setjmp_setup", ftype
,
9685 BUILT_IN_SETJMP_SETUP
,
9686 "__builtin_setjmp_setup", ECF_NOTHROW
);
9688 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
9689 local_define_builtin ("__builtin_setjmp_dispatcher", ftype
,
9690 BUILT_IN_SETJMP_DISPATCHER
,
9691 "__builtin_setjmp_dispatcher",
9692 ECF_PURE
| ECF_NOTHROW
);
9694 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9695 local_define_builtin ("__builtin_setjmp_receiver", ftype
,
9696 BUILT_IN_SETJMP_RECEIVER
,
9697 "__builtin_setjmp_receiver", ECF_NOTHROW
);
9699 ftype
= build_function_type_list (ptr_type_node
, NULL_TREE
);
9700 local_define_builtin ("__builtin_stack_save", ftype
, BUILT_IN_STACK_SAVE
,
9701 "__builtin_stack_save", ECF_NOTHROW
| ECF_LEAF
);
9703 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9704 local_define_builtin ("__builtin_stack_restore", ftype
,
9705 BUILT_IN_STACK_RESTORE
,
9706 "__builtin_stack_restore", ECF_NOTHROW
| ECF_LEAF
);
9708 /* If there's a possibility that we might use the ARM EABI, build the
9709 alternate __cxa_end_cleanup node used to resume from C++ and Java. */
9710 if (targetm
.arm_eabi_unwinder
)
9712 ftype
= build_function_type_list (void_type_node
, NULL_TREE
);
9713 local_define_builtin ("__builtin_cxa_end_cleanup", ftype
,
9714 BUILT_IN_CXA_END_CLEANUP
,
9715 "__cxa_end_cleanup", ECF_NORETURN
| ECF_LEAF
);
9718 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9719 local_define_builtin ("__builtin_unwind_resume", ftype
,
9720 BUILT_IN_UNWIND_RESUME
,
9721 ((targetm_common
.except_unwind_info (&global_options
)
9723 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
9726 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS
) == NULL_TREE
)
9728 ftype
= build_function_type_list (ptr_type_node
, integer_type_node
,
9730 local_define_builtin ("__builtin_return_address", ftype
,
9731 BUILT_IN_RETURN_ADDRESS
,
9732 "__builtin_return_address",
9736 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
)
9737 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
9739 ftype
= build_function_type_list (void_type_node
, ptr_type_node
,
9740 ptr_type_node
, NULL_TREE
);
9741 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
))
9742 local_define_builtin ("__cyg_profile_func_enter", ftype
,
9743 BUILT_IN_PROFILE_FUNC_ENTER
,
9744 "__cyg_profile_func_enter", 0);
9745 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
9746 local_define_builtin ("__cyg_profile_func_exit", ftype
,
9747 BUILT_IN_PROFILE_FUNC_EXIT
,
9748 "__cyg_profile_func_exit", 0);
9751 /* The exception object and filter values from the runtime. The argument
9752 must be zero before exception lowering, i.e. from the front end. After
9753 exception lowering, it will be the region number for the exception
9754 landing pad. These functions are PURE instead of CONST to prevent
9755 them from being hoisted past the exception edge that will initialize
9756 its value in the landing pad. */
9757 ftype
= build_function_type_list (ptr_type_node
,
9758 integer_type_node
, NULL_TREE
);
9759 ecf_flags
= ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
;
9760 /* Only use TM_PURE if we we have TM language support. */
9761 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1
))
9762 ecf_flags
|= ECF_TM_PURE
;
9763 local_define_builtin ("__builtin_eh_pointer", ftype
, BUILT_IN_EH_POINTER
,
9764 "__builtin_eh_pointer", ecf_flags
);
9766 tmp
= lang_hooks
.types
.type_for_mode (targetm
.eh_return_filter_mode (), 0);
9767 ftype
= build_function_type_list (tmp
, integer_type_node
, NULL_TREE
);
9768 local_define_builtin ("__builtin_eh_filter", ftype
, BUILT_IN_EH_FILTER
,
9769 "__builtin_eh_filter", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
9771 ftype
= build_function_type_list (void_type_node
,
9772 integer_type_node
, integer_type_node
,
9774 local_define_builtin ("__builtin_eh_copy_values", ftype
,
9775 BUILT_IN_EH_COPY_VALUES
,
9776 "__builtin_eh_copy_values", ECF_NOTHROW
);
9778 /* Complex multiplication and division. These are handled as builtins
9779 rather than optabs because emit_library_call_value doesn't support
9780 complex. Further, we can do slightly better with folding these
9781 beasties if the real and complex parts of the arguments are separate. */
9785 for (mode
= MIN_MODE_COMPLEX_FLOAT
; mode
<= MAX_MODE_COMPLEX_FLOAT
; ++mode
)
9787 char mode_name_buf
[4], *q
;
9789 enum built_in_function mcode
, dcode
;
9790 tree type
, inner_type
;
9791 const char *prefix
= "__";
9793 if (targetm
.libfunc_gnu_prefix
)
9796 type
= lang_hooks
.types
.type_for_mode ((enum machine_mode
) mode
, 0);
9799 inner_type
= TREE_TYPE (type
);
9801 ftype
= build_function_type_list (type
, inner_type
, inner_type
,
9802 inner_type
, inner_type
, NULL_TREE
);
9804 mcode
= ((enum built_in_function
)
9805 (BUILT_IN_COMPLEX_MUL_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
9806 dcode
= ((enum built_in_function
)
9807 (BUILT_IN_COMPLEX_DIV_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
9809 for (p
= GET_MODE_NAME (mode
), q
= mode_name_buf
; *p
; p
++, q
++)
9813 built_in_names
[mcode
] = concat (prefix
, "mul", mode_name_buf
, "3",
9815 local_define_builtin (built_in_names
[mcode
], ftype
, mcode
,
9816 built_in_names
[mcode
],
9817 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
9819 built_in_names
[dcode
] = concat (prefix
, "div", mode_name_buf
, "3",
9821 local_define_builtin (built_in_names
[dcode
], ftype
, dcode
,
9822 built_in_names
[dcode
],
9823 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
9828 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
9831 If we requested a pointer to a vector, build up the pointers that
9832 we stripped off while looking for the inner type. Similarly for
9833 return values from functions.
9835 The argument TYPE is the top of the chain, and BOTTOM is the
9836 new type which we will point to. */
9839 reconstruct_complex_type (tree type
, tree bottom
)
9843 if (TREE_CODE (type
) == POINTER_TYPE
)
9845 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9846 outer
= build_pointer_type_for_mode (inner
, TYPE_MODE (type
),
9847 TYPE_REF_CAN_ALIAS_ALL (type
));
9849 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
9851 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9852 outer
= build_reference_type_for_mode (inner
, TYPE_MODE (type
),
9853 TYPE_REF_CAN_ALIAS_ALL (type
));
9855 else if (TREE_CODE (type
) == ARRAY_TYPE
)
9857 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9858 outer
= build_array_type (inner
, TYPE_DOMAIN (type
));
9860 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
9862 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9863 outer
= build_function_type (inner
, TYPE_ARG_TYPES (type
));
9865 else if (TREE_CODE (type
) == METHOD_TYPE
)
9867 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9868 /* The build_method_type_directly() routine prepends 'this' to argument list,
9869 so we must compensate by getting rid of it. */
9871 = build_method_type_directly
9872 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type
))),
9874 TREE_CHAIN (TYPE_ARG_TYPES (type
)));
9876 else if (TREE_CODE (type
) == OFFSET_TYPE
)
9878 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9879 outer
= build_offset_type (TYPE_OFFSET_BASETYPE (type
), inner
);
9884 return build_type_attribute_qual_variant (outer
, TYPE_ATTRIBUTES (type
),
9888 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
9891 build_vector_type_for_mode (tree innertype
, enum machine_mode mode
)
9895 switch (GET_MODE_CLASS (mode
))
9897 case MODE_VECTOR_INT
:
9898 case MODE_VECTOR_FLOAT
:
9899 case MODE_VECTOR_FRACT
:
9900 case MODE_VECTOR_UFRACT
:
9901 case MODE_VECTOR_ACCUM
:
9902 case MODE_VECTOR_UACCUM
:
9903 nunits
= GET_MODE_NUNITS (mode
);
9907 /* Check that there are no leftover bits. */
9908 gcc_assert (GET_MODE_BITSIZE (mode
)
9909 % TREE_INT_CST_LOW (TYPE_SIZE (innertype
)) == 0);
9911 nunits
= GET_MODE_BITSIZE (mode
)
9912 / TREE_INT_CST_LOW (TYPE_SIZE (innertype
));
9919 return make_vector_type (innertype
, nunits
, mode
);
9922 /* Similarly, but takes the inner type and number of units, which must be
9926 build_vector_type (tree innertype
, int nunits
)
9928 return make_vector_type (innertype
, nunits
, VOIDmode
);
9931 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
9934 build_opaque_vector_type (tree innertype
, int nunits
)
9936 tree t
= make_vector_type (innertype
, nunits
, VOIDmode
);
9938 /* We always build the non-opaque variant before the opaque one,
9939 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
9940 cand
= TYPE_NEXT_VARIANT (t
);
9942 && TYPE_VECTOR_OPAQUE (cand
)
9943 && check_qualified_type (cand
, t
, TYPE_QUALS (t
)))
9945 /* Othewise build a variant type and make sure to queue it after
9946 the non-opaque type. */
9947 cand
= build_distinct_type_copy (t
);
9948 TYPE_VECTOR_OPAQUE (cand
) = true;
9949 TYPE_CANONICAL (cand
) = TYPE_CANONICAL (t
);
9950 TYPE_NEXT_VARIANT (cand
) = TYPE_NEXT_VARIANT (t
);
9951 TYPE_NEXT_VARIANT (t
) = cand
;
9952 TYPE_MAIN_VARIANT (cand
) = TYPE_MAIN_VARIANT (t
);
9957 /* Given an initializer INIT, return TRUE if INIT is zero or some
9958 aggregate of zeros. Otherwise return FALSE. */
9960 initializer_zerop (const_tree init
)
9966 switch (TREE_CODE (init
))
9969 return integer_zerop (init
);
9972 /* ??? Note that this is not correct for C4X float formats. There,
9973 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
9974 negative exponent. */
9975 return real_zerop (init
)
9976 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init
));
9979 return fixed_zerop (init
);
9982 return integer_zerop (init
)
9983 || (real_zerop (init
)
9984 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init
)))
9985 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init
))));
9990 for (i
= 0; i
< VECTOR_CST_NELTS (init
); ++i
)
9991 if (!initializer_zerop (VECTOR_CST_ELT (init
, i
)))
9998 unsigned HOST_WIDE_INT idx
;
10000 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init
), idx
, elt
)
10001 if (!initializer_zerop (elt
))
10010 /* We need to loop through all elements to handle cases like
10011 "\0" and "\0foobar". */
10012 for (i
= 0; i
< TREE_STRING_LENGTH (init
); ++i
)
10013 if (TREE_STRING_POINTER (init
)[i
] != '\0')
10024 /* Build an empty statement at location LOC. */
10027 build_empty_stmt (location_t loc
)
10029 tree t
= build1 (NOP_EXPR
, void_type_node
, size_zero_node
);
10030 SET_EXPR_LOCATION (t
, loc
);
10035 /* Build an OpenMP clause with code CODE. LOC is the location of the
10039 build_omp_clause (location_t loc
, enum omp_clause_code code
)
10044 length
= omp_clause_num_ops
[code
];
10045 size
= (sizeof (struct tree_omp_clause
) + (length
- 1) * sizeof (tree
));
10047 record_node_allocation_statistics (OMP_CLAUSE
, size
);
10049 t
= ggc_alloc_tree_node (size
);
10050 memset (t
, 0, size
);
10051 TREE_SET_CODE (t
, OMP_CLAUSE
);
10052 OMP_CLAUSE_SET_CODE (t
, code
);
10053 OMP_CLAUSE_LOCATION (t
) = loc
;
10058 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10059 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10060 Except for the CODE and operand count field, other storage for the
10061 object is initialized to zeros. */
10064 build_vl_exp_stat (enum tree_code code
, int len MEM_STAT_DECL
)
10067 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_exp
);
10069 gcc_assert (TREE_CODE_CLASS (code
) == tcc_vl_exp
);
10070 gcc_assert (len
>= 1);
10072 record_node_allocation_statistics (code
, length
);
10074 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
10076 TREE_SET_CODE (t
, code
);
10078 /* Can't use TREE_OPERAND to store the length because if checking is
10079 enabled, it will try to check the length before we store it. :-P */
10080 t
->exp
.operands
[0] = build_int_cst (sizetype
, len
);
10085 /* Helper function for build_call_* functions; build a CALL_EXPR with
10086 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10087 the argument slots. */
10090 build_call_1 (tree return_type
, tree fn
, int nargs
)
10094 t
= build_vl_exp (CALL_EXPR
, nargs
+ 3);
10095 TREE_TYPE (t
) = return_type
;
10096 CALL_EXPR_FN (t
) = fn
;
10097 CALL_EXPR_STATIC_CHAIN (t
) = NULL
;
10102 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10103 FN and a null static chain slot. NARGS is the number of call arguments
10104 which are specified as "..." arguments. */
10107 build_call_nary (tree return_type
, tree fn
, int nargs
, ...)
10111 va_start (args
, nargs
);
10112 ret
= build_call_valist (return_type
, fn
, nargs
, args
);
10117 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10118 FN and a null static chain slot. NARGS is the number of call arguments
10119 which are specified as a va_list ARGS. */
10122 build_call_valist (tree return_type
, tree fn
, int nargs
, va_list args
)
10127 t
= build_call_1 (return_type
, fn
, nargs
);
10128 for (i
= 0; i
< nargs
; i
++)
10129 CALL_EXPR_ARG (t
, i
) = va_arg (args
, tree
);
10130 process_call_operands (t
);
10134 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10135 FN and a null static chain slot. NARGS is the number of call arguments
10136 which are specified as a tree array ARGS. */
10139 build_call_array_loc (location_t loc
, tree return_type
, tree fn
,
10140 int nargs
, const tree
*args
)
10145 t
= build_call_1 (return_type
, fn
, nargs
);
10146 for (i
= 0; i
< nargs
; i
++)
10147 CALL_EXPR_ARG (t
, i
) = args
[i
];
10148 process_call_operands (t
);
10149 SET_EXPR_LOCATION (t
, loc
);
10153 /* Like build_call_array, but takes a vec. */
10156 build_call_vec (tree return_type
, tree fn
, vec
<tree
, va_gc
> *args
)
10161 ret
= build_call_1 (return_type
, fn
, vec_safe_length (args
));
10162 FOR_EACH_VEC_SAFE_ELT (args
, ix
, t
)
10163 CALL_EXPR_ARG (ret
, ix
) = t
;
10164 process_call_operands (ret
);
10169 /* Returns true if it is possible to prove that the index of
10170 an array access REF (an ARRAY_REF expression) falls into the
10174 in_array_bounds_p (tree ref
)
10176 tree idx
= TREE_OPERAND (ref
, 1);
10179 if (TREE_CODE (idx
) != INTEGER_CST
)
10182 min
= array_ref_low_bound (ref
);
10183 max
= array_ref_up_bound (ref
);
10186 || TREE_CODE (min
) != INTEGER_CST
10187 || TREE_CODE (max
) != INTEGER_CST
)
10190 if (tree_int_cst_lt (idx
, min
)
10191 || tree_int_cst_lt (max
, idx
))
10197 /* Returns true if it is possible to prove that the range of
10198 an array access REF (an ARRAY_RANGE_REF expression) falls
10199 into the array bounds. */
10202 range_in_array_bounds_p (tree ref
)
10204 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (ref
));
10205 tree range_min
, range_max
, min
, max
;
10207 range_min
= TYPE_MIN_VALUE (domain_type
);
10208 range_max
= TYPE_MAX_VALUE (domain_type
);
10211 || TREE_CODE (range_min
) != INTEGER_CST
10212 || TREE_CODE (range_max
) != INTEGER_CST
)
10215 min
= array_ref_low_bound (ref
);
10216 max
= array_ref_up_bound (ref
);
10219 || TREE_CODE (min
) != INTEGER_CST
10220 || TREE_CODE (max
) != INTEGER_CST
)
10223 if (tree_int_cst_lt (range_min
, min
)
10224 || tree_int_cst_lt (max
, range_max
))
10230 /* Return true if T (assumed to be a DECL) must be assigned a memory
10234 needs_to_live_in_memory (const_tree t
)
10236 return (TREE_ADDRESSABLE (t
)
10237 || is_global_var (t
)
10238 || (TREE_CODE (t
) == RESULT_DECL
10239 && !DECL_BY_REFERENCE (t
)
10240 && aggregate_value_p (t
, current_function_decl
)));
10243 /* Return value of a constant X and sign-extend it. */
10246 int_cst_value (const_tree x
)
10248 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
10249 unsigned HOST_WIDE_INT val
= TREE_INT_CST_LOW (x
);
10251 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10252 gcc_assert (TREE_INT_CST_HIGH (x
) == 0
10253 || TREE_INT_CST_HIGH (x
) == -1);
10255 if (bits
< HOST_BITS_PER_WIDE_INT
)
10257 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
10259 val
|= (~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1;
10261 val
&= ~((~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1);
10267 /* Return value of a constant X and sign-extend it. */
10270 widest_int_cst_value (const_tree x
)
10272 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
10273 unsigned HOST_WIDEST_INT val
= TREE_INT_CST_LOW (x
);
10275 #if HOST_BITS_PER_WIDEST_INT > HOST_BITS_PER_WIDE_INT
10276 gcc_assert (HOST_BITS_PER_WIDEST_INT
>= HOST_BITS_PER_DOUBLE_INT
);
10277 val
|= (((unsigned HOST_WIDEST_INT
) TREE_INT_CST_HIGH (x
))
10278 << HOST_BITS_PER_WIDE_INT
);
10280 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10281 gcc_assert (TREE_INT_CST_HIGH (x
) == 0
10282 || TREE_INT_CST_HIGH (x
) == -1);
10285 if (bits
< HOST_BITS_PER_WIDEST_INT
)
10287 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
10289 val
|= (~(unsigned HOST_WIDEST_INT
) 0) << (bits
- 1) << 1;
10291 val
&= ~((~(unsigned HOST_WIDEST_INT
) 0) << (bits
- 1) << 1);
10297 /* If TYPE is an integral or pointer type, return an integer type with
10298 the same precision which is unsigned iff UNSIGNEDP is true, or itself
10299 if TYPE is already an integer type of signedness UNSIGNEDP. */
10302 signed_or_unsigned_type_for (int unsignedp
, tree type
)
10304 if (TREE_CODE (type
) == INTEGER_TYPE
&& TYPE_UNSIGNED (type
) == unsignedp
)
10307 if (TREE_CODE (type
) == VECTOR_TYPE
)
10309 tree inner
= TREE_TYPE (type
);
10310 tree inner2
= signed_or_unsigned_type_for (unsignedp
, inner
);
10313 if (inner
== inner2
)
10315 return build_vector_type (inner2
, TYPE_VECTOR_SUBPARTS (type
));
10318 if (!INTEGRAL_TYPE_P (type
)
10319 && !POINTER_TYPE_P (type
))
10322 return build_nonstandard_integer_type (TYPE_PRECISION (type
), unsignedp
);
10325 /* If TYPE is an integral or pointer type, return an integer type with
10326 the same precision which is unsigned, or itself if TYPE is already an
10327 unsigned integer type. */
10330 unsigned_type_for (tree type
)
10332 return signed_or_unsigned_type_for (1, type
);
10335 /* If TYPE is an integral or pointer type, return an integer type with
10336 the same precision which is signed, or itself if TYPE is already a
10337 signed integer type. */
10340 signed_type_for (tree type
)
10342 return signed_or_unsigned_type_for (0, type
);
10345 /* If TYPE is a vector type, return a signed integer vector type with the
10346 same width and number of subparts. Otherwise return boolean_type_node. */
10349 truth_type_for (tree type
)
10351 if (TREE_CODE (type
) == VECTOR_TYPE
)
10353 tree elem
= lang_hooks
.types
.type_for_size
10354 (GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type
))), 0);
10355 return build_opaque_vector_type (elem
, TYPE_VECTOR_SUBPARTS (type
));
10358 return boolean_type_node
;
10361 /* Returns the largest value obtainable by casting something in INNER type to
10365 upper_bound_in_type (tree outer
, tree inner
)
10368 unsigned int det
= 0;
10369 unsigned oprec
= TYPE_PRECISION (outer
);
10370 unsigned iprec
= TYPE_PRECISION (inner
);
10373 /* Compute a unique number for every combination. */
10374 det
|= (oprec
> iprec
) ? 4 : 0;
10375 det
|= TYPE_UNSIGNED (outer
) ? 2 : 0;
10376 det
|= TYPE_UNSIGNED (inner
) ? 1 : 0;
10378 /* Determine the exponent to use. */
10383 /* oprec <= iprec, outer: signed, inner: don't care. */
10388 /* oprec <= iprec, outer: unsigned, inner: don't care. */
10392 /* oprec > iprec, outer: signed, inner: signed. */
10396 /* oprec > iprec, outer: signed, inner: unsigned. */
10400 /* oprec > iprec, outer: unsigned, inner: signed. */
10404 /* oprec > iprec, outer: unsigned, inner: unsigned. */
10408 gcc_unreachable ();
10411 /* Compute 2^^prec - 1. */
10412 if (prec
<= HOST_BITS_PER_WIDE_INT
)
10415 high
.low
= ((~(unsigned HOST_WIDE_INT
) 0)
10416 >> (HOST_BITS_PER_WIDE_INT
- prec
));
10420 high
.high
= ((~(unsigned HOST_WIDE_INT
) 0)
10421 >> (HOST_BITS_PER_DOUBLE_INT
- prec
));
10422 high
.low
= ~(unsigned HOST_WIDE_INT
) 0;
10425 return double_int_to_tree (outer
, high
);
10428 /* Returns the smallest value obtainable by casting something in INNER type to
10432 lower_bound_in_type (tree outer
, tree inner
)
10435 unsigned oprec
= TYPE_PRECISION (outer
);
10436 unsigned iprec
= TYPE_PRECISION (inner
);
10438 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
10440 if (TYPE_UNSIGNED (outer
)
10441 /* If we are widening something of an unsigned type, OUTER type
10442 contains all values of INNER type. In particular, both INNER
10443 and OUTER types have zero in common. */
10444 || (oprec
> iprec
&& TYPE_UNSIGNED (inner
)))
10445 low
.low
= low
.high
= 0;
10448 /* If we are widening a signed type to another signed type, we
10449 want to obtain -2^^(iprec-1). If we are keeping the
10450 precision or narrowing to a signed type, we want to obtain
10452 unsigned prec
= oprec
> iprec
? iprec
: oprec
;
10454 if (prec
<= HOST_BITS_PER_WIDE_INT
)
10456 low
.high
= ~(unsigned HOST_WIDE_INT
) 0;
10457 low
.low
= (~(unsigned HOST_WIDE_INT
) 0) << (prec
- 1);
10461 low
.high
= ((~(unsigned HOST_WIDE_INT
) 0)
10462 << (prec
- HOST_BITS_PER_WIDE_INT
- 1));
10467 return double_int_to_tree (outer
, low
);
10470 /* Return nonzero if two operands that are suitable for PHI nodes are
10471 necessarily equal. Specifically, both ARG0 and ARG1 must be either
10472 SSA_NAME or invariant. Note that this is strictly an optimization.
10473 That is, callers of this function can directly call operand_equal_p
10474 and get the same result, only slower. */
10477 operand_equal_for_phi_arg_p (const_tree arg0
, const_tree arg1
)
10481 if (TREE_CODE (arg0
) == SSA_NAME
|| TREE_CODE (arg1
) == SSA_NAME
)
10483 return operand_equal_p (arg0
, arg1
, 0);
10486 /* Returns number of zeros at the end of binary representation of X.
10488 ??? Use ffs if available? */
10491 num_ending_zeros (const_tree x
)
10493 unsigned HOST_WIDE_INT fr
, nfr
;
10494 unsigned num
, abits
;
10495 tree type
= TREE_TYPE (x
);
10497 if (TREE_INT_CST_LOW (x
) == 0)
10499 num
= HOST_BITS_PER_WIDE_INT
;
10500 fr
= TREE_INT_CST_HIGH (x
);
10505 fr
= TREE_INT_CST_LOW (x
);
10508 for (abits
= HOST_BITS_PER_WIDE_INT
/ 2; abits
; abits
/= 2)
10511 if (nfr
<< abits
== fr
)
10518 if (num
> TYPE_PRECISION (type
))
10519 num
= TYPE_PRECISION (type
);
10521 return build_int_cst_type (type
, num
);
10525 #define WALK_SUBTREE(NODE) \
10528 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
10534 /* This is a subroutine of walk_tree that walks field of TYPE that are to
10535 be walked whenever a type is seen in the tree. Rest of operands and return
10536 value are as for walk_tree. */
10539 walk_type_fields (tree type
, walk_tree_fn func
, void *data
,
10540 struct pointer_set_t
*pset
, walk_tree_lh lh
)
10542 tree result
= NULL_TREE
;
10544 switch (TREE_CODE (type
))
10547 case REFERENCE_TYPE
:
10548 /* We have to worry about mutually recursive pointers. These can't
10549 be written in C. They can in Ada. It's pathological, but
10550 there's an ACATS test (c38102a) that checks it. Deal with this
10551 by checking if we're pointing to another pointer, that one
10552 points to another pointer, that one does too, and we have no htab.
10553 If so, get a hash table. We check three levels deep to avoid
10554 the cost of the hash table if we don't need one. */
10555 if (POINTER_TYPE_P (TREE_TYPE (type
))
10556 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type
)))
10557 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type
))))
10560 result
= walk_tree_without_duplicates (&TREE_TYPE (type
),
10568 /* ... fall through ... */
10571 WALK_SUBTREE (TREE_TYPE (type
));
10575 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type
));
10577 /* Fall through. */
10579 case FUNCTION_TYPE
:
10580 WALK_SUBTREE (TREE_TYPE (type
));
10584 /* We never want to walk into default arguments. */
10585 for (arg
= TYPE_ARG_TYPES (type
); arg
; arg
= TREE_CHAIN (arg
))
10586 WALK_SUBTREE (TREE_VALUE (arg
));
10591 /* Don't follow this nodes's type if a pointer for fear that
10592 we'll have infinite recursion. If we have a PSET, then we
10595 || (!POINTER_TYPE_P (TREE_TYPE (type
))
10596 && TREE_CODE (TREE_TYPE (type
)) != OFFSET_TYPE
))
10597 WALK_SUBTREE (TREE_TYPE (type
));
10598 WALK_SUBTREE (TYPE_DOMAIN (type
));
10602 WALK_SUBTREE (TREE_TYPE (type
));
10603 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type
));
10613 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
10614 called with the DATA and the address of each sub-tree. If FUNC returns a
10615 non-NULL value, the traversal is stopped, and the value returned by FUNC
10616 is returned. If PSET is non-NULL it is used to record the nodes visited,
10617 and to avoid visiting a node more than once. */
10620 walk_tree_1 (tree
*tp
, walk_tree_fn func
, void *data
,
10621 struct pointer_set_t
*pset
, walk_tree_lh lh
)
10623 enum tree_code code
;
10627 #define WALK_SUBTREE_TAIL(NODE) \
10631 goto tail_recurse; \
10636 /* Skip empty subtrees. */
10640 /* Don't walk the same tree twice, if the user has requested
10641 that we avoid doing so. */
10642 if (pset
&& pointer_set_insert (pset
, *tp
))
10645 /* Call the function. */
10647 result
= (*func
) (tp
, &walk_subtrees
, data
);
10649 /* If we found something, return it. */
10653 code
= TREE_CODE (*tp
);
10655 /* Even if we didn't, FUNC may have decided that there was nothing
10656 interesting below this point in the tree. */
10657 if (!walk_subtrees
)
10659 /* But we still need to check our siblings. */
10660 if (code
== TREE_LIST
)
10661 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
10662 else if (code
== OMP_CLAUSE
)
10663 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10670 result
= (*lh
) (tp
, &walk_subtrees
, func
, data
, pset
);
10671 if (result
|| !walk_subtrees
)
10678 case IDENTIFIER_NODE
:
10685 case PLACEHOLDER_EXPR
:
10689 /* None of these have subtrees other than those already walked
10694 WALK_SUBTREE (TREE_VALUE (*tp
));
10695 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
10700 int len
= TREE_VEC_LENGTH (*tp
);
10705 /* Walk all elements but the first. */
10707 WALK_SUBTREE (TREE_VEC_ELT (*tp
, len
));
10709 /* Now walk the first one as a tail call. */
10710 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp
, 0));
10714 WALK_SUBTREE (TREE_REALPART (*tp
));
10715 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp
));
10719 unsigned HOST_WIDE_INT idx
;
10720 constructor_elt
*ce
;
10722 for (idx
= 0; vec_safe_iterate(CONSTRUCTOR_ELTS (*tp
), idx
, &ce
); idx
++)
10723 WALK_SUBTREE (ce
->value
);
10728 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, 0));
10733 for (decl
= BIND_EXPR_VARS (*tp
); decl
; decl
= DECL_CHAIN (decl
))
10735 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
10736 into declarations that are just mentioned, rather than
10737 declared; they don't really belong to this part of the tree.
10738 And, we can see cycles: the initializer for a declaration
10739 can refer to the declaration itself. */
10740 WALK_SUBTREE (DECL_INITIAL (decl
));
10741 WALK_SUBTREE (DECL_SIZE (decl
));
10742 WALK_SUBTREE (DECL_SIZE_UNIT (decl
));
10744 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp
));
10747 case STATEMENT_LIST
:
10749 tree_stmt_iterator i
;
10750 for (i
= tsi_start (*tp
); !tsi_end_p (i
); tsi_next (&i
))
10751 WALK_SUBTREE (*tsi_stmt_ptr (i
));
10756 switch (OMP_CLAUSE_CODE (*tp
))
10758 case OMP_CLAUSE_PRIVATE
:
10759 case OMP_CLAUSE_SHARED
:
10760 case OMP_CLAUSE_FIRSTPRIVATE
:
10761 case OMP_CLAUSE_COPYIN
:
10762 case OMP_CLAUSE_COPYPRIVATE
:
10763 case OMP_CLAUSE_FINAL
:
10764 case OMP_CLAUSE_IF
:
10765 case OMP_CLAUSE_NUM_THREADS
:
10766 case OMP_CLAUSE_SCHEDULE
:
10767 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 0));
10770 case OMP_CLAUSE_NOWAIT
:
10771 case OMP_CLAUSE_ORDERED
:
10772 case OMP_CLAUSE_DEFAULT
:
10773 case OMP_CLAUSE_UNTIED
:
10774 case OMP_CLAUSE_MERGEABLE
:
10775 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10777 case OMP_CLAUSE_LASTPRIVATE
:
10778 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
10779 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp
));
10780 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10782 case OMP_CLAUSE_COLLAPSE
:
10785 for (i
= 0; i
< 3; i
++)
10786 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
10787 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10790 case OMP_CLAUSE_REDUCTION
:
10793 for (i
= 0; i
< 4; i
++)
10794 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
10795 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10799 gcc_unreachable ();
10807 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
10808 But, we only want to walk once. */
10809 len
= (TREE_OPERAND (*tp
, 3) == TREE_OPERAND (*tp
, 1)) ? 2 : 3;
10810 for (i
= 0; i
< len
; ++i
)
10811 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
10812 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
));
10816 /* If this is a TYPE_DECL, walk into the fields of the type that it's
10817 defining. We only want to walk into these fields of a type in this
10818 case and not in the general case of a mere reference to the type.
10820 The criterion is as follows: if the field can be an expression, it
10821 must be walked only here. This should be in keeping with the fields
10822 that are directly gimplified in gimplify_type_sizes in order for the
10823 mark/copy-if-shared/unmark machinery of the gimplifier to work with
10824 variable-sized types.
10826 Note that DECLs get walked as part of processing the BIND_EXPR. */
10827 if (TREE_CODE (DECL_EXPR_DECL (*tp
)) == TYPE_DECL
)
10829 tree
*type_p
= &TREE_TYPE (DECL_EXPR_DECL (*tp
));
10830 if (TREE_CODE (*type_p
) == ERROR_MARK
)
10833 /* Call the function for the type. See if it returns anything or
10834 doesn't want us to continue. If we are to continue, walk both
10835 the normal fields and those for the declaration case. */
10836 result
= (*func
) (type_p
, &walk_subtrees
, data
);
10837 if (result
|| !walk_subtrees
)
10840 /* But do not walk a pointed-to type since it may itself need to
10841 be walked in the declaration case if it isn't anonymous. */
10842 if (!POINTER_TYPE_P (*type_p
))
10844 result
= walk_type_fields (*type_p
, func
, data
, pset
, lh
);
10849 /* If this is a record type, also walk the fields. */
10850 if (RECORD_OR_UNION_TYPE_P (*type_p
))
10854 for (field
= TYPE_FIELDS (*type_p
); field
;
10855 field
= DECL_CHAIN (field
))
10857 /* We'd like to look at the type of the field, but we can
10858 easily get infinite recursion. So assume it's pointed
10859 to elsewhere in the tree. Also, ignore things that
10861 if (TREE_CODE (field
) != FIELD_DECL
)
10864 WALK_SUBTREE (DECL_FIELD_OFFSET (field
));
10865 WALK_SUBTREE (DECL_SIZE (field
));
10866 WALK_SUBTREE (DECL_SIZE_UNIT (field
));
10867 if (TREE_CODE (*type_p
) == QUAL_UNION_TYPE
)
10868 WALK_SUBTREE (DECL_QUALIFIER (field
));
10872 /* Same for scalar types. */
10873 else if (TREE_CODE (*type_p
) == BOOLEAN_TYPE
10874 || TREE_CODE (*type_p
) == ENUMERAL_TYPE
10875 || TREE_CODE (*type_p
) == INTEGER_TYPE
10876 || TREE_CODE (*type_p
) == FIXED_POINT_TYPE
10877 || TREE_CODE (*type_p
) == REAL_TYPE
)
10879 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p
));
10880 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p
));
10883 WALK_SUBTREE (TYPE_SIZE (*type_p
));
10884 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p
));
10889 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code
)))
10893 /* Walk over all the sub-trees of this operand. */
10894 len
= TREE_OPERAND_LENGTH (*tp
);
10896 /* Go through the subtrees. We need to do this in forward order so
10897 that the scope of a FOR_EXPR is handled properly. */
10900 for (i
= 0; i
< len
- 1; ++i
)
10901 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
10902 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
- 1));
10905 /* If this is a type, walk the needed fields in the type. */
10906 else if (TYPE_P (*tp
))
10907 return walk_type_fields (*tp
, func
, data
, pset
, lh
);
10911 /* We didn't find what we were looking for. */
10914 #undef WALK_SUBTREE_TAIL
10916 #undef WALK_SUBTREE
10918 /* Like walk_tree, but does not walk duplicate nodes more than once. */
10921 walk_tree_without_duplicates_1 (tree
*tp
, walk_tree_fn func
, void *data
,
10925 struct pointer_set_t
*pset
;
10927 pset
= pointer_set_create ();
10928 result
= walk_tree_1 (tp
, func
, data
, pset
, lh
);
10929 pointer_set_destroy (pset
);
10935 tree_block (tree t
)
10937 char const c
= TREE_CODE_CLASS (TREE_CODE (t
));
10939 if (IS_EXPR_CODE_CLASS (c
))
10940 return LOCATION_BLOCK (t
->exp
.locus
);
10941 gcc_unreachable ();
10946 tree_set_block (tree t
, tree b
)
10948 char const c
= TREE_CODE_CLASS (TREE_CODE (t
));
10950 if (IS_EXPR_CODE_CLASS (c
))
10953 t
->exp
.locus
= COMBINE_LOCATION_DATA (line_table
, t
->exp
.locus
, b
);
10955 t
->exp
.locus
= LOCATION_LOCUS (t
->exp
.locus
);
10958 gcc_unreachable ();
10961 /* Create a nameless artificial label and put it in the current
10962 function context. The label has a location of LOC. Returns the
10963 newly created label. */
10966 create_artificial_label (location_t loc
)
10968 tree lab
= build_decl (loc
,
10969 LABEL_DECL
, NULL_TREE
, void_type_node
);
10971 DECL_ARTIFICIAL (lab
) = 1;
10972 DECL_IGNORED_P (lab
) = 1;
10973 DECL_CONTEXT (lab
) = current_function_decl
;
10977 /* Given a tree, try to return a useful variable name that we can use
10978 to prefix a temporary that is being assigned the value of the tree.
10979 I.E. given <temp> = &A, return A. */
10984 tree stripped_decl
;
10987 STRIP_NOPS (stripped_decl
);
10988 if (DECL_P (stripped_decl
) && DECL_NAME (stripped_decl
))
10989 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl
));
10990 else if (TREE_CODE (stripped_decl
) == SSA_NAME
)
10992 tree name
= SSA_NAME_IDENTIFIER (stripped_decl
);
10995 return IDENTIFIER_POINTER (name
);
10999 switch (TREE_CODE (stripped_decl
))
11002 return get_name (TREE_OPERAND (stripped_decl
, 0));
11009 /* Return true if TYPE has a variable argument list. */
11012 stdarg_p (const_tree fntype
)
11014 function_args_iterator args_iter
;
11015 tree n
= NULL_TREE
, t
;
11020 FOREACH_FUNCTION_ARGS(fntype
, t
, args_iter
)
11025 return n
!= NULL_TREE
&& n
!= void_type_node
;
11028 /* Return true if TYPE has a prototype. */
11031 prototype_p (tree fntype
)
11035 gcc_assert (fntype
!= NULL_TREE
);
11037 t
= TYPE_ARG_TYPES (fntype
);
11038 return (t
!= NULL_TREE
);
11041 /* If BLOCK is inlined from an __attribute__((__artificial__))
11042 routine, return pointer to location from where it has been
11045 block_nonartificial_location (tree block
)
11047 location_t
*ret
= NULL
;
11049 while (block
&& TREE_CODE (block
) == BLOCK
11050 && BLOCK_ABSTRACT_ORIGIN (block
))
11052 tree ao
= BLOCK_ABSTRACT_ORIGIN (block
);
11054 while (TREE_CODE (ao
) == BLOCK
11055 && BLOCK_ABSTRACT_ORIGIN (ao
)
11056 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
11057 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
11059 if (TREE_CODE (ao
) == FUNCTION_DECL
)
11061 /* If AO is an artificial inline, point RET to the
11062 call site locus at which it has been inlined and continue
11063 the loop, in case AO's caller is also an artificial
11065 if (DECL_DECLARED_INLINE_P (ao
)
11066 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao
)))
11067 ret
= &BLOCK_SOURCE_LOCATION (block
);
11071 else if (TREE_CODE (ao
) != BLOCK
)
11074 block
= BLOCK_SUPERCONTEXT (block
);
11080 /* If EXP is inlined from an __attribute__((__artificial__))
11081 function, return the location of the original call expression. */
11084 tree_nonartificial_location (tree exp
)
11086 location_t
*loc
= block_nonartificial_location (TREE_BLOCK (exp
));
11091 return EXPR_LOCATION (exp
);
11095 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11098 /* Return the hash code code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11101 cl_option_hash_hash (const void *x
)
11103 const_tree
const t
= (const_tree
) x
;
11107 hashval_t hash
= 0;
11109 if (TREE_CODE (t
) == OPTIMIZATION_NODE
)
11111 p
= (const char *)TREE_OPTIMIZATION (t
);
11112 len
= sizeof (struct cl_optimization
);
11115 else if (TREE_CODE (t
) == TARGET_OPTION_NODE
)
11117 p
= (const char *)TREE_TARGET_OPTION (t
);
11118 len
= sizeof (struct cl_target_option
);
11122 gcc_unreachable ();
11124 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11126 for (i
= 0; i
< len
; i
++)
11128 hash
= (hash
<< 4) ^ ((i
<< 2) | p
[i
]);
11133 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11134 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11138 cl_option_hash_eq (const void *x
, const void *y
)
11140 const_tree
const xt
= (const_tree
) x
;
11141 const_tree
const yt
= (const_tree
) y
;
11146 if (TREE_CODE (xt
) != TREE_CODE (yt
))
11149 if (TREE_CODE (xt
) == OPTIMIZATION_NODE
)
11151 xp
= (const char *)TREE_OPTIMIZATION (xt
);
11152 yp
= (const char *)TREE_OPTIMIZATION (yt
);
11153 len
= sizeof (struct cl_optimization
);
11156 else if (TREE_CODE (xt
) == TARGET_OPTION_NODE
)
11158 xp
= (const char *)TREE_TARGET_OPTION (xt
);
11159 yp
= (const char *)TREE_TARGET_OPTION (yt
);
11160 len
= sizeof (struct cl_target_option
);
11164 gcc_unreachable ();
11166 return (memcmp (xp
, yp
, len
) == 0);
11169 /* Build an OPTIMIZATION_NODE based on the current options. */
11172 build_optimization_node (void)
11177 /* Use the cache of optimization nodes. */
11179 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node
),
11182 slot
= htab_find_slot (cl_option_hash_table
, cl_optimization_node
, INSERT
);
11186 /* Insert this one into the hash table. */
11187 t
= cl_optimization_node
;
11190 /* Make a new node for next time round. */
11191 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
11197 /* Build a TARGET_OPTION_NODE based on the current options. */
11200 build_target_option_node (void)
11205 /* Use the cache of optimization nodes. */
11207 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node
),
11210 slot
= htab_find_slot (cl_option_hash_table
, cl_target_option_node
, INSERT
);
11214 /* Insert this one into the hash table. */
11215 t
= cl_target_option_node
;
11218 /* Make a new node for next time round. */
11219 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
11225 /* Determine the "ultimate origin" of a block. The block may be an inlined
11226 instance of an inlined instance of a block which is local to an inline
11227 function, so we have to trace all of the way back through the origin chain
11228 to find out what sort of node actually served as the original seed for the
11232 block_ultimate_origin (const_tree block
)
11234 tree immediate_origin
= BLOCK_ABSTRACT_ORIGIN (block
);
11236 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
11237 nodes in the function to point to themselves; ignore that if
11238 we're trying to output the abstract instance of this function. */
11239 if (BLOCK_ABSTRACT (block
) && immediate_origin
== block
)
11242 if (immediate_origin
== NULL_TREE
)
11247 tree lookahead
= immediate_origin
;
11251 ret_val
= lookahead
;
11252 lookahead
= (TREE_CODE (ret_val
) == BLOCK
11253 ? BLOCK_ABSTRACT_ORIGIN (ret_val
) : NULL
);
11255 while (lookahead
!= NULL
&& lookahead
!= ret_val
);
11257 /* The block's abstract origin chain may not be the *ultimate* origin of
11258 the block. It could lead to a DECL that has an abstract origin set.
11259 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
11260 will give us if it has one). Note that DECL's abstract origins are
11261 supposed to be the most distant ancestor (or so decl_ultimate_origin
11262 claims), so we don't need to loop following the DECL origins. */
11263 if (DECL_P (ret_val
))
11264 return DECL_ORIGIN (ret_val
);
11270 /* Return true if T1 and T2 are equivalent lists. */
11273 list_equal_p (const_tree t1
, const_tree t2
)
11275 for (; t1
&& t2
; t1
= TREE_CHAIN (t1
) , t2
= TREE_CHAIN (t2
))
11276 if (TREE_VALUE (t1
) != TREE_VALUE (t2
))
11281 /* Return true iff conversion in EXP generates no instruction. Mark
11282 it inline so that we fully inline into the stripping functions even
11283 though we have two uses of this function. */
11286 tree_nop_conversion (const_tree exp
)
11288 tree outer_type
, inner_type
;
11290 if (!CONVERT_EXPR_P (exp
)
11291 && TREE_CODE (exp
) != NON_LVALUE_EXPR
)
11293 if (TREE_OPERAND (exp
, 0) == error_mark_node
)
11296 outer_type
= TREE_TYPE (exp
);
11297 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11302 /* Use precision rather then machine mode when we can, which gives
11303 the correct answer even for submode (bit-field) types. */
11304 if ((INTEGRAL_TYPE_P (outer_type
)
11305 || POINTER_TYPE_P (outer_type
)
11306 || TREE_CODE (outer_type
) == OFFSET_TYPE
)
11307 && (INTEGRAL_TYPE_P (inner_type
)
11308 || POINTER_TYPE_P (inner_type
)
11309 || TREE_CODE (inner_type
) == OFFSET_TYPE
))
11310 return TYPE_PRECISION (outer_type
) == TYPE_PRECISION (inner_type
);
11312 /* Otherwise fall back on comparing machine modes (e.g. for
11313 aggregate types, floats). */
11314 return TYPE_MODE (outer_type
) == TYPE_MODE (inner_type
);
11317 /* Return true iff conversion in EXP generates no instruction. Don't
11318 consider conversions changing the signedness. */
11321 tree_sign_nop_conversion (const_tree exp
)
11323 tree outer_type
, inner_type
;
11325 if (!tree_nop_conversion (exp
))
11328 outer_type
= TREE_TYPE (exp
);
11329 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11331 return (TYPE_UNSIGNED (outer_type
) == TYPE_UNSIGNED (inner_type
)
11332 && POINTER_TYPE_P (outer_type
) == POINTER_TYPE_P (inner_type
));
11335 /* Strip conversions from EXP according to tree_nop_conversion and
11336 return the resulting expression. */
11339 tree_strip_nop_conversions (tree exp
)
11341 while (tree_nop_conversion (exp
))
11342 exp
= TREE_OPERAND (exp
, 0);
11346 /* Strip conversions from EXP according to tree_sign_nop_conversion
11347 and return the resulting expression. */
11350 tree_strip_sign_nop_conversions (tree exp
)
11352 while (tree_sign_nop_conversion (exp
))
11353 exp
= TREE_OPERAND (exp
, 0);
11357 /* Avoid any floating point extensions from EXP. */
11359 strip_float_extensions (tree exp
)
11361 tree sub
, expt
, subt
;
11363 /* For floating point constant look up the narrowest type that can hold
11364 it properly and handle it like (type)(narrowest_type)constant.
11365 This way we can optimize for instance a=a*2.0 where "a" is float
11366 but 2.0 is double constant. */
11367 if (TREE_CODE (exp
) == REAL_CST
&& !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp
)))
11369 REAL_VALUE_TYPE orig
;
11372 orig
= TREE_REAL_CST (exp
);
11373 if (TYPE_PRECISION (TREE_TYPE (exp
)) > TYPE_PRECISION (float_type_node
)
11374 && exact_real_truncate (TYPE_MODE (float_type_node
), &orig
))
11375 type
= float_type_node
;
11376 else if (TYPE_PRECISION (TREE_TYPE (exp
))
11377 > TYPE_PRECISION (double_type_node
)
11378 && exact_real_truncate (TYPE_MODE (double_type_node
), &orig
))
11379 type
= double_type_node
;
11381 return build_real (type
, real_value_truncate (TYPE_MODE (type
), orig
));
11384 if (!CONVERT_EXPR_P (exp
))
11387 sub
= TREE_OPERAND (exp
, 0);
11388 subt
= TREE_TYPE (sub
);
11389 expt
= TREE_TYPE (exp
);
11391 if (!FLOAT_TYPE_P (subt
))
11394 if (DECIMAL_FLOAT_TYPE_P (expt
) != DECIMAL_FLOAT_TYPE_P (subt
))
11397 if (TYPE_PRECISION (subt
) > TYPE_PRECISION (expt
))
11400 return strip_float_extensions (sub
);
11403 /* Strip out all handled components that produce invariant
11407 strip_invariant_refs (const_tree op
)
11409 while (handled_component_p (op
))
11411 switch (TREE_CODE (op
))
11414 case ARRAY_RANGE_REF
:
11415 if (!is_gimple_constant (TREE_OPERAND (op
, 1))
11416 || TREE_OPERAND (op
, 2) != NULL_TREE
11417 || TREE_OPERAND (op
, 3) != NULL_TREE
)
11421 case COMPONENT_REF
:
11422 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
11428 op
= TREE_OPERAND (op
, 0);
11434 static GTY(()) tree gcc_eh_personality_decl
;
11436 /* Return the GCC personality function decl. */
11439 lhd_gcc_personality (void)
11441 if (!gcc_eh_personality_decl
)
11442 gcc_eh_personality_decl
= build_personality_function ("gcc");
11443 return gcc_eh_personality_decl
;
11446 /* Try to find a base info of BINFO that would have its field decl at offset
11447 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
11448 found, return, otherwise return NULL_TREE. */
11451 get_binfo_at_offset (tree binfo
, HOST_WIDE_INT offset
, tree expected_type
)
11453 tree type
= BINFO_TYPE (binfo
);
11457 HOST_WIDE_INT pos
, size
;
11461 if (TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (expected_type
))
11466 for (fld
= TYPE_FIELDS (type
); fld
; fld
= DECL_CHAIN (fld
))
11468 if (TREE_CODE (fld
) != FIELD_DECL
)
11471 pos
= int_bit_position (fld
);
11472 size
= tree_low_cst (DECL_SIZE (fld
), 1);
11473 if (pos
<= offset
&& (pos
+ size
) > offset
)
11476 if (!fld
|| TREE_CODE (TREE_TYPE (fld
)) != RECORD_TYPE
)
11479 if (!DECL_ARTIFICIAL (fld
))
11481 binfo
= TYPE_BINFO (TREE_TYPE (fld
));
11485 /* Offset 0 indicates the primary base, whose vtable contents are
11486 represented in the binfo for the derived class. */
11487 else if (offset
!= 0)
11489 tree base_binfo
, found_binfo
= NULL_TREE
;
11490 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
11491 if (TREE_TYPE (base_binfo
) == TREE_TYPE (fld
))
11493 found_binfo
= base_binfo
;
11498 binfo
= found_binfo
;
11501 type
= TREE_TYPE (fld
);
11506 /* Returns true if X is a typedef decl. */
11509 is_typedef_decl (tree x
)
11511 return (x
&& TREE_CODE (x
) == TYPE_DECL
11512 && DECL_ORIGINAL_TYPE (x
) != NULL_TREE
);
11515 /* Returns true iff TYPE is a type variant created for a typedef. */
11518 typedef_variant_p (tree type
)
11520 return is_typedef_decl (TYPE_NAME (type
));
11523 /* Warn about a use of an identifier which was marked deprecated. */
11525 warn_deprecated_use (tree node
, tree attr
)
11529 if (node
== 0 || !warn_deprecated_decl
)
11535 attr
= DECL_ATTRIBUTES (node
);
11536 else if (TYPE_P (node
))
11538 tree decl
= TYPE_STUB_DECL (node
);
11540 attr
= lookup_attribute ("deprecated",
11541 TYPE_ATTRIBUTES (TREE_TYPE (decl
)));
11546 attr
= lookup_attribute ("deprecated", attr
);
11549 msg
= TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr
)));
11555 expanded_location xloc
= expand_location (DECL_SOURCE_LOCATION (node
));
11557 warning (OPT_Wdeprecated_declarations
,
11558 "%qD is deprecated (declared at %s:%d): %s",
11559 node
, xloc
.file
, xloc
.line
, msg
);
11561 warning (OPT_Wdeprecated_declarations
,
11562 "%qD is deprecated (declared at %s:%d)",
11563 node
, xloc
.file
, xloc
.line
);
11565 else if (TYPE_P (node
))
11567 tree what
= NULL_TREE
;
11568 tree decl
= TYPE_STUB_DECL (node
);
11570 if (TYPE_NAME (node
))
11572 if (TREE_CODE (TYPE_NAME (node
)) == IDENTIFIER_NODE
)
11573 what
= TYPE_NAME (node
);
11574 else if (TREE_CODE (TYPE_NAME (node
)) == TYPE_DECL
11575 && DECL_NAME (TYPE_NAME (node
)))
11576 what
= DECL_NAME (TYPE_NAME (node
));
11581 expanded_location xloc
11582 = expand_location (DECL_SOURCE_LOCATION (decl
));
11586 warning (OPT_Wdeprecated_declarations
,
11587 "%qE is deprecated (declared at %s:%d): %s",
11588 what
, xloc
.file
, xloc
.line
, msg
);
11590 warning (OPT_Wdeprecated_declarations
,
11591 "%qE is deprecated (declared at %s:%d)", what
,
11592 xloc
.file
, xloc
.line
);
11597 warning (OPT_Wdeprecated_declarations
,
11598 "type is deprecated (declared at %s:%d): %s",
11599 xloc
.file
, xloc
.line
, msg
);
11601 warning (OPT_Wdeprecated_declarations
,
11602 "type is deprecated (declared at %s:%d)",
11603 xloc
.file
, xloc
.line
);
11611 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated: %s",
11614 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated", what
);
11619 warning (OPT_Wdeprecated_declarations
, "type is deprecated: %s",
11622 warning (OPT_Wdeprecated_declarations
, "type is deprecated");
11628 #include "gt-tree.h"