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 into any simple arithmetic operations. Return the
2834 outermost non-arithmetic or non-invariant node. */
2837 skip_simple_arithmetic (tree expr
)
2839 /* We don't care about whether this can be used as an lvalue in this
2841 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
2842 expr
= TREE_OPERAND (expr
, 0);
2844 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
2845 a constant, it will be more efficient to not make another SAVE_EXPR since
2846 it will allow better simplification and GCSE will be able to merge the
2847 computations if they actually occur. */
2850 if (UNARY_CLASS_P (expr
))
2851 expr
= TREE_OPERAND (expr
, 0);
2852 else if (BINARY_CLASS_P (expr
))
2854 if (tree_invariant_p (TREE_OPERAND (expr
, 1)))
2855 expr
= TREE_OPERAND (expr
, 0);
2856 else if (tree_invariant_p (TREE_OPERAND (expr
, 0)))
2857 expr
= TREE_OPERAND (expr
, 1);
2868 /* Look inside EXPR into simple arithmetic operations involving constants.
2869 Return the outermost non-arithmetic or non-constant node. */
2872 skip_simple_constant_arithmetic (tree expr
)
2874 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
2875 expr
= TREE_OPERAND (expr
, 0);
2879 if (UNARY_CLASS_P (expr
))
2880 expr
= TREE_OPERAND (expr
, 0);
2881 else if (BINARY_CLASS_P (expr
))
2883 if (TREE_CONSTANT (TREE_OPERAND (expr
, 1)))
2884 expr
= TREE_OPERAND (expr
, 0);
2885 else if (TREE_CONSTANT (TREE_OPERAND (expr
, 0)))
2886 expr
= TREE_OPERAND (expr
, 1);
2897 /* Return which tree structure is used by T. */
2899 enum tree_node_structure_enum
2900 tree_node_structure (const_tree t
)
2902 const enum tree_code code
= TREE_CODE (t
);
2903 return tree_node_structure_for_code (code
);
2906 /* Set various status flags when building a CALL_EXPR object T. */
2909 process_call_operands (tree t
)
2911 bool side_effects
= TREE_SIDE_EFFECTS (t
);
2912 bool read_only
= false;
2913 int i
= call_expr_flags (t
);
2915 /* Calls have side-effects, except those to const or pure functions. */
2916 if ((i
& ECF_LOOPING_CONST_OR_PURE
) || !(i
& (ECF_CONST
| ECF_PURE
)))
2917 side_effects
= true;
2918 /* Propagate TREE_READONLY of arguments for const functions. */
2922 if (!side_effects
|| read_only
)
2923 for (i
= 1; i
< TREE_OPERAND_LENGTH (t
); i
++)
2925 tree op
= TREE_OPERAND (t
, i
);
2926 if (op
&& TREE_SIDE_EFFECTS (op
))
2927 side_effects
= true;
2928 if (op
&& !TREE_READONLY (op
) && !CONSTANT_CLASS_P (op
))
2932 TREE_SIDE_EFFECTS (t
) = side_effects
;
2933 TREE_READONLY (t
) = read_only
;
2936 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
2937 size or offset that depends on a field within a record. */
2940 contains_placeholder_p (const_tree exp
)
2942 enum tree_code code
;
2947 code
= TREE_CODE (exp
);
2948 if (code
== PLACEHOLDER_EXPR
)
2951 switch (TREE_CODE_CLASS (code
))
2954 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
2955 position computations since they will be converted into a
2956 WITH_RECORD_EXPR involving the reference, which will assume
2957 here will be valid. */
2958 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
2960 case tcc_exceptional
:
2961 if (code
== TREE_LIST
)
2962 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp
))
2963 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp
)));
2968 case tcc_comparison
:
2969 case tcc_expression
:
2973 /* Ignoring the first operand isn't quite right, but works best. */
2974 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1));
2977 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
2978 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1))
2979 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 2)));
2982 /* The save_expr function never wraps anything containing
2983 a PLACEHOLDER_EXPR. */
2990 switch (TREE_CODE_LENGTH (code
))
2993 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
2995 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
2996 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1)));
3007 const_call_expr_arg_iterator iter
;
3008 FOR_EACH_CONST_CALL_EXPR_ARG (arg
, iter
, exp
)
3009 if (CONTAINS_PLACEHOLDER_P (arg
))
3023 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3024 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3028 type_contains_placeholder_1 (const_tree type
)
3030 /* If the size contains a placeholder or the parent type (component type in
3031 the case of arrays) type involves a placeholder, this type does. */
3032 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type
))
3033 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type
))
3034 || (!POINTER_TYPE_P (type
)
3036 && type_contains_placeholder_p (TREE_TYPE (type
))))
3039 /* Now do type-specific checks. Note that the last part of the check above
3040 greatly limits what we have to do below. */
3041 switch (TREE_CODE (type
))
3049 case REFERENCE_TYPE
:
3058 case FIXED_POINT_TYPE
:
3059 /* Here we just check the bounds. */
3060 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type
))
3061 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type
)));
3064 /* We have already checked the component type above, so just check the
3066 return type_contains_placeholder_p (TYPE_DOMAIN (type
));
3070 case QUAL_UNION_TYPE
:
3074 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
3075 if (TREE_CODE (field
) == FIELD_DECL
3076 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field
))
3077 || (TREE_CODE (type
) == QUAL_UNION_TYPE
3078 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field
)))
3079 || type_contains_placeholder_p (TREE_TYPE (field
))))
3090 /* Wrapper around above function used to cache its result. */
3093 type_contains_placeholder_p (tree type
)
3097 /* If the contains_placeholder_bits field has been initialized,
3098 then we know the answer. */
3099 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) > 0)
3100 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) - 1;
3102 /* Indicate that we've seen this type node, and the answer is false.
3103 This is what we want to return if we run into recursion via fields. */
3104 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = 1;
3106 /* Compute the real value. */
3107 result
= type_contains_placeholder_1 (type
);
3109 /* Store the real value. */
3110 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = result
+ 1;
3115 /* Push tree EXP onto vector QUEUE if it is not already present. */
3118 push_without_duplicates (tree exp
, vec
<tree
> *queue
)
3123 FOR_EACH_VEC_ELT (*queue
, i
, iter
)
3124 if (simple_cst_equal (iter
, exp
) == 1)
3128 queue
->safe_push (exp
);
3131 /* Given a tree EXP, find all occurrences of references to fields
3132 in a PLACEHOLDER_EXPR and place them in vector REFS without
3133 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3134 we assume here that EXP contains only arithmetic expressions
3135 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3139 find_placeholder_in_expr (tree exp
, vec
<tree
> *refs
)
3141 enum tree_code code
= TREE_CODE (exp
);
3145 /* We handle TREE_LIST and COMPONENT_REF separately. */
3146 if (code
== TREE_LIST
)
3148 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), refs
);
3149 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), refs
);
3151 else if (code
== COMPONENT_REF
)
3153 for (inner
= TREE_OPERAND (exp
, 0);
3154 REFERENCE_CLASS_P (inner
);
3155 inner
= TREE_OPERAND (inner
, 0))
3158 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
)
3159 push_without_duplicates (exp
, refs
);
3161 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), refs
);
3164 switch (TREE_CODE_CLASS (code
))
3169 case tcc_declaration
:
3170 /* Variables allocated to static storage can stay. */
3171 if (!TREE_STATIC (exp
))
3172 push_without_duplicates (exp
, refs
);
3175 case tcc_expression
:
3176 /* This is the pattern built in ada/make_aligning_type. */
3177 if (code
== ADDR_EXPR
3178 && TREE_CODE (TREE_OPERAND (exp
, 0)) == PLACEHOLDER_EXPR
)
3180 push_without_duplicates (exp
, refs
);
3184 /* Fall through... */
3186 case tcc_exceptional
:
3189 case tcc_comparison
:
3191 for (i
= 0; i
< TREE_CODE_LENGTH (code
); i
++)
3192 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3196 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3197 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3205 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3206 return a tree with all occurrences of references to F in a
3207 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3208 CONST_DECLs. Note that we assume here that EXP contains only
3209 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3210 occurring only in their argument list. */
3213 substitute_in_expr (tree exp
, tree f
, tree r
)
3215 enum tree_code code
= TREE_CODE (exp
);
3216 tree op0
, op1
, op2
, op3
;
3219 /* We handle TREE_LIST and COMPONENT_REF separately. */
3220 if (code
== TREE_LIST
)
3222 op0
= SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp
), f
, r
);
3223 op1
= SUBSTITUTE_IN_EXPR (TREE_VALUE (exp
), f
, r
);
3224 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3227 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3229 else if (code
== COMPONENT_REF
)
3233 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3234 and it is the right field, replace it with R. */
3235 for (inner
= TREE_OPERAND (exp
, 0);
3236 REFERENCE_CLASS_P (inner
);
3237 inner
= TREE_OPERAND (inner
, 0))
3241 op1
= TREE_OPERAND (exp
, 1);
3243 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& op1
== f
)
3246 /* If this expression hasn't been completed let, leave it alone. */
3247 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& !TREE_TYPE (inner
))
3250 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3251 if (op0
== TREE_OPERAND (exp
, 0))
3255 = fold_build3 (COMPONENT_REF
, TREE_TYPE (exp
), op0
, op1
, NULL_TREE
);
3258 switch (TREE_CODE_CLASS (code
))
3263 case tcc_declaration
:
3269 case tcc_expression
:
3273 /* Fall through... */
3275 case tcc_exceptional
:
3278 case tcc_comparison
:
3280 switch (TREE_CODE_LENGTH (code
))
3286 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3287 if (op0
== TREE_OPERAND (exp
, 0))
3290 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3294 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3295 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3297 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3300 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3304 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3305 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3306 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3308 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3309 && op2
== TREE_OPERAND (exp
, 2))
3312 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3316 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3317 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3318 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3319 op3
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 3), f
, r
);
3321 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3322 && op2
== TREE_OPERAND (exp
, 2)
3323 && op3
== TREE_OPERAND (exp
, 3))
3327 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3339 new_tree
= NULL_TREE
;
3341 /* If we are trying to replace F with a constant, inline back
3342 functions which do nothing else than computing a value from
3343 the arguments they are passed. This makes it possible to
3344 fold partially or entirely the replacement expression. */
3345 if (CONSTANT_CLASS_P (r
) && code
== CALL_EXPR
)
3347 tree t
= maybe_inline_call_in_expr (exp
);
3349 return SUBSTITUTE_IN_EXPR (t
, f
, r
);
3352 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3354 tree op
= TREE_OPERAND (exp
, i
);
3355 tree new_op
= SUBSTITUTE_IN_EXPR (op
, f
, r
);
3359 new_tree
= copy_node (exp
);
3360 TREE_OPERAND (new_tree
, i
) = new_op
;
3366 new_tree
= fold (new_tree
);
3367 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3368 process_call_operands (new_tree
);
3379 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3381 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3382 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3387 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3388 for it within OBJ, a tree that is an object or a chain of references. */
3391 substitute_placeholder_in_expr (tree exp
, tree obj
)
3393 enum tree_code code
= TREE_CODE (exp
);
3394 tree op0
, op1
, op2
, op3
;
3397 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3398 in the chain of OBJ. */
3399 if (code
== PLACEHOLDER_EXPR
)
3401 tree need_type
= TYPE_MAIN_VARIANT (TREE_TYPE (exp
));
3404 for (elt
= obj
; elt
!= 0;
3405 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3406 || TREE_CODE (elt
) == COND_EXPR
)
3407 ? TREE_OPERAND (elt
, 1)
3408 : (REFERENCE_CLASS_P (elt
)
3409 || UNARY_CLASS_P (elt
)
3410 || BINARY_CLASS_P (elt
)
3411 || VL_EXP_CLASS_P (elt
)
3412 || EXPRESSION_CLASS_P (elt
))
3413 ? TREE_OPERAND (elt
, 0) : 0))
3414 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt
)) == need_type
)
3417 for (elt
= obj
; elt
!= 0;
3418 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3419 || TREE_CODE (elt
) == COND_EXPR
)
3420 ? TREE_OPERAND (elt
, 1)
3421 : (REFERENCE_CLASS_P (elt
)
3422 || UNARY_CLASS_P (elt
)
3423 || BINARY_CLASS_P (elt
)
3424 || VL_EXP_CLASS_P (elt
)
3425 || EXPRESSION_CLASS_P (elt
))
3426 ? TREE_OPERAND (elt
, 0) : 0))
3427 if (POINTER_TYPE_P (TREE_TYPE (elt
))
3428 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt
)))
3430 return fold_build1 (INDIRECT_REF
, need_type
, elt
);
3432 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3433 survives until RTL generation, there will be an error. */
3437 /* TREE_LIST is special because we need to look at TREE_VALUE
3438 and TREE_CHAIN, not TREE_OPERANDS. */
3439 else if (code
== TREE_LIST
)
3441 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), obj
);
3442 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), obj
);
3443 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3446 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3449 switch (TREE_CODE_CLASS (code
))
3452 case tcc_declaration
:
3455 case tcc_exceptional
:
3458 case tcc_comparison
:
3459 case tcc_expression
:
3462 switch (TREE_CODE_LENGTH (code
))
3468 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3469 if (op0
== TREE_OPERAND (exp
, 0))
3472 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3476 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3477 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3479 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3482 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3486 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3487 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3488 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3490 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3491 && op2
== TREE_OPERAND (exp
, 2))
3494 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3498 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3499 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3500 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3501 op3
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 3), obj
);
3503 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3504 && op2
== TREE_OPERAND (exp
, 2)
3505 && op3
== TREE_OPERAND (exp
, 3))
3509 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3521 new_tree
= NULL_TREE
;
3523 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3525 tree op
= TREE_OPERAND (exp
, i
);
3526 tree new_op
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (op
, obj
);
3530 new_tree
= copy_node (exp
);
3531 TREE_OPERAND (new_tree
, i
) = new_op
;
3537 new_tree
= fold (new_tree
);
3538 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3539 process_call_operands (new_tree
);
3550 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3552 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3553 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3558 /* Stabilize a reference so that we can use it any number of times
3559 without causing its operands to be evaluated more than once.
3560 Returns the stabilized reference. This works by means of save_expr,
3561 so see the caveats in the comments about save_expr.
3563 Also allows conversion expressions whose operands are references.
3564 Any other kind of expression is returned unchanged. */
3567 stabilize_reference (tree ref
)
3570 enum tree_code code
= TREE_CODE (ref
);
3577 /* No action is needed in this case. */
3582 case FIX_TRUNC_EXPR
:
3583 result
= build_nt (code
, stabilize_reference (TREE_OPERAND (ref
, 0)));
3587 result
= build_nt (INDIRECT_REF
,
3588 stabilize_reference_1 (TREE_OPERAND (ref
, 0)));
3592 result
= build_nt (COMPONENT_REF
,
3593 stabilize_reference (TREE_OPERAND (ref
, 0)),
3594 TREE_OPERAND (ref
, 1), NULL_TREE
);
3598 result
= build_nt (BIT_FIELD_REF
,
3599 stabilize_reference (TREE_OPERAND (ref
, 0)),
3600 TREE_OPERAND (ref
, 1), TREE_OPERAND (ref
, 2));
3604 result
= build_nt (ARRAY_REF
,
3605 stabilize_reference (TREE_OPERAND (ref
, 0)),
3606 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3607 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
3610 case ARRAY_RANGE_REF
:
3611 result
= build_nt (ARRAY_RANGE_REF
,
3612 stabilize_reference (TREE_OPERAND (ref
, 0)),
3613 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3614 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
3618 /* We cannot wrap the first expression in a SAVE_EXPR, as then
3619 it wouldn't be ignored. This matters when dealing with
3621 return stabilize_reference_1 (ref
);
3623 /* If arg isn't a kind of lvalue we recognize, make no change.
3624 Caller should recognize the error for an invalid lvalue. */
3629 return error_mark_node
;
3632 TREE_TYPE (result
) = TREE_TYPE (ref
);
3633 TREE_READONLY (result
) = TREE_READONLY (ref
);
3634 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (ref
);
3635 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (ref
);
3640 /* Subroutine of stabilize_reference; this is called for subtrees of
3641 references. Any expression with side-effects must be put in a SAVE_EXPR
3642 to ensure that it is only evaluated once.
3644 We don't put SAVE_EXPR nodes around everything, because assigning very
3645 simple expressions to temporaries causes us to miss good opportunities
3646 for optimizations. Among other things, the opportunity to fold in the
3647 addition of a constant into an addressing mode often gets lost, e.g.
3648 "y[i+1] += x;". In general, we take the approach that we should not make
3649 an assignment unless we are forced into it - i.e., that any non-side effect
3650 operator should be allowed, and that cse should take care of coalescing
3651 multiple utterances of the same expression should that prove fruitful. */
3654 stabilize_reference_1 (tree e
)
3657 enum tree_code code
= TREE_CODE (e
);
3659 /* We cannot ignore const expressions because it might be a reference
3660 to a const array but whose index contains side-effects. But we can
3661 ignore things that are actual constant or that already have been
3662 handled by this function. */
3664 if (tree_invariant_p (e
))
3667 switch (TREE_CODE_CLASS (code
))
3669 case tcc_exceptional
:
3671 case tcc_declaration
:
3672 case tcc_comparison
:
3674 case tcc_expression
:
3677 /* If the expression has side-effects, then encase it in a SAVE_EXPR
3678 so that it will only be evaluated once. */
3679 /* The reference (r) and comparison (<) classes could be handled as
3680 below, but it is generally faster to only evaluate them once. */
3681 if (TREE_SIDE_EFFECTS (e
))
3682 return save_expr (e
);
3686 /* Constants need no processing. In fact, we should never reach
3691 /* Division is slow and tends to be compiled with jumps,
3692 especially the division by powers of 2 that is often
3693 found inside of an array reference. So do it just once. */
3694 if (code
== TRUNC_DIV_EXPR
|| code
== TRUNC_MOD_EXPR
3695 || code
== FLOOR_DIV_EXPR
|| code
== FLOOR_MOD_EXPR
3696 || code
== CEIL_DIV_EXPR
|| code
== CEIL_MOD_EXPR
3697 || code
== ROUND_DIV_EXPR
|| code
== ROUND_MOD_EXPR
)
3698 return save_expr (e
);
3699 /* Recursively stabilize each operand. */
3700 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)),
3701 stabilize_reference_1 (TREE_OPERAND (e
, 1)));
3705 /* Recursively stabilize each operand. */
3706 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)));
3713 TREE_TYPE (result
) = TREE_TYPE (e
);
3714 TREE_READONLY (result
) = TREE_READONLY (e
);
3715 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (e
);
3716 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (e
);
3721 /* Low-level constructors for expressions. */
3723 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
3724 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
3727 recompute_tree_invariant_for_addr_expr (tree t
)
3730 bool tc
= true, se
= false;
3732 /* We started out assuming this address is both invariant and constant, but
3733 does not have side effects. Now go down any handled components and see if
3734 any of them involve offsets that are either non-constant or non-invariant.
3735 Also check for side-effects.
3737 ??? Note that this code makes no attempt to deal with the case where
3738 taking the address of something causes a copy due to misalignment. */
3740 #define UPDATE_FLAGS(NODE) \
3741 do { tree _node = (NODE); \
3742 if (_node && !TREE_CONSTANT (_node)) tc = false; \
3743 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
3745 for (node
= TREE_OPERAND (t
, 0); handled_component_p (node
);
3746 node
= TREE_OPERAND (node
, 0))
3748 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
3749 array reference (probably made temporarily by the G++ front end),
3750 so ignore all the operands. */
3751 if ((TREE_CODE (node
) == ARRAY_REF
3752 || TREE_CODE (node
) == ARRAY_RANGE_REF
)
3753 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node
, 0))) == ARRAY_TYPE
)
3755 UPDATE_FLAGS (TREE_OPERAND (node
, 1));
3756 if (TREE_OPERAND (node
, 2))
3757 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
3758 if (TREE_OPERAND (node
, 3))
3759 UPDATE_FLAGS (TREE_OPERAND (node
, 3));
3761 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
3762 FIELD_DECL, apparently. The G++ front end can put something else
3763 there, at least temporarily. */
3764 else if (TREE_CODE (node
) == COMPONENT_REF
3765 && TREE_CODE (TREE_OPERAND (node
, 1)) == FIELD_DECL
)
3767 if (TREE_OPERAND (node
, 2))
3768 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
3772 node
= lang_hooks
.expr_to_decl (node
, &tc
, &se
);
3774 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
3775 the address, since &(*a)->b is a form of addition. If it's a constant, the
3776 address is constant too. If it's a decl, its address is constant if the
3777 decl is static. Everything else is not constant and, furthermore,
3778 taking the address of a volatile variable is not volatile. */
3779 if (TREE_CODE (node
) == INDIRECT_REF
3780 || TREE_CODE (node
) == MEM_REF
)
3781 UPDATE_FLAGS (TREE_OPERAND (node
, 0));
3782 else if (CONSTANT_CLASS_P (node
))
3784 else if (DECL_P (node
))
3785 tc
&= (staticp (node
) != NULL_TREE
);
3789 se
|= TREE_SIDE_EFFECTS (node
);
3793 TREE_CONSTANT (t
) = tc
;
3794 TREE_SIDE_EFFECTS (t
) = se
;
3798 /* Build an expression of code CODE, data type TYPE, and operands as
3799 specified. Expressions and reference nodes can be created this way.
3800 Constants, decls, types and misc nodes cannot be.
3802 We define 5 non-variadic functions, from 0 to 4 arguments. This is
3803 enough for all extant tree codes. */
3806 build0_stat (enum tree_code code
, tree tt MEM_STAT_DECL
)
3810 gcc_assert (TREE_CODE_LENGTH (code
) == 0);
3812 t
= make_node_stat (code PASS_MEM_STAT
);
3819 build1_stat (enum tree_code code
, tree type
, tree node MEM_STAT_DECL
)
3821 int length
= sizeof (struct tree_exp
);
3824 record_node_allocation_statistics (code
, length
);
3826 gcc_assert (TREE_CODE_LENGTH (code
) == 1);
3828 t
= ggc_alloc_tree_node_stat (length PASS_MEM_STAT
);
3830 memset (t
, 0, sizeof (struct tree_common
));
3832 TREE_SET_CODE (t
, code
);
3834 TREE_TYPE (t
) = type
;
3835 SET_EXPR_LOCATION (t
, UNKNOWN_LOCATION
);
3836 TREE_OPERAND (t
, 0) = node
;
3837 if (node
&& !TYPE_P (node
))
3839 TREE_SIDE_EFFECTS (t
) = TREE_SIDE_EFFECTS (node
);
3840 TREE_READONLY (t
) = TREE_READONLY (node
);
3843 if (TREE_CODE_CLASS (code
) == tcc_statement
)
3844 TREE_SIDE_EFFECTS (t
) = 1;
3848 /* All of these have side-effects, no matter what their
3850 TREE_SIDE_EFFECTS (t
) = 1;
3851 TREE_READONLY (t
) = 0;
3855 /* Whether a dereference is readonly has nothing to do with whether
3856 its operand is readonly. */
3857 TREE_READONLY (t
) = 0;
3862 recompute_tree_invariant_for_addr_expr (t
);
3866 if ((TREE_CODE_CLASS (code
) == tcc_unary
|| code
== VIEW_CONVERT_EXPR
)
3867 && node
&& !TYPE_P (node
)
3868 && TREE_CONSTANT (node
))
3869 TREE_CONSTANT (t
) = 1;
3870 if (TREE_CODE_CLASS (code
) == tcc_reference
3871 && node
&& TREE_THIS_VOLATILE (node
))
3872 TREE_THIS_VOLATILE (t
) = 1;
3879 #define PROCESS_ARG(N) \
3881 TREE_OPERAND (t, N) = arg##N; \
3882 if (arg##N &&!TYPE_P (arg##N)) \
3884 if (TREE_SIDE_EFFECTS (arg##N)) \
3886 if (!TREE_READONLY (arg##N) \
3887 && !CONSTANT_CLASS_P (arg##N)) \
3888 (void) (read_only = 0); \
3889 if (!TREE_CONSTANT (arg##N)) \
3890 (void) (constant = 0); \
3895 build2_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1 MEM_STAT_DECL
)
3897 bool constant
, read_only
, side_effects
;
3900 gcc_assert (TREE_CODE_LENGTH (code
) == 2);
3902 if ((code
== MINUS_EXPR
|| code
== PLUS_EXPR
|| code
== MULT_EXPR
)
3903 && arg0
&& arg1
&& tt
&& POINTER_TYPE_P (tt
)
3904 /* When sizetype precision doesn't match that of pointers
3905 we need to be able to build explicit extensions or truncations
3906 of the offset argument. */
3907 && TYPE_PRECISION (sizetype
) == TYPE_PRECISION (tt
))
3908 gcc_assert (TREE_CODE (arg0
) == INTEGER_CST
3909 && TREE_CODE (arg1
) == INTEGER_CST
);
3911 if (code
== POINTER_PLUS_EXPR
&& arg0
&& arg1
&& tt
)
3912 gcc_assert (POINTER_TYPE_P (tt
) && POINTER_TYPE_P (TREE_TYPE (arg0
))
3913 && ptrofftype_p (TREE_TYPE (arg1
)));
3915 t
= make_node_stat (code PASS_MEM_STAT
);
3918 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
3919 result based on those same flags for the arguments. But if the
3920 arguments aren't really even `tree' expressions, we shouldn't be trying
3923 /* Expressions without side effects may be constant if their
3924 arguments are as well. */
3925 constant
= (TREE_CODE_CLASS (code
) == tcc_comparison
3926 || TREE_CODE_CLASS (code
) == tcc_binary
);
3928 side_effects
= TREE_SIDE_EFFECTS (t
);
3933 TREE_READONLY (t
) = read_only
;
3934 TREE_CONSTANT (t
) = constant
;
3935 TREE_SIDE_EFFECTS (t
) = side_effects
;
3936 TREE_THIS_VOLATILE (t
)
3937 = (TREE_CODE_CLASS (code
) == tcc_reference
3938 && arg0
&& TREE_THIS_VOLATILE (arg0
));
3945 build3_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
3946 tree arg2 MEM_STAT_DECL
)
3948 bool constant
, read_only
, side_effects
;
3951 gcc_assert (TREE_CODE_LENGTH (code
) == 3);
3952 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
3954 t
= make_node_stat (code PASS_MEM_STAT
);
3959 /* As a special exception, if COND_EXPR has NULL branches, we
3960 assume that it is a gimple statement and always consider
3961 it to have side effects. */
3962 if (code
== COND_EXPR
3963 && tt
== void_type_node
3964 && arg1
== NULL_TREE
3965 && arg2
== NULL_TREE
)
3966 side_effects
= true;
3968 side_effects
= TREE_SIDE_EFFECTS (t
);
3974 if (code
== COND_EXPR
)
3975 TREE_READONLY (t
) = read_only
;
3977 TREE_SIDE_EFFECTS (t
) = side_effects
;
3978 TREE_THIS_VOLATILE (t
)
3979 = (TREE_CODE_CLASS (code
) == tcc_reference
3980 && arg0
&& TREE_THIS_VOLATILE (arg0
));
3986 build4_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
3987 tree arg2
, tree arg3 MEM_STAT_DECL
)
3989 bool constant
, read_only
, side_effects
;
3992 gcc_assert (TREE_CODE_LENGTH (code
) == 4);
3994 t
= make_node_stat (code PASS_MEM_STAT
);
3997 side_effects
= TREE_SIDE_EFFECTS (t
);
4004 TREE_SIDE_EFFECTS (t
) = side_effects
;
4005 TREE_THIS_VOLATILE (t
)
4006 = (TREE_CODE_CLASS (code
) == tcc_reference
4007 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4013 build5_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
4014 tree arg2
, tree arg3
, tree arg4 MEM_STAT_DECL
)
4016 bool constant
, read_only
, side_effects
;
4019 gcc_assert (TREE_CODE_LENGTH (code
) == 5);
4021 t
= make_node_stat (code PASS_MEM_STAT
);
4024 side_effects
= TREE_SIDE_EFFECTS (t
);
4032 TREE_SIDE_EFFECTS (t
) = side_effects
;
4033 TREE_THIS_VOLATILE (t
)
4034 = (TREE_CODE_CLASS (code
) == tcc_reference
4035 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4040 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4041 on the pointer PTR. */
4044 build_simple_mem_ref_loc (location_t loc
, tree ptr
)
4046 HOST_WIDE_INT offset
= 0;
4047 tree ptype
= TREE_TYPE (ptr
);
4049 /* For convenience allow addresses that collapse to a simple base
4051 if (TREE_CODE (ptr
) == ADDR_EXPR
4052 && (handled_component_p (TREE_OPERAND (ptr
, 0))
4053 || TREE_CODE (TREE_OPERAND (ptr
, 0)) == MEM_REF
))
4055 ptr
= get_addr_base_and_unit_offset (TREE_OPERAND (ptr
, 0), &offset
);
4057 ptr
= build_fold_addr_expr (ptr
);
4058 gcc_assert (is_gimple_reg (ptr
) || is_gimple_min_invariant (ptr
));
4060 tem
= build2 (MEM_REF
, TREE_TYPE (ptype
),
4061 ptr
, build_int_cst (ptype
, offset
));
4062 SET_EXPR_LOCATION (tem
, loc
);
4066 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4069 mem_ref_offset (const_tree t
)
4071 tree toff
= TREE_OPERAND (t
, 1);
4072 return tree_to_double_int (toff
).sext (TYPE_PRECISION (TREE_TYPE (toff
)));
4075 /* Return the pointer-type relevant for TBAA purposes from the
4076 gimple memory reference tree T. This is the type to be used for
4077 the offset operand of MEM_REF or TARGET_MEM_REF replacements of T. */
4080 reference_alias_ptr_type (const_tree t
)
4082 const_tree base
= t
;
4083 while (handled_component_p (base
))
4084 base
= TREE_OPERAND (base
, 0);
4085 if (TREE_CODE (base
) == MEM_REF
)
4086 return TREE_TYPE (TREE_OPERAND (base
, 1));
4087 else if (TREE_CODE (base
) == TARGET_MEM_REF
)
4088 return TREE_TYPE (TMR_OFFSET (base
));
4090 return build_pointer_type (TYPE_MAIN_VARIANT (TREE_TYPE (base
)));
4093 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4094 offsetted by OFFSET units. */
4097 build_invariant_address (tree type
, tree base
, HOST_WIDE_INT offset
)
4099 tree ref
= fold_build2 (MEM_REF
, TREE_TYPE (type
),
4100 build_fold_addr_expr (base
),
4101 build_int_cst (ptr_type_node
, offset
));
4102 tree addr
= build1 (ADDR_EXPR
, type
, ref
);
4103 recompute_tree_invariant_for_addr_expr (addr
);
4107 /* Similar except don't specify the TREE_TYPE
4108 and leave the TREE_SIDE_EFFECTS as 0.
4109 It is permissible for arguments to be null,
4110 or even garbage if their values do not matter. */
4113 build_nt (enum tree_code code
, ...)
4120 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
4124 t
= make_node (code
);
4125 length
= TREE_CODE_LENGTH (code
);
4127 for (i
= 0; i
< length
; i
++)
4128 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
4134 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4138 build_nt_call_vec (tree fn
, vec
<tree
, va_gc
> *args
)
4143 ret
= build_vl_exp (CALL_EXPR
, vec_safe_length (args
) + 3);
4144 CALL_EXPR_FN (ret
) = fn
;
4145 CALL_EXPR_STATIC_CHAIN (ret
) = NULL_TREE
;
4146 FOR_EACH_VEC_SAFE_ELT (args
, ix
, t
)
4147 CALL_EXPR_ARG (ret
, ix
) = t
;
4151 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4152 We do NOT enter this node in any sort of symbol table.
4154 LOC is the location of the decl.
4156 layout_decl is used to set up the decl's storage layout.
4157 Other slots are initialized to 0 or null pointers. */
4160 build_decl_stat (location_t loc
, enum tree_code code
, tree name
,
4161 tree type MEM_STAT_DECL
)
4165 t
= make_node_stat (code PASS_MEM_STAT
);
4166 DECL_SOURCE_LOCATION (t
) = loc
;
4168 /* if (type == error_mark_node)
4169 type = integer_type_node; */
4170 /* That is not done, deliberately, so that having error_mark_node
4171 as the type can suppress useless errors in the use of this variable. */
4173 DECL_NAME (t
) = name
;
4174 TREE_TYPE (t
) = type
;
4176 if (code
== VAR_DECL
|| code
== PARM_DECL
|| code
== RESULT_DECL
)
4182 /* Builds and returns function declaration with NAME and TYPE. */
4185 build_fn_decl (const char *name
, tree type
)
4187 tree id
= get_identifier (name
);
4188 tree decl
= build_decl (input_location
, FUNCTION_DECL
, id
, type
);
4190 DECL_EXTERNAL (decl
) = 1;
4191 TREE_PUBLIC (decl
) = 1;
4192 DECL_ARTIFICIAL (decl
) = 1;
4193 TREE_NOTHROW (decl
) = 1;
4198 vec
<tree
, va_gc
> *all_translation_units
;
4200 /* Builds a new translation-unit decl with name NAME, queues it in the
4201 global list of translation-unit decls and returns it. */
4204 build_translation_unit_decl (tree name
)
4206 tree tu
= build_decl (UNKNOWN_LOCATION
, TRANSLATION_UNIT_DECL
,
4208 TRANSLATION_UNIT_LANGUAGE (tu
) = lang_hooks
.name
;
4209 vec_safe_push (all_translation_units
, tu
);
4214 /* BLOCK nodes are used to represent the structure of binding contours
4215 and declarations, once those contours have been exited and their contents
4216 compiled. This information is used for outputting debugging info. */
4219 build_block (tree vars
, tree subblocks
, tree supercontext
, tree chain
)
4221 tree block
= make_node (BLOCK
);
4223 BLOCK_VARS (block
) = vars
;
4224 BLOCK_SUBBLOCKS (block
) = subblocks
;
4225 BLOCK_SUPERCONTEXT (block
) = supercontext
;
4226 BLOCK_CHAIN (block
) = chain
;
4231 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4233 LOC is the location to use in tree T. */
4236 protected_set_expr_location (tree t
, location_t loc
)
4238 if (t
&& CAN_HAVE_LOCATION_P (t
))
4239 SET_EXPR_LOCATION (t
, loc
);
4242 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
4246 build_decl_attribute_variant (tree ddecl
, tree attribute
)
4248 DECL_ATTRIBUTES (ddecl
) = attribute
;
4252 /* Borrowed from hashtab.c iterative_hash implementation. */
4253 #define mix(a,b,c) \
4255 a -= b; a -= c; a ^= (c>>13); \
4256 b -= c; b -= a; b ^= (a<< 8); \
4257 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
4258 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
4259 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
4260 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
4261 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
4262 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
4263 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
4267 /* Produce good hash value combining VAL and VAL2. */
4269 iterative_hash_hashval_t (hashval_t val
, hashval_t val2
)
4271 /* the golden ratio; an arbitrary value. */
4272 hashval_t a
= 0x9e3779b9;
4278 /* Produce good hash value combining VAL and VAL2. */
4280 iterative_hash_host_wide_int (HOST_WIDE_INT val
, hashval_t val2
)
4282 if (sizeof (HOST_WIDE_INT
) == sizeof (hashval_t
))
4283 return iterative_hash_hashval_t (val
, val2
);
4286 hashval_t a
= (hashval_t
) val
;
4287 /* Avoid warnings about shifting of more than the width of the type on
4288 hosts that won't execute this path. */
4290 hashval_t b
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 8 + zero
));
4292 if (sizeof (HOST_WIDE_INT
) > 2 * sizeof (hashval_t
))
4294 hashval_t a
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 16 + zero
));
4295 hashval_t b
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 24 + zero
));
4302 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4303 is ATTRIBUTE and its qualifiers are QUALS.
4305 Record such modified types already made so we don't make duplicates. */
4308 build_type_attribute_qual_variant (tree ttype
, tree attribute
, int quals
)
4310 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype
), attribute
))
4312 hashval_t hashcode
= 0;
4314 enum tree_code code
= TREE_CODE (ttype
);
4316 /* Building a distinct copy of a tagged type is inappropriate; it
4317 causes breakage in code that expects there to be a one-to-one
4318 relationship between a struct and its fields.
4319 build_duplicate_type is another solution (as used in
4320 handle_transparent_union_attribute), but that doesn't play well
4321 with the stronger C++ type identity model. */
4322 if (TREE_CODE (ttype
) == RECORD_TYPE
4323 || TREE_CODE (ttype
) == UNION_TYPE
4324 || TREE_CODE (ttype
) == QUAL_UNION_TYPE
4325 || TREE_CODE (ttype
) == ENUMERAL_TYPE
)
4327 warning (OPT_Wattributes
,
4328 "ignoring attributes applied to %qT after definition",
4329 TYPE_MAIN_VARIANT (ttype
));
4330 return build_qualified_type (ttype
, quals
);
4333 ttype
= build_qualified_type (ttype
, TYPE_UNQUALIFIED
);
4334 ntype
= build_distinct_type_copy (ttype
);
4336 TYPE_ATTRIBUTES (ntype
) = attribute
;
4338 hashcode
= iterative_hash_object (code
, hashcode
);
4339 if (TREE_TYPE (ntype
))
4340 hashcode
= iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype
)),
4342 hashcode
= attribute_hash_list (attribute
, hashcode
);
4344 switch (TREE_CODE (ntype
))
4347 hashcode
= type_hash_list (TYPE_ARG_TYPES (ntype
), hashcode
);
4350 if (TYPE_DOMAIN (ntype
))
4351 hashcode
= iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype
)),
4355 hashcode
= iterative_hash_object
4356 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype
)), hashcode
);
4357 hashcode
= iterative_hash_object
4358 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype
)), hashcode
);
4361 case FIXED_POINT_TYPE
:
4363 unsigned int precision
= TYPE_PRECISION (ntype
);
4364 hashcode
= iterative_hash_object (precision
, hashcode
);
4371 ntype
= type_hash_canon (hashcode
, ntype
);
4373 /* If the target-dependent attributes make NTYPE different from
4374 its canonical type, we will need to use structural equality
4375 checks for this type. */
4376 if (TYPE_STRUCTURAL_EQUALITY_P (ttype
)
4377 || !comp_type_attributes (ntype
, ttype
))
4378 SET_TYPE_STRUCTURAL_EQUALITY (ntype
);
4379 else if (TYPE_CANONICAL (ntype
) == ntype
)
4380 TYPE_CANONICAL (ntype
) = TYPE_CANONICAL (ttype
);
4382 ttype
= build_qualified_type (ntype
, quals
);
4384 else if (TYPE_QUALS (ttype
) != quals
)
4385 ttype
= build_qualified_type (ttype
, quals
);
4390 /* Compare two attributes for their value identity. Return true if the
4391 attribute values are known to be equal; otherwise return false.
4395 attribute_value_equal (const_tree attr1
, const_tree attr2
)
4397 if (TREE_VALUE (attr1
) == TREE_VALUE (attr2
))
4400 if (TREE_VALUE (attr1
) != NULL_TREE
4401 && TREE_CODE (TREE_VALUE (attr1
)) == TREE_LIST
4402 && TREE_VALUE (attr2
) != NULL
4403 && TREE_CODE (TREE_VALUE (attr2
)) == TREE_LIST
)
4404 return (simple_cst_list_equal (TREE_VALUE (attr1
),
4405 TREE_VALUE (attr2
)) == 1);
4407 return (simple_cst_equal (TREE_VALUE (attr1
), TREE_VALUE (attr2
)) == 1);
4410 /* Return 0 if the attributes for two types are incompatible, 1 if they
4411 are compatible, and 2 if they are nearly compatible (which causes a
4412 warning to be generated). */
4414 comp_type_attributes (const_tree type1
, const_tree type2
)
4416 const_tree a1
= TYPE_ATTRIBUTES (type1
);
4417 const_tree a2
= TYPE_ATTRIBUTES (type2
);
4422 for (a
= a1
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
4424 const struct attribute_spec
*as
;
4427 as
= lookup_attribute_spec (get_attribute_name (a
));
4428 if (!as
|| as
->affects_type_identity
== false)
4431 attr
= lookup_attribute (as
->name
, CONST_CAST_TREE (a2
));
4432 if (!attr
|| !attribute_value_equal (a
, attr
))
4437 for (a
= a2
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
4439 const struct attribute_spec
*as
;
4441 as
= lookup_attribute_spec (get_attribute_name (a
));
4442 if (!as
|| as
->affects_type_identity
== false)
4445 if (!lookup_attribute (as
->name
, CONST_CAST_TREE (a1
)))
4447 /* We don't need to compare trees again, as we did this
4448 already in first loop. */
4450 /* All types - affecting identity - are equal, so
4451 there is no need to call target hook for comparison. */
4455 /* As some type combinations - like default calling-convention - might
4456 be compatible, we have to call the target hook to get the final result. */
4457 return targetm
.comp_type_attributes (type1
, type2
);
4460 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4463 Record such modified types already made so we don't make duplicates. */
4466 build_type_attribute_variant (tree ttype
, tree attribute
)
4468 return build_type_attribute_qual_variant (ttype
, attribute
,
4469 TYPE_QUALS (ttype
));
4473 /* Reset the expression *EXPR_P, a size or position.
4475 ??? We could reset all non-constant sizes or positions. But it's cheap
4476 enough to not do so and refrain from adding workarounds to dwarf2out.c.
4478 We need to reset self-referential sizes or positions because they cannot
4479 be gimplified and thus can contain a CALL_EXPR after the gimplification
4480 is finished, which will run afoul of LTO streaming. And they need to be
4481 reset to something essentially dummy but not constant, so as to preserve
4482 the properties of the object they are attached to. */
4485 free_lang_data_in_one_sizepos (tree
*expr_p
)
4487 tree expr
= *expr_p
;
4488 if (CONTAINS_PLACEHOLDER_P (expr
))
4489 *expr_p
= build0 (PLACEHOLDER_EXPR
, TREE_TYPE (expr
));
4493 /* Reset all the fields in a binfo node BINFO. We only keep
4494 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
4497 free_lang_data_in_binfo (tree binfo
)
4502 gcc_assert (TREE_CODE (binfo
) == TREE_BINFO
);
4504 BINFO_VIRTUALS (binfo
) = NULL_TREE
;
4505 BINFO_BASE_ACCESSES (binfo
) = NULL
;
4506 BINFO_INHERITANCE_CHAIN (binfo
) = NULL_TREE
;
4507 BINFO_SUBVTT_INDEX (binfo
) = NULL_TREE
;
4509 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo
), i
, t
)
4510 free_lang_data_in_binfo (t
);
4514 /* Reset all language specific information still present in TYPE. */
4517 free_lang_data_in_type (tree type
)
4519 gcc_assert (TYPE_P (type
));
4521 /* Give the FE a chance to remove its own data first. */
4522 lang_hooks
.free_lang_data (type
);
4524 TREE_LANG_FLAG_0 (type
) = 0;
4525 TREE_LANG_FLAG_1 (type
) = 0;
4526 TREE_LANG_FLAG_2 (type
) = 0;
4527 TREE_LANG_FLAG_3 (type
) = 0;
4528 TREE_LANG_FLAG_4 (type
) = 0;
4529 TREE_LANG_FLAG_5 (type
) = 0;
4530 TREE_LANG_FLAG_6 (type
) = 0;
4532 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4534 /* Remove the const and volatile qualifiers from arguments. The
4535 C++ front end removes them, but the C front end does not,
4536 leading to false ODR violation errors when merging two
4537 instances of the same function signature compiled by
4538 different front ends. */
4541 for (p
= TYPE_ARG_TYPES (type
); p
; p
= TREE_CHAIN (p
))
4543 tree arg_type
= TREE_VALUE (p
);
4545 if (TYPE_READONLY (arg_type
) || TYPE_VOLATILE (arg_type
))
4547 int quals
= TYPE_QUALS (arg_type
)
4549 & ~TYPE_QUAL_VOLATILE
;
4550 TREE_VALUE (p
) = build_qualified_type (arg_type
, quals
);
4551 free_lang_data_in_type (TREE_VALUE (p
));
4556 /* Remove members that are not actually FIELD_DECLs from the field
4557 list of an aggregate. These occur in C++. */
4558 if (RECORD_OR_UNION_TYPE_P (type
))
4562 /* Note that TYPE_FIELDS can be shared across distinct
4563 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
4564 to be removed, we cannot set its TREE_CHAIN to NULL.
4565 Otherwise, we would not be able to find all the other fields
4566 in the other instances of this TREE_TYPE.
4568 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
4570 member
= TYPE_FIELDS (type
);
4573 if (TREE_CODE (member
) == FIELD_DECL
4574 || TREE_CODE (member
) == TYPE_DECL
)
4577 TREE_CHAIN (prev
) = member
;
4579 TYPE_FIELDS (type
) = member
;
4583 member
= TREE_CHAIN (member
);
4587 TREE_CHAIN (prev
) = NULL_TREE
;
4589 TYPE_FIELDS (type
) = NULL_TREE
;
4591 TYPE_METHODS (type
) = NULL_TREE
;
4592 if (TYPE_BINFO (type
))
4593 free_lang_data_in_binfo (TYPE_BINFO (type
));
4597 /* For non-aggregate types, clear out the language slot (which
4598 overloads TYPE_BINFO). */
4599 TYPE_LANG_SLOT_1 (type
) = NULL_TREE
;
4601 if (INTEGRAL_TYPE_P (type
)
4602 || SCALAR_FLOAT_TYPE_P (type
)
4603 || FIXED_POINT_TYPE_P (type
))
4605 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type
));
4606 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type
));
4610 free_lang_data_in_one_sizepos (&TYPE_SIZE (type
));
4611 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type
));
4613 if (TYPE_CONTEXT (type
)
4614 && TREE_CODE (TYPE_CONTEXT (type
)) == BLOCK
)
4616 tree ctx
= TYPE_CONTEXT (type
);
4619 ctx
= BLOCK_SUPERCONTEXT (ctx
);
4621 while (ctx
&& TREE_CODE (ctx
) == BLOCK
);
4622 TYPE_CONTEXT (type
) = ctx
;
4627 /* Return true if DECL may need an assembler name to be set. */
4630 need_assembler_name_p (tree decl
)
4632 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
4633 if (TREE_CODE (decl
) != FUNCTION_DECL
4634 && TREE_CODE (decl
) != VAR_DECL
)
4637 /* If DECL already has its assembler name set, it does not need a
4639 if (!HAS_DECL_ASSEMBLER_NAME_P (decl
)
4640 || DECL_ASSEMBLER_NAME_SET_P (decl
))
4643 /* Abstract decls do not need an assembler name. */
4644 if (DECL_ABSTRACT (decl
))
4647 /* For VAR_DECLs, only static, public and external symbols need an
4649 if (TREE_CODE (decl
) == VAR_DECL
4650 && !TREE_STATIC (decl
)
4651 && !TREE_PUBLIC (decl
)
4652 && !DECL_EXTERNAL (decl
))
4655 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4657 /* Do not set assembler name on builtins. Allow RTL expansion to
4658 decide whether to expand inline or via a regular call. */
4659 if (DECL_BUILT_IN (decl
)
4660 && DECL_BUILT_IN_CLASS (decl
) != BUILT_IN_FRONTEND
)
4663 /* Functions represented in the callgraph need an assembler name. */
4664 if (cgraph_get_node (decl
) != NULL
)
4667 /* Unused and not public functions don't need an assembler name. */
4668 if (!TREE_USED (decl
) && !TREE_PUBLIC (decl
))
4676 /* Reset all language specific information still present in symbol
4680 free_lang_data_in_decl (tree decl
)
4682 gcc_assert (DECL_P (decl
));
4684 /* Give the FE a chance to remove its own data first. */
4685 lang_hooks
.free_lang_data (decl
);
4687 TREE_LANG_FLAG_0 (decl
) = 0;
4688 TREE_LANG_FLAG_1 (decl
) = 0;
4689 TREE_LANG_FLAG_2 (decl
) = 0;
4690 TREE_LANG_FLAG_3 (decl
) = 0;
4691 TREE_LANG_FLAG_4 (decl
) = 0;
4692 TREE_LANG_FLAG_5 (decl
) = 0;
4693 TREE_LANG_FLAG_6 (decl
) = 0;
4695 free_lang_data_in_one_sizepos (&DECL_SIZE (decl
));
4696 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl
));
4697 if (TREE_CODE (decl
) == FIELD_DECL
)
4699 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl
));
4700 if (TREE_CODE (DECL_CONTEXT (decl
)) == QUAL_UNION_TYPE
)
4701 DECL_QUALIFIER (decl
) = NULL_TREE
;
4704 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4706 if (gimple_has_body_p (decl
))
4710 /* If DECL has a gimple body, then the context for its
4711 arguments must be DECL. Otherwise, it doesn't really
4712 matter, as we will not be emitting any code for DECL. In
4713 general, there may be other instances of DECL created by
4714 the front end and since PARM_DECLs are generally shared,
4715 their DECL_CONTEXT changes as the replicas of DECL are
4716 created. The only time where DECL_CONTEXT is important
4717 is for the FUNCTION_DECLs that have a gimple body (since
4718 the PARM_DECL will be used in the function's body). */
4719 for (t
= DECL_ARGUMENTS (decl
); t
; t
= TREE_CHAIN (t
))
4720 DECL_CONTEXT (t
) = decl
;
4723 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
4724 At this point, it is not needed anymore. */
4725 DECL_SAVED_TREE (decl
) = NULL_TREE
;
4727 /* Clear the abstract origin if it refers to a method. Otherwise
4728 dwarf2out.c will ICE as we clear TYPE_METHODS and thus the
4729 origin will not be output correctly. */
4730 if (DECL_ABSTRACT_ORIGIN (decl
)
4731 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))
4732 && RECORD_OR_UNION_TYPE_P
4733 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))))
4734 DECL_ABSTRACT_ORIGIN (decl
) = NULL_TREE
;
4736 /* Sometimes the C++ frontend doesn't manage to transform a temporary
4737 DECL_VINDEX referring to itself into a vtable slot number as it
4738 should. Happens with functions that are copied and then forgotten
4739 about. Just clear it, it won't matter anymore. */
4740 if (DECL_VINDEX (decl
) && !host_integerp (DECL_VINDEX (decl
), 0))
4741 DECL_VINDEX (decl
) = NULL_TREE
;
4743 else if (TREE_CODE (decl
) == VAR_DECL
)
4745 if ((DECL_EXTERNAL (decl
)
4746 && (!TREE_STATIC (decl
) || !TREE_READONLY (decl
)))
4747 || (decl_function_context (decl
) && !TREE_STATIC (decl
)))
4748 DECL_INITIAL (decl
) = NULL_TREE
;
4750 else if (TREE_CODE (decl
) == TYPE_DECL
4751 || TREE_CODE (decl
) == FIELD_DECL
)
4752 DECL_INITIAL (decl
) = NULL_TREE
;
4753 else if (TREE_CODE (decl
) == TRANSLATION_UNIT_DECL
4754 && DECL_INITIAL (decl
)
4755 && TREE_CODE (DECL_INITIAL (decl
)) == BLOCK
)
4757 /* Strip builtins from the translation-unit BLOCK. We still have targets
4758 without builtin_decl_explicit support and also builtins are shared
4759 nodes and thus we can't use TREE_CHAIN in multiple lists. */
4760 tree
*nextp
= &BLOCK_VARS (DECL_INITIAL (decl
));
4764 if (TREE_CODE (var
) == FUNCTION_DECL
4765 && DECL_BUILT_IN (var
))
4766 *nextp
= TREE_CHAIN (var
);
4768 nextp
= &TREE_CHAIN (var
);
4774 /* Data used when collecting DECLs and TYPEs for language data removal. */
4776 struct free_lang_data_d
4778 /* Worklist to avoid excessive recursion. */
4781 /* Set of traversed objects. Used to avoid duplicate visits. */
4782 struct pointer_set_t
*pset
;
4784 /* Array of symbols to process with free_lang_data_in_decl. */
4787 /* Array of types to process with free_lang_data_in_type. */
4792 /* Save all language fields needed to generate proper debug information
4793 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
4796 save_debug_info_for_decl (tree t
)
4798 /*struct saved_debug_info_d *sdi;*/
4800 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& DECL_P (t
));
4802 /* FIXME. Partial implementation for saving debug info removed. */
4806 /* Save all language fields needed to generate proper debug information
4807 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
4810 save_debug_info_for_type (tree t
)
4812 /*struct saved_debug_info_d *sdi;*/
4814 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& TYPE_P (t
));
4816 /* FIXME. Partial implementation for saving debug info removed. */
4820 /* Add type or decl T to one of the list of tree nodes that need their
4821 language data removed. The lists are held inside FLD. */
4824 add_tree_to_fld_list (tree t
, struct free_lang_data_d
*fld
)
4828 fld
->decls
.safe_push (t
);
4829 if (debug_info_level
> DINFO_LEVEL_TERSE
)
4830 save_debug_info_for_decl (t
);
4832 else if (TYPE_P (t
))
4834 fld
->types
.safe_push (t
);
4835 if (debug_info_level
> DINFO_LEVEL_TERSE
)
4836 save_debug_info_for_type (t
);
4842 /* Push tree node T into FLD->WORKLIST. */
4845 fld_worklist_push (tree t
, struct free_lang_data_d
*fld
)
4847 if (t
&& !is_lang_specific (t
) && !pointer_set_contains (fld
->pset
, t
))
4848 fld
->worklist
.safe_push ((t
));
4852 /* Operand callback helper for free_lang_data_in_node. *TP is the
4853 subtree operand being considered. */
4856 find_decls_types_r (tree
*tp
, int *ws
, void *data
)
4859 struct free_lang_data_d
*fld
= (struct free_lang_data_d
*) data
;
4861 if (TREE_CODE (t
) == TREE_LIST
)
4864 /* Language specific nodes will be removed, so there is no need
4865 to gather anything under them. */
4866 if (is_lang_specific (t
))
4874 /* Note that walk_tree does not traverse every possible field in
4875 decls, so we have to do our own traversals here. */
4876 add_tree_to_fld_list (t
, fld
);
4878 fld_worklist_push (DECL_NAME (t
), fld
);
4879 fld_worklist_push (DECL_CONTEXT (t
), fld
);
4880 fld_worklist_push (DECL_SIZE (t
), fld
);
4881 fld_worklist_push (DECL_SIZE_UNIT (t
), fld
);
4883 /* We are going to remove everything under DECL_INITIAL for
4884 TYPE_DECLs. No point walking them. */
4885 if (TREE_CODE (t
) != TYPE_DECL
)
4886 fld_worklist_push (DECL_INITIAL (t
), fld
);
4888 fld_worklist_push (DECL_ATTRIBUTES (t
), fld
);
4889 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t
), fld
);
4891 if (TREE_CODE (t
) == FUNCTION_DECL
)
4893 fld_worklist_push (DECL_ARGUMENTS (t
), fld
);
4894 fld_worklist_push (DECL_RESULT (t
), fld
);
4896 else if (TREE_CODE (t
) == TYPE_DECL
)
4898 fld_worklist_push (DECL_ARGUMENT_FLD (t
), fld
);
4899 fld_worklist_push (DECL_VINDEX (t
), fld
);
4900 fld_worklist_push (DECL_ORIGINAL_TYPE (t
), fld
);
4902 else if (TREE_CODE (t
) == FIELD_DECL
)
4904 fld_worklist_push (DECL_FIELD_OFFSET (t
), fld
);
4905 fld_worklist_push (DECL_BIT_FIELD_TYPE (t
), fld
);
4906 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t
), fld
);
4907 fld_worklist_push (DECL_FCONTEXT (t
), fld
);
4909 else if (TREE_CODE (t
) == VAR_DECL
)
4911 fld_worklist_push (DECL_SECTION_NAME (t
), fld
);
4912 fld_worklist_push (DECL_COMDAT_GROUP (t
), fld
);
4915 if ((TREE_CODE (t
) == VAR_DECL
|| TREE_CODE (t
) == PARM_DECL
)
4916 && DECL_HAS_VALUE_EXPR_P (t
))
4917 fld_worklist_push (DECL_VALUE_EXPR (t
), fld
);
4919 if (TREE_CODE (t
) != FIELD_DECL
4920 && TREE_CODE (t
) != TYPE_DECL
)
4921 fld_worklist_push (TREE_CHAIN (t
), fld
);
4924 else if (TYPE_P (t
))
4926 /* Note that walk_tree does not traverse every possible field in
4927 types, so we have to do our own traversals here. */
4928 add_tree_to_fld_list (t
, fld
);
4930 if (!RECORD_OR_UNION_TYPE_P (t
))
4931 fld_worklist_push (TYPE_CACHED_VALUES (t
), fld
);
4932 fld_worklist_push (TYPE_SIZE (t
), fld
);
4933 fld_worklist_push (TYPE_SIZE_UNIT (t
), fld
);
4934 fld_worklist_push (TYPE_ATTRIBUTES (t
), fld
);
4935 fld_worklist_push (TYPE_POINTER_TO (t
), fld
);
4936 fld_worklist_push (TYPE_REFERENCE_TO (t
), fld
);
4937 fld_worklist_push (TYPE_NAME (t
), fld
);
4938 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
4939 them and thus do not and want not to reach unused pointer types
4941 if (!POINTER_TYPE_P (t
))
4942 fld_worklist_push (TYPE_MINVAL (t
), fld
);
4943 if (!RECORD_OR_UNION_TYPE_P (t
))
4944 fld_worklist_push (TYPE_MAXVAL (t
), fld
);
4945 fld_worklist_push (TYPE_MAIN_VARIANT (t
), fld
);
4946 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
4947 do not and want not to reach unused variants this way. */
4948 if (TYPE_CONTEXT (t
))
4950 tree ctx
= TYPE_CONTEXT (t
);
4951 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
4952 So push that instead. */
4953 while (ctx
&& TREE_CODE (ctx
) == BLOCK
)
4954 ctx
= BLOCK_SUPERCONTEXT (ctx
);
4955 fld_worklist_push (ctx
, fld
);
4957 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
4958 and want not to reach unused types this way. */
4960 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_BINFO (t
))
4964 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t
)), i
, tem
)
4965 fld_worklist_push (TREE_TYPE (tem
), fld
);
4966 tem
= BINFO_VIRTUALS (TYPE_BINFO (t
));
4968 /* The Java FE overloads BINFO_VIRTUALS for its own purpose. */
4969 && TREE_CODE (tem
) == TREE_LIST
)
4972 fld_worklist_push (TREE_VALUE (tem
), fld
);
4973 tem
= TREE_CHAIN (tem
);
4977 if (RECORD_OR_UNION_TYPE_P (t
))
4980 /* Push all TYPE_FIELDS - there can be interleaving interesting
4981 and non-interesting things. */
4982 tem
= TYPE_FIELDS (t
);
4985 if (TREE_CODE (tem
) == FIELD_DECL
4986 || TREE_CODE (tem
) == TYPE_DECL
)
4987 fld_worklist_push (tem
, fld
);
4988 tem
= TREE_CHAIN (tem
);
4992 fld_worklist_push (TYPE_STUB_DECL (t
), fld
);
4995 else if (TREE_CODE (t
) == BLOCK
)
4998 for (tem
= BLOCK_VARS (t
); tem
; tem
= TREE_CHAIN (tem
))
4999 fld_worklist_push (tem
, fld
);
5000 for (tem
= BLOCK_SUBBLOCKS (t
); tem
; tem
= BLOCK_CHAIN (tem
))
5001 fld_worklist_push (tem
, fld
);
5002 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t
), fld
);
5005 if (TREE_CODE (t
) != IDENTIFIER_NODE
5006 && CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_TYPED
))
5007 fld_worklist_push (TREE_TYPE (t
), fld
);
5013 /* Find decls and types in T. */
5016 find_decls_types (tree t
, struct free_lang_data_d
*fld
)
5020 if (!pointer_set_contains (fld
->pset
, t
))
5021 walk_tree (&t
, find_decls_types_r
, fld
, fld
->pset
);
5022 if (fld
->worklist
.is_empty ())
5024 t
= fld
->worklist
.pop ();
5028 /* Translate all the types in LIST with the corresponding runtime
5032 get_eh_types_for_runtime (tree list
)
5036 if (list
== NULL_TREE
)
5039 head
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5041 list
= TREE_CHAIN (list
);
5044 tree n
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5045 TREE_CHAIN (prev
) = n
;
5046 prev
= TREE_CHAIN (prev
);
5047 list
= TREE_CHAIN (list
);
5054 /* Find decls and types referenced in EH region R and store them in
5055 FLD->DECLS and FLD->TYPES. */
5058 find_decls_types_in_eh_region (eh_region r
, struct free_lang_data_d
*fld
)
5069 /* The types referenced in each catch must first be changed to the
5070 EH types used at runtime. This removes references to FE types
5072 for (c
= r
->u
.eh_try
.first_catch
; c
; c
= c
->next_catch
)
5074 c
->type_list
= get_eh_types_for_runtime (c
->type_list
);
5075 walk_tree (&c
->type_list
, find_decls_types_r
, fld
, fld
->pset
);
5080 case ERT_ALLOWED_EXCEPTIONS
:
5081 r
->u
.allowed
.type_list
5082 = get_eh_types_for_runtime (r
->u
.allowed
.type_list
);
5083 walk_tree (&r
->u
.allowed
.type_list
, find_decls_types_r
, fld
, fld
->pset
);
5086 case ERT_MUST_NOT_THROW
:
5087 walk_tree (&r
->u
.must_not_throw
.failure_decl
,
5088 find_decls_types_r
, fld
, fld
->pset
);
5094 /* Find decls and types referenced in cgraph node N and store them in
5095 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5096 look for *every* kind of DECL and TYPE node reachable from N,
5097 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5098 NAMESPACE_DECLs, etc). */
5101 find_decls_types_in_node (struct cgraph_node
*n
, struct free_lang_data_d
*fld
)
5104 struct function
*fn
;
5108 find_decls_types (n
->symbol
.decl
, fld
);
5110 if (!gimple_has_body_p (n
->symbol
.decl
))
5113 gcc_assert (current_function_decl
== NULL_TREE
&& cfun
== NULL
);
5115 fn
= DECL_STRUCT_FUNCTION (n
->symbol
.decl
);
5117 /* Traverse locals. */
5118 FOR_EACH_LOCAL_DECL (fn
, ix
, t
)
5119 find_decls_types (t
, fld
);
5121 /* Traverse EH regions in FN. */
5124 FOR_ALL_EH_REGION_FN (r
, fn
)
5125 find_decls_types_in_eh_region (r
, fld
);
5128 /* Traverse every statement in FN. */
5129 FOR_EACH_BB_FN (bb
, fn
)
5131 gimple_stmt_iterator si
;
5134 for (si
= gsi_start_phis (bb
); !gsi_end_p (si
); gsi_next (&si
))
5136 gimple phi
= gsi_stmt (si
);
5138 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
5140 tree
*arg_p
= gimple_phi_arg_def_ptr (phi
, i
);
5141 find_decls_types (*arg_p
, fld
);
5145 for (si
= gsi_start_bb (bb
); !gsi_end_p (si
); gsi_next (&si
))
5147 gimple stmt
= gsi_stmt (si
);
5149 if (is_gimple_call (stmt
))
5150 find_decls_types (gimple_call_fntype (stmt
), fld
);
5152 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
5154 tree arg
= gimple_op (stmt
, i
);
5155 find_decls_types (arg
, fld
);
5162 /* Find decls and types referenced in varpool node N and store them in
5163 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5164 look for *every* kind of DECL and TYPE node reachable from N,
5165 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5166 NAMESPACE_DECLs, etc). */
5169 find_decls_types_in_var (struct varpool_node
*v
, struct free_lang_data_d
*fld
)
5171 find_decls_types (v
->symbol
.decl
, fld
);
5174 /* If T needs an assembler name, have one created for it. */
5177 assign_assembler_name_if_neeeded (tree t
)
5179 if (need_assembler_name_p (t
))
5181 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5182 diagnostics that use input_location to show locus
5183 information. The problem here is that, at this point,
5184 input_location is generally anchored to the end of the file
5185 (since the parser is long gone), so we don't have a good
5186 position to pin it to.
5188 To alleviate this problem, this uses the location of T's
5189 declaration. Examples of this are
5190 testsuite/g++.dg/template/cond2.C and
5191 testsuite/g++.dg/template/pr35240.C. */
5192 location_t saved_location
= input_location
;
5193 input_location
= DECL_SOURCE_LOCATION (t
);
5195 decl_assembler_name (t
);
5197 input_location
= saved_location
;
5202 /* Free language specific information for every operand and expression
5203 in every node of the call graph. This process operates in three stages:
5205 1- Every callgraph node and varpool node is traversed looking for
5206 decls and types embedded in them. This is a more exhaustive
5207 search than that done by find_referenced_vars, because it will
5208 also collect individual fields, decls embedded in types, etc.
5210 2- All the decls found are sent to free_lang_data_in_decl.
5212 3- All the types found are sent to free_lang_data_in_type.
5214 The ordering between decls and types is important because
5215 free_lang_data_in_decl sets assembler names, which includes
5216 mangling. So types cannot be freed up until assembler names have
5220 free_lang_data_in_cgraph (void)
5222 struct cgraph_node
*n
;
5223 struct varpool_node
*v
;
5224 struct free_lang_data_d fld
;
5229 /* Initialize sets and arrays to store referenced decls and types. */
5230 fld
.pset
= pointer_set_create ();
5231 fld
.worklist
.create (0);
5232 fld
.decls
.create (100);
5233 fld
.types
.create (100);
5235 /* Find decls and types in the body of every function in the callgraph. */
5236 FOR_EACH_FUNCTION (n
)
5237 find_decls_types_in_node (n
, &fld
);
5239 FOR_EACH_VEC_SAFE_ELT (alias_pairs
, i
, p
)
5240 find_decls_types (p
->decl
, &fld
);
5242 /* Find decls and types in every varpool symbol. */
5243 FOR_EACH_VARIABLE (v
)
5244 find_decls_types_in_var (v
, &fld
);
5246 /* Set the assembler name on every decl found. We need to do this
5247 now because free_lang_data_in_decl will invalidate data needed
5248 for mangling. This breaks mangling on interdependent decls. */
5249 FOR_EACH_VEC_ELT (fld
.decls
, i
, t
)
5250 assign_assembler_name_if_neeeded (t
);
5252 /* Traverse every decl found freeing its language data. */
5253 FOR_EACH_VEC_ELT (fld
.decls
, i
, t
)
5254 free_lang_data_in_decl (t
);
5256 /* Traverse every type found freeing its language data. */
5257 FOR_EACH_VEC_ELT (fld
.types
, i
, t
)
5258 free_lang_data_in_type (t
);
5260 pointer_set_destroy (fld
.pset
);
5261 fld
.worklist
.release ();
5262 fld
.decls
.release ();
5263 fld
.types
.release ();
5267 /* Free resources that are used by FE but are not needed once they are done. */
5270 free_lang_data (void)
5274 /* If we are the LTO frontend we have freed lang-specific data already. */
5276 || !flag_generate_lto
)
5279 /* Allocate and assign alias sets to the standard integer types
5280 while the slots are still in the way the frontends generated them. */
5281 for (i
= 0; i
< itk_none
; ++i
)
5282 if (integer_types
[i
])
5283 TYPE_ALIAS_SET (integer_types
[i
]) = get_alias_set (integer_types
[i
]);
5285 /* Traverse the IL resetting language specific information for
5286 operands, expressions, etc. */
5287 free_lang_data_in_cgraph ();
5289 /* Create gimple variants for common types. */
5290 ptrdiff_type_node
= integer_type_node
;
5291 fileptr_type_node
= ptr_type_node
;
5293 /* Reset some langhooks. Do not reset types_compatible_p, it may
5294 still be used indirectly via the get_alias_set langhook. */
5295 lang_hooks
.dwarf_name
= lhd_dwarf_name
;
5296 lang_hooks
.decl_printable_name
= gimple_decl_printable_name
;
5297 /* We do not want the default decl_assembler_name implementation,
5298 rather if we have fixed everything we want a wrapper around it
5299 asserting that all non-local symbols already got their assembler
5300 name and only produce assembler names for local symbols. Or rather
5301 make sure we never call decl_assembler_name on local symbols and
5302 devise a separate, middle-end private scheme for it. */
5304 /* Reset diagnostic machinery. */
5305 tree_diagnostics_defaults (global_dc
);
5311 struct simple_ipa_opt_pass pass_ipa_free_lang_data
=
5315 "*free_lang_data", /* name */
5316 OPTGROUP_NONE
, /* optinfo_flags */
5318 free_lang_data
, /* execute */
5321 0, /* static_pass_number */
5322 TV_IPA_FREE_LANG_DATA
, /* tv_id */
5323 0, /* properties_required */
5324 0, /* properties_provided */
5325 0, /* properties_destroyed */
5326 0, /* todo_flags_start */
5327 0 /* todo_flags_finish */
5331 /* The backbone of is_attribute_p(). ATTR_LEN is the string length of
5332 ATTR_NAME. Also used internally by remove_attribute(). */
5334 private_is_attribute_p (const char *attr_name
, size_t attr_len
, const_tree ident
)
5336 size_t ident_len
= IDENTIFIER_LENGTH (ident
);
5338 if (ident_len
== attr_len
)
5340 if (strcmp (attr_name
, IDENTIFIER_POINTER (ident
)) == 0)
5343 else if (ident_len
== attr_len
+ 4)
5345 /* There is the possibility that ATTR is 'text' and IDENT is
5347 const char *p
= IDENTIFIER_POINTER (ident
);
5348 if (p
[0] == '_' && p
[1] == '_'
5349 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5350 && strncmp (attr_name
, p
+ 2, attr_len
) == 0)
5357 /* The backbone of lookup_attribute(). ATTR_LEN is the string length
5358 of ATTR_NAME, and LIST is not NULL_TREE. */
5360 private_lookup_attribute (const char *attr_name
, size_t attr_len
, tree list
)
5364 size_t ident_len
= IDENTIFIER_LENGTH (get_attribute_name (list
));
5366 if (ident_len
== attr_len
)
5368 if (!strcmp (attr_name
,
5369 IDENTIFIER_POINTER (get_attribute_name (list
))))
5372 /* TODO: If we made sure that attributes were stored in the
5373 canonical form without '__...__' (ie, as in 'text' as opposed
5374 to '__text__') then we could avoid the following case. */
5375 else if (ident_len
== attr_len
+ 4)
5377 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5378 if (p
[0] == '_' && p
[1] == '_'
5379 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5380 && strncmp (attr_name
, p
+ 2, attr_len
) == 0)
5383 list
= TREE_CHAIN (list
);
5389 /* A variant of lookup_attribute() that can be used with an identifier
5390 as the first argument, and where the identifier can be either
5391 'text' or '__text__'.
5393 Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
5394 return a pointer to the attribute's list element if the attribute
5395 is part of the list, or NULL_TREE if not found. If the attribute
5396 appears more than once, this only returns the first occurrence; the
5397 TREE_CHAIN of the return value should be passed back in if further
5398 occurrences are wanted. ATTR_IDENTIFIER must be an identifier but
5399 can be in the form 'text' or '__text__'. */
5401 lookup_ident_attribute (tree attr_identifier
, tree list
)
5403 gcc_checking_assert (TREE_CODE (attr_identifier
) == IDENTIFIER_NODE
);
5407 gcc_checking_assert (TREE_CODE (get_attribute_name (list
))
5408 == IDENTIFIER_NODE
);
5410 /* Identifiers can be compared directly for equality. */
5411 if (attr_identifier
== get_attribute_name (list
))
5414 /* If they are not equal, they may still be one in the form
5415 'text' while the other one is in the form '__text__'. TODO:
5416 If we were storing attributes in normalized 'text' form, then
5417 this could all go away and we could take full advantage of
5418 the fact that we're comparing identifiers. :-) */
5420 size_t attr_len
= IDENTIFIER_LENGTH (attr_identifier
);
5421 size_t ident_len
= IDENTIFIER_LENGTH (get_attribute_name (list
));
5423 if (ident_len
== attr_len
+ 4)
5425 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5426 const char *q
= IDENTIFIER_POINTER (attr_identifier
);
5427 if (p
[0] == '_' && p
[1] == '_'
5428 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5429 && strncmp (q
, p
+ 2, attr_len
) == 0)
5432 else if (ident_len
+ 4 == attr_len
)
5434 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5435 const char *q
= IDENTIFIER_POINTER (attr_identifier
);
5436 if (q
[0] == '_' && q
[1] == '_'
5437 && q
[attr_len
- 2] == '_' && q
[attr_len
- 1] == '_'
5438 && strncmp (q
+ 2, p
, ident_len
) == 0)
5442 list
= TREE_CHAIN (list
);
5448 /* Remove any instances of attribute ATTR_NAME in LIST and return the
5452 remove_attribute (const char *attr_name
, tree list
)
5455 size_t attr_len
= strlen (attr_name
);
5457 gcc_checking_assert (attr_name
[0] != '_');
5459 for (p
= &list
; *p
; )
5462 /* TODO: If we were storing attributes in normalized form, here
5463 we could use a simple strcmp(). */
5464 if (private_is_attribute_p (attr_name
, attr_len
, get_attribute_name (l
)))
5465 *p
= TREE_CHAIN (l
);
5467 p
= &TREE_CHAIN (l
);
5473 /* Return an attribute list that is the union of a1 and a2. */
5476 merge_attributes (tree a1
, tree a2
)
5480 /* Either one unset? Take the set one. */
5482 if ((attributes
= a1
) == 0)
5485 /* One that completely contains the other? Take it. */
5487 else if (a2
!= 0 && ! attribute_list_contained (a1
, a2
))
5489 if (attribute_list_contained (a2
, a1
))
5493 /* Pick the longest list, and hang on the other list. */
5495 if (list_length (a1
) < list_length (a2
))
5496 attributes
= a2
, a2
= a1
;
5498 for (; a2
!= 0; a2
= TREE_CHAIN (a2
))
5501 for (a
= lookup_ident_attribute (get_attribute_name (a2
),
5503 a
!= NULL_TREE
&& !attribute_value_equal (a
, a2
);
5504 a
= lookup_ident_attribute (get_attribute_name (a2
),
5509 a1
= copy_node (a2
);
5510 TREE_CHAIN (a1
) = attributes
;
5519 /* Given types T1 and T2, merge their attributes and return
5523 merge_type_attributes (tree t1
, tree t2
)
5525 return merge_attributes (TYPE_ATTRIBUTES (t1
),
5526 TYPE_ATTRIBUTES (t2
));
5529 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
5533 merge_decl_attributes (tree olddecl
, tree newdecl
)
5535 return merge_attributes (DECL_ATTRIBUTES (olddecl
),
5536 DECL_ATTRIBUTES (newdecl
));
5539 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
5541 /* Specialization of merge_decl_attributes for various Windows targets.
5543 This handles the following situation:
5545 __declspec (dllimport) int foo;
5548 The second instance of `foo' nullifies the dllimport. */
5551 merge_dllimport_decl_attributes (tree old
, tree new_tree
)
5554 int delete_dllimport_p
= 1;
5556 /* What we need to do here is remove from `old' dllimport if it doesn't
5557 appear in `new'. dllimport behaves like extern: if a declaration is
5558 marked dllimport and a definition appears later, then the object
5559 is not dllimport'd. We also remove a `new' dllimport if the old list
5560 contains dllexport: dllexport always overrides dllimport, regardless
5561 of the order of declaration. */
5562 if (!VAR_OR_FUNCTION_DECL_P (new_tree
))
5563 delete_dllimport_p
= 0;
5564 else if (DECL_DLLIMPORT_P (new_tree
)
5565 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old
)))
5567 DECL_DLLIMPORT_P (new_tree
) = 0;
5568 warning (OPT_Wattributes
, "%q+D already declared with dllexport attribute: "
5569 "dllimport ignored", new_tree
);
5571 else if (DECL_DLLIMPORT_P (old
) && !DECL_DLLIMPORT_P (new_tree
))
5573 /* Warn about overriding a symbol that has already been used, e.g.:
5574 extern int __attribute__ ((dllimport)) foo;
5575 int* bar () {return &foo;}
5578 if (TREE_USED (old
))
5580 warning (0, "%q+D redeclared without dllimport attribute "
5581 "after being referenced with dll linkage", new_tree
);
5582 /* If we have used a variable's address with dllimport linkage,
5583 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
5584 decl may already have had TREE_CONSTANT computed.
5585 We still remove the attribute so that assembler code refers
5586 to '&foo rather than '_imp__foo'. */
5587 if (TREE_CODE (old
) == VAR_DECL
&& TREE_ADDRESSABLE (old
))
5588 DECL_DLLIMPORT_P (new_tree
) = 1;
5591 /* Let an inline definition silently override the external reference,
5592 but otherwise warn about attribute inconsistency. */
5593 else if (TREE_CODE (new_tree
) == VAR_DECL
5594 || !DECL_DECLARED_INLINE_P (new_tree
))
5595 warning (OPT_Wattributes
, "%q+D redeclared without dllimport attribute: "
5596 "previous dllimport ignored", new_tree
);
5599 delete_dllimport_p
= 0;
5601 a
= merge_attributes (DECL_ATTRIBUTES (old
), DECL_ATTRIBUTES (new_tree
));
5603 if (delete_dllimport_p
)
5604 a
= remove_attribute ("dllimport", a
);
5609 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
5610 struct attribute_spec.handler. */
5613 handle_dll_attribute (tree
* pnode
, tree name
, tree args
, int flags
,
5619 /* These attributes may apply to structure and union types being created,
5620 but otherwise should pass to the declaration involved. */
5623 if (flags
& ((int) ATTR_FLAG_DECL_NEXT
| (int) ATTR_FLAG_FUNCTION_NEXT
5624 | (int) ATTR_FLAG_ARRAY_NEXT
))
5626 *no_add_attrs
= true;
5627 return tree_cons (name
, args
, NULL_TREE
);
5629 if (TREE_CODE (node
) == RECORD_TYPE
5630 || TREE_CODE (node
) == UNION_TYPE
)
5632 node
= TYPE_NAME (node
);
5638 warning (OPT_Wattributes
, "%qE attribute ignored",
5640 *no_add_attrs
= true;
5645 if (TREE_CODE (node
) != FUNCTION_DECL
5646 && TREE_CODE (node
) != VAR_DECL
5647 && TREE_CODE (node
) != TYPE_DECL
)
5649 *no_add_attrs
= true;
5650 warning (OPT_Wattributes
, "%qE attribute ignored",
5655 if (TREE_CODE (node
) == TYPE_DECL
5656 && TREE_CODE (TREE_TYPE (node
)) != RECORD_TYPE
5657 && TREE_CODE (TREE_TYPE (node
)) != UNION_TYPE
)
5659 *no_add_attrs
= true;
5660 warning (OPT_Wattributes
, "%qE attribute ignored",
5665 is_dllimport
= is_attribute_p ("dllimport", name
);
5667 /* Report error on dllimport ambiguities seen now before they cause
5671 /* Honor any target-specific overrides. */
5672 if (!targetm
.valid_dllimport_attribute_p (node
))
5673 *no_add_attrs
= true;
5675 else if (TREE_CODE (node
) == FUNCTION_DECL
5676 && DECL_DECLARED_INLINE_P (node
))
5678 warning (OPT_Wattributes
, "inline function %q+D declared as "
5679 " dllimport: attribute ignored", node
);
5680 *no_add_attrs
= true;
5682 /* Like MS, treat definition of dllimported variables and
5683 non-inlined functions on declaration as syntax errors. */
5684 else if (TREE_CODE (node
) == FUNCTION_DECL
&& DECL_INITIAL (node
))
5686 error ("function %q+D definition is marked dllimport", node
);
5687 *no_add_attrs
= true;
5690 else if (TREE_CODE (node
) == VAR_DECL
)
5692 if (DECL_INITIAL (node
))
5694 error ("variable %q+D definition is marked dllimport",
5696 *no_add_attrs
= true;
5699 /* `extern' needn't be specified with dllimport.
5700 Specify `extern' now and hope for the best. Sigh. */
5701 DECL_EXTERNAL (node
) = 1;
5702 /* Also, implicitly give dllimport'd variables declared within
5703 a function global scope, unless declared static. */
5704 if (current_function_decl
!= NULL_TREE
&& !TREE_STATIC (node
))
5705 TREE_PUBLIC (node
) = 1;
5708 if (*no_add_attrs
== false)
5709 DECL_DLLIMPORT_P (node
) = 1;
5711 else if (TREE_CODE (node
) == FUNCTION_DECL
5712 && DECL_DECLARED_INLINE_P (node
)
5713 && flag_keep_inline_dllexport
)
5714 /* An exported function, even if inline, must be emitted. */
5715 DECL_EXTERNAL (node
) = 0;
5717 /* Report error if symbol is not accessible at global scope. */
5718 if (!TREE_PUBLIC (node
)
5719 && (TREE_CODE (node
) == VAR_DECL
5720 || TREE_CODE (node
) == FUNCTION_DECL
))
5722 error ("external linkage required for symbol %q+D because of "
5723 "%qE attribute", node
, name
);
5724 *no_add_attrs
= true;
5727 /* A dllexport'd entity must have default visibility so that other
5728 program units (shared libraries or the main executable) can see
5729 it. A dllimport'd entity must have default visibility so that
5730 the linker knows that undefined references within this program
5731 unit can be resolved by the dynamic linker. */
5734 if (DECL_VISIBILITY_SPECIFIED (node
)
5735 && DECL_VISIBILITY (node
) != VISIBILITY_DEFAULT
)
5736 error ("%qE implies default visibility, but %qD has already "
5737 "been declared with a different visibility",
5739 DECL_VISIBILITY (node
) = VISIBILITY_DEFAULT
;
5740 DECL_VISIBILITY_SPECIFIED (node
) = 1;
5746 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
5748 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5749 of the various TYPE_QUAL values. */
5752 set_type_quals (tree type
, int type_quals
)
5754 TYPE_READONLY (type
) = (type_quals
& TYPE_QUAL_CONST
) != 0;
5755 TYPE_VOLATILE (type
) = (type_quals
& TYPE_QUAL_VOLATILE
) != 0;
5756 TYPE_RESTRICT (type
) = (type_quals
& TYPE_QUAL_RESTRICT
) != 0;
5757 TYPE_ADDR_SPACE (type
) = DECODE_QUAL_ADDR_SPACE (type_quals
);
5760 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
5763 check_qualified_type (const_tree cand
, const_tree base
, int type_quals
)
5765 return (TYPE_QUALS (cand
) == type_quals
5766 && TYPE_NAME (cand
) == TYPE_NAME (base
)
5767 /* Apparently this is needed for Objective-C. */
5768 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
5769 /* Check alignment. */
5770 && TYPE_ALIGN (cand
) == TYPE_ALIGN (base
)
5771 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
5772 TYPE_ATTRIBUTES (base
)));
5775 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
5778 check_aligned_type (const_tree cand
, const_tree base
, unsigned int align
)
5780 return (TYPE_QUALS (cand
) == TYPE_QUALS (base
)
5781 && TYPE_NAME (cand
) == TYPE_NAME (base
)
5782 /* Apparently this is needed for Objective-C. */
5783 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
5784 /* Check alignment. */
5785 && TYPE_ALIGN (cand
) == align
5786 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
5787 TYPE_ATTRIBUTES (base
)));
5790 /* Return a version of the TYPE, qualified as indicated by the
5791 TYPE_QUALS, if one exists. If no qualified version exists yet,
5792 return NULL_TREE. */
5795 get_qualified_type (tree type
, int type_quals
)
5799 if (TYPE_QUALS (type
) == type_quals
)
5802 /* Search the chain of variants to see if there is already one there just
5803 like the one we need to have. If so, use that existing one. We must
5804 preserve the TYPE_NAME, since there is code that depends on this. */
5805 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
5806 if (check_qualified_type (t
, type
, type_quals
))
5812 /* Like get_qualified_type, but creates the type if it does not
5813 exist. This function never returns NULL_TREE. */
5816 build_qualified_type (tree type
, int type_quals
)
5820 /* See if we already have the appropriate qualified variant. */
5821 t
= get_qualified_type (type
, type_quals
);
5823 /* If not, build it. */
5826 t
= build_variant_type_copy (type
);
5827 set_type_quals (t
, type_quals
);
5829 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
5830 /* Propagate structural equality. */
5831 SET_TYPE_STRUCTURAL_EQUALITY (t
);
5832 else if (TYPE_CANONICAL (type
) != type
)
5833 /* Build the underlying canonical type, since it is different
5835 TYPE_CANONICAL (t
) = build_qualified_type (TYPE_CANONICAL (type
),
5838 /* T is its own canonical type. */
5839 TYPE_CANONICAL (t
) = t
;
5846 /* Create a variant of type T with alignment ALIGN. */
5849 build_aligned_type (tree type
, unsigned int align
)
5853 if (TYPE_PACKED (type
)
5854 || TYPE_ALIGN (type
) == align
)
5857 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
5858 if (check_aligned_type (t
, type
, align
))
5861 t
= build_variant_type_copy (type
);
5862 TYPE_ALIGN (t
) = align
;
5867 /* Create a new distinct copy of TYPE. The new type is made its own
5868 MAIN_VARIANT. If TYPE requires structural equality checks, the
5869 resulting type requires structural equality checks; otherwise, its
5870 TYPE_CANONICAL points to itself. */
5873 build_distinct_type_copy (tree type
)
5875 tree t
= copy_node (type
);
5877 TYPE_POINTER_TO (t
) = 0;
5878 TYPE_REFERENCE_TO (t
) = 0;
5880 /* Set the canonical type either to a new equivalence class, or
5881 propagate the need for structural equality checks. */
5882 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
5883 SET_TYPE_STRUCTURAL_EQUALITY (t
);
5885 TYPE_CANONICAL (t
) = t
;
5887 /* Make it its own variant. */
5888 TYPE_MAIN_VARIANT (t
) = t
;
5889 TYPE_NEXT_VARIANT (t
) = 0;
5891 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
5892 whose TREE_TYPE is not t. This can also happen in the Ada
5893 frontend when using subtypes. */
5898 /* Create a new variant of TYPE, equivalent but distinct. This is so
5899 the caller can modify it. TYPE_CANONICAL for the return type will
5900 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
5901 are considered equal by the language itself (or that both types
5902 require structural equality checks). */
5905 build_variant_type_copy (tree type
)
5907 tree t
, m
= TYPE_MAIN_VARIANT (type
);
5909 t
= build_distinct_type_copy (type
);
5911 /* Since we're building a variant, assume that it is a non-semantic
5912 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
5913 TYPE_CANONICAL (t
) = TYPE_CANONICAL (type
);
5915 /* Add the new type to the chain of variants of TYPE. */
5916 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (m
);
5917 TYPE_NEXT_VARIANT (m
) = t
;
5918 TYPE_MAIN_VARIANT (t
) = m
;
5923 /* Return true if the from tree in both tree maps are equal. */
5926 tree_map_base_eq (const void *va
, const void *vb
)
5928 const struct tree_map_base
*const a
= (const struct tree_map_base
*) va
,
5929 *const b
= (const struct tree_map_base
*) vb
;
5930 return (a
->from
== b
->from
);
5933 /* Hash a from tree in a tree_base_map. */
5936 tree_map_base_hash (const void *item
)
5938 return htab_hash_pointer (((const struct tree_map_base
*)item
)->from
);
5941 /* Return true if this tree map structure is marked for garbage collection
5942 purposes. We simply return true if the from tree is marked, so that this
5943 structure goes away when the from tree goes away. */
5946 tree_map_base_marked_p (const void *p
)
5948 return ggc_marked_p (((const struct tree_map_base
*) p
)->from
);
5951 /* Hash a from tree in a tree_map. */
5954 tree_map_hash (const void *item
)
5956 return (((const struct tree_map
*) item
)->hash
);
5959 /* Hash a from tree in a tree_decl_map. */
5962 tree_decl_map_hash (const void *item
)
5964 return DECL_UID (((const struct tree_decl_map
*) item
)->base
.from
);
5967 /* Return the initialization priority for DECL. */
5970 decl_init_priority_lookup (tree decl
)
5972 struct tree_priority_map
*h
;
5973 struct tree_map_base in
;
5975 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
5977 h
= (struct tree_priority_map
*) htab_find (init_priority_for_decl
, &in
);
5978 return h
? h
->init
: DEFAULT_INIT_PRIORITY
;
5981 /* Return the finalization priority for DECL. */
5984 decl_fini_priority_lookup (tree decl
)
5986 struct tree_priority_map
*h
;
5987 struct tree_map_base in
;
5989 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
5991 h
= (struct tree_priority_map
*) htab_find (init_priority_for_decl
, &in
);
5992 return h
? h
->fini
: DEFAULT_INIT_PRIORITY
;
5995 /* Return the initialization and finalization priority information for
5996 DECL. If there is no previous priority information, a freshly
5997 allocated structure is returned. */
5999 static struct tree_priority_map
*
6000 decl_priority_info (tree decl
)
6002 struct tree_priority_map in
;
6003 struct tree_priority_map
*h
;
6006 in
.base
.from
= decl
;
6007 loc
= htab_find_slot (init_priority_for_decl
, &in
, INSERT
);
6008 h
= (struct tree_priority_map
*) *loc
;
6011 h
= ggc_alloc_cleared_tree_priority_map ();
6013 h
->base
.from
= decl
;
6014 h
->init
= DEFAULT_INIT_PRIORITY
;
6015 h
->fini
= DEFAULT_INIT_PRIORITY
;
6021 /* Set the initialization priority for DECL to PRIORITY. */
6024 decl_init_priority_insert (tree decl
, priority_type priority
)
6026 struct tree_priority_map
*h
;
6028 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
6029 if (priority
== DEFAULT_INIT_PRIORITY
)
6031 h
= decl_priority_info (decl
);
6035 /* Set the finalization priority for DECL to PRIORITY. */
6038 decl_fini_priority_insert (tree decl
, priority_type priority
)
6040 struct tree_priority_map
*h
;
6042 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
6043 if (priority
== DEFAULT_INIT_PRIORITY
)
6045 h
= decl_priority_info (decl
);
6049 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6052 print_debug_expr_statistics (void)
6054 fprintf (stderr
, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6055 (long) htab_size (debug_expr_for_decl
),
6056 (long) htab_elements (debug_expr_for_decl
),
6057 htab_collisions (debug_expr_for_decl
));
6060 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6063 print_value_expr_statistics (void)
6065 fprintf (stderr
, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6066 (long) htab_size (value_expr_for_decl
),
6067 (long) htab_elements (value_expr_for_decl
),
6068 htab_collisions (value_expr_for_decl
));
6071 /* Lookup a debug expression for FROM, and return it if we find one. */
6074 decl_debug_expr_lookup (tree from
)
6076 struct tree_decl_map
*h
, in
;
6077 in
.base
.from
= from
;
6079 h
= (struct tree_decl_map
*)
6080 htab_find_with_hash (debug_expr_for_decl
, &in
, DECL_UID (from
));
6086 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6089 decl_debug_expr_insert (tree from
, tree to
)
6091 struct tree_decl_map
*h
;
6094 h
= ggc_alloc_tree_decl_map ();
6095 h
->base
.from
= from
;
6097 loc
= htab_find_slot_with_hash (debug_expr_for_decl
, h
, DECL_UID (from
),
6099 *(struct tree_decl_map
**) loc
= h
;
6102 /* Lookup a value expression for FROM, and return it if we find one. */
6105 decl_value_expr_lookup (tree from
)
6107 struct tree_decl_map
*h
, in
;
6108 in
.base
.from
= from
;
6110 h
= (struct tree_decl_map
*)
6111 htab_find_with_hash (value_expr_for_decl
, &in
, DECL_UID (from
));
6117 /* Insert a mapping FROM->TO in the value expression hashtable. */
6120 decl_value_expr_insert (tree from
, tree to
)
6122 struct tree_decl_map
*h
;
6125 h
= ggc_alloc_tree_decl_map ();
6126 h
->base
.from
= from
;
6128 loc
= htab_find_slot_with_hash (value_expr_for_decl
, h
, DECL_UID (from
),
6130 *(struct tree_decl_map
**) loc
= h
;
6133 /* Lookup a vector of debug arguments for FROM, and return it if we
6137 decl_debug_args_lookup (tree from
)
6139 struct tree_vec_map
*h
, in
;
6141 if (!DECL_HAS_DEBUG_ARGS_P (from
))
6143 gcc_checking_assert (debug_args_for_decl
!= NULL
);
6144 in
.base
.from
= from
;
6145 h
= (struct tree_vec_map
*)
6146 htab_find_with_hash (debug_args_for_decl
, &in
, DECL_UID (from
));
6152 /* Insert a mapping FROM->empty vector of debug arguments in the value
6153 expression hashtable. */
6156 decl_debug_args_insert (tree from
)
6158 struct tree_vec_map
*h
;
6161 if (DECL_HAS_DEBUG_ARGS_P (from
))
6162 return decl_debug_args_lookup (from
);
6163 if (debug_args_for_decl
== NULL
)
6164 debug_args_for_decl
= htab_create_ggc (64, tree_vec_map_hash
,
6165 tree_vec_map_eq
, 0);
6166 h
= ggc_alloc_tree_vec_map ();
6167 h
->base
.from
= from
;
6169 loc
= htab_find_slot_with_hash (debug_args_for_decl
, h
, DECL_UID (from
),
6171 *(struct tree_vec_map
**) loc
= h
;
6172 DECL_HAS_DEBUG_ARGS_P (from
) = 1;
6176 /* Hashing of types so that we don't make duplicates.
6177 The entry point is `type_hash_canon'. */
6179 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
6180 with types in the TREE_VALUE slots), by adding the hash codes
6181 of the individual types. */
6184 type_hash_list (const_tree list
, hashval_t hashcode
)
6188 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
6189 if (TREE_VALUE (tail
) != error_mark_node
)
6190 hashcode
= iterative_hash_object (TYPE_HASH (TREE_VALUE (tail
)),
6196 /* These are the Hashtable callback functions. */
6198 /* Returns true iff the types are equivalent. */
6201 type_hash_eq (const void *va
, const void *vb
)
6203 const struct type_hash
*const a
= (const struct type_hash
*) va
,
6204 *const b
= (const struct type_hash
*) vb
;
6206 /* First test the things that are the same for all types. */
6207 if (a
->hash
!= b
->hash
6208 || TREE_CODE (a
->type
) != TREE_CODE (b
->type
)
6209 || TREE_TYPE (a
->type
) != TREE_TYPE (b
->type
)
6210 || !attribute_list_equal (TYPE_ATTRIBUTES (a
->type
),
6211 TYPE_ATTRIBUTES (b
->type
))
6212 || (TREE_CODE (a
->type
) != COMPLEX_TYPE
6213 && TYPE_NAME (a
->type
) != TYPE_NAME (b
->type
)))
6216 /* Be careful about comparing arrays before and after the element type
6217 has been completed; don't compare TYPE_ALIGN unless both types are
6219 if (COMPLETE_TYPE_P (a
->type
) && COMPLETE_TYPE_P (b
->type
)
6220 && (TYPE_ALIGN (a
->type
) != TYPE_ALIGN (b
->type
)
6221 || TYPE_MODE (a
->type
) != TYPE_MODE (b
->type
)))
6224 switch (TREE_CODE (a
->type
))
6229 case REFERENCE_TYPE
:
6234 return TYPE_VECTOR_SUBPARTS (a
->type
) == TYPE_VECTOR_SUBPARTS (b
->type
);
6237 if (TYPE_VALUES (a
->type
) != TYPE_VALUES (b
->type
)
6238 && !(TYPE_VALUES (a
->type
)
6239 && TREE_CODE (TYPE_VALUES (a
->type
)) == TREE_LIST
6240 && TYPE_VALUES (b
->type
)
6241 && TREE_CODE (TYPE_VALUES (b
->type
)) == TREE_LIST
6242 && type_list_equal (TYPE_VALUES (a
->type
),
6243 TYPE_VALUES (b
->type
))))
6246 /* ... fall through ... */
6251 return ((TYPE_MAX_VALUE (a
->type
) == TYPE_MAX_VALUE (b
->type
)
6252 || tree_int_cst_equal (TYPE_MAX_VALUE (a
->type
),
6253 TYPE_MAX_VALUE (b
->type
)))
6254 && (TYPE_MIN_VALUE (a
->type
) == TYPE_MIN_VALUE (b
->type
)
6255 || tree_int_cst_equal (TYPE_MIN_VALUE (a
->type
),
6256 TYPE_MIN_VALUE (b
->type
))));
6258 case FIXED_POINT_TYPE
:
6259 return TYPE_SATURATING (a
->type
) == TYPE_SATURATING (b
->type
);
6262 return TYPE_OFFSET_BASETYPE (a
->type
) == TYPE_OFFSET_BASETYPE (b
->type
);
6265 if (TYPE_METHOD_BASETYPE (a
->type
) == TYPE_METHOD_BASETYPE (b
->type
)
6266 && (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6267 || (TYPE_ARG_TYPES (a
->type
)
6268 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6269 && TYPE_ARG_TYPES (b
->type
)
6270 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6271 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6272 TYPE_ARG_TYPES (b
->type
)))))
6276 return TYPE_DOMAIN (a
->type
) == TYPE_DOMAIN (b
->type
);
6280 case QUAL_UNION_TYPE
:
6281 return (TYPE_FIELDS (a
->type
) == TYPE_FIELDS (b
->type
)
6282 || (TYPE_FIELDS (a
->type
)
6283 && TREE_CODE (TYPE_FIELDS (a
->type
)) == TREE_LIST
6284 && TYPE_FIELDS (b
->type
)
6285 && TREE_CODE (TYPE_FIELDS (b
->type
)) == TREE_LIST
6286 && type_list_equal (TYPE_FIELDS (a
->type
),
6287 TYPE_FIELDS (b
->type
))));
6290 if (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6291 || (TYPE_ARG_TYPES (a
->type
)
6292 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6293 && TYPE_ARG_TYPES (b
->type
)
6294 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6295 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6296 TYPE_ARG_TYPES (b
->type
))))
6304 if (lang_hooks
.types
.type_hash_eq
!= NULL
)
6305 return lang_hooks
.types
.type_hash_eq (a
->type
, b
->type
);
6310 /* Return the cached hash value. */
6313 type_hash_hash (const void *item
)
6315 return ((const struct type_hash
*) item
)->hash
;
6318 /* Look in the type hash table for a type isomorphic to TYPE.
6319 If one is found, return it. Otherwise return 0. */
6322 type_hash_lookup (hashval_t hashcode
, tree type
)
6324 struct type_hash
*h
, in
;
6326 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6327 must call that routine before comparing TYPE_ALIGNs. */
6333 h
= (struct type_hash
*) htab_find_with_hash (type_hash_table
, &in
,
6340 /* Add an entry to the type-hash-table
6341 for a type TYPE whose hash code is HASHCODE. */
6344 type_hash_add (hashval_t hashcode
, tree type
)
6346 struct type_hash
*h
;
6349 h
= ggc_alloc_type_hash ();
6352 loc
= htab_find_slot_with_hash (type_hash_table
, h
, hashcode
, INSERT
);
6356 /* Given TYPE, and HASHCODE its hash code, return the canonical
6357 object for an identical type if one already exists.
6358 Otherwise, return TYPE, and record it as the canonical object.
6360 To use this function, first create a type of the sort you want.
6361 Then compute its hash code from the fields of the type that
6362 make it different from other similar types.
6363 Then call this function and use the value. */
6366 type_hash_canon (unsigned int hashcode
, tree type
)
6370 /* The hash table only contains main variants, so ensure that's what we're
6372 gcc_assert (TYPE_MAIN_VARIANT (type
) == type
);
6374 /* See if the type is in the hash table already. If so, return it.
6375 Otherwise, add the type. */
6376 t1
= type_hash_lookup (hashcode
, type
);
6379 if (GATHER_STATISTICS
)
6381 tree_code_counts
[(int) TREE_CODE (type
)]--;
6382 tree_node_counts
[(int) t_kind
]--;
6383 tree_node_sizes
[(int) t_kind
] -= sizeof (struct tree_type_non_common
);
6389 type_hash_add (hashcode
, type
);
6394 /* See if the data pointed to by the type hash table is marked. We consider
6395 it marked if the type is marked or if a debug type number or symbol
6396 table entry has been made for the type. */
6399 type_hash_marked_p (const void *p
)
6401 const_tree
const type
= ((const struct type_hash
*) p
)->type
;
6403 return ggc_marked_p (type
);
6407 print_type_hash_statistics (void)
6409 fprintf (stderr
, "Type hash: size %ld, %ld elements, %f collisions\n",
6410 (long) htab_size (type_hash_table
),
6411 (long) htab_elements (type_hash_table
),
6412 htab_collisions (type_hash_table
));
6415 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
6416 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
6417 by adding the hash codes of the individual attributes. */
6420 attribute_hash_list (const_tree list
, hashval_t hashcode
)
6424 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
6425 /* ??? Do we want to add in TREE_VALUE too? */
6426 hashcode
= iterative_hash_object
6427 (IDENTIFIER_HASH_VALUE (get_attribute_name (tail
)), hashcode
);
6431 /* Given two lists of attributes, return true if list l2 is
6432 equivalent to l1. */
6435 attribute_list_equal (const_tree l1
, const_tree l2
)
6440 return attribute_list_contained (l1
, l2
)
6441 && attribute_list_contained (l2
, l1
);
6444 /* Given two lists of attributes, return true if list L2 is
6445 completely contained within L1. */
6446 /* ??? This would be faster if attribute names were stored in a canonicalized
6447 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
6448 must be used to show these elements are equivalent (which they are). */
6449 /* ??? It's not clear that attributes with arguments will always be handled
6453 attribute_list_contained (const_tree l1
, const_tree l2
)
6457 /* First check the obvious, maybe the lists are identical. */
6461 /* Maybe the lists are similar. */
6462 for (t1
= l1
, t2
= l2
;
6464 && get_attribute_name (t1
) == get_attribute_name (t2
)
6465 && TREE_VALUE (t1
) == TREE_VALUE (t2
);
6466 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
6469 /* Maybe the lists are equal. */
6470 if (t1
== 0 && t2
== 0)
6473 for (; t2
!= 0; t2
= TREE_CHAIN (t2
))
6476 /* This CONST_CAST is okay because lookup_attribute does not
6477 modify its argument and the return value is assigned to a
6479 for (attr
= lookup_ident_attribute (get_attribute_name (t2
), CONST_CAST_TREE(l1
));
6480 attr
!= NULL_TREE
&& !attribute_value_equal (t2
, attr
);
6481 attr
= lookup_ident_attribute (get_attribute_name (t2
), TREE_CHAIN (attr
)))
6484 if (attr
== NULL_TREE
)
6491 /* Given two lists of types
6492 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6493 return 1 if the lists contain the same types in the same order.
6494 Also, the TREE_PURPOSEs must match. */
6497 type_list_equal (const_tree l1
, const_tree l2
)
6501 for (t1
= l1
, t2
= l2
; t1
&& t2
; t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
6502 if (TREE_VALUE (t1
) != TREE_VALUE (t2
)
6503 || (TREE_PURPOSE (t1
) != TREE_PURPOSE (t2
)
6504 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1
), TREE_PURPOSE (t2
))
6505 && (TREE_TYPE (TREE_PURPOSE (t1
))
6506 == TREE_TYPE (TREE_PURPOSE (t2
))))))
6512 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6513 given by TYPE. If the argument list accepts variable arguments,
6514 then this function counts only the ordinary arguments. */
6517 type_num_arguments (const_tree type
)
6522 for (t
= TYPE_ARG_TYPES (type
); t
; t
= TREE_CHAIN (t
))
6523 /* If the function does not take a variable number of arguments,
6524 the last element in the list will have type `void'. */
6525 if (VOID_TYPE_P (TREE_VALUE (t
)))
6533 /* Nonzero if integer constants T1 and T2
6534 represent the same constant value. */
6537 tree_int_cst_equal (const_tree t1
, const_tree t2
)
6542 if (t1
== 0 || t2
== 0)
6545 if (TREE_CODE (t1
) == INTEGER_CST
6546 && TREE_CODE (t2
) == INTEGER_CST
6547 && TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
6548 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
))
6554 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
6555 The precise way of comparison depends on their data type. */
6558 tree_int_cst_lt (const_tree t1
, const_tree t2
)
6563 if (TYPE_UNSIGNED (TREE_TYPE (t1
)) != TYPE_UNSIGNED (TREE_TYPE (t2
)))
6565 int t1_sgn
= tree_int_cst_sgn (t1
);
6566 int t2_sgn
= tree_int_cst_sgn (t2
);
6568 if (t1_sgn
< t2_sgn
)
6570 else if (t1_sgn
> t2_sgn
)
6572 /* Otherwise, both are non-negative, so we compare them as
6573 unsigned just in case one of them would overflow a signed
6576 else if (!TYPE_UNSIGNED (TREE_TYPE (t1
)))
6577 return INT_CST_LT (t1
, t2
);
6579 return INT_CST_LT_UNSIGNED (t1
, t2
);
6582 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
6585 tree_int_cst_compare (const_tree t1
, const_tree t2
)
6587 if (tree_int_cst_lt (t1
, t2
))
6589 else if (tree_int_cst_lt (t2
, t1
))
6595 /* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
6596 the host. If POS is zero, the value can be represented in a single
6597 HOST_WIDE_INT. If POS is nonzero, the value must be non-negative and can
6598 be represented in a single unsigned HOST_WIDE_INT. */
6601 host_integerp (const_tree t
, int pos
)
6606 return (TREE_CODE (t
) == INTEGER_CST
6607 && ((TREE_INT_CST_HIGH (t
) == 0
6608 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) >= 0)
6609 || (! pos
&& TREE_INT_CST_HIGH (t
) == -1
6610 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0
6611 && !TYPE_UNSIGNED (TREE_TYPE (t
)))
6612 || (pos
&& TREE_INT_CST_HIGH (t
) == 0)));
6615 /* Return the HOST_WIDE_INT least significant bits of T if it is an
6616 INTEGER_CST and there is no overflow. POS is nonzero if the result must
6617 be non-negative. We must be able to satisfy the above conditions. */
6620 tree_low_cst (const_tree t
, int pos
)
6622 gcc_assert (host_integerp (t
, pos
));
6623 return TREE_INT_CST_LOW (t
);
6626 /* Return the HOST_WIDE_INT least significant bits of T, a sizetype
6627 kind INTEGER_CST. This makes sure to properly sign-extend the
6631 size_low_cst (const_tree t
)
6633 double_int d
= tree_to_double_int (t
);
6634 return d
.sext (TYPE_PRECISION (TREE_TYPE (t
))).low
;
6637 /* Return the most significant (sign) bit of T. */
6640 tree_int_cst_sign_bit (const_tree t
)
6642 unsigned bitno
= TYPE_PRECISION (TREE_TYPE (t
)) - 1;
6643 unsigned HOST_WIDE_INT w
;
6645 if (bitno
< HOST_BITS_PER_WIDE_INT
)
6646 w
= TREE_INT_CST_LOW (t
);
6649 w
= TREE_INT_CST_HIGH (t
);
6650 bitno
-= HOST_BITS_PER_WIDE_INT
;
6653 return (w
>> bitno
) & 1;
6656 /* Return an indication of the sign of the integer constant T.
6657 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6658 Note that -1 will never be returned if T's type is unsigned. */
6661 tree_int_cst_sgn (const_tree t
)
6663 if (TREE_INT_CST_LOW (t
) == 0 && TREE_INT_CST_HIGH (t
) == 0)
6665 else if (TYPE_UNSIGNED (TREE_TYPE (t
)))
6667 else if (TREE_INT_CST_HIGH (t
) < 0)
6673 /* Return the minimum number of bits needed to represent VALUE in a
6674 signed or unsigned type, UNSIGNEDP says which. */
6677 tree_int_cst_min_precision (tree value
, bool unsignedp
)
6679 /* If the value is negative, compute its negative minus 1. The latter
6680 adjustment is because the absolute value of the largest negative value
6681 is one larger than the largest positive value. This is equivalent to
6682 a bit-wise negation, so use that operation instead. */
6684 if (tree_int_cst_sgn (value
) < 0)
6685 value
= fold_build1 (BIT_NOT_EXPR
, TREE_TYPE (value
), value
);
6687 /* Return the number of bits needed, taking into account the fact
6688 that we need one more bit for a signed than unsigned type.
6689 If value is 0 or -1, the minimum precision is 1 no matter
6690 whether unsignedp is true or false. */
6692 if (integer_zerop (value
))
6695 return tree_floor_log2 (value
) + 1 + !unsignedp
;
6698 /* Compare two constructor-element-type constants. Return 1 if the lists
6699 are known to be equal; otherwise return 0. */
6702 simple_cst_list_equal (const_tree l1
, const_tree l2
)
6704 while (l1
!= NULL_TREE
&& l2
!= NULL_TREE
)
6706 if (simple_cst_equal (TREE_VALUE (l1
), TREE_VALUE (l2
)) != 1)
6709 l1
= TREE_CHAIN (l1
);
6710 l2
= TREE_CHAIN (l2
);
6716 /* Return truthvalue of whether T1 is the same tree structure as T2.
6717 Return 1 if they are the same.
6718 Return 0 if they are understandably different.
6719 Return -1 if either contains tree structure not understood by
6723 simple_cst_equal (const_tree t1
, const_tree t2
)
6725 enum tree_code code1
, code2
;
6731 if (t1
== 0 || t2
== 0)
6734 code1
= TREE_CODE (t1
);
6735 code2
= TREE_CODE (t2
);
6737 if (CONVERT_EXPR_CODE_P (code1
) || code1
== NON_LVALUE_EXPR
)
6739 if (CONVERT_EXPR_CODE_P (code2
)
6740 || code2
== NON_LVALUE_EXPR
)
6741 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6743 return simple_cst_equal (TREE_OPERAND (t1
, 0), t2
);
6746 else if (CONVERT_EXPR_CODE_P (code2
)
6747 || code2
== NON_LVALUE_EXPR
)
6748 return simple_cst_equal (t1
, TREE_OPERAND (t2
, 0));
6756 return (TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
6757 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
));
6760 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
6763 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
6766 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
6767 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
6768 TREE_STRING_LENGTH (t1
)));
6772 unsigned HOST_WIDE_INT idx
;
6773 vec
<constructor_elt
, va_gc
> *v1
= CONSTRUCTOR_ELTS (t1
);
6774 vec
<constructor_elt
, va_gc
> *v2
= CONSTRUCTOR_ELTS (t2
);
6776 if (vec_safe_length (v1
) != vec_safe_length (v2
))
6779 for (idx
= 0; idx
< vec_safe_length (v1
); ++idx
)
6780 /* ??? Should we handle also fields here? */
6781 if (!simple_cst_equal ((*v1
)[idx
].value
, (*v2
)[idx
].value
))
6787 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6790 cmp
= simple_cst_equal (CALL_EXPR_FN (t1
), CALL_EXPR_FN (t2
));
6793 if (call_expr_nargs (t1
) != call_expr_nargs (t2
))
6796 const_tree arg1
, arg2
;
6797 const_call_expr_arg_iterator iter1
, iter2
;
6798 for (arg1
= first_const_call_expr_arg (t1
, &iter1
),
6799 arg2
= first_const_call_expr_arg (t2
, &iter2
);
6801 arg1
= next_const_call_expr_arg (&iter1
),
6802 arg2
= next_const_call_expr_arg (&iter2
))
6804 cmp
= simple_cst_equal (arg1
, arg2
);
6808 return arg1
== arg2
;
6812 /* Special case: if either target is an unallocated VAR_DECL,
6813 it means that it's going to be unified with whatever the
6814 TARGET_EXPR is really supposed to initialize, so treat it
6815 as being equivalent to anything. */
6816 if ((TREE_CODE (TREE_OPERAND (t1
, 0)) == VAR_DECL
6817 && DECL_NAME (TREE_OPERAND (t1
, 0)) == NULL_TREE
6818 && !DECL_RTL_SET_P (TREE_OPERAND (t1
, 0)))
6819 || (TREE_CODE (TREE_OPERAND (t2
, 0)) == VAR_DECL
6820 && DECL_NAME (TREE_OPERAND (t2
, 0)) == NULL_TREE
6821 && !DECL_RTL_SET_P (TREE_OPERAND (t2
, 0))))
6824 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6829 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
6831 case WITH_CLEANUP_EXPR
:
6832 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6836 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t1
, 1));
6839 if (TREE_OPERAND (t1
, 1) == TREE_OPERAND (t2
, 1))
6840 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6854 /* This general rule works for most tree codes. All exceptions should be
6855 handled above. If this is a language-specific tree code, we can't
6856 trust what might be in the operand, so say we don't know
6858 if ((int) code1
>= (int) LAST_AND_UNUSED_TREE_CODE
)
6861 switch (TREE_CODE_CLASS (code1
))
6865 case tcc_comparison
:
6866 case tcc_expression
:
6870 for (i
= 0; i
< TREE_CODE_LENGTH (code1
); i
++)
6872 cmp
= simple_cst_equal (TREE_OPERAND (t1
, i
), TREE_OPERAND (t2
, i
));
6884 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
6885 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
6886 than U, respectively. */
6889 compare_tree_int (const_tree t
, unsigned HOST_WIDE_INT u
)
6891 if (tree_int_cst_sgn (t
) < 0)
6893 else if (TREE_INT_CST_HIGH (t
) != 0)
6895 else if (TREE_INT_CST_LOW (t
) == u
)
6897 else if (TREE_INT_CST_LOW (t
) < u
)
6903 /* Return true if SIZE represents a constant size that is in bounds of
6904 what the middle-end and the backend accepts (covering not more than
6905 half of the address-space). */
6908 valid_constant_size_p (const_tree size
)
6910 if (! host_integerp (size
, 1)
6911 || TREE_OVERFLOW (size
)
6912 || tree_int_cst_sign_bit (size
) != 0)
6917 /* Return true if CODE represents an associative tree code. Otherwise
6920 associative_tree_code (enum tree_code code
)
6939 /* Return true if CODE represents a commutative tree code. Otherwise
6942 commutative_tree_code (enum tree_code code
)
6948 case MULT_HIGHPART_EXPR
:
6956 case UNORDERED_EXPR
:
6960 case TRUTH_AND_EXPR
:
6961 case TRUTH_XOR_EXPR
:
6963 case WIDEN_MULT_EXPR
:
6964 case VEC_WIDEN_MULT_HI_EXPR
:
6965 case VEC_WIDEN_MULT_LO_EXPR
:
6966 case VEC_WIDEN_MULT_EVEN_EXPR
:
6967 case VEC_WIDEN_MULT_ODD_EXPR
:
6976 /* Return true if CODE represents a ternary tree code for which the
6977 first two operands are commutative. Otherwise return false. */
6979 commutative_ternary_tree_code (enum tree_code code
)
6983 case WIDEN_MULT_PLUS_EXPR
:
6984 case WIDEN_MULT_MINUS_EXPR
:
6993 /* Generate a hash value for an expression. This can be used iteratively
6994 by passing a previous result as the VAL argument.
6996 This function is intended to produce the same hash for expressions which
6997 would compare equal using operand_equal_p. */
7000 iterative_hash_expr (const_tree t
, hashval_t val
)
7003 enum tree_code code
;
7007 return iterative_hash_hashval_t (0, val
);
7009 code
= TREE_CODE (t
);
7013 /* Alas, constants aren't shared, so we can't rely on pointer
7016 val
= iterative_hash_host_wide_int (TREE_INT_CST_LOW (t
), val
);
7017 return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t
), val
);
7020 unsigned int val2
= real_hash (TREE_REAL_CST_PTR (t
));
7022 return iterative_hash_hashval_t (val2
, val
);
7026 unsigned int val2
= fixed_hash (TREE_FIXED_CST_PTR (t
));
7028 return iterative_hash_hashval_t (val2
, val
);
7031 return iterative_hash (TREE_STRING_POINTER (t
),
7032 TREE_STRING_LENGTH (t
), val
);
7034 val
= iterative_hash_expr (TREE_REALPART (t
), val
);
7035 return iterative_hash_expr (TREE_IMAGPART (t
), val
);
7039 for (i
= 0; i
< VECTOR_CST_NELTS (t
); ++i
)
7040 val
= iterative_hash_expr (VECTOR_CST_ELT (t
, i
), val
);
7044 /* We can just compare by pointer. */
7045 return iterative_hash_host_wide_int (SSA_NAME_VERSION (t
), val
);
7046 case PLACEHOLDER_EXPR
:
7047 /* The node itself doesn't matter. */
7050 /* A list of expressions, for a CALL_EXPR or as the elements of a
7052 for (; t
; t
= TREE_CHAIN (t
))
7053 val
= iterative_hash_expr (TREE_VALUE (t
), val
);
7057 unsigned HOST_WIDE_INT idx
;
7059 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t
), idx
, field
, value
)
7061 val
= iterative_hash_expr (field
, val
);
7062 val
= iterative_hash_expr (value
, val
);
7068 /* The type of the second operand is relevant, except for
7069 its top-level qualifiers. */
7070 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (t
, 1)));
7072 val
= iterative_hash_object (TYPE_HASH (type
), val
);
7074 /* We could use the standard hash computation from this point
7076 val
= iterative_hash_object (code
, val
);
7077 val
= iterative_hash_expr (TREE_OPERAND (t
, 1), val
);
7078 val
= iterative_hash_expr (TREE_OPERAND (t
, 0), val
);
7082 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7083 Otherwise nodes that compare equal according to operand_equal_p might
7084 get different hash codes. However, don't do this for machine specific
7085 or front end builtins, since the function code is overloaded in those
7087 if (DECL_BUILT_IN_CLASS (t
) == BUILT_IN_NORMAL
7088 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t
)))
7090 t
= builtin_decl_explicit (DECL_FUNCTION_CODE (t
));
7091 code
= TREE_CODE (t
);
7095 tclass
= TREE_CODE_CLASS (code
);
7097 if (tclass
== tcc_declaration
)
7099 /* DECL's have a unique ID */
7100 val
= iterative_hash_host_wide_int (DECL_UID (t
), val
);
7104 gcc_assert (IS_EXPR_CODE_CLASS (tclass
));
7106 val
= iterative_hash_object (code
, val
);
7108 /* Don't hash the type, that can lead to having nodes which
7109 compare equal according to operand_equal_p, but which
7110 have different hash codes. */
7111 if (CONVERT_EXPR_CODE_P (code
)
7112 || code
== NON_LVALUE_EXPR
)
7114 /* Make sure to include signness in the hash computation. */
7115 val
+= TYPE_UNSIGNED (TREE_TYPE (t
));
7116 val
= iterative_hash_expr (TREE_OPERAND (t
, 0), val
);
7119 else if (commutative_tree_code (code
))
7121 /* It's a commutative expression. We want to hash it the same
7122 however it appears. We do this by first hashing both operands
7123 and then rehashing based on the order of their independent
7125 hashval_t one
= iterative_hash_expr (TREE_OPERAND (t
, 0), 0);
7126 hashval_t two
= iterative_hash_expr (TREE_OPERAND (t
, 1), 0);
7130 t
= one
, one
= two
, two
= t
;
7132 val
= iterative_hash_hashval_t (one
, val
);
7133 val
= iterative_hash_hashval_t (two
, val
);
7136 for (i
= TREE_OPERAND_LENGTH (t
) - 1; i
>= 0; --i
)
7137 val
= iterative_hash_expr (TREE_OPERAND (t
, i
), val
);
7143 /* Generate a hash value for a pair of expressions. This can be used
7144 iteratively by passing a previous result as the VAL argument.
7146 The same hash value is always returned for a given pair of expressions,
7147 regardless of the order in which they are presented. This is useful in
7148 hashing the operands of commutative functions. */
7151 iterative_hash_exprs_commutative (const_tree t1
,
7152 const_tree t2
, hashval_t val
)
7154 hashval_t one
= iterative_hash_expr (t1
, 0);
7155 hashval_t two
= iterative_hash_expr (t2
, 0);
7159 t
= one
, one
= two
, two
= t
;
7160 val
= iterative_hash_hashval_t (one
, val
);
7161 val
= iterative_hash_hashval_t (two
, val
);
7166 /* Constructors for pointer, array and function types.
7167 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7168 constructed by language-dependent code, not here.) */
7170 /* Construct, lay out and return the type of pointers to TO_TYPE with
7171 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7172 reference all of memory. If such a type has already been
7173 constructed, reuse it. */
7176 build_pointer_type_for_mode (tree to_type
, enum machine_mode mode
,
7181 if (to_type
== error_mark_node
)
7182 return error_mark_node
;
7184 /* If the pointed-to type has the may_alias attribute set, force
7185 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7186 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7187 can_alias_all
= true;
7189 /* In some cases, languages will have things that aren't a POINTER_TYPE
7190 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7191 In that case, return that type without regard to the rest of our
7194 ??? This is a kludge, but consistent with the way this function has
7195 always operated and there doesn't seem to be a good way to avoid this
7197 if (TYPE_POINTER_TO (to_type
) != 0
7198 && TREE_CODE (TYPE_POINTER_TO (to_type
)) != POINTER_TYPE
)
7199 return TYPE_POINTER_TO (to_type
);
7201 /* First, if we already have a type for pointers to TO_TYPE and it's
7202 the proper mode, use it. */
7203 for (t
= TYPE_POINTER_TO (to_type
); t
; t
= TYPE_NEXT_PTR_TO (t
))
7204 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7207 t
= make_node (POINTER_TYPE
);
7209 TREE_TYPE (t
) = to_type
;
7210 SET_TYPE_MODE (t
, mode
);
7211 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7212 TYPE_NEXT_PTR_TO (t
) = TYPE_POINTER_TO (to_type
);
7213 TYPE_POINTER_TO (to_type
) = t
;
7215 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
7216 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7217 else if (TYPE_CANONICAL (to_type
) != to_type
)
7219 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type
),
7220 mode
, can_alias_all
);
7222 /* Lay out the type. This function has many callers that are concerned
7223 with expression-construction, and this simplifies them all. */
7229 /* By default build pointers in ptr_mode. */
7232 build_pointer_type (tree to_type
)
7234 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7235 : TYPE_ADDR_SPACE (to_type
);
7236 enum machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7237 return build_pointer_type_for_mode (to_type
, pointer_mode
, false);
7240 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7243 build_reference_type_for_mode (tree to_type
, enum machine_mode mode
,
7248 if (to_type
== error_mark_node
)
7249 return error_mark_node
;
7251 /* If the pointed-to type has the may_alias attribute set, force
7252 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7253 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7254 can_alias_all
= true;
7256 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7257 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7258 In that case, return that type without regard to the rest of our
7261 ??? This is a kludge, but consistent with the way this function has
7262 always operated and there doesn't seem to be a good way to avoid this
7264 if (TYPE_REFERENCE_TO (to_type
) != 0
7265 && TREE_CODE (TYPE_REFERENCE_TO (to_type
)) != REFERENCE_TYPE
)
7266 return TYPE_REFERENCE_TO (to_type
);
7268 /* First, if we already have a type for pointers to TO_TYPE and it's
7269 the proper mode, use it. */
7270 for (t
= TYPE_REFERENCE_TO (to_type
); t
; t
= TYPE_NEXT_REF_TO (t
))
7271 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7274 t
= make_node (REFERENCE_TYPE
);
7276 TREE_TYPE (t
) = to_type
;
7277 SET_TYPE_MODE (t
, mode
);
7278 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7279 TYPE_NEXT_REF_TO (t
) = TYPE_REFERENCE_TO (to_type
);
7280 TYPE_REFERENCE_TO (to_type
) = t
;
7282 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
7283 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7284 else if (TYPE_CANONICAL (to_type
) != to_type
)
7286 = build_reference_type_for_mode (TYPE_CANONICAL (to_type
),
7287 mode
, can_alias_all
);
7295 /* Build the node for the type of references-to-TO_TYPE by default
7299 build_reference_type (tree to_type
)
7301 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7302 : TYPE_ADDR_SPACE (to_type
);
7303 enum machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7304 return build_reference_type_for_mode (to_type
, pointer_mode
, false);
7307 /* Build a type that is compatible with t but has no cv quals anywhere
7310 const char *const *const * -> char ***. */
7313 build_type_no_quals (tree t
)
7315 switch (TREE_CODE (t
))
7318 return build_pointer_type_for_mode (build_type_no_quals (TREE_TYPE (t
)),
7320 TYPE_REF_CAN_ALIAS_ALL (t
));
7321 case REFERENCE_TYPE
:
7323 build_reference_type_for_mode (build_type_no_quals (TREE_TYPE (t
)),
7325 TYPE_REF_CAN_ALIAS_ALL (t
));
7327 return TYPE_MAIN_VARIANT (t
);
7331 #define MAX_INT_CACHED_PREC \
7332 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7333 static GTY(()) tree nonstandard_integer_type_cache
[2 * MAX_INT_CACHED_PREC
+ 2];
7335 /* Builds a signed or unsigned integer type of precision PRECISION.
7336 Used for C bitfields whose precision does not match that of
7337 built-in target types. */
7339 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision
,
7345 unsignedp
= MAX_INT_CACHED_PREC
+ 1;
7347 if (precision
<= MAX_INT_CACHED_PREC
)
7349 itype
= nonstandard_integer_type_cache
[precision
+ unsignedp
];
7354 itype
= make_node (INTEGER_TYPE
);
7355 TYPE_PRECISION (itype
) = precision
;
7358 fixup_unsigned_type (itype
);
7360 fixup_signed_type (itype
);
7363 if (host_integerp (TYPE_MAX_VALUE (itype
), 1))
7364 ret
= type_hash_canon (tree_low_cst (TYPE_MAX_VALUE (itype
), 1), itype
);
7365 if (precision
<= MAX_INT_CACHED_PREC
)
7366 nonstandard_integer_type_cache
[precision
+ unsignedp
] = ret
;
7371 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7372 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7373 is true, reuse such a type that has already been constructed. */
7376 build_range_type_1 (tree type
, tree lowval
, tree highval
, bool shared
)
7378 tree itype
= make_node (INTEGER_TYPE
);
7379 hashval_t hashcode
= 0;
7381 TREE_TYPE (itype
) = type
;
7383 TYPE_MIN_VALUE (itype
) = fold_convert (type
, lowval
);
7384 TYPE_MAX_VALUE (itype
) = highval
? fold_convert (type
, highval
) : NULL
;
7386 TYPE_PRECISION (itype
) = TYPE_PRECISION (type
);
7387 SET_TYPE_MODE (itype
, TYPE_MODE (type
));
7388 TYPE_SIZE (itype
) = TYPE_SIZE (type
);
7389 TYPE_SIZE_UNIT (itype
) = TYPE_SIZE_UNIT (type
);
7390 TYPE_ALIGN (itype
) = TYPE_ALIGN (type
);
7391 TYPE_USER_ALIGN (itype
) = TYPE_USER_ALIGN (type
);
7396 if ((TYPE_MIN_VALUE (itype
)
7397 && TREE_CODE (TYPE_MIN_VALUE (itype
)) != INTEGER_CST
)
7398 || (TYPE_MAX_VALUE (itype
)
7399 && TREE_CODE (TYPE_MAX_VALUE (itype
)) != INTEGER_CST
))
7401 /* Since we cannot reliably merge this type, we need to compare it using
7402 structural equality checks. */
7403 SET_TYPE_STRUCTURAL_EQUALITY (itype
);
7407 hashcode
= iterative_hash_expr (TYPE_MIN_VALUE (itype
), hashcode
);
7408 hashcode
= iterative_hash_expr (TYPE_MAX_VALUE (itype
), hashcode
);
7409 hashcode
= iterative_hash_hashval_t (TYPE_HASH (type
), hashcode
);
7410 itype
= type_hash_canon (hashcode
, itype
);
7415 /* Wrapper around build_range_type_1 with SHARED set to true. */
7418 build_range_type (tree type
, tree lowval
, tree highval
)
7420 return build_range_type_1 (type
, lowval
, highval
, true);
7423 /* Wrapper around build_range_type_1 with SHARED set to false. */
7426 build_nonshared_range_type (tree type
, tree lowval
, tree highval
)
7428 return build_range_type_1 (type
, lowval
, highval
, false);
7431 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7432 MAXVAL should be the maximum value in the domain
7433 (one less than the length of the array).
7435 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7436 We don't enforce this limit, that is up to caller (e.g. language front end).
7437 The limit exists because the result is a signed type and we don't handle
7438 sizes that use more than one HOST_WIDE_INT. */
7441 build_index_type (tree maxval
)
7443 return build_range_type (sizetype
, size_zero_node
, maxval
);
7446 /* Return true if the debug information for TYPE, a subtype, should be emitted
7447 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7448 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7449 debug info and doesn't reflect the source code. */
7452 subrange_type_for_debug_p (const_tree type
, tree
*lowval
, tree
*highval
)
7454 tree base_type
= TREE_TYPE (type
), low
, high
;
7456 /* Subrange types have a base type which is an integral type. */
7457 if (!INTEGRAL_TYPE_P (base_type
))
7460 /* Get the real bounds of the subtype. */
7461 if (lang_hooks
.types
.get_subrange_bounds
)
7462 lang_hooks
.types
.get_subrange_bounds (type
, &low
, &high
);
7465 low
= TYPE_MIN_VALUE (type
);
7466 high
= TYPE_MAX_VALUE (type
);
7469 /* If the type and its base type have the same representation and the same
7470 name, then the type is not a subrange but a copy of the base type. */
7471 if ((TREE_CODE (base_type
) == INTEGER_TYPE
7472 || TREE_CODE (base_type
) == BOOLEAN_TYPE
)
7473 && int_size_in_bytes (type
) == int_size_in_bytes (base_type
)
7474 && tree_int_cst_equal (low
, TYPE_MIN_VALUE (base_type
))
7475 && tree_int_cst_equal (high
, TYPE_MAX_VALUE (base_type
)))
7477 tree type_name
= TYPE_NAME (type
);
7478 tree base_type_name
= TYPE_NAME (base_type
);
7480 if (type_name
&& TREE_CODE (type_name
) == TYPE_DECL
)
7481 type_name
= DECL_NAME (type_name
);
7483 if (base_type_name
&& TREE_CODE (base_type_name
) == TYPE_DECL
)
7484 base_type_name
= DECL_NAME (base_type_name
);
7486 if (type_name
== base_type_name
)
7497 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7498 and number of elements specified by the range of values of INDEX_TYPE.
7499 If SHARED is true, reuse such a type that has already been constructed. */
7502 build_array_type_1 (tree elt_type
, tree index_type
, bool shared
)
7506 if (TREE_CODE (elt_type
) == FUNCTION_TYPE
)
7508 error ("arrays of functions are not meaningful");
7509 elt_type
= integer_type_node
;
7512 t
= make_node (ARRAY_TYPE
);
7513 TREE_TYPE (t
) = elt_type
;
7514 TYPE_DOMAIN (t
) = index_type
;
7515 TYPE_ADDR_SPACE (t
) = TYPE_ADDR_SPACE (elt_type
);
7518 /* If the element type is incomplete at this point we get marked for
7519 structural equality. Do not record these types in the canonical
7521 if (TYPE_STRUCTURAL_EQUALITY_P (t
))
7526 hashval_t hashcode
= iterative_hash_object (TYPE_HASH (elt_type
), 0);
7528 hashcode
= iterative_hash_object (TYPE_HASH (index_type
), hashcode
);
7529 t
= type_hash_canon (hashcode
, t
);
7532 if (TYPE_CANONICAL (t
) == t
)
7534 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type
)
7535 || (index_type
&& TYPE_STRUCTURAL_EQUALITY_P (index_type
)))
7536 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7537 else if (TYPE_CANONICAL (elt_type
) != elt_type
7538 || (index_type
&& TYPE_CANONICAL (index_type
) != index_type
))
7540 = build_array_type_1 (TYPE_CANONICAL (elt_type
),
7542 ? TYPE_CANONICAL (index_type
) : NULL_TREE
,
7549 /* Wrapper around build_array_type_1 with SHARED set to true. */
7552 build_array_type (tree elt_type
, tree index_type
)
7554 return build_array_type_1 (elt_type
, index_type
, true);
7557 /* Wrapper around build_array_type_1 with SHARED set to false. */
7560 build_nonshared_array_type (tree elt_type
, tree index_type
)
7562 return build_array_type_1 (elt_type
, index_type
, false);
7565 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7569 build_array_type_nelts (tree elt_type
, unsigned HOST_WIDE_INT nelts
)
7571 return build_array_type (elt_type
, build_index_type (size_int (nelts
- 1)));
7574 /* Recursively examines the array elements of TYPE, until a non-array
7575 element type is found. */
7578 strip_array_types (tree type
)
7580 while (TREE_CODE (type
) == ARRAY_TYPE
)
7581 type
= TREE_TYPE (type
);
7586 /* Computes the canonical argument types from the argument type list
7589 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7590 on entry to this function, or if any of the ARGTYPES are
7593 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7594 true on entry to this function, or if any of the ARGTYPES are
7597 Returns a canonical argument list, which may be ARGTYPES when the
7598 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7599 true) or would not differ from ARGTYPES. */
7602 maybe_canonicalize_argtypes(tree argtypes
,
7603 bool *any_structural_p
,
7604 bool *any_noncanonical_p
)
7607 bool any_noncanonical_argtypes_p
= false;
7609 for (arg
= argtypes
; arg
&& !(*any_structural_p
); arg
= TREE_CHAIN (arg
))
7611 if (!TREE_VALUE (arg
) || TREE_VALUE (arg
) == error_mark_node
)
7612 /* Fail gracefully by stating that the type is structural. */
7613 *any_structural_p
= true;
7614 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg
)))
7615 *any_structural_p
= true;
7616 else if (TYPE_CANONICAL (TREE_VALUE (arg
)) != TREE_VALUE (arg
)
7617 || TREE_PURPOSE (arg
))
7618 /* If the argument has a default argument, we consider it
7619 non-canonical even though the type itself is canonical.
7620 That way, different variants of function and method types
7621 with default arguments will all point to the variant with
7622 no defaults as their canonical type. */
7623 any_noncanonical_argtypes_p
= true;
7626 if (*any_structural_p
)
7629 if (any_noncanonical_argtypes_p
)
7631 /* Build the canonical list of argument types. */
7632 tree canon_argtypes
= NULL_TREE
;
7633 bool is_void
= false;
7635 for (arg
= argtypes
; arg
; arg
= TREE_CHAIN (arg
))
7637 if (arg
== void_list_node
)
7640 canon_argtypes
= tree_cons (NULL_TREE
,
7641 TYPE_CANONICAL (TREE_VALUE (arg
)),
7645 canon_argtypes
= nreverse (canon_argtypes
);
7647 canon_argtypes
= chainon (canon_argtypes
, void_list_node
);
7649 /* There is a non-canonical type. */
7650 *any_noncanonical_p
= true;
7651 return canon_argtypes
;
7654 /* The canonical argument types are the same as ARGTYPES. */
7658 /* Construct, lay out and return
7659 the type of functions returning type VALUE_TYPE
7660 given arguments of types ARG_TYPES.
7661 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
7662 are data type nodes for the arguments of the function.
7663 If such a type has already been constructed, reuse it. */
7666 build_function_type (tree value_type
, tree arg_types
)
7669 hashval_t hashcode
= 0;
7670 bool any_structural_p
, any_noncanonical_p
;
7671 tree canon_argtypes
;
7673 if (TREE_CODE (value_type
) == FUNCTION_TYPE
)
7675 error ("function return type cannot be function");
7676 value_type
= integer_type_node
;
7679 /* Make a node of the sort we want. */
7680 t
= make_node (FUNCTION_TYPE
);
7681 TREE_TYPE (t
) = value_type
;
7682 TYPE_ARG_TYPES (t
) = arg_types
;
7684 /* If we already have such a type, use the old one. */
7685 hashcode
= iterative_hash_object (TYPE_HASH (value_type
), hashcode
);
7686 hashcode
= type_hash_list (arg_types
, hashcode
);
7687 t
= type_hash_canon (hashcode
, t
);
7689 /* Set up the canonical type. */
7690 any_structural_p
= TYPE_STRUCTURAL_EQUALITY_P (value_type
);
7691 any_noncanonical_p
= TYPE_CANONICAL (value_type
) != value_type
;
7692 canon_argtypes
= maybe_canonicalize_argtypes (arg_types
,
7694 &any_noncanonical_p
);
7695 if (any_structural_p
)
7696 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7697 else if (any_noncanonical_p
)
7698 TYPE_CANONICAL (t
) = build_function_type (TYPE_CANONICAL (value_type
),
7701 if (!COMPLETE_TYPE_P (t
))
7706 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP and the
7707 return value if SKIP_RETURN is true. */
7710 build_function_type_skip_args (tree orig_type
, bitmap args_to_skip
,
7713 tree new_type
= NULL
;
7714 tree args
, new_args
= NULL
, t
;
7718 for (args
= TYPE_ARG_TYPES (orig_type
); args
&& args
!= void_list_node
;
7719 args
= TREE_CHAIN (args
), i
++)
7720 if (!args_to_skip
|| !bitmap_bit_p (args_to_skip
, i
))
7721 new_args
= tree_cons (NULL_TREE
, TREE_VALUE (args
), new_args
);
7723 new_reversed
= nreverse (new_args
);
7727 TREE_CHAIN (new_args
) = void_list_node
;
7729 new_reversed
= void_list_node
;
7732 /* Use copy_node to preserve as much as possible from original type
7733 (debug info, attribute lists etc.)
7734 Exception is METHOD_TYPEs must have THIS argument.
7735 When we are asked to remove it, we need to build new FUNCTION_TYPE
7737 if (TREE_CODE (orig_type
) != METHOD_TYPE
7739 || !bitmap_bit_p (args_to_skip
, 0))
7741 new_type
= build_distinct_type_copy (orig_type
);
7742 TYPE_ARG_TYPES (new_type
) = new_reversed
;
7747 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type
),
7749 TYPE_CONTEXT (new_type
) = TYPE_CONTEXT (orig_type
);
7753 TREE_TYPE (new_type
) = void_type_node
;
7755 /* This is a new type, not a copy of an old type. Need to reassociate
7756 variants. We can handle everything except the main variant lazily. */
7757 t
= TYPE_MAIN_VARIANT (orig_type
);
7760 t
= build_function_type_skip_args (t
, args_to_skip
, skip_return
);
7761 TYPE_MAIN_VARIANT (new_type
) = t
;
7762 TYPE_NEXT_VARIANT (new_type
) = TYPE_NEXT_VARIANT (t
);
7763 TYPE_NEXT_VARIANT (t
) = new_type
;
7767 TYPE_MAIN_VARIANT (new_type
) = new_type
;
7768 TYPE_NEXT_VARIANT (new_type
) = NULL
;
7774 /* Build variant of function decl ORIG_DECL skipping ARGS_TO_SKIP and the
7775 return value if SKIP_RETURN is true.
7777 Arguments from DECL_ARGUMENTS list can't be removed now, since they are
7778 linked by TREE_CHAIN directly. The caller is responsible for eliminating
7779 them when they are being duplicated (i.e. copy_arguments_for_versioning). */
7782 build_function_decl_skip_args (tree orig_decl
, bitmap args_to_skip
,
7785 tree new_decl
= copy_node (orig_decl
);
7788 new_type
= TREE_TYPE (orig_decl
);
7789 if (prototype_p (new_type
)
7790 || (skip_return
&& !VOID_TYPE_P (TREE_TYPE (new_type
))))
7792 = build_function_type_skip_args (new_type
, args_to_skip
, skip_return
);
7793 TREE_TYPE (new_decl
) = new_type
;
7795 /* For declarations setting DECL_VINDEX (i.e. methods)
7796 we expect first argument to be THIS pointer. */
7797 if (args_to_skip
&& bitmap_bit_p (args_to_skip
, 0))
7798 DECL_VINDEX (new_decl
) = NULL_TREE
;
7800 /* When signature changes, we need to clear builtin info. */
7801 if (DECL_BUILT_IN (new_decl
)
7803 && !bitmap_empty_p (args_to_skip
))
7805 DECL_BUILT_IN_CLASS (new_decl
) = NOT_BUILT_IN
;
7806 DECL_FUNCTION_CODE (new_decl
) = (enum built_in_function
) 0;
7811 /* Build a function type. The RETURN_TYPE is the type returned by the
7812 function. If VAARGS is set, no void_type_node is appended to the
7813 the list. ARGP must be always be terminated be a NULL_TREE. */
7816 build_function_type_list_1 (bool vaargs
, tree return_type
, va_list argp
)
7820 t
= va_arg (argp
, tree
);
7821 for (args
= NULL_TREE
; t
!= NULL_TREE
; t
= va_arg (argp
, tree
))
7822 args
= tree_cons (NULL_TREE
, t
, args
);
7827 if (args
!= NULL_TREE
)
7828 args
= nreverse (args
);
7829 gcc_assert (last
!= void_list_node
);
7831 else if (args
== NULL_TREE
)
7832 args
= void_list_node
;
7836 args
= nreverse (args
);
7837 TREE_CHAIN (last
) = void_list_node
;
7839 args
= build_function_type (return_type
, args
);
7844 /* Build a function type. The RETURN_TYPE is the type returned by the
7845 function. If additional arguments are provided, they are
7846 additional argument types. The list of argument types must always
7847 be terminated by NULL_TREE. */
7850 build_function_type_list (tree return_type
, ...)
7855 va_start (p
, return_type
);
7856 args
= build_function_type_list_1 (false, return_type
, p
);
7861 /* Build a variable argument function type. The RETURN_TYPE is the
7862 type returned by the function. If additional arguments are provided,
7863 they are additional argument types. The list of argument types must
7864 always be terminated by NULL_TREE. */
7867 build_varargs_function_type_list (tree return_type
, ...)
7872 va_start (p
, return_type
);
7873 args
= build_function_type_list_1 (true, return_type
, p
);
7879 /* Build a function type. RETURN_TYPE is the type returned by the
7880 function; VAARGS indicates whether the function takes varargs. The
7881 function takes N named arguments, the types of which are provided in
7885 build_function_type_array_1 (bool vaargs
, tree return_type
, int n
,
7889 tree t
= vaargs
? NULL_TREE
: void_list_node
;
7891 for (i
= n
- 1; i
>= 0; i
--)
7892 t
= tree_cons (NULL_TREE
, arg_types
[i
], t
);
7894 return build_function_type (return_type
, t
);
7897 /* Build a function type. RETURN_TYPE is the type returned by the
7898 function. The function takes N named arguments, the types of which
7899 are provided in ARG_TYPES. */
7902 build_function_type_array (tree return_type
, int n
, tree
*arg_types
)
7904 return build_function_type_array_1 (false, return_type
, n
, arg_types
);
7907 /* Build a variable argument function type. RETURN_TYPE is the type
7908 returned by the function. The function takes N named arguments, the
7909 types of which are provided in ARG_TYPES. */
7912 build_varargs_function_type_array (tree return_type
, int n
, tree
*arg_types
)
7914 return build_function_type_array_1 (true, return_type
, n
, arg_types
);
7917 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
7918 and ARGTYPES (a TREE_LIST) are the return type and arguments types
7919 for the method. An implicit additional parameter (of type
7920 pointer-to-BASETYPE) is added to the ARGTYPES. */
7923 build_method_type_directly (tree basetype
,
7930 bool any_structural_p
, any_noncanonical_p
;
7931 tree canon_argtypes
;
7933 /* Make a node of the sort we want. */
7934 t
= make_node (METHOD_TYPE
);
7936 TYPE_METHOD_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
7937 TREE_TYPE (t
) = rettype
;
7938 ptype
= build_pointer_type (basetype
);
7940 /* The actual arglist for this function includes a "hidden" argument
7941 which is "this". Put it into the list of argument types. */
7942 argtypes
= tree_cons (NULL_TREE
, ptype
, argtypes
);
7943 TYPE_ARG_TYPES (t
) = argtypes
;
7945 /* If we already have such a type, use the old one. */
7946 hashcode
= iterative_hash_object (TYPE_HASH (basetype
), hashcode
);
7947 hashcode
= iterative_hash_object (TYPE_HASH (rettype
), hashcode
);
7948 hashcode
= type_hash_list (argtypes
, hashcode
);
7949 t
= type_hash_canon (hashcode
, t
);
7951 /* Set up the canonical type. */
7953 = (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
7954 || TYPE_STRUCTURAL_EQUALITY_P (rettype
));
7956 = (TYPE_CANONICAL (basetype
) != basetype
7957 || TYPE_CANONICAL (rettype
) != rettype
);
7958 canon_argtypes
= maybe_canonicalize_argtypes (TREE_CHAIN (argtypes
),
7960 &any_noncanonical_p
);
7961 if (any_structural_p
)
7962 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7963 else if (any_noncanonical_p
)
7965 = build_method_type_directly (TYPE_CANONICAL (basetype
),
7966 TYPE_CANONICAL (rettype
),
7968 if (!COMPLETE_TYPE_P (t
))
7974 /* Construct, lay out and return the type of methods belonging to class
7975 BASETYPE and whose arguments and values are described by TYPE.
7976 If that type exists already, reuse it.
7977 TYPE must be a FUNCTION_TYPE node. */
7980 build_method_type (tree basetype
, tree type
)
7982 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
7984 return build_method_type_directly (basetype
,
7986 TYPE_ARG_TYPES (type
));
7989 /* Construct, lay out and return the type of offsets to a value
7990 of type TYPE, within an object of type BASETYPE.
7991 If a suitable offset type exists already, reuse it. */
7994 build_offset_type (tree basetype
, tree type
)
7997 hashval_t hashcode
= 0;
7999 /* Make a node of the sort we want. */
8000 t
= make_node (OFFSET_TYPE
);
8002 TYPE_OFFSET_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
8003 TREE_TYPE (t
) = type
;
8005 /* If we already have such a type, use the old one. */
8006 hashcode
= iterative_hash_object (TYPE_HASH (basetype
), hashcode
);
8007 hashcode
= iterative_hash_object (TYPE_HASH (type
), hashcode
);
8008 t
= type_hash_canon (hashcode
, t
);
8010 if (!COMPLETE_TYPE_P (t
))
8013 if (TYPE_CANONICAL (t
) == t
)
8015 if (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
8016 || TYPE_STRUCTURAL_EQUALITY_P (type
))
8017 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8018 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)) != basetype
8019 || TYPE_CANONICAL (type
) != type
)
8021 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)),
8022 TYPE_CANONICAL (type
));
8028 /* Create a complex type whose components are COMPONENT_TYPE. */
8031 build_complex_type (tree component_type
)
8036 gcc_assert (INTEGRAL_TYPE_P (component_type
)
8037 || SCALAR_FLOAT_TYPE_P (component_type
)
8038 || FIXED_POINT_TYPE_P (component_type
));
8040 /* Make a node of the sort we want. */
8041 t
= make_node (COMPLEX_TYPE
);
8043 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (component_type
);
8045 /* If we already have such a type, use the old one. */
8046 hashcode
= iterative_hash_object (TYPE_HASH (component_type
), 0);
8047 t
= type_hash_canon (hashcode
, t
);
8049 if (!COMPLETE_TYPE_P (t
))
8052 if (TYPE_CANONICAL (t
) == t
)
8054 if (TYPE_STRUCTURAL_EQUALITY_P (component_type
))
8055 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8056 else if (TYPE_CANONICAL (component_type
) != component_type
)
8058 = build_complex_type (TYPE_CANONICAL (component_type
));
8061 /* We need to create a name, since complex is a fundamental type. */
8062 if (! TYPE_NAME (t
))
8065 if (component_type
== char_type_node
)
8066 name
= "complex char";
8067 else if (component_type
== signed_char_type_node
)
8068 name
= "complex signed char";
8069 else if (component_type
== unsigned_char_type_node
)
8070 name
= "complex unsigned char";
8071 else if (component_type
== short_integer_type_node
)
8072 name
= "complex short int";
8073 else if (component_type
== short_unsigned_type_node
)
8074 name
= "complex short unsigned int";
8075 else if (component_type
== integer_type_node
)
8076 name
= "complex int";
8077 else if (component_type
== unsigned_type_node
)
8078 name
= "complex unsigned int";
8079 else if (component_type
== long_integer_type_node
)
8080 name
= "complex long int";
8081 else if (component_type
== long_unsigned_type_node
)
8082 name
= "complex long unsigned int";
8083 else if (component_type
== long_long_integer_type_node
)
8084 name
= "complex long long int";
8085 else if (component_type
== long_long_unsigned_type_node
)
8086 name
= "complex long long unsigned int";
8091 TYPE_NAME (t
) = build_decl (UNKNOWN_LOCATION
, TYPE_DECL
,
8092 get_identifier (name
), t
);
8095 return build_qualified_type (t
, TYPE_QUALS (component_type
));
8098 /* If TYPE is a real or complex floating-point type and the target
8099 does not directly support arithmetic on TYPE then return the wider
8100 type to be used for arithmetic on TYPE. Otherwise, return
8104 excess_precision_type (tree type
)
8106 if (flag_excess_precision
!= EXCESS_PRECISION_FAST
)
8108 int flt_eval_method
= TARGET_FLT_EVAL_METHOD
;
8109 switch (TREE_CODE (type
))
8112 switch (flt_eval_method
)
8115 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
))
8116 return double_type_node
;
8119 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
)
8120 || TYPE_MODE (type
) == TYPE_MODE (double_type_node
))
8121 return long_double_type_node
;
8128 if (TREE_CODE (TREE_TYPE (type
)) != REAL_TYPE
)
8130 switch (flt_eval_method
)
8133 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
))
8134 return complex_double_type_node
;
8137 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
)
8138 || (TYPE_MODE (TREE_TYPE (type
))
8139 == TYPE_MODE (double_type_node
)))
8140 return complex_long_double_type_node
;
8153 /* Return OP, stripped of any conversions to wider types as much as is safe.
8154 Converting the value back to OP's type makes a value equivalent to OP.
8156 If FOR_TYPE is nonzero, we return a value which, if converted to
8157 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8159 OP must have integer, real or enumeral type. Pointers are not allowed!
8161 There are some cases where the obvious value we could return
8162 would regenerate to OP if converted to OP's type,
8163 but would not extend like OP to wider types.
8164 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8165 For example, if OP is (unsigned short)(signed char)-1,
8166 we avoid returning (signed char)-1 if FOR_TYPE is int,
8167 even though extending that to an unsigned short would regenerate OP,
8168 since the result of extending (signed char)-1 to (int)
8169 is different from (int) OP. */
8172 get_unwidened (tree op
, tree for_type
)
8174 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8175 tree type
= TREE_TYPE (op
);
8177 = TYPE_PRECISION (for_type
!= 0 ? for_type
: type
);
8179 = (for_type
!= 0 && for_type
!= type
8180 && final_prec
> TYPE_PRECISION (type
)
8181 && TYPE_UNSIGNED (type
));
8184 while (CONVERT_EXPR_P (op
))
8188 /* TYPE_PRECISION on vector types has different meaning
8189 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8190 so avoid them here. */
8191 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op
, 0))) == VECTOR_TYPE
)
8194 bitschange
= TYPE_PRECISION (TREE_TYPE (op
))
8195 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0)));
8197 /* Truncations are many-one so cannot be removed.
8198 Unless we are later going to truncate down even farther. */
8200 && final_prec
> TYPE_PRECISION (TREE_TYPE (op
)))
8203 /* See what's inside this conversion. If we decide to strip it,
8205 op
= TREE_OPERAND (op
, 0);
8207 /* If we have not stripped any zero-extensions (uns is 0),
8208 we can strip any kind of extension.
8209 If we have previously stripped a zero-extension,
8210 only zero-extensions can safely be stripped.
8211 Any extension can be stripped if the bits it would produce
8212 are all going to be discarded later by truncating to FOR_TYPE. */
8216 if (! uns
|| final_prec
<= TYPE_PRECISION (TREE_TYPE (op
)))
8218 /* TYPE_UNSIGNED says whether this is a zero-extension.
8219 Let's avoid computing it if it does not affect WIN
8220 and if UNS will not be needed again. */
8222 || CONVERT_EXPR_P (op
))
8223 && TYPE_UNSIGNED (TREE_TYPE (op
)))
8231 /* If we finally reach a constant see if it fits in for_type and
8232 in that case convert it. */
8234 && TREE_CODE (win
) == INTEGER_CST
8235 && TREE_TYPE (win
) != for_type
8236 && int_fits_type_p (win
, for_type
))
8237 win
= fold_convert (for_type
, win
);
8242 /* Return OP or a simpler expression for a narrower value
8243 which can be sign-extended or zero-extended to give back OP.
8244 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8245 or 0 if the value should be sign-extended. */
8248 get_narrower (tree op
, int *unsignedp_ptr
)
8253 bool integral_p
= INTEGRAL_TYPE_P (TREE_TYPE (op
));
8255 while (TREE_CODE (op
) == NOP_EXPR
)
8258 = (TYPE_PRECISION (TREE_TYPE (op
))
8259 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0))));
8261 /* Truncations are many-one so cannot be removed. */
8265 /* See what's inside this conversion. If we decide to strip it,
8270 op
= TREE_OPERAND (op
, 0);
8271 /* An extension: the outermost one can be stripped,
8272 but remember whether it is zero or sign extension. */
8274 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8275 /* Otherwise, if a sign extension has been stripped,
8276 only sign extensions can now be stripped;
8277 if a zero extension has been stripped, only zero-extensions. */
8278 else if (uns
!= TYPE_UNSIGNED (TREE_TYPE (op
)))
8282 else /* bitschange == 0 */
8284 /* A change in nominal type can always be stripped, but we must
8285 preserve the unsignedness. */
8287 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8289 op
= TREE_OPERAND (op
, 0);
8290 /* Keep trying to narrow, but don't assign op to win if it
8291 would turn an integral type into something else. */
8292 if (INTEGRAL_TYPE_P (TREE_TYPE (op
)) != integral_p
)
8299 if (TREE_CODE (op
) == COMPONENT_REF
8300 /* Since type_for_size always gives an integer type. */
8301 && TREE_CODE (TREE_TYPE (op
)) != REAL_TYPE
8302 && TREE_CODE (TREE_TYPE (op
)) != FIXED_POINT_TYPE
8303 /* Ensure field is laid out already. */
8304 && DECL_SIZE (TREE_OPERAND (op
, 1)) != 0
8305 && host_integerp (DECL_SIZE (TREE_OPERAND (op
, 1)), 1))
8307 unsigned HOST_WIDE_INT innerprec
8308 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op
, 1)), 1);
8309 int unsignedp
= (DECL_UNSIGNED (TREE_OPERAND (op
, 1))
8310 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op
, 1))));
8311 tree type
= lang_hooks
.types
.type_for_size (innerprec
, unsignedp
);
8313 /* We can get this structure field in a narrower type that fits it,
8314 but the resulting extension to its nominal type (a fullword type)
8315 must satisfy the same conditions as for other extensions.
8317 Do this only for fields that are aligned (not bit-fields),
8318 because when bit-field insns will be used there is no
8319 advantage in doing this. */
8321 if (innerprec
< TYPE_PRECISION (TREE_TYPE (op
))
8322 && ! DECL_BIT_FIELD (TREE_OPERAND (op
, 1))
8323 && (first
|| uns
== DECL_UNSIGNED (TREE_OPERAND (op
, 1)))
8327 uns
= DECL_UNSIGNED (TREE_OPERAND (op
, 1));
8328 win
= fold_convert (type
, op
);
8332 *unsignedp_ptr
= uns
;
8336 /* Returns true if integer constant C has a value that is permissible
8337 for type TYPE (an INTEGER_TYPE). */
8340 int_fits_type_p (const_tree c
, const_tree type
)
8342 tree type_low_bound
, type_high_bound
;
8343 bool ok_for_low_bound
, ok_for_high_bound
, unsc
;
8346 dc
= tree_to_double_int (c
);
8347 unsc
= TYPE_UNSIGNED (TREE_TYPE (c
));
8350 type_low_bound
= TYPE_MIN_VALUE (type
);
8351 type_high_bound
= TYPE_MAX_VALUE (type
);
8353 /* If at least one bound of the type is a constant integer, we can check
8354 ourselves and maybe make a decision. If no such decision is possible, but
8355 this type is a subtype, try checking against that. Otherwise, use
8356 double_int_fits_to_tree_p, which checks against the precision.
8358 Compute the status for each possibly constant bound, and return if we see
8359 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8360 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8361 for "constant known to fit". */
8363 /* Check if c >= type_low_bound. */
8364 if (type_low_bound
&& TREE_CODE (type_low_bound
) == INTEGER_CST
)
8366 dd
= tree_to_double_int (type_low_bound
);
8367 if (unsc
!= TYPE_UNSIGNED (TREE_TYPE (type_low_bound
)))
8369 int c_neg
= (!unsc
&& dc
.is_negative ());
8370 int t_neg
= (unsc
&& dd
.is_negative ());
8372 if (c_neg
&& !t_neg
)
8374 if ((c_neg
|| !t_neg
) && dc
.ult (dd
))
8377 else if (dc
.cmp (dd
, unsc
) < 0)
8379 ok_for_low_bound
= true;
8382 ok_for_low_bound
= false;
8384 /* Check if c <= type_high_bound. */
8385 if (type_high_bound
&& TREE_CODE (type_high_bound
) == INTEGER_CST
)
8387 dd
= tree_to_double_int (type_high_bound
);
8388 if (unsc
!= TYPE_UNSIGNED (TREE_TYPE (type_high_bound
)))
8390 int c_neg
= (!unsc
&& dc
.is_negative ());
8391 int t_neg
= (unsc
&& dd
.is_negative ());
8393 if (t_neg
&& !c_neg
)
8395 if ((t_neg
|| !c_neg
) && dc
.ugt (dd
))
8398 else if (dc
.cmp (dd
, unsc
) > 0)
8400 ok_for_high_bound
= true;
8403 ok_for_high_bound
= false;
8405 /* If the constant fits both bounds, the result is known. */
8406 if (ok_for_low_bound
&& ok_for_high_bound
)
8409 /* Perform some generic filtering which may allow making a decision
8410 even if the bounds are not constant. First, negative integers
8411 never fit in unsigned types, */
8412 if (TYPE_UNSIGNED (type
) && !unsc
&& dc
.is_negative ())
8415 /* Second, narrower types always fit in wider ones. */
8416 if (TYPE_PRECISION (type
) > TYPE_PRECISION (TREE_TYPE (c
)))
8419 /* Third, unsigned integers with top bit set never fit signed types. */
8420 if (! TYPE_UNSIGNED (type
) && unsc
)
8422 int prec
= GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (c
))) - 1;
8423 if (prec
< HOST_BITS_PER_WIDE_INT
)
8425 if (((((unsigned HOST_WIDE_INT
) 1) << prec
) & dc
.low
) != 0)
8428 else if (((((unsigned HOST_WIDE_INT
) 1)
8429 << (prec
- HOST_BITS_PER_WIDE_INT
)) & dc
.high
) != 0)
8433 /* If we haven't been able to decide at this point, there nothing more we
8434 can check ourselves here. Look at the base type if we have one and it
8435 has the same precision. */
8436 if (TREE_CODE (type
) == INTEGER_TYPE
8437 && TREE_TYPE (type
) != 0
8438 && TYPE_PRECISION (type
) == TYPE_PRECISION (TREE_TYPE (type
)))
8440 type
= TREE_TYPE (type
);
8444 /* Or to double_int_fits_to_tree_p, if nothing else. */
8445 return double_int_fits_to_tree_p (type
, dc
);
8448 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8449 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8450 represented (assuming two's-complement arithmetic) within the bit
8451 precision of the type are returned instead. */
8454 get_type_static_bounds (const_tree type
, mpz_t min
, mpz_t max
)
8456 if (!POINTER_TYPE_P (type
) && TYPE_MIN_VALUE (type
)
8457 && TREE_CODE (TYPE_MIN_VALUE (type
)) == INTEGER_CST
)
8458 mpz_set_double_int (min
, tree_to_double_int (TYPE_MIN_VALUE (type
)),
8459 TYPE_UNSIGNED (type
));
8462 if (TYPE_UNSIGNED (type
))
8463 mpz_set_ui (min
, 0);
8467 mn
= double_int::mask (TYPE_PRECISION (type
) - 1);
8468 mn
= (mn
+ double_int_one
).sext (TYPE_PRECISION (type
));
8469 mpz_set_double_int (min
, mn
, false);
8473 if (!POINTER_TYPE_P (type
) && TYPE_MAX_VALUE (type
)
8474 && TREE_CODE (TYPE_MAX_VALUE (type
)) == INTEGER_CST
)
8475 mpz_set_double_int (max
, tree_to_double_int (TYPE_MAX_VALUE (type
)),
8476 TYPE_UNSIGNED (type
));
8479 if (TYPE_UNSIGNED (type
))
8480 mpz_set_double_int (max
, double_int::mask (TYPE_PRECISION (type
)),
8483 mpz_set_double_int (max
, double_int::mask (TYPE_PRECISION (type
) - 1),
8488 /* Return true if VAR is an automatic variable defined in function FN. */
8491 auto_var_in_fn_p (const_tree var
, const_tree fn
)
8493 return (DECL_P (var
) && DECL_CONTEXT (var
) == fn
8494 && ((((TREE_CODE (var
) == VAR_DECL
&& ! DECL_EXTERNAL (var
))
8495 || TREE_CODE (var
) == PARM_DECL
)
8496 && ! TREE_STATIC (var
))
8497 || TREE_CODE (var
) == LABEL_DECL
8498 || TREE_CODE (var
) == RESULT_DECL
));
8501 /* Subprogram of following function. Called by walk_tree.
8503 Return *TP if it is an automatic variable or parameter of the
8504 function passed in as DATA. */
8507 find_var_from_fn (tree
*tp
, int *walk_subtrees
, void *data
)
8509 tree fn
= (tree
) data
;
8514 else if (DECL_P (*tp
)
8515 && auto_var_in_fn_p (*tp
, fn
))
8521 /* Returns true if T is, contains, or refers to a type with variable
8522 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8523 arguments, but not the return type. If FN is nonzero, only return
8524 true if a modifier of the type or position of FN is a variable or
8525 parameter inside FN.
8527 This concept is more general than that of C99 'variably modified types':
8528 in C99, a struct type is never variably modified because a VLA may not
8529 appear as a structure member. However, in GNU C code like:
8531 struct S { int i[f()]; };
8533 is valid, and other languages may define similar constructs. */
8536 variably_modified_type_p (tree type
, tree fn
)
8540 /* Test if T is either variable (if FN is zero) or an expression containing
8541 a variable in FN. If TYPE isn't gimplified, return true also if
8542 gimplify_one_sizepos would gimplify the expression into a local
8544 #define RETURN_TRUE_IF_VAR(T) \
8545 do { tree _t = (T); \
8546 if (_t != NULL_TREE \
8547 && _t != error_mark_node \
8548 && TREE_CODE (_t) != INTEGER_CST \
8549 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8551 || (!TYPE_SIZES_GIMPLIFIED (type) \
8552 && !is_gimple_sizepos (_t)) \
8553 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8554 return true; } while (0)
8556 if (type
== error_mark_node
)
8559 /* If TYPE itself has variable size, it is variably modified. */
8560 RETURN_TRUE_IF_VAR (TYPE_SIZE (type
));
8561 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type
));
8563 switch (TREE_CODE (type
))
8566 case REFERENCE_TYPE
:
8568 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8574 /* If TYPE is a function type, it is variably modified if the
8575 return type is variably modified. */
8576 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8582 case FIXED_POINT_TYPE
:
8585 /* Scalar types are variably modified if their end points
8587 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type
));
8588 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type
));
8593 case QUAL_UNION_TYPE
:
8594 /* We can't see if any of the fields are variably-modified by the
8595 definition we normally use, since that would produce infinite
8596 recursion via pointers. */
8597 /* This is variably modified if some field's type is. */
8598 for (t
= TYPE_FIELDS (type
); t
; t
= DECL_CHAIN (t
))
8599 if (TREE_CODE (t
) == FIELD_DECL
)
8601 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t
));
8602 RETURN_TRUE_IF_VAR (DECL_SIZE (t
));
8603 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t
));
8605 if (TREE_CODE (type
) == QUAL_UNION_TYPE
)
8606 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t
));
8611 /* Do not call ourselves to avoid infinite recursion. This is
8612 variably modified if the element type is. */
8613 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type
)));
8614 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type
)));
8621 /* The current language may have other cases to check, but in general,
8622 all other types are not variably modified. */
8623 return lang_hooks
.tree_inlining
.var_mod_type_p (type
, fn
);
8625 #undef RETURN_TRUE_IF_VAR
8628 /* Given a DECL or TYPE, return the scope in which it was declared, or
8629 NULL_TREE if there is no containing scope. */
8632 get_containing_scope (const_tree t
)
8634 return (TYPE_P (t
) ? TYPE_CONTEXT (t
) : DECL_CONTEXT (t
));
8637 /* Return the innermost context enclosing DECL that is
8638 a FUNCTION_DECL, or zero if none. */
8641 decl_function_context (const_tree decl
)
8645 if (TREE_CODE (decl
) == ERROR_MARK
)
8648 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8649 where we look up the function at runtime. Such functions always take
8650 a first argument of type 'pointer to real context'.
8652 C++ should really be fixed to use DECL_CONTEXT for the real context,
8653 and use something else for the "virtual context". */
8654 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_VINDEX (decl
))
8657 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
8659 context
= DECL_CONTEXT (decl
);
8661 while (context
&& TREE_CODE (context
) != FUNCTION_DECL
)
8663 if (TREE_CODE (context
) == BLOCK
)
8664 context
= BLOCK_SUPERCONTEXT (context
);
8666 context
= get_containing_scope (context
);
8672 /* Return the innermost context enclosing DECL that is
8673 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8674 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8677 decl_type_context (const_tree decl
)
8679 tree context
= DECL_CONTEXT (decl
);
8682 switch (TREE_CODE (context
))
8684 case NAMESPACE_DECL
:
8685 case TRANSLATION_UNIT_DECL
:
8690 case QUAL_UNION_TYPE
:
8695 context
= DECL_CONTEXT (context
);
8699 context
= BLOCK_SUPERCONTEXT (context
);
8709 /* CALL is a CALL_EXPR. Return the declaration for the function
8710 called, or NULL_TREE if the called function cannot be
8714 get_callee_fndecl (const_tree call
)
8718 if (call
== error_mark_node
)
8719 return error_mark_node
;
8721 /* It's invalid to call this function with anything but a
8723 gcc_assert (TREE_CODE (call
) == CALL_EXPR
);
8725 /* The first operand to the CALL is the address of the function
8727 addr
= CALL_EXPR_FN (call
);
8731 /* If this is a readonly function pointer, extract its initial value. */
8732 if (DECL_P (addr
) && TREE_CODE (addr
) != FUNCTION_DECL
8733 && TREE_READONLY (addr
) && ! TREE_THIS_VOLATILE (addr
)
8734 && DECL_INITIAL (addr
))
8735 addr
= DECL_INITIAL (addr
);
8737 /* If the address is just `&f' for some function `f', then we know
8738 that `f' is being called. */
8739 if (TREE_CODE (addr
) == ADDR_EXPR
8740 && TREE_CODE (TREE_OPERAND (addr
, 0)) == FUNCTION_DECL
)
8741 return TREE_OPERAND (addr
, 0);
8743 /* We couldn't figure out what was being called. */
8747 /* Print debugging information about tree nodes generated during the compile,
8748 and any language-specific information. */
8751 dump_tree_statistics (void)
8753 if (GATHER_STATISTICS
)
8756 int total_nodes
, total_bytes
;
8757 fprintf (stderr
, "Kind Nodes Bytes\n");
8758 fprintf (stderr
, "---------------------------------------\n");
8759 total_nodes
= total_bytes
= 0;
8760 for (i
= 0; i
< (int) all_kinds
; i
++)
8762 fprintf (stderr
, "%-20s %7d %10d\n", tree_node_kind_names
[i
],
8763 tree_node_counts
[i
], tree_node_sizes
[i
]);
8764 total_nodes
+= tree_node_counts
[i
];
8765 total_bytes
+= tree_node_sizes
[i
];
8767 fprintf (stderr
, "---------------------------------------\n");
8768 fprintf (stderr
, "%-20s %7d %10d\n", "Total", total_nodes
, total_bytes
);
8769 fprintf (stderr
, "---------------------------------------\n");
8770 fprintf (stderr
, "Code Nodes\n");
8771 fprintf (stderr
, "----------------------------\n");
8772 for (i
= 0; i
< (int) MAX_TREE_CODES
; i
++)
8773 fprintf (stderr
, "%-20s %7d\n", tree_code_name
[i
], tree_code_counts
[i
]);
8774 fprintf (stderr
, "----------------------------\n");
8775 ssanames_print_statistics ();
8776 phinodes_print_statistics ();
8779 fprintf (stderr
, "(No per-node statistics)\n");
8781 print_type_hash_statistics ();
8782 print_debug_expr_statistics ();
8783 print_value_expr_statistics ();
8784 lang_hooks
.print_statistics ();
8787 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
8789 /* Generate a crc32 of a byte. */
8792 crc32_unsigned_bits (unsigned chksum
, unsigned value
, unsigned bits
)
8796 for (ix
= bits
; ix
--; value
<<= 1)
8800 feedback
= (value
^ chksum
) & 0x80000000 ? 0x04c11db7 : 0;
8807 /* Generate a crc32 of a 32-bit unsigned. */
8810 crc32_unsigned (unsigned chksum
, unsigned value
)
8812 return crc32_unsigned_bits (chksum
, value
, 32);
8815 /* Generate a crc32 of a byte. */
8818 crc32_byte (unsigned chksum
, char byte
)
8820 return crc32_unsigned_bits (chksum
, (unsigned) byte
<< 24, 8);
8823 /* Generate a crc32 of a string. */
8826 crc32_string (unsigned chksum
, const char *string
)
8830 chksum
= crc32_byte (chksum
, *string
);
8836 /* P is a string that will be used in a symbol. Mask out any characters
8837 that are not valid in that context. */
8840 clean_symbol_name (char *p
)
8844 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
8847 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
8854 /* Generate a name for a special-purpose function.
8855 The generated name may need to be unique across the whole link.
8856 Changes to this function may also require corresponding changes to
8857 xstrdup_mask_random.
8858 TYPE is some string to identify the purpose of this function to the
8859 linker or collect2; it must start with an uppercase letter,
8861 I - for constructors
8863 N - for C++ anonymous namespaces
8864 F - for DWARF unwind frame information. */
8867 get_file_function_name (const char *type
)
8873 /* If we already have a name we know to be unique, just use that. */
8874 if (first_global_object_name
)
8875 p
= q
= ASTRDUP (first_global_object_name
);
8876 /* If the target is handling the constructors/destructors, they
8877 will be local to this file and the name is only necessary for
8879 We also assign sub_I and sub_D sufixes to constructors called from
8880 the global static constructors. These are always local. */
8881 else if (((type
[0] == 'I' || type
[0] == 'D') && targetm
.have_ctors_dtors
)
8882 || (strncmp (type
, "sub_", 4) == 0
8883 && (type
[4] == 'I' || type
[4] == 'D')))
8885 const char *file
= main_input_filename
;
8887 file
= input_filename
;
8888 /* Just use the file's basename, because the full pathname
8889 might be quite long. */
8890 p
= q
= ASTRDUP (lbasename (file
));
8894 /* Otherwise, the name must be unique across the entire link.
8895 We don't have anything that we know to be unique to this translation
8896 unit, so use what we do have and throw in some randomness. */
8898 const char *name
= weak_global_object_name
;
8899 const char *file
= main_input_filename
;
8904 file
= input_filename
;
8906 len
= strlen (file
);
8907 q
= (char *) alloca (9 + 17 + len
+ 1);
8908 memcpy (q
, file
, len
+ 1);
8910 snprintf (q
+ len
, 9 + 17 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX
,
8911 crc32_string (0, name
), get_random_seed (false));
8916 clean_symbol_name (q
);
8917 buf
= (char *) alloca (sizeof (FILE_FUNCTION_FORMAT
) + strlen (p
)
8920 /* Set up the name of the file-level functions we may need.
8921 Use a global object (which is already required to be unique over
8922 the program) rather than the file name (which imposes extra
8924 sprintf (buf
, FILE_FUNCTION_FORMAT
, type
, p
);
8926 return get_identifier (buf
);
8929 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
8931 /* Complain that the tree code of NODE does not match the expected 0
8932 terminated list of trailing codes. The trailing code list can be
8933 empty, for a more vague error message. FILE, LINE, and FUNCTION
8934 are of the caller. */
8937 tree_check_failed (const_tree node
, const char *file
,
8938 int line
, const char *function
, ...)
8942 unsigned length
= 0;
8945 va_start (args
, function
);
8946 while ((code
= va_arg (args
, int)))
8947 length
+= 4 + strlen (tree_code_name
[code
]);
8952 va_start (args
, function
);
8953 length
+= strlen ("expected ");
8954 buffer
= tmp
= (char *) alloca (length
);
8956 while ((code
= va_arg (args
, int)))
8958 const char *prefix
= length
? " or " : "expected ";
8960 strcpy (tmp
+ length
, prefix
);
8961 length
+= strlen (prefix
);
8962 strcpy (tmp
+ length
, tree_code_name
[code
]);
8963 length
+= strlen (tree_code_name
[code
]);
8968 buffer
= "unexpected node";
8970 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8971 buffer
, tree_code_name
[TREE_CODE (node
)],
8972 function
, trim_filename (file
), line
);
8975 /* Complain that the tree code of NODE does match the expected 0
8976 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
8980 tree_not_check_failed (const_tree node
, const char *file
,
8981 int line
, const char *function
, ...)
8985 unsigned length
= 0;
8988 va_start (args
, function
);
8989 while ((code
= va_arg (args
, int)))
8990 length
+= 4 + strlen (tree_code_name
[code
]);
8992 va_start (args
, function
);
8993 buffer
= (char *) alloca (length
);
8995 while ((code
= va_arg (args
, int)))
8999 strcpy (buffer
+ length
, " or ");
9002 strcpy (buffer
+ length
, tree_code_name
[code
]);
9003 length
+= strlen (tree_code_name
[code
]);
9007 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
9008 buffer
, tree_code_name
[TREE_CODE (node
)],
9009 function
, trim_filename (file
), line
);
9012 /* Similar to tree_check_failed, except that we check for a class of tree
9013 code, given in CL. */
9016 tree_class_check_failed (const_tree node
, const enum tree_code_class cl
,
9017 const char *file
, int line
, const char *function
)
9020 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9021 TREE_CODE_CLASS_STRING (cl
),
9022 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9023 tree_code_name
[TREE_CODE (node
)], function
, trim_filename (file
), line
);
9026 /* Similar to tree_check_failed, except that instead of specifying a
9027 dozen codes, use the knowledge that they're all sequential. */
9030 tree_range_check_failed (const_tree node
, const char *file
, int line
,
9031 const char *function
, enum tree_code c1
,
9035 unsigned length
= 0;
9038 for (c
= c1
; c
<= c2
; ++c
)
9039 length
+= 4 + strlen (tree_code_name
[c
]);
9041 length
+= strlen ("expected ");
9042 buffer
= (char *) alloca (length
);
9045 for (c
= c1
; c
<= c2
; ++c
)
9047 const char *prefix
= length
? " or " : "expected ";
9049 strcpy (buffer
+ length
, prefix
);
9050 length
+= strlen (prefix
);
9051 strcpy (buffer
+ length
, tree_code_name
[c
]);
9052 length
+= strlen (tree_code_name
[c
]);
9055 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9056 buffer
, tree_code_name
[TREE_CODE (node
)],
9057 function
, trim_filename (file
), line
);
9061 /* Similar to tree_check_failed, except that we check that a tree does
9062 not have the specified code, given in CL. */
9065 tree_not_class_check_failed (const_tree node
, const enum tree_code_class cl
,
9066 const char *file
, int line
, const char *function
)
9069 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9070 TREE_CODE_CLASS_STRING (cl
),
9071 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9072 tree_code_name
[TREE_CODE (node
)], function
, trim_filename (file
), line
);
9076 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9079 omp_clause_check_failed (const_tree node
, const char *file
, int line
,
9080 const char *function
, enum omp_clause_code code
)
9082 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9083 omp_clause_code_name
[code
], tree_code_name
[TREE_CODE (node
)],
9084 function
, trim_filename (file
), line
);
9088 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9091 omp_clause_range_check_failed (const_tree node
, const char *file
, int line
,
9092 const char *function
, enum omp_clause_code c1
,
9093 enum omp_clause_code c2
)
9096 unsigned length
= 0;
9099 for (c
= c1
; c
<= c2
; ++c
)
9100 length
+= 4 + strlen (omp_clause_code_name
[c
]);
9102 length
+= strlen ("expected ");
9103 buffer
= (char *) alloca (length
);
9106 for (c
= c1
; c
<= c2
; ++c
)
9108 const char *prefix
= length
? " or " : "expected ";
9110 strcpy (buffer
+ length
, prefix
);
9111 length
+= strlen (prefix
);
9112 strcpy (buffer
+ length
, omp_clause_code_name
[c
]);
9113 length
+= strlen (omp_clause_code_name
[c
]);
9116 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9117 buffer
, omp_clause_code_name
[TREE_CODE (node
)],
9118 function
, trim_filename (file
), line
);
9122 #undef DEFTREESTRUCT
9123 #define DEFTREESTRUCT(VAL, NAME) NAME,
9125 static const char *ts_enum_names
[] = {
9126 #include "treestruct.def"
9128 #undef DEFTREESTRUCT
9130 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9132 /* Similar to tree_class_check_failed, except that we check for
9133 whether CODE contains the tree structure identified by EN. */
9136 tree_contains_struct_check_failed (const_tree node
,
9137 const enum tree_node_structure_enum en
,
9138 const char *file
, int line
,
9139 const char *function
)
9142 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9144 tree_code_name
[TREE_CODE (node
)], function
, trim_filename (file
), line
);
9148 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9149 (dynamically sized) vector. */
9152 tree_vec_elt_check_failed (int idx
, int len
, const char *file
, int line
,
9153 const char *function
)
9156 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9157 idx
+ 1, len
, function
, trim_filename (file
), line
);
9160 /* Similar to above, except that the check is for the bounds of the operand
9161 vector of an expression node EXP. */
9164 tree_operand_check_failed (int idx
, const_tree exp
, const char *file
,
9165 int line
, const char *function
)
9167 int code
= TREE_CODE (exp
);
9169 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9170 idx
+ 1, tree_code_name
[code
], TREE_OPERAND_LENGTH (exp
),
9171 function
, trim_filename (file
), line
);
9174 /* Similar to above, except that the check is for the number of
9175 operands of an OMP_CLAUSE node. */
9178 omp_clause_operand_check_failed (int idx
, const_tree t
, const char *file
,
9179 int line
, const char *function
)
9182 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9183 "in %s, at %s:%d", idx
+ 1, omp_clause_code_name
[OMP_CLAUSE_CODE (t
)],
9184 omp_clause_num_ops
[OMP_CLAUSE_CODE (t
)], function
,
9185 trim_filename (file
), line
);
9187 #endif /* ENABLE_TREE_CHECKING */
9189 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9190 and mapped to the machine mode MODE. Initialize its fields and build
9191 the information necessary for debugging output. */
9194 make_vector_type (tree innertype
, int nunits
, enum machine_mode mode
)
9197 hashval_t hashcode
= 0;
9199 t
= make_node (VECTOR_TYPE
);
9200 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (innertype
);
9201 SET_TYPE_VECTOR_SUBPARTS (t
, nunits
);
9202 SET_TYPE_MODE (t
, mode
);
9204 if (TYPE_STRUCTURAL_EQUALITY_P (innertype
))
9205 SET_TYPE_STRUCTURAL_EQUALITY (t
);
9206 else if (TYPE_CANONICAL (innertype
) != innertype
9207 || mode
!= VOIDmode
)
9209 = make_vector_type (TYPE_CANONICAL (innertype
), nunits
, VOIDmode
);
9213 hashcode
= iterative_hash_host_wide_int (VECTOR_TYPE
, hashcode
);
9214 hashcode
= iterative_hash_host_wide_int (nunits
, hashcode
);
9215 hashcode
= iterative_hash_host_wide_int (mode
, hashcode
);
9216 hashcode
= iterative_hash_object (TYPE_HASH (TREE_TYPE (t
)), hashcode
);
9217 t
= type_hash_canon (hashcode
, t
);
9219 /* We have built a main variant, based on the main variant of the
9220 inner type. Use it to build the variant we return. */
9221 if ((TYPE_ATTRIBUTES (innertype
) || TYPE_QUALS (innertype
))
9222 && TREE_TYPE (t
) != innertype
)
9223 return build_type_attribute_qual_variant (t
,
9224 TYPE_ATTRIBUTES (innertype
),
9225 TYPE_QUALS (innertype
));
9231 make_or_reuse_type (unsigned size
, int unsignedp
)
9233 if (size
== INT_TYPE_SIZE
)
9234 return unsignedp
? unsigned_type_node
: integer_type_node
;
9235 if (size
== CHAR_TYPE_SIZE
)
9236 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
9237 if (size
== SHORT_TYPE_SIZE
)
9238 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
9239 if (size
== LONG_TYPE_SIZE
)
9240 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
9241 if (size
== LONG_LONG_TYPE_SIZE
)
9242 return (unsignedp
? long_long_unsigned_type_node
9243 : long_long_integer_type_node
);
9244 if (size
== 128 && int128_integer_type_node
)
9245 return (unsignedp
? int128_unsigned_type_node
9246 : int128_integer_type_node
);
9249 return make_unsigned_type (size
);
9251 return make_signed_type (size
);
9254 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9257 make_or_reuse_fract_type (unsigned size
, int unsignedp
, int satp
)
9261 if (size
== SHORT_FRACT_TYPE_SIZE
)
9262 return unsignedp
? sat_unsigned_short_fract_type_node
9263 : sat_short_fract_type_node
;
9264 if (size
== FRACT_TYPE_SIZE
)
9265 return unsignedp
? sat_unsigned_fract_type_node
: sat_fract_type_node
;
9266 if (size
== LONG_FRACT_TYPE_SIZE
)
9267 return unsignedp
? sat_unsigned_long_fract_type_node
9268 : sat_long_fract_type_node
;
9269 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9270 return unsignedp
? sat_unsigned_long_long_fract_type_node
9271 : sat_long_long_fract_type_node
;
9275 if (size
== SHORT_FRACT_TYPE_SIZE
)
9276 return unsignedp
? unsigned_short_fract_type_node
9277 : short_fract_type_node
;
9278 if (size
== FRACT_TYPE_SIZE
)
9279 return unsignedp
? unsigned_fract_type_node
: fract_type_node
;
9280 if (size
== LONG_FRACT_TYPE_SIZE
)
9281 return unsignedp
? unsigned_long_fract_type_node
9282 : long_fract_type_node
;
9283 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9284 return unsignedp
? unsigned_long_long_fract_type_node
9285 : long_long_fract_type_node
;
9288 return make_fract_type (size
, unsignedp
, satp
);
9291 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9294 make_or_reuse_accum_type (unsigned size
, int unsignedp
, int satp
)
9298 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9299 return unsignedp
? sat_unsigned_short_accum_type_node
9300 : sat_short_accum_type_node
;
9301 if (size
== ACCUM_TYPE_SIZE
)
9302 return unsignedp
? sat_unsigned_accum_type_node
: sat_accum_type_node
;
9303 if (size
== LONG_ACCUM_TYPE_SIZE
)
9304 return unsignedp
? sat_unsigned_long_accum_type_node
9305 : sat_long_accum_type_node
;
9306 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9307 return unsignedp
? sat_unsigned_long_long_accum_type_node
9308 : sat_long_long_accum_type_node
;
9312 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9313 return unsignedp
? unsigned_short_accum_type_node
9314 : short_accum_type_node
;
9315 if (size
== ACCUM_TYPE_SIZE
)
9316 return unsignedp
? unsigned_accum_type_node
: accum_type_node
;
9317 if (size
== LONG_ACCUM_TYPE_SIZE
)
9318 return unsignedp
? unsigned_long_accum_type_node
9319 : long_accum_type_node
;
9320 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9321 return unsignedp
? unsigned_long_long_accum_type_node
9322 : long_long_accum_type_node
;
9325 return make_accum_type (size
, unsignedp
, satp
);
9328 /* Create nodes for all integer types (and error_mark_node) using the sizes
9329 of C datatypes. SIGNED_CHAR specifies whether char is signed,
9330 SHORT_DOUBLE specifies whether double should be of the same precision
9334 build_common_tree_nodes (bool signed_char
, bool short_double
)
9336 error_mark_node
= make_node (ERROR_MARK
);
9337 TREE_TYPE (error_mark_node
) = error_mark_node
;
9339 initialize_sizetypes ();
9341 /* Define both `signed char' and `unsigned char'. */
9342 signed_char_type_node
= make_signed_type (CHAR_TYPE_SIZE
);
9343 TYPE_STRING_FLAG (signed_char_type_node
) = 1;
9344 unsigned_char_type_node
= make_unsigned_type (CHAR_TYPE_SIZE
);
9345 TYPE_STRING_FLAG (unsigned_char_type_node
) = 1;
9347 /* Define `char', which is like either `signed char' or `unsigned char'
9348 but not the same as either. */
9351 ? make_signed_type (CHAR_TYPE_SIZE
)
9352 : make_unsigned_type (CHAR_TYPE_SIZE
));
9353 TYPE_STRING_FLAG (char_type_node
) = 1;
9355 short_integer_type_node
= make_signed_type (SHORT_TYPE_SIZE
);
9356 short_unsigned_type_node
= make_unsigned_type (SHORT_TYPE_SIZE
);
9357 integer_type_node
= make_signed_type (INT_TYPE_SIZE
);
9358 unsigned_type_node
= make_unsigned_type (INT_TYPE_SIZE
);
9359 long_integer_type_node
= make_signed_type (LONG_TYPE_SIZE
);
9360 long_unsigned_type_node
= make_unsigned_type (LONG_TYPE_SIZE
);
9361 long_long_integer_type_node
= make_signed_type (LONG_LONG_TYPE_SIZE
);
9362 long_long_unsigned_type_node
= make_unsigned_type (LONG_LONG_TYPE_SIZE
);
9363 #if HOST_BITS_PER_WIDE_INT >= 64
9364 /* TODO: This isn't correct, but as logic depends at the moment on
9365 host's instead of target's wide-integer.
9366 If there is a target not supporting TImode, but has an 128-bit
9367 integer-scalar register, this target check needs to be adjusted. */
9368 if (targetm
.scalar_mode_supported_p (TImode
))
9370 int128_integer_type_node
= make_signed_type (128);
9371 int128_unsigned_type_node
= make_unsigned_type (128);
9375 /* Define a boolean type. This type only represents boolean values but
9376 may be larger than char depending on the value of BOOL_TYPE_SIZE.
9377 Front ends which want to override this size (i.e. Java) can redefine
9378 boolean_type_node before calling build_common_tree_nodes_2. */
9379 boolean_type_node
= make_unsigned_type (BOOL_TYPE_SIZE
);
9380 TREE_SET_CODE (boolean_type_node
, BOOLEAN_TYPE
);
9381 TYPE_MAX_VALUE (boolean_type_node
) = build_int_cst (boolean_type_node
, 1);
9382 TYPE_PRECISION (boolean_type_node
) = 1;
9384 /* Define what type to use for size_t. */
9385 if (strcmp (SIZE_TYPE
, "unsigned int") == 0)
9386 size_type_node
= unsigned_type_node
;
9387 else if (strcmp (SIZE_TYPE
, "long unsigned int") == 0)
9388 size_type_node
= long_unsigned_type_node
;
9389 else if (strcmp (SIZE_TYPE
, "long long unsigned int") == 0)
9390 size_type_node
= long_long_unsigned_type_node
;
9391 else if (strcmp (SIZE_TYPE
, "short unsigned int") == 0)
9392 size_type_node
= short_unsigned_type_node
;
9396 /* Fill in the rest of the sized types. Reuse existing type nodes
9398 intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 0);
9399 intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 0);
9400 intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 0);
9401 intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 0);
9402 intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 0);
9404 unsigned_intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 1);
9405 unsigned_intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 1);
9406 unsigned_intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 1);
9407 unsigned_intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 1);
9408 unsigned_intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 1);
9410 access_public_node
= get_identifier ("public");
9411 access_protected_node
= get_identifier ("protected");
9412 access_private_node
= get_identifier ("private");
9414 /* Define these next since types below may used them. */
9415 integer_zero_node
= build_int_cst (integer_type_node
, 0);
9416 integer_one_node
= build_int_cst (integer_type_node
, 1);
9417 integer_three_node
= build_int_cst (integer_type_node
, 3);
9418 integer_minus_one_node
= build_int_cst (integer_type_node
, -1);
9420 size_zero_node
= size_int (0);
9421 size_one_node
= size_int (1);
9422 bitsize_zero_node
= bitsize_int (0);
9423 bitsize_one_node
= bitsize_int (1);
9424 bitsize_unit_node
= bitsize_int (BITS_PER_UNIT
);
9426 boolean_false_node
= TYPE_MIN_VALUE (boolean_type_node
);
9427 boolean_true_node
= TYPE_MAX_VALUE (boolean_type_node
);
9429 void_type_node
= make_node (VOID_TYPE
);
9430 layout_type (void_type_node
);
9432 /* We are not going to have real types in C with less than byte alignment,
9433 so we might as well not have any types that claim to have it. */
9434 TYPE_ALIGN (void_type_node
) = BITS_PER_UNIT
;
9435 TYPE_USER_ALIGN (void_type_node
) = 0;
9437 null_pointer_node
= build_int_cst (build_pointer_type (void_type_node
), 0);
9438 layout_type (TREE_TYPE (null_pointer_node
));
9440 ptr_type_node
= build_pointer_type (void_type_node
);
9442 = build_pointer_type (build_type_variant (void_type_node
, 1, 0));
9443 fileptr_type_node
= ptr_type_node
;
9445 float_type_node
= make_node (REAL_TYPE
);
9446 TYPE_PRECISION (float_type_node
) = FLOAT_TYPE_SIZE
;
9447 layout_type (float_type_node
);
9449 double_type_node
= make_node (REAL_TYPE
);
9451 TYPE_PRECISION (double_type_node
) = FLOAT_TYPE_SIZE
;
9453 TYPE_PRECISION (double_type_node
) = DOUBLE_TYPE_SIZE
;
9454 layout_type (double_type_node
);
9456 long_double_type_node
= make_node (REAL_TYPE
);
9457 TYPE_PRECISION (long_double_type_node
) = LONG_DOUBLE_TYPE_SIZE
;
9458 layout_type (long_double_type_node
);
9460 float_ptr_type_node
= build_pointer_type (float_type_node
);
9461 double_ptr_type_node
= build_pointer_type (double_type_node
);
9462 long_double_ptr_type_node
= build_pointer_type (long_double_type_node
);
9463 integer_ptr_type_node
= build_pointer_type (integer_type_node
);
9465 /* Fixed size integer types. */
9466 uint16_type_node
= build_nonstandard_integer_type (16, true);
9467 uint32_type_node
= build_nonstandard_integer_type (32, true);
9468 uint64_type_node
= build_nonstandard_integer_type (64, true);
9470 /* Decimal float types. */
9471 dfloat32_type_node
= make_node (REAL_TYPE
);
9472 TYPE_PRECISION (dfloat32_type_node
) = DECIMAL32_TYPE_SIZE
;
9473 layout_type (dfloat32_type_node
);
9474 SET_TYPE_MODE (dfloat32_type_node
, SDmode
);
9475 dfloat32_ptr_type_node
= build_pointer_type (dfloat32_type_node
);
9477 dfloat64_type_node
= make_node (REAL_TYPE
);
9478 TYPE_PRECISION (dfloat64_type_node
) = DECIMAL64_TYPE_SIZE
;
9479 layout_type (dfloat64_type_node
);
9480 SET_TYPE_MODE (dfloat64_type_node
, DDmode
);
9481 dfloat64_ptr_type_node
= build_pointer_type (dfloat64_type_node
);
9483 dfloat128_type_node
= make_node (REAL_TYPE
);
9484 TYPE_PRECISION (dfloat128_type_node
) = DECIMAL128_TYPE_SIZE
;
9485 layout_type (dfloat128_type_node
);
9486 SET_TYPE_MODE (dfloat128_type_node
, TDmode
);
9487 dfloat128_ptr_type_node
= build_pointer_type (dfloat128_type_node
);
9489 complex_integer_type_node
= build_complex_type (integer_type_node
);
9490 complex_float_type_node
= build_complex_type (float_type_node
);
9491 complex_double_type_node
= build_complex_type (double_type_node
);
9492 complex_long_double_type_node
= build_complex_type (long_double_type_node
);
9494 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
9495 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
9496 sat_ ## KIND ## _type_node = \
9497 make_sat_signed_ ## KIND ## _type (SIZE); \
9498 sat_unsigned_ ## KIND ## _type_node = \
9499 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9500 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9501 unsigned_ ## KIND ## _type_node = \
9502 make_unsigned_ ## KIND ## _type (SIZE);
9504 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
9505 sat_ ## WIDTH ## KIND ## _type_node = \
9506 make_sat_signed_ ## KIND ## _type (SIZE); \
9507 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
9508 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9509 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9510 unsigned_ ## WIDTH ## KIND ## _type_node = \
9511 make_unsigned_ ## KIND ## _type (SIZE);
9513 /* Make fixed-point type nodes based on four different widths. */
9514 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
9515 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
9516 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
9517 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
9518 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
9520 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
9521 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
9522 NAME ## _type_node = \
9523 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
9524 u ## NAME ## _type_node = \
9525 make_or_reuse_unsigned_ ## KIND ## _type \
9526 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
9527 sat_ ## NAME ## _type_node = \
9528 make_or_reuse_sat_signed_ ## KIND ## _type \
9529 (GET_MODE_BITSIZE (MODE ## mode)); \
9530 sat_u ## NAME ## _type_node = \
9531 make_or_reuse_sat_unsigned_ ## KIND ## _type \
9532 (GET_MODE_BITSIZE (U ## MODE ## mode));
9534 /* Fixed-point type and mode nodes. */
9535 MAKE_FIXED_TYPE_NODE_FAMILY (fract
, FRACT
)
9536 MAKE_FIXED_TYPE_NODE_FAMILY (accum
, ACCUM
)
9537 MAKE_FIXED_MODE_NODE (fract
, qq
, QQ
)
9538 MAKE_FIXED_MODE_NODE (fract
, hq
, HQ
)
9539 MAKE_FIXED_MODE_NODE (fract
, sq
, SQ
)
9540 MAKE_FIXED_MODE_NODE (fract
, dq
, DQ
)
9541 MAKE_FIXED_MODE_NODE (fract
, tq
, TQ
)
9542 MAKE_FIXED_MODE_NODE (accum
, ha
, HA
)
9543 MAKE_FIXED_MODE_NODE (accum
, sa
, SA
)
9544 MAKE_FIXED_MODE_NODE (accum
, da
, DA
)
9545 MAKE_FIXED_MODE_NODE (accum
, ta
, TA
)
9548 tree t
= targetm
.build_builtin_va_list ();
9550 /* Many back-ends define record types without setting TYPE_NAME.
9551 If we copied the record type here, we'd keep the original
9552 record type without a name. This breaks name mangling. So,
9553 don't copy record types and let c_common_nodes_and_builtins()
9554 declare the type to be __builtin_va_list. */
9555 if (TREE_CODE (t
) != RECORD_TYPE
)
9556 t
= build_variant_type_copy (t
);
9558 va_list_type_node
= t
;
9562 /* Modify DECL for given flags. */
9564 set_call_expr_flags (tree decl
, int flags
)
9566 if (flags
& ECF_NOTHROW
)
9567 TREE_NOTHROW (decl
) = 1;
9568 if (flags
& ECF_CONST
)
9569 TREE_READONLY (decl
) = 1;
9570 if (flags
& ECF_PURE
)
9571 DECL_PURE_P (decl
) = 1;
9572 if (flags
& ECF_LOOPING_CONST_OR_PURE
)
9573 DECL_LOOPING_CONST_OR_PURE_P (decl
) = 1;
9574 if (flags
& ECF_NOVOPS
)
9575 DECL_IS_NOVOPS (decl
) = 1;
9576 if (flags
& ECF_NORETURN
)
9577 TREE_THIS_VOLATILE (decl
) = 1;
9578 if (flags
& ECF_MALLOC
)
9579 DECL_IS_MALLOC (decl
) = 1;
9580 if (flags
& ECF_RETURNS_TWICE
)
9581 DECL_IS_RETURNS_TWICE (decl
) = 1;
9582 if (flags
& ECF_LEAF
)
9583 DECL_ATTRIBUTES (decl
) = tree_cons (get_identifier ("leaf"),
9584 NULL
, DECL_ATTRIBUTES (decl
));
9585 if ((flags
& ECF_TM_PURE
) && flag_tm
)
9586 DECL_ATTRIBUTES (decl
) = tree_cons (get_identifier ("transaction_pure"),
9587 NULL
, DECL_ATTRIBUTES (decl
));
9588 /* Looping const or pure is implied by noreturn.
9589 There is currently no way to declare looping const or looping pure alone. */
9590 gcc_assert (!(flags
& ECF_LOOPING_CONST_OR_PURE
)
9591 || ((flags
& ECF_NORETURN
) && (flags
& (ECF_CONST
| ECF_PURE
))));
9595 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
9598 local_define_builtin (const char *name
, tree type
, enum built_in_function code
,
9599 const char *library_name
, int ecf_flags
)
9603 decl
= add_builtin_function (name
, type
, code
, BUILT_IN_NORMAL
,
9604 library_name
, NULL_TREE
);
9605 set_call_expr_flags (decl
, ecf_flags
);
9607 set_builtin_decl (code
, decl
, true);
9610 /* Call this function after instantiating all builtins that the language
9611 front end cares about. This will build the rest of the builtins that
9612 are relied upon by the tree optimizers and the middle-end. */
9615 build_common_builtin_nodes (void)
9620 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE
))
9622 ftype
= build_function_type (void_type_node
, void_list_node
);
9623 local_define_builtin ("__builtin_unreachable", ftype
, BUILT_IN_UNREACHABLE
,
9624 "__builtin_unreachable",
9625 ECF_NOTHROW
| ECF_LEAF
| ECF_NORETURN
9626 | ECF_CONST
| ECF_LEAF
);
9629 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
)
9630 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
9632 ftype
= build_function_type_list (ptr_type_node
,
9633 ptr_type_node
, const_ptr_type_node
,
9634 size_type_node
, NULL_TREE
);
9636 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
))
9637 local_define_builtin ("__builtin_memcpy", ftype
, BUILT_IN_MEMCPY
,
9638 "memcpy", ECF_NOTHROW
| ECF_LEAF
);
9639 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
9640 local_define_builtin ("__builtin_memmove", ftype
, BUILT_IN_MEMMOVE
,
9641 "memmove", ECF_NOTHROW
| ECF_LEAF
);
9644 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP
))
9646 ftype
= build_function_type_list (integer_type_node
, const_ptr_type_node
,
9647 const_ptr_type_node
, size_type_node
,
9649 local_define_builtin ("__builtin_memcmp", ftype
, BUILT_IN_MEMCMP
,
9650 "memcmp", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
9653 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET
))
9655 ftype
= build_function_type_list (ptr_type_node
,
9656 ptr_type_node
, integer_type_node
,
9657 size_type_node
, NULL_TREE
);
9658 local_define_builtin ("__builtin_memset", ftype
, BUILT_IN_MEMSET
,
9659 "memset", ECF_NOTHROW
| ECF_LEAF
);
9662 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA
))
9664 ftype
= build_function_type_list (ptr_type_node
,
9665 size_type_node
, NULL_TREE
);
9666 local_define_builtin ("__builtin_alloca", ftype
, BUILT_IN_ALLOCA
,
9667 "alloca", ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
9670 ftype
= build_function_type_list (ptr_type_node
, size_type_node
,
9671 size_type_node
, NULL_TREE
);
9672 local_define_builtin ("__builtin_alloca_with_align", ftype
,
9673 BUILT_IN_ALLOCA_WITH_ALIGN
, "alloca",
9674 ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
9676 /* If we're checking the stack, `alloca' can throw. */
9677 if (flag_stack_check
)
9679 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA
)) = 0;
9680 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
)) = 0;
9683 ftype
= build_function_type_list (void_type_node
,
9684 ptr_type_node
, ptr_type_node
,
9685 ptr_type_node
, NULL_TREE
);
9686 local_define_builtin ("__builtin_init_trampoline", ftype
,
9687 BUILT_IN_INIT_TRAMPOLINE
,
9688 "__builtin_init_trampoline", ECF_NOTHROW
| ECF_LEAF
);
9689 local_define_builtin ("__builtin_init_heap_trampoline", ftype
,
9690 BUILT_IN_INIT_HEAP_TRAMPOLINE
,
9691 "__builtin_init_heap_trampoline",
9692 ECF_NOTHROW
| ECF_LEAF
);
9694 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
9695 local_define_builtin ("__builtin_adjust_trampoline", ftype
,
9696 BUILT_IN_ADJUST_TRAMPOLINE
,
9697 "__builtin_adjust_trampoline",
9698 ECF_CONST
| ECF_NOTHROW
);
9700 ftype
= build_function_type_list (void_type_node
,
9701 ptr_type_node
, ptr_type_node
, NULL_TREE
);
9702 local_define_builtin ("__builtin_nonlocal_goto", ftype
,
9703 BUILT_IN_NONLOCAL_GOTO
,
9704 "__builtin_nonlocal_goto",
9705 ECF_NORETURN
| ECF_NOTHROW
);
9707 ftype
= build_function_type_list (void_type_node
,
9708 ptr_type_node
, ptr_type_node
, NULL_TREE
);
9709 local_define_builtin ("__builtin_setjmp_setup", ftype
,
9710 BUILT_IN_SETJMP_SETUP
,
9711 "__builtin_setjmp_setup", ECF_NOTHROW
);
9713 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
9714 local_define_builtin ("__builtin_setjmp_dispatcher", ftype
,
9715 BUILT_IN_SETJMP_DISPATCHER
,
9716 "__builtin_setjmp_dispatcher",
9717 ECF_PURE
| ECF_NOTHROW
);
9719 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9720 local_define_builtin ("__builtin_setjmp_receiver", ftype
,
9721 BUILT_IN_SETJMP_RECEIVER
,
9722 "__builtin_setjmp_receiver", ECF_NOTHROW
);
9724 ftype
= build_function_type_list (ptr_type_node
, NULL_TREE
);
9725 local_define_builtin ("__builtin_stack_save", ftype
, BUILT_IN_STACK_SAVE
,
9726 "__builtin_stack_save", ECF_NOTHROW
| ECF_LEAF
);
9728 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9729 local_define_builtin ("__builtin_stack_restore", ftype
,
9730 BUILT_IN_STACK_RESTORE
,
9731 "__builtin_stack_restore", ECF_NOTHROW
| ECF_LEAF
);
9733 /* If there's a possibility that we might use the ARM EABI, build the
9734 alternate __cxa_end_cleanup node used to resume from C++ and Java. */
9735 if (targetm
.arm_eabi_unwinder
)
9737 ftype
= build_function_type_list (void_type_node
, NULL_TREE
);
9738 local_define_builtin ("__builtin_cxa_end_cleanup", ftype
,
9739 BUILT_IN_CXA_END_CLEANUP
,
9740 "__cxa_end_cleanup", ECF_NORETURN
| ECF_LEAF
);
9743 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9744 local_define_builtin ("__builtin_unwind_resume", ftype
,
9745 BUILT_IN_UNWIND_RESUME
,
9746 ((targetm_common
.except_unwind_info (&global_options
)
9748 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
9751 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS
) == NULL_TREE
)
9753 ftype
= build_function_type_list (ptr_type_node
, integer_type_node
,
9755 local_define_builtin ("__builtin_return_address", ftype
,
9756 BUILT_IN_RETURN_ADDRESS
,
9757 "__builtin_return_address",
9761 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
)
9762 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
9764 ftype
= build_function_type_list (void_type_node
, ptr_type_node
,
9765 ptr_type_node
, NULL_TREE
);
9766 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
))
9767 local_define_builtin ("__cyg_profile_func_enter", ftype
,
9768 BUILT_IN_PROFILE_FUNC_ENTER
,
9769 "__cyg_profile_func_enter", 0);
9770 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
9771 local_define_builtin ("__cyg_profile_func_exit", ftype
,
9772 BUILT_IN_PROFILE_FUNC_EXIT
,
9773 "__cyg_profile_func_exit", 0);
9776 /* The exception object and filter values from the runtime. The argument
9777 must be zero before exception lowering, i.e. from the front end. After
9778 exception lowering, it will be the region number for the exception
9779 landing pad. These functions are PURE instead of CONST to prevent
9780 them from being hoisted past the exception edge that will initialize
9781 its value in the landing pad. */
9782 ftype
= build_function_type_list (ptr_type_node
,
9783 integer_type_node
, NULL_TREE
);
9784 ecf_flags
= ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
;
9785 /* Only use TM_PURE if we we have TM language support. */
9786 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1
))
9787 ecf_flags
|= ECF_TM_PURE
;
9788 local_define_builtin ("__builtin_eh_pointer", ftype
, BUILT_IN_EH_POINTER
,
9789 "__builtin_eh_pointer", ecf_flags
);
9791 tmp
= lang_hooks
.types
.type_for_mode (targetm
.eh_return_filter_mode (), 0);
9792 ftype
= build_function_type_list (tmp
, integer_type_node
, NULL_TREE
);
9793 local_define_builtin ("__builtin_eh_filter", ftype
, BUILT_IN_EH_FILTER
,
9794 "__builtin_eh_filter", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
9796 ftype
= build_function_type_list (void_type_node
,
9797 integer_type_node
, integer_type_node
,
9799 local_define_builtin ("__builtin_eh_copy_values", ftype
,
9800 BUILT_IN_EH_COPY_VALUES
,
9801 "__builtin_eh_copy_values", ECF_NOTHROW
);
9803 /* Complex multiplication and division. These are handled as builtins
9804 rather than optabs because emit_library_call_value doesn't support
9805 complex. Further, we can do slightly better with folding these
9806 beasties if the real and complex parts of the arguments are separate. */
9810 for (mode
= MIN_MODE_COMPLEX_FLOAT
; mode
<= MAX_MODE_COMPLEX_FLOAT
; ++mode
)
9812 char mode_name_buf
[4], *q
;
9814 enum built_in_function mcode
, dcode
;
9815 tree type
, inner_type
;
9816 const char *prefix
= "__";
9818 if (targetm
.libfunc_gnu_prefix
)
9821 type
= lang_hooks
.types
.type_for_mode ((enum machine_mode
) mode
, 0);
9824 inner_type
= TREE_TYPE (type
);
9826 ftype
= build_function_type_list (type
, inner_type
, inner_type
,
9827 inner_type
, inner_type
, NULL_TREE
);
9829 mcode
= ((enum built_in_function
)
9830 (BUILT_IN_COMPLEX_MUL_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
9831 dcode
= ((enum built_in_function
)
9832 (BUILT_IN_COMPLEX_DIV_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
9834 for (p
= GET_MODE_NAME (mode
), q
= mode_name_buf
; *p
; p
++, q
++)
9838 built_in_names
[mcode
] = concat (prefix
, "mul", mode_name_buf
, "3",
9840 local_define_builtin (built_in_names
[mcode
], ftype
, mcode
,
9841 built_in_names
[mcode
],
9842 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
9844 built_in_names
[dcode
] = concat (prefix
, "div", mode_name_buf
, "3",
9846 local_define_builtin (built_in_names
[dcode
], ftype
, dcode
,
9847 built_in_names
[dcode
],
9848 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
9853 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
9856 If we requested a pointer to a vector, build up the pointers that
9857 we stripped off while looking for the inner type. Similarly for
9858 return values from functions.
9860 The argument TYPE is the top of the chain, and BOTTOM is the
9861 new type which we will point to. */
9864 reconstruct_complex_type (tree type
, tree bottom
)
9868 if (TREE_CODE (type
) == POINTER_TYPE
)
9870 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9871 outer
= build_pointer_type_for_mode (inner
, TYPE_MODE (type
),
9872 TYPE_REF_CAN_ALIAS_ALL (type
));
9874 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
9876 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9877 outer
= build_reference_type_for_mode (inner
, TYPE_MODE (type
),
9878 TYPE_REF_CAN_ALIAS_ALL (type
));
9880 else if (TREE_CODE (type
) == ARRAY_TYPE
)
9882 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9883 outer
= build_array_type (inner
, TYPE_DOMAIN (type
));
9885 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
9887 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9888 outer
= build_function_type (inner
, TYPE_ARG_TYPES (type
));
9890 else if (TREE_CODE (type
) == METHOD_TYPE
)
9892 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9893 /* The build_method_type_directly() routine prepends 'this' to argument list,
9894 so we must compensate by getting rid of it. */
9896 = build_method_type_directly
9897 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type
))),
9899 TREE_CHAIN (TYPE_ARG_TYPES (type
)));
9901 else if (TREE_CODE (type
) == OFFSET_TYPE
)
9903 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9904 outer
= build_offset_type (TYPE_OFFSET_BASETYPE (type
), inner
);
9909 return build_type_attribute_qual_variant (outer
, TYPE_ATTRIBUTES (type
),
9913 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
9916 build_vector_type_for_mode (tree innertype
, enum machine_mode mode
)
9920 switch (GET_MODE_CLASS (mode
))
9922 case MODE_VECTOR_INT
:
9923 case MODE_VECTOR_FLOAT
:
9924 case MODE_VECTOR_FRACT
:
9925 case MODE_VECTOR_UFRACT
:
9926 case MODE_VECTOR_ACCUM
:
9927 case MODE_VECTOR_UACCUM
:
9928 nunits
= GET_MODE_NUNITS (mode
);
9932 /* Check that there are no leftover bits. */
9933 gcc_assert (GET_MODE_BITSIZE (mode
)
9934 % TREE_INT_CST_LOW (TYPE_SIZE (innertype
)) == 0);
9936 nunits
= GET_MODE_BITSIZE (mode
)
9937 / TREE_INT_CST_LOW (TYPE_SIZE (innertype
));
9944 return make_vector_type (innertype
, nunits
, mode
);
9947 /* Similarly, but takes the inner type and number of units, which must be
9951 build_vector_type (tree innertype
, int nunits
)
9953 return make_vector_type (innertype
, nunits
, VOIDmode
);
9956 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
9959 build_opaque_vector_type (tree innertype
, int nunits
)
9961 tree t
= make_vector_type (innertype
, nunits
, VOIDmode
);
9963 /* We always build the non-opaque variant before the opaque one,
9964 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
9965 cand
= TYPE_NEXT_VARIANT (t
);
9967 && TYPE_VECTOR_OPAQUE (cand
)
9968 && check_qualified_type (cand
, t
, TYPE_QUALS (t
)))
9970 /* Othewise build a variant type and make sure to queue it after
9971 the non-opaque type. */
9972 cand
= build_distinct_type_copy (t
);
9973 TYPE_VECTOR_OPAQUE (cand
) = true;
9974 TYPE_CANONICAL (cand
) = TYPE_CANONICAL (t
);
9975 TYPE_NEXT_VARIANT (cand
) = TYPE_NEXT_VARIANT (t
);
9976 TYPE_NEXT_VARIANT (t
) = cand
;
9977 TYPE_MAIN_VARIANT (cand
) = TYPE_MAIN_VARIANT (t
);
9982 /* Given an initializer INIT, return TRUE if INIT is zero or some
9983 aggregate of zeros. Otherwise return FALSE. */
9985 initializer_zerop (const_tree init
)
9991 switch (TREE_CODE (init
))
9994 return integer_zerop (init
);
9997 /* ??? Note that this is not correct for C4X float formats. There,
9998 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
9999 negative exponent. */
10000 return real_zerop (init
)
10001 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init
));
10004 return fixed_zerop (init
);
10007 return integer_zerop (init
)
10008 || (real_zerop (init
)
10009 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init
)))
10010 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init
))));
10015 for (i
= 0; i
< VECTOR_CST_NELTS (init
); ++i
)
10016 if (!initializer_zerop (VECTOR_CST_ELT (init
, i
)))
10023 unsigned HOST_WIDE_INT idx
;
10025 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init
), idx
, elt
)
10026 if (!initializer_zerop (elt
))
10035 /* We need to loop through all elements to handle cases like
10036 "\0" and "\0foobar". */
10037 for (i
= 0; i
< TREE_STRING_LENGTH (init
); ++i
)
10038 if (TREE_STRING_POINTER (init
)[i
] != '\0')
10049 /* Build an empty statement at location LOC. */
10052 build_empty_stmt (location_t loc
)
10054 tree t
= build1 (NOP_EXPR
, void_type_node
, size_zero_node
);
10055 SET_EXPR_LOCATION (t
, loc
);
10060 /* Build an OpenMP clause with code CODE. LOC is the location of the
10064 build_omp_clause (location_t loc
, enum omp_clause_code code
)
10069 length
= omp_clause_num_ops
[code
];
10070 size
= (sizeof (struct tree_omp_clause
) + (length
- 1) * sizeof (tree
));
10072 record_node_allocation_statistics (OMP_CLAUSE
, size
);
10074 t
= ggc_alloc_tree_node (size
);
10075 memset (t
, 0, size
);
10076 TREE_SET_CODE (t
, OMP_CLAUSE
);
10077 OMP_CLAUSE_SET_CODE (t
, code
);
10078 OMP_CLAUSE_LOCATION (t
) = loc
;
10083 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10084 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10085 Except for the CODE and operand count field, other storage for the
10086 object is initialized to zeros. */
10089 build_vl_exp_stat (enum tree_code code
, int len MEM_STAT_DECL
)
10092 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_exp
);
10094 gcc_assert (TREE_CODE_CLASS (code
) == tcc_vl_exp
);
10095 gcc_assert (len
>= 1);
10097 record_node_allocation_statistics (code
, length
);
10099 t
= ggc_alloc_cleared_tree_node_stat (length PASS_MEM_STAT
);
10101 TREE_SET_CODE (t
, code
);
10103 /* Can't use TREE_OPERAND to store the length because if checking is
10104 enabled, it will try to check the length before we store it. :-P */
10105 t
->exp
.operands
[0] = build_int_cst (sizetype
, len
);
10110 /* Helper function for build_call_* functions; build a CALL_EXPR with
10111 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10112 the argument slots. */
10115 build_call_1 (tree return_type
, tree fn
, int nargs
)
10119 t
= build_vl_exp (CALL_EXPR
, nargs
+ 3);
10120 TREE_TYPE (t
) = return_type
;
10121 CALL_EXPR_FN (t
) = fn
;
10122 CALL_EXPR_STATIC_CHAIN (t
) = NULL
;
10127 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10128 FN and a null static chain slot. NARGS is the number of call arguments
10129 which are specified as "..." arguments. */
10132 build_call_nary (tree return_type
, tree fn
, int nargs
, ...)
10136 va_start (args
, nargs
);
10137 ret
= build_call_valist (return_type
, fn
, nargs
, args
);
10142 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10143 FN and a null static chain slot. NARGS is the number of call arguments
10144 which are specified as a va_list ARGS. */
10147 build_call_valist (tree return_type
, tree fn
, int nargs
, va_list args
)
10152 t
= build_call_1 (return_type
, fn
, nargs
);
10153 for (i
= 0; i
< nargs
; i
++)
10154 CALL_EXPR_ARG (t
, i
) = va_arg (args
, tree
);
10155 process_call_operands (t
);
10159 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10160 FN and a null static chain slot. NARGS is the number of call arguments
10161 which are specified as a tree array ARGS. */
10164 build_call_array_loc (location_t loc
, tree return_type
, tree fn
,
10165 int nargs
, const tree
*args
)
10170 t
= build_call_1 (return_type
, fn
, nargs
);
10171 for (i
= 0; i
< nargs
; i
++)
10172 CALL_EXPR_ARG (t
, i
) = args
[i
];
10173 process_call_operands (t
);
10174 SET_EXPR_LOCATION (t
, loc
);
10178 /* Like build_call_array, but takes a vec. */
10181 build_call_vec (tree return_type
, tree fn
, vec
<tree
, va_gc
> *args
)
10186 ret
= build_call_1 (return_type
, fn
, vec_safe_length (args
));
10187 FOR_EACH_VEC_SAFE_ELT (args
, ix
, t
)
10188 CALL_EXPR_ARG (ret
, ix
) = t
;
10189 process_call_operands (ret
);
10194 /* Returns true if it is possible to prove that the index of
10195 an array access REF (an ARRAY_REF expression) falls into the
10199 in_array_bounds_p (tree ref
)
10201 tree idx
= TREE_OPERAND (ref
, 1);
10204 if (TREE_CODE (idx
) != INTEGER_CST
)
10207 min
= array_ref_low_bound (ref
);
10208 max
= array_ref_up_bound (ref
);
10211 || TREE_CODE (min
) != INTEGER_CST
10212 || TREE_CODE (max
) != INTEGER_CST
)
10215 if (tree_int_cst_lt (idx
, min
)
10216 || tree_int_cst_lt (max
, idx
))
10222 /* Returns true if it is possible to prove that the range of
10223 an array access REF (an ARRAY_RANGE_REF expression) falls
10224 into the array bounds. */
10227 range_in_array_bounds_p (tree ref
)
10229 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (ref
));
10230 tree range_min
, range_max
, min
, max
;
10232 range_min
= TYPE_MIN_VALUE (domain_type
);
10233 range_max
= TYPE_MAX_VALUE (domain_type
);
10236 || TREE_CODE (range_min
) != INTEGER_CST
10237 || TREE_CODE (range_max
) != INTEGER_CST
)
10240 min
= array_ref_low_bound (ref
);
10241 max
= array_ref_up_bound (ref
);
10244 || TREE_CODE (min
) != INTEGER_CST
10245 || TREE_CODE (max
) != INTEGER_CST
)
10248 if (tree_int_cst_lt (range_min
, min
)
10249 || tree_int_cst_lt (max
, range_max
))
10255 /* Return true if T (assumed to be a DECL) must be assigned a memory
10259 needs_to_live_in_memory (const_tree t
)
10261 return (TREE_ADDRESSABLE (t
)
10262 || is_global_var (t
)
10263 || (TREE_CODE (t
) == RESULT_DECL
10264 && !DECL_BY_REFERENCE (t
)
10265 && aggregate_value_p (t
, current_function_decl
)));
10268 /* Return value of a constant X and sign-extend it. */
10271 int_cst_value (const_tree x
)
10273 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
10274 unsigned HOST_WIDE_INT val
= TREE_INT_CST_LOW (x
);
10276 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10277 gcc_assert (TREE_INT_CST_HIGH (x
) == 0
10278 || TREE_INT_CST_HIGH (x
) == -1);
10280 if (bits
< HOST_BITS_PER_WIDE_INT
)
10282 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
10284 val
|= (~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1;
10286 val
&= ~((~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1);
10292 /* Return value of a constant X and sign-extend it. */
10295 widest_int_cst_value (const_tree x
)
10297 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
10298 unsigned HOST_WIDEST_INT val
= TREE_INT_CST_LOW (x
);
10300 #if HOST_BITS_PER_WIDEST_INT > HOST_BITS_PER_WIDE_INT
10301 gcc_assert (HOST_BITS_PER_WIDEST_INT
>= HOST_BITS_PER_DOUBLE_INT
);
10302 val
|= (((unsigned HOST_WIDEST_INT
) TREE_INT_CST_HIGH (x
))
10303 << HOST_BITS_PER_WIDE_INT
);
10305 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10306 gcc_assert (TREE_INT_CST_HIGH (x
) == 0
10307 || TREE_INT_CST_HIGH (x
) == -1);
10310 if (bits
< HOST_BITS_PER_WIDEST_INT
)
10312 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
10314 val
|= (~(unsigned HOST_WIDEST_INT
) 0) << (bits
- 1) << 1;
10316 val
&= ~((~(unsigned HOST_WIDEST_INT
) 0) << (bits
- 1) << 1);
10322 /* If TYPE is an integral or pointer type, return an integer type with
10323 the same precision which is unsigned iff UNSIGNEDP is true, or itself
10324 if TYPE is already an integer type of signedness UNSIGNEDP. */
10327 signed_or_unsigned_type_for (int unsignedp
, tree type
)
10329 if (TREE_CODE (type
) == INTEGER_TYPE
&& TYPE_UNSIGNED (type
) == unsignedp
)
10332 if (TREE_CODE (type
) == VECTOR_TYPE
)
10334 tree inner
= TREE_TYPE (type
);
10335 tree inner2
= signed_or_unsigned_type_for (unsignedp
, inner
);
10338 if (inner
== inner2
)
10340 return build_vector_type (inner2
, TYPE_VECTOR_SUBPARTS (type
));
10343 if (!INTEGRAL_TYPE_P (type
)
10344 && !POINTER_TYPE_P (type
))
10347 return build_nonstandard_integer_type (TYPE_PRECISION (type
), unsignedp
);
10350 /* If TYPE is an integral or pointer type, return an integer type with
10351 the same precision which is unsigned, or itself if TYPE is already an
10352 unsigned integer type. */
10355 unsigned_type_for (tree type
)
10357 return signed_or_unsigned_type_for (1, type
);
10360 /* If TYPE is an integral or pointer type, return an integer type with
10361 the same precision which is signed, or itself if TYPE is already a
10362 signed integer type. */
10365 signed_type_for (tree type
)
10367 return signed_or_unsigned_type_for (0, type
);
10370 /* If TYPE is a vector type, return a signed integer vector type with the
10371 same width and number of subparts. Otherwise return boolean_type_node. */
10374 truth_type_for (tree type
)
10376 if (TREE_CODE (type
) == VECTOR_TYPE
)
10378 tree elem
= lang_hooks
.types
.type_for_size
10379 (GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type
))), 0);
10380 return build_opaque_vector_type (elem
, TYPE_VECTOR_SUBPARTS (type
));
10383 return boolean_type_node
;
10386 /* Returns the largest value obtainable by casting something in INNER type to
10390 upper_bound_in_type (tree outer
, tree inner
)
10393 unsigned int det
= 0;
10394 unsigned oprec
= TYPE_PRECISION (outer
);
10395 unsigned iprec
= TYPE_PRECISION (inner
);
10398 /* Compute a unique number for every combination. */
10399 det
|= (oprec
> iprec
) ? 4 : 0;
10400 det
|= TYPE_UNSIGNED (outer
) ? 2 : 0;
10401 det
|= TYPE_UNSIGNED (inner
) ? 1 : 0;
10403 /* Determine the exponent to use. */
10408 /* oprec <= iprec, outer: signed, inner: don't care. */
10413 /* oprec <= iprec, outer: unsigned, inner: don't care. */
10417 /* oprec > iprec, outer: signed, inner: signed. */
10421 /* oprec > iprec, outer: signed, inner: unsigned. */
10425 /* oprec > iprec, outer: unsigned, inner: signed. */
10429 /* oprec > iprec, outer: unsigned, inner: unsigned. */
10433 gcc_unreachable ();
10436 /* Compute 2^^prec - 1. */
10437 if (prec
<= HOST_BITS_PER_WIDE_INT
)
10440 high
.low
= ((~(unsigned HOST_WIDE_INT
) 0)
10441 >> (HOST_BITS_PER_WIDE_INT
- prec
));
10445 high
.high
= ((~(unsigned HOST_WIDE_INT
) 0)
10446 >> (HOST_BITS_PER_DOUBLE_INT
- prec
));
10447 high
.low
= ~(unsigned HOST_WIDE_INT
) 0;
10450 return double_int_to_tree (outer
, high
);
10453 /* Returns the smallest value obtainable by casting something in INNER type to
10457 lower_bound_in_type (tree outer
, tree inner
)
10460 unsigned oprec
= TYPE_PRECISION (outer
);
10461 unsigned iprec
= TYPE_PRECISION (inner
);
10463 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
10465 if (TYPE_UNSIGNED (outer
)
10466 /* If we are widening something of an unsigned type, OUTER type
10467 contains all values of INNER type. In particular, both INNER
10468 and OUTER types have zero in common. */
10469 || (oprec
> iprec
&& TYPE_UNSIGNED (inner
)))
10470 low
.low
= low
.high
= 0;
10473 /* If we are widening a signed type to another signed type, we
10474 want to obtain -2^^(iprec-1). If we are keeping the
10475 precision or narrowing to a signed type, we want to obtain
10477 unsigned prec
= oprec
> iprec
? iprec
: oprec
;
10479 if (prec
<= HOST_BITS_PER_WIDE_INT
)
10481 low
.high
= ~(unsigned HOST_WIDE_INT
) 0;
10482 low
.low
= (~(unsigned HOST_WIDE_INT
) 0) << (prec
- 1);
10486 low
.high
= ((~(unsigned HOST_WIDE_INT
) 0)
10487 << (prec
- HOST_BITS_PER_WIDE_INT
- 1));
10492 return double_int_to_tree (outer
, low
);
10495 /* Return nonzero if two operands that are suitable for PHI nodes are
10496 necessarily equal. Specifically, both ARG0 and ARG1 must be either
10497 SSA_NAME or invariant. Note that this is strictly an optimization.
10498 That is, callers of this function can directly call operand_equal_p
10499 and get the same result, only slower. */
10502 operand_equal_for_phi_arg_p (const_tree arg0
, const_tree arg1
)
10506 if (TREE_CODE (arg0
) == SSA_NAME
|| TREE_CODE (arg1
) == SSA_NAME
)
10508 return operand_equal_p (arg0
, arg1
, 0);
10511 /* Returns number of zeros at the end of binary representation of X.
10513 ??? Use ffs if available? */
10516 num_ending_zeros (const_tree x
)
10518 unsigned HOST_WIDE_INT fr
, nfr
;
10519 unsigned num
, abits
;
10520 tree type
= TREE_TYPE (x
);
10522 if (TREE_INT_CST_LOW (x
) == 0)
10524 num
= HOST_BITS_PER_WIDE_INT
;
10525 fr
= TREE_INT_CST_HIGH (x
);
10530 fr
= TREE_INT_CST_LOW (x
);
10533 for (abits
= HOST_BITS_PER_WIDE_INT
/ 2; abits
; abits
/= 2)
10536 if (nfr
<< abits
== fr
)
10543 if (num
> TYPE_PRECISION (type
))
10544 num
= TYPE_PRECISION (type
);
10546 return build_int_cst_type (type
, num
);
10550 #define WALK_SUBTREE(NODE) \
10553 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
10559 /* This is a subroutine of walk_tree that walks field of TYPE that are to
10560 be walked whenever a type is seen in the tree. Rest of operands and return
10561 value are as for walk_tree. */
10564 walk_type_fields (tree type
, walk_tree_fn func
, void *data
,
10565 struct pointer_set_t
*pset
, walk_tree_lh lh
)
10567 tree result
= NULL_TREE
;
10569 switch (TREE_CODE (type
))
10572 case REFERENCE_TYPE
:
10573 /* We have to worry about mutually recursive pointers. These can't
10574 be written in C. They can in Ada. It's pathological, but
10575 there's an ACATS test (c38102a) that checks it. Deal with this
10576 by checking if we're pointing to another pointer, that one
10577 points to another pointer, that one does too, and we have no htab.
10578 If so, get a hash table. We check three levels deep to avoid
10579 the cost of the hash table if we don't need one. */
10580 if (POINTER_TYPE_P (TREE_TYPE (type
))
10581 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type
)))
10582 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type
))))
10585 result
= walk_tree_without_duplicates (&TREE_TYPE (type
),
10593 /* ... fall through ... */
10596 WALK_SUBTREE (TREE_TYPE (type
));
10600 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type
));
10602 /* Fall through. */
10604 case FUNCTION_TYPE
:
10605 WALK_SUBTREE (TREE_TYPE (type
));
10609 /* We never want to walk into default arguments. */
10610 for (arg
= TYPE_ARG_TYPES (type
); arg
; arg
= TREE_CHAIN (arg
))
10611 WALK_SUBTREE (TREE_VALUE (arg
));
10616 /* Don't follow this nodes's type if a pointer for fear that
10617 we'll have infinite recursion. If we have a PSET, then we
10620 || (!POINTER_TYPE_P (TREE_TYPE (type
))
10621 && TREE_CODE (TREE_TYPE (type
)) != OFFSET_TYPE
))
10622 WALK_SUBTREE (TREE_TYPE (type
));
10623 WALK_SUBTREE (TYPE_DOMAIN (type
));
10627 WALK_SUBTREE (TREE_TYPE (type
));
10628 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type
));
10638 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
10639 called with the DATA and the address of each sub-tree. If FUNC returns a
10640 non-NULL value, the traversal is stopped, and the value returned by FUNC
10641 is returned. If PSET is non-NULL it is used to record the nodes visited,
10642 and to avoid visiting a node more than once. */
10645 walk_tree_1 (tree
*tp
, walk_tree_fn func
, void *data
,
10646 struct pointer_set_t
*pset
, walk_tree_lh lh
)
10648 enum tree_code code
;
10652 #define WALK_SUBTREE_TAIL(NODE) \
10656 goto tail_recurse; \
10661 /* Skip empty subtrees. */
10665 /* Don't walk the same tree twice, if the user has requested
10666 that we avoid doing so. */
10667 if (pset
&& pointer_set_insert (pset
, *tp
))
10670 /* Call the function. */
10672 result
= (*func
) (tp
, &walk_subtrees
, data
);
10674 /* If we found something, return it. */
10678 code
= TREE_CODE (*tp
);
10680 /* Even if we didn't, FUNC may have decided that there was nothing
10681 interesting below this point in the tree. */
10682 if (!walk_subtrees
)
10684 /* But we still need to check our siblings. */
10685 if (code
== TREE_LIST
)
10686 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
10687 else if (code
== OMP_CLAUSE
)
10688 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10695 result
= (*lh
) (tp
, &walk_subtrees
, func
, data
, pset
);
10696 if (result
|| !walk_subtrees
)
10703 case IDENTIFIER_NODE
:
10710 case PLACEHOLDER_EXPR
:
10714 /* None of these have subtrees other than those already walked
10719 WALK_SUBTREE (TREE_VALUE (*tp
));
10720 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
10725 int len
= TREE_VEC_LENGTH (*tp
);
10730 /* Walk all elements but the first. */
10732 WALK_SUBTREE (TREE_VEC_ELT (*tp
, len
));
10734 /* Now walk the first one as a tail call. */
10735 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp
, 0));
10739 WALK_SUBTREE (TREE_REALPART (*tp
));
10740 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp
));
10744 unsigned HOST_WIDE_INT idx
;
10745 constructor_elt
*ce
;
10747 for (idx
= 0; vec_safe_iterate(CONSTRUCTOR_ELTS (*tp
), idx
, &ce
); idx
++)
10748 WALK_SUBTREE (ce
->value
);
10753 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, 0));
10758 for (decl
= BIND_EXPR_VARS (*tp
); decl
; decl
= DECL_CHAIN (decl
))
10760 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
10761 into declarations that are just mentioned, rather than
10762 declared; they don't really belong to this part of the tree.
10763 And, we can see cycles: the initializer for a declaration
10764 can refer to the declaration itself. */
10765 WALK_SUBTREE (DECL_INITIAL (decl
));
10766 WALK_SUBTREE (DECL_SIZE (decl
));
10767 WALK_SUBTREE (DECL_SIZE_UNIT (decl
));
10769 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp
));
10772 case STATEMENT_LIST
:
10774 tree_stmt_iterator i
;
10775 for (i
= tsi_start (*tp
); !tsi_end_p (i
); tsi_next (&i
))
10776 WALK_SUBTREE (*tsi_stmt_ptr (i
));
10781 switch (OMP_CLAUSE_CODE (*tp
))
10783 case OMP_CLAUSE_PRIVATE
:
10784 case OMP_CLAUSE_SHARED
:
10785 case OMP_CLAUSE_FIRSTPRIVATE
:
10786 case OMP_CLAUSE_COPYIN
:
10787 case OMP_CLAUSE_COPYPRIVATE
:
10788 case OMP_CLAUSE_FINAL
:
10789 case OMP_CLAUSE_IF
:
10790 case OMP_CLAUSE_NUM_THREADS
:
10791 case OMP_CLAUSE_SCHEDULE
:
10792 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 0));
10795 case OMP_CLAUSE_NOWAIT
:
10796 case OMP_CLAUSE_ORDERED
:
10797 case OMP_CLAUSE_DEFAULT
:
10798 case OMP_CLAUSE_UNTIED
:
10799 case OMP_CLAUSE_MERGEABLE
:
10800 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10802 case OMP_CLAUSE_LASTPRIVATE
:
10803 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
10804 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp
));
10805 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10807 case OMP_CLAUSE_COLLAPSE
:
10810 for (i
= 0; i
< 3; i
++)
10811 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
10812 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10815 case OMP_CLAUSE_REDUCTION
:
10818 for (i
= 0; i
< 4; i
++)
10819 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
10820 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10824 gcc_unreachable ();
10832 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
10833 But, we only want to walk once. */
10834 len
= (TREE_OPERAND (*tp
, 3) == TREE_OPERAND (*tp
, 1)) ? 2 : 3;
10835 for (i
= 0; i
< len
; ++i
)
10836 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
10837 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
));
10841 /* If this is a TYPE_DECL, walk into the fields of the type that it's
10842 defining. We only want to walk into these fields of a type in this
10843 case and not in the general case of a mere reference to the type.
10845 The criterion is as follows: if the field can be an expression, it
10846 must be walked only here. This should be in keeping with the fields
10847 that are directly gimplified in gimplify_type_sizes in order for the
10848 mark/copy-if-shared/unmark machinery of the gimplifier to work with
10849 variable-sized types.
10851 Note that DECLs get walked as part of processing the BIND_EXPR. */
10852 if (TREE_CODE (DECL_EXPR_DECL (*tp
)) == TYPE_DECL
)
10854 tree
*type_p
= &TREE_TYPE (DECL_EXPR_DECL (*tp
));
10855 if (TREE_CODE (*type_p
) == ERROR_MARK
)
10858 /* Call the function for the type. See if it returns anything or
10859 doesn't want us to continue. If we are to continue, walk both
10860 the normal fields and those for the declaration case. */
10861 result
= (*func
) (type_p
, &walk_subtrees
, data
);
10862 if (result
|| !walk_subtrees
)
10865 /* But do not walk a pointed-to type since it may itself need to
10866 be walked in the declaration case if it isn't anonymous. */
10867 if (!POINTER_TYPE_P (*type_p
))
10869 result
= walk_type_fields (*type_p
, func
, data
, pset
, lh
);
10874 /* If this is a record type, also walk the fields. */
10875 if (RECORD_OR_UNION_TYPE_P (*type_p
))
10879 for (field
= TYPE_FIELDS (*type_p
); field
;
10880 field
= DECL_CHAIN (field
))
10882 /* We'd like to look at the type of the field, but we can
10883 easily get infinite recursion. So assume it's pointed
10884 to elsewhere in the tree. Also, ignore things that
10886 if (TREE_CODE (field
) != FIELD_DECL
)
10889 WALK_SUBTREE (DECL_FIELD_OFFSET (field
));
10890 WALK_SUBTREE (DECL_SIZE (field
));
10891 WALK_SUBTREE (DECL_SIZE_UNIT (field
));
10892 if (TREE_CODE (*type_p
) == QUAL_UNION_TYPE
)
10893 WALK_SUBTREE (DECL_QUALIFIER (field
));
10897 /* Same for scalar types. */
10898 else if (TREE_CODE (*type_p
) == BOOLEAN_TYPE
10899 || TREE_CODE (*type_p
) == ENUMERAL_TYPE
10900 || TREE_CODE (*type_p
) == INTEGER_TYPE
10901 || TREE_CODE (*type_p
) == FIXED_POINT_TYPE
10902 || TREE_CODE (*type_p
) == REAL_TYPE
)
10904 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p
));
10905 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p
));
10908 WALK_SUBTREE (TYPE_SIZE (*type_p
));
10909 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p
));
10914 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code
)))
10918 /* Walk over all the sub-trees of this operand. */
10919 len
= TREE_OPERAND_LENGTH (*tp
);
10921 /* Go through the subtrees. We need to do this in forward order so
10922 that the scope of a FOR_EXPR is handled properly. */
10925 for (i
= 0; i
< len
- 1; ++i
)
10926 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
10927 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
- 1));
10930 /* If this is a type, walk the needed fields in the type. */
10931 else if (TYPE_P (*tp
))
10932 return walk_type_fields (*tp
, func
, data
, pset
, lh
);
10936 /* We didn't find what we were looking for. */
10939 #undef WALK_SUBTREE_TAIL
10941 #undef WALK_SUBTREE
10943 /* Like walk_tree, but does not walk duplicate nodes more than once. */
10946 walk_tree_without_duplicates_1 (tree
*tp
, walk_tree_fn func
, void *data
,
10950 struct pointer_set_t
*pset
;
10952 pset
= pointer_set_create ();
10953 result
= walk_tree_1 (tp
, func
, data
, pset
, lh
);
10954 pointer_set_destroy (pset
);
10960 tree_block (tree t
)
10962 char const c
= TREE_CODE_CLASS (TREE_CODE (t
));
10964 if (IS_EXPR_CODE_CLASS (c
))
10965 return LOCATION_BLOCK (t
->exp
.locus
);
10966 gcc_unreachable ();
10971 tree_set_block (tree t
, tree b
)
10973 char const c
= TREE_CODE_CLASS (TREE_CODE (t
));
10975 if (IS_EXPR_CODE_CLASS (c
))
10978 t
->exp
.locus
= COMBINE_LOCATION_DATA (line_table
, t
->exp
.locus
, b
);
10980 t
->exp
.locus
= LOCATION_LOCUS (t
->exp
.locus
);
10983 gcc_unreachable ();
10986 /* Create a nameless artificial label and put it in the current
10987 function context. The label has a location of LOC. Returns the
10988 newly created label. */
10991 create_artificial_label (location_t loc
)
10993 tree lab
= build_decl (loc
,
10994 LABEL_DECL
, NULL_TREE
, void_type_node
);
10996 DECL_ARTIFICIAL (lab
) = 1;
10997 DECL_IGNORED_P (lab
) = 1;
10998 DECL_CONTEXT (lab
) = current_function_decl
;
11002 /* Given a tree, try to return a useful variable name that we can use
11003 to prefix a temporary that is being assigned the value of the tree.
11004 I.E. given <temp> = &A, return A. */
11009 tree stripped_decl
;
11012 STRIP_NOPS (stripped_decl
);
11013 if (DECL_P (stripped_decl
) && DECL_NAME (stripped_decl
))
11014 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl
));
11015 else if (TREE_CODE (stripped_decl
) == SSA_NAME
)
11017 tree name
= SSA_NAME_IDENTIFIER (stripped_decl
);
11020 return IDENTIFIER_POINTER (name
);
11024 switch (TREE_CODE (stripped_decl
))
11027 return get_name (TREE_OPERAND (stripped_decl
, 0));
11034 /* Return true if TYPE has a variable argument list. */
11037 stdarg_p (const_tree fntype
)
11039 function_args_iterator args_iter
;
11040 tree n
= NULL_TREE
, t
;
11045 FOREACH_FUNCTION_ARGS(fntype
, t
, args_iter
)
11050 return n
!= NULL_TREE
&& n
!= void_type_node
;
11053 /* Return true if TYPE has a prototype. */
11056 prototype_p (tree fntype
)
11060 gcc_assert (fntype
!= NULL_TREE
);
11062 t
= TYPE_ARG_TYPES (fntype
);
11063 return (t
!= NULL_TREE
);
11066 /* If BLOCK is inlined from an __attribute__((__artificial__))
11067 routine, return pointer to location from where it has been
11070 block_nonartificial_location (tree block
)
11072 location_t
*ret
= NULL
;
11074 while (block
&& TREE_CODE (block
) == BLOCK
11075 && BLOCK_ABSTRACT_ORIGIN (block
))
11077 tree ao
= BLOCK_ABSTRACT_ORIGIN (block
);
11079 while (TREE_CODE (ao
) == BLOCK
11080 && BLOCK_ABSTRACT_ORIGIN (ao
)
11081 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
11082 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
11084 if (TREE_CODE (ao
) == FUNCTION_DECL
)
11086 /* If AO is an artificial inline, point RET to the
11087 call site locus at which it has been inlined and continue
11088 the loop, in case AO's caller is also an artificial
11090 if (DECL_DECLARED_INLINE_P (ao
)
11091 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao
)))
11092 ret
= &BLOCK_SOURCE_LOCATION (block
);
11096 else if (TREE_CODE (ao
) != BLOCK
)
11099 block
= BLOCK_SUPERCONTEXT (block
);
11105 /* If EXP is inlined from an __attribute__((__artificial__))
11106 function, return the location of the original call expression. */
11109 tree_nonartificial_location (tree exp
)
11111 location_t
*loc
= block_nonartificial_location (TREE_BLOCK (exp
));
11116 return EXPR_LOCATION (exp
);
11120 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11123 /* Return the hash code code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11126 cl_option_hash_hash (const void *x
)
11128 const_tree
const t
= (const_tree
) x
;
11132 hashval_t hash
= 0;
11134 if (TREE_CODE (t
) == OPTIMIZATION_NODE
)
11136 p
= (const char *)TREE_OPTIMIZATION (t
);
11137 len
= sizeof (struct cl_optimization
);
11140 else if (TREE_CODE (t
) == TARGET_OPTION_NODE
)
11142 p
= (const char *)TREE_TARGET_OPTION (t
);
11143 len
= sizeof (struct cl_target_option
);
11147 gcc_unreachable ();
11149 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11151 for (i
= 0; i
< len
; i
++)
11153 hash
= (hash
<< 4) ^ ((i
<< 2) | p
[i
]);
11158 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11159 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11163 cl_option_hash_eq (const void *x
, const void *y
)
11165 const_tree
const xt
= (const_tree
) x
;
11166 const_tree
const yt
= (const_tree
) y
;
11171 if (TREE_CODE (xt
) != TREE_CODE (yt
))
11174 if (TREE_CODE (xt
) == OPTIMIZATION_NODE
)
11176 xp
= (const char *)TREE_OPTIMIZATION (xt
);
11177 yp
= (const char *)TREE_OPTIMIZATION (yt
);
11178 len
= sizeof (struct cl_optimization
);
11181 else if (TREE_CODE (xt
) == TARGET_OPTION_NODE
)
11183 xp
= (const char *)TREE_TARGET_OPTION (xt
);
11184 yp
= (const char *)TREE_TARGET_OPTION (yt
);
11185 len
= sizeof (struct cl_target_option
);
11189 gcc_unreachable ();
11191 return (memcmp (xp
, yp
, len
) == 0);
11194 /* Build an OPTIMIZATION_NODE based on the current options. */
11197 build_optimization_node (void)
11202 /* Use the cache of optimization nodes. */
11204 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node
),
11207 slot
= htab_find_slot (cl_option_hash_table
, cl_optimization_node
, INSERT
);
11211 /* Insert this one into the hash table. */
11212 t
= cl_optimization_node
;
11215 /* Make a new node for next time round. */
11216 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
11222 /* Build a TARGET_OPTION_NODE based on the current options. */
11225 build_target_option_node (void)
11230 /* Use the cache of optimization nodes. */
11232 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node
),
11235 slot
= htab_find_slot (cl_option_hash_table
, cl_target_option_node
, INSERT
);
11239 /* Insert this one into the hash table. */
11240 t
= cl_target_option_node
;
11243 /* Make a new node for next time round. */
11244 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
11250 /* Determine the "ultimate origin" of a block. The block may be an inlined
11251 instance of an inlined instance of a block which is local to an inline
11252 function, so we have to trace all of the way back through the origin chain
11253 to find out what sort of node actually served as the original seed for the
11257 block_ultimate_origin (const_tree block
)
11259 tree immediate_origin
= BLOCK_ABSTRACT_ORIGIN (block
);
11261 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
11262 nodes in the function to point to themselves; ignore that if
11263 we're trying to output the abstract instance of this function. */
11264 if (BLOCK_ABSTRACT (block
) && immediate_origin
== block
)
11267 if (immediate_origin
== NULL_TREE
)
11272 tree lookahead
= immediate_origin
;
11276 ret_val
= lookahead
;
11277 lookahead
= (TREE_CODE (ret_val
) == BLOCK
11278 ? BLOCK_ABSTRACT_ORIGIN (ret_val
) : NULL
);
11280 while (lookahead
!= NULL
&& lookahead
!= ret_val
);
11282 /* The block's abstract origin chain may not be the *ultimate* origin of
11283 the block. It could lead to a DECL that has an abstract origin set.
11284 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
11285 will give us if it has one). Note that DECL's abstract origins are
11286 supposed to be the most distant ancestor (or so decl_ultimate_origin
11287 claims), so we don't need to loop following the DECL origins. */
11288 if (DECL_P (ret_val
))
11289 return DECL_ORIGIN (ret_val
);
11295 /* Return true if T1 and T2 are equivalent lists. */
11298 list_equal_p (const_tree t1
, const_tree t2
)
11300 for (; t1
&& t2
; t1
= TREE_CHAIN (t1
) , t2
= TREE_CHAIN (t2
))
11301 if (TREE_VALUE (t1
) != TREE_VALUE (t2
))
11306 /* Return true iff conversion in EXP generates no instruction. Mark
11307 it inline so that we fully inline into the stripping functions even
11308 though we have two uses of this function. */
11311 tree_nop_conversion (const_tree exp
)
11313 tree outer_type
, inner_type
;
11315 if (!CONVERT_EXPR_P (exp
)
11316 && TREE_CODE (exp
) != NON_LVALUE_EXPR
)
11318 if (TREE_OPERAND (exp
, 0) == error_mark_node
)
11321 outer_type
= TREE_TYPE (exp
);
11322 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11327 /* Use precision rather then machine mode when we can, which gives
11328 the correct answer even for submode (bit-field) types. */
11329 if ((INTEGRAL_TYPE_P (outer_type
)
11330 || POINTER_TYPE_P (outer_type
)
11331 || TREE_CODE (outer_type
) == OFFSET_TYPE
)
11332 && (INTEGRAL_TYPE_P (inner_type
)
11333 || POINTER_TYPE_P (inner_type
)
11334 || TREE_CODE (inner_type
) == OFFSET_TYPE
))
11335 return TYPE_PRECISION (outer_type
) == TYPE_PRECISION (inner_type
);
11337 /* Otherwise fall back on comparing machine modes (e.g. for
11338 aggregate types, floats). */
11339 return TYPE_MODE (outer_type
) == TYPE_MODE (inner_type
);
11342 /* Return true iff conversion in EXP generates no instruction. Don't
11343 consider conversions changing the signedness. */
11346 tree_sign_nop_conversion (const_tree exp
)
11348 tree outer_type
, inner_type
;
11350 if (!tree_nop_conversion (exp
))
11353 outer_type
= TREE_TYPE (exp
);
11354 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11356 return (TYPE_UNSIGNED (outer_type
) == TYPE_UNSIGNED (inner_type
)
11357 && POINTER_TYPE_P (outer_type
) == POINTER_TYPE_P (inner_type
));
11360 /* Strip conversions from EXP according to tree_nop_conversion and
11361 return the resulting expression. */
11364 tree_strip_nop_conversions (tree exp
)
11366 while (tree_nop_conversion (exp
))
11367 exp
= TREE_OPERAND (exp
, 0);
11371 /* Strip conversions from EXP according to tree_sign_nop_conversion
11372 and return the resulting expression. */
11375 tree_strip_sign_nop_conversions (tree exp
)
11377 while (tree_sign_nop_conversion (exp
))
11378 exp
= TREE_OPERAND (exp
, 0);
11382 /* Avoid any floating point extensions from EXP. */
11384 strip_float_extensions (tree exp
)
11386 tree sub
, expt
, subt
;
11388 /* For floating point constant look up the narrowest type that can hold
11389 it properly and handle it like (type)(narrowest_type)constant.
11390 This way we can optimize for instance a=a*2.0 where "a" is float
11391 but 2.0 is double constant. */
11392 if (TREE_CODE (exp
) == REAL_CST
&& !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp
)))
11394 REAL_VALUE_TYPE orig
;
11397 orig
= TREE_REAL_CST (exp
);
11398 if (TYPE_PRECISION (TREE_TYPE (exp
)) > TYPE_PRECISION (float_type_node
)
11399 && exact_real_truncate (TYPE_MODE (float_type_node
), &orig
))
11400 type
= float_type_node
;
11401 else if (TYPE_PRECISION (TREE_TYPE (exp
))
11402 > TYPE_PRECISION (double_type_node
)
11403 && exact_real_truncate (TYPE_MODE (double_type_node
), &orig
))
11404 type
= double_type_node
;
11406 return build_real (type
, real_value_truncate (TYPE_MODE (type
), orig
));
11409 if (!CONVERT_EXPR_P (exp
))
11412 sub
= TREE_OPERAND (exp
, 0);
11413 subt
= TREE_TYPE (sub
);
11414 expt
= TREE_TYPE (exp
);
11416 if (!FLOAT_TYPE_P (subt
))
11419 if (DECIMAL_FLOAT_TYPE_P (expt
) != DECIMAL_FLOAT_TYPE_P (subt
))
11422 if (TYPE_PRECISION (subt
) > TYPE_PRECISION (expt
))
11425 return strip_float_extensions (sub
);
11428 /* Strip out all handled components that produce invariant
11432 strip_invariant_refs (const_tree op
)
11434 while (handled_component_p (op
))
11436 switch (TREE_CODE (op
))
11439 case ARRAY_RANGE_REF
:
11440 if (!is_gimple_constant (TREE_OPERAND (op
, 1))
11441 || TREE_OPERAND (op
, 2) != NULL_TREE
11442 || TREE_OPERAND (op
, 3) != NULL_TREE
)
11446 case COMPONENT_REF
:
11447 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
11453 op
= TREE_OPERAND (op
, 0);
11459 static GTY(()) tree gcc_eh_personality_decl
;
11461 /* Return the GCC personality function decl. */
11464 lhd_gcc_personality (void)
11466 if (!gcc_eh_personality_decl
)
11467 gcc_eh_personality_decl
= build_personality_function ("gcc");
11468 return gcc_eh_personality_decl
;
11471 /* Try to find a base info of BINFO that would have its field decl at offset
11472 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
11473 found, return, otherwise return NULL_TREE. */
11476 get_binfo_at_offset (tree binfo
, HOST_WIDE_INT offset
, tree expected_type
)
11478 tree type
= BINFO_TYPE (binfo
);
11482 HOST_WIDE_INT pos
, size
;
11486 if (TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (expected_type
))
11491 for (fld
= TYPE_FIELDS (type
); fld
; fld
= DECL_CHAIN (fld
))
11493 if (TREE_CODE (fld
) != FIELD_DECL
)
11496 pos
= int_bit_position (fld
);
11497 size
= tree_low_cst (DECL_SIZE (fld
), 1);
11498 if (pos
<= offset
&& (pos
+ size
) > offset
)
11501 if (!fld
|| TREE_CODE (TREE_TYPE (fld
)) != RECORD_TYPE
)
11504 if (!DECL_ARTIFICIAL (fld
))
11506 binfo
= TYPE_BINFO (TREE_TYPE (fld
));
11510 /* Offset 0 indicates the primary base, whose vtable contents are
11511 represented in the binfo for the derived class. */
11512 else if (offset
!= 0)
11514 tree base_binfo
, found_binfo
= NULL_TREE
;
11515 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
11516 if (TREE_TYPE (base_binfo
) == TREE_TYPE (fld
))
11518 found_binfo
= base_binfo
;
11523 binfo
= found_binfo
;
11526 type
= TREE_TYPE (fld
);
11531 /* Returns true if X is a typedef decl. */
11534 is_typedef_decl (tree x
)
11536 return (x
&& TREE_CODE (x
) == TYPE_DECL
11537 && DECL_ORIGINAL_TYPE (x
) != NULL_TREE
);
11540 /* Returns true iff TYPE is a type variant created for a typedef. */
11543 typedef_variant_p (tree type
)
11545 return is_typedef_decl (TYPE_NAME (type
));
11548 /* Warn about a use of an identifier which was marked deprecated. */
11550 warn_deprecated_use (tree node
, tree attr
)
11554 if (node
== 0 || !warn_deprecated_decl
)
11560 attr
= DECL_ATTRIBUTES (node
);
11561 else if (TYPE_P (node
))
11563 tree decl
= TYPE_STUB_DECL (node
);
11565 attr
= lookup_attribute ("deprecated",
11566 TYPE_ATTRIBUTES (TREE_TYPE (decl
)));
11571 attr
= lookup_attribute ("deprecated", attr
);
11574 msg
= TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr
)));
11580 expanded_location xloc
= expand_location (DECL_SOURCE_LOCATION (node
));
11582 warning (OPT_Wdeprecated_declarations
,
11583 "%qD is deprecated (declared at %s:%d): %s",
11584 node
, xloc
.file
, xloc
.line
, msg
);
11586 warning (OPT_Wdeprecated_declarations
,
11587 "%qD is deprecated (declared at %s:%d)",
11588 node
, xloc
.file
, xloc
.line
);
11590 else if (TYPE_P (node
))
11592 tree what
= NULL_TREE
;
11593 tree decl
= TYPE_STUB_DECL (node
);
11595 if (TYPE_NAME (node
))
11597 if (TREE_CODE (TYPE_NAME (node
)) == IDENTIFIER_NODE
)
11598 what
= TYPE_NAME (node
);
11599 else if (TREE_CODE (TYPE_NAME (node
)) == TYPE_DECL
11600 && DECL_NAME (TYPE_NAME (node
)))
11601 what
= DECL_NAME (TYPE_NAME (node
));
11606 expanded_location xloc
11607 = expand_location (DECL_SOURCE_LOCATION (decl
));
11611 warning (OPT_Wdeprecated_declarations
,
11612 "%qE is deprecated (declared at %s:%d): %s",
11613 what
, xloc
.file
, xloc
.line
, msg
);
11615 warning (OPT_Wdeprecated_declarations
,
11616 "%qE is deprecated (declared at %s:%d)", what
,
11617 xloc
.file
, xloc
.line
);
11622 warning (OPT_Wdeprecated_declarations
,
11623 "type is deprecated (declared at %s:%d): %s",
11624 xloc
.file
, xloc
.line
, msg
);
11626 warning (OPT_Wdeprecated_declarations
,
11627 "type is deprecated (declared at %s:%d)",
11628 xloc
.file
, xloc
.line
);
11636 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated: %s",
11639 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated", what
);
11644 warning (OPT_Wdeprecated_declarations
, "type is deprecated: %s",
11647 warning (OPT_Wdeprecated_declarations
, "type is deprecated");
11653 #include "gt-tree.h"