1 /* Language-independent node constructors for parse phase of GNU compiler.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4 2011, 2012 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* This file contains the low level primitives for operating on tree nodes,
23 including allocation, list operations, interning of identifiers,
24 construction of data type nodes and statement nodes,
25 and construction of type conversion nodes. It also contains
26 tables index by tree code that describe how to take apart
29 It is intended to be language-independent, but occasionally
30 calls language-dependent routines defined (for C) in typecheck.c. */
34 #include "coretypes.h"
41 #include "toplev.h" /* get_random_seed */
44 #include "filenames.h"
47 #include "common/common-target.h"
48 #include "langhooks.h"
49 #include "tree-inline.h"
50 #include "tree-iterator.h"
51 #include "basic-block.h"
52 #include "tree-flow.h"
54 #include "pointer-set.h"
55 #include "tree-pass.h"
56 #include "langhooks-def.h"
57 #include "diagnostic.h"
58 #include "tree-diagnostic.h"
59 #include "tree-pretty-print.h"
65 /* Tree code classes. */
67 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
68 #define END_OF_BASE_TREE_CODES tcc_exceptional,
70 const enum tree_code_class tree_code_type
[] = {
71 #include "all-tree.def"
75 #undef END_OF_BASE_TREE_CODES
77 /* Table indexed by tree code giving number of expression
78 operands beyond the fixed part of the node structure.
79 Not used for types or decls. */
81 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
82 #define END_OF_BASE_TREE_CODES 0,
84 const unsigned char tree_code_length
[] = {
85 #include "all-tree.def"
89 #undef END_OF_BASE_TREE_CODES
91 /* Names of tree components.
92 Used for printing out the tree and error messages. */
93 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
94 #define END_OF_BASE_TREE_CODES "@dummy",
96 const char *const tree_code_name
[] = {
97 #include "all-tree.def"
101 #undef END_OF_BASE_TREE_CODES
103 /* Each tree code class has an associated string representation.
104 These must correspond to the tree_code_class entries. */
106 const char *const tree_code_class_strings
[] =
121 /* obstack.[ch] explicitly declined to prototype this. */
122 extern int _obstack_allocated_p (struct obstack
*h
, void *obj
);
124 /* Statistics-gathering stuff. */
126 static int tree_code_counts
[MAX_TREE_CODES
];
127 int tree_node_counts
[(int) all_kinds
];
128 int tree_node_sizes
[(int) all_kinds
];
130 /* Keep in sync with tree.h:enum tree_node_kind. */
131 static const char * const tree_node_kind_names
[] = {
150 /* Unique id for next decl created. */
151 static GTY(()) int next_decl_uid
;
152 /* Unique id for next type created. */
153 static GTY(()) int next_type_uid
= 1;
154 /* Unique id for next debug decl created. Use negative numbers,
155 to catch erroneous uses. */
156 static GTY(()) int next_debug_decl_uid
;
158 /* Since we cannot rehash a type after it is in the table, we have to
159 keep the hash code. */
161 struct GTY(()) type_hash
{
166 /* Initial size of the hash table (rounded to next prime). */
167 #define TYPE_HASH_INITIAL_SIZE 1000
169 /* Now here is the hash table. When recording a type, it is added to
170 the slot whose index is the hash code. Note that the hash table is
171 used for several kinds of types (function types, array types and
172 array index range types, for now). While all these live in the
173 same table, they are completely independent, and the hash code is
174 computed differently for each of these. */
176 static GTY ((if_marked ("type_hash_marked_p"), param_is (struct type_hash
)))
177 htab_t type_hash_table
;
179 /* Hash table and temporary node for larger integer const values. */
180 static GTY (()) tree int_cst_node
;
181 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node
)))
182 htab_t int_cst_hash_table
;
184 /* Hash table for optimization flags and target option flags. Use the same
185 hash table for both sets of options. Nodes for building the current
186 optimization and target option nodes. The assumption is most of the time
187 the options created will already be in the hash table, so we avoid
188 allocating and freeing up a node repeatably. */
189 static GTY (()) tree cl_optimization_node
;
190 static GTY (()) tree cl_target_option_node
;
191 static GTY ((if_marked ("ggc_marked_p"), param_is (union tree_node
)))
192 htab_t cl_option_hash_table
;
194 /* General tree->tree mapping structure for use in hash tables. */
197 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map
)))
198 htab_t debug_expr_for_decl
;
200 static GTY ((if_marked ("tree_decl_map_marked_p"), param_is (struct tree_decl_map
)))
201 htab_t value_expr_for_decl
;
203 static GTY ((if_marked ("tree_vec_map_marked_p"), param_is (struct tree_vec_map
)))
204 htab_t debug_args_for_decl
;
206 static GTY ((if_marked ("tree_priority_map_marked_p"),
207 param_is (struct tree_priority_map
)))
208 htab_t init_priority_for_decl
;
210 static void set_type_quals (tree
, int);
211 static int type_hash_eq (const void *, const void *);
212 static hashval_t
type_hash_hash (const void *);
213 static hashval_t
int_cst_hash_hash (const void *);
214 static int int_cst_hash_eq (const void *, const void *);
215 static hashval_t
cl_option_hash_hash (const void *);
216 static int cl_option_hash_eq (const void *, const void *);
217 static void print_type_hash_statistics (void);
218 static void print_debug_expr_statistics (void);
219 static void print_value_expr_statistics (void);
220 static int type_hash_marked_p (const void *);
221 static unsigned int type_hash_list (const_tree
, hashval_t
);
222 static unsigned int attribute_hash_list (const_tree
, hashval_t
);
224 tree global_trees
[TI_MAX
];
225 tree integer_types
[itk_none
];
227 unsigned char tree_contains_struct
[MAX_TREE_CODES
][64];
229 /* Number of operands for each OpenMP clause. */
230 unsigned const char omp_clause_num_ops
[] =
232 0, /* OMP_CLAUSE_ERROR */
233 1, /* OMP_CLAUSE_PRIVATE */
234 1, /* OMP_CLAUSE_SHARED */
235 1, /* OMP_CLAUSE_FIRSTPRIVATE */
236 2, /* OMP_CLAUSE_LASTPRIVATE */
237 4, /* OMP_CLAUSE_REDUCTION */
238 1, /* OMP_CLAUSE_COPYIN */
239 1, /* OMP_CLAUSE_COPYPRIVATE */
240 1, /* OMP_CLAUSE_IF */
241 1, /* OMP_CLAUSE_NUM_THREADS */
242 1, /* OMP_CLAUSE_SCHEDULE */
243 0, /* OMP_CLAUSE_NOWAIT */
244 0, /* OMP_CLAUSE_ORDERED */
245 0, /* OMP_CLAUSE_DEFAULT */
246 3, /* OMP_CLAUSE_COLLAPSE */
247 0, /* OMP_CLAUSE_UNTIED */
248 1, /* OMP_CLAUSE_FINAL */
249 0 /* OMP_CLAUSE_MERGEABLE */
252 const char * const omp_clause_code_name
[] =
275 /* Return the tree node structure used by tree code CODE. */
277 static inline enum tree_node_structure_enum
278 tree_node_structure_for_code (enum tree_code code
)
280 switch (TREE_CODE_CLASS (code
))
282 case tcc_declaration
:
287 return TS_FIELD_DECL
;
293 return TS_LABEL_DECL
;
295 return TS_RESULT_DECL
;
296 case DEBUG_EXPR_DECL
:
299 return TS_CONST_DECL
;
303 return TS_FUNCTION_DECL
;
304 case TRANSLATION_UNIT_DECL
:
305 return TS_TRANSLATION_UNIT_DECL
;
307 return TS_DECL_NON_COMMON
;
311 return TS_TYPE_NON_COMMON
;
320 default: /* tcc_constant and tcc_exceptional */
325 /* tcc_constant cases. */
326 case INTEGER_CST
: return TS_INT_CST
;
327 case REAL_CST
: return TS_REAL_CST
;
328 case FIXED_CST
: return TS_FIXED_CST
;
329 case COMPLEX_CST
: return TS_COMPLEX
;
330 case VECTOR_CST
: return TS_VECTOR
;
331 case STRING_CST
: return TS_STRING
;
332 /* tcc_exceptional cases. */
333 case ERROR_MARK
: return TS_COMMON
;
334 case IDENTIFIER_NODE
: return TS_IDENTIFIER
;
335 case TREE_LIST
: return TS_LIST
;
336 case TREE_VEC
: return TS_VEC
;
337 case SSA_NAME
: return TS_SSA_NAME
;
338 case PLACEHOLDER_EXPR
: return TS_COMMON
;
339 case STATEMENT_LIST
: return TS_STATEMENT_LIST
;
340 case BLOCK
: return TS_BLOCK
;
341 case CONSTRUCTOR
: return TS_CONSTRUCTOR
;
342 case TREE_BINFO
: return TS_BINFO
;
343 case OMP_CLAUSE
: return TS_OMP_CLAUSE
;
344 case OPTIMIZATION_NODE
: return TS_OPTIMIZATION
;
345 case TARGET_OPTION_NODE
: return TS_TARGET_OPTION
;
353 /* Initialize tree_contains_struct to describe the hierarchy of tree
357 initialize_tree_contains_struct (void)
361 for (i
= ERROR_MARK
; i
< LAST_AND_UNUSED_TREE_CODE
; i
++)
364 enum tree_node_structure_enum ts_code
;
366 code
= (enum tree_code
) i
;
367 ts_code
= tree_node_structure_for_code (code
);
369 /* Mark the TS structure itself. */
370 tree_contains_struct
[code
][ts_code
] = 1;
372 /* Mark all the structures that TS is derived from. */
390 case TS_STATEMENT_LIST
:
391 MARK_TS_TYPED (code
);
395 case TS_DECL_MINIMAL
:
401 case TS_OPTIMIZATION
:
402 case TS_TARGET_OPTION
:
403 MARK_TS_COMMON (code
);
406 case TS_TYPE_WITH_LANG_SPECIFIC
:
407 MARK_TS_TYPE_COMMON (code
);
410 case TS_TYPE_NON_COMMON
:
411 MARK_TS_TYPE_WITH_LANG_SPECIFIC (code
);
415 MARK_TS_DECL_MINIMAL (code
);
420 MARK_TS_DECL_COMMON (code
);
423 case TS_DECL_NON_COMMON
:
424 MARK_TS_DECL_WITH_VIS (code
);
427 case TS_DECL_WITH_VIS
:
431 MARK_TS_DECL_WRTL (code
);
435 MARK_TS_DECL_COMMON (code
);
439 MARK_TS_DECL_WITH_VIS (code
);
443 case TS_FUNCTION_DECL
:
444 MARK_TS_DECL_NON_COMMON (code
);
447 case TS_TRANSLATION_UNIT_DECL
:
448 MARK_TS_DECL_COMMON (code
);
456 /* Basic consistency checks for attributes used in fold. */
457 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_NON_COMMON
]);
458 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_NON_COMMON
]);
459 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_COMMON
]);
460 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_COMMON
]);
461 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_COMMON
]);
462 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_COMMON
]);
463 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_COMMON
]);
464 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_COMMON
]);
465 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_COMMON
]);
466 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_COMMON
]);
467 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_COMMON
]);
468 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WRTL
]);
469 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_WRTL
]);
470 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_WRTL
]);
471 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WRTL
]);
472 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_WRTL
]);
473 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_DECL_MINIMAL
]);
474 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_MINIMAL
]);
475 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_DECL_MINIMAL
]);
476 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_DECL_MINIMAL
]);
477 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_MINIMAL
]);
478 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_MINIMAL
]);
479 gcc_assert (tree_contains_struct
[TRANSLATION_UNIT_DECL
][TS_DECL_MINIMAL
]);
480 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_DECL_MINIMAL
]);
481 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_DECL_MINIMAL
]);
482 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_DECL_WITH_VIS
]);
483 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_DECL_WITH_VIS
]);
484 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_DECL_WITH_VIS
]);
485 gcc_assert (tree_contains_struct
[VAR_DECL
][TS_VAR_DECL
]);
486 gcc_assert (tree_contains_struct
[FIELD_DECL
][TS_FIELD_DECL
]);
487 gcc_assert (tree_contains_struct
[PARM_DECL
][TS_PARM_DECL
]);
488 gcc_assert (tree_contains_struct
[LABEL_DECL
][TS_LABEL_DECL
]);
489 gcc_assert (tree_contains_struct
[RESULT_DECL
][TS_RESULT_DECL
]);
490 gcc_assert (tree_contains_struct
[CONST_DECL
][TS_CONST_DECL
]);
491 gcc_assert (tree_contains_struct
[TYPE_DECL
][TS_TYPE_DECL
]);
492 gcc_assert (tree_contains_struct
[FUNCTION_DECL
][TS_FUNCTION_DECL
]);
493 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_MINIMAL
]);
494 gcc_assert (tree_contains_struct
[IMPORTED_DECL
][TS_DECL_COMMON
]);
503 /* Initialize the hash table of types. */
504 type_hash_table
= htab_create_ggc (TYPE_HASH_INITIAL_SIZE
, type_hash_hash
,
507 debug_expr_for_decl
= htab_create_ggc (512, tree_decl_map_hash
,
508 tree_decl_map_eq
, 0);
510 value_expr_for_decl
= htab_create_ggc (512, tree_decl_map_hash
,
511 tree_decl_map_eq
, 0);
512 init_priority_for_decl
= htab_create_ggc (512, tree_priority_map_hash
,
513 tree_priority_map_eq
, 0);
515 int_cst_hash_table
= htab_create_ggc (1024, int_cst_hash_hash
,
516 int_cst_hash_eq
, NULL
);
518 int_cst_node
= make_node (INTEGER_CST
);
520 cl_option_hash_table
= htab_create_ggc (64, cl_option_hash_hash
,
521 cl_option_hash_eq
, NULL
);
523 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
524 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
526 /* Initialize the tree_contains_struct array. */
527 initialize_tree_contains_struct ();
528 lang_hooks
.init_ts ();
532 /* The name of the object as the assembler will see it (but before any
533 translations made by ASM_OUTPUT_LABELREF). Often this is the same
534 as DECL_NAME. It is an IDENTIFIER_NODE. */
536 decl_assembler_name (tree decl
)
538 if (!DECL_ASSEMBLER_NAME_SET_P (decl
))
539 lang_hooks
.set_decl_assembler_name (decl
);
540 return DECL_WITH_VIS_CHECK (decl
)->decl_with_vis
.assembler_name
;
543 /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */
546 decl_assembler_name_equal (tree decl
, const_tree asmname
)
548 tree decl_asmname
= DECL_ASSEMBLER_NAME (decl
);
549 const char *decl_str
;
550 const char *asmname_str
;
553 if (decl_asmname
== asmname
)
556 decl_str
= IDENTIFIER_POINTER (decl_asmname
);
557 asmname_str
= IDENTIFIER_POINTER (asmname
);
560 /* If the target assembler name was set by the user, things are trickier.
561 We have a leading '*' to begin with. After that, it's arguable what
562 is the correct thing to do with -fleading-underscore. Arguably, we've
563 historically been doing the wrong thing in assemble_alias by always
564 printing the leading underscore. Since we're not changing that, make
565 sure user_label_prefix follows the '*' before matching. */
566 if (decl_str
[0] == '*')
568 size_t ulp_len
= strlen (user_label_prefix
);
574 else if (strncmp (decl_str
, user_label_prefix
, ulp_len
) == 0)
575 decl_str
+= ulp_len
, test
=true;
579 if (asmname_str
[0] == '*')
581 size_t ulp_len
= strlen (user_label_prefix
);
587 else if (strncmp (asmname_str
, user_label_prefix
, ulp_len
) == 0)
588 asmname_str
+= ulp_len
, test
=true;
595 return strcmp (decl_str
, asmname_str
) == 0;
598 /* Hash asmnames ignoring the user specified marks. */
601 decl_assembler_name_hash (const_tree asmname
)
603 if (IDENTIFIER_POINTER (asmname
)[0] == '*')
605 const char *decl_str
= IDENTIFIER_POINTER (asmname
) + 1;
606 size_t ulp_len
= strlen (user_label_prefix
);
610 else if (strncmp (decl_str
, user_label_prefix
, ulp_len
) == 0)
613 return htab_hash_string (decl_str
);
616 return htab_hash_string (IDENTIFIER_POINTER (asmname
));
619 /* Compute the number of bytes occupied by a tree with code CODE.
620 This function cannot be used for nodes that have variable sizes,
621 including TREE_VEC, STRING_CST, and CALL_EXPR. */
623 tree_code_size (enum tree_code code
)
625 switch (TREE_CODE_CLASS (code
))
627 case tcc_declaration
: /* A decl node */
632 return sizeof (struct tree_field_decl
);
634 return sizeof (struct tree_parm_decl
);
636 return sizeof (struct tree_var_decl
);
638 return sizeof (struct tree_label_decl
);
640 return sizeof (struct tree_result_decl
);
642 return sizeof (struct tree_const_decl
);
644 return sizeof (struct tree_type_decl
);
646 return sizeof (struct tree_function_decl
);
647 case DEBUG_EXPR_DECL
:
648 return sizeof (struct tree_decl_with_rtl
);
650 return sizeof (struct tree_decl_non_common
);
654 case tcc_type
: /* a type node */
655 return sizeof (struct tree_type_non_common
);
657 case tcc_reference
: /* a reference */
658 case tcc_expression
: /* an expression */
659 case tcc_statement
: /* an expression with side effects */
660 case tcc_comparison
: /* a comparison expression */
661 case tcc_unary
: /* a unary arithmetic expression */
662 case tcc_binary
: /* a binary arithmetic expression */
663 return (sizeof (struct tree_exp
)
664 + (TREE_CODE_LENGTH (code
) - 1) * sizeof (tree
));
666 case tcc_constant
: /* a constant */
669 case INTEGER_CST
: return sizeof (struct tree_int_cst
);
670 case REAL_CST
: return sizeof (struct tree_real_cst
);
671 case FIXED_CST
: return sizeof (struct tree_fixed_cst
);
672 case COMPLEX_CST
: return sizeof (struct tree_complex
);
673 case VECTOR_CST
: return sizeof (struct tree_vector
);
674 case STRING_CST
: gcc_unreachable ();
676 return lang_hooks
.tree_size (code
);
679 case tcc_exceptional
: /* something random, like an identifier. */
682 case IDENTIFIER_NODE
: return lang_hooks
.identifier_size
;
683 case TREE_LIST
: return sizeof (struct tree_list
);
686 case PLACEHOLDER_EXPR
: return sizeof (struct tree_common
);
689 case OMP_CLAUSE
: gcc_unreachable ();
691 case SSA_NAME
: return sizeof (struct tree_ssa_name
);
693 case STATEMENT_LIST
: return sizeof (struct tree_statement_list
);
694 case BLOCK
: return sizeof (struct tree_block
);
695 case CONSTRUCTOR
: return sizeof (struct tree_constructor
);
696 case OPTIMIZATION_NODE
: return sizeof (struct tree_optimization_option
);
697 case TARGET_OPTION_NODE
: return sizeof (struct tree_target_option
);
700 return lang_hooks
.tree_size (code
);
708 /* Compute the number of bytes occupied by NODE. This routine only
709 looks at TREE_CODE, except for those nodes that have variable sizes. */
711 tree_size (const_tree node
)
713 const enum tree_code code
= TREE_CODE (node
);
717 return (offsetof (struct tree_binfo
, base_binfos
)
718 + VEC_embedded_size (tree
, BINFO_N_BASE_BINFOS (node
)));
721 return (sizeof (struct tree_vec
)
722 + (TREE_VEC_LENGTH (node
) - 1) * sizeof (tree
));
725 return (sizeof (struct tree_vector
)
726 + (TYPE_VECTOR_SUBPARTS (TREE_TYPE (node
)) - 1) * sizeof (tree
));
729 return TREE_STRING_LENGTH (node
) + offsetof (struct tree_string
, str
) + 1;
732 return (sizeof (struct tree_omp_clause
)
733 + (omp_clause_num_ops
[OMP_CLAUSE_CODE (node
)] - 1)
737 if (TREE_CODE_CLASS (code
) == tcc_vl_exp
)
738 return (sizeof (struct tree_exp
)
739 + (VL_EXP_OPERAND_LENGTH (node
) - 1) * sizeof (tree
));
741 return tree_code_size (code
);
745 /* Record interesting allocation statistics for a tree node with CODE
749 record_node_allocation_statistics (enum tree_code code ATTRIBUTE_UNUSED
,
750 size_t length ATTRIBUTE_UNUSED
)
752 enum tree_code_class type
= TREE_CODE_CLASS (code
);
755 if (!GATHER_STATISTICS
)
760 case tcc_declaration
: /* A decl node */
764 case tcc_type
: /* a type node */
768 case tcc_statement
: /* an expression with side effects */
772 case tcc_reference
: /* a reference */
776 case tcc_expression
: /* an expression */
777 case tcc_comparison
: /* a comparison expression */
778 case tcc_unary
: /* a unary arithmetic expression */
779 case tcc_binary
: /* a binary arithmetic expression */
783 case tcc_constant
: /* a constant */
787 case tcc_exceptional
: /* something random, like an identifier. */
790 case IDENTIFIER_NODE
:
803 kind
= ssa_name_kind
;
815 kind
= omp_clause_kind
;
832 tree_code_counts
[(int) code
]++;
833 tree_node_counts
[(int) kind
]++;
834 tree_node_sizes
[(int) kind
] += length
;
837 /* Allocate and return a new UID from the DECL_UID namespace. */
840 allocate_decl_uid (void)
842 return next_decl_uid
++;
845 /* Return a newly allocated node of code CODE. For decl and type
846 nodes, some other fields are initialized. The rest of the node is
847 initialized to zero. This function cannot be used for TREE_VEC or
848 OMP_CLAUSE nodes, which is enforced by asserts in tree_code_size.
850 Achoo! I got a code in the node. */
853 make_node_stat (enum tree_code code MEM_STAT_DECL
)
856 enum tree_code_class type
= TREE_CODE_CLASS (code
);
857 size_t length
= tree_code_size (code
);
859 record_node_allocation_statistics (code
, length
);
861 t
= ggc_alloc_zone_cleared_tree_node_stat (
862 (code
== IDENTIFIER_NODE
) ? &tree_id_zone
: &tree_zone
,
863 length PASS_MEM_STAT
);
864 TREE_SET_CODE (t
, code
);
869 TREE_SIDE_EFFECTS (t
) = 1;
872 case tcc_declaration
:
873 if (CODE_CONTAINS_STRUCT (code
, TS_DECL_COMMON
))
875 if (code
== FUNCTION_DECL
)
877 DECL_ALIGN (t
) = FUNCTION_BOUNDARY
;
878 DECL_MODE (t
) = FUNCTION_MODE
;
883 DECL_SOURCE_LOCATION (t
) = input_location
;
884 if (TREE_CODE (t
) == DEBUG_EXPR_DECL
)
885 DECL_UID (t
) = --next_debug_decl_uid
;
888 DECL_UID (t
) = allocate_decl_uid ();
889 SET_DECL_PT_UID (t
, -1);
891 if (TREE_CODE (t
) == LABEL_DECL
)
892 LABEL_DECL_UID (t
) = -1;
897 TYPE_UID (t
) = next_type_uid
++;
898 TYPE_ALIGN (t
) = BITS_PER_UNIT
;
899 TYPE_USER_ALIGN (t
) = 0;
900 TYPE_MAIN_VARIANT (t
) = t
;
901 TYPE_CANONICAL (t
) = t
;
903 /* Default to no attributes for type, but let target change that. */
904 TYPE_ATTRIBUTES (t
) = NULL_TREE
;
905 targetm
.set_default_type_attributes (t
);
907 /* We have not yet computed the alias set for this type. */
908 TYPE_ALIAS_SET (t
) = -1;
912 TREE_CONSTANT (t
) = 1;
921 case PREDECREMENT_EXPR
:
922 case PREINCREMENT_EXPR
:
923 case POSTDECREMENT_EXPR
:
924 case POSTINCREMENT_EXPR
:
925 /* All of these have side-effects, no matter what their
927 TREE_SIDE_EFFECTS (t
) = 1;
936 /* Other classes need no special treatment. */
943 /* Return a new node with the same contents as NODE except that its
944 TREE_CHAIN, if it has one, is zero and it has a fresh uid. */
947 copy_node_stat (tree node MEM_STAT_DECL
)
950 enum tree_code code
= TREE_CODE (node
);
953 gcc_assert (code
!= STATEMENT_LIST
);
955 length
= tree_size (node
);
956 record_node_allocation_statistics (code
, length
);
957 t
= ggc_alloc_zone_tree_node_stat (&tree_zone
, length PASS_MEM_STAT
);
958 memcpy (t
, node
, length
);
960 if (CODE_CONTAINS_STRUCT (code
, TS_COMMON
))
962 TREE_ASM_WRITTEN (t
) = 0;
963 TREE_VISITED (t
) = 0;
965 if (TREE_CODE_CLASS (code
) == tcc_declaration
)
967 if (code
== DEBUG_EXPR_DECL
)
968 DECL_UID (t
) = --next_debug_decl_uid
;
971 DECL_UID (t
) = allocate_decl_uid ();
972 if (DECL_PT_UID_SET_P (node
))
973 SET_DECL_PT_UID (t
, DECL_PT_UID (node
));
975 if ((TREE_CODE (node
) == PARM_DECL
|| TREE_CODE (node
) == VAR_DECL
)
976 && DECL_HAS_VALUE_EXPR_P (node
))
978 SET_DECL_VALUE_EXPR (t
, DECL_VALUE_EXPR (node
));
979 DECL_HAS_VALUE_EXPR_P (t
) = 1;
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 /* Size types *are* sign extended. */
1077 bool sign_extended_type
= !TYPE_UNSIGNED (type
);
1080 = cst
.ext (TYPE_PRECISION (type
), !sign_extended_type
);
1085 /* We force the double_int CST to the range of the type TYPE by sign or
1086 zero extending it. OVERFLOWABLE indicates if we are interested in
1087 overflow of the value, when >0 we are only interested in signed
1088 overflow, for <0 we are interested in any overflow. OVERFLOWED
1089 indicates whether overflow has already occurred. CONST_OVERFLOWED
1090 indicates whether constant overflow has already occurred. We force
1091 T's value to be within range of T's type (by setting to 0 or 1 all
1092 the bits outside the type's range). We set TREE_OVERFLOWED if,
1093 OVERFLOWED is nonzero,
1094 or OVERFLOWABLE is >0 and signed overflow occurs
1095 or OVERFLOWABLE is <0 and any overflow occurs
1096 We return a new tree node for the extended double_int. The node
1097 is shared if no overflow flags are set. */
1101 force_fit_type_double (tree type
, double_int cst
, int overflowable
,
1104 bool sign_extended_type
;
1106 /* Size types *are* sign extended. */
1107 sign_extended_type
= !TYPE_UNSIGNED (type
);
1109 /* If we need to set overflow flags, return a new unshared node. */
1110 if (overflowed
|| !double_int_fits_to_tree_p(type
, cst
))
1114 || (overflowable
> 0 && sign_extended_type
))
1116 tree t
= make_node (INTEGER_CST
);
1117 TREE_INT_CST (t
) = cst
.ext (TYPE_PRECISION (type
),
1118 !sign_extended_type
);
1119 TREE_TYPE (t
) = type
;
1120 TREE_OVERFLOW (t
) = 1;
1125 /* Else build a shared node. */
1126 return double_int_to_tree (type
, cst
);
1129 /* These are the hash table functions for the hash table of INTEGER_CST
1130 nodes of a sizetype. */
1132 /* Return the hash code code X, an INTEGER_CST. */
1135 int_cst_hash_hash (const void *x
)
1137 const_tree
const t
= (const_tree
) x
;
1139 return (TREE_INT_CST_HIGH (t
) ^ TREE_INT_CST_LOW (t
)
1140 ^ htab_hash_pointer (TREE_TYPE (t
)));
1143 /* Return nonzero if the value represented by *X (an INTEGER_CST tree node)
1144 is the same as that given by *Y, which is the same. */
1147 int_cst_hash_eq (const void *x
, const void *y
)
1149 const_tree
const xt
= (const_tree
) x
;
1150 const_tree
const yt
= (const_tree
) y
;
1152 return (TREE_TYPE (xt
) == TREE_TYPE (yt
)
1153 && TREE_INT_CST_HIGH (xt
) == TREE_INT_CST_HIGH (yt
)
1154 && TREE_INT_CST_LOW (xt
) == TREE_INT_CST_LOW (yt
));
1157 /* Create an INT_CST node of TYPE and value HI:LOW.
1158 The returned node is always shared. For small integers we use a
1159 per-type vector cache, for larger ones we use a single hash table. */
1162 build_int_cst_wide (tree type
, unsigned HOST_WIDE_INT low
, HOST_WIDE_INT hi
)
1170 switch (TREE_CODE (type
))
1173 gcc_assert (hi
== 0 && low
== 0);
1177 case REFERENCE_TYPE
:
1178 /* Cache NULL pointer. */
1187 /* Cache false or true. */
1195 if (TYPE_UNSIGNED (type
))
1198 limit
= INTEGER_SHARE_LIMIT
;
1199 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1205 limit
= INTEGER_SHARE_LIMIT
+ 1;
1206 if (!hi
&& low
< (unsigned HOST_WIDE_INT
)INTEGER_SHARE_LIMIT
)
1208 else if (hi
== -1 && low
== -(unsigned HOST_WIDE_INT
)1)
1222 /* Look for it in the type's vector of small shared ints. */
1223 if (!TYPE_CACHED_VALUES_P (type
))
1225 TYPE_CACHED_VALUES_P (type
) = 1;
1226 TYPE_CACHED_VALUES (type
) = make_tree_vec (limit
);
1229 t
= TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
);
1232 /* Make sure no one is clobbering the shared constant. */
1233 gcc_assert (TREE_TYPE (t
) == type
);
1234 gcc_assert (TREE_INT_CST_LOW (t
) == low
);
1235 gcc_assert (TREE_INT_CST_HIGH (t
) == hi
);
1239 /* Create a new shared int. */
1240 t
= make_node (INTEGER_CST
);
1242 TREE_INT_CST_LOW (t
) = low
;
1243 TREE_INT_CST_HIGH (t
) = hi
;
1244 TREE_TYPE (t
) = type
;
1246 TREE_VEC_ELT (TYPE_CACHED_VALUES (type
), ix
) = t
;
1251 /* Use the cache of larger shared ints. */
1254 TREE_INT_CST_LOW (int_cst_node
) = low
;
1255 TREE_INT_CST_HIGH (int_cst_node
) = hi
;
1256 TREE_TYPE (int_cst_node
) = type
;
1258 slot
= htab_find_slot (int_cst_hash_table
, int_cst_node
, INSERT
);
1262 /* Insert this one into the hash table. */
1265 /* Make a new node for next time round. */
1266 int_cst_node
= make_node (INTEGER_CST
);
1273 /* Builds an integer constant in TYPE such that lowest BITS bits are ones
1274 and the rest are zeros. */
1277 build_low_bits_mask (tree type
, unsigned bits
)
1281 gcc_assert (bits
<= TYPE_PRECISION (type
));
1283 if (bits
== TYPE_PRECISION (type
)
1284 && !TYPE_UNSIGNED (type
))
1285 /* Sign extended all-ones mask. */
1286 mask
= double_int_minus_one
;
1288 mask
= double_int::mask (bits
);
1290 return build_int_cst_wide (type
, mask
.low
, mask
.high
);
1293 /* Checks that X is integer constant that can be expressed in (unsigned)
1294 HOST_WIDE_INT without loss of precision. */
1297 cst_and_fits_in_hwi (const_tree x
)
1299 if (TREE_CODE (x
) != INTEGER_CST
)
1302 if (TYPE_PRECISION (TREE_TYPE (x
)) > HOST_BITS_PER_WIDE_INT
)
1305 return (TREE_INT_CST_HIGH (x
) == 0
1306 || TREE_INT_CST_HIGH (x
) == -1);
1309 /* Build a newly constructed TREE_VEC node of length LEN. */
1312 make_vector_stat (unsigned len MEM_STAT_DECL
)
1315 unsigned length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vector
);
1317 record_node_allocation_statistics (VECTOR_CST
, length
);
1319 t
= ggc_alloc_zone_cleared_tree_node_stat (&tree_zone
, length PASS_MEM_STAT
);
1321 TREE_SET_CODE (t
, VECTOR_CST
);
1322 TREE_CONSTANT (t
) = 1;
1327 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1328 are in a list pointed to by VALS. */
1331 build_vector_stat (tree type
, tree
*vals MEM_STAT_DECL
)
1335 tree v
= make_vector (TYPE_VECTOR_SUBPARTS (type
));
1336 TREE_TYPE (v
) = type
;
1338 /* Iterate through elements and check for overflow. */
1339 for (cnt
= 0; cnt
< TYPE_VECTOR_SUBPARTS (type
); ++cnt
)
1341 tree value
= vals
[cnt
];
1343 VECTOR_CST_ELT (v
, cnt
) = value
;
1345 /* Don't crash if we get an address constant. */
1346 if (!CONSTANT_CLASS_P (value
))
1349 over
|= TREE_OVERFLOW (value
);
1352 TREE_OVERFLOW (v
) = over
;
1356 /* Return a new VECTOR_CST node whose type is TYPE and whose values
1357 are extracted from V, a vector of CONSTRUCTOR_ELT. */
1360 build_vector_from_ctor (tree type
, VEC(constructor_elt
,gc
) *v
)
1362 tree
*vec
= XALLOCAVEC (tree
, TYPE_VECTOR_SUBPARTS (type
));
1363 unsigned HOST_WIDE_INT idx
;
1366 FOR_EACH_CONSTRUCTOR_VALUE (v
, idx
, value
)
1368 for (; idx
< TYPE_VECTOR_SUBPARTS (type
); ++idx
)
1369 vec
[idx
] = build_zero_cst (TREE_TYPE (type
));
1371 return build_vector (type
, vec
);
1374 /* Build a vector of type VECTYPE where all the elements are SCs. */
1376 build_vector_from_val (tree vectype
, tree sc
)
1378 int i
, nunits
= TYPE_VECTOR_SUBPARTS (vectype
);
1380 if (sc
== error_mark_node
)
1383 /* Verify that the vector type is suitable for SC. Note that there
1384 is some inconsistency in the type-system with respect to restrict
1385 qualifications of pointers. Vector types always have a main-variant
1386 element type and the qualification is applied to the vector-type.
1387 So TREE_TYPE (vector-type) does not return a properly qualified
1388 vector element-type. */
1389 gcc_checking_assert (types_compatible_p (TYPE_MAIN_VARIANT (TREE_TYPE (sc
)),
1390 TREE_TYPE (vectype
)));
1392 if (CONSTANT_CLASS_P (sc
))
1394 tree
*v
= XALLOCAVEC (tree
, nunits
);
1395 for (i
= 0; i
< nunits
; ++i
)
1397 return build_vector (vectype
, v
);
1401 VEC(constructor_elt
, gc
) *v
= VEC_alloc (constructor_elt
, gc
, nunits
);
1402 for (i
= 0; i
< nunits
; ++i
)
1403 CONSTRUCTOR_APPEND_ELT (v
, NULL_TREE
, sc
);
1404 return build_constructor (vectype
, v
);
1408 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1409 are in the VEC pointed to by VALS. */
1411 build_constructor (tree type
, VEC(constructor_elt
,gc
) *vals
)
1413 tree c
= make_node (CONSTRUCTOR
);
1415 constructor_elt
*elt
;
1416 bool constant_p
= true;
1417 bool side_effects_p
= false;
1419 TREE_TYPE (c
) = type
;
1420 CONSTRUCTOR_ELTS (c
) = vals
;
1422 FOR_EACH_VEC_ELT (constructor_elt
, vals
, i
, elt
)
1424 /* Mostly ctors will have elts that don't have side-effects, so
1425 the usual case is to scan all the elements. Hence a single
1426 loop for both const and side effects, rather than one loop
1427 each (with early outs). */
1428 if (!TREE_CONSTANT (elt
->value
))
1430 if (TREE_SIDE_EFFECTS (elt
->value
))
1431 side_effects_p
= true;
1434 TREE_SIDE_EFFECTS (c
) = side_effects_p
;
1435 TREE_CONSTANT (c
) = constant_p
;
1440 /* Build a CONSTRUCTOR node made of a single initializer, with the specified
1443 build_constructor_single (tree type
, tree index
, tree value
)
1445 VEC(constructor_elt
,gc
) *v
;
1446 constructor_elt elt
= {index
, value
};
1448 v
= VEC_alloc (constructor_elt
, gc
, 1);
1449 VEC_quick_push (constructor_elt
, v
, elt
);
1451 return build_constructor (type
, v
);
1455 /* Return a new CONSTRUCTOR node whose type is TYPE and whose values
1456 are in a list pointed to by VALS. */
1458 build_constructor_from_list (tree type
, tree vals
)
1461 VEC(constructor_elt
,gc
) *v
= NULL
;
1465 v
= VEC_alloc (constructor_elt
, gc
, list_length (vals
));
1466 for (t
= vals
; t
; t
= TREE_CHAIN (t
))
1467 CONSTRUCTOR_APPEND_ELT (v
, TREE_PURPOSE (t
), TREE_VALUE (t
));
1470 return build_constructor (type
, v
);
1473 /* Return a new FIXED_CST node whose type is TYPE and value is F. */
1476 build_fixed (tree type
, FIXED_VALUE_TYPE f
)
1479 FIXED_VALUE_TYPE
*fp
;
1481 v
= make_node (FIXED_CST
);
1482 fp
= ggc_alloc_fixed_value ();
1483 memcpy (fp
, &f
, sizeof (FIXED_VALUE_TYPE
));
1485 TREE_TYPE (v
) = type
;
1486 TREE_FIXED_CST_PTR (v
) = fp
;
1490 /* Return a new REAL_CST node whose type is TYPE and value is D. */
1493 build_real (tree type
, REAL_VALUE_TYPE d
)
1496 REAL_VALUE_TYPE
*dp
;
1499 /* ??? Used to check for overflow here via CHECK_FLOAT_TYPE.
1500 Consider doing it via real_convert now. */
1502 v
= make_node (REAL_CST
);
1503 dp
= ggc_alloc_real_value ();
1504 memcpy (dp
, &d
, sizeof (REAL_VALUE_TYPE
));
1506 TREE_TYPE (v
) = type
;
1507 TREE_REAL_CST_PTR (v
) = dp
;
1508 TREE_OVERFLOW (v
) = overflow
;
1512 /* Return a new REAL_CST node whose type is TYPE
1513 and whose value is the integer value of the INTEGER_CST node I. */
1516 real_value_from_int_cst (const_tree type
, const_tree i
)
1520 /* Clear all bits of the real value type so that we can later do
1521 bitwise comparisons to see if two values are the same. */
1522 memset (&d
, 0, sizeof d
);
1524 real_from_integer (&d
, type
? TYPE_MODE (type
) : VOIDmode
,
1525 TREE_INT_CST_LOW (i
), TREE_INT_CST_HIGH (i
),
1526 TYPE_UNSIGNED (TREE_TYPE (i
)));
1530 /* Given a tree representing an integer constant I, return a tree
1531 representing the same value as a floating-point constant of type TYPE. */
1534 build_real_from_int_cst (tree type
, const_tree i
)
1537 int overflow
= TREE_OVERFLOW (i
);
1539 v
= build_real (type
, real_value_from_int_cst (type
, i
));
1541 TREE_OVERFLOW (v
) |= overflow
;
1545 /* Return a newly constructed STRING_CST node whose value is
1546 the LEN characters at STR.
1547 Note that for a C string literal, LEN should include the trailing NUL.
1548 The TREE_TYPE is not initialized. */
1551 build_string (int len
, const char *str
)
1556 /* Do not waste bytes provided by padding of struct tree_string. */
1557 length
= len
+ offsetof (struct tree_string
, str
) + 1;
1559 record_node_allocation_statistics (STRING_CST
, length
);
1561 s
= ggc_alloc_tree_node (length
);
1563 memset (s
, 0, sizeof (struct tree_typed
));
1564 TREE_SET_CODE (s
, STRING_CST
);
1565 TREE_CONSTANT (s
) = 1;
1566 TREE_STRING_LENGTH (s
) = len
;
1567 memcpy (s
->string
.str
, str
, len
);
1568 s
->string
.str
[len
] = '\0';
1573 /* Return a newly constructed COMPLEX_CST node whose value is
1574 specified by the real and imaginary parts REAL and IMAG.
1575 Both REAL and IMAG should be constant nodes. TYPE, if specified,
1576 will be the type of the COMPLEX_CST; otherwise a new type will be made. */
1579 build_complex (tree type
, tree real
, tree imag
)
1581 tree t
= make_node (COMPLEX_CST
);
1583 TREE_REALPART (t
) = real
;
1584 TREE_IMAGPART (t
) = imag
;
1585 TREE_TYPE (t
) = type
? type
: build_complex_type (TREE_TYPE (real
));
1586 TREE_OVERFLOW (t
) = TREE_OVERFLOW (real
) | TREE_OVERFLOW (imag
);
1590 /* Return a constant of arithmetic type TYPE which is the
1591 multiplicative identity of the set TYPE. */
1594 build_one_cst (tree type
)
1596 switch (TREE_CODE (type
))
1598 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
1599 case POINTER_TYPE
: case REFERENCE_TYPE
:
1601 return build_int_cst (type
, 1);
1604 return build_real (type
, dconst1
);
1606 case FIXED_POINT_TYPE
:
1607 /* We can only generate 1 for accum types. */
1608 gcc_assert (ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)));
1609 return build_fixed (type
, FCONST1(TYPE_MODE (type
)));
1613 tree scalar
= build_one_cst (TREE_TYPE (type
));
1615 return build_vector_from_val (type
, scalar
);
1619 return build_complex (type
,
1620 build_one_cst (TREE_TYPE (type
)),
1621 build_zero_cst (TREE_TYPE (type
)));
1628 /* Build 0 constant of type TYPE. This is used by constructor folding
1629 and thus the constant should be represented in memory by
1633 build_zero_cst (tree type
)
1635 switch (TREE_CODE (type
))
1637 case INTEGER_TYPE
: case ENUMERAL_TYPE
: case BOOLEAN_TYPE
:
1638 case POINTER_TYPE
: case REFERENCE_TYPE
:
1639 case OFFSET_TYPE
: case NULLPTR_TYPE
:
1640 return build_int_cst (type
, 0);
1643 return build_real (type
, dconst0
);
1645 case FIXED_POINT_TYPE
:
1646 return build_fixed (type
, FCONST0 (TYPE_MODE (type
)));
1650 tree scalar
= build_zero_cst (TREE_TYPE (type
));
1652 return build_vector_from_val (type
, scalar
);
1657 tree zero
= build_zero_cst (TREE_TYPE (type
));
1659 return build_complex (type
, zero
, zero
);
1663 if (!AGGREGATE_TYPE_P (type
))
1664 return fold_convert (type
, integer_zero_node
);
1665 return build_constructor (type
, NULL
);
1670 /* Build a BINFO with LEN language slots. */
1673 make_tree_binfo_stat (unsigned base_binfos MEM_STAT_DECL
)
1676 size_t length
= (offsetof (struct tree_binfo
, base_binfos
)
1677 + VEC_embedded_size (tree
, base_binfos
));
1679 record_node_allocation_statistics (TREE_BINFO
, length
);
1681 t
= ggc_alloc_zone_tree_node_stat (&tree_zone
, length PASS_MEM_STAT
);
1683 memset (t
, 0, offsetof (struct tree_binfo
, base_binfos
));
1685 TREE_SET_CODE (t
, TREE_BINFO
);
1687 VEC_embedded_init (tree
, BINFO_BASE_BINFOS (t
), base_binfos
);
1692 /* Create a CASE_LABEL_EXPR tree node and return it. */
1695 build_case_label (tree low_value
, tree high_value
, tree label_decl
)
1697 tree t
= make_node (CASE_LABEL_EXPR
);
1699 TREE_TYPE (t
) = void_type_node
;
1700 SET_EXPR_LOCATION (t
, DECL_SOURCE_LOCATION (label_decl
));
1702 CASE_LOW (t
) = low_value
;
1703 CASE_HIGH (t
) = high_value
;
1704 CASE_LABEL (t
) = label_decl
;
1705 CASE_CHAIN (t
) = NULL_TREE
;
1710 /* Build a newly constructed TREE_VEC node of length LEN. */
1713 make_tree_vec_stat (int len MEM_STAT_DECL
)
1716 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_vec
);
1718 record_node_allocation_statistics (TREE_VEC
, length
);
1720 t
= ggc_alloc_zone_cleared_tree_node_stat (&tree_zone
, length PASS_MEM_STAT
);
1722 TREE_SET_CODE (t
, TREE_VEC
);
1723 TREE_VEC_LENGTH (t
) = len
;
1728 /* Return 1 if EXPR is the integer constant zero or a complex constant
1732 integer_zerop (const_tree expr
)
1736 switch (TREE_CODE (expr
))
1739 return (TREE_INT_CST_LOW (expr
) == 0
1740 && TREE_INT_CST_HIGH (expr
) == 0);
1742 return (integer_zerop (TREE_REALPART (expr
))
1743 && integer_zerop (TREE_IMAGPART (expr
)));
1747 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
1748 if (!integer_zerop (VECTOR_CST_ELT (expr
, i
)))
1757 /* Return 1 if EXPR is the integer constant one or the corresponding
1758 complex constant. */
1761 integer_onep (const_tree expr
)
1765 switch (TREE_CODE (expr
))
1768 return (TREE_INT_CST_LOW (expr
) == 1
1769 && TREE_INT_CST_HIGH (expr
) == 0);
1771 return (integer_onep (TREE_REALPART (expr
))
1772 && integer_zerop (TREE_IMAGPART (expr
)));
1776 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
1777 if (!integer_onep (VECTOR_CST_ELT (expr
, i
)))
1786 /* Return 1 if EXPR is an integer containing all 1's in as much precision as
1787 it contains. Likewise for the corresponding complex constant. */
1790 integer_all_onesp (const_tree expr
)
1797 if (TREE_CODE (expr
) == COMPLEX_CST
1798 && integer_all_onesp (TREE_REALPART (expr
))
1799 && integer_zerop (TREE_IMAGPART (expr
)))
1802 else if (TREE_CODE (expr
) == VECTOR_CST
)
1805 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
1806 if (!integer_all_onesp (VECTOR_CST_ELT (expr
, i
)))
1811 else if (TREE_CODE (expr
) != INTEGER_CST
)
1814 uns
= TYPE_UNSIGNED (TREE_TYPE (expr
));
1815 if (TREE_INT_CST_LOW (expr
) == ~(unsigned HOST_WIDE_INT
) 0
1816 && TREE_INT_CST_HIGH (expr
) == -1)
1821 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
1822 if (prec
>= HOST_BITS_PER_WIDE_INT
)
1824 HOST_WIDE_INT high_value
;
1827 shift_amount
= prec
- HOST_BITS_PER_WIDE_INT
;
1829 /* Can not handle precisions greater than twice the host int size. */
1830 gcc_assert (shift_amount
<= HOST_BITS_PER_WIDE_INT
);
1831 if (shift_amount
== HOST_BITS_PER_WIDE_INT
)
1832 /* Shifting by the host word size is undefined according to the ANSI
1833 standard, so we must handle this as a special case. */
1836 high_value
= ((HOST_WIDE_INT
) 1 << shift_amount
) - 1;
1838 return (TREE_INT_CST_LOW (expr
) == ~(unsigned HOST_WIDE_INT
) 0
1839 && TREE_INT_CST_HIGH (expr
) == high_value
);
1842 return TREE_INT_CST_LOW (expr
) == ((unsigned HOST_WIDE_INT
) 1 << prec
) - 1;
1845 /* Return 1 if EXPR is an integer constant that is a power of 2 (i.e., has only
1849 integer_pow2p (const_tree expr
)
1852 unsigned HOST_WIDE_INT high
, low
;
1856 if (TREE_CODE (expr
) == COMPLEX_CST
1857 && integer_pow2p (TREE_REALPART (expr
))
1858 && integer_zerop (TREE_IMAGPART (expr
)))
1861 if (TREE_CODE (expr
) != INTEGER_CST
)
1864 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
1865 high
= TREE_INT_CST_HIGH (expr
);
1866 low
= TREE_INT_CST_LOW (expr
);
1868 /* First clear all bits that are beyond the type's precision in case
1869 we've been sign extended. */
1871 if (prec
== HOST_BITS_PER_DOUBLE_INT
)
1873 else if (prec
> HOST_BITS_PER_WIDE_INT
)
1874 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
1878 if (prec
< HOST_BITS_PER_WIDE_INT
)
1879 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
1882 if (high
== 0 && low
== 0)
1885 return ((high
== 0 && (low
& (low
- 1)) == 0)
1886 || (low
== 0 && (high
& (high
- 1)) == 0));
1889 /* Return 1 if EXPR is an integer constant other than zero or a
1890 complex constant other than zero. */
1893 integer_nonzerop (const_tree expr
)
1897 return ((TREE_CODE (expr
) == INTEGER_CST
1898 && (TREE_INT_CST_LOW (expr
) != 0
1899 || TREE_INT_CST_HIGH (expr
) != 0))
1900 || (TREE_CODE (expr
) == COMPLEX_CST
1901 && (integer_nonzerop (TREE_REALPART (expr
))
1902 || integer_nonzerop (TREE_IMAGPART (expr
)))));
1905 /* Return 1 if EXPR is the fixed-point constant zero. */
1908 fixed_zerop (const_tree expr
)
1910 return (TREE_CODE (expr
) == FIXED_CST
1911 && TREE_FIXED_CST (expr
).data
.is_zero ());
1914 /* Return the power of two represented by a tree node known to be a
1918 tree_log2 (const_tree expr
)
1921 HOST_WIDE_INT high
, low
;
1925 if (TREE_CODE (expr
) == COMPLEX_CST
)
1926 return tree_log2 (TREE_REALPART (expr
));
1928 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
1929 high
= TREE_INT_CST_HIGH (expr
);
1930 low
= TREE_INT_CST_LOW (expr
);
1932 /* First clear all bits that are beyond the type's precision in case
1933 we've been sign extended. */
1935 if (prec
== HOST_BITS_PER_DOUBLE_INT
)
1937 else if (prec
> HOST_BITS_PER_WIDE_INT
)
1938 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
1942 if (prec
< HOST_BITS_PER_WIDE_INT
)
1943 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
1946 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ exact_log2 (high
)
1947 : exact_log2 (low
));
1950 /* Similar, but return the largest integer Y such that 2 ** Y is less
1951 than or equal to EXPR. */
1954 tree_floor_log2 (const_tree expr
)
1957 HOST_WIDE_INT high
, low
;
1961 if (TREE_CODE (expr
) == COMPLEX_CST
)
1962 return tree_log2 (TREE_REALPART (expr
));
1964 prec
= TYPE_PRECISION (TREE_TYPE (expr
));
1965 high
= TREE_INT_CST_HIGH (expr
);
1966 low
= TREE_INT_CST_LOW (expr
);
1968 /* First clear all bits that are beyond the type's precision in case
1969 we've been sign extended. Ignore if type's precision hasn't been set
1970 since what we are doing is setting it. */
1972 if (prec
== HOST_BITS_PER_DOUBLE_INT
|| prec
== 0)
1974 else if (prec
> HOST_BITS_PER_WIDE_INT
)
1975 high
&= ~((HOST_WIDE_INT
) (-1) << (prec
- HOST_BITS_PER_WIDE_INT
));
1979 if (prec
< HOST_BITS_PER_WIDE_INT
)
1980 low
&= ~((HOST_WIDE_INT
) (-1) << prec
);
1983 return (high
!= 0 ? HOST_BITS_PER_WIDE_INT
+ floor_log2 (high
)
1984 : floor_log2 (low
));
1987 /* Return 1 if EXPR is the real constant zero. Trailing zeroes matter for
1988 decimal float constants, so don't return 1 for them. */
1991 real_zerop (const_tree expr
)
1995 switch (TREE_CODE (expr
))
1998 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst0
)
1999 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2001 return real_zerop (TREE_REALPART (expr
))
2002 && real_zerop (TREE_IMAGPART (expr
));
2006 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2007 if (!real_zerop (VECTOR_CST_ELT (expr
, i
)))
2016 /* Return 1 if EXPR is the real constant one in real or complex form.
2017 Trailing zeroes matter for decimal float constants, so don't return
2021 real_onep (const_tree expr
)
2025 switch (TREE_CODE (expr
))
2028 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst1
)
2029 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2031 return real_onep (TREE_REALPART (expr
))
2032 && real_zerop (TREE_IMAGPART (expr
));
2036 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2037 if (!real_onep (VECTOR_CST_ELT (expr
, i
)))
2046 /* Return 1 if EXPR is the real constant two. Trailing zeroes matter
2047 for decimal float constants, so don't return 1 for them. */
2050 real_twop (const_tree expr
)
2054 switch (TREE_CODE (expr
))
2057 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconst2
)
2058 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2060 return real_twop (TREE_REALPART (expr
))
2061 && real_zerop (TREE_IMAGPART (expr
));
2065 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2066 if (!real_twop (VECTOR_CST_ELT (expr
, i
)))
2075 /* Return 1 if EXPR is the real constant minus one. Trailing zeroes
2076 matter for decimal float constants, so don't return 1 for them. */
2079 real_minus_onep (const_tree expr
)
2083 switch (TREE_CODE (expr
))
2086 return REAL_VALUES_EQUAL (TREE_REAL_CST (expr
), dconstm1
)
2087 && !(DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (expr
))));
2089 return real_minus_onep (TREE_REALPART (expr
))
2090 && real_zerop (TREE_IMAGPART (expr
));
2094 for (i
= 0; i
< VECTOR_CST_NELTS (expr
); ++i
)
2095 if (!real_minus_onep (VECTOR_CST_ELT (expr
, i
)))
2104 /* Nonzero if EXP is a constant or a cast of a constant. */
2107 really_constant_p (const_tree exp
)
2109 /* This is not quite the same as STRIP_NOPS. It does more. */
2110 while (CONVERT_EXPR_P (exp
)
2111 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
2112 exp
= TREE_OPERAND (exp
, 0);
2113 return TREE_CONSTANT (exp
);
2116 /* Return first list element whose TREE_VALUE is ELEM.
2117 Return 0 if ELEM is not in LIST. */
2120 value_member (tree elem
, tree list
)
2124 if (elem
== TREE_VALUE (list
))
2126 list
= TREE_CHAIN (list
);
2131 /* Return first list element whose TREE_PURPOSE is ELEM.
2132 Return 0 if ELEM is not in LIST. */
2135 purpose_member (const_tree elem
, tree list
)
2139 if (elem
== TREE_PURPOSE (list
))
2141 list
= TREE_CHAIN (list
);
2146 /* Return true if ELEM is in V. */
2149 vec_member (const_tree elem
, VEC(tree
,gc
) *v
)
2153 FOR_EACH_VEC_ELT (tree
, v
, ix
, t
)
2159 /* Returns element number IDX (zero-origin) of chain CHAIN, or
2163 chain_index (int idx
, tree chain
)
2165 for (; chain
&& idx
> 0; --idx
)
2166 chain
= TREE_CHAIN (chain
);
2170 /* Return nonzero if ELEM is part of the chain CHAIN. */
2173 chain_member (const_tree elem
, const_tree chain
)
2179 chain
= DECL_CHAIN (chain
);
2185 /* Return the length of a chain of nodes chained through TREE_CHAIN.
2186 We expect a null pointer to mark the end of the chain.
2187 This is the Lisp primitive `length'. */
2190 list_length (const_tree t
)
2193 #ifdef ENABLE_TREE_CHECKING
2201 #ifdef ENABLE_TREE_CHECKING
2204 gcc_assert (p
!= q
);
2212 /* Returns the number of FIELD_DECLs in TYPE. */
2215 fields_length (const_tree type
)
2217 tree t
= TYPE_FIELDS (type
);
2220 for (; t
; t
= DECL_CHAIN (t
))
2221 if (TREE_CODE (t
) == FIELD_DECL
)
2227 /* Returns the first FIELD_DECL in the TYPE_FIELDS of the RECORD_TYPE or
2228 UNION_TYPE TYPE, or NULL_TREE if none. */
2231 first_field (const_tree type
)
2233 tree t
= TYPE_FIELDS (type
);
2234 while (t
&& TREE_CODE (t
) != FIELD_DECL
)
2239 /* Concatenate two chains of nodes (chained through TREE_CHAIN)
2240 by modifying the last node in chain 1 to point to chain 2.
2241 This is the Lisp primitive `nconc'. */
2244 chainon (tree op1
, tree op2
)
2253 for (t1
= op1
; TREE_CHAIN (t1
); t1
= TREE_CHAIN (t1
))
2255 TREE_CHAIN (t1
) = op2
;
2257 #ifdef ENABLE_TREE_CHECKING
2260 for (t2
= op2
; t2
; t2
= TREE_CHAIN (t2
))
2261 gcc_assert (t2
!= t1
);
2268 /* Return the last node in a chain of nodes (chained through TREE_CHAIN). */
2271 tree_last (tree chain
)
2275 while ((next
= TREE_CHAIN (chain
)))
2280 /* Reverse the order of elements in the chain T,
2281 and return the new head of the chain (old last element). */
2286 tree prev
= 0, decl
, next
;
2287 for (decl
= t
; decl
; decl
= next
)
2289 /* We shouldn't be using this function to reverse BLOCK chains; we
2290 have blocks_nreverse for that. */
2291 gcc_checking_assert (TREE_CODE (decl
) != BLOCK
);
2292 next
= TREE_CHAIN (decl
);
2293 TREE_CHAIN (decl
) = prev
;
2299 /* Return a newly created TREE_LIST node whose
2300 purpose and value fields are PARM and VALUE. */
2303 build_tree_list_stat (tree parm
, tree value MEM_STAT_DECL
)
2305 tree t
= make_node_stat (TREE_LIST PASS_MEM_STAT
);
2306 TREE_PURPOSE (t
) = parm
;
2307 TREE_VALUE (t
) = value
;
2311 /* Build a chain of TREE_LIST nodes from a vector. */
2314 build_tree_list_vec_stat (const VEC(tree
,gc
) *vec MEM_STAT_DECL
)
2316 tree ret
= NULL_TREE
;
2320 FOR_EACH_VEC_ELT (tree
, vec
, i
, t
)
2322 *pp
= build_tree_list_stat (NULL
, t PASS_MEM_STAT
);
2323 pp
= &TREE_CHAIN (*pp
);
2328 /* Return a newly created TREE_LIST node whose
2329 purpose and value fields are PURPOSE and VALUE
2330 and whose TREE_CHAIN is CHAIN. */
2333 tree_cons_stat (tree purpose
, tree value
, tree chain MEM_STAT_DECL
)
2337 node
= ggc_alloc_zone_tree_node_stat (&tree_zone
, sizeof (struct tree_list
)
2339 memset (node
, 0, sizeof (struct tree_common
));
2341 record_node_allocation_statistics (TREE_LIST
, sizeof (struct tree_list
));
2343 TREE_SET_CODE (node
, TREE_LIST
);
2344 TREE_CHAIN (node
) = chain
;
2345 TREE_PURPOSE (node
) = purpose
;
2346 TREE_VALUE (node
) = value
;
2350 /* Return the values of the elements of a CONSTRUCTOR as a vector of
2354 ctor_to_vec (tree ctor
)
2356 VEC(tree
, gc
) *vec
= VEC_alloc (tree
, gc
, CONSTRUCTOR_NELTS (ctor
));
2360 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor
), ix
, val
)
2361 VEC_quick_push (tree
, vec
, val
);
2366 /* Return the size nominally occupied by an object of type TYPE
2367 when it resides in memory. The value is measured in units of bytes,
2368 and its data type is that normally used for type sizes
2369 (which is the first type created by make_signed_type or
2370 make_unsigned_type). */
2373 size_in_bytes (const_tree type
)
2377 if (type
== error_mark_node
)
2378 return integer_zero_node
;
2380 type
= TYPE_MAIN_VARIANT (type
);
2381 t
= TYPE_SIZE_UNIT (type
);
2385 lang_hooks
.types
.incomplete_type_error (NULL_TREE
, type
);
2386 return size_zero_node
;
2392 /* Return the size of TYPE (in bytes) as a wide integer
2393 or return -1 if the size can vary or is larger than an integer. */
2396 int_size_in_bytes (const_tree type
)
2400 if (type
== error_mark_node
)
2403 type
= TYPE_MAIN_VARIANT (type
);
2404 t
= TYPE_SIZE_UNIT (type
);
2406 || TREE_CODE (t
) != INTEGER_CST
2407 || TREE_INT_CST_HIGH (t
) != 0
2408 /* If the result would appear negative, it's too big to represent. */
2409 || (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0)
2412 return TREE_INT_CST_LOW (t
);
2415 /* Return the maximum size of TYPE (in bytes) as a wide integer
2416 or return -1 if the size can vary or is larger than an integer. */
2419 max_int_size_in_bytes (const_tree type
)
2421 HOST_WIDE_INT size
= -1;
2424 /* If this is an array type, check for a possible MAX_SIZE attached. */
2426 if (TREE_CODE (type
) == ARRAY_TYPE
)
2428 size_tree
= TYPE_ARRAY_MAX_SIZE (type
);
2430 if (size_tree
&& host_integerp (size_tree
, 1))
2431 size
= tree_low_cst (size_tree
, 1);
2434 /* If we still haven't been able to get a size, see if the language
2435 can compute a maximum size. */
2439 size_tree
= lang_hooks
.types
.max_size (type
);
2441 if (size_tree
&& host_integerp (size_tree
, 1))
2442 size
= tree_low_cst (size_tree
, 1);
2448 /* Returns a tree for the size of EXP in bytes. */
2451 tree_expr_size (const_tree exp
)
2454 && DECL_SIZE_UNIT (exp
) != 0)
2455 return DECL_SIZE_UNIT (exp
);
2457 return size_in_bytes (TREE_TYPE (exp
));
2460 /* Return the bit position of FIELD, in bits from the start of the record.
2461 This is a tree of type bitsizetype. */
2464 bit_position (const_tree field
)
2466 return bit_from_pos (DECL_FIELD_OFFSET (field
),
2467 DECL_FIELD_BIT_OFFSET (field
));
2470 /* Likewise, but return as an integer. It must be representable in
2471 that way (since it could be a signed value, we don't have the
2472 option of returning -1 like int_size_in_byte can. */
2475 int_bit_position (const_tree field
)
2477 return tree_low_cst (bit_position (field
), 0);
2480 /* Return the byte position of FIELD, in bytes from the start of the record.
2481 This is a tree of type sizetype. */
2484 byte_position (const_tree field
)
2486 return byte_from_pos (DECL_FIELD_OFFSET (field
),
2487 DECL_FIELD_BIT_OFFSET (field
));
2490 /* Likewise, but return as an integer. It must be representable in
2491 that way (since it could be a signed value, we don't have the
2492 option of returning -1 like int_size_in_byte can. */
2495 int_byte_position (const_tree field
)
2497 return tree_low_cst (byte_position (field
), 0);
2500 /* Return the strictest alignment, in bits, that T is known to have. */
2503 expr_align (const_tree t
)
2505 unsigned int align0
, align1
;
2507 switch (TREE_CODE (t
))
2509 CASE_CONVERT
: case NON_LVALUE_EXPR
:
2510 /* If we have conversions, we know that the alignment of the
2511 object must meet each of the alignments of the types. */
2512 align0
= expr_align (TREE_OPERAND (t
, 0));
2513 align1
= TYPE_ALIGN (TREE_TYPE (t
));
2514 return MAX (align0
, align1
);
2516 case SAVE_EXPR
: case COMPOUND_EXPR
: case MODIFY_EXPR
:
2517 case INIT_EXPR
: case TARGET_EXPR
: case WITH_CLEANUP_EXPR
:
2518 case CLEANUP_POINT_EXPR
:
2519 /* These don't change the alignment of an object. */
2520 return expr_align (TREE_OPERAND (t
, 0));
2523 /* The best we can do is say that the alignment is the least aligned
2525 align0
= expr_align (TREE_OPERAND (t
, 1));
2526 align1
= expr_align (TREE_OPERAND (t
, 2));
2527 return MIN (align0
, align1
);
2529 /* FIXME: LABEL_DECL and CONST_DECL never have DECL_ALIGN set
2530 meaningfully, it's always 1. */
2531 case LABEL_DECL
: case CONST_DECL
:
2532 case VAR_DECL
: case PARM_DECL
: case RESULT_DECL
:
2534 gcc_assert (DECL_ALIGN (t
) != 0);
2535 return DECL_ALIGN (t
);
2541 /* Otherwise take the alignment from that of the type. */
2542 return TYPE_ALIGN (TREE_TYPE (t
));
2545 /* Return, as a tree node, the number of elements for TYPE (which is an
2546 ARRAY_TYPE) minus one. This counts only elements of the top array. */
2549 array_type_nelts (const_tree type
)
2551 tree index_type
, min
, max
;
2553 /* If they did it with unspecified bounds, then we should have already
2554 given an error about it before we got here. */
2555 if (! TYPE_DOMAIN (type
))
2556 return error_mark_node
;
2558 index_type
= TYPE_DOMAIN (type
);
2559 min
= TYPE_MIN_VALUE (index_type
);
2560 max
= TYPE_MAX_VALUE (index_type
);
2562 /* TYPE_MAX_VALUE may not be set if the array has unknown length. */
2564 return error_mark_node
;
2566 return (integer_zerop (min
)
2568 : fold_build2 (MINUS_EXPR
, TREE_TYPE (max
), max
, min
));
2571 /* If arg is static -- a reference to an object in static storage -- then
2572 return the object. This is not the same as the C meaning of `static'.
2573 If arg isn't static, return NULL. */
2578 switch (TREE_CODE (arg
))
2581 /* Nested functions are static, even though taking their address will
2582 involve a trampoline as we unnest the nested function and create
2583 the trampoline on the tree level. */
2587 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
2588 && ! DECL_THREAD_LOCAL_P (arg
)
2589 && ! DECL_DLLIMPORT_P (arg
)
2593 return ((TREE_STATIC (arg
) || DECL_EXTERNAL (arg
))
2597 return TREE_STATIC (arg
) ? arg
: NULL
;
2604 /* If the thing being referenced is not a field, then it is
2605 something language specific. */
2606 gcc_assert (TREE_CODE (TREE_OPERAND (arg
, 1)) == FIELD_DECL
);
2608 /* If we are referencing a bitfield, we can't evaluate an
2609 ADDR_EXPR at compile time and so it isn't a constant. */
2610 if (DECL_BIT_FIELD (TREE_OPERAND (arg
, 1)))
2613 return staticp (TREE_OPERAND (arg
, 0));
2619 return TREE_CONSTANT (TREE_OPERAND (arg
, 0)) ? arg
: NULL
;
2622 case ARRAY_RANGE_REF
:
2623 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (arg
))) == INTEGER_CST
2624 && TREE_CODE (TREE_OPERAND (arg
, 1)) == INTEGER_CST
)
2625 return staticp (TREE_OPERAND (arg
, 0));
2629 case COMPOUND_LITERAL_EXPR
:
2630 return TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (arg
)) ? arg
: NULL
;
2640 /* Return whether OP is a DECL whose address is function-invariant. */
2643 decl_address_invariant_p (const_tree op
)
2645 /* The conditions below are slightly less strict than the one in
2648 switch (TREE_CODE (op
))
2657 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2658 || DECL_THREAD_LOCAL_P (op
)
2659 || DECL_CONTEXT (op
) == current_function_decl
2660 || decl_function_context (op
) == current_function_decl
)
2665 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2666 || decl_function_context (op
) == current_function_decl
)
2677 /* Return whether OP is a DECL whose address is interprocedural-invariant. */
2680 decl_address_ip_invariant_p (const_tree op
)
2682 /* The conditions below are slightly less strict than the one in
2685 switch (TREE_CODE (op
))
2693 if (((TREE_STATIC (op
) || DECL_EXTERNAL (op
))
2694 && !DECL_DLLIMPORT_P (op
))
2695 || DECL_THREAD_LOCAL_P (op
))
2700 if ((TREE_STATIC (op
) || DECL_EXTERNAL (op
)))
2712 /* Return true if T is function-invariant (internal function, does
2713 not handle arithmetic; that's handled in skip_simple_arithmetic and
2714 tree_invariant_p). */
2716 static bool tree_invariant_p (tree t
);
2719 tree_invariant_p_1 (tree t
)
2723 if (TREE_CONSTANT (t
)
2724 || (TREE_READONLY (t
) && !TREE_SIDE_EFFECTS (t
)))
2727 switch (TREE_CODE (t
))
2733 op
= TREE_OPERAND (t
, 0);
2734 while (handled_component_p (op
))
2736 switch (TREE_CODE (op
))
2739 case ARRAY_RANGE_REF
:
2740 if (!tree_invariant_p (TREE_OPERAND (op
, 1))
2741 || TREE_OPERAND (op
, 2) != NULL_TREE
2742 || TREE_OPERAND (op
, 3) != NULL_TREE
)
2747 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
2753 op
= TREE_OPERAND (op
, 0);
2756 return CONSTANT_CLASS_P (op
) || decl_address_invariant_p (op
);
2765 /* Return true if T is function-invariant. */
2768 tree_invariant_p (tree t
)
2770 tree inner
= skip_simple_arithmetic (t
);
2771 return tree_invariant_p_1 (inner
);
2774 /* Wrap a SAVE_EXPR around EXPR, if appropriate.
2775 Do this to any expression which may be used in more than one place,
2776 but must be evaluated only once.
2778 Normally, expand_expr would reevaluate the expression each time.
2779 Calling save_expr produces something that is evaluated and recorded
2780 the first time expand_expr is called on it. Subsequent calls to
2781 expand_expr just reuse the recorded value.
2783 The call to expand_expr that generates code that actually computes
2784 the value is the first call *at compile time*. Subsequent calls
2785 *at compile time* generate code to use the saved value.
2786 This produces correct result provided that *at run time* control
2787 always flows through the insns made by the first expand_expr
2788 before reaching the other places where the save_expr was evaluated.
2789 You, the caller of save_expr, must make sure this is so.
2791 Constants, and certain read-only nodes, are returned with no
2792 SAVE_EXPR because that is safe. Expressions containing placeholders
2793 are not touched; see tree.def for an explanation of what these
2797 save_expr (tree expr
)
2799 tree t
= fold (expr
);
2802 /* If the tree evaluates to a constant, then we don't want to hide that
2803 fact (i.e. this allows further folding, and direct checks for constants).
2804 However, a read-only object that has side effects cannot be bypassed.
2805 Since it is no problem to reevaluate literals, we just return the
2807 inner
= skip_simple_arithmetic (t
);
2808 if (TREE_CODE (inner
) == ERROR_MARK
)
2811 if (tree_invariant_p_1 (inner
))
2814 /* If INNER contains a PLACEHOLDER_EXPR, we must evaluate it each time, since
2815 it means that the size or offset of some field of an object depends on
2816 the value within another field.
2818 Note that it must not be the case that T contains both a PLACEHOLDER_EXPR
2819 and some variable since it would then need to be both evaluated once and
2820 evaluated more than once. Front-ends must assure this case cannot
2821 happen by surrounding any such subexpressions in their own SAVE_EXPR
2822 and forcing evaluation at the proper time. */
2823 if (contains_placeholder_p (inner
))
2826 t
= build1 (SAVE_EXPR
, TREE_TYPE (expr
), t
);
2827 SET_EXPR_LOCATION (t
, EXPR_LOCATION (expr
));
2829 /* This expression might be placed ahead of a jump to ensure that the
2830 value was computed on both sides of the jump. So make sure it isn't
2831 eliminated as dead. */
2832 TREE_SIDE_EFFECTS (t
) = 1;
2836 /* Look inside EXPR and into any simple arithmetic operations. Return
2837 the innermost non-arithmetic node. */
2840 skip_simple_arithmetic (tree expr
)
2844 /* We don't care about whether this can be used as an lvalue in this
2846 while (TREE_CODE (expr
) == NON_LVALUE_EXPR
)
2847 expr
= TREE_OPERAND (expr
, 0);
2849 /* If we have simple operations applied to a SAVE_EXPR or to a SAVE_EXPR and
2850 a constant, it will be more efficient to not make another SAVE_EXPR since
2851 it will allow better simplification and GCSE will be able to merge the
2852 computations if they actually occur. */
2856 if (UNARY_CLASS_P (inner
))
2857 inner
= TREE_OPERAND (inner
, 0);
2858 else if (BINARY_CLASS_P (inner
))
2860 if (tree_invariant_p (TREE_OPERAND (inner
, 1)))
2861 inner
= TREE_OPERAND (inner
, 0);
2862 else if (tree_invariant_p (TREE_OPERAND (inner
, 0)))
2863 inner
= TREE_OPERAND (inner
, 1);
2875 /* Return which tree structure is used by T. */
2877 enum tree_node_structure_enum
2878 tree_node_structure (const_tree t
)
2880 const enum tree_code code
= TREE_CODE (t
);
2881 return tree_node_structure_for_code (code
);
2884 /* Set various status flags when building a CALL_EXPR object T. */
2887 process_call_operands (tree t
)
2889 bool side_effects
= TREE_SIDE_EFFECTS (t
);
2890 bool read_only
= false;
2891 int i
= call_expr_flags (t
);
2893 /* Calls have side-effects, except those to const or pure functions. */
2894 if ((i
& ECF_LOOPING_CONST_OR_PURE
) || !(i
& (ECF_CONST
| ECF_PURE
)))
2895 side_effects
= true;
2896 /* Propagate TREE_READONLY of arguments for const functions. */
2900 if (!side_effects
|| read_only
)
2901 for (i
= 1; i
< TREE_OPERAND_LENGTH (t
); i
++)
2903 tree op
= TREE_OPERAND (t
, i
);
2904 if (op
&& TREE_SIDE_EFFECTS (op
))
2905 side_effects
= true;
2906 if (op
&& !TREE_READONLY (op
) && !CONSTANT_CLASS_P (op
))
2910 TREE_SIDE_EFFECTS (t
) = side_effects
;
2911 TREE_READONLY (t
) = read_only
;
2914 /* Return true if EXP contains a PLACEHOLDER_EXPR, i.e. if it represents a
2915 size or offset that depends on a field within a record. */
2918 contains_placeholder_p (const_tree exp
)
2920 enum tree_code code
;
2925 code
= TREE_CODE (exp
);
2926 if (code
== PLACEHOLDER_EXPR
)
2929 switch (TREE_CODE_CLASS (code
))
2932 /* Don't look at any PLACEHOLDER_EXPRs that might be in index or bit
2933 position computations since they will be converted into a
2934 WITH_RECORD_EXPR involving the reference, which will assume
2935 here will be valid. */
2936 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
2938 case tcc_exceptional
:
2939 if (code
== TREE_LIST
)
2940 return (CONTAINS_PLACEHOLDER_P (TREE_VALUE (exp
))
2941 || CONTAINS_PLACEHOLDER_P (TREE_CHAIN (exp
)));
2946 case tcc_comparison
:
2947 case tcc_expression
:
2951 /* Ignoring the first operand isn't quite right, but works best. */
2952 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1));
2955 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
2956 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1))
2957 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 2)));
2960 /* The save_expr function never wraps anything containing
2961 a PLACEHOLDER_EXPR. */
2968 switch (TREE_CODE_LENGTH (code
))
2971 return CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0));
2973 return (CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 0))
2974 || CONTAINS_PLACEHOLDER_P (TREE_OPERAND (exp
, 1)));
2985 const_call_expr_arg_iterator iter
;
2986 FOR_EACH_CONST_CALL_EXPR_ARG (arg
, iter
, exp
)
2987 if (CONTAINS_PLACEHOLDER_P (arg
))
3001 /* Return true if any part of the structure of TYPE involves a PLACEHOLDER_EXPR
3002 directly. This includes size, bounds, qualifiers (for QUAL_UNION_TYPE) and
3006 type_contains_placeholder_1 (const_tree type
)
3008 /* If the size contains a placeholder or the parent type (component type in
3009 the case of arrays) type involves a placeholder, this type does. */
3010 if (CONTAINS_PLACEHOLDER_P (TYPE_SIZE (type
))
3011 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE_UNIT (type
))
3012 || (!POINTER_TYPE_P (type
)
3014 && type_contains_placeholder_p (TREE_TYPE (type
))))
3017 /* Now do type-specific checks. Note that the last part of the check above
3018 greatly limits what we have to do below. */
3019 switch (TREE_CODE (type
))
3027 case REFERENCE_TYPE
:
3036 case FIXED_POINT_TYPE
:
3037 /* Here we just check the bounds. */
3038 return (CONTAINS_PLACEHOLDER_P (TYPE_MIN_VALUE (type
))
3039 || CONTAINS_PLACEHOLDER_P (TYPE_MAX_VALUE (type
)));
3042 /* We have already checked the component type above, so just check the
3044 return type_contains_placeholder_p (TYPE_DOMAIN (type
));
3048 case QUAL_UNION_TYPE
:
3052 for (field
= TYPE_FIELDS (type
); field
; field
= DECL_CHAIN (field
))
3053 if (TREE_CODE (field
) == FIELD_DECL
3054 && (CONTAINS_PLACEHOLDER_P (DECL_FIELD_OFFSET (field
))
3055 || (TREE_CODE (type
) == QUAL_UNION_TYPE
3056 && CONTAINS_PLACEHOLDER_P (DECL_QUALIFIER (field
)))
3057 || type_contains_placeholder_p (TREE_TYPE (field
))))
3068 /* Wrapper around above function used to cache its result. */
3071 type_contains_placeholder_p (tree type
)
3075 /* If the contains_placeholder_bits field has been initialized,
3076 then we know the answer. */
3077 if (TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) > 0)
3078 return TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) - 1;
3080 /* Indicate that we've seen this type node, and the answer is false.
3081 This is what we want to return if we run into recursion via fields. */
3082 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = 1;
3084 /* Compute the real value. */
3085 result
= type_contains_placeholder_1 (type
);
3087 /* Store the real value. */
3088 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (type
) = result
+ 1;
3093 /* Push tree EXP onto vector QUEUE if it is not already present. */
3096 push_without_duplicates (tree exp
, VEC (tree
, heap
) **queue
)
3101 FOR_EACH_VEC_ELT (tree
, *queue
, i
, iter
)
3102 if (simple_cst_equal (iter
, exp
) == 1)
3106 VEC_safe_push (tree
, heap
, *queue
, exp
);
3109 /* Given a tree EXP, find all occurrences of references to fields
3110 in a PLACEHOLDER_EXPR and place them in vector REFS without
3111 duplicates. Also record VAR_DECLs and CONST_DECLs. Note that
3112 we assume here that EXP contains only arithmetic expressions
3113 or CALL_EXPRs with PLACEHOLDER_EXPRs occurring only in their
3117 find_placeholder_in_expr (tree exp
, VEC (tree
, heap
) **refs
)
3119 enum tree_code code
= TREE_CODE (exp
);
3123 /* We handle TREE_LIST and COMPONENT_REF separately. */
3124 if (code
== TREE_LIST
)
3126 FIND_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), refs
);
3127 FIND_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), refs
);
3129 else if (code
== COMPONENT_REF
)
3131 for (inner
= TREE_OPERAND (exp
, 0);
3132 REFERENCE_CLASS_P (inner
);
3133 inner
= TREE_OPERAND (inner
, 0))
3136 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
)
3137 push_without_duplicates (exp
, refs
);
3139 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), refs
);
3142 switch (TREE_CODE_CLASS (code
))
3147 case tcc_declaration
:
3148 /* Variables allocated to static storage can stay. */
3149 if (!TREE_STATIC (exp
))
3150 push_without_duplicates (exp
, refs
);
3153 case tcc_expression
:
3154 /* This is the pattern built in ada/make_aligning_type. */
3155 if (code
== ADDR_EXPR
3156 && TREE_CODE (TREE_OPERAND (exp
, 0)) == PLACEHOLDER_EXPR
)
3158 push_without_duplicates (exp
, refs
);
3162 /* Fall through... */
3164 case tcc_exceptional
:
3167 case tcc_comparison
:
3169 for (i
= 0; i
< TREE_CODE_LENGTH (code
); i
++)
3170 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3174 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3175 FIND_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, i
), refs
);
3183 /* Given a tree EXP, a FIELD_DECL F, and a replacement value R,
3184 return a tree with all occurrences of references to F in a
3185 PLACEHOLDER_EXPR replaced by R. Also handle VAR_DECLs and
3186 CONST_DECLs. Note that we assume here that EXP contains only
3187 arithmetic expressions or CALL_EXPRs with PLACEHOLDER_EXPRs
3188 occurring only in their argument list. */
3191 substitute_in_expr (tree exp
, tree f
, tree r
)
3193 enum tree_code code
= TREE_CODE (exp
);
3194 tree op0
, op1
, op2
, op3
;
3197 /* We handle TREE_LIST and COMPONENT_REF separately. */
3198 if (code
== TREE_LIST
)
3200 op0
= SUBSTITUTE_IN_EXPR (TREE_CHAIN (exp
), f
, r
);
3201 op1
= SUBSTITUTE_IN_EXPR (TREE_VALUE (exp
), f
, r
);
3202 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3205 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3207 else if (code
== COMPONENT_REF
)
3211 /* If this expression is getting a value from a PLACEHOLDER_EXPR
3212 and it is the right field, replace it with R. */
3213 for (inner
= TREE_OPERAND (exp
, 0);
3214 REFERENCE_CLASS_P (inner
);
3215 inner
= TREE_OPERAND (inner
, 0))
3219 op1
= TREE_OPERAND (exp
, 1);
3221 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& op1
== f
)
3224 /* If this expression hasn't been completed let, leave it alone. */
3225 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
&& !TREE_TYPE (inner
))
3228 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3229 if (op0
== TREE_OPERAND (exp
, 0))
3233 = fold_build3 (COMPONENT_REF
, TREE_TYPE (exp
), op0
, op1
, NULL_TREE
);
3236 switch (TREE_CODE_CLASS (code
))
3241 case tcc_declaration
:
3247 case tcc_expression
:
3251 /* Fall through... */
3253 case tcc_exceptional
:
3256 case tcc_comparison
:
3258 switch (TREE_CODE_LENGTH (code
))
3264 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3265 if (op0
== TREE_OPERAND (exp
, 0))
3268 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3272 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3273 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3275 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3278 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3282 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3283 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3284 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3286 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3287 && op2
== TREE_OPERAND (exp
, 2))
3290 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3294 op0
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 0), f
, r
);
3295 op1
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 1), f
, r
);
3296 op2
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 2), f
, r
);
3297 op3
= SUBSTITUTE_IN_EXPR (TREE_OPERAND (exp
, 3), f
, r
);
3299 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3300 && op2
== TREE_OPERAND (exp
, 2)
3301 && op3
== TREE_OPERAND (exp
, 3))
3305 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3317 new_tree
= NULL_TREE
;
3319 /* If we are trying to replace F with a constant, inline back
3320 functions which do nothing else than computing a value from
3321 the arguments they are passed. This makes it possible to
3322 fold partially or entirely the replacement expression. */
3323 if (CONSTANT_CLASS_P (r
) && code
== CALL_EXPR
)
3325 tree t
= maybe_inline_call_in_expr (exp
);
3327 return SUBSTITUTE_IN_EXPR (t
, f
, r
);
3330 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3332 tree op
= TREE_OPERAND (exp
, i
);
3333 tree new_op
= SUBSTITUTE_IN_EXPR (op
, f
, r
);
3337 new_tree
= copy_node (exp
);
3338 TREE_OPERAND (new_tree
, i
) = new_op
;
3344 new_tree
= fold (new_tree
);
3345 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3346 process_call_operands (new_tree
);
3357 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3359 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3360 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3365 /* Similar, but look for a PLACEHOLDER_EXPR in EXP and find a replacement
3366 for it within OBJ, a tree that is an object or a chain of references. */
3369 substitute_placeholder_in_expr (tree exp
, tree obj
)
3371 enum tree_code code
= TREE_CODE (exp
);
3372 tree op0
, op1
, op2
, op3
;
3375 /* If this is a PLACEHOLDER_EXPR, see if we find a corresponding type
3376 in the chain of OBJ. */
3377 if (code
== PLACEHOLDER_EXPR
)
3379 tree need_type
= TYPE_MAIN_VARIANT (TREE_TYPE (exp
));
3382 for (elt
= obj
; elt
!= 0;
3383 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3384 || TREE_CODE (elt
) == COND_EXPR
)
3385 ? TREE_OPERAND (elt
, 1)
3386 : (REFERENCE_CLASS_P (elt
)
3387 || UNARY_CLASS_P (elt
)
3388 || BINARY_CLASS_P (elt
)
3389 || VL_EXP_CLASS_P (elt
)
3390 || EXPRESSION_CLASS_P (elt
))
3391 ? TREE_OPERAND (elt
, 0) : 0))
3392 if (TYPE_MAIN_VARIANT (TREE_TYPE (elt
)) == need_type
)
3395 for (elt
= obj
; elt
!= 0;
3396 elt
= ((TREE_CODE (elt
) == COMPOUND_EXPR
3397 || TREE_CODE (elt
) == COND_EXPR
)
3398 ? TREE_OPERAND (elt
, 1)
3399 : (REFERENCE_CLASS_P (elt
)
3400 || UNARY_CLASS_P (elt
)
3401 || BINARY_CLASS_P (elt
)
3402 || VL_EXP_CLASS_P (elt
)
3403 || EXPRESSION_CLASS_P (elt
))
3404 ? TREE_OPERAND (elt
, 0) : 0))
3405 if (POINTER_TYPE_P (TREE_TYPE (elt
))
3406 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (elt
)))
3408 return fold_build1 (INDIRECT_REF
, need_type
, elt
);
3410 /* If we didn't find it, return the original PLACEHOLDER_EXPR. If it
3411 survives until RTL generation, there will be an error. */
3415 /* TREE_LIST is special because we need to look at TREE_VALUE
3416 and TREE_CHAIN, not TREE_OPERANDS. */
3417 else if (code
== TREE_LIST
)
3419 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_CHAIN (exp
), obj
);
3420 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_VALUE (exp
), obj
);
3421 if (op0
== TREE_CHAIN (exp
) && op1
== TREE_VALUE (exp
))
3424 return tree_cons (TREE_PURPOSE (exp
), op1
, op0
);
3427 switch (TREE_CODE_CLASS (code
))
3430 case tcc_declaration
:
3433 case tcc_exceptional
:
3436 case tcc_comparison
:
3437 case tcc_expression
:
3440 switch (TREE_CODE_LENGTH (code
))
3446 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3447 if (op0
== TREE_OPERAND (exp
, 0))
3450 new_tree
= fold_build1 (code
, TREE_TYPE (exp
), op0
);
3454 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3455 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3457 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1))
3460 new_tree
= fold_build2 (code
, TREE_TYPE (exp
), op0
, op1
);
3464 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3465 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3466 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3468 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3469 && op2
== TREE_OPERAND (exp
, 2))
3472 new_tree
= fold_build3 (code
, TREE_TYPE (exp
), op0
, op1
, op2
);
3476 op0
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 0), obj
);
3477 op1
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 1), obj
);
3478 op2
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 2), obj
);
3479 op3
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (TREE_OPERAND (exp
, 3), obj
);
3481 if (op0
== TREE_OPERAND (exp
, 0) && op1
== TREE_OPERAND (exp
, 1)
3482 && op2
== TREE_OPERAND (exp
, 2)
3483 && op3
== TREE_OPERAND (exp
, 3))
3487 = fold (build4 (code
, TREE_TYPE (exp
), op0
, op1
, op2
, op3
));
3499 new_tree
= NULL_TREE
;
3501 for (i
= 1; i
< TREE_OPERAND_LENGTH (exp
); i
++)
3503 tree op
= TREE_OPERAND (exp
, i
);
3504 tree new_op
= SUBSTITUTE_PLACEHOLDER_IN_EXPR (op
, obj
);
3508 new_tree
= copy_node (exp
);
3509 TREE_OPERAND (new_tree
, i
) = new_op
;
3515 new_tree
= fold (new_tree
);
3516 if (TREE_CODE (new_tree
) == CALL_EXPR
)
3517 process_call_operands (new_tree
);
3528 TREE_READONLY (new_tree
) |= TREE_READONLY (exp
);
3530 if (code
== INDIRECT_REF
|| code
== ARRAY_REF
|| code
== ARRAY_RANGE_REF
)
3531 TREE_THIS_NOTRAP (new_tree
) |= TREE_THIS_NOTRAP (exp
);
3536 /* Stabilize a reference so that we can use it any number of times
3537 without causing its operands to be evaluated more than once.
3538 Returns the stabilized reference. This works by means of save_expr,
3539 so see the caveats in the comments about save_expr.
3541 Also allows conversion expressions whose operands are references.
3542 Any other kind of expression is returned unchanged. */
3545 stabilize_reference (tree ref
)
3548 enum tree_code code
= TREE_CODE (ref
);
3555 /* No action is needed in this case. */
3560 case FIX_TRUNC_EXPR
:
3561 result
= build_nt (code
, stabilize_reference (TREE_OPERAND (ref
, 0)));
3565 result
= build_nt (INDIRECT_REF
,
3566 stabilize_reference_1 (TREE_OPERAND (ref
, 0)));
3570 result
= build_nt (COMPONENT_REF
,
3571 stabilize_reference (TREE_OPERAND (ref
, 0)),
3572 TREE_OPERAND (ref
, 1), NULL_TREE
);
3576 result
= build_nt (BIT_FIELD_REF
,
3577 stabilize_reference (TREE_OPERAND (ref
, 0)),
3578 TREE_OPERAND (ref
, 1), TREE_OPERAND (ref
, 2));
3582 result
= build_nt (ARRAY_REF
,
3583 stabilize_reference (TREE_OPERAND (ref
, 0)),
3584 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3585 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
3588 case ARRAY_RANGE_REF
:
3589 result
= build_nt (ARRAY_RANGE_REF
,
3590 stabilize_reference (TREE_OPERAND (ref
, 0)),
3591 stabilize_reference_1 (TREE_OPERAND (ref
, 1)),
3592 TREE_OPERAND (ref
, 2), TREE_OPERAND (ref
, 3));
3596 /* We cannot wrap the first expression in a SAVE_EXPR, as then
3597 it wouldn't be ignored. This matters when dealing with
3599 return stabilize_reference_1 (ref
);
3601 /* If arg isn't a kind of lvalue we recognize, make no change.
3602 Caller should recognize the error for an invalid lvalue. */
3607 return error_mark_node
;
3610 TREE_TYPE (result
) = TREE_TYPE (ref
);
3611 TREE_READONLY (result
) = TREE_READONLY (ref
);
3612 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (ref
);
3613 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (ref
);
3618 /* Subroutine of stabilize_reference; this is called for subtrees of
3619 references. Any expression with side-effects must be put in a SAVE_EXPR
3620 to ensure that it is only evaluated once.
3622 We don't put SAVE_EXPR nodes around everything, because assigning very
3623 simple expressions to temporaries causes us to miss good opportunities
3624 for optimizations. Among other things, the opportunity to fold in the
3625 addition of a constant into an addressing mode often gets lost, e.g.
3626 "y[i+1] += x;". In general, we take the approach that we should not make
3627 an assignment unless we are forced into it - i.e., that any non-side effect
3628 operator should be allowed, and that cse should take care of coalescing
3629 multiple utterances of the same expression should that prove fruitful. */
3632 stabilize_reference_1 (tree e
)
3635 enum tree_code code
= TREE_CODE (e
);
3637 /* We cannot ignore const expressions because it might be a reference
3638 to a const array but whose index contains side-effects. But we can
3639 ignore things that are actual constant or that already have been
3640 handled by this function. */
3642 if (tree_invariant_p (e
))
3645 switch (TREE_CODE_CLASS (code
))
3647 case tcc_exceptional
:
3649 case tcc_declaration
:
3650 case tcc_comparison
:
3652 case tcc_expression
:
3655 /* If the expression has side-effects, then encase it in a SAVE_EXPR
3656 so that it will only be evaluated once. */
3657 /* The reference (r) and comparison (<) classes could be handled as
3658 below, but it is generally faster to only evaluate them once. */
3659 if (TREE_SIDE_EFFECTS (e
))
3660 return save_expr (e
);
3664 /* Constants need no processing. In fact, we should never reach
3669 /* Division is slow and tends to be compiled with jumps,
3670 especially the division by powers of 2 that is often
3671 found inside of an array reference. So do it just once. */
3672 if (code
== TRUNC_DIV_EXPR
|| code
== TRUNC_MOD_EXPR
3673 || code
== FLOOR_DIV_EXPR
|| code
== FLOOR_MOD_EXPR
3674 || code
== CEIL_DIV_EXPR
|| code
== CEIL_MOD_EXPR
3675 || code
== ROUND_DIV_EXPR
|| code
== ROUND_MOD_EXPR
)
3676 return save_expr (e
);
3677 /* Recursively stabilize each operand. */
3678 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)),
3679 stabilize_reference_1 (TREE_OPERAND (e
, 1)));
3683 /* Recursively stabilize each operand. */
3684 result
= build_nt (code
, stabilize_reference_1 (TREE_OPERAND (e
, 0)));
3691 TREE_TYPE (result
) = TREE_TYPE (e
);
3692 TREE_READONLY (result
) = TREE_READONLY (e
);
3693 TREE_SIDE_EFFECTS (result
) = TREE_SIDE_EFFECTS (e
);
3694 TREE_THIS_VOLATILE (result
) = TREE_THIS_VOLATILE (e
);
3699 /* Low-level constructors for expressions. */
3701 /* A helper function for build1 and constant folders. Set TREE_CONSTANT,
3702 and TREE_SIDE_EFFECTS for an ADDR_EXPR. */
3705 recompute_tree_invariant_for_addr_expr (tree t
)
3708 bool tc
= true, se
= false;
3710 /* We started out assuming this address is both invariant and constant, but
3711 does not have side effects. Now go down any handled components and see if
3712 any of them involve offsets that are either non-constant or non-invariant.
3713 Also check for side-effects.
3715 ??? Note that this code makes no attempt to deal with the case where
3716 taking the address of something causes a copy due to misalignment. */
3718 #define UPDATE_FLAGS(NODE) \
3719 do { tree _node = (NODE); \
3720 if (_node && !TREE_CONSTANT (_node)) tc = false; \
3721 if (_node && TREE_SIDE_EFFECTS (_node)) se = true; } while (0)
3723 for (node
= TREE_OPERAND (t
, 0); handled_component_p (node
);
3724 node
= TREE_OPERAND (node
, 0))
3726 /* If the first operand doesn't have an ARRAY_TYPE, this is a bogus
3727 array reference (probably made temporarily by the G++ front end),
3728 so ignore all the operands. */
3729 if ((TREE_CODE (node
) == ARRAY_REF
3730 || TREE_CODE (node
) == ARRAY_RANGE_REF
)
3731 && TREE_CODE (TREE_TYPE (TREE_OPERAND (node
, 0))) == ARRAY_TYPE
)
3733 UPDATE_FLAGS (TREE_OPERAND (node
, 1));
3734 if (TREE_OPERAND (node
, 2))
3735 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
3736 if (TREE_OPERAND (node
, 3))
3737 UPDATE_FLAGS (TREE_OPERAND (node
, 3));
3739 /* Likewise, just because this is a COMPONENT_REF doesn't mean we have a
3740 FIELD_DECL, apparently. The G++ front end can put something else
3741 there, at least temporarily. */
3742 else if (TREE_CODE (node
) == COMPONENT_REF
3743 && TREE_CODE (TREE_OPERAND (node
, 1)) == FIELD_DECL
)
3745 if (TREE_OPERAND (node
, 2))
3746 UPDATE_FLAGS (TREE_OPERAND (node
, 2));
3750 node
= lang_hooks
.expr_to_decl (node
, &tc
, &se
);
3752 /* Now see what's inside. If it's an INDIRECT_REF, copy our properties from
3753 the address, since &(*a)->b is a form of addition. If it's a constant, the
3754 address is constant too. If it's a decl, its address is constant if the
3755 decl is static. Everything else is not constant and, furthermore,
3756 taking the address of a volatile variable is not volatile. */
3757 if (TREE_CODE (node
) == INDIRECT_REF
3758 || TREE_CODE (node
) == MEM_REF
)
3759 UPDATE_FLAGS (TREE_OPERAND (node
, 0));
3760 else if (CONSTANT_CLASS_P (node
))
3762 else if (DECL_P (node
))
3763 tc
&= (staticp (node
) != NULL_TREE
);
3767 se
|= TREE_SIDE_EFFECTS (node
);
3771 TREE_CONSTANT (t
) = tc
;
3772 TREE_SIDE_EFFECTS (t
) = se
;
3776 /* Build an expression of code CODE, data type TYPE, and operands as
3777 specified. Expressions and reference nodes can be created this way.
3778 Constants, decls, types and misc nodes cannot be.
3780 We define 5 non-variadic functions, from 0 to 4 arguments. This is
3781 enough for all extant tree codes. */
3784 build0_stat (enum tree_code code
, tree tt MEM_STAT_DECL
)
3788 gcc_assert (TREE_CODE_LENGTH (code
) == 0);
3790 t
= make_node_stat (code PASS_MEM_STAT
);
3797 build1_stat (enum tree_code code
, tree type
, tree node MEM_STAT_DECL
)
3799 int length
= sizeof (struct tree_exp
);
3802 record_node_allocation_statistics (code
, length
);
3804 gcc_assert (TREE_CODE_LENGTH (code
) == 1);
3806 t
= ggc_alloc_zone_tree_node_stat (&tree_zone
, length PASS_MEM_STAT
);
3808 memset (t
, 0, sizeof (struct tree_common
));
3810 TREE_SET_CODE (t
, code
);
3812 TREE_TYPE (t
) = type
;
3813 SET_EXPR_LOCATION (t
, UNKNOWN_LOCATION
);
3814 TREE_OPERAND (t
, 0) = node
;
3815 if (node
&& !TYPE_P (node
))
3817 TREE_SIDE_EFFECTS (t
) = TREE_SIDE_EFFECTS (node
);
3818 TREE_READONLY (t
) = TREE_READONLY (node
);
3821 if (TREE_CODE_CLASS (code
) == tcc_statement
)
3822 TREE_SIDE_EFFECTS (t
) = 1;
3826 /* All of these have side-effects, no matter what their
3828 TREE_SIDE_EFFECTS (t
) = 1;
3829 TREE_READONLY (t
) = 0;
3833 /* Whether a dereference is readonly has nothing to do with whether
3834 its operand is readonly. */
3835 TREE_READONLY (t
) = 0;
3840 recompute_tree_invariant_for_addr_expr (t
);
3844 if ((TREE_CODE_CLASS (code
) == tcc_unary
|| code
== VIEW_CONVERT_EXPR
)
3845 && node
&& !TYPE_P (node
)
3846 && TREE_CONSTANT (node
))
3847 TREE_CONSTANT (t
) = 1;
3848 if (TREE_CODE_CLASS (code
) == tcc_reference
3849 && node
&& TREE_THIS_VOLATILE (node
))
3850 TREE_THIS_VOLATILE (t
) = 1;
3857 #define PROCESS_ARG(N) \
3859 TREE_OPERAND (t, N) = arg##N; \
3860 if (arg##N &&!TYPE_P (arg##N)) \
3862 if (TREE_SIDE_EFFECTS (arg##N)) \
3864 if (!TREE_READONLY (arg##N) \
3865 && !CONSTANT_CLASS_P (arg##N)) \
3866 (void) (read_only = 0); \
3867 if (!TREE_CONSTANT (arg##N)) \
3868 (void) (constant = 0); \
3873 build2_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1 MEM_STAT_DECL
)
3875 bool constant
, read_only
, side_effects
;
3878 gcc_assert (TREE_CODE_LENGTH (code
) == 2);
3880 if ((code
== MINUS_EXPR
|| code
== PLUS_EXPR
|| code
== MULT_EXPR
)
3881 && arg0
&& arg1
&& tt
&& POINTER_TYPE_P (tt
)
3882 /* When sizetype precision doesn't match that of pointers
3883 we need to be able to build explicit extensions or truncations
3884 of the offset argument. */
3885 && TYPE_PRECISION (sizetype
) == TYPE_PRECISION (tt
))
3886 gcc_assert (TREE_CODE (arg0
) == INTEGER_CST
3887 && TREE_CODE (arg1
) == INTEGER_CST
);
3889 if (code
== POINTER_PLUS_EXPR
&& arg0
&& arg1
&& tt
)
3890 gcc_assert (POINTER_TYPE_P (tt
) && POINTER_TYPE_P (TREE_TYPE (arg0
))
3891 && ptrofftype_p (TREE_TYPE (arg1
)));
3893 t
= make_node_stat (code PASS_MEM_STAT
);
3896 /* Below, we automatically set TREE_SIDE_EFFECTS and TREE_READONLY for the
3897 result based on those same flags for the arguments. But if the
3898 arguments aren't really even `tree' expressions, we shouldn't be trying
3901 /* Expressions without side effects may be constant if their
3902 arguments are as well. */
3903 constant
= (TREE_CODE_CLASS (code
) == tcc_comparison
3904 || TREE_CODE_CLASS (code
) == tcc_binary
);
3906 side_effects
= TREE_SIDE_EFFECTS (t
);
3911 TREE_READONLY (t
) = read_only
;
3912 TREE_CONSTANT (t
) = constant
;
3913 TREE_SIDE_EFFECTS (t
) = side_effects
;
3914 TREE_THIS_VOLATILE (t
)
3915 = (TREE_CODE_CLASS (code
) == tcc_reference
3916 && arg0
&& TREE_THIS_VOLATILE (arg0
));
3923 build3_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
3924 tree arg2 MEM_STAT_DECL
)
3926 bool constant
, read_only
, side_effects
;
3929 gcc_assert (TREE_CODE_LENGTH (code
) == 3);
3930 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
3932 t
= make_node_stat (code PASS_MEM_STAT
);
3937 /* As a special exception, if COND_EXPR has NULL branches, we
3938 assume that it is a gimple statement and always consider
3939 it to have side effects. */
3940 if (code
== COND_EXPR
3941 && tt
== void_type_node
3942 && arg1
== NULL_TREE
3943 && arg2
== NULL_TREE
)
3944 side_effects
= true;
3946 side_effects
= TREE_SIDE_EFFECTS (t
);
3952 if (code
== COND_EXPR
)
3953 TREE_READONLY (t
) = read_only
;
3955 TREE_SIDE_EFFECTS (t
) = side_effects
;
3956 TREE_THIS_VOLATILE (t
)
3957 = (TREE_CODE_CLASS (code
) == tcc_reference
3958 && arg0
&& TREE_THIS_VOLATILE (arg0
));
3964 build4_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
3965 tree arg2
, tree arg3 MEM_STAT_DECL
)
3967 bool constant
, read_only
, side_effects
;
3970 gcc_assert (TREE_CODE_LENGTH (code
) == 4);
3972 t
= make_node_stat (code PASS_MEM_STAT
);
3975 side_effects
= TREE_SIDE_EFFECTS (t
);
3982 TREE_SIDE_EFFECTS (t
) = side_effects
;
3983 TREE_THIS_VOLATILE (t
)
3984 = (TREE_CODE_CLASS (code
) == tcc_reference
3985 && arg0
&& TREE_THIS_VOLATILE (arg0
));
3991 build5_stat (enum tree_code code
, tree tt
, tree arg0
, tree arg1
,
3992 tree arg2
, tree arg3
, tree arg4 MEM_STAT_DECL
)
3994 bool constant
, read_only
, side_effects
;
3997 gcc_assert (TREE_CODE_LENGTH (code
) == 5);
3999 t
= make_node_stat (code PASS_MEM_STAT
);
4002 side_effects
= TREE_SIDE_EFFECTS (t
);
4010 TREE_SIDE_EFFECTS (t
) = side_effects
;
4011 TREE_THIS_VOLATILE (t
)
4012 = (TREE_CODE_CLASS (code
) == tcc_reference
4013 && arg0
&& TREE_THIS_VOLATILE (arg0
));
4018 /* Build a simple MEM_REF tree with the sematics of a plain INDIRECT_REF
4019 on the pointer PTR. */
4022 build_simple_mem_ref_loc (location_t loc
, tree ptr
)
4024 HOST_WIDE_INT offset
= 0;
4025 tree ptype
= TREE_TYPE (ptr
);
4027 /* For convenience allow addresses that collapse to a simple base
4029 if (TREE_CODE (ptr
) == ADDR_EXPR
4030 && (handled_component_p (TREE_OPERAND (ptr
, 0))
4031 || TREE_CODE (TREE_OPERAND (ptr
, 0)) == MEM_REF
))
4033 ptr
= get_addr_base_and_unit_offset (TREE_OPERAND (ptr
, 0), &offset
);
4035 ptr
= build_fold_addr_expr (ptr
);
4036 gcc_assert (is_gimple_reg (ptr
) || is_gimple_min_invariant (ptr
));
4038 tem
= build2 (MEM_REF
, TREE_TYPE (ptype
),
4039 ptr
, build_int_cst (ptype
, offset
));
4040 SET_EXPR_LOCATION (tem
, loc
);
4044 /* Return the constant offset of a MEM_REF or TARGET_MEM_REF tree T. */
4047 mem_ref_offset (const_tree t
)
4049 tree toff
= TREE_OPERAND (t
, 1);
4050 return tree_to_double_int (toff
).sext (TYPE_PRECISION (TREE_TYPE (toff
)));
4053 /* Return the pointer-type relevant for TBAA purposes from the
4054 gimple memory reference tree T. This is the type to be used for
4055 the offset operand of MEM_REF or TARGET_MEM_REF replacements of T. */
4058 reference_alias_ptr_type (const_tree t
)
4060 const_tree base
= t
;
4061 while (handled_component_p (base
))
4062 base
= TREE_OPERAND (base
, 0);
4063 if (TREE_CODE (base
) == MEM_REF
)
4064 return TREE_TYPE (TREE_OPERAND (base
, 1));
4065 else if (TREE_CODE (base
) == TARGET_MEM_REF
)
4066 return TREE_TYPE (TMR_OFFSET (base
));
4068 return build_pointer_type (TYPE_MAIN_VARIANT (TREE_TYPE (base
)));
4071 /* Return an invariant ADDR_EXPR of type TYPE taking the address of BASE
4072 offsetted by OFFSET units. */
4075 build_invariant_address (tree type
, tree base
, HOST_WIDE_INT offset
)
4077 tree ref
= fold_build2 (MEM_REF
, TREE_TYPE (type
),
4078 build_fold_addr_expr (base
),
4079 build_int_cst (ptr_type_node
, offset
));
4080 tree addr
= build1 (ADDR_EXPR
, type
, ref
);
4081 recompute_tree_invariant_for_addr_expr (addr
);
4085 /* Similar except don't specify the TREE_TYPE
4086 and leave the TREE_SIDE_EFFECTS as 0.
4087 It is permissible for arguments to be null,
4088 or even garbage if their values do not matter. */
4091 build_nt (enum tree_code code
, ...)
4098 gcc_assert (TREE_CODE_CLASS (code
) != tcc_vl_exp
);
4102 t
= make_node (code
);
4103 length
= TREE_CODE_LENGTH (code
);
4105 for (i
= 0; i
< length
; i
++)
4106 TREE_OPERAND (t
, i
) = va_arg (p
, tree
);
4112 /* Similar to build_nt, but for creating a CALL_EXPR object with a
4116 build_nt_call_vec (tree fn
, VEC(tree
,gc
) *args
)
4121 ret
= build_vl_exp (CALL_EXPR
, VEC_length (tree
, args
) + 3);
4122 CALL_EXPR_FN (ret
) = fn
;
4123 CALL_EXPR_STATIC_CHAIN (ret
) = NULL_TREE
;
4124 FOR_EACH_VEC_ELT (tree
, args
, ix
, t
)
4125 CALL_EXPR_ARG (ret
, ix
) = t
;
4129 /* Create a DECL_... node of code CODE, name NAME and data type TYPE.
4130 We do NOT enter this node in any sort of symbol table.
4132 LOC is the location of the decl.
4134 layout_decl is used to set up the decl's storage layout.
4135 Other slots are initialized to 0 or null pointers. */
4138 build_decl_stat (location_t loc
, enum tree_code code
, tree name
,
4139 tree type MEM_STAT_DECL
)
4143 t
= make_node_stat (code PASS_MEM_STAT
);
4144 DECL_SOURCE_LOCATION (t
) = loc
;
4146 /* if (type == error_mark_node)
4147 type = integer_type_node; */
4148 /* That is not done, deliberately, so that having error_mark_node
4149 as the type can suppress useless errors in the use of this variable. */
4151 DECL_NAME (t
) = name
;
4152 TREE_TYPE (t
) = type
;
4154 if (code
== VAR_DECL
|| code
== PARM_DECL
|| code
== RESULT_DECL
)
4160 /* Builds and returns function declaration with NAME and TYPE. */
4163 build_fn_decl (const char *name
, tree type
)
4165 tree id
= get_identifier (name
);
4166 tree decl
= build_decl (input_location
, FUNCTION_DECL
, id
, type
);
4168 DECL_EXTERNAL (decl
) = 1;
4169 TREE_PUBLIC (decl
) = 1;
4170 DECL_ARTIFICIAL (decl
) = 1;
4171 TREE_NOTHROW (decl
) = 1;
4176 VEC(tree
,gc
) *all_translation_units
;
4178 /* Builds a new translation-unit decl with name NAME, queues it in the
4179 global list of translation-unit decls and returns it. */
4182 build_translation_unit_decl (tree name
)
4184 tree tu
= build_decl (UNKNOWN_LOCATION
, TRANSLATION_UNIT_DECL
,
4186 TRANSLATION_UNIT_LANGUAGE (tu
) = lang_hooks
.name
;
4187 VEC_safe_push (tree
, gc
, all_translation_units
, tu
);
4192 /* BLOCK nodes are used to represent the structure of binding contours
4193 and declarations, once those contours have been exited and their contents
4194 compiled. This information is used for outputting debugging info. */
4197 build_block (tree vars
, tree subblocks
, tree supercontext
, tree chain
)
4199 tree block
= make_node (BLOCK
);
4201 BLOCK_VARS (block
) = vars
;
4202 BLOCK_SUBBLOCKS (block
) = subblocks
;
4203 BLOCK_SUPERCONTEXT (block
) = supercontext
;
4204 BLOCK_CHAIN (block
) = chain
;
4209 /* Like SET_EXPR_LOCATION, but make sure the tree can have a location.
4211 LOC is the location to use in tree T. */
4214 protected_set_expr_location (tree t
, location_t loc
)
4216 if (t
&& CAN_HAVE_LOCATION_P (t
))
4217 SET_EXPR_LOCATION (t
, loc
);
4220 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
4224 build_decl_attribute_variant (tree ddecl
, tree attribute
)
4226 DECL_ATTRIBUTES (ddecl
) = attribute
;
4230 /* Borrowed from hashtab.c iterative_hash implementation. */
4231 #define mix(a,b,c) \
4233 a -= b; a -= c; a ^= (c>>13); \
4234 b -= c; b -= a; b ^= (a<< 8); \
4235 c -= a; c -= b; c ^= ((b&0xffffffff)>>13); \
4236 a -= b; a -= c; a ^= ((c&0xffffffff)>>12); \
4237 b -= c; b -= a; b = (b ^ (a<<16)) & 0xffffffff; \
4238 c -= a; c -= b; c = (c ^ (b>> 5)) & 0xffffffff; \
4239 a -= b; a -= c; a = (a ^ (c>> 3)) & 0xffffffff; \
4240 b -= c; b -= a; b = (b ^ (a<<10)) & 0xffffffff; \
4241 c -= a; c -= b; c = (c ^ (b>>15)) & 0xffffffff; \
4245 /* Produce good hash value combining VAL and VAL2. */
4247 iterative_hash_hashval_t (hashval_t val
, hashval_t val2
)
4249 /* the golden ratio; an arbitrary value. */
4250 hashval_t a
= 0x9e3779b9;
4256 /* Produce good hash value combining VAL and VAL2. */
4258 iterative_hash_host_wide_int (HOST_WIDE_INT val
, hashval_t val2
)
4260 if (sizeof (HOST_WIDE_INT
) == sizeof (hashval_t
))
4261 return iterative_hash_hashval_t (val
, val2
);
4264 hashval_t a
= (hashval_t
) val
;
4265 /* Avoid warnings about shifting of more than the width of the type on
4266 hosts that won't execute this path. */
4268 hashval_t b
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 8 + zero
));
4270 if (sizeof (HOST_WIDE_INT
) > 2 * sizeof (hashval_t
))
4272 hashval_t a
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 16 + zero
));
4273 hashval_t b
= (hashval_t
) (val
>> (sizeof (hashval_t
) * 24 + zero
));
4280 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4281 is ATTRIBUTE and its qualifiers are QUALS.
4283 Record such modified types already made so we don't make duplicates. */
4286 build_type_attribute_qual_variant (tree ttype
, tree attribute
, int quals
)
4288 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype
), attribute
))
4290 hashval_t hashcode
= 0;
4292 enum tree_code code
= TREE_CODE (ttype
);
4294 /* Building a distinct copy of a tagged type is inappropriate; it
4295 causes breakage in code that expects there to be a one-to-one
4296 relationship between a struct and its fields.
4297 build_duplicate_type is another solution (as used in
4298 handle_transparent_union_attribute), but that doesn't play well
4299 with the stronger C++ type identity model. */
4300 if (TREE_CODE (ttype
) == RECORD_TYPE
4301 || TREE_CODE (ttype
) == UNION_TYPE
4302 || TREE_CODE (ttype
) == QUAL_UNION_TYPE
4303 || TREE_CODE (ttype
) == ENUMERAL_TYPE
)
4305 warning (OPT_Wattributes
,
4306 "ignoring attributes applied to %qT after definition",
4307 TYPE_MAIN_VARIANT (ttype
));
4308 return build_qualified_type (ttype
, quals
);
4311 ttype
= build_qualified_type (ttype
, TYPE_UNQUALIFIED
);
4312 ntype
= build_distinct_type_copy (ttype
);
4314 TYPE_ATTRIBUTES (ntype
) = attribute
;
4316 hashcode
= iterative_hash_object (code
, hashcode
);
4317 if (TREE_TYPE (ntype
))
4318 hashcode
= iterative_hash_object (TYPE_HASH (TREE_TYPE (ntype
)),
4320 hashcode
= attribute_hash_list (attribute
, hashcode
);
4322 switch (TREE_CODE (ntype
))
4325 hashcode
= type_hash_list (TYPE_ARG_TYPES (ntype
), hashcode
);
4328 if (TYPE_DOMAIN (ntype
))
4329 hashcode
= iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (ntype
)),
4333 hashcode
= iterative_hash_object
4334 (TREE_INT_CST_LOW (TYPE_MAX_VALUE (ntype
)), hashcode
);
4335 hashcode
= iterative_hash_object
4336 (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (ntype
)), hashcode
);
4339 case FIXED_POINT_TYPE
:
4341 unsigned int precision
= TYPE_PRECISION (ntype
);
4342 hashcode
= iterative_hash_object (precision
, hashcode
);
4349 ntype
= type_hash_canon (hashcode
, ntype
);
4351 /* If the target-dependent attributes make NTYPE different from
4352 its canonical type, we will need to use structural equality
4353 checks for this type. */
4354 if (TYPE_STRUCTURAL_EQUALITY_P (ttype
)
4355 || !comp_type_attributes (ntype
, ttype
))
4356 SET_TYPE_STRUCTURAL_EQUALITY (ntype
);
4357 else if (TYPE_CANONICAL (ntype
) == ntype
)
4358 TYPE_CANONICAL (ntype
) = TYPE_CANONICAL (ttype
);
4360 ttype
= build_qualified_type (ntype
, quals
);
4362 else if (TYPE_QUALS (ttype
) != quals
)
4363 ttype
= build_qualified_type (ttype
, quals
);
4368 /* Compare two attributes for their value identity. Return true if the
4369 attribute values are known to be equal; otherwise return false.
4373 attribute_value_equal (const_tree attr1
, const_tree attr2
)
4375 if (TREE_VALUE (attr1
) == TREE_VALUE (attr2
))
4378 if (TREE_VALUE (attr1
) != NULL_TREE
4379 && TREE_CODE (TREE_VALUE (attr1
)) == TREE_LIST
4380 && TREE_VALUE (attr2
) != NULL
4381 && TREE_CODE (TREE_VALUE (attr2
)) == TREE_LIST
)
4382 return (simple_cst_list_equal (TREE_VALUE (attr1
),
4383 TREE_VALUE (attr2
)) == 1);
4385 return (simple_cst_equal (TREE_VALUE (attr1
), TREE_VALUE (attr2
)) == 1);
4388 /* Return 0 if the attributes for two types are incompatible, 1 if they
4389 are compatible, and 2 if they are nearly compatible (which causes a
4390 warning to be generated). */
4392 comp_type_attributes (const_tree type1
, const_tree type2
)
4394 const_tree a1
= TYPE_ATTRIBUTES (type1
);
4395 const_tree a2
= TYPE_ATTRIBUTES (type2
);
4400 for (a
= a1
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
4402 const struct attribute_spec
*as
;
4405 as
= lookup_attribute_spec (get_attribute_name (a
));
4406 if (!as
|| as
->affects_type_identity
== false)
4409 attr
= lookup_attribute (as
->name
, CONST_CAST_TREE (a2
));
4410 if (!attr
|| !attribute_value_equal (a
, attr
))
4415 for (a
= a2
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
4417 const struct attribute_spec
*as
;
4419 as
= lookup_attribute_spec (get_attribute_name (a
));
4420 if (!as
|| as
->affects_type_identity
== false)
4423 if (!lookup_attribute (as
->name
, CONST_CAST_TREE (a1
)))
4425 /* We don't need to compare trees again, as we did this
4426 already in first loop. */
4428 /* All types - affecting identity - are equal, so
4429 there is no need to call target hook for comparison. */
4433 /* As some type combinations - like default calling-convention - might
4434 be compatible, we have to call the target hook to get the final result. */
4435 return targetm
.comp_type_attributes (type1
, type2
);
4438 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
4441 Record such modified types already made so we don't make duplicates. */
4444 build_type_attribute_variant (tree ttype
, tree attribute
)
4446 return build_type_attribute_qual_variant (ttype
, attribute
,
4447 TYPE_QUALS (ttype
));
4451 /* Reset the expression *EXPR_P, a size or position.
4453 ??? We could reset all non-constant sizes or positions. But it's cheap
4454 enough to not do so and refrain from adding workarounds to dwarf2out.c.
4456 We need to reset self-referential sizes or positions because they cannot
4457 be gimplified and thus can contain a CALL_EXPR after the gimplification
4458 is finished, which will run afoul of LTO streaming. And they need to be
4459 reset to something essentially dummy but not constant, so as to preserve
4460 the properties of the object they are attached to. */
4463 free_lang_data_in_one_sizepos (tree
*expr_p
)
4465 tree expr
= *expr_p
;
4466 if (CONTAINS_PLACEHOLDER_P (expr
))
4467 *expr_p
= build0 (PLACEHOLDER_EXPR
, TREE_TYPE (expr
));
4471 /* Reset all the fields in a binfo node BINFO. We only keep
4472 BINFO_VTABLE, which is used by gimple_fold_obj_type_ref. */
4475 free_lang_data_in_binfo (tree binfo
)
4480 gcc_assert (TREE_CODE (binfo
) == TREE_BINFO
);
4482 BINFO_VIRTUALS (binfo
) = NULL_TREE
;
4483 BINFO_BASE_ACCESSES (binfo
) = NULL
;
4484 BINFO_INHERITANCE_CHAIN (binfo
) = NULL_TREE
;
4485 BINFO_SUBVTT_INDEX (binfo
) = NULL_TREE
;
4487 FOR_EACH_VEC_ELT (tree
, BINFO_BASE_BINFOS (binfo
), i
, t
)
4488 free_lang_data_in_binfo (t
);
4492 /* Reset all language specific information still present in TYPE. */
4495 free_lang_data_in_type (tree type
)
4497 gcc_assert (TYPE_P (type
));
4499 /* Give the FE a chance to remove its own data first. */
4500 lang_hooks
.free_lang_data (type
);
4502 TREE_LANG_FLAG_0 (type
) = 0;
4503 TREE_LANG_FLAG_1 (type
) = 0;
4504 TREE_LANG_FLAG_2 (type
) = 0;
4505 TREE_LANG_FLAG_3 (type
) = 0;
4506 TREE_LANG_FLAG_4 (type
) = 0;
4507 TREE_LANG_FLAG_5 (type
) = 0;
4508 TREE_LANG_FLAG_6 (type
) = 0;
4510 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4512 /* Remove the const and volatile qualifiers from arguments. The
4513 C++ front end removes them, but the C front end does not,
4514 leading to false ODR violation errors when merging two
4515 instances of the same function signature compiled by
4516 different front ends. */
4519 for (p
= TYPE_ARG_TYPES (type
); p
; p
= TREE_CHAIN (p
))
4521 tree arg_type
= TREE_VALUE (p
);
4523 if (TYPE_READONLY (arg_type
) || TYPE_VOLATILE (arg_type
))
4525 int quals
= TYPE_QUALS (arg_type
)
4527 & ~TYPE_QUAL_VOLATILE
;
4528 TREE_VALUE (p
) = build_qualified_type (arg_type
, quals
);
4529 free_lang_data_in_type (TREE_VALUE (p
));
4534 /* Remove members that are not actually FIELD_DECLs from the field
4535 list of an aggregate. These occur in C++. */
4536 if (RECORD_OR_UNION_TYPE_P (type
))
4540 /* Note that TYPE_FIELDS can be shared across distinct
4541 TREE_TYPEs. Therefore, if the first field of TYPE_FIELDS is
4542 to be removed, we cannot set its TREE_CHAIN to NULL.
4543 Otherwise, we would not be able to find all the other fields
4544 in the other instances of this TREE_TYPE.
4546 This was causing an ICE in testsuite/g++.dg/lto/20080915.C. */
4548 member
= TYPE_FIELDS (type
);
4551 if (TREE_CODE (member
) == FIELD_DECL
4552 || TREE_CODE (member
) == TYPE_DECL
)
4555 TREE_CHAIN (prev
) = member
;
4557 TYPE_FIELDS (type
) = member
;
4561 member
= TREE_CHAIN (member
);
4565 TREE_CHAIN (prev
) = NULL_TREE
;
4567 TYPE_FIELDS (type
) = NULL_TREE
;
4569 TYPE_METHODS (type
) = NULL_TREE
;
4570 if (TYPE_BINFO (type
))
4571 free_lang_data_in_binfo (TYPE_BINFO (type
));
4575 /* For non-aggregate types, clear out the language slot (which
4576 overloads TYPE_BINFO). */
4577 TYPE_LANG_SLOT_1 (type
) = NULL_TREE
;
4579 if (INTEGRAL_TYPE_P (type
)
4580 || SCALAR_FLOAT_TYPE_P (type
)
4581 || FIXED_POINT_TYPE_P (type
))
4583 free_lang_data_in_one_sizepos (&TYPE_MIN_VALUE (type
));
4584 free_lang_data_in_one_sizepos (&TYPE_MAX_VALUE (type
));
4588 free_lang_data_in_one_sizepos (&TYPE_SIZE (type
));
4589 free_lang_data_in_one_sizepos (&TYPE_SIZE_UNIT (type
));
4591 if (TYPE_CONTEXT (type
)
4592 && TREE_CODE (TYPE_CONTEXT (type
)) == BLOCK
)
4594 tree ctx
= TYPE_CONTEXT (type
);
4597 ctx
= BLOCK_SUPERCONTEXT (ctx
);
4599 while (ctx
&& TREE_CODE (ctx
) == BLOCK
);
4600 TYPE_CONTEXT (type
) = ctx
;
4605 /* Return true if DECL may need an assembler name to be set. */
4608 need_assembler_name_p (tree decl
)
4610 /* Only FUNCTION_DECLs and VAR_DECLs are considered. */
4611 if (TREE_CODE (decl
) != FUNCTION_DECL
4612 && TREE_CODE (decl
) != VAR_DECL
)
4615 /* If DECL already has its assembler name set, it does not need a
4617 if (!HAS_DECL_ASSEMBLER_NAME_P (decl
)
4618 || DECL_ASSEMBLER_NAME_SET_P (decl
))
4621 /* Abstract decls do not need an assembler name. */
4622 if (DECL_ABSTRACT (decl
))
4625 /* For VAR_DECLs, only static, public and external symbols need an
4627 if (TREE_CODE (decl
) == VAR_DECL
4628 && !TREE_STATIC (decl
)
4629 && !TREE_PUBLIC (decl
)
4630 && !DECL_EXTERNAL (decl
))
4633 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4635 /* Do not set assembler name on builtins. Allow RTL expansion to
4636 decide whether to expand inline or via a regular call. */
4637 if (DECL_BUILT_IN (decl
)
4638 && DECL_BUILT_IN_CLASS (decl
) != BUILT_IN_FRONTEND
)
4641 /* Functions represented in the callgraph need an assembler name. */
4642 if (cgraph_get_node (decl
) != NULL
)
4645 /* Unused and not public functions don't need an assembler name. */
4646 if (!TREE_USED (decl
) && !TREE_PUBLIC (decl
))
4654 /* Reset all language specific information still present in symbol
4658 free_lang_data_in_decl (tree decl
)
4660 gcc_assert (DECL_P (decl
));
4662 /* Give the FE a chance to remove its own data first. */
4663 lang_hooks
.free_lang_data (decl
);
4665 TREE_LANG_FLAG_0 (decl
) = 0;
4666 TREE_LANG_FLAG_1 (decl
) = 0;
4667 TREE_LANG_FLAG_2 (decl
) = 0;
4668 TREE_LANG_FLAG_3 (decl
) = 0;
4669 TREE_LANG_FLAG_4 (decl
) = 0;
4670 TREE_LANG_FLAG_5 (decl
) = 0;
4671 TREE_LANG_FLAG_6 (decl
) = 0;
4673 free_lang_data_in_one_sizepos (&DECL_SIZE (decl
));
4674 free_lang_data_in_one_sizepos (&DECL_SIZE_UNIT (decl
));
4675 if (TREE_CODE (decl
) == FIELD_DECL
)
4677 free_lang_data_in_one_sizepos (&DECL_FIELD_OFFSET (decl
));
4678 if (TREE_CODE (DECL_CONTEXT (decl
)) == QUAL_UNION_TYPE
)
4679 DECL_QUALIFIER (decl
) = NULL_TREE
;
4682 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4684 if (gimple_has_body_p (decl
))
4688 /* If DECL has a gimple body, then the context for its
4689 arguments must be DECL. Otherwise, it doesn't really
4690 matter, as we will not be emitting any code for DECL. In
4691 general, there may be other instances of DECL created by
4692 the front end and since PARM_DECLs are generally shared,
4693 their DECL_CONTEXT changes as the replicas of DECL are
4694 created. The only time where DECL_CONTEXT is important
4695 is for the FUNCTION_DECLs that have a gimple body (since
4696 the PARM_DECL will be used in the function's body). */
4697 for (t
= DECL_ARGUMENTS (decl
); t
; t
= TREE_CHAIN (t
))
4698 DECL_CONTEXT (t
) = decl
;
4701 /* DECL_SAVED_TREE holds the GENERIC representation for DECL.
4702 At this point, it is not needed anymore. */
4703 DECL_SAVED_TREE (decl
) = NULL_TREE
;
4705 /* Clear the abstract origin if it refers to a method. Otherwise
4706 dwarf2out.c will ICE as we clear TYPE_METHODS and thus the
4707 origin will not be output correctly. */
4708 if (DECL_ABSTRACT_ORIGIN (decl
)
4709 && DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))
4710 && RECORD_OR_UNION_TYPE_P
4711 (DECL_CONTEXT (DECL_ABSTRACT_ORIGIN (decl
))))
4712 DECL_ABSTRACT_ORIGIN (decl
) = NULL_TREE
;
4714 /* Sometimes the C++ frontend doesn't manage to transform a temporary
4715 DECL_VINDEX referring to itself into a vtable slot number as it
4716 should. Happens with functions that are copied and then forgotten
4717 about. Just clear it, it won't matter anymore. */
4718 if (DECL_VINDEX (decl
) && !host_integerp (DECL_VINDEX (decl
), 0))
4719 DECL_VINDEX (decl
) = NULL_TREE
;
4721 else if (TREE_CODE (decl
) == VAR_DECL
)
4723 if ((DECL_EXTERNAL (decl
)
4724 && (!TREE_STATIC (decl
) || !TREE_READONLY (decl
)))
4725 || (decl_function_context (decl
) && !TREE_STATIC (decl
)))
4726 DECL_INITIAL (decl
) = NULL_TREE
;
4728 else if (TREE_CODE (decl
) == TYPE_DECL
4729 || TREE_CODE (decl
) == FIELD_DECL
)
4730 DECL_INITIAL (decl
) = NULL_TREE
;
4731 else if (TREE_CODE (decl
) == TRANSLATION_UNIT_DECL
4732 && DECL_INITIAL (decl
)
4733 && TREE_CODE (DECL_INITIAL (decl
)) == BLOCK
)
4735 /* Strip builtins from the translation-unit BLOCK. We still have targets
4736 without builtin_decl_explicit support and also builtins are shared
4737 nodes and thus we can't use TREE_CHAIN in multiple lists. */
4738 tree
*nextp
= &BLOCK_VARS (DECL_INITIAL (decl
));
4742 if (TREE_CODE (var
) == FUNCTION_DECL
4743 && DECL_BUILT_IN (var
))
4744 *nextp
= TREE_CHAIN (var
);
4746 nextp
= &TREE_CHAIN (var
);
4752 /* Data used when collecting DECLs and TYPEs for language data removal. */
4754 struct free_lang_data_d
4756 /* Worklist to avoid excessive recursion. */
4757 VEC(tree
,heap
) *worklist
;
4759 /* Set of traversed objects. Used to avoid duplicate visits. */
4760 struct pointer_set_t
*pset
;
4762 /* Array of symbols to process with free_lang_data_in_decl. */
4763 VEC(tree
,heap
) *decls
;
4765 /* Array of types to process with free_lang_data_in_type. */
4766 VEC(tree
,heap
) *types
;
4770 /* Save all language fields needed to generate proper debug information
4771 for DECL. This saves most fields cleared out by free_lang_data_in_decl. */
4774 save_debug_info_for_decl (tree t
)
4776 /*struct saved_debug_info_d *sdi;*/
4778 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& DECL_P (t
));
4780 /* FIXME. Partial implementation for saving debug info removed. */
4784 /* Save all language fields needed to generate proper debug information
4785 for TYPE. This saves most fields cleared out by free_lang_data_in_type. */
4788 save_debug_info_for_type (tree t
)
4790 /*struct saved_debug_info_d *sdi;*/
4792 gcc_assert (debug_info_level
> DINFO_LEVEL_TERSE
&& t
&& TYPE_P (t
));
4794 /* FIXME. Partial implementation for saving debug info removed. */
4798 /* Add type or decl T to one of the list of tree nodes that need their
4799 language data removed. The lists are held inside FLD. */
4802 add_tree_to_fld_list (tree t
, struct free_lang_data_d
*fld
)
4806 VEC_safe_push (tree
, heap
, fld
->decls
, t
);
4807 if (debug_info_level
> DINFO_LEVEL_TERSE
)
4808 save_debug_info_for_decl (t
);
4810 else if (TYPE_P (t
))
4812 VEC_safe_push (tree
, heap
, fld
->types
, t
);
4813 if (debug_info_level
> DINFO_LEVEL_TERSE
)
4814 save_debug_info_for_type (t
);
4820 /* Push tree node T into FLD->WORKLIST. */
4823 fld_worklist_push (tree t
, struct free_lang_data_d
*fld
)
4825 if (t
&& !is_lang_specific (t
) && !pointer_set_contains (fld
->pset
, t
))
4826 VEC_safe_push (tree
, heap
, fld
->worklist
, (t
));
4830 /* Operand callback helper for free_lang_data_in_node. *TP is the
4831 subtree operand being considered. */
4834 find_decls_types_r (tree
*tp
, int *ws
, void *data
)
4837 struct free_lang_data_d
*fld
= (struct free_lang_data_d
*) data
;
4839 if (TREE_CODE (t
) == TREE_LIST
)
4842 /* Language specific nodes will be removed, so there is no need
4843 to gather anything under them. */
4844 if (is_lang_specific (t
))
4852 /* Note that walk_tree does not traverse every possible field in
4853 decls, so we have to do our own traversals here. */
4854 add_tree_to_fld_list (t
, fld
);
4856 fld_worklist_push (DECL_NAME (t
), fld
);
4857 fld_worklist_push (DECL_CONTEXT (t
), fld
);
4858 fld_worklist_push (DECL_SIZE (t
), fld
);
4859 fld_worklist_push (DECL_SIZE_UNIT (t
), fld
);
4861 /* We are going to remove everything under DECL_INITIAL for
4862 TYPE_DECLs. No point walking them. */
4863 if (TREE_CODE (t
) != TYPE_DECL
)
4864 fld_worklist_push (DECL_INITIAL (t
), fld
);
4866 fld_worklist_push (DECL_ATTRIBUTES (t
), fld
);
4867 fld_worklist_push (DECL_ABSTRACT_ORIGIN (t
), fld
);
4869 if (TREE_CODE (t
) == FUNCTION_DECL
)
4871 fld_worklist_push (DECL_ARGUMENTS (t
), fld
);
4872 fld_worklist_push (DECL_RESULT (t
), fld
);
4874 else if (TREE_CODE (t
) == TYPE_DECL
)
4876 fld_worklist_push (DECL_ARGUMENT_FLD (t
), fld
);
4877 fld_worklist_push (DECL_VINDEX (t
), fld
);
4878 fld_worklist_push (DECL_ORIGINAL_TYPE (t
), fld
);
4880 else if (TREE_CODE (t
) == FIELD_DECL
)
4882 fld_worklist_push (DECL_FIELD_OFFSET (t
), fld
);
4883 fld_worklist_push (DECL_BIT_FIELD_TYPE (t
), fld
);
4884 fld_worklist_push (DECL_FIELD_BIT_OFFSET (t
), fld
);
4885 fld_worklist_push (DECL_FCONTEXT (t
), fld
);
4887 else if (TREE_CODE (t
) == VAR_DECL
)
4889 fld_worklist_push (DECL_SECTION_NAME (t
), fld
);
4890 fld_worklist_push (DECL_COMDAT_GROUP (t
), fld
);
4893 if ((TREE_CODE (t
) == VAR_DECL
|| TREE_CODE (t
) == PARM_DECL
)
4894 && DECL_HAS_VALUE_EXPR_P (t
))
4895 fld_worklist_push (DECL_VALUE_EXPR (t
), fld
);
4897 if (TREE_CODE (t
) != FIELD_DECL
4898 && TREE_CODE (t
) != TYPE_DECL
)
4899 fld_worklist_push (TREE_CHAIN (t
), fld
);
4902 else if (TYPE_P (t
))
4904 /* Note that walk_tree does not traverse every possible field in
4905 types, so we have to do our own traversals here. */
4906 add_tree_to_fld_list (t
, fld
);
4908 if (!RECORD_OR_UNION_TYPE_P (t
))
4909 fld_worklist_push (TYPE_CACHED_VALUES (t
), fld
);
4910 fld_worklist_push (TYPE_SIZE (t
), fld
);
4911 fld_worklist_push (TYPE_SIZE_UNIT (t
), fld
);
4912 fld_worklist_push (TYPE_ATTRIBUTES (t
), fld
);
4913 fld_worklist_push (TYPE_POINTER_TO (t
), fld
);
4914 fld_worklist_push (TYPE_REFERENCE_TO (t
), fld
);
4915 fld_worklist_push (TYPE_NAME (t
), fld
);
4916 /* Do not walk TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. We do not stream
4917 them and thus do not and want not to reach unused pointer types
4919 if (!POINTER_TYPE_P (t
))
4920 fld_worklist_push (TYPE_MINVAL (t
), fld
);
4921 if (!RECORD_OR_UNION_TYPE_P (t
))
4922 fld_worklist_push (TYPE_MAXVAL (t
), fld
);
4923 fld_worklist_push (TYPE_MAIN_VARIANT (t
), fld
);
4924 /* Do not walk TYPE_NEXT_VARIANT. We do not stream it and thus
4925 do not and want not to reach unused variants this way. */
4926 if (TYPE_CONTEXT (t
))
4928 tree ctx
= TYPE_CONTEXT (t
);
4929 /* We adjust BLOCK TYPE_CONTEXTs to the innermost non-BLOCK one.
4930 So push that instead. */
4931 while (ctx
&& TREE_CODE (ctx
) == BLOCK
)
4932 ctx
= BLOCK_SUPERCONTEXT (ctx
);
4933 fld_worklist_push (ctx
, fld
);
4935 /* Do not walk TYPE_CANONICAL. We do not stream it and thus do not
4936 and want not to reach unused types this way. */
4938 if (RECORD_OR_UNION_TYPE_P (t
) && TYPE_BINFO (t
))
4942 for (i
= 0; VEC_iterate (tree
, BINFO_BASE_BINFOS (TYPE_BINFO (t
)),
4944 fld_worklist_push (TREE_TYPE (tem
), fld
);
4945 tem
= BINFO_VIRTUALS (TYPE_BINFO (t
));
4947 /* The Java FE overloads BINFO_VIRTUALS for its own purpose. */
4948 && TREE_CODE (tem
) == TREE_LIST
)
4951 fld_worklist_push (TREE_VALUE (tem
), fld
);
4952 tem
= TREE_CHAIN (tem
);
4956 if (RECORD_OR_UNION_TYPE_P (t
))
4959 /* Push all TYPE_FIELDS - there can be interleaving interesting
4960 and non-interesting things. */
4961 tem
= TYPE_FIELDS (t
);
4964 if (TREE_CODE (tem
) == FIELD_DECL
4965 || TREE_CODE (tem
) == TYPE_DECL
)
4966 fld_worklist_push (tem
, fld
);
4967 tem
= TREE_CHAIN (tem
);
4971 fld_worklist_push (TYPE_STUB_DECL (t
), fld
);
4974 else if (TREE_CODE (t
) == BLOCK
)
4977 for (tem
= BLOCK_VARS (t
); tem
; tem
= TREE_CHAIN (tem
))
4978 fld_worklist_push (tem
, fld
);
4979 for (tem
= BLOCK_SUBBLOCKS (t
); tem
; tem
= BLOCK_CHAIN (tem
))
4980 fld_worklist_push (tem
, fld
);
4981 fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t
), fld
);
4984 if (TREE_CODE (t
) != IDENTIFIER_NODE
4985 && CODE_CONTAINS_STRUCT (TREE_CODE (t
), TS_TYPED
))
4986 fld_worklist_push (TREE_TYPE (t
), fld
);
4992 /* Find decls and types in T. */
4995 find_decls_types (tree t
, struct free_lang_data_d
*fld
)
4999 if (!pointer_set_contains (fld
->pset
, t
))
5000 walk_tree (&t
, find_decls_types_r
, fld
, fld
->pset
);
5001 if (VEC_empty (tree
, fld
->worklist
))
5003 t
= VEC_pop (tree
, fld
->worklist
);
5007 /* Translate all the types in LIST with the corresponding runtime
5011 get_eh_types_for_runtime (tree list
)
5015 if (list
== NULL_TREE
)
5018 head
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5020 list
= TREE_CHAIN (list
);
5023 tree n
= build_tree_list (0, lookup_type_for_runtime (TREE_VALUE (list
)));
5024 TREE_CHAIN (prev
) = n
;
5025 prev
= TREE_CHAIN (prev
);
5026 list
= TREE_CHAIN (list
);
5033 /* Find decls and types referenced in EH region R and store them in
5034 FLD->DECLS and FLD->TYPES. */
5037 find_decls_types_in_eh_region (eh_region r
, struct free_lang_data_d
*fld
)
5048 /* The types referenced in each catch must first be changed to the
5049 EH types used at runtime. This removes references to FE types
5051 for (c
= r
->u
.eh_try
.first_catch
; c
; c
= c
->next_catch
)
5053 c
->type_list
= get_eh_types_for_runtime (c
->type_list
);
5054 walk_tree (&c
->type_list
, find_decls_types_r
, fld
, fld
->pset
);
5059 case ERT_ALLOWED_EXCEPTIONS
:
5060 r
->u
.allowed
.type_list
5061 = get_eh_types_for_runtime (r
->u
.allowed
.type_list
);
5062 walk_tree (&r
->u
.allowed
.type_list
, find_decls_types_r
, fld
, fld
->pset
);
5065 case ERT_MUST_NOT_THROW
:
5066 walk_tree (&r
->u
.must_not_throw
.failure_decl
,
5067 find_decls_types_r
, fld
, fld
->pset
);
5073 /* Find decls and types referenced in cgraph node N and store them in
5074 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5075 look for *every* kind of DECL and TYPE node reachable from N,
5076 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5077 NAMESPACE_DECLs, etc). */
5080 find_decls_types_in_node (struct cgraph_node
*n
, struct free_lang_data_d
*fld
)
5083 struct function
*fn
;
5087 find_decls_types (n
->symbol
.decl
, fld
);
5089 if (!gimple_has_body_p (n
->symbol
.decl
))
5092 gcc_assert (current_function_decl
== NULL_TREE
&& cfun
== NULL
);
5094 fn
= DECL_STRUCT_FUNCTION (n
->symbol
.decl
);
5096 /* Traverse locals. */
5097 FOR_EACH_LOCAL_DECL (fn
, ix
, t
)
5098 find_decls_types (t
, fld
);
5100 /* Traverse EH regions in FN. */
5103 FOR_ALL_EH_REGION_FN (r
, fn
)
5104 find_decls_types_in_eh_region (r
, fld
);
5107 /* Traverse every statement in FN. */
5108 FOR_EACH_BB_FN (bb
, fn
)
5110 gimple_stmt_iterator si
;
5113 for (si
= gsi_start_phis (bb
); !gsi_end_p (si
); gsi_next (&si
))
5115 gimple phi
= gsi_stmt (si
);
5117 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
5119 tree
*arg_p
= gimple_phi_arg_def_ptr (phi
, i
);
5120 find_decls_types (*arg_p
, fld
);
5124 for (si
= gsi_start_bb (bb
); !gsi_end_p (si
); gsi_next (&si
))
5126 gimple stmt
= gsi_stmt (si
);
5128 if (is_gimple_call (stmt
))
5129 find_decls_types (gimple_call_fntype (stmt
), fld
);
5131 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
5133 tree arg
= gimple_op (stmt
, i
);
5134 find_decls_types (arg
, fld
);
5141 /* Find decls and types referenced in varpool node N and store them in
5142 FLD->DECLS and FLD->TYPES. Unlike pass_referenced_vars, this will
5143 look for *every* kind of DECL and TYPE node reachable from N,
5144 including those embedded inside types and decls (i.e,, TYPE_DECLs,
5145 NAMESPACE_DECLs, etc). */
5148 find_decls_types_in_var (struct varpool_node
*v
, struct free_lang_data_d
*fld
)
5150 find_decls_types (v
->symbol
.decl
, fld
);
5153 /* If T needs an assembler name, have one created for it. */
5156 assign_assembler_name_if_neeeded (tree t
)
5158 if (need_assembler_name_p (t
))
5160 /* When setting DECL_ASSEMBLER_NAME, the C++ mangler may emit
5161 diagnostics that use input_location to show locus
5162 information. The problem here is that, at this point,
5163 input_location is generally anchored to the end of the file
5164 (since the parser is long gone), so we don't have a good
5165 position to pin it to.
5167 To alleviate this problem, this uses the location of T's
5168 declaration. Examples of this are
5169 testsuite/g++.dg/template/cond2.C and
5170 testsuite/g++.dg/template/pr35240.C. */
5171 location_t saved_location
= input_location
;
5172 input_location
= DECL_SOURCE_LOCATION (t
);
5174 decl_assembler_name (t
);
5176 input_location
= saved_location
;
5181 /* Free language specific information for every operand and expression
5182 in every node of the call graph. This process operates in three stages:
5184 1- Every callgraph node and varpool node is traversed looking for
5185 decls and types embedded in them. This is a more exhaustive
5186 search than that done by find_referenced_vars, because it will
5187 also collect individual fields, decls embedded in types, etc.
5189 2- All the decls found are sent to free_lang_data_in_decl.
5191 3- All the types found are sent to free_lang_data_in_type.
5193 The ordering between decls and types is important because
5194 free_lang_data_in_decl sets assembler names, which includes
5195 mangling. So types cannot be freed up until assembler names have
5199 free_lang_data_in_cgraph (void)
5201 struct cgraph_node
*n
;
5202 struct varpool_node
*v
;
5203 struct free_lang_data_d fld
;
5208 /* Initialize sets and arrays to store referenced decls and types. */
5209 fld
.pset
= pointer_set_create ();
5210 fld
.worklist
= NULL
;
5211 fld
.decls
= VEC_alloc (tree
, heap
, 100);
5212 fld
.types
= VEC_alloc (tree
, heap
, 100);
5214 /* Find decls and types in the body of every function in the callgraph. */
5215 FOR_EACH_FUNCTION (n
)
5216 find_decls_types_in_node (n
, &fld
);
5218 FOR_EACH_VEC_ELT (alias_pair
, alias_pairs
, i
, p
)
5219 find_decls_types (p
->decl
, &fld
);
5221 /* Find decls and types in every varpool symbol. */
5222 FOR_EACH_VARIABLE (v
)
5223 find_decls_types_in_var (v
, &fld
);
5225 /* Set the assembler name on every decl found. We need to do this
5226 now because free_lang_data_in_decl will invalidate data needed
5227 for mangling. This breaks mangling on interdependent decls. */
5228 FOR_EACH_VEC_ELT (tree
, fld
.decls
, i
, t
)
5229 assign_assembler_name_if_neeeded (t
);
5231 /* Traverse every decl found freeing its language data. */
5232 FOR_EACH_VEC_ELT (tree
, fld
.decls
, i
, t
)
5233 free_lang_data_in_decl (t
);
5235 /* Traverse every type found freeing its language data. */
5236 FOR_EACH_VEC_ELT (tree
, fld
.types
, i
, t
)
5237 free_lang_data_in_type (t
);
5239 pointer_set_destroy (fld
.pset
);
5240 VEC_free (tree
, heap
, fld
.worklist
);
5241 VEC_free (tree
, heap
, fld
.decls
);
5242 VEC_free (tree
, heap
, fld
.types
);
5246 /* Free resources that are used by FE but are not needed once they are done. */
5249 free_lang_data (void)
5253 /* If we are the LTO frontend we have freed lang-specific data already. */
5255 || !flag_generate_lto
)
5258 /* Allocate and assign alias sets to the standard integer types
5259 while the slots are still in the way the frontends generated them. */
5260 for (i
= 0; i
< itk_none
; ++i
)
5261 if (integer_types
[i
])
5262 TYPE_ALIAS_SET (integer_types
[i
]) = get_alias_set (integer_types
[i
]);
5264 /* Traverse the IL resetting language specific information for
5265 operands, expressions, etc. */
5266 free_lang_data_in_cgraph ();
5268 /* Create gimple variants for common types. */
5269 ptrdiff_type_node
= integer_type_node
;
5270 fileptr_type_node
= ptr_type_node
;
5272 /* Reset some langhooks. Do not reset types_compatible_p, it may
5273 still be used indirectly via the get_alias_set langhook. */
5274 lang_hooks
.dwarf_name
= lhd_dwarf_name
;
5275 lang_hooks
.decl_printable_name
= gimple_decl_printable_name
;
5276 /* We do not want the default decl_assembler_name implementation,
5277 rather if we have fixed everything we want a wrapper around it
5278 asserting that all non-local symbols already got their assembler
5279 name and only produce assembler names for local symbols. Or rather
5280 make sure we never call decl_assembler_name on local symbols and
5281 devise a separate, middle-end private scheme for it. */
5283 /* Reset diagnostic machinery. */
5284 tree_diagnostics_defaults (global_dc
);
5290 struct simple_ipa_opt_pass pass_ipa_free_lang_data
=
5294 "*free_lang_data", /* name */
5296 free_lang_data
, /* execute */
5299 0, /* static_pass_number */
5300 TV_IPA_FREE_LANG_DATA
, /* tv_id */
5301 0, /* properties_required */
5302 0, /* properties_provided */
5303 0, /* properties_destroyed */
5304 0, /* todo_flags_start */
5305 TODO_ggc_collect
/* todo_flags_finish */
5309 /* The backbone of is_attribute_p(). ATTR_LEN is the string length of
5310 ATTR_NAME. Also used internally by remove_attribute(). */
5312 private_is_attribute_p (const char *attr_name
, size_t attr_len
, const_tree ident
)
5314 size_t ident_len
= IDENTIFIER_LENGTH (ident
);
5316 if (ident_len
== attr_len
)
5318 if (strcmp (attr_name
, IDENTIFIER_POINTER (ident
)) == 0)
5321 else if (ident_len
== attr_len
+ 4)
5323 /* There is the possibility that ATTR is 'text' and IDENT is
5325 const char *p
= IDENTIFIER_POINTER (ident
);
5326 if (p
[0] == '_' && p
[1] == '_'
5327 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5328 && strncmp (attr_name
, p
+ 2, attr_len
) == 0)
5335 /* The backbone of lookup_attribute(). ATTR_LEN is the string length
5336 of ATTR_NAME, and LIST is not NULL_TREE. */
5338 private_lookup_attribute (const char *attr_name
, size_t attr_len
, tree list
)
5342 size_t ident_len
= IDENTIFIER_LENGTH (get_attribute_name (list
));
5344 if (ident_len
== attr_len
)
5346 if (!strcmp (attr_name
,
5347 IDENTIFIER_POINTER (get_attribute_name (list
))))
5350 /* TODO: If we made sure that attributes were stored in the
5351 canonical form without '__...__' (ie, as in 'text' as opposed
5352 to '__text__') then we could avoid the following case. */
5353 else if (ident_len
== attr_len
+ 4)
5355 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5356 if (p
[0] == '_' && p
[1] == '_'
5357 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5358 && strncmp (attr_name
, p
+ 2, attr_len
) == 0)
5361 list
= TREE_CHAIN (list
);
5367 /* A variant of lookup_attribute() that can be used with an identifier
5368 as the first argument, and where the identifier can be either
5369 'text' or '__text__'.
5371 Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
5372 return a pointer to the attribute's list element if the attribute
5373 is part of the list, or NULL_TREE if not found. If the attribute
5374 appears more than once, this only returns the first occurrence; the
5375 TREE_CHAIN of the return value should be passed back in if further
5376 occurrences are wanted. ATTR_IDENTIFIER must be an identifier but
5377 can be in the form 'text' or '__text__'. */
5379 lookup_ident_attribute (tree attr_identifier
, tree list
)
5381 gcc_checking_assert (TREE_CODE (attr_identifier
) == IDENTIFIER_NODE
);
5385 gcc_checking_assert (TREE_CODE (get_attribute_name (list
))
5386 == IDENTIFIER_NODE
);
5388 /* Identifiers can be compared directly for equality. */
5389 if (attr_identifier
== get_attribute_name (list
))
5392 /* If they are not equal, they may still be one in the form
5393 'text' while the other one is in the form '__text__'. TODO:
5394 If we were storing attributes in normalized 'text' form, then
5395 this could all go away and we could take full advantage of
5396 the fact that we're comparing identifiers. :-) */
5398 size_t attr_len
= IDENTIFIER_LENGTH (attr_identifier
);
5399 size_t ident_len
= IDENTIFIER_LENGTH (get_attribute_name (list
));
5401 if (ident_len
== attr_len
+ 4)
5403 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5404 const char *q
= IDENTIFIER_POINTER (attr_identifier
);
5405 if (p
[0] == '_' && p
[1] == '_'
5406 && p
[ident_len
- 2] == '_' && p
[ident_len
- 1] == '_'
5407 && strncmp (q
, p
+ 2, attr_len
) == 0)
5410 else if (ident_len
+ 4 == attr_len
)
5412 const char *p
= IDENTIFIER_POINTER (get_attribute_name (list
));
5413 const char *q
= IDENTIFIER_POINTER (attr_identifier
);
5414 if (q
[0] == '_' && q
[1] == '_'
5415 && q
[attr_len
- 2] == '_' && q
[attr_len
- 1] == '_'
5416 && strncmp (q
+ 2, p
, ident_len
) == 0)
5420 list
= TREE_CHAIN (list
);
5426 /* Remove any instances of attribute ATTR_NAME in LIST and return the
5430 remove_attribute (const char *attr_name
, tree list
)
5433 size_t attr_len
= strlen (attr_name
);
5435 gcc_checking_assert (attr_name
[0] != '_');
5437 for (p
= &list
; *p
; )
5440 /* TODO: If we were storing attributes in normalized form, here
5441 we could use a simple strcmp(). */
5442 if (private_is_attribute_p (attr_name
, attr_len
, get_attribute_name (l
)))
5443 *p
= TREE_CHAIN (l
);
5445 p
= &TREE_CHAIN (l
);
5451 /* Return an attribute list that is the union of a1 and a2. */
5454 merge_attributes (tree a1
, tree a2
)
5458 /* Either one unset? Take the set one. */
5460 if ((attributes
= a1
) == 0)
5463 /* One that completely contains the other? Take it. */
5465 else if (a2
!= 0 && ! attribute_list_contained (a1
, a2
))
5467 if (attribute_list_contained (a2
, a1
))
5471 /* Pick the longest list, and hang on the other list. */
5473 if (list_length (a1
) < list_length (a2
))
5474 attributes
= a2
, a2
= a1
;
5476 for (; a2
!= 0; a2
= TREE_CHAIN (a2
))
5479 for (a
= lookup_ident_attribute (get_attribute_name (a2
),
5481 a
!= NULL_TREE
&& !attribute_value_equal (a
, a2
);
5482 a
= lookup_ident_attribute (get_attribute_name (a2
),
5487 a1
= copy_node (a2
);
5488 TREE_CHAIN (a1
) = attributes
;
5497 /* Given types T1 and T2, merge their attributes and return
5501 merge_type_attributes (tree t1
, tree t2
)
5503 return merge_attributes (TYPE_ATTRIBUTES (t1
),
5504 TYPE_ATTRIBUTES (t2
));
5507 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
5511 merge_decl_attributes (tree olddecl
, tree newdecl
)
5513 return merge_attributes (DECL_ATTRIBUTES (olddecl
),
5514 DECL_ATTRIBUTES (newdecl
));
5517 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
5519 /* Specialization of merge_decl_attributes for various Windows targets.
5521 This handles the following situation:
5523 __declspec (dllimport) int foo;
5526 The second instance of `foo' nullifies the dllimport. */
5529 merge_dllimport_decl_attributes (tree old
, tree new_tree
)
5532 int delete_dllimport_p
= 1;
5534 /* What we need to do here is remove from `old' dllimport if it doesn't
5535 appear in `new'. dllimport behaves like extern: if a declaration is
5536 marked dllimport and a definition appears later, then the object
5537 is not dllimport'd. We also remove a `new' dllimport if the old list
5538 contains dllexport: dllexport always overrides dllimport, regardless
5539 of the order of declaration. */
5540 if (!VAR_OR_FUNCTION_DECL_P (new_tree
))
5541 delete_dllimport_p
= 0;
5542 else if (DECL_DLLIMPORT_P (new_tree
)
5543 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old
)))
5545 DECL_DLLIMPORT_P (new_tree
) = 0;
5546 warning (OPT_Wattributes
, "%q+D already declared with dllexport attribute: "
5547 "dllimport ignored", new_tree
);
5549 else if (DECL_DLLIMPORT_P (old
) && !DECL_DLLIMPORT_P (new_tree
))
5551 /* Warn about overriding a symbol that has already been used, e.g.:
5552 extern int __attribute__ ((dllimport)) foo;
5553 int* bar () {return &foo;}
5556 if (TREE_USED (old
))
5558 warning (0, "%q+D redeclared without dllimport attribute "
5559 "after being referenced with dll linkage", new_tree
);
5560 /* If we have used a variable's address with dllimport linkage,
5561 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
5562 decl may already have had TREE_CONSTANT computed.
5563 We still remove the attribute so that assembler code refers
5564 to '&foo rather than '_imp__foo'. */
5565 if (TREE_CODE (old
) == VAR_DECL
&& TREE_ADDRESSABLE (old
))
5566 DECL_DLLIMPORT_P (new_tree
) = 1;
5569 /* Let an inline definition silently override the external reference,
5570 but otherwise warn about attribute inconsistency. */
5571 else if (TREE_CODE (new_tree
) == VAR_DECL
5572 || !DECL_DECLARED_INLINE_P (new_tree
))
5573 warning (OPT_Wattributes
, "%q+D redeclared without dllimport attribute: "
5574 "previous dllimport ignored", new_tree
);
5577 delete_dllimport_p
= 0;
5579 a
= merge_attributes (DECL_ATTRIBUTES (old
), DECL_ATTRIBUTES (new_tree
));
5581 if (delete_dllimport_p
)
5582 a
= remove_attribute ("dllimport", a
);
5587 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
5588 struct attribute_spec.handler. */
5591 handle_dll_attribute (tree
* pnode
, tree name
, tree args
, int flags
,
5597 /* These attributes may apply to structure and union types being created,
5598 but otherwise should pass to the declaration involved. */
5601 if (flags
& ((int) ATTR_FLAG_DECL_NEXT
| (int) ATTR_FLAG_FUNCTION_NEXT
5602 | (int) ATTR_FLAG_ARRAY_NEXT
))
5604 *no_add_attrs
= true;
5605 return tree_cons (name
, args
, NULL_TREE
);
5607 if (TREE_CODE (node
) == RECORD_TYPE
5608 || TREE_CODE (node
) == UNION_TYPE
)
5610 node
= TYPE_NAME (node
);
5616 warning (OPT_Wattributes
, "%qE attribute ignored",
5618 *no_add_attrs
= true;
5623 if (TREE_CODE (node
) != FUNCTION_DECL
5624 && TREE_CODE (node
) != VAR_DECL
5625 && TREE_CODE (node
) != TYPE_DECL
)
5627 *no_add_attrs
= true;
5628 warning (OPT_Wattributes
, "%qE attribute ignored",
5633 if (TREE_CODE (node
) == TYPE_DECL
5634 && TREE_CODE (TREE_TYPE (node
)) != RECORD_TYPE
5635 && TREE_CODE (TREE_TYPE (node
)) != UNION_TYPE
)
5637 *no_add_attrs
= true;
5638 warning (OPT_Wattributes
, "%qE attribute ignored",
5643 is_dllimport
= is_attribute_p ("dllimport", name
);
5645 /* Report error on dllimport ambiguities seen now before they cause
5649 /* Honor any target-specific overrides. */
5650 if (!targetm
.valid_dllimport_attribute_p (node
))
5651 *no_add_attrs
= true;
5653 else if (TREE_CODE (node
) == FUNCTION_DECL
5654 && DECL_DECLARED_INLINE_P (node
))
5656 warning (OPT_Wattributes
, "inline function %q+D declared as "
5657 " dllimport: attribute ignored", node
);
5658 *no_add_attrs
= true;
5660 /* Like MS, treat definition of dllimported variables and
5661 non-inlined functions on declaration as syntax errors. */
5662 else if (TREE_CODE (node
) == FUNCTION_DECL
&& DECL_INITIAL (node
))
5664 error ("function %q+D definition is marked dllimport", node
);
5665 *no_add_attrs
= true;
5668 else if (TREE_CODE (node
) == VAR_DECL
)
5670 if (DECL_INITIAL (node
))
5672 error ("variable %q+D definition is marked dllimport",
5674 *no_add_attrs
= true;
5677 /* `extern' needn't be specified with dllimport.
5678 Specify `extern' now and hope for the best. Sigh. */
5679 DECL_EXTERNAL (node
) = 1;
5680 /* Also, implicitly give dllimport'd variables declared within
5681 a function global scope, unless declared static. */
5682 if (current_function_decl
!= NULL_TREE
&& !TREE_STATIC (node
))
5683 TREE_PUBLIC (node
) = 1;
5686 if (*no_add_attrs
== false)
5687 DECL_DLLIMPORT_P (node
) = 1;
5689 else if (TREE_CODE (node
) == FUNCTION_DECL
5690 && DECL_DECLARED_INLINE_P (node
)
5691 && flag_keep_inline_dllexport
)
5692 /* An exported function, even if inline, must be emitted. */
5693 DECL_EXTERNAL (node
) = 0;
5695 /* Report error if symbol is not accessible at global scope. */
5696 if (!TREE_PUBLIC (node
)
5697 && (TREE_CODE (node
) == VAR_DECL
5698 || TREE_CODE (node
) == FUNCTION_DECL
))
5700 error ("external linkage required for symbol %q+D because of "
5701 "%qE attribute", node
, name
);
5702 *no_add_attrs
= true;
5705 /* A dllexport'd entity must have default visibility so that other
5706 program units (shared libraries or the main executable) can see
5707 it. A dllimport'd entity must have default visibility so that
5708 the linker knows that undefined references within this program
5709 unit can be resolved by the dynamic linker. */
5712 if (DECL_VISIBILITY_SPECIFIED (node
)
5713 && DECL_VISIBILITY (node
) != VISIBILITY_DEFAULT
)
5714 error ("%qE implies default visibility, but %qD has already "
5715 "been declared with a different visibility",
5717 DECL_VISIBILITY (node
) = VISIBILITY_DEFAULT
;
5718 DECL_VISIBILITY_SPECIFIED (node
) = 1;
5724 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
5726 /* Set the type qualifiers for TYPE to TYPE_QUALS, which is a bitmask
5727 of the various TYPE_QUAL values. */
5730 set_type_quals (tree type
, int type_quals
)
5732 TYPE_READONLY (type
) = (type_quals
& TYPE_QUAL_CONST
) != 0;
5733 TYPE_VOLATILE (type
) = (type_quals
& TYPE_QUAL_VOLATILE
) != 0;
5734 TYPE_RESTRICT (type
) = (type_quals
& TYPE_QUAL_RESTRICT
) != 0;
5735 TYPE_ADDR_SPACE (type
) = DECODE_QUAL_ADDR_SPACE (type_quals
);
5738 /* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */
5741 check_qualified_type (const_tree cand
, const_tree base
, int type_quals
)
5743 return (TYPE_QUALS (cand
) == type_quals
5744 && TYPE_NAME (cand
) == TYPE_NAME (base
)
5745 /* Apparently this is needed for Objective-C. */
5746 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
5747 /* Check alignment. */
5748 && TYPE_ALIGN (cand
) == TYPE_ALIGN (base
)
5749 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
5750 TYPE_ATTRIBUTES (base
)));
5753 /* Returns true iff CAND is equivalent to BASE with ALIGN. */
5756 check_aligned_type (const_tree cand
, const_tree base
, unsigned int align
)
5758 return (TYPE_QUALS (cand
) == TYPE_QUALS (base
)
5759 && TYPE_NAME (cand
) == TYPE_NAME (base
)
5760 /* Apparently this is needed for Objective-C. */
5761 && TYPE_CONTEXT (cand
) == TYPE_CONTEXT (base
)
5762 /* Check alignment. */
5763 && TYPE_ALIGN (cand
) == align
5764 && attribute_list_equal (TYPE_ATTRIBUTES (cand
),
5765 TYPE_ATTRIBUTES (base
)));
5768 /* Return a version of the TYPE, qualified as indicated by the
5769 TYPE_QUALS, if one exists. If no qualified version exists yet,
5770 return NULL_TREE. */
5773 get_qualified_type (tree type
, int type_quals
)
5777 if (TYPE_QUALS (type
) == type_quals
)
5780 /* Search the chain of variants to see if there is already one there just
5781 like the one we need to have. If so, use that existing one. We must
5782 preserve the TYPE_NAME, since there is code that depends on this. */
5783 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
5784 if (check_qualified_type (t
, type
, type_quals
))
5790 /* Like get_qualified_type, but creates the type if it does not
5791 exist. This function never returns NULL_TREE. */
5794 build_qualified_type (tree type
, int type_quals
)
5798 /* See if we already have the appropriate qualified variant. */
5799 t
= get_qualified_type (type
, type_quals
);
5801 /* If not, build it. */
5804 t
= build_variant_type_copy (type
);
5805 set_type_quals (t
, type_quals
);
5807 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
5808 /* Propagate structural equality. */
5809 SET_TYPE_STRUCTURAL_EQUALITY (t
);
5810 else if (TYPE_CANONICAL (type
) != type
)
5811 /* Build the underlying canonical type, since it is different
5813 TYPE_CANONICAL (t
) = build_qualified_type (TYPE_CANONICAL (type
),
5816 /* T is its own canonical type. */
5817 TYPE_CANONICAL (t
) = t
;
5824 /* Create a variant of type T with alignment ALIGN. */
5827 build_aligned_type (tree type
, unsigned int align
)
5831 if (TYPE_PACKED (type
)
5832 || TYPE_ALIGN (type
) == align
)
5835 for (t
= TYPE_MAIN_VARIANT (type
); t
; t
= TYPE_NEXT_VARIANT (t
))
5836 if (check_aligned_type (t
, type
, align
))
5839 t
= build_variant_type_copy (type
);
5840 TYPE_ALIGN (t
) = align
;
5845 /* Create a new distinct copy of TYPE. The new type is made its own
5846 MAIN_VARIANT. If TYPE requires structural equality checks, the
5847 resulting type requires structural equality checks; otherwise, its
5848 TYPE_CANONICAL points to itself. */
5851 build_distinct_type_copy (tree type
)
5853 tree t
= copy_node (type
);
5855 TYPE_POINTER_TO (t
) = 0;
5856 TYPE_REFERENCE_TO (t
) = 0;
5858 /* Set the canonical type either to a new equivalence class, or
5859 propagate the need for structural equality checks. */
5860 if (TYPE_STRUCTURAL_EQUALITY_P (type
))
5861 SET_TYPE_STRUCTURAL_EQUALITY (t
);
5863 TYPE_CANONICAL (t
) = t
;
5865 /* Make it its own variant. */
5866 TYPE_MAIN_VARIANT (t
) = t
;
5867 TYPE_NEXT_VARIANT (t
) = 0;
5869 /* Note that it is now possible for TYPE_MIN_VALUE to be a value
5870 whose TREE_TYPE is not t. This can also happen in the Ada
5871 frontend when using subtypes. */
5876 /* Create a new variant of TYPE, equivalent but distinct. This is so
5877 the caller can modify it. TYPE_CANONICAL for the return type will
5878 be equivalent to TYPE_CANONICAL of TYPE, indicating that the types
5879 are considered equal by the language itself (or that both types
5880 require structural equality checks). */
5883 build_variant_type_copy (tree type
)
5885 tree t
, m
= TYPE_MAIN_VARIANT (type
);
5887 t
= build_distinct_type_copy (type
);
5889 /* Since we're building a variant, assume that it is a non-semantic
5890 variant. This also propagates TYPE_STRUCTURAL_EQUALITY_P. */
5891 TYPE_CANONICAL (t
) = TYPE_CANONICAL (type
);
5893 /* Add the new type to the chain of variants of TYPE. */
5894 TYPE_NEXT_VARIANT (t
) = TYPE_NEXT_VARIANT (m
);
5895 TYPE_NEXT_VARIANT (m
) = t
;
5896 TYPE_MAIN_VARIANT (t
) = m
;
5901 /* Return true if the from tree in both tree maps are equal. */
5904 tree_map_base_eq (const void *va
, const void *vb
)
5906 const struct tree_map_base
*const a
= (const struct tree_map_base
*) va
,
5907 *const b
= (const struct tree_map_base
*) vb
;
5908 return (a
->from
== b
->from
);
5911 /* Hash a from tree in a tree_base_map. */
5914 tree_map_base_hash (const void *item
)
5916 return htab_hash_pointer (((const struct tree_map_base
*)item
)->from
);
5919 /* Return true if this tree map structure is marked for garbage collection
5920 purposes. We simply return true if the from tree is marked, so that this
5921 structure goes away when the from tree goes away. */
5924 tree_map_base_marked_p (const void *p
)
5926 return ggc_marked_p (((const struct tree_map_base
*) p
)->from
);
5929 /* Hash a from tree in a tree_map. */
5932 tree_map_hash (const void *item
)
5934 return (((const struct tree_map
*) item
)->hash
);
5937 /* Hash a from tree in a tree_decl_map. */
5940 tree_decl_map_hash (const void *item
)
5942 return DECL_UID (((const struct tree_decl_map
*) item
)->base
.from
);
5945 /* Return the initialization priority for DECL. */
5948 decl_init_priority_lookup (tree decl
)
5950 struct tree_priority_map
*h
;
5951 struct tree_map_base in
;
5953 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
5955 h
= (struct tree_priority_map
*) htab_find (init_priority_for_decl
, &in
);
5956 return h
? h
->init
: DEFAULT_INIT_PRIORITY
;
5959 /* Return the finalization priority for DECL. */
5962 decl_fini_priority_lookup (tree decl
)
5964 struct tree_priority_map
*h
;
5965 struct tree_map_base in
;
5967 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
5969 h
= (struct tree_priority_map
*) htab_find (init_priority_for_decl
, &in
);
5970 return h
? h
->fini
: DEFAULT_INIT_PRIORITY
;
5973 /* Return the initialization and finalization priority information for
5974 DECL. If there is no previous priority information, a freshly
5975 allocated structure is returned. */
5977 static struct tree_priority_map
*
5978 decl_priority_info (tree decl
)
5980 struct tree_priority_map in
;
5981 struct tree_priority_map
*h
;
5984 in
.base
.from
= decl
;
5985 loc
= htab_find_slot (init_priority_for_decl
, &in
, INSERT
);
5986 h
= (struct tree_priority_map
*) *loc
;
5989 h
= ggc_alloc_cleared_tree_priority_map ();
5991 h
->base
.from
= decl
;
5992 h
->init
= DEFAULT_INIT_PRIORITY
;
5993 h
->fini
= DEFAULT_INIT_PRIORITY
;
5999 /* Set the initialization priority for DECL to PRIORITY. */
6002 decl_init_priority_insert (tree decl
, priority_type priority
)
6004 struct tree_priority_map
*h
;
6006 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
6007 if (priority
== DEFAULT_INIT_PRIORITY
)
6009 h
= decl_priority_info (decl
);
6013 /* Set the finalization priority for DECL to PRIORITY. */
6016 decl_fini_priority_insert (tree decl
, priority_type priority
)
6018 struct tree_priority_map
*h
;
6020 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
6021 if (priority
== DEFAULT_INIT_PRIORITY
)
6023 h
= decl_priority_info (decl
);
6027 /* Print out the statistics for the DECL_DEBUG_EXPR hash table. */
6030 print_debug_expr_statistics (void)
6032 fprintf (stderr
, "DECL_DEBUG_EXPR hash: size %ld, %ld elements, %f collisions\n",
6033 (long) htab_size (debug_expr_for_decl
),
6034 (long) htab_elements (debug_expr_for_decl
),
6035 htab_collisions (debug_expr_for_decl
));
6038 /* Print out the statistics for the DECL_VALUE_EXPR hash table. */
6041 print_value_expr_statistics (void)
6043 fprintf (stderr
, "DECL_VALUE_EXPR hash: size %ld, %ld elements, %f collisions\n",
6044 (long) htab_size (value_expr_for_decl
),
6045 (long) htab_elements (value_expr_for_decl
),
6046 htab_collisions (value_expr_for_decl
));
6049 /* Lookup a debug expression for FROM, and return it if we find one. */
6052 decl_debug_expr_lookup (tree from
)
6054 struct tree_decl_map
*h
, in
;
6055 in
.base
.from
= from
;
6057 h
= (struct tree_decl_map
*)
6058 htab_find_with_hash (debug_expr_for_decl
, &in
, DECL_UID (from
));
6064 /* Insert a mapping FROM->TO in the debug expression hashtable. */
6067 decl_debug_expr_insert (tree from
, tree to
)
6069 struct tree_decl_map
*h
;
6072 h
= ggc_alloc_tree_decl_map ();
6073 h
->base
.from
= from
;
6075 loc
= htab_find_slot_with_hash (debug_expr_for_decl
, h
, DECL_UID (from
),
6077 *(struct tree_decl_map
**) loc
= h
;
6080 /* Lookup a value expression for FROM, and return it if we find one. */
6083 decl_value_expr_lookup (tree from
)
6085 struct tree_decl_map
*h
, in
;
6086 in
.base
.from
= from
;
6088 h
= (struct tree_decl_map
*)
6089 htab_find_with_hash (value_expr_for_decl
, &in
, DECL_UID (from
));
6095 /* Insert a mapping FROM->TO in the value expression hashtable. */
6098 decl_value_expr_insert (tree from
, tree to
)
6100 struct tree_decl_map
*h
;
6103 h
= ggc_alloc_tree_decl_map ();
6104 h
->base
.from
= from
;
6106 loc
= htab_find_slot_with_hash (value_expr_for_decl
, h
, DECL_UID (from
),
6108 *(struct tree_decl_map
**) loc
= h
;
6111 /* Lookup a vector of debug arguments for FROM, and return it if we
6115 decl_debug_args_lookup (tree from
)
6117 struct tree_vec_map
*h
, in
;
6119 if (!DECL_HAS_DEBUG_ARGS_P (from
))
6121 gcc_checking_assert (debug_args_for_decl
!= NULL
);
6122 in
.base
.from
= from
;
6123 h
= (struct tree_vec_map
*)
6124 htab_find_with_hash (debug_args_for_decl
, &in
, DECL_UID (from
));
6130 /* Insert a mapping FROM->empty vector of debug arguments in the value
6131 expression hashtable. */
6134 decl_debug_args_insert (tree from
)
6136 struct tree_vec_map
*h
;
6139 if (DECL_HAS_DEBUG_ARGS_P (from
))
6140 return decl_debug_args_lookup (from
);
6141 if (debug_args_for_decl
== NULL
)
6142 debug_args_for_decl
= htab_create_ggc (64, tree_vec_map_hash
,
6143 tree_vec_map_eq
, 0);
6144 h
= ggc_alloc_tree_vec_map ();
6145 h
->base
.from
= from
;
6147 loc
= htab_find_slot_with_hash (debug_args_for_decl
, h
, DECL_UID (from
),
6149 *(struct tree_vec_map
**) loc
= h
;
6150 DECL_HAS_DEBUG_ARGS_P (from
) = 1;
6154 /* Hashing of types so that we don't make duplicates.
6155 The entry point is `type_hash_canon'. */
6157 /* Compute a hash code for a list of types (chain of TREE_LIST nodes
6158 with types in the TREE_VALUE slots), by adding the hash codes
6159 of the individual types. */
6162 type_hash_list (const_tree list
, hashval_t hashcode
)
6166 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
6167 if (TREE_VALUE (tail
) != error_mark_node
)
6168 hashcode
= iterative_hash_object (TYPE_HASH (TREE_VALUE (tail
)),
6174 /* These are the Hashtable callback functions. */
6176 /* Returns true iff the types are equivalent. */
6179 type_hash_eq (const void *va
, const void *vb
)
6181 const struct type_hash
*const a
= (const struct type_hash
*) va
,
6182 *const b
= (const struct type_hash
*) vb
;
6184 /* First test the things that are the same for all types. */
6185 if (a
->hash
!= b
->hash
6186 || TREE_CODE (a
->type
) != TREE_CODE (b
->type
)
6187 || TREE_TYPE (a
->type
) != TREE_TYPE (b
->type
)
6188 || !attribute_list_equal (TYPE_ATTRIBUTES (a
->type
),
6189 TYPE_ATTRIBUTES (b
->type
))
6190 || (TREE_CODE (a
->type
) != COMPLEX_TYPE
6191 && TYPE_NAME (a
->type
) != TYPE_NAME (b
->type
)))
6194 /* Be careful about comparing arrays before and after the element type
6195 has been completed; don't compare TYPE_ALIGN unless both types are
6197 if (COMPLETE_TYPE_P (a
->type
) && COMPLETE_TYPE_P (b
->type
)
6198 && (TYPE_ALIGN (a
->type
) != TYPE_ALIGN (b
->type
)
6199 || TYPE_MODE (a
->type
) != TYPE_MODE (b
->type
)))
6202 switch (TREE_CODE (a
->type
))
6207 case REFERENCE_TYPE
:
6212 return TYPE_VECTOR_SUBPARTS (a
->type
) == TYPE_VECTOR_SUBPARTS (b
->type
);
6215 if (TYPE_VALUES (a
->type
) != TYPE_VALUES (b
->type
)
6216 && !(TYPE_VALUES (a
->type
)
6217 && TREE_CODE (TYPE_VALUES (a
->type
)) == TREE_LIST
6218 && TYPE_VALUES (b
->type
)
6219 && TREE_CODE (TYPE_VALUES (b
->type
)) == TREE_LIST
6220 && type_list_equal (TYPE_VALUES (a
->type
),
6221 TYPE_VALUES (b
->type
))))
6224 /* ... fall through ... */
6229 return ((TYPE_MAX_VALUE (a
->type
) == TYPE_MAX_VALUE (b
->type
)
6230 || tree_int_cst_equal (TYPE_MAX_VALUE (a
->type
),
6231 TYPE_MAX_VALUE (b
->type
)))
6232 && (TYPE_MIN_VALUE (a
->type
) == TYPE_MIN_VALUE (b
->type
)
6233 || tree_int_cst_equal (TYPE_MIN_VALUE (a
->type
),
6234 TYPE_MIN_VALUE (b
->type
))));
6236 case FIXED_POINT_TYPE
:
6237 return TYPE_SATURATING (a
->type
) == TYPE_SATURATING (b
->type
);
6240 return TYPE_OFFSET_BASETYPE (a
->type
) == TYPE_OFFSET_BASETYPE (b
->type
);
6243 if (TYPE_METHOD_BASETYPE (a
->type
) == TYPE_METHOD_BASETYPE (b
->type
)
6244 && (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6245 || (TYPE_ARG_TYPES (a
->type
)
6246 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6247 && TYPE_ARG_TYPES (b
->type
)
6248 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6249 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6250 TYPE_ARG_TYPES (b
->type
)))))
6254 return TYPE_DOMAIN (a
->type
) == TYPE_DOMAIN (b
->type
);
6258 case QUAL_UNION_TYPE
:
6259 return (TYPE_FIELDS (a
->type
) == TYPE_FIELDS (b
->type
)
6260 || (TYPE_FIELDS (a
->type
)
6261 && TREE_CODE (TYPE_FIELDS (a
->type
)) == TREE_LIST
6262 && TYPE_FIELDS (b
->type
)
6263 && TREE_CODE (TYPE_FIELDS (b
->type
)) == TREE_LIST
6264 && type_list_equal (TYPE_FIELDS (a
->type
),
6265 TYPE_FIELDS (b
->type
))));
6268 if (TYPE_ARG_TYPES (a
->type
) == TYPE_ARG_TYPES (b
->type
)
6269 || (TYPE_ARG_TYPES (a
->type
)
6270 && TREE_CODE (TYPE_ARG_TYPES (a
->type
)) == TREE_LIST
6271 && TYPE_ARG_TYPES (b
->type
)
6272 && TREE_CODE (TYPE_ARG_TYPES (b
->type
)) == TREE_LIST
6273 && type_list_equal (TYPE_ARG_TYPES (a
->type
),
6274 TYPE_ARG_TYPES (b
->type
))))
6282 if (lang_hooks
.types
.type_hash_eq
!= NULL
)
6283 return lang_hooks
.types
.type_hash_eq (a
->type
, b
->type
);
6288 /* Return the cached hash value. */
6291 type_hash_hash (const void *item
)
6293 return ((const struct type_hash
*) item
)->hash
;
6296 /* Look in the type hash table for a type isomorphic to TYPE.
6297 If one is found, return it. Otherwise return 0. */
6300 type_hash_lookup (hashval_t hashcode
, tree type
)
6302 struct type_hash
*h
, in
;
6304 /* The TYPE_ALIGN field of a type is set by layout_type(), so we
6305 must call that routine before comparing TYPE_ALIGNs. */
6311 h
= (struct type_hash
*) htab_find_with_hash (type_hash_table
, &in
,
6318 /* Add an entry to the type-hash-table
6319 for a type TYPE whose hash code is HASHCODE. */
6322 type_hash_add (hashval_t hashcode
, tree type
)
6324 struct type_hash
*h
;
6327 h
= ggc_alloc_type_hash ();
6330 loc
= htab_find_slot_with_hash (type_hash_table
, h
, hashcode
, INSERT
);
6334 /* Given TYPE, and HASHCODE its hash code, return the canonical
6335 object for an identical type if one already exists.
6336 Otherwise, return TYPE, and record it as the canonical object.
6338 To use this function, first create a type of the sort you want.
6339 Then compute its hash code from the fields of the type that
6340 make it different from other similar types.
6341 Then call this function and use the value. */
6344 type_hash_canon (unsigned int hashcode
, tree type
)
6348 /* The hash table only contains main variants, so ensure that's what we're
6350 gcc_assert (TYPE_MAIN_VARIANT (type
) == type
);
6352 /* See if the type is in the hash table already. If so, return it.
6353 Otherwise, add the type. */
6354 t1
= type_hash_lookup (hashcode
, type
);
6357 if (GATHER_STATISTICS
)
6359 tree_code_counts
[(int) TREE_CODE (type
)]--;
6360 tree_node_counts
[(int) t_kind
]--;
6361 tree_node_sizes
[(int) t_kind
] -= sizeof (struct tree_type_non_common
);
6367 type_hash_add (hashcode
, type
);
6372 /* See if the data pointed to by the type hash table is marked. We consider
6373 it marked if the type is marked or if a debug type number or symbol
6374 table entry has been made for the type. */
6377 type_hash_marked_p (const void *p
)
6379 const_tree
const type
= ((const struct type_hash
*) p
)->type
;
6381 return ggc_marked_p (type
);
6385 print_type_hash_statistics (void)
6387 fprintf (stderr
, "Type hash: size %ld, %ld elements, %f collisions\n",
6388 (long) htab_size (type_hash_table
),
6389 (long) htab_elements (type_hash_table
),
6390 htab_collisions (type_hash_table
));
6393 /* Compute a hash code for a list of attributes (chain of TREE_LIST nodes
6394 with names in the TREE_PURPOSE slots and args in the TREE_VALUE slots),
6395 by adding the hash codes of the individual attributes. */
6398 attribute_hash_list (const_tree list
, hashval_t hashcode
)
6402 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
6403 /* ??? Do we want to add in TREE_VALUE too? */
6404 hashcode
= iterative_hash_object
6405 (IDENTIFIER_HASH_VALUE (get_attribute_name (tail
)), hashcode
);
6409 /* Given two lists of attributes, return true if list l2 is
6410 equivalent to l1. */
6413 attribute_list_equal (const_tree l1
, const_tree l2
)
6418 return attribute_list_contained (l1
, l2
)
6419 && attribute_list_contained (l2
, l1
);
6422 /* Given two lists of attributes, return true if list L2 is
6423 completely contained within L1. */
6424 /* ??? This would be faster if attribute names were stored in a canonicalized
6425 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
6426 must be used to show these elements are equivalent (which they are). */
6427 /* ??? It's not clear that attributes with arguments will always be handled
6431 attribute_list_contained (const_tree l1
, const_tree l2
)
6435 /* First check the obvious, maybe the lists are identical. */
6439 /* Maybe the lists are similar. */
6440 for (t1
= l1
, t2
= l2
;
6442 && get_attribute_name (t1
) == get_attribute_name (t2
)
6443 && TREE_VALUE (t1
) == TREE_VALUE (t2
);
6444 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
6447 /* Maybe the lists are equal. */
6448 if (t1
== 0 && t2
== 0)
6451 for (; t2
!= 0; t2
= TREE_CHAIN (t2
))
6454 /* This CONST_CAST is okay because lookup_attribute does not
6455 modify its argument and the return value is assigned to a
6457 for (attr
= lookup_ident_attribute (get_attribute_name (t2
), CONST_CAST_TREE(l1
));
6458 attr
!= NULL_TREE
&& !attribute_value_equal (t2
, attr
);
6459 attr
= lookup_ident_attribute (get_attribute_name (t2
), TREE_CHAIN (attr
)))
6462 if (attr
== NULL_TREE
)
6469 /* Given two lists of types
6470 (chains of TREE_LIST nodes with types in the TREE_VALUE slots)
6471 return 1 if the lists contain the same types in the same order.
6472 Also, the TREE_PURPOSEs must match. */
6475 type_list_equal (const_tree l1
, const_tree l2
)
6479 for (t1
= l1
, t2
= l2
; t1
&& t2
; t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
6480 if (TREE_VALUE (t1
) != TREE_VALUE (t2
)
6481 || (TREE_PURPOSE (t1
) != TREE_PURPOSE (t2
)
6482 && ! (1 == simple_cst_equal (TREE_PURPOSE (t1
), TREE_PURPOSE (t2
))
6483 && (TREE_TYPE (TREE_PURPOSE (t1
))
6484 == TREE_TYPE (TREE_PURPOSE (t2
))))))
6490 /* Returns the number of arguments to the FUNCTION_TYPE or METHOD_TYPE
6491 given by TYPE. If the argument list accepts variable arguments,
6492 then this function counts only the ordinary arguments. */
6495 type_num_arguments (const_tree type
)
6500 for (t
= TYPE_ARG_TYPES (type
); t
; t
= TREE_CHAIN (t
))
6501 /* If the function does not take a variable number of arguments,
6502 the last element in the list will have type `void'. */
6503 if (VOID_TYPE_P (TREE_VALUE (t
)))
6511 /* Nonzero if integer constants T1 and T2
6512 represent the same constant value. */
6515 tree_int_cst_equal (const_tree t1
, const_tree t2
)
6520 if (t1
== 0 || t2
== 0)
6523 if (TREE_CODE (t1
) == INTEGER_CST
6524 && TREE_CODE (t2
) == INTEGER_CST
6525 && TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
6526 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
))
6532 /* Nonzero if integer constants T1 and T2 represent values that satisfy <.
6533 The precise way of comparison depends on their data type. */
6536 tree_int_cst_lt (const_tree t1
, const_tree t2
)
6541 if (TYPE_UNSIGNED (TREE_TYPE (t1
)) != TYPE_UNSIGNED (TREE_TYPE (t2
)))
6543 int t1_sgn
= tree_int_cst_sgn (t1
);
6544 int t2_sgn
= tree_int_cst_sgn (t2
);
6546 if (t1_sgn
< t2_sgn
)
6548 else if (t1_sgn
> t2_sgn
)
6550 /* Otherwise, both are non-negative, so we compare them as
6551 unsigned just in case one of them would overflow a signed
6554 else if (!TYPE_UNSIGNED (TREE_TYPE (t1
)))
6555 return INT_CST_LT (t1
, t2
);
6557 return INT_CST_LT_UNSIGNED (t1
, t2
);
6560 /* Returns -1 if T1 < T2, 0 if T1 == T2, and 1 if T1 > T2. */
6563 tree_int_cst_compare (const_tree t1
, const_tree t2
)
6565 if (tree_int_cst_lt (t1
, t2
))
6567 else if (tree_int_cst_lt (t2
, t1
))
6573 /* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
6574 the host. If POS is zero, the value can be represented in a single
6575 HOST_WIDE_INT. If POS is nonzero, the value must be non-negative and can
6576 be represented in a single unsigned HOST_WIDE_INT. */
6579 host_integerp (const_tree t
, int pos
)
6584 return (TREE_CODE (t
) == INTEGER_CST
6585 && ((TREE_INT_CST_HIGH (t
) == 0
6586 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) >= 0)
6587 || (! pos
&& TREE_INT_CST_HIGH (t
) == -1
6588 && (HOST_WIDE_INT
) TREE_INT_CST_LOW (t
) < 0
6589 && !TYPE_UNSIGNED (TREE_TYPE (t
)))
6590 || (pos
&& TREE_INT_CST_HIGH (t
) == 0)));
6593 /* Return the HOST_WIDE_INT least significant bits of T if it is an
6594 INTEGER_CST and there is no overflow. POS is nonzero if the result must
6595 be non-negative. We must be able to satisfy the above conditions. */
6598 tree_low_cst (const_tree t
, int pos
)
6600 gcc_assert (host_integerp (t
, pos
));
6601 return TREE_INT_CST_LOW (t
);
6604 /* Return the HOST_WIDE_INT least significant bits of T, a sizetype
6605 kind INTEGER_CST. This makes sure to properly sign-extend the
6609 size_low_cst (const_tree t
)
6611 double_int d
= tree_to_double_int (t
);
6612 return d
.sext (TYPE_PRECISION (TREE_TYPE (t
))).low
;
6615 /* Return the most significant (sign) bit of T. */
6618 tree_int_cst_sign_bit (const_tree t
)
6620 unsigned bitno
= TYPE_PRECISION (TREE_TYPE (t
)) - 1;
6621 unsigned HOST_WIDE_INT w
;
6623 if (bitno
< HOST_BITS_PER_WIDE_INT
)
6624 w
= TREE_INT_CST_LOW (t
);
6627 w
= TREE_INT_CST_HIGH (t
);
6628 bitno
-= HOST_BITS_PER_WIDE_INT
;
6631 return (w
>> bitno
) & 1;
6634 /* Return an indication of the sign of the integer constant T.
6635 The return value is -1 if T < 0, 0 if T == 0, and 1 if T > 0.
6636 Note that -1 will never be returned if T's type is unsigned. */
6639 tree_int_cst_sgn (const_tree t
)
6641 if (TREE_INT_CST_LOW (t
) == 0 && TREE_INT_CST_HIGH (t
) == 0)
6643 else if (TYPE_UNSIGNED (TREE_TYPE (t
)))
6645 else if (TREE_INT_CST_HIGH (t
) < 0)
6651 /* Return the minimum number of bits needed to represent VALUE in a
6652 signed or unsigned type, UNSIGNEDP says which. */
6655 tree_int_cst_min_precision (tree value
, bool unsignedp
)
6659 /* If the value is negative, compute its negative minus 1. The latter
6660 adjustment is because the absolute value of the largest negative value
6661 is one larger than the largest positive value. This is equivalent to
6662 a bit-wise negation, so use that operation instead. */
6664 if (tree_int_cst_sgn (value
) < 0)
6665 value
= fold_build1 (BIT_NOT_EXPR
, TREE_TYPE (value
), value
);
6667 /* Return the number of bits needed, taking into account the fact
6668 that we need one more bit for a signed than unsigned type. */
6670 if (integer_zerop (value
))
6673 log
= tree_floor_log2 (value
);
6675 return log
+ 1 + !unsignedp
;
6678 /* Compare two constructor-element-type constants. Return 1 if the lists
6679 are known to be equal; otherwise return 0. */
6682 simple_cst_list_equal (const_tree l1
, const_tree l2
)
6684 while (l1
!= NULL_TREE
&& l2
!= NULL_TREE
)
6686 if (simple_cst_equal (TREE_VALUE (l1
), TREE_VALUE (l2
)) != 1)
6689 l1
= TREE_CHAIN (l1
);
6690 l2
= TREE_CHAIN (l2
);
6696 /* Return truthvalue of whether T1 is the same tree structure as T2.
6697 Return 1 if they are the same.
6698 Return 0 if they are understandably different.
6699 Return -1 if either contains tree structure not understood by
6703 simple_cst_equal (const_tree t1
, const_tree t2
)
6705 enum tree_code code1
, code2
;
6711 if (t1
== 0 || t2
== 0)
6714 code1
= TREE_CODE (t1
);
6715 code2
= TREE_CODE (t2
);
6717 if (CONVERT_EXPR_CODE_P (code1
) || code1
== NON_LVALUE_EXPR
)
6719 if (CONVERT_EXPR_CODE_P (code2
)
6720 || code2
== NON_LVALUE_EXPR
)
6721 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6723 return simple_cst_equal (TREE_OPERAND (t1
, 0), t2
);
6726 else if (CONVERT_EXPR_CODE_P (code2
)
6727 || code2
== NON_LVALUE_EXPR
)
6728 return simple_cst_equal (t1
, TREE_OPERAND (t2
, 0));
6736 return (TREE_INT_CST_LOW (t1
) == TREE_INT_CST_LOW (t2
)
6737 && TREE_INT_CST_HIGH (t1
) == TREE_INT_CST_HIGH (t2
));
6740 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
6743 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
6746 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
6747 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
6748 TREE_STRING_LENGTH (t1
)));
6752 unsigned HOST_WIDE_INT idx
;
6753 VEC(constructor_elt
, gc
) *v1
= CONSTRUCTOR_ELTS (t1
);
6754 VEC(constructor_elt
, gc
) *v2
= CONSTRUCTOR_ELTS (t2
);
6756 if (VEC_length (constructor_elt
, v1
) != VEC_length (constructor_elt
, v2
))
6759 for (idx
= 0; idx
< VEC_length (constructor_elt
, v1
); ++idx
)
6760 /* ??? Should we handle also fields here? */
6761 if (!simple_cst_equal (VEC_index (constructor_elt
, v1
, idx
).value
,
6762 VEC_index (constructor_elt
, v2
, idx
).value
))
6768 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6771 cmp
= simple_cst_equal (CALL_EXPR_FN (t1
), CALL_EXPR_FN (t2
));
6774 if (call_expr_nargs (t1
) != call_expr_nargs (t2
))
6777 const_tree arg1
, arg2
;
6778 const_call_expr_arg_iterator iter1
, iter2
;
6779 for (arg1
= first_const_call_expr_arg (t1
, &iter1
),
6780 arg2
= first_const_call_expr_arg (t2
, &iter2
);
6782 arg1
= next_const_call_expr_arg (&iter1
),
6783 arg2
= next_const_call_expr_arg (&iter2
))
6785 cmp
= simple_cst_equal (arg1
, arg2
);
6789 return arg1
== arg2
;
6793 /* Special case: if either target is an unallocated VAR_DECL,
6794 it means that it's going to be unified with whatever the
6795 TARGET_EXPR is really supposed to initialize, so treat it
6796 as being equivalent to anything. */
6797 if ((TREE_CODE (TREE_OPERAND (t1
, 0)) == VAR_DECL
6798 && DECL_NAME (TREE_OPERAND (t1
, 0)) == NULL_TREE
6799 && !DECL_RTL_SET_P (TREE_OPERAND (t1
, 0)))
6800 || (TREE_CODE (TREE_OPERAND (t2
, 0)) == VAR_DECL
6801 && DECL_NAME (TREE_OPERAND (t2
, 0)) == NULL_TREE
6802 && !DECL_RTL_SET_P (TREE_OPERAND (t2
, 0))))
6805 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6810 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1));
6812 case WITH_CLEANUP_EXPR
:
6813 cmp
= simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6817 return simple_cst_equal (TREE_OPERAND (t1
, 1), TREE_OPERAND (t1
, 1));
6820 if (TREE_OPERAND (t1
, 1) == TREE_OPERAND (t2
, 1))
6821 return simple_cst_equal (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
6835 /* This general rule works for most tree codes. All exceptions should be
6836 handled above. If this is a language-specific tree code, we can't
6837 trust what might be in the operand, so say we don't know
6839 if ((int) code1
>= (int) LAST_AND_UNUSED_TREE_CODE
)
6842 switch (TREE_CODE_CLASS (code1
))
6846 case tcc_comparison
:
6847 case tcc_expression
:
6851 for (i
= 0; i
< TREE_CODE_LENGTH (code1
); i
++)
6853 cmp
= simple_cst_equal (TREE_OPERAND (t1
, i
), TREE_OPERAND (t2
, i
));
6865 /* Compare the value of T, an INTEGER_CST, with U, an unsigned integer value.
6866 Return -1, 0, or 1 if the value of T is less than, equal to, or greater
6867 than U, respectively. */
6870 compare_tree_int (const_tree t
, unsigned HOST_WIDE_INT u
)
6872 if (tree_int_cst_sgn (t
) < 0)
6874 else if (TREE_INT_CST_HIGH (t
) != 0)
6876 else if (TREE_INT_CST_LOW (t
) == u
)
6878 else if (TREE_INT_CST_LOW (t
) < u
)
6884 /* Return true if SIZE represents a constant size that is in bounds of
6885 what the middle-end and the backend accepts (covering not more than
6886 half of the address-space). */
6889 valid_constant_size_p (const_tree size
)
6891 if (! host_integerp (size
, 1)
6892 || TREE_OVERFLOW (size
)
6893 || tree_int_cst_sign_bit (size
) != 0)
6898 /* Return true if CODE represents an associative tree code. Otherwise
6901 associative_tree_code (enum tree_code code
)
6920 /* Return true if CODE represents a commutative tree code. Otherwise
6923 commutative_tree_code (enum tree_code code
)
6929 case MULT_HIGHPART_EXPR
:
6937 case UNORDERED_EXPR
:
6941 case TRUTH_AND_EXPR
:
6942 case TRUTH_XOR_EXPR
:
6944 case WIDEN_MULT_EXPR
:
6945 case VEC_WIDEN_MULT_HI_EXPR
:
6946 case VEC_WIDEN_MULT_LO_EXPR
:
6947 case VEC_WIDEN_MULT_EVEN_EXPR
:
6948 case VEC_WIDEN_MULT_ODD_EXPR
:
6957 /* Return true if CODE represents a ternary tree code for which the
6958 first two operands are commutative. Otherwise return false. */
6960 commutative_ternary_tree_code (enum tree_code code
)
6964 case WIDEN_MULT_PLUS_EXPR
:
6965 case WIDEN_MULT_MINUS_EXPR
:
6974 /* Generate a hash value for an expression. This can be used iteratively
6975 by passing a previous result as the VAL argument.
6977 This function is intended to produce the same hash for expressions which
6978 would compare equal using operand_equal_p. */
6981 iterative_hash_expr (const_tree t
, hashval_t val
)
6984 enum tree_code code
;
6988 return iterative_hash_hashval_t (0, val
);
6990 code
= TREE_CODE (t
);
6994 /* Alas, constants aren't shared, so we can't rely on pointer
6997 val
= iterative_hash_host_wide_int (TREE_INT_CST_LOW (t
), val
);
6998 return iterative_hash_host_wide_int (TREE_INT_CST_HIGH (t
), val
);
7001 unsigned int val2
= real_hash (TREE_REAL_CST_PTR (t
));
7003 return iterative_hash_hashval_t (val2
, val
);
7007 unsigned int val2
= fixed_hash (TREE_FIXED_CST_PTR (t
));
7009 return iterative_hash_hashval_t (val2
, val
);
7012 return iterative_hash (TREE_STRING_POINTER (t
),
7013 TREE_STRING_LENGTH (t
), val
);
7015 val
= iterative_hash_expr (TREE_REALPART (t
), val
);
7016 return iterative_hash_expr (TREE_IMAGPART (t
), val
);
7020 for (i
= 0; i
< VECTOR_CST_NELTS (t
); ++i
)
7021 val
= iterative_hash_expr (VECTOR_CST_ELT (t
, i
), val
);
7025 /* We can just compare by pointer. */
7026 return iterative_hash_host_wide_int (SSA_NAME_VERSION (t
), val
);
7027 case PLACEHOLDER_EXPR
:
7028 /* The node itself doesn't matter. */
7031 /* A list of expressions, for a CALL_EXPR or as the elements of a
7033 for (; t
; t
= TREE_CHAIN (t
))
7034 val
= iterative_hash_expr (TREE_VALUE (t
), val
);
7038 unsigned HOST_WIDE_INT idx
;
7040 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t
), idx
, field
, value
)
7042 val
= iterative_hash_expr (field
, val
);
7043 val
= iterative_hash_expr (value
, val
);
7049 /* The type of the second operand is relevant, except for
7050 its top-level qualifiers. */
7051 tree type
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (t
, 1)));
7053 val
= iterative_hash_object (TYPE_HASH (type
), val
);
7055 /* We could use the standard hash computation from this point
7057 val
= iterative_hash_object (code
, val
);
7058 val
= iterative_hash_expr (TREE_OPERAND (t
, 1), val
);
7059 val
= iterative_hash_expr (TREE_OPERAND (t
, 0), val
);
7063 /* When referring to a built-in FUNCTION_DECL, use the __builtin__ form.
7064 Otherwise nodes that compare equal according to operand_equal_p might
7065 get different hash codes. However, don't do this for machine specific
7066 or front end builtins, since the function code is overloaded in those
7068 if (DECL_BUILT_IN_CLASS (t
) == BUILT_IN_NORMAL
7069 && builtin_decl_explicit_p (DECL_FUNCTION_CODE (t
)))
7071 t
= builtin_decl_explicit (DECL_FUNCTION_CODE (t
));
7072 code
= TREE_CODE (t
);
7076 tclass
= TREE_CODE_CLASS (code
);
7078 if (tclass
== tcc_declaration
)
7080 /* DECL's have a unique ID */
7081 val
= iterative_hash_host_wide_int (DECL_UID (t
), val
);
7085 gcc_assert (IS_EXPR_CODE_CLASS (tclass
));
7087 val
= iterative_hash_object (code
, val
);
7089 /* Don't hash the type, that can lead to having nodes which
7090 compare equal according to operand_equal_p, but which
7091 have different hash codes. */
7092 if (CONVERT_EXPR_CODE_P (code
)
7093 || code
== NON_LVALUE_EXPR
)
7095 /* Make sure to include signness in the hash computation. */
7096 val
+= TYPE_UNSIGNED (TREE_TYPE (t
));
7097 val
= iterative_hash_expr (TREE_OPERAND (t
, 0), val
);
7100 else if (commutative_tree_code (code
))
7102 /* It's a commutative expression. We want to hash it the same
7103 however it appears. We do this by first hashing both operands
7104 and then rehashing based on the order of their independent
7106 hashval_t one
= iterative_hash_expr (TREE_OPERAND (t
, 0), 0);
7107 hashval_t two
= iterative_hash_expr (TREE_OPERAND (t
, 1), 0);
7111 t
= one
, one
= two
, two
= t
;
7113 val
= iterative_hash_hashval_t (one
, val
);
7114 val
= iterative_hash_hashval_t (two
, val
);
7117 for (i
= TREE_OPERAND_LENGTH (t
) - 1; i
>= 0; --i
)
7118 val
= iterative_hash_expr (TREE_OPERAND (t
, i
), val
);
7124 /* Generate a hash value for a pair of expressions. This can be used
7125 iteratively by passing a previous result as the VAL argument.
7127 The same hash value is always returned for a given pair of expressions,
7128 regardless of the order in which they are presented. This is useful in
7129 hashing the operands of commutative functions. */
7132 iterative_hash_exprs_commutative (const_tree t1
,
7133 const_tree t2
, hashval_t val
)
7135 hashval_t one
= iterative_hash_expr (t1
, 0);
7136 hashval_t two
= iterative_hash_expr (t2
, 0);
7140 t
= one
, one
= two
, two
= t
;
7141 val
= iterative_hash_hashval_t (one
, val
);
7142 val
= iterative_hash_hashval_t (two
, val
);
7147 /* Constructors for pointer, array and function types.
7148 (RECORD_TYPE, UNION_TYPE and ENUMERAL_TYPE nodes are
7149 constructed by language-dependent code, not here.) */
7151 /* Construct, lay out and return the type of pointers to TO_TYPE with
7152 mode MODE. If CAN_ALIAS_ALL is TRUE, indicate this type can
7153 reference all of memory. If such a type has already been
7154 constructed, reuse it. */
7157 build_pointer_type_for_mode (tree to_type
, enum machine_mode mode
,
7162 if (to_type
== error_mark_node
)
7163 return error_mark_node
;
7165 /* If the pointed-to type has the may_alias attribute set, force
7166 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7167 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7168 can_alias_all
= true;
7170 /* In some cases, languages will have things that aren't a POINTER_TYPE
7171 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_POINTER_TO.
7172 In that case, return that type without regard to the rest of our
7175 ??? This is a kludge, but consistent with the way this function has
7176 always operated and there doesn't seem to be a good way to avoid this
7178 if (TYPE_POINTER_TO (to_type
) != 0
7179 && TREE_CODE (TYPE_POINTER_TO (to_type
)) != POINTER_TYPE
)
7180 return TYPE_POINTER_TO (to_type
);
7182 /* First, if we already have a type for pointers to TO_TYPE and it's
7183 the proper mode, use it. */
7184 for (t
= TYPE_POINTER_TO (to_type
); t
; t
= TYPE_NEXT_PTR_TO (t
))
7185 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7188 t
= make_node (POINTER_TYPE
);
7190 TREE_TYPE (t
) = to_type
;
7191 SET_TYPE_MODE (t
, mode
);
7192 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7193 TYPE_NEXT_PTR_TO (t
) = TYPE_POINTER_TO (to_type
);
7194 TYPE_POINTER_TO (to_type
) = t
;
7196 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
7197 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7198 else if (TYPE_CANONICAL (to_type
) != to_type
)
7200 = build_pointer_type_for_mode (TYPE_CANONICAL (to_type
),
7201 mode
, can_alias_all
);
7203 /* Lay out the type. This function has many callers that are concerned
7204 with expression-construction, and this simplifies them all. */
7210 /* By default build pointers in ptr_mode. */
7213 build_pointer_type (tree to_type
)
7215 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7216 : TYPE_ADDR_SPACE (to_type
);
7217 enum machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7218 return build_pointer_type_for_mode (to_type
, pointer_mode
, false);
7221 /* Same as build_pointer_type_for_mode, but for REFERENCE_TYPE. */
7224 build_reference_type_for_mode (tree to_type
, enum machine_mode mode
,
7229 if (to_type
== error_mark_node
)
7230 return error_mark_node
;
7232 /* If the pointed-to type has the may_alias attribute set, force
7233 a TYPE_REF_CAN_ALIAS_ALL pointer to be generated. */
7234 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type
)))
7235 can_alias_all
= true;
7237 /* In some cases, languages will have things that aren't a REFERENCE_TYPE
7238 (such as a RECORD_TYPE for fat pointers in Ada) as TYPE_REFERENCE_TO.
7239 In that case, return that type without regard to the rest of our
7242 ??? This is a kludge, but consistent with the way this function has
7243 always operated and there doesn't seem to be a good way to avoid this
7245 if (TYPE_REFERENCE_TO (to_type
) != 0
7246 && TREE_CODE (TYPE_REFERENCE_TO (to_type
)) != REFERENCE_TYPE
)
7247 return TYPE_REFERENCE_TO (to_type
);
7249 /* First, if we already have a type for pointers to TO_TYPE and it's
7250 the proper mode, use it. */
7251 for (t
= TYPE_REFERENCE_TO (to_type
); t
; t
= TYPE_NEXT_REF_TO (t
))
7252 if (TYPE_MODE (t
) == mode
&& TYPE_REF_CAN_ALIAS_ALL (t
) == can_alias_all
)
7255 t
= make_node (REFERENCE_TYPE
);
7257 TREE_TYPE (t
) = to_type
;
7258 SET_TYPE_MODE (t
, mode
);
7259 TYPE_REF_CAN_ALIAS_ALL (t
) = can_alias_all
;
7260 TYPE_NEXT_REF_TO (t
) = TYPE_REFERENCE_TO (to_type
);
7261 TYPE_REFERENCE_TO (to_type
) = t
;
7263 if (TYPE_STRUCTURAL_EQUALITY_P (to_type
))
7264 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7265 else if (TYPE_CANONICAL (to_type
) != to_type
)
7267 = build_reference_type_for_mode (TYPE_CANONICAL (to_type
),
7268 mode
, can_alias_all
);
7276 /* Build the node for the type of references-to-TO_TYPE by default
7280 build_reference_type (tree to_type
)
7282 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
7283 : TYPE_ADDR_SPACE (to_type
);
7284 enum machine_mode pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
7285 return build_reference_type_for_mode (to_type
, pointer_mode
, false);
7288 /* Build a type that is compatible with t but has no cv quals anywhere
7291 const char *const *const * -> char ***. */
7294 build_type_no_quals (tree t
)
7296 switch (TREE_CODE (t
))
7299 return build_pointer_type_for_mode (build_type_no_quals (TREE_TYPE (t
)),
7301 TYPE_REF_CAN_ALIAS_ALL (t
));
7302 case REFERENCE_TYPE
:
7304 build_reference_type_for_mode (build_type_no_quals (TREE_TYPE (t
)),
7306 TYPE_REF_CAN_ALIAS_ALL (t
));
7308 return TYPE_MAIN_VARIANT (t
);
7312 #define MAX_INT_CACHED_PREC \
7313 (HOST_BITS_PER_WIDE_INT > 64 ? HOST_BITS_PER_WIDE_INT : 64)
7314 static GTY(()) tree nonstandard_integer_type_cache
[2 * MAX_INT_CACHED_PREC
+ 2];
7316 /* Builds a signed or unsigned integer type of precision PRECISION.
7317 Used for C bitfields whose precision does not match that of
7318 built-in target types. */
7320 build_nonstandard_integer_type (unsigned HOST_WIDE_INT precision
,
7326 unsignedp
= MAX_INT_CACHED_PREC
+ 1;
7328 if (precision
<= MAX_INT_CACHED_PREC
)
7330 itype
= nonstandard_integer_type_cache
[precision
+ unsignedp
];
7335 itype
= make_node (INTEGER_TYPE
);
7336 TYPE_PRECISION (itype
) = precision
;
7339 fixup_unsigned_type (itype
);
7341 fixup_signed_type (itype
);
7344 if (host_integerp (TYPE_MAX_VALUE (itype
), 1))
7345 ret
= type_hash_canon (tree_low_cst (TYPE_MAX_VALUE (itype
), 1), itype
);
7346 if (precision
<= MAX_INT_CACHED_PREC
)
7347 nonstandard_integer_type_cache
[precision
+ unsignedp
] = ret
;
7352 /* Create a range of some discrete type TYPE (an INTEGER_TYPE, ENUMERAL_TYPE
7353 or BOOLEAN_TYPE) with low bound LOWVAL and high bound HIGHVAL. If SHARED
7354 is true, reuse such a type that has already been constructed. */
7357 build_range_type_1 (tree type
, tree lowval
, tree highval
, bool shared
)
7359 tree itype
= make_node (INTEGER_TYPE
);
7360 hashval_t hashcode
= 0;
7362 TREE_TYPE (itype
) = type
;
7364 TYPE_MIN_VALUE (itype
) = fold_convert (type
, lowval
);
7365 TYPE_MAX_VALUE (itype
) = highval
? fold_convert (type
, highval
) : NULL
;
7367 TYPE_PRECISION (itype
) = TYPE_PRECISION (type
);
7368 SET_TYPE_MODE (itype
, TYPE_MODE (type
));
7369 TYPE_SIZE (itype
) = TYPE_SIZE (type
);
7370 TYPE_SIZE_UNIT (itype
) = TYPE_SIZE_UNIT (type
);
7371 TYPE_ALIGN (itype
) = TYPE_ALIGN (type
);
7372 TYPE_USER_ALIGN (itype
) = TYPE_USER_ALIGN (type
);
7377 if ((TYPE_MIN_VALUE (itype
)
7378 && TREE_CODE (TYPE_MIN_VALUE (itype
)) != INTEGER_CST
)
7379 || (TYPE_MAX_VALUE (itype
)
7380 && TREE_CODE (TYPE_MAX_VALUE (itype
)) != INTEGER_CST
))
7382 /* Since we cannot reliably merge this type, we need to compare it using
7383 structural equality checks. */
7384 SET_TYPE_STRUCTURAL_EQUALITY (itype
);
7388 hashcode
= iterative_hash_expr (TYPE_MIN_VALUE (itype
), hashcode
);
7389 hashcode
= iterative_hash_expr (TYPE_MAX_VALUE (itype
), hashcode
);
7390 hashcode
= iterative_hash_hashval_t (TYPE_HASH (type
), hashcode
);
7391 itype
= type_hash_canon (hashcode
, itype
);
7396 /* Wrapper around build_range_type_1 with SHARED set to true. */
7399 build_range_type (tree type
, tree lowval
, tree highval
)
7401 return build_range_type_1 (type
, lowval
, highval
, true);
7404 /* Wrapper around build_range_type_1 with SHARED set to false. */
7407 build_nonshared_range_type (tree type
, tree lowval
, tree highval
)
7409 return build_range_type_1 (type
, lowval
, highval
, false);
7412 /* Create a type of integers to be the TYPE_DOMAIN of an ARRAY_TYPE.
7413 MAXVAL should be the maximum value in the domain
7414 (one less than the length of the array).
7416 The maximum value that MAXVAL can have is INT_MAX for a HOST_WIDE_INT.
7417 We don't enforce this limit, that is up to caller (e.g. language front end).
7418 The limit exists because the result is a signed type and we don't handle
7419 sizes that use more than one HOST_WIDE_INT. */
7422 build_index_type (tree maxval
)
7424 return build_range_type (sizetype
, size_zero_node
, maxval
);
7427 /* Return true if the debug information for TYPE, a subtype, should be emitted
7428 as a subrange type. If so, set LOWVAL to the low bound and HIGHVAL to the
7429 high bound, respectively. Sometimes doing so unnecessarily obfuscates the
7430 debug info and doesn't reflect the source code. */
7433 subrange_type_for_debug_p (const_tree type
, tree
*lowval
, tree
*highval
)
7435 tree base_type
= TREE_TYPE (type
), low
, high
;
7437 /* Subrange types have a base type which is an integral type. */
7438 if (!INTEGRAL_TYPE_P (base_type
))
7441 /* Get the real bounds of the subtype. */
7442 if (lang_hooks
.types
.get_subrange_bounds
)
7443 lang_hooks
.types
.get_subrange_bounds (type
, &low
, &high
);
7446 low
= TYPE_MIN_VALUE (type
);
7447 high
= TYPE_MAX_VALUE (type
);
7450 /* If the type and its base type have the same representation and the same
7451 name, then the type is not a subrange but a copy of the base type. */
7452 if ((TREE_CODE (base_type
) == INTEGER_TYPE
7453 || TREE_CODE (base_type
) == BOOLEAN_TYPE
)
7454 && int_size_in_bytes (type
) == int_size_in_bytes (base_type
)
7455 && tree_int_cst_equal (low
, TYPE_MIN_VALUE (base_type
))
7456 && tree_int_cst_equal (high
, TYPE_MAX_VALUE (base_type
)))
7458 tree type_name
= TYPE_NAME (type
);
7459 tree base_type_name
= TYPE_NAME (base_type
);
7461 if (type_name
&& TREE_CODE (type_name
) == TYPE_DECL
)
7462 type_name
= DECL_NAME (type_name
);
7464 if (base_type_name
&& TREE_CODE (base_type_name
) == TYPE_DECL
)
7465 base_type_name
= DECL_NAME (base_type_name
);
7467 if (type_name
== base_type_name
)
7478 /* Construct, lay out and return the type of arrays of elements with ELT_TYPE
7479 and number of elements specified by the range of values of INDEX_TYPE.
7480 If SHARED is true, reuse such a type that has already been constructed. */
7483 build_array_type_1 (tree elt_type
, tree index_type
, bool shared
)
7487 if (TREE_CODE (elt_type
) == FUNCTION_TYPE
)
7489 error ("arrays of functions are not meaningful");
7490 elt_type
= integer_type_node
;
7493 t
= make_node (ARRAY_TYPE
);
7494 TREE_TYPE (t
) = elt_type
;
7495 TYPE_DOMAIN (t
) = index_type
;
7496 TYPE_ADDR_SPACE (t
) = TYPE_ADDR_SPACE (elt_type
);
7499 /* If the element type is incomplete at this point we get marked for
7500 structural equality. Do not record these types in the canonical
7502 if (TYPE_STRUCTURAL_EQUALITY_P (t
))
7507 hashval_t hashcode
= iterative_hash_object (TYPE_HASH (elt_type
), 0);
7509 hashcode
= iterative_hash_object (TYPE_HASH (index_type
), hashcode
);
7510 t
= type_hash_canon (hashcode
, t
);
7513 if (TYPE_CANONICAL (t
) == t
)
7515 if (TYPE_STRUCTURAL_EQUALITY_P (elt_type
)
7516 || (index_type
&& TYPE_STRUCTURAL_EQUALITY_P (index_type
)))
7517 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7518 else if (TYPE_CANONICAL (elt_type
) != elt_type
7519 || (index_type
&& TYPE_CANONICAL (index_type
) != index_type
))
7521 = build_array_type_1 (TYPE_CANONICAL (elt_type
),
7523 ? TYPE_CANONICAL (index_type
) : NULL_TREE
,
7530 /* Wrapper around build_array_type_1 with SHARED set to true. */
7533 build_array_type (tree elt_type
, tree index_type
)
7535 return build_array_type_1 (elt_type
, index_type
, true);
7538 /* Wrapper around build_array_type_1 with SHARED set to false. */
7541 build_nonshared_array_type (tree elt_type
, tree index_type
)
7543 return build_array_type_1 (elt_type
, index_type
, false);
7546 /* Return a representation of ELT_TYPE[NELTS], using indices of type
7550 build_array_type_nelts (tree elt_type
, unsigned HOST_WIDE_INT nelts
)
7552 return build_array_type (elt_type
, build_index_type (size_int (nelts
- 1)));
7555 /* Recursively examines the array elements of TYPE, until a non-array
7556 element type is found. */
7559 strip_array_types (tree type
)
7561 while (TREE_CODE (type
) == ARRAY_TYPE
)
7562 type
= TREE_TYPE (type
);
7567 /* Computes the canonical argument types from the argument type list
7570 Upon return, *ANY_STRUCTURAL_P will be true iff either it was true
7571 on entry to this function, or if any of the ARGTYPES are
7574 Upon return, *ANY_NONCANONICAL_P will be true iff either it was
7575 true on entry to this function, or if any of the ARGTYPES are
7578 Returns a canonical argument list, which may be ARGTYPES when the
7579 canonical argument list is unneeded (i.e., *ANY_STRUCTURAL_P is
7580 true) or would not differ from ARGTYPES. */
7583 maybe_canonicalize_argtypes(tree argtypes
,
7584 bool *any_structural_p
,
7585 bool *any_noncanonical_p
)
7588 bool any_noncanonical_argtypes_p
= false;
7590 for (arg
= argtypes
; arg
&& !(*any_structural_p
); arg
= TREE_CHAIN (arg
))
7592 if (!TREE_VALUE (arg
) || TREE_VALUE (arg
) == error_mark_node
)
7593 /* Fail gracefully by stating that the type is structural. */
7594 *any_structural_p
= true;
7595 else if (TYPE_STRUCTURAL_EQUALITY_P (TREE_VALUE (arg
)))
7596 *any_structural_p
= true;
7597 else if (TYPE_CANONICAL (TREE_VALUE (arg
)) != TREE_VALUE (arg
)
7598 || TREE_PURPOSE (arg
))
7599 /* If the argument has a default argument, we consider it
7600 non-canonical even though the type itself is canonical.
7601 That way, different variants of function and method types
7602 with default arguments will all point to the variant with
7603 no defaults as their canonical type. */
7604 any_noncanonical_argtypes_p
= true;
7607 if (*any_structural_p
)
7610 if (any_noncanonical_argtypes_p
)
7612 /* Build the canonical list of argument types. */
7613 tree canon_argtypes
= NULL_TREE
;
7614 bool is_void
= false;
7616 for (arg
= argtypes
; arg
; arg
= TREE_CHAIN (arg
))
7618 if (arg
== void_list_node
)
7621 canon_argtypes
= tree_cons (NULL_TREE
,
7622 TYPE_CANONICAL (TREE_VALUE (arg
)),
7626 canon_argtypes
= nreverse (canon_argtypes
);
7628 canon_argtypes
= chainon (canon_argtypes
, void_list_node
);
7630 /* There is a non-canonical type. */
7631 *any_noncanonical_p
= true;
7632 return canon_argtypes
;
7635 /* The canonical argument types are the same as ARGTYPES. */
7639 /* Construct, lay out and return
7640 the type of functions returning type VALUE_TYPE
7641 given arguments of types ARG_TYPES.
7642 ARG_TYPES is a chain of TREE_LIST nodes whose TREE_VALUEs
7643 are data type nodes for the arguments of the function.
7644 If such a type has already been constructed, reuse it. */
7647 build_function_type (tree value_type
, tree arg_types
)
7650 hashval_t hashcode
= 0;
7651 bool any_structural_p
, any_noncanonical_p
;
7652 tree canon_argtypes
;
7654 if (TREE_CODE (value_type
) == FUNCTION_TYPE
)
7656 error ("function return type cannot be function");
7657 value_type
= integer_type_node
;
7660 /* Make a node of the sort we want. */
7661 t
= make_node (FUNCTION_TYPE
);
7662 TREE_TYPE (t
) = value_type
;
7663 TYPE_ARG_TYPES (t
) = arg_types
;
7665 /* If we already have such a type, use the old one. */
7666 hashcode
= iterative_hash_object (TYPE_HASH (value_type
), hashcode
);
7667 hashcode
= type_hash_list (arg_types
, hashcode
);
7668 t
= type_hash_canon (hashcode
, t
);
7670 /* Set up the canonical type. */
7671 any_structural_p
= TYPE_STRUCTURAL_EQUALITY_P (value_type
);
7672 any_noncanonical_p
= TYPE_CANONICAL (value_type
) != value_type
;
7673 canon_argtypes
= maybe_canonicalize_argtypes (arg_types
,
7675 &any_noncanonical_p
);
7676 if (any_structural_p
)
7677 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7678 else if (any_noncanonical_p
)
7679 TYPE_CANONICAL (t
) = build_function_type (TYPE_CANONICAL (value_type
),
7682 if (!COMPLETE_TYPE_P (t
))
7687 /* Build variant of function type ORIG_TYPE skipping ARGS_TO_SKIP and the
7688 return value if SKIP_RETURN is true. */
7691 build_function_type_skip_args (tree orig_type
, bitmap args_to_skip
,
7694 tree new_type
= NULL
;
7695 tree args
, new_args
= NULL
, t
;
7699 for (args
= TYPE_ARG_TYPES (orig_type
); args
&& args
!= void_list_node
;
7700 args
= TREE_CHAIN (args
), i
++)
7701 if (!args_to_skip
|| !bitmap_bit_p (args_to_skip
, i
))
7702 new_args
= tree_cons (NULL_TREE
, TREE_VALUE (args
), new_args
);
7704 new_reversed
= nreverse (new_args
);
7708 TREE_CHAIN (new_args
) = void_list_node
;
7710 new_reversed
= void_list_node
;
7713 /* Use copy_node to preserve as much as possible from original type
7714 (debug info, attribute lists etc.)
7715 Exception is METHOD_TYPEs must have THIS argument.
7716 When we are asked to remove it, we need to build new FUNCTION_TYPE
7718 if (TREE_CODE (orig_type
) != METHOD_TYPE
7720 || !bitmap_bit_p (args_to_skip
, 0))
7722 new_type
= build_distinct_type_copy (orig_type
);
7723 TYPE_ARG_TYPES (new_type
) = new_reversed
;
7728 = build_distinct_type_copy (build_function_type (TREE_TYPE (orig_type
),
7730 TYPE_CONTEXT (new_type
) = TYPE_CONTEXT (orig_type
);
7734 TREE_TYPE (new_type
) = void_type_node
;
7736 /* This is a new type, not a copy of an old type. Need to reassociate
7737 variants. We can handle everything except the main variant lazily. */
7738 t
= TYPE_MAIN_VARIANT (orig_type
);
7741 t
= build_function_type_skip_args (t
, args_to_skip
, skip_return
);
7742 TYPE_MAIN_VARIANT (new_type
) = t
;
7743 TYPE_NEXT_VARIANT (new_type
) = TYPE_NEXT_VARIANT (t
);
7744 TYPE_NEXT_VARIANT (t
) = new_type
;
7748 TYPE_MAIN_VARIANT (new_type
) = new_type
;
7749 TYPE_NEXT_VARIANT (new_type
) = NULL
;
7755 /* Build variant of function decl ORIG_DECL skipping ARGS_TO_SKIP and the
7756 return value if SKIP_RETURN is true.
7758 Arguments from DECL_ARGUMENTS list can't be removed now, since they are
7759 linked by TREE_CHAIN directly. The caller is responsible for eliminating
7760 them when they are being duplicated (i.e. copy_arguments_for_versioning). */
7763 build_function_decl_skip_args (tree orig_decl
, bitmap args_to_skip
,
7766 tree new_decl
= copy_node (orig_decl
);
7769 new_type
= TREE_TYPE (orig_decl
);
7770 if (prototype_p (new_type
)
7771 || (skip_return
&& !VOID_TYPE_P (TREE_TYPE (new_type
))))
7773 = build_function_type_skip_args (new_type
, args_to_skip
, skip_return
);
7774 TREE_TYPE (new_decl
) = new_type
;
7776 /* For declarations setting DECL_VINDEX (i.e. methods)
7777 we expect first argument to be THIS pointer. */
7778 if (args_to_skip
&& bitmap_bit_p (args_to_skip
, 0))
7779 DECL_VINDEX (new_decl
) = NULL_TREE
;
7781 /* When signature changes, we need to clear builtin info. */
7782 if (DECL_BUILT_IN (new_decl
)
7784 && !bitmap_empty_p (args_to_skip
))
7786 DECL_BUILT_IN_CLASS (new_decl
) = NOT_BUILT_IN
;
7787 DECL_FUNCTION_CODE (new_decl
) = (enum built_in_function
) 0;
7792 /* Build a function type. The RETURN_TYPE is the type returned by the
7793 function. If VAARGS is set, no void_type_node is appended to the
7794 the list. ARGP must be always be terminated be a NULL_TREE. */
7797 build_function_type_list_1 (bool vaargs
, tree return_type
, va_list argp
)
7801 t
= va_arg (argp
, tree
);
7802 for (args
= NULL_TREE
; t
!= NULL_TREE
; t
= va_arg (argp
, tree
))
7803 args
= tree_cons (NULL_TREE
, t
, args
);
7808 if (args
!= NULL_TREE
)
7809 args
= nreverse (args
);
7810 gcc_assert (last
!= void_list_node
);
7812 else if (args
== NULL_TREE
)
7813 args
= void_list_node
;
7817 args
= nreverse (args
);
7818 TREE_CHAIN (last
) = void_list_node
;
7820 args
= build_function_type (return_type
, args
);
7825 /* Build a function type. The RETURN_TYPE is the type returned by the
7826 function. If additional arguments are provided, they are
7827 additional argument types. The list of argument types must always
7828 be terminated by NULL_TREE. */
7831 build_function_type_list (tree return_type
, ...)
7836 va_start (p
, return_type
);
7837 args
= build_function_type_list_1 (false, return_type
, p
);
7842 /* Build a variable argument function type. The RETURN_TYPE is the
7843 type returned by the function. If additional arguments are provided,
7844 they are additional argument types. The list of argument types must
7845 always be terminated by NULL_TREE. */
7848 build_varargs_function_type_list (tree return_type
, ...)
7853 va_start (p
, return_type
);
7854 args
= build_function_type_list_1 (true, return_type
, p
);
7860 /* Build a function type. RETURN_TYPE is the type returned by the
7861 function; VAARGS indicates whether the function takes varargs. The
7862 function takes N named arguments, the types of which are provided in
7866 build_function_type_array_1 (bool vaargs
, tree return_type
, int n
,
7870 tree t
= vaargs
? NULL_TREE
: void_list_node
;
7872 for (i
= n
- 1; i
>= 0; i
--)
7873 t
= tree_cons (NULL_TREE
, arg_types
[i
], t
);
7875 return build_function_type (return_type
, t
);
7878 /* Build a function type. RETURN_TYPE is the type returned by the
7879 function. The function takes N named arguments, the types of which
7880 are provided in ARG_TYPES. */
7883 build_function_type_array (tree return_type
, int n
, tree
*arg_types
)
7885 return build_function_type_array_1 (false, return_type
, n
, arg_types
);
7888 /* Build a variable argument function type. RETURN_TYPE is the type
7889 returned by the function. The function takes N named arguments, the
7890 types of which are provided in ARG_TYPES. */
7893 build_varargs_function_type_array (tree return_type
, int n
, tree
*arg_types
)
7895 return build_function_type_array_1 (true, return_type
, n
, arg_types
);
7898 /* Build a METHOD_TYPE for a member of BASETYPE. The RETTYPE (a TYPE)
7899 and ARGTYPES (a TREE_LIST) are the return type and arguments types
7900 for the method. An implicit additional parameter (of type
7901 pointer-to-BASETYPE) is added to the ARGTYPES. */
7904 build_method_type_directly (tree basetype
,
7911 bool any_structural_p
, any_noncanonical_p
;
7912 tree canon_argtypes
;
7914 /* Make a node of the sort we want. */
7915 t
= make_node (METHOD_TYPE
);
7917 TYPE_METHOD_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
7918 TREE_TYPE (t
) = rettype
;
7919 ptype
= build_pointer_type (basetype
);
7921 /* The actual arglist for this function includes a "hidden" argument
7922 which is "this". Put it into the list of argument types. */
7923 argtypes
= tree_cons (NULL_TREE
, ptype
, argtypes
);
7924 TYPE_ARG_TYPES (t
) = argtypes
;
7926 /* If we already have such a type, use the old one. */
7927 hashcode
= iterative_hash_object (TYPE_HASH (basetype
), hashcode
);
7928 hashcode
= iterative_hash_object (TYPE_HASH (rettype
), hashcode
);
7929 hashcode
= type_hash_list (argtypes
, hashcode
);
7930 t
= type_hash_canon (hashcode
, t
);
7932 /* Set up the canonical type. */
7934 = (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
7935 || TYPE_STRUCTURAL_EQUALITY_P (rettype
));
7937 = (TYPE_CANONICAL (basetype
) != basetype
7938 || TYPE_CANONICAL (rettype
) != rettype
);
7939 canon_argtypes
= maybe_canonicalize_argtypes (TREE_CHAIN (argtypes
),
7941 &any_noncanonical_p
);
7942 if (any_structural_p
)
7943 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7944 else if (any_noncanonical_p
)
7946 = build_method_type_directly (TYPE_CANONICAL (basetype
),
7947 TYPE_CANONICAL (rettype
),
7949 if (!COMPLETE_TYPE_P (t
))
7955 /* Construct, lay out and return the type of methods belonging to class
7956 BASETYPE and whose arguments and values are described by TYPE.
7957 If that type exists already, reuse it.
7958 TYPE must be a FUNCTION_TYPE node. */
7961 build_method_type (tree basetype
, tree type
)
7963 gcc_assert (TREE_CODE (type
) == FUNCTION_TYPE
);
7965 return build_method_type_directly (basetype
,
7967 TYPE_ARG_TYPES (type
));
7970 /* Construct, lay out and return the type of offsets to a value
7971 of type TYPE, within an object of type BASETYPE.
7972 If a suitable offset type exists already, reuse it. */
7975 build_offset_type (tree basetype
, tree type
)
7978 hashval_t hashcode
= 0;
7980 /* Make a node of the sort we want. */
7981 t
= make_node (OFFSET_TYPE
);
7983 TYPE_OFFSET_BASETYPE (t
) = TYPE_MAIN_VARIANT (basetype
);
7984 TREE_TYPE (t
) = type
;
7986 /* If we already have such a type, use the old one. */
7987 hashcode
= iterative_hash_object (TYPE_HASH (basetype
), hashcode
);
7988 hashcode
= iterative_hash_object (TYPE_HASH (type
), hashcode
);
7989 t
= type_hash_canon (hashcode
, t
);
7991 if (!COMPLETE_TYPE_P (t
))
7994 if (TYPE_CANONICAL (t
) == t
)
7996 if (TYPE_STRUCTURAL_EQUALITY_P (basetype
)
7997 || TYPE_STRUCTURAL_EQUALITY_P (type
))
7998 SET_TYPE_STRUCTURAL_EQUALITY (t
);
7999 else if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)) != basetype
8000 || TYPE_CANONICAL (type
) != type
)
8002 = build_offset_type (TYPE_CANONICAL (TYPE_MAIN_VARIANT (basetype
)),
8003 TYPE_CANONICAL (type
));
8009 /* Create a complex type whose components are COMPONENT_TYPE. */
8012 build_complex_type (tree component_type
)
8017 gcc_assert (INTEGRAL_TYPE_P (component_type
)
8018 || SCALAR_FLOAT_TYPE_P (component_type
)
8019 || FIXED_POINT_TYPE_P (component_type
));
8021 /* Make a node of the sort we want. */
8022 t
= make_node (COMPLEX_TYPE
);
8024 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (component_type
);
8026 /* If we already have such a type, use the old one. */
8027 hashcode
= iterative_hash_object (TYPE_HASH (component_type
), 0);
8028 t
= type_hash_canon (hashcode
, t
);
8030 if (!COMPLETE_TYPE_P (t
))
8033 if (TYPE_CANONICAL (t
) == t
)
8035 if (TYPE_STRUCTURAL_EQUALITY_P (component_type
))
8036 SET_TYPE_STRUCTURAL_EQUALITY (t
);
8037 else if (TYPE_CANONICAL (component_type
) != component_type
)
8039 = build_complex_type (TYPE_CANONICAL (component_type
));
8042 /* We need to create a name, since complex is a fundamental type. */
8043 if (! TYPE_NAME (t
))
8046 if (component_type
== char_type_node
)
8047 name
= "complex char";
8048 else if (component_type
== signed_char_type_node
)
8049 name
= "complex signed char";
8050 else if (component_type
== unsigned_char_type_node
)
8051 name
= "complex unsigned char";
8052 else if (component_type
== short_integer_type_node
)
8053 name
= "complex short int";
8054 else if (component_type
== short_unsigned_type_node
)
8055 name
= "complex short unsigned int";
8056 else if (component_type
== integer_type_node
)
8057 name
= "complex int";
8058 else if (component_type
== unsigned_type_node
)
8059 name
= "complex unsigned int";
8060 else if (component_type
== long_integer_type_node
)
8061 name
= "complex long int";
8062 else if (component_type
== long_unsigned_type_node
)
8063 name
= "complex long unsigned int";
8064 else if (component_type
== long_long_integer_type_node
)
8065 name
= "complex long long int";
8066 else if (component_type
== long_long_unsigned_type_node
)
8067 name
= "complex long long unsigned int";
8072 TYPE_NAME (t
) = build_decl (UNKNOWN_LOCATION
, TYPE_DECL
,
8073 get_identifier (name
), t
);
8076 return build_qualified_type (t
, TYPE_QUALS (component_type
));
8079 /* If TYPE is a real or complex floating-point type and the target
8080 does not directly support arithmetic on TYPE then return the wider
8081 type to be used for arithmetic on TYPE. Otherwise, return
8085 excess_precision_type (tree type
)
8087 if (flag_excess_precision
!= EXCESS_PRECISION_FAST
)
8089 int flt_eval_method
= TARGET_FLT_EVAL_METHOD
;
8090 switch (TREE_CODE (type
))
8093 switch (flt_eval_method
)
8096 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
))
8097 return double_type_node
;
8100 if (TYPE_MODE (type
) == TYPE_MODE (float_type_node
)
8101 || TYPE_MODE (type
) == TYPE_MODE (double_type_node
))
8102 return long_double_type_node
;
8109 if (TREE_CODE (TREE_TYPE (type
)) != REAL_TYPE
)
8111 switch (flt_eval_method
)
8114 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
))
8115 return complex_double_type_node
;
8118 if (TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (float_type_node
)
8119 || (TYPE_MODE (TREE_TYPE (type
))
8120 == TYPE_MODE (double_type_node
)))
8121 return complex_long_double_type_node
;
8134 /* Return OP, stripped of any conversions to wider types as much as is safe.
8135 Converting the value back to OP's type makes a value equivalent to OP.
8137 If FOR_TYPE is nonzero, we return a value which, if converted to
8138 type FOR_TYPE, would be equivalent to converting OP to type FOR_TYPE.
8140 OP must have integer, real or enumeral type. Pointers are not allowed!
8142 There are some cases where the obvious value we could return
8143 would regenerate to OP if converted to OP's type,
8144 but would not extend like OP to wider types.
8145 If FOR_TYPE indicates such extension is contemplated, we eschew such values.
8146 For example, if OP is (unsigned short)(signed char)-1,
8147 we avoid returning (signed char)-1 if FOR_TYPE is int,
8148 even though extending that to an unsigned short would regenerate OP,
8149 since the result of extending (signed char)-1 to (int)
8150 is different from (int) OP. */
8153 get_unwidened (tree op
, tree for_type
)
8155 /* Set UNS initially if converting OP to FOR_TYPE is a zero-extension. */
8156 tree type
= TREE_TYPE (op
);
8158 = TYPE_PRECISION (for_type
!= 0 ? for_type
: type
);
8160 = (for_type
!= 0 && for_type
!= type
8161 && final_prec
> TYPE_PRECISION (type
)
8162 && TYPE_UNSIGNED (type
));
8165 while (CONVERT_EXPR_P (op
))
8169 /* TYPE_PRECISION on vector types has different meaning
8170 (TYPE_VECTOR_SUBPARTS) and casts from vectors are view conversions,
8171 so avoid them here. */
8172 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (op
, 0))) == VECTOR_TYPE
)
8175 bitschange
= TYPE_PRECISION (TREE_TYPE (op
))
8176 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0)));
8178 /* Truncations are many-one so cannot be removed.
8179 Unless we are later going to truncate down even farther. */
8181 && final_prec
> TYPE_PRECISION (TREE_TYPE (op
)))
8184 /* See what's inside this conversion. If we decide to strip it,
8186 op
= TREE_OPERAND (op
, 0);
8188 /* If we have not stripped any zero-extensions (uns is 0),
8189 we can strip any kind of extension.
8190 If we have previously stripped a zero-extension,
8191 only zero-extensions can safely be stripped.
8192 Any extension can be stripped if the bits it would produce
8193 are all going to be discarded later by truncating to FOR_TYPE. */
8197 if (! uns
|| final_prec
<= TYPE_PRECISION (TREE_TYPE (op
)))
8199 /* TYPE_UNSIGNED says whether this is a zero-extension.
8200 Let's avoid computing it if it does not affect WIN
8201 and if UNS will not be needed again. */
8203 || CONVERT_EXPR_P (op
))
8204 && TYPE_UNSIGNED (TREE_TYPE (op
)))
8212 /* If we finally reach a constant see if it fits in for_type and
8213 in that case convert it. */
8215 && TREE_CODE (win
) == INTEGER_CST
8216 && TREE_TYPE (win
) != for_type
8217 && int_fits_type_p (win
, for_type
))
8218 win
= fold_convert (for_type
, win
);
8223 /* Return OP or a simpler expression for a narrower value
8224 which can be sign-extended or zero-extended to give back OP.
8225 Store in *UNSIGNEDP_PTR either 1 if the value should be zero-extended
8226 or 0 if the value should be sign-extended. */
8229 get_narrower (tree op
, int *unsignedp_ptr
)
8234 bool integral_p
= INTEGRAL_TYPE_P (TREE_TYPE (op
));
8236 while (TREE_CODE (op
) == NOP_EXPR
)
8239 = (TYPE_PRECISION (TREE_TYPE (op
))
8240 - TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op
, 0))));
8242 /* Truncations are many-one so cannot be removed. */
8246 /* See what's inside this conversion. If we decide to strip it,
8251 op
= TREE_OPERAND (op
, 0);
8252 /* An extension: the outermost one can be stripped,
8253 but remember whether it is zero or sign extension. */
8255 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8256 /* Otherwise, if a sign extension has been stripped,
8257 only sign extensions can now be stripped;
8258 if a zero extension has been stripped, only zero-extensions. */
8259 else if (uns
!= TYPE_UNSIGNED (TREE_TYPE (op
)))
8263 else /* bitschange == 0 */
8265 /* A change in nominal type can always be stripped, but we must
8266 preserve the unsignedness. */
8268 uns
= TYPE_UNSIGNED (TREE_TYPE (op
));
8270 op
= TREE_OPERAND (op
, 0);
8271 /* Keep trying to narrow, but don't assign op to win if it
8272 would turn an integral type into something else. */
8273 if (INTEGRAL_TYPE_P (TREE_TYPE (op
)) != integral_p
)
8280 if (TREE_CODE (op
) == COMPONENT_REF
8281 /* Since type_for_size always gives an integer type. */
8282 && TREE_CODE (TREE_TYPE (op
)) != REAL_TYPE
8283 && TREE_CODE (TREE_TYPE (op
)) != FIXED_POINT_TYPE
8284 /* Ensure field is laid out already. */
8285 && DECL_SIZE (TREE_OPERAND (op
, 1)) != 0
8286 && host_integerp (DECL_SIZE (TREE_OPERAND (op
, 1)), 1))
8288 unsigned HOST_WIDE_INT innerprec
8289 = tree_low_cst (DECL_SIZE (TREE_OPERAND (op
, 1)), 1);
8290 int unsignedp
= (DECL_UNSIGNED (TREE_OPERAND (op
, 1))
8291 || TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op
, 1))));
8292 tree type
= lang_hooks
.types
.type_for_size (innerprec
, unsignedp
);
8294 /* We can get this structure field in a narrower type that fits it,
8295 but the resulting extension to its nominal type (a fullword type)
8296 must satisfy the same conditions as for other extensions.
8298 Do this only for fields that are aligned (not bit-fields),
8299 because when bit-field insns will be used there is no
8300 advantage in doing this. */
8302 if (innerprec
< TYPE_PRECISION (TREE_TYPE (op
))
8303 && ! DECL_BIT_FIELD (TREE_OPERAND (op
, 1))
8304 && (first
|| uns
== DECL_UNSIGNED (TREE_OPERAND (op
, 1)))
8308 uns
= DECL_UNSIGNED (TREE_OPERAND (op
, 1));
8309 win
= fold_convert (type
, op
);
8313 *unsignedp_ptr
= uns
;
8317 /* Returns true if integer constant C has a value that is permissible
8318 for type TYPE (an INTEGER_TYPE). */
8321 int_fits_type_p (const_tree c
, const_tree type
)
8323 tree type_low_bound
, type_high_bound
;
8324 bool ok_for_low_bound
, ok_for_high_bound
, unsc
;
8327 dc
= tree_to_double_int (c
);
8328 unsc
= TYPE_UNSIGNED (TREE_TYPE (c
));
8331 type_low_bound
= TYPE_MIN_VALUE (type
);
8332 type_high_bound
= TYPE_MAX_VALUE (type
);
8334 /* If at least one bound of the type is a constant integer, we can check
8335 ourselves and maybe make a decision. If no such decision is possible, but
8336 this type is a subtype, try checking against that. Otherwise, use
8337 double_int_fits_to_tree_p, which checks against the precision.
8339 Compute the status for each possibly constant bound, and return if we see
8340 one does not match. Use ok_for_xxx_bound for this purpose, assigning -1
8341 for "unknown if constant fits", 0 for "constant known *not* to fit" and 1
8342 for "constant known to fit". */
8344 /* Check if c >= type_low_bound. */
8345 if (type_low_bound
&& TREE_CODE (type_low_bound
) == INTEGER_CST
)
8347 dd
= tree_to_double_int (type_low_bound
);
8348 if (unsc
!= TYPE_UNSIGNED (TREE_TYPE (type_low_bound
)))
8350 int c_neg
= (!unsc
&& dc
.is_negative ());
8351 int t_neg
= (unsc
&& dd
.is_negative ());
8353 if (c_neg
&& !t_neg
)
8355 if ((c_neg
|| !t_neg
) && dc
.ult (dd
))
8358 else if (dc
.cmp (dd
, unsc
) < 0)
8360 ok_for_low_bound
= true;
8363 ok_for_low_bound
= false;
8365 /* Check if c <= type_high_bound. */
8366 if (type_high_bound
&& TREE_CODE (type_high_bound
) == INTEGER_CST
)
8368 dd
= tree_to_double_int (type_high_bound
);
8369 if (unsc
!= TYPE_UNSIGNED (TREE_TYPE (type_high_bound
)))
8371 int c_neg
= (!unsc
&& dc
.is_negative ());
8372 int t_neg
= (unsc
&& dd
.is_negative ());
8374 if (t_neg
&& !c_neg
)
8376 if ((t_neg
|| !c_neg
) && dc
.ugt (dd
))
8379 else if (dc
.cmp (dd
, unsc
) > 0)
8381 ok_for_high_bound
= true;
8384 ok_for_high_bound
= false;
8386 /* If the constant fits both bounds, the result is known. */
8387 if (ok_for_low_bound
&& ok_for_high_bound
)
8390 /* Perform some generic filtering which may allow making a decision
8391 even if the bounds are not constant. First, negative integers
8392 never fit in unsigned types, */
8393 if (TYPE_UNSIGNED (type
) && !unsc
&& dc
.is_negative ())
8396 /* Second, narrower types always fit in wider ones. */
8397 if (TYPE_PRECISION (type
) > TYPE_PRECISION (TREE_TYPE (c
)))
8400 /* Third, unsigned integers with top bit set never fit signed types. */
8401 if (! TYPE_UNSIGNED (type
) && unsc
)
8403 int prec
= GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (c
))) - 1;
8404 if (prec
< HOST_BITS_PER_WIDE_INT
)
8406 if (((((unsigned HOST_WIDE_INT
) 1) << prec
) & dc
.low
) != 0)
8409 else if (((((unsigned HOST_WIDE_INT
) 1)
8410 << (prec
- HOST_BITS_PER_WIDE_INT
)) & dc
.high
) != 0)
8414 /* If we haven't been able to decide at this point, there nothing more we
8415 can check ourselves here. Look at the base type if we have one and it
8416 has the same precision. */
8417 if (TREE_CODE (type
) == INTEGER_TYPE
8418 && TREE_TYPE (type
) != 0
8419 && TYPE_PRECISION (type
) == TYPE_PRECISION (TREE_TYPE (type
)))
8421 type
= TREE_TYPE (type
);
8425 /* Or to double_int_fits_to_tree_p, if nothing else. */
8426 return double_int_fits_to_tree_p (type
, dc
);
8429 /* Stores bounds of an integer TYPE in MIN and MAX. If TYPE has non-constant
8430 bounds or is a POINTER_TYPE, the maximum and/or minimum values that can be
8431 represented (assuming two's-complement arithmetic) within the bit
8432 precision of the type are returned instead. */
8435 get_type_static_bounds (const_tree type
, mpz_t min
, mpz_t max
)
8437 if (!POINTER_TYPE_P (type
) && TYPE_MIN_VALUE (type
)
8438 && TREE_CODE (TYPE_MIN_VALUE (type
)) == INTEGER_CST
)
8439 mpz_set_double_int (min
, tree_to_double_int (TYPE_MIN_VALUE (type
)),
8440 TYPE_UNSIGNED (type
));
8443 if (TYPE_UNSIGNED (type
))
8444 mpz_set_ui (min
, 0);
8448 mn
= double_int::mask (TYPE_PRECISION (type
) - 1);
8449 mn
= (mn
+ double_int_one
).sext (TYPE_PRECISION (type
));
8450 mpz_set_double_int (min
, mn
, false);
8454 if (!POINTER_TYPE_P (type
) && TYPE_MAX_VALUE (type
)
8455 && TREE_CODE (TYPE_MAX_VALUE (type
)) == INTEGER_CST
)
8456 mpz_set_double_int (max
, tree_to_double_int (TYPE_MAX_VALUE (type
)),
8457 TYPE_UNSIGNED (type
));
8460 if (TYPE_UNSIGNED (type
))
8461 mpz_set_double_int (max
, double_int::mask (TYPE_PRECISION (type
)),
8464 mpz_set_double_int (max
, double_int::mask (TYPE_PRECISION (type
) - 1),
8469 /* Return true if VAR is an automatic variable defined in function FN. */
8472 auto_var_in_fn_p (const_tree var
, const_tree fn
)
8474 return (DECL_P (var
) && DECL_CONTEXT (var
) == fn
8475 && ((((TREE_CODE (var
) == VAR_DECL
&& ! DECL_EXTERNAL (var
))
8476 || TREE_CODE (var
) == PARM_DECL
)
8477 && ! TREE_STATIC (var
))
8478 || TREE_CODE (var
) == LABEL_DECL
8479 || TREE_CODE (var
) == RESULT_DECL
));
8482 /* Subprogram of following function. Called by walk_tree.
8484 Return *TP if it is an automatic variable or parameter of the
8485 function passed in as DATA. */
8488 find_var_from_fn (tree
*tp
, int *walk_subtrees
, void *data
)
8490 tree fn
= (tree
) data
;
8495 else if (DECL_P (*tp
)
8496 && auto_var_in_fn_p (*tp
, fn
))
8502 /* Returns true if T is, contains, or refers to a type with variable
8503 size. For METHOD_TYPEs and FUNCTION_TYPEs we exclude the
8504 arguments, but not the return type. If FN is nonzero, only return
8505 true if a modifier of the type or position of FN is a variable or
8506 parameter inside FN.
8508 This concept is more general than that of C99 'variably modified types':
8509 in C99, a struct type is never variably modified because a VLA may not
8510 appear as a structure member. However, in GNU C code like:
8512 struct S { int i[f()]; };
8514 is valid, and other languages may define similar constructs. */
8517 variably_modified_type_p (tree type
, tree fn
)
8521 /* Test if T is either variable (if FN is zero) or an expression containing
8522 a variable in FN. If TYPE isn't gimplified, return true also if
8523 gimplify_one_sizepos would gimplify the expression into a local
8525 #define RETURN_TRUE_IF_VAR(T) \
8526 do { tree _t = (T); \
8527 if (_t != NULL_TREE \
8528 && _t != error_mark_node \
8529 && TREE_CODE (_t) != INTEGER_CST \
8530 && TREE_CODE (_t) != PLACEHOLDER_EXPR \
8532 || (!TYPE_SIZES_GIMPLIFIED (type) \
8533 && !is_gimple_sizepos (_t)) \
8534 || walk_tree (&_t, find_var_from_fn, fn, NULL))) \
8535 return true; } while (0)
8537 if (type
== error_mark_node
)
8540 /* If TYPE itself has variable size, it is variably modified. */
8541 RETURN_TRUE_IF_VAR (TYPE_SIZE (type
));
8542 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (type
));
8544 switch (TREE_CODE (type
))
8547 case REFERENCE_TYPE
:
8549 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8555 /* If TYPE is a function type, it is variably modified if the
8556 return type is variably modified. */
8557 if (variably_modified_type_p (TREE_TYPE (type
), fn
))
8563 case FIXED_POINT_TYPE
:
8566 /* Scalar types are variably modified if their end points
8568 RETURN_TRUE_IF_VAR (TYPE_MIN_VALUE (type
));
8569 RETURN_TRUE_IF_VAR (TYPE_MAX_VALUE (type
));
8574 case QUAL_UNION_TYPE
:
8575 /* We can't see if any of the fields are variably-modified by the
8576 definition we normally use, since that would produce infinite
8577 recursion via pointers. */
8578 /* This is variably modified if some field's type is. */
8579 for (t
= TYPE_FIELDS (type
); t
; t
= DECL_CHAIN (t
))
8580 if (TREE_CODE (t
) == FIELD_DECL
)
8582 RETURN_TRUE_IF_VAR (DECL_FIELD_OFFSET (t
));
8583 RETURN_TRUE_IF_VAR (DECL_SIZE (t
));
8584 RETURN_TRUE_IF_VAR (DECL_SIZE_UNIT (t
));
8586 if (TREE_CODE (type
) == QUAL_UNION_TYPE
)
8587 RETURN_TRUE_IF_VAR (DECL_QUALIFIER (t
));
8592 /* Do not call ourselves to avoid infinite recursion. This is
8593 variably modified if the element type is. */
8594 RETURN_TRUE_IF_VAR (TYPE_SIZE (TREE_TYPE (type
)));
8595 RETURN_TRUE_IF_VAR (TYPE_SIZE_UNIT (TREE_TYPE (type
)));
8602 /* The current language may have other cases to check, but in general,
8603 all other types are not variably modified. */
8604 return lang_hooks
.tree_inlining
.var_mod_type_p (type
, fn
);
8606 #undef RETURN_TRUE_IF_VAR
8609 /* Given a DECL or TYPE, return the scope in which it was declared, or
8610 NULL_TREE if there is no containing scope. */
8613 get_containing_scope (const_tree t
)
8615 return (TYPE_P (t
) ? TYPE_CONTEXT (t
) : DECL_CONTEXT (t
));
8618 /* Return the innermost context enclosing DECL that is
8619 a FUNCTION_DECL, or zero if none. */
8622 decl_function_context (const_tree decl
)
8626 if (TREE_CODE (decl
) == ERROR_MARK
)
8629 /* C++ virtual functions use DECL_CONTEXT for the class of the vtable
8630 where we look up the function at runtime. Such functions always take
8631 a first argument of type 'pointer to real context'.
8633 C++ should really be fixed to use DECL_CONTEXT for the real context,
8634 and use something else for the "virtual context". */
8635 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_VINDEX (decl
))
8638 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
8640 context
= DECL_CONTEXT (decl
);
8642 while (context
&& TREE_CODE (context
) != FUNCTION_DECL
)
8644 if (TREE_CODE (context
) == BLOCK
)
8645 context
= BLOCK_SUPERCONTEXT (context
);
8647 context
= get_containing_scope (context
);
8653 /* Return the innermost context enclosing DECL that is
8654 a RECORD_TYPE, UNION_TYPE or QUAL_UNION_TYPE, or zero if none.
8655 TYPE_DECLs and FUNCTION_DECLs are transparent to this function. */
8658 decl_type_context (const_tree decl
)
8660 tree context
= DECL_CONTEXT (decl
);
8663 switch (TREE_CODE (context
))
8665 case NAMESPACE_DECL
:
8666 case TRANSLATION_UNIT_DECL
:
8671 case QUAL_UNION_TYPE
:
8676 context
= DECL_CONTEXT (context
);
8680 context
= BLOCK_SUPERCONTEXT (context
);
8690 /* CALL is a CALL_EXPR. Return the declaration for the function
8691 called, or NULL_TREE if the called function cannot be
8695 get_callee_fndecl (const_tree call
)
8699 if (call
== error_mark_node
)
8700 return error_mark_node
;
8702 /* It's invalid to call this function with anything but a
8704 gcc_assert (TREE_CODE (call
) == CALL_EXPR
);
8706 /* The first operand to the CALL is the address of the function
8708 addr
= CALL_EXPR_FN (call
);
8712 /* If this is a readonly function pointer, extract its initial value. */
8713 if (DECL_P (addr
) && TREE_CODE (addr
) != FUNCTION_DECL
8714 && TREE_READONLY (addr
) && ! TREE_THIS_VOLATILE (addr
)
8715 && DECL_INITIAL (addr
))
8716 addr
= DECL_INITIAL (addr
);
8718 /* If the address is just `&f' for some function `f', then we know
8719 that `f' is being called. */
8720 if (TREE_CODE (addr
) == ADDR_EXPR
8721 && TREE_CODE (TREE_OPERAND (addr
, 0)) == FUNCTION_DECL
)
8722 return TREE_OPERAND (addr
, 0);
8724 /* We couldn't figure out what was being called. */
8728 /* Print debugging information about tree nodes generated during the compile,
8729 and any language-specific information. */
8732 dump_tree_statistics (void)
8734 if (GATHER_STATISTICS
)
8737 int total_nodes
, total_bytes
;
8738 fprintf (stderr
, "Kind Nodes Bytes\n");
8739 fprintf (stderr
, "---------------------------------------\n");
8740 total_nodes
= total_bytes
= 0;
8741 for (i
= 0; i
< (int) all_kinds
; i
++)
8743 fprintf (stderr
, "%-20s %7d %10d\n", tree_node_kind_names
[i
],
8744 tree_node_counts
[i
], tree_node_sizes
[i
]);
8745 total_nodes
+= tree_node_counts
[i
];
8746 total_bytes
+= tree_node_sizes
[i
];
8748 fprintf (stderr
, "---------------------------------------\n");
8749 fprintf (stderr
, "%-20s %7d %10d\n", "Total", total_nodes
, total_bytes
);
8750 fprintf (stderr
, "---------------------------------------\n");
8751 fprintf (stderr
, "Code Nodes\n");
8752 fprintf (stderr
, "----------------------------\n");
8753 for (i
= 0; i
< (int) MAX_TREE_CODES
; i
++)
8754 fprintf (stderr
, "%-20s %7d\n", tree_code_name
[i
], tree_code_counts
[i
]);
8755 fprintf (stderr
, "----------------------------\n");
8756 ssanames_print_statistics ();
8757 phinodes_print_statistics ();
8760 fprintf (stderr
, "(No per-node statistics)\n");
8762 print_type_hash_statistics ();
8763 print_debug_expr_statistics ();
8764 print_value_expr_statistics ();
8765 lang_hooks
.print_statistics ();
8768 #define FILE_FUNCTION_FORMAT "_GLOBAL__%s_%s"
8770 /* Generate a crc32 of a byte. */
8773 crc32_unsigned_bits (unsigned chksum
, unsigned value
, unsigned bits
)
8777 for (ix
= bits
; ix
--; value
<<= 1)
8781 feedback
= (value
^ chksum
) & 0x80000000 ? 0x04c11db7 : 0;
8788 /* Generate a crc32 of a 32-bit unsigned. */
8791 crc32_unsigned (unsigned chksum
, unsigned value
)
8793 return crc32_unsigned_bits (chksum
, value
, 32);
8796 /* Generate a crc32 of a byte. */
8799 crc32_byte (unsigned chksum
, char byte
)
8801 return crc32_unsigned_bits (chksum
, (unsigned) byte
<< 24, 8);
8804 /* Generate a crc32 of a string. */
8807 crc32_string (unsigned chksum
, const char *string
)
8811 chksum
= crc32_byte (chksum
, *string
);
8817 /* P is a string that will be used in a symbol. Mask out any characters
8818 that are not valid in that context. */
8821 clean_symbol_name (char *p
)
8825 #ifndef NO_DOLLAR_IN_LABEL /* this for `$'; unlikely, but... -- kr */
8828 #ifndef NO_DOT_IN_LABEL /* this for `.'; unlikely, but... */
8835 /* Generate a name for a special-purpose function.
8836 The generated name may need to be unique across the whole link.
8837 Changes to this function may also require corresponding changes to
8838 xstrdup_mask_random.
8839 TYPE is some string to identify the purpose of this function to the
8840 linker or collect2; it must start with an uppercase letter,
8842 I - for constructors
8844 N - for C++ anonymous namespaces
8845 F - for DWARF unwind frame information. */
8848 get_file_function_name (const char *type
)
8854 /* If we already have a name we know to be unique, just use that. */
8855 if (first_global_object_name
)
8856 p
= q
= ASTRDUP (first_global_object_name
);
8857 /* If the target is handling the constructors/destructors, they
8858 will be local to this file and the name is only necessary for
8860 We also assign sub_I and sub_D sufixes to constructors called from
8861 the global static constructors. These are always local. */
8862 else if (((type
[0] == 'I' || type
[0] == 'D') && targetm
.have_ctors_dtors
)
8863 || (strncmp (type
, "sub_", 4) == 0
8864 && (type
[4] == 'I' || type
[4] == 'D')))
8866 const char *file
= main_input_filename
;
8868 file
= input_filename
;
8869 /* Just use the file's basename, because the full pathname
8870 might be quite long. */
8871 p
= q
= ASTRDUP (lbasename (file
));
8875 /* Otherwise, the name must be unique across the entire link.
8876 We don't have anything that we know to be unique to this translation
8877 unit, so use what we do have and throw in some randomness. */
8879 const char *name
= weak_global_object_name
;
8880 const char *file
= main_input_filename
;
8885 file
= input_filename
;
8887 len
= strlen (file
);
8888 q
= (char *) alloca (9 + 17 + len
+ 1);
8889 memcpy (q
, file
, len
+ 1);
8891 snprintf (q
+ len
, 9 + 17 + 1, "_%08X_" HOST_WIDE_INT_PRINT_HEX
,
8892 crc32_string (0, name
), get_random_seed (false));
8897 clean_symbol_name (q
);
8898 buf
= (char *) alloca (sizeof (FILE_FUNCTION_FORMAT
) + strlen (p
)
8901 /* Set up the name of the file-level functions we may need.
8902 Use a global object (which is already required to be unique over
8903 the program) rather than the file name (which imposes extra
8905 sprintf (buf
, FILE_FUNCTION_FORMAT
, type
, p
);
8907 return get_identifier (buf
);
8910 #if defined ENABLE_TREE_CHECKING && (GCC_VERSION >= 2007)
8912 /* Complain that the tree code of NODE does not match the expected 0
8913 terminated list of trailing codes. The trailing code list can be
8914 empty, for a more vague error message. FILE, LINE, and FUNCTION
8915 are of the caller. */
8918 tree_check_failed (const_tree node
, const char *file
,
8919 int line
, const char *function
, ...)
8923 unsigned length
= 0;
8926 va_start (args
, function
);
8927 while ((code
= va_arg (args
, int)))
8928 length
+= 4 + strlen (tree_code_name
[code
]);
8933 va_start (args
, function
);
8934 length
+= strlen ("expected ");
8935 buffer
= tmp
= (char *) alloca (length
);
8937 while ((code
= va_arg (args
, int)))
8939 const char *prefix
= length
? " or " : "expected ";
8941 strcpy (tmp
+ length
, prefix
);
8942 length
+= strlen (prefix
);
8943 strcpy (tmp
+ length
, tree_code_name
[code
]);
8944 length
+= strlen (tree_code_name
[code
]);
8949 buffer
= "unexpected node";
8951 internal_error ("tree check: %s, have %s in %s, at %s:%d",
8952 buffer
, tree_code_name
[TREE_CODE (node
)],
8953 function
, trim_filename (file
), line
);
8956 /* Complain that the tree code of NODE does match the expected 0
8957 terminated list of trailing codes. FILE, LINE, and FUNCTION are of
8961 tree_not_check_failed (const_tree node
, const char *file
,
8962 int line
, const char *function
, ...)
8966 unsigned length
= 0;
8969 va_start (args
, function
);
8970 while ((code
= va_arg (args
, int)))
8971 length
+= 4 + strlen (tree_code_name
[code
]);
8973 va_start (args
, function
);
8974 buffer
= (char *) alloca (length
);
8976 while ((code
= va_arg (args
, int)))
8980 strcpy (buffer
+ length
, " or ");
8983 strcpy (buffer
+ length
, tree_code_name
[code
]);
8984 length
+= strlen (tree_code_name
[code
]);
8988 internal_error ("tree check: expected none of %s, have %s in %s, at %s:%d",
8989 buffer
, tree_code_name
[TREE_CODE (node
)],
8990 function
, trim_filename (file
), line
);
8993 /* Similar to tree_check_failed, except that we check for a class of tree
8994 code, given in CL. */
8997 tree_class_check_failed (const_tree node
, const enum tree_code_class cl
,
8998 const char *file
, int line
, const char *function
)
9001 ("tree check: expected class %qs, have %qs (%s) in %s, at %s:%d",
9002 TREE_CODE_CLASS_STRING (cl
),
9003 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9004 tree_code_name
[TREE_CODE (node
)], function
, trim_filename (file
), line
);
9007 /* Similar to tree_check_failed, except that instead of specifying a
9008 dozen codes, use the knowledge that they're all sequential. */
9011 tree_range_check_failed (const_tree node
, const char *file
, int line
,
9012 const char *function
, enum tree_code c1
,
9016 unsigned length
= 0;
9019 for (c
= c1
; c
<= c2
; ++c
)
9020 length
+= 4 + strlen (tree_code_name
[c
]);
9022 length
+= strlen ("expected ");
9023 buffer
= (char *) alloca (length
);
9026 for (c
= c1
; c
<= c2
; ++c
)
9028 const char *prefix
= length
? " or " : "expected ";
9030 strcpy (buffer
+ length
, prefix
);
9031 length
+= strlen (prefix
);
9032 strcpy (buffer
+ length
, tree_code_name
[c
]);
9033 length
+= strlen (tree_code_name
[c
]);
9036 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9037 buffer
, tree_code_name
[TREE_CODE (node
)],
9038 function
, trim_filename (file
), line
);
9042 /* Similar to tree_check_failed, except that we check that a tree does
9043 not have the specified code, given in CL. */
9046 tree_not_class_check_failed (const_tree node
, const enum tree_code_class cl
,
9047 const char *file
, int line
, const char *function
)
9050 ("tree check: did not expect class %qs, have %qs (%s) in %s, at %s:%d",
9051 TREE_CODE_CLASS_STRING (cl
),
9052 TREE_CODE_CLASS_STRING (TREE_CODE_CLASS (TREE_CODE (node
))),
9053 tree_code_name
[TREE_CODE (node
)], function
, trim_filename (file
), line
);
9057 /* Similar to tree_check_failed but applied to OMP_CLAUSE codes. */
9060 omp_clause_check_failed (const_tree node
, const char *file
, int line
,
9061 const char *function
, enum omp_clause_code code
)
9063 internal_error ("tree check: expected omp_clause %s, have %s in %s, at %s:%d",
9064 omp_clause_code_name
[code
], tree_code_name
[TREE_CODE (node
)],
9065 function
, trim_filename (file
), line
);
9069 /* Similar to tree_range_check_failed but applied to OMP_CLAUSE codes. */
9072 omp_clause_range_check_failed (const_tree node
, const char *file
, int line
,
9073 const char *function
, enum omp_clause_code c1
,
9074 enum omp_clause_code c2
)
9077 unsigned length
= 0;
9080 for (c
= c1
; c
<= c2
; ++c
)
9081 length
+= 4 + strlen (omp_clause_code_name
[c
]);
9083 length
+= strlen ("expected ");
9084 buffer
= (char *) alloca (length
);
9087 for (c
= c1
; c
<= c2
; ++c
)
9089 const char *prefix
= length
? " or " : "expected ";
9091 strcpy (buffer
+ length
, prefix
);
9092 length
+= strlen (prefix
);
9093 strcpy (buffer
+ length
, omp_clause_code_name
[c
]);
9094 length
+= strlen (omp_clause_code_name
[c
]);
9097 internal_error ("tree check: %s, have %s in %s, at %s:%d",
9098 buffer
, omp_clause_code_name
[TREE_CODE (node
)],
9099 function
, trim_filename (file
), line
);
9103 #undef DEFTREESTRUCT
9104 #define DEFTREESTRUCT(VAL, NAME) NAME,
9106 static const char *ts_enum_names
[] = {
9107 #include "treestruct.def"
9109 #undef DEFTREESTRUCT
9111 #define TS_ENUM_NAME(EN) (ts_enum_names[(EN)])
9113 /* Similar to tree_class_check_failed, except that we check for
9114 whether CODE contains the tree structure identified by EN. */
9117 tree_contains_struct_check_failed (const_tree node
,
9118 const enum tree_node_structure_enum en
,
9119 const char *file
, int line
,
9120 const char *function
)
9123 ("tree check: expected tree that contains %qs structure, have %qs in %s, at %s:%d",
9125 tree_code_name
[TREE_CODE (node
)], function
, trim_filename (file
), line
);
9129 /* Similar to above, except that the check is for the bounds of a TREE_VEC's
9130 (dynamically sized) vector. */
9133 tree_vec_elt_check_failed (int idx
, int len
, const char *file
, int line
,
9134 const char *function
)
9137 ("tree check: accessed elt %d of tree_vec with %d elts in %s, at %s:%d",
9138 idx
+ 1, len
, function
, trim_filename (file
), line
);
9141 /* Similar to above, except that the check is for the bounds of the operand
9142 vector of an expression node EXP. */
9145 tree_operand_check_failed (int idx
, const_tree exp
, const char *file
,
9146 int line
, const char *function
)
9148 int code
= TREE_CODE (exp
);
9150 ("tree check: accessed operand %d of %s with %d operands in %s, at %s:%d",
9151 idx
+ 1, tree_code_name
[code
], TREE_OPERAND_LENGTH (exp
),
9152 function
, trim_filename (file
), line
);
9155 /* Similar to above, except that the check is for the number of
9156 operands of an OMP_CLAUSE node. */
9159 omp_clause_operand_check_failed (int idx
, const_tree t
, const char *file
,
9160 int line
, const char *function
)
9163 ("tree check: accessed operand %d of omp_clause %s with %d operands "
9164 "in %s, at %s:%d", idx
+ 1, omp_clause_code_name
[OMP_CLAUSE_CODE (t
)],
9165 omp_clause_num_ops
[OMP_CLAUSE_CODE (t
)], function
,
9166 trim_filename (file
), line
);
9168 #endif /* ENABLE_TREE_CHECKING */
9170 /* Create a new vector type node holding SUBPARTS units of type INNERTYPE,
9171 and mapped to the machine mode MODE. Initialize its fields and build
9172 the information necessary for debugging output. */
9175 make_vector_type (tree innertype
, int nunits
, enum machine_mode mode
)
9178 hashval_t hashcode
= 0;
9180 t
= make_node (VECTOR_TYPE
);
9181 TREE_TYPE (t
) = TYPE_MAIN_VARIANT (innertype
);
9182 SET_TYPE_VECTOR_SUBPARTS (t
, nunits
);
9183 SET_TYPE_MODE (t
, mode
);
9185 if (TYPE_STRUCTURAL_EQUALITY_P (innertype
))
9186 SET_TYPE_STRUCTURAL_EQUALITY (t
);
9187 else if (TYPE_CANONICAL (innertype
) != innertype
9188 || mode
!= VOIDmode
)
9190 = make_vector_type (TYPE_CANONICAL (innertype
), nunits
, VOIDmode
);
9194 hashcode
= iterative_hash_host_wide_int (VECTOR_TYPE
, hashcode
);
9195 hashcode
= iterative_hash_host_wide_int (nunits
, hashcode
);
9196 hashcode
= iterative_hash_host_wide_int (mode
, hashcode
);
9197 hashcode
= iterative_hash_object (TYPE_HASH (TREE_TYPE (t
)), hashcode
);
9198 t
= type_hash_canon (hashcode
, t
);
9200 /* We have built a main variant, based on the main variant of the
9201 inner type. Use it to build the variant we return. */
9202 if ((TYPE_ATTRIBUTES (innertype
) || TYPE_QUALS (innertype
))
9203 && TREE_TYPE (t
) != innertype
)
9204 return build_type_attribute_qual_variant (t
,
9205 TYPE_ATTRIBUTES (innertype
),
9206 TYPE_QUALS (innertype
));
9212 make_or_reuse_type (unsigned size
, int unsignedp
)
9214 if (size
== INT_TYPE_SIZE
)
9215 return unsignedp
? unsigned_type_node
: integer_type_node
;
9216 if (size
== CHAR_TYPE_SIZE
)
9217 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
9218 if (size
== SHORT_TYPE_SIZE
)
9219 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
9220 if (size
== LONG_TYPE_SIZE
)
9221 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
9222 if (size
== LONG_LONG_TYPE_SIZE
)
9223 return (unsignedp
? long_long_unsigned_type_node
9224 : long_long_integer_type_node
);
9225 if (size
== 128 && int128_integer_type_node
)
9226 return (unsignedp
? int128_unsigned_type_node
9227 : int128_integer_type_node
);
9230 return make_unsigned_type (size
);
9232 return make_signed_type (size
);
9235 /* Create or reuse a fract type by SIZE, UNSIGNEDP, and SATP. */
9238 make_or_reuse_fract_type (unsigned size
, int unsignedp
, int satp
)
9242 if (size
== SHORT_FRACT_TYPE_SIZE
)
9243 return unsignedp
? sat_unsigned_short_fract_type_node
9244 : sat_short_fract_type_node
;
9245 if (size
== FRACT_TYPE_SIZE
)
9246 return unsignedp
? sat_unsigned_fract_type_node
: sat_fract_type_node
;
9247 if (size
== LONG_FRACT_TYPE_SIZE
)
9248 return unsignedp
? sat_unsigned_long_fract_type_node
9249 : sat_long_fract_type_node
;
9250 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9251 return unsignedp
? sat_unsigned_long_long_fract_type_node
9252 : sat_long_long_fract_type_node
;
9256 if (size
== SHORT_FRACT_TYPE_SIZE
)
9257 return unsignedp
? unsigned_short_fract_type_node
9258 : short_fract_type_node
;
9259 if (size
== FRACT_TYPE_SIZE
)
9260 return unsignedp
? unsigned_fract_type_node
: fract_type_node
;
9261 if (size
== LONG_FRACT_TYPE_SIZE
)
9262 return unsignedp
? unsigned_long_fract_type_node
9263 : long_fract_type_node
;
9264 if (size
== LONG_LONG_FRACT_TYPE_SIZE
)
9265 return unsignedp
? unsigned_long_long_fract_type_node
9266 : long_long_fract_type_node
;
9269 return make_fract_type (size
, unsignedp
, satp
);
9272 /* Create or reuse an accum type by SIZE, UNSIGNEDP, and SATP. */
9275 make_or_reuse_accum_type (unsigned size
, int unsignedp
, int satp
)
9279 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9280 return unsignedp
? sat_unsigned_short_accum_type_node
9281 : sat_short_accum_type_node
;
9282 if (size
== ACCUM_TYPE_SIZE
)
9283 return unsignedp
? sat_unsigned_accum_type_node
: sat_accum_type_node
;
9284 if (size
== LONG_ACCUM_TYPE_SIZE
)
9285 return unsignedp
? sat_unsigned_long_accum_type_node
9286 : sat_long_accum_type_node
;
9287 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9288 return unsignedp
? sat_unsigned_long_long_accum_type_node
9289 : sat_long_long_accum_type_node
;
9293 if (size
== SHORT_ACCUM_TYPE_SIZE
)
9294 return unsignedp
? unsigned_short_accum_type_node
9295 : short_accum_type_node
;
9296 if (size
== ACCUM_TYPE_SIZE
)
9297 return unsignedp
? unsigned_accum_type_node
: accum_type_node
;
9298 if (size
== LONG_ACCUM_TYPE_SIZE
)
9299 return unsignedp
? unsigned_long_accum_type_node
9300 : long_accum_type_node
;
9301 if (size
== LONG_LONG_ACCUM_TYPE_SIZE
)
9302 return unsignedp
? unsigned_long_long_accum_type_node
9303 : long_long_accum_type_node
;
9306 return make_accum_type (size
, unsignedp
, satp
);
9309 /* Create nodes for all integer types (and error_mark_node) using the sizes
9310 of C datatypes. SIGNED_CHAR specifies whether char is signed,
9311 SHORT_DOUBLE specifies whether double should be of the same precision
9315 build_common_tree_nodes (bool signed_char
, bool short_double
)
9317 error_mark_node
= make_node (ERROR_MARK
);
9318 TREE_TYPE (error_mark_node
) = error_mark_node
;
9320 initialize_sizetypes ();
9322 /* Define both `signed char' and `unsigned char'. */
9323 signed_char_type_node
= make_signed_type (CHAR_TYPE_SIZE
);
9324 TYPE_STRING_FLAG (signed_char_type_node
) = 1;
9325 unsigned_char_type_node
= make_unsigned_type (CHAR_TYPE_SIZE
);
9326 TYPE_STRING_FLAG (unsigned_char_type_node
) = 1;
9328 /* Define `char', which is like either `signed char' or `unsigned char'
9329 but not the same as either. */
9332 ? make_signed_type (CHAR_TYPE_SIZE
)
9333 : make_unsigned_type (CHAR_TYPE_SIZE
));
9334 TYPE_STRING_FLAG (char_type_node
) = 1;
9336 short_integer_type_node
= make_signed_type (SHORT_TYPE_SIZE
);
9337 short_unsigned_type_node
= make_unsigned_type (SHORT_TYPE_SIZE
);
9338 integer_type_node
= make_signed_type (INT_TYPE_SIZE
);
9339 unsigned_type_node
= make_unsigned_type (INT_TYPE_SIZE
);
9340 long_integer_type_node
= make_signed_type (LONG_TYPE_SIZE
);
9341 long_unsigned_type_node
= make_unsigned_type (LONG_TYPE_SIZE
);
9342 long_long_integer_type_node
= make_signed_type (LONG_LONG_TYPE_SIZE
);
9343 long_long_unsigned_type_node
= make_unsigned_type (LONG_LONG_TYPE_SIZE
);
9344 #if HOST_BITS_PER_WIDE_INT >= 64
9345 /* TODO: This isn't correct, but as logic depends at the moment on
9346 host's instead of target's wide-integer.
9347 If there is a target not supporting TImode, but has an 128-bit
9348 integer-scalar register, this target check needs to be adjusted. */
9349 if (targetm
.scalar_mode_supported_p (TImode
))
9351 int128_integer_type_node
= make_signed_type (128);
9352 int128_unsigned_type_node
= make_unsigned_type (128);
9356 /* Define a boolean type. This type only represents boolean values but
9357 may be larger than char depending on the value of BOOL_TYPE_SIZE.
9358 Front ends which want to override this size (i.e. Java) can redefine
9359 boolean_type_node before calling build_common_tree_nodes_2. */
9360 boolean_type_node
= make_unsigned_type (BOOL_TYPE_SIZE
);
9361 TREE_SET_CODE (boolean_type_node
, BOOLEAN_TYPE
);
9362 TYPE_MAX_VALUE (boolean_type_node
) = build_int_cst (boolean_type_node
, 1);
9363 TYPE_PRECISION (boolean_type_node
) = 1;
9365 /* Define what type to use for size_t. */
9366 if (strcmp (SIZE_TYPE
, "unsigned int") == 0)
9367 size_type_node
= unsigned_type_node
;
9368 else if (strcmp (SIZE_TYPE
, "long unsigned int") == 0)
9369 size_type_node
= long_unsigned_type_node
;
9370 else if (strcmp (SIZE_TYPE
, "long long unsigned int") == 0)
9371 size_type_node
= long_long_unsigned_type_node
;
9372 else if (strcmp (SIZE_TYPE
, "short unsigned int") == 0)
9373 size_type_node
= short_unsigned_type_node
;
9377 /* Fill in the rest of the sized types. Reuse existing type nodes
9379 intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 0);
9380 intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 0);
9381 intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 0);
9382 intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 0);
9383 intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 0);
9385 unsigned_intQI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (QImode
), 1);
9386 unsigned_intHI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (HImode
), 1);
9387 unsigned_intSI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (SImode
), 1);
9388 unsigned_intDI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (DImode
), 1);
9389 unsigned_intTI_type_node
= make_or_reuse_type (GET_MODE_BITSIZE (TImode
), 1);
9391 access_public_node
= get_identifier ("public");
9392 access_protected_node
= get_identifier ("protected");
9393 access_private_node
= get_identifier ("private");
9395 /* Define these next since types below may used them. */
9396 integer_zero_node
= build_int_cst (integer_type_node
, 0);
9397 integer_one_node
= build_int_cst (integer_type_node
, 1);
9398 integer_three_node
= build_int_cst (integer_type_node
, 3);
9399 integer_minus_one_node
= build_int_cst (integer_type_node
, -1);
9401 size_zero_node
= size_int (0);
9402 size_one_node
= size_int (1);
9403 bitsize_zero_node
= bitsize_int (0);
9404 bitsize_one_node
= bitsize_int (1);
9405 bitsize_unit_node
= bitsize_int (BITS_PER_UNIT
);
9407 boolean_false_node
= TYPE_MIN_VALUE (boolean_type_node
);
9408 boolean_true_node
= TYPE_MAX_VALUE (boolean_type_node
);
9410 void_type_node
= make_node (VOID_TYPE
);
9411 layout_type (void_type_node
);
9413 /* We are not going to have real types in C with less than byte alignment,
9414 so we might as well not have any types that claim to have it. */
9415 TYPE_ALIGN (void_type_node
) = BITS_PER_UNIT
;
9416 TYPE_USER_ALIGN (void_type_node
) = 0;
9418 null_pointer_node
= build_int_cst (build_pointer_type (void_type_node
), 0);
9419 layout_type (TREE_TYPE (null_pointer_node
));
9421 ptr_type_node
= build_pointer_type (void_type_node
);
9423 = build_pointer_type (build_type_variant (void_type_node
, 1, 0));
9424 fileptr_type_node
= ptr_type_node
;
9426 float_type_node
= make_node (REAL_TYPE
);
9427 TYPE_PRECISION (float_type_node
) = FLOAT_TYPE_SIZE
;
9428 layout_type (float_type_node
);
9430 double_type_node
= make_node (REAL_TYPE
);
9432 TYPE_PRECISION (double_type_node
) = FLOAT_TYPE_SIZE
;
9434 TYPE_PRECISION (double_type_node
) = DOUBLE_TYPE_SIZE
;
9435 layout_type (double_type_node
);
9437 long_double_type_node
= make_node (REAL_TYPE
);
9438 TYPE_PRECISION (long_double_type_node
) = LONG_DOUBLE_TYPE_SIZE
;
9439 layout_type (long_double_type_node
);
9441 float_ptr_type_node
= build_pointer_type (float_type_node
);
9442 double_ptr_type_node
= build_pointer_type (double_type_node
);
9443 long_double_ptr_type_node
= build_pointer_type (long_double_type_node
);
9444 integer_ptr_type_node
= build_pointer_type (integer_type_node
);
9446 /* Fixed size integer types. */
9447 uint16_type_node
= build_nonstandard_integer_type (16, true);
9448 uint32_type_node
= build_nonstandard_integer_type (32, true);
9449 uint64_type_node
= build_nonstandard_integer_type (64, true);
9451 /* Decimal float types. */
9452 dfloat32_type_node
= make_node (REAL_TYPE
);
9453 TYPE_PRECISION (dfloat32_type_node
) = DECIMAL32_TYPE_SIZE
;
9454 layout_type (dfloat32_type_node
);
9455 SET_TYPE_MODE (dfloat32_type_node
, SDmode
);
9456 dfloat32_ptr_type_node
= build_pointer_type (dfloat32_type_node
);
9458 dfloat64_type_node
= make_node (REAL_TYPE
);
9459 TYPE_PRECISION (dfloat64_type_node
) = DECIMAL64_TYPE_SIZE
;
9460 layout_type (dfloat64_type_node
);
9461 SET_TYPE_MODE (dfloat64_type_node
, DDmode
);
9462 dfloat64_ptr_type_node
= build_pointer_type (dfloat64_type_node
);
9464 dfloat128_type_node
= make_node (REAL_TYPE
);
9465 TYPE_PRECISION (dfloat128_type_node
) = DECIMAL128_TYPE_SIZE
;
9466 layout_type (dfloat128_type_node
);
9467 SET_TYPE_MODE (dfloat128_type_node
, TDmode
);
9468 dfloat128_ptr_type_node
= build_pointer_type (dfloat128_type_node
);
9470 complex_integer_type_node
= build_complex_type (integer_type_node
);
9471 complex_float_type_node
= build_complex_type (float_type_node
);
9472 complex_double_type_node
= build_complex_type (double_type_node
);
9473 complex_long_double_type_node
= build_complex_type (long_double_type_node
);
9475 /* Make fixed-point nodes based on sat/non-sat and signed/unsigned. */
9476 #define MAKE_FIXED_TYPE_NODE(KIND,SIZE) \
9477 sat_ ## KIND ## _type_node = \
9478 make_sat_signed_ ## KIND ## _type (SIZE); \
9479 sat_unsigned_ ## KIND ## _type_node = \
9480 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9481 KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9482 unsigned_ ## KIND ## _type_node = \
9483 make_unsigned_ ## KIND ## _type (SIZE);
9485 #define MAKE_FIXED_TYPE_NODE_WIDTH(KIND,WIDTH,SIZE) \
9486 sat_ ## WIDTH ## KIND ## _type_node = \
9487 make_sat_signed_ ## KIND ## _type (SIZE); \
9488 sat_unsigned_ ## WIDTH ## KIND ## _type_node = \
9489 make_sat_unsigned_ ## KIND ## _type (SIZE); \
9490 WIDTH ## KIND ## _type_node = make_signed_ ## KIND ## _type (SIZE); \
9491 unsigned_ ## WIDTH ## KIND ## _type_node = \
9492 make_unsigned_ ## KIND ## _type (SIZE);
9494 /* Make fixed-point type nodes based on four different widths. */
9495 #define MAKE_FIXED_TYPE_NODE_FAMILY(N1,N2) \
9496 MAKE_FIXED_TYPE_NODE_WIDTH (N1, short_, SHORT_ ## N2 ## _TYPE_SIZE) \
9497 MAKE_FIXED_TYPE_NODE (N1, N2 ## _TYPE_SIZE) \
9498 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_, LONG_ ## N2 ## _TYPE_SIZE) \
9499 MAKE_FIXED_TYPE_NODE_WIDTH (N1, long_long_, LONG_LONG_ ## N2 ## _TYPE_SIZE)
9501 /* Make fixed-point mode nodes based on sat/non-sat and signed/unsigned. */
9502 #define MAKE_FIXED_MODE_NODE(KIND,NAME,MODE) \
9503 NAME ## _type_node = \
9504 make_or_reuse_signed_ ## KIND ## _type (GET_MODE_BITSIZE (MODE ## mode)); \
9505 u ## NAME ## _type_node = \
9506 make_or_reuse_unsigned_ ## KIND ## _type \
9507 (GET_MODE_BITSIZE (U ## MODE ## mode)); \
9508 sat_ ## NAME ## _type_node = \
9509 make_or_reuse_sat_signed_ ## KIND ## _type \
9510 (GET_MODE_BITSIZE (MODE ## mode)); \
9511 sat_u ## NAME ## _type_node = \
9512 make_or_reuse_sat_unsigned_ ## KIND ## _type \
9513 (GET_MODE_BITSIZE (U ## MODE ## mode));
9515 /* Fixed-point type and mode nodes. */
9516 MAKE_FIXED_TYPE_NODE_FAMILY (fract
, FRACT
)
9517 MAKE_FIXED_TYPE_NODE_FAMILY (accum
, ACCUM
)
9518 MAKE_FIXED_MODE_NODE (fract
, qq
, QQ
)
9519 MAKE_FIXED_MODE_NODE (fract
, hq
, HQ
)
9520 MAKE_FIXED_MODE_NODE (fract
, sq
, SQ
)
9521 MAKE_FIXED_MODE_NODE (fract
, dq
, DQ
)
9522 MAKE_FIXED_MODE_NODE (fract
, tq
, TQ
)
9523 MAKE_FIXED_MODE_NODE (accum
, ha
, HA
)
9524 MAKE_FIXED_MODE_NODE (accum
, sa
, SA
)
9525 MAKE_FIXED_MODE_NODE (accum
, da
, DA
)
9526 MAKE_FIXED_MODE_NODE (accum
, ta
, TA
)
9529 tree t
= targetm
.build_builtin_va_list ();
9531 /* Many back-ends define record types without setting TYPE_NAME.
9532 If we copied the record type here, we'd keep the original
9533 record type without a name. This breaks name mangling. So,
9534 don't copy record types and let c_common_nodes_and_builtins()
9535 declare the type to be __builtin_va_list. */
9536 if (TREE_CODE (t
) != RECORD_TYPE
)
9537 t
= build_variant_type_copy (t
);
9539 va_list_type_node
= t
;
9543 /* A subroutine of build_common_builtin_nodes. Define a builtin function. */
9546 local_define_builtin (const char *name
, tree type
, enum built_in_function code
,
9547 const char *library_name
, int ecf_flags
)
9551 decl
= add_builtin_function (name
, type
, code
, BUILT_IN_NORMAL
,
9552 library_name
, NULL_TREE
);
9553 if (ecf_flags
& ECF_CONST
)
9554 TREE_READONLY (decl
) = 1;
9555 if (ecf_flags
& ECF_PURE
)
9556 DECL_PURE_P (decl
) = 1;
9557 if (ecf_flags
& ECF_LOOPING_CONST_OR_PURE
)
9558 DECL_LOOPING_CONST_OR_PURE_P (decl
) = 1;
9559 if (ecf_flags
& ECF_NORETURN
)
9560 TREE_THIS_VOLATILE (decl
) = 1;
9561 if (ecf_flags
& ECF_NOTHROW
)
9562 TREE_NOTHROW (decl
) = 1;
9563 if (ecf_flags
& ECF_MALLOC
)
9564 DECL_IS_MALLOC (decl
) = 1;
9565 if (ecf_flags
& ECF_LEAF
)
9566 DECL_ATTRIBUTES (decl
) = tree_cons (get_identifier ("leaf"),
9567 NULL
, DECL_ATTRIBUTES (decl
));
9568 if ((ecf_flags
& ECF_TM_PURE
) && flag_tm
)
9569 apply_tm_attr (decl
, get_identifier ("transaction_pure"));
9571 set_builtin_decl (code
, decl
, true);
9574 /* Call this function after instantiating all builtins that the language
9575 front end cares about. This will build the rest of the builtins that
9576 are relied upon by the tree optimizers and the middle-end. */
9579 build_common_builtin_nodes (void)
9584 if (!builtin_decl_explicit_p (BUILT_IN_UNREACHABLE
))
9586 ftype
= build_function_type (void_type_node
, void_list_node
);
9587 local_define_builtin ("__builtin_unreachable", ftype
, BUILT_IN_UNREACHABLE
,
9588 "__builtin_unreachable",
9589 ECF_NOTHROW
| ECF_LEAF
| ECF_NORETURN
9590 | ECF_CONST
| ECF_LEAF
);
9593 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
)
9594 || !builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
9596 ftype
= build_function_type_list (ptr_type_node
,
9597 ptr_type_node
, const_ptr_type_node
,
9598 size_type_node
, NULL_TREE
);
9600 if (!builtin_decl_explicit_p (BUILT_IN_MEMCPY
))
9601 local_define_builtin ("__builtin_memcpy", ftype
, BUILT_IN_MEMCPY
,
9602 "memcpy", ECF_NOTHROW
| ECF_LEAF
);
9603 if (!builtin_decl_explicit_p (BUILT_IN_MEMMOVE
))
9604 local_define_builtin ("__builtin_memmove", ftype
, BUILT_IN_MEMMOVE
,
9605 "memmove", ECF_NOTHROW
| ECF_LEAF
);
9608 if (!builtin_decl_explicit_p (BUILT_IN_MEMCMP
))
9610 ftype
= build_function_type_list (integer_type_node
, const_ptr_type_node
,
9611 const_ptr_type_node
, size_type_node
,
9613 local_define_builtin ("__builtin_memcmp", ftype
, BUILT_IN_MEMCMP
,
9614 "memcmp", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
9617 if (!builtin_decl_explicit_p (BUILT_IN_MEMSET
))
9619 ftype
= build_function_type_list (ptr_type_node
,
9620 ptr_type_node
, integer_type_node
,
9621 size_type_node
, NULL_TREE
);
9622 local_define_builtin ("__builtin_memset", ftype
, BUILT_IN_MEMSET
,
9623 "memset", ECF_NOTHROW
| ECF_LEAF
);
9626 if (!builtin_decl_explicit_p (BUILT_IN_ALLOCA
))
9628 ftype
= build_function_type_list (ptr_type_node
,
9629 size_type_node
, NULL_TREE
);
9630 local_define_builtin ("__builtin_alloca", ftype
, BUILT_IN_ALLOCA
,
9631 "alloca", ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
9634 ftype
= build_function_type_list (ptr_type_node
, size_type_node
,
9635 size_type_node
, NULL_TREE
);
9636 local_define_builtin ("__builtin_alloca_with_align", ftype
,
9637 BUILT_IN_ALLOCA_WITH_ALIGN
, "alloca",
9638 ECF_MALLOC
| ECF_NOTHROW
| ECF_LEAF
);
9640 /* If we're checking the stack, `alloca' can throw. */
9641 if (flag_stack_check
)
9643 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA
)) = 0;
9644 TREE_NOTHROW (builtin_decl_explicit (BUILT_IN_ALLOCA_WITH_ALIGN
)) = 0;
9647 ftype
= build_function_type_list (void_type_node
,
9648 ptr_type_node
, ptr_type_node
,
9649 ptr_type_node
, NULL_TREE
);
9650 local_define_builtin ("__builtin_init_trampoline", ftype
,
9651 BUILT_IN_INIT_TRAMPOLINE
,
9652 "__builtin_init_trampoline", ECF_NOTHROW
| ECF_LEAF
);
9653 local_define_builtin ("__builtin_init_heap_trampoline", ftype
,
9654 BUILT_IN_INIT_HEAP_TRAMPOLINE
,
9655 "__builtin_init_heap_trampoline",
9656 ECF_NOTHROW
| ECF_LEAF
);
9658 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
9659 local_define_builtin ("__builtin_adjust_trampoline", ftype
,
9660 BUILT_IN_ADJUST_TRAMPOLINE
,
9661 "__builtin_adjust_trampoline",
9662 ECF_CONST
| ECF_NOTHROW
);
9664 ftype
= build_function_type_list (void_type_node
,
9665 ptr_type_node
, ptr_type_node
, NULL_TREE
);
9666 local_define_builtin ("__builtin_nonlocal_goto", ftype
,
9667 BUILT_IN_NONLOCAL_GOTO
,
9668 "__builtin_nonlocal_goto",
9669 ECF_NORETURN
| ECF_NOTHROW
);
9671 ftype
= build_function_type_list (void_type_node
,
9672 ptr_type_node
, ptr_type_node
, NULL_TREE
);
9673 local_define_builtin ("__builtin_setjmp_setup", ftype
,
9674 BUILT_IN_SETJMP_SETUP
,
9675 "__builtin_setjmp_setup", ECF_NOTHROW
);
9677 ftype
= build_function_type_list (ptr_type_node
, ptr_type_node
, NULL_TREE
);
9678 local_define_builtin ("__builtin_setjmp_dispatcher", ftype
,
9679 BUILT_IN_SETJMP_DISPATCHER
,
9680 "__builtin_setjmp_dispatcher",
9681 ECF_PURE
| ECF_NOTHROW
);
9683 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9684 local_define_builtin ("__builtin_setjmp_receiver", ftype
,
9685 BUILT_IN_SETJMP_RECEIVER
,
9686 "__builtin_setjmp_receiver", ECF_NOTHROW
);
9688 ftype
= build_function_type_list (ptr_type_node
, NULL_TREE
);
9689 local_define_builtin ("__builtin_stack_save", ftype
, BUILT_IN_STACK_SAVE
,
9690 "__builtin_stack_save", ECF_NOTHROW
| ECF_LEAF
);
9692 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9693 local_define_builtin ("__builtin_stack_restore", ftype
,
9694 BUILT_IN_STACK_RESTORE
,
9695 "__builtin_stack_restore", ECF_NOTHROW
| ECF_LEAF
);
9697 /* If there's a possibility that we might use the ARM EABI, build the
9698 alternate __cxa_end_cleanup node used to resume from C++ and Java. */
9699 if (targetm
.arm_eabi_unwinder
)
9701 ftype
= build_function_type_list (void_type_node
, NULL_TREE
);
9702 local_define_builtin ("__builtin_cxa_end_cleanup", ftype
,
9703 BUILT_IN_CXA_END_CLEANUP
,
9704 "__cxa_end_cleanup", ECF_NORETURN
| ECF_LEAF
);
9707 ftype
= build_function_type_list (void_type_node
, ptr_type_node
, NULL_TREE
);
9708 local_define_builtin ("__builtin_unwind_resume", ftype
,
9709 BUILT_IN_UNWIND_RESUME
,
9710 ((targetm_common
.except_unwind_info (&global_options
)
9712 ? "_Unwind_SjLj_Resume" : "_Unwind_Resume"),
9715 if (builtin_decl_explicit (BUILT_IN_RETURN_ADDRESS
) == NULL_TREE
)
9717 ftype
= build_function_type_list (ptr_type_node
, integer_type_node
,
9719 local_define_builtin ("__builtin_return_address", ftype
,
9720 BUILT_IN_RETURN_ADDRESS
,
9721 "__builtin_return_address",
9725 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
)
9726 || !builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
9728 ftype
= build_function_type_list (void_type_node
, ptr_type_node
,
9729 ptr_type_node
, NULL_TREE
);
9730 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_ENTER
))
9731 local_define_builtin ("__cyg_profile_func_enter", ftype
,
9732 BUILT_IN_PROFILE_FUNC_ENTER
,
9733 "__cyg_profile_func_enter", 0);
9734 if (!builtin_decl_explicit_p (BUILT_IN_PROFILE_FUNC_EXIT
))
9735 local_define_builtin ("__cyg_profile_func_exit", ftype
,
9736 BUILT_IN_PROFILE_FUNC_EXIT
,
9737 "__cyg_profile_func_exit", 0);
9740 /* The exception object and filter values from the runtime. The argument
9741 must be zero before exception lowering, i.e. from the front end. After
9742 exception lowering, it will be the region number for the exception
9743 landing pad. These functions are PURE instead of CONST to prevent
9744 them from being hoisted past the exception edge that will initialize
9745 its value in the landing pad. */
9746 ftype
= build_function_type_list (ptr_type_node
,
9747 integer_type_node
, NULL_TREE
);
9748 ecf_flags
= ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
;
9749 /* Only use TM_PURE if we we have TM language support. */
9750 if (builtin_decl_explicit_p (BUILT_IN_TM_LOAD_1
))
9751 ecf_flags
|= ECF_TM_PURE
;
9752 local_define_builtin ("__builtin_eh_pointer", ftype
, BUILT_IN_EH_POINTER
,
9753 "__builtin_eh_pointer", ecf_flags
);
9755 tmp
= lang_hooks
.types
.type_for_mode (targetm
.eh_return_filter_mode (), 0);
9756 ftype
= build_function_type_list (tmp
, integer_type_node
, NULL_TREE
);
9757 local_define_builtin ("__builtin_eh_filter", ftype
, BUILT_IN_EH_FILTER
,
9758 "__builtin_eh_filter", ECF_PURE
| ECF_NOTHROW
| ECF_LEAF
);
9760 ftype
= build_function_type_list (void_type_node
,
9761 integer_type_node
, integer_type_node
,
9763 local_define_builtin ("__builtin_eh_copy_values", ftype
,
9764 BUILT_IN_EH_COPY_VALUES
,
9765 "__builtin_eh_copy_values", ECF_NOTHROW
);
9767 /* Complex multiplication and division. These are handled as builtins
9768 rather than optabs because emit_library_call_value doesn't support
9769 complex. Further, we can do slightly better with folding these
9770 beasties if the real and complex parts of the arguments are separate. */
9774 for (mode
= MIN_MODE_COMPLEX_FLOAT
; mode
<= MAX_MODE_COMPLEX_FLOAT
; ++mode
)
9776 char mode_name_buf
[4], *q
;
9778 enum built_in_function mcode
, dcode
;
9779 tree type
, inner_type
;
9780 const char *prefix
= "__";
9782 if (targetm
.libfunc_gnu_prefix
)
9785 type
= lang_hooks
.types
.type_for_mode ((enum machine_mode
) mode
, 0);
9788 inner_type
= TREE_TYPE (type
);
9790 ftype
= build_function_type_list (type
, inner_type
, inner_type
,
9791 inner_type
, inner_type
, NULL_TREE
);
9793 mcode
= ((enum built_in_function
)
9794 (BUILT_IN_COMPLEX_MUL_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
9795 dcode
= ((enum built_in_function
)
9796 (BUILT_IN_COMPLEX_DIV_MIN
+ mode
- MIN_MODE_COMPLEX_FLOAT
));
9798 for (p
= GET_MODE_NAME (mode
), q
= mode_name_buf
; *p
; p
++, q
++)
9802 built_in_names
[mcode
] = concat (prefix
, "mul", mode_name_buf
, "3",
9804 local_define_builtin (built_in_names
[mcode
], ftype
, mcode
,
9805 built_in_names
[mcode
],
9806 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
9808 built_in_names
[dcode
] = concat (prefix
, "div", mode_name_buf
, "3",
9810 local_define_builtin (built_in_names
[dcode
], ftype
, dcode
,
9811 built_in_names
[dcode
],
9812 ECF_CONST
| ECF_NOTHROW
| ECF_LEAF
);
9817 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
9820 If we requested a pointer to a vector, build up the pointers that
9821 we stripped off while looking for the inner type. Similarly for
9822 return values from functions.
9824 The argument TYPE is the top of the chain, and BOTTOM is the
9825 new type which we will point to. */
9828 reconstruct_complex_type (tree type
, tree bottom
)
9832 if (TREE_CODE (type
) == POINTER_TYPE
)
9834 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9835 outer
= build_pointer_type_for_mode (inner
, TYPE_MODE (type
),
9836 TYPE_REF_CAN_ALIAS_ALL (type
));
9838 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
9840 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9841 outer
= build_reference_type_for_mode (inner
, TYPE_MODE (type
),
9842 TYPE_REF_CAN_ALIAS_ALL (type
));
9844 else if (TREE_CODE (type
) == ARRAY_TYPE
)
9846 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9847 outer
= build_array_type (inner
, TYPE_DOMAIN (type
));
9849 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
9851 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9852 outer
= build_function_type (inner
, TYPE_ARG_TYPES (type
));
9854 else if (TREE_CODE (type
) == METHOD_TYPE
)
9856 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9857 /* The build_method_type_directly() routine prepends 'this' to argument list,
9858 so we must compensate by getting rid of it. */
9860 = build_method_type_directly
9861 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type
))),
9863 TREE_CHAIN (TYPE_ARG_TYPES (type
)));
9865 else if (TREE_CODE (type
) == OFFSET_TYPE
)
9867 inner
= reconstruct_complex_type (TREE_TYPE (type
), bottom
);
9868 outer
= build_offset_type (TYPE_OFFSET_BASETYPE (type
), inner
);
9873 return build_type_attribute_qual_variant (outer
, TYPE_ATTRIBUTES (type
),
9877 /* Returns a vector tree node given a mode (integer, vector, or BLKmode) and
9880 build_vector_type_for_mode (tree innertype
, enum machine_mode mode
)
9884 switch (GET_MODE_CLASS (mode
))
9886 case MODE_VECTOR_INT
:
9887 case MODE_VECTOR_FLOAT
:
9888 case MODE_VECTOR_FRACT
:
9889 case MODE_VECTOR_UFRACT
:
9890 case MODE_VECTOR_ACCUM
:
9891 case MODE_VECTOR_UACCUM
:
9892 nunits
= GET_MODE_NUNITS (mode
);
9896 /* Check that there are no leftover bits. */
9897 gcc_assert (GET_MODE_BITSIZE (mode
)
9898 % TREE_INT_CST_LOW (TYPE_SIZE (innertype
)) == 0);
9900 nunits
= GET_MODE_BITSIZE (mode
)
9901 / TREE_INT_CST_LOW (TYPE_SIZE (innertype
));
9908 return make_vector_type (innertype
, nunits
, mode
);
9911 /* Similarly, but takes the inner type and number of units, which must be
9915 build_vector_type (tree innertype
, int nunits
)
9917 return make_vector_type (innertype
, nunits
, VOIDmode
);
9920 /* Similarly, but builds a variant type with TYPE_VECTOR_OPAQUE set. */
9923 build_opaque_vector_type (tree innertype
, int nunits
)
9925 tree t
= make_vector_type (innertype
, nunits
, VOIDmode
);
9927 /* We always build the non-opaque variant before the opaque one,
9928 so if it already exists, it is TYPE_NEXT_VARIANT of this one. */
9929 cand
= TYPE_NEXT_VARIANT (t
);
9931 && TYPE_VECTOR_OPAQUE (cand
)
9932 && check_qualified_type (cand
, t
, TYPE_QUALS (t
)))
9934 /* Othewise build a variant type and make sure to queue it after
9935 the non-opaque type. */
9936 cand
= build_distinct_type_copy (t
);
9937 TYPE_VECTOR_OPAQUE (cand
) = true;
9938 TYPE_CANONICAL (cand
) = TYPE_CANONICAL (t
);
9939 TYPE_NEXT_VARIANT (cand
) = TYPE_NEXT_VARIANT (t
);
9940 TYPE_NEXT_VARIANT (t
) = cand
;
9941 TYPE_MAIN_VARIANT (cand
) = TYPE_MAIN_VARIANT (t
);
9946 /* Given an initializer INIT, return TRUE if INIT is zero or some
9947 aggregate of zeros. Otherwise return FALSE. */
9949 initializer_zerop (const_tree init
)
9955 switch (TREE_CODE (init
))
9958 return integer_zerop (init
);
9961 /* ??? Note that this is not correct for C4X float formats. There,
9962 a bit pattern of all zeros is 1.0; 0.0 is encoded with the most
9963 negative exponent. */
9964 return real_zerop (init
)
9965 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (init
));
9968 return fixed_zerop (init
);
9971 return integer_zerop (init
)
9972 || (real_zerop (init
)
9973 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_REALPART (init
)))
9974 && ! REAL_VALUE_MINUS_ZERO (TREE_REAL_CST (TREE_IMAGPART (init
))));
9979 for (i
= 0; i
< VECTOR_CST_NELTS (init
); ++i
)
9980 if (!initializer_zerop (VECTOR_CST_ELT (init
, i
)))
9987 unsigned HOST_WIDE_INT idx
;
9989 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (init
), idx
, elt
)
9990 if (!initializer_zerop (elt
))
9999 /* We need to loop through all elements to handle cases like
10000 "\0" and "\0foobar". */
10001 for (i
= 0; i
< TREE_STRING_LENGTH (init
); ++i
)
10002 if (TREE_STRING_POINTER (init
)[i
] != '\0')
10013 /* Build an empty statement at location LOC. */
10016 build_empty_stmt (location_t loc
)
10018 tree t
= build1 (NOP_EXPR
, void_type_node
, size_zero_node
);
10019 SET_EXPR_LOCATION (t
, loc
);
10024 /* Build an OpenMP clause with code CODE. LOC is the location of the
10028 build_omp_clause (location_t loc
, enum omp_clause_code code
)
10033 length
= omp_clause_num_ops
[code
];
10034 size
= (sizeof (struct tree_omp_clause
) + (length
- 1) * sizeof (tree
));
10036 record_node_allocation_statistics (OMP_CLAUSE
, size
);
10038 t
= ggc_alloc_tree_node (size
);
10039 memset (t
, 0, size
);
10040 TREE_SET_CODE (t
, OMP_CLAUSE
);
10041 OMP_CLAUSE_SET_CODE (t
, code
);
10042 OMP_CLAUSE_LOCATION (t
) = loc
;
10047 /* Build a tcc_vl_exp object with code CODE and room for LEN operands. LEN
10048 includes the implicit operand count in TREE_OPERAND 0, and so must be >= 1.
10049 Except for the CODE and operand count field, other storage for the
10050 object is initialized to zeros. */
10053 build_vl_exp_stat (enum tree_code code
, int len MEM_STAT_DECL
)
10056 int length
= (len
- 1) * sizeof (tree
) + sizeof (struct tree_exp
);
10058 gcc_assert (TREE_CODE_CLASS (code
) == tcc_vl_exp
);
10059 gcc_assert (len
>= 1);
10061 record_node_allocation_statistics (code
, length
);
10063 t
= ggc_alloc_zone_cleared_tree_node_stat (&tree_zone
, length PASS_MEM_STAT
);
10065 TREE_SET_CODE (t
, code
);
10067 /* Can't use TREE_OPERAND to store the length because if checking is
10068 enabled, it will try to check the length before we store it. :-P */
10069 t
->exp
.operands
[0] = build_int_cst (sizetype
, len
);
10074 /* Helper function for build_call_* functions; build a CALL_EXPR with
10075 indicated RETURN_TYPE, FN, and NARGS, but do not initialize any of
10076 the argument slots. */
10079 build_call_1 (tree return_type
, tree fn
, int nargs
)
10083 t
= build_vl_exp (CALL_EXPR
, nargs
+ 3);
10084 TREE_TYPE (t
) = return_type
;
10085 CALL_EXPR_FN (t
) = fn
;
10086 CALL_EXPR_STATIC_CHAIN (t
) = NULL
;
10091 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10092 FN and a null static chain slot. NARGS is the number of call arguments
10093 which are specified as "..." arguments. */
10096 build_call_nary (tree return_type
, tree fn
, int nargs
, ...)
10100 va_start (args
, nargs
);
10101 ret
= build_call_valist (return_type
, fn
, nargs
, args
);
10106 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10107 FN and a null static chain slot. NARGS is the number of call arguments
10108 which are specified as a va_list ARGS. */
10111 build_call_valist (tree return_type
, tree fn
, int nargs
, va_list args
)
10116 t
= build_call_1 (return_type
, fn
, nargs
);
10117 for (i
= 0; i
< nargs
; i
++)
10118 CALL_EXPR_ARG (t
, i
) = va_arg (args
, tree
);
10119 process_call_operands (t
);
10123 /* Build a CALL_EXPR of class tcc_vl_exp with the indicated RETURN_TYPE and
10124 FN and a null static chain slot. NARGS is the number of call arguments
10125 which are specified as a tree array ARGS. */
10128 build_call_array_loc (location_t loc
, tree return_type
, tree fn
,
10129 int nargs
, const tree
*args
)
10134 t
= build_call_1 (return_type
, fn
, nargs
);
10135 for (i
= 0; i
< nargs
; i
++)
10136 CALL_EXPR_ARG (t
, i
) = args
[i
];
10137 process_call_operands (t
);
10138 SET_EXPR_LOCATION (t
, loc
);
10142 /* Like build_call_array, but takes a VEC. */
10145 build_call_vec (tree return_type
, tree fn
, VEC(tree
,gc
) *args
)
10150 ret
= build_call_1 (return_type
, fn
, VEC_length (tree
, args
));
10151 FOR_EACH_VEC_ELT (tree
, args
, ix
, t
)
10152 CALL_EXPR_ARG (ret
, ix
) = t
;
10153 process_call_operands (ret
);
10158 /* Returns true if it is possible to prove that the index of
10159 an array access REF (an ARRAY_REF expression) falls into the
10163 in_array_bounds_p (tree ref
)
10165 tree idx
= TREE_OPERAND (ref
, 1);
10168 if (TREE_CODE (idx
) != INTEGER_CST
)
10171 min
= array_ref_low_bound (ref
);
10172 max
= array_ref_up_bound (ref
);
10175 || TREE_CODE (min
) != INTEGER_CST
10176 || TREE_CODE (max
) != INTEGER_CST
)
10179 if (tree_int_cst_lt (idx
, min
)
10180 || tree_int_cst_lt (max
, idx
))
10186 /* Returns true if it is possible to prove that the range of
10187 an array access REF (an ARRAY_RANGE_REF expression) falls
10188 into the array bounds. */
10191 range_in_array_bounds_p (tree ref
)
10193 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (ref
));
10194 tree range_min
, range_max
, min
, max
;
10196 range_min
= TYPE_MIN_VALUE (domain_type
);
10197 range_max
= TYPE_MAX_VALUE (domain_type
);
10200 || TREE_CODE (range_min
) != INTEGER_CST
10201 || TREE_CODE (range_max
) != INTEGER_CST
)
10204 min
= array_ref_low_bound (ref
);
10205 max
= array_ref_up_bound (ref
);
10208 || TREE_CODE (min
) != INTEGER_CST
10209 || TREE_CODE (max
) != INTEGER_CST
)
10212 if (tree_int_cst_lt (range_min
, min
)
10213 || tree_int_cst_lt (max
, range_max
))
10219 /* Return true if T (assumed to be a DECL) must be assigned a memory
10223 needs_to_live_in_memory (const_tree t
)
10225 return (TREE_ADDRESSABLE (t
)
10226 || is_global_var (t
)
10227 || (TREE_CODE (t
) == RESULT_DECL
10228 && !DECL_BY_REFERENCE (t
)
10229 && aggregate_value_p (t
, current_function_decl
)));
10232 /* Return value of a constant X and sign-extend it. */
10235 int_cst_value (const_tree x
)
10237 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
10238 unsigned HOST_WIDE_INT val
= TREE_INT_CST_LOW (x
);
10240 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10241 gcc_assert (TREE_INT_CST_HIGH (x
) == 0
10242 || TREE_INT_CST_HIGH (x
) == -1);
10244 if (bits
< HOST_BITS_PER_WIDE_INT
)
10246 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
10248 val
|= (~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1;
10250 val
&= ~((~(unsigned HOST_WIDE_INT
) 0) << (bits
- 1) << 1);
10256 /* Return value of a constant X and sign-extend it. */
10259 widest_int_cst_value (const_tree x
)
10261 unsigned bits
= TYPE_PRECISION (TREE_TYPE (x
));
10262 unsigned HOST_WIDEST_INT val
= TREE_INT_CST_LOW (x
);
10264 #if HOST_BITS_PER_WIDEST_INT > HOST_BITS_PER_WIDE_INT
10265 gcc_assert (HOST_BITS_PER_WIDEST_INT
>= HOST_BITS_PER_DOUBLE_INT
);
10266 val
|= (((unsigned HOST_WIDEST_INT
) TREE_INT_CST_HIGH (x
))
10267 << HOST_BITS_PER_WIDE_INT
);
10269 /* Make sure the sign-extended value will fit in a HOST_WIDE_INT. */
10270 gcc_assert (TREE_INT_CST_HIGH (x
) == 0
10271 || TREE_INT_CST_HIGH (x
) == -1);
10274 if (bits
< HOST_BITS_PER_WIDEST_INT
)
10276 bool negative
= ((val
>> (bits
- 1)) & 1) != 0;
10278 val
|= (~(unsigned HOST_WIDEST_INT
) 0) << (bits
- 1) << 1;
10280 val
&= ~((~(unsigned HOST_WIDEST_INT
) 0) << (bits
- 1) << 1);
10286 /* If TYPE is an integral or pointer type, return an integer type with
10287 the same precision which is unsigned iff UNSIGNEDP is true, or itself
10288 if TYPE is already an integer type of signedness UNSIGNEDP. */
10291 signed_or_unsigned_type_for (int unsignedp
, tree type
)
10293 if (TREE_CODE (type
) == INTEGER_TYPE
&& TYPE_UNSIGNED (type
) == unsignedp
)
10296 if (TREE_CODE (type
) == VECTOR_TYPE
)
10298 tree inner
= TREE_TYPE (type
);
10299 tree inner2
= signed_or_unsigned_type_for (unsignedp
, inner
);
10302 if (inner
== inner2
)
10304 return build_vector_type (inner2
, TYPE_VECTOR_SUBPARTS (type
));
10307 if (!INTEGRAL_TYPE_P (type
)
10308 && !POINTER_TYPE_P (type
))
10311 return build_nonstandard_integer_type (TYPE_PRECISION (type
), unsignedp
);
10314 /* If TYPE is an integral or pointer type, return an integer type with
10315 the same precision which is unsigned, or itself if TYPE is already an
10316 unsigned integer type. */
10319 unsigned_type_for (tree type
)
10321 return signed_or_unsigned_type_for (1, type
);
10324 /* If TYPE is an integral or pointer type, return an integer type with
10325 the same precision which is signed, or itself if TYPE is already a
10326 signed integer type. */
10329 signed_type_for (tree type
)
10331 return signed_or_unsigned_type_for (0, type
);
10334 /* If TYPE is a vector type, return a signed integer vector type with the
10335 same width and number of subparts. Otherwise return boolean_type_node. */
10338 truth_type_for (tree type
)
10340 if (TREE_CODE (type
) == VECTOR_TYPE
)
10342 tree elem
= lang_hooks
.types
.type_for_size
10343 (GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type
))), 0);
10344 return build_opaque_vector_type (elem
, TYPE_VECTOR_SUBPARTS (type
));
10347 return boolean_type_node
;
10350 /* Returns the largest value obtainable by casting something in INNER type to
10354 upper_bound_in_type (tree outer
, tree inner
)
10357 unsigned int det
= 0;
10358 unsigned oprec
= TYPE_PRECISION (outer
);
10359 unsigned iprec
= TYPE_PRECISION (inner
);
10362 /* Compute a unique number for every combination. */
10363 det
|= (oprec
> iprec
) ? 4 : 0;
10364 det
|= TYPE_UNSIGNED (outer
) ? 2 : 0;
10365 det
|= TYPE_UNSIGNED (inner
) ? 1 : 0;
10367 /* Determine the exponent to use. */
10372 /* oprec <= iprec, outer: signed, inner: don't care. */
10377 /* oprec <= iprec, outer: unsigned, inner: don't care. */
10381 /* oprec > iprec, outer: signed, inner: signed. */
10385 /* oprec > iprec, outer: signed, inner: unsigned. */
10389 /* oprec > iprec, outer: unsigned, inner: signed. */
10393 /* oprec > iprec, outer: unsigned, inner: unsigned. */
10397 gcc_unreachable ();
10400 /* Compute 2^^prec - 1. */
10401 if (prec
<= HOST_BITS_PER_WIDE_INT
)
10404 high
.low
= ((~(unsigned HOST_WIDE_INT
) 0)
10405 >> (HOST_BITS_PER_WIDE_INT
- prec
));
10409 high
.high
= ((~(unsigned HOST_WIDE_INT
) 0)
10410 >> (HOST_BITS_PER_DOUBLE_INT
- prec
));
10411 high
.low
= ~(unsigned HOST_WIDE_INT
) 0;
10414 return double_int_to_tree (outer
, high
);
10417 /* Returns the smallest value obtainable by casting something in INNER type to
10421 lower_bound_in_type (tree outer
, tree inner
)
10424 unsigned oprec
= TYPE_PRECISION (outer
);
10425 unsigned iprec
= TYPE_PRECISION (inner
);
10427 /* If OUTER type is unsigned, we can definitely cast 0 to OUTER type
10429 if (TYPE_UNSIGNED (outer
)
10430 /* If we are widening something of an unsigned type, OUTER type
10431 contains all values of INNER type. In particular, both INNER
10432 and OUTER types have zero in common. */
10433 || (oprec
> iprec
&& TYPE_UNSIGNED (inner
)))
10434 low
.low
= low
.high
= 0;
10437 /* If we are widening a signed type to another signed type, we
10438 want to obtain -2^^(iprec-1). If we are keeping the
10439 precision or narrowing to a signed type, we want to obtain
10441 unsigned prec
= oprec
> iprec
? iprec
: oprec
;
10443 if (prec
<= HOST_BITS_PER_WIDE_INT
)
10445 low
.high
= ~(unsigned HOST_WIDE_INT
) 0;
10446 low
.low
= (~(unsigned HOST_WIDE_INT
) 0) << (prec
- 1);
10450 low
.high
= ((~(unsigned HOST_WIDE_INT
) 0)
10451 << (prec
- HOST_BITS_PER_WIDE_INT
- 1));
10456 return double_int_to_tree (outer
, low
);
10459 /* Return nonzero if two operands that are suitable for PHI nodes are
10460 necessarily equal. Specifically, both ARG0 and ARG1 must be either
10461 SSA_NAME or invariant. Note that this is strictly an optimization.
10462 That is, callers of this function can directly call operand_equal_p
10463 and get the same result, only slower. */
10466 operand_equal_for_phi_arg_p (const_tree arg0
, const_tree arg1
)
10470 if (TREE_CODE (arg0
) == SSA_NAME
|| TREE_CODE (arg1
) == SSA_NAME
)
10472 return operand_equal_p (arg0
, arg1
, 0);
10475 /* Returns number of zeros at the end of binary representation of X.
10477 ??? Use ffs if available? */
10480 num_ending_zeros (const_tree x
)
10482 unsigned HOST_WIDE_INT fr
, nfr
;
10483 unsigned num
, abits
;
10484 tree type
= TREE_TYPE (x
);
10486 if (TREE_INT_CST_LOW (x
) == 0)
10488 num
= HOST_BITS_PER_WIDE_INT
;
10489 fr
= TREE_INT_CST_HIGH (x
);
10494 fr
= TREE_INT_CST_LOW (x
);
10497 for (abits
= HOST_BITS_PER_WIDE_INT
/ 2; abits
; abits
/= 2)
10500 if (nfr
<< abits
== fr
)
10507 if (num
> TYPE_PRECISION (type
))
10508 num
= TYPE_PRECISION (type
);
10510 return build_int_cst_type (type
, num
);
10514 #define WALK_SUBTREE(NODE) \
10517 result = walk_tree_1 (&(NODE), func, data, pset, lh); \
10523 /* This is a subroutine of walk_tree that walks field of TYPE that are to
10524 be walked whenever a type is seen in the tree. Rest of operands and return
10525 value are as for walk_tree. */
10528 walk_type_fields (tree type
, walk_tree_fn func
, void *data
,
10529 struct pointer_set_t
*pset
, walk_tree_lh lh
)
10531 tree result
= NULL_TREE
;
10533 switch (TREE_CODE (type
))
10536 case REFERENCE_TYPE
:
10537 /* We have to worry about mutually recursive pointers. These can't
10538 be written in C. They can in Ada. It's pathological, but
10539 there's an ACATS test (c38102a) that checks it. Deal with this
10540 by checking if we're pointing to another pointer, that one
10541 points to another pointer, that one does too, and we have no htab.
10542 If so, get a hash table. We check three levels deep to avoid
10543 the cost of the hash table if we don't need one. */
10544 if (POINTER_TYPE_P (TREE_TYPE (type
))
10545 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (type
)))
10546 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (TREE_TYPE (type
))))
10549 result
= walk_tree_without_duplicates (&TREE_TYPE (type
),
10557 /* ... fall through ... */
10560 WALK_SUBTREE (TREE_TYPE (type
));
10564 WALK_SUBTREE (TYPE_METHOD_BASETYPE (type
));
10566 /* Fall through. */
10568 case FUNCTION_TYPE
:
10569 WALK_SUBTREE (TREE_TYPE (type
));
10573 /* We never want to walk into default arguments. */
10574 for (arg
= TYPE_ARG_TYPES (type
); arg
; arg
= TREE_CHAIN (arg
))
10575 WALK_SUBTREE (TREE_VALUE (arg
));
10580 /* Don't follow this nodes's type if a pointer for fear that
10581 we'll have infinite recursion. If we have a PSET, then we
10584 || (!POINTER_TYPE_P (TREE_TYPE (type
))
10585 && TREE_CODE (TREE_TYPE (type
)) != OFFSET_TYPE
))
10586 WALK_SUBTREE (TREE_TYPE (type
));
10587 WALK_SUBTREE (TYPE_DOMAIN (type
));
10591 WALK_SUBTREE (TREE_TYPE (type
));
10592 WALK_SUBTREE (TYPE_OFFSET_BASETYPE (type
));
10602 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal. FUNC is
10603 called with the DATA and the address of each sub-tree. If FUNC returns a
10604 non-NULL value, the traversal is stopped, and the value returned by FUNC
10605 is returned. If PSET is non-NULL it is used to record the nodes visited,
10606 and to avoid visiting a node more than once. */
10609 walk_tree_1 (tree
*tp
, walk_tree_fn func
, void *data
,
10610 struct pointer_set_t
*pset
, walk_tree_lh lh
)
10612 enum tree_code code
;
10616 #define WALK_SUBTREE_TAIL(NODE) \
10620 goto tail_recurse; \
10625 /* Skip empty subtrees. */
10629 /* Don't walk the same tree twice, if the user has requested
10630 that we avoid doing so. */
10631 if (pset
&& pointer_set_insert (pset
, *tp
))
10634 /* Call the function. */
10636 result
= (*func
) (tp
, &walk_subtrees
, data
);
10638 /* If we found something, return it. */
10642 code
= TREE_CODE (*tp
);
10644 /* Even if we didn't, FUNC may have decided that there was nothing
10645 interesting below this point in the tree. */
10646 if (!walk_subtrees
)
10648 /* But we still need to check our siblings. */
10649 if (code
== TREE_LIST
)
10650 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
10651 else if (code
== OMP_CLAUSE
)
10652 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10659 result
= (*lh
) (tp
, &walk_subtrees
, func
, data
, pset
);
10660 if (result
|| !walk_subtrees
)
10667 case IDENTIFIER_NODE
:
10674 case PLACEHOLDER_EXPR
:
10678 /* None of these have subtrees other than those already walked
10683 WALK_SUBTREE (TREE_VALUE (*tp
));
10684 WALK_SUBTREE_TAIL (TREE_CHAIN (*tp
));
10689 int len
= TREE_VEC_LENGTH (*tp
);
10694 /* Walk all elements but the first. */
10696 WALK_SUBTREE (TREE_VEC_ELT (*tp
, len
));
10698 /* Now walk the first one as a tail call. */
10699 WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp
, 0));
10703 WALK_SUBTREE (TREE_REALPART (*tp
));
10704 WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp
));
10708 unsigned HOST_WIDE_INT idx
;
10709 constructor_elt
*ce
;
10712 VEC_iterate(constructor_elt
, CONSTRUCTOR_ELTS (*tp
), idx
, ce
);
10714 WALK_SUBTREE (ce
->value
);
10719 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, 0));
10724 for (decl
= BIND_EXPR_VARS (*tp
); decl
; decl
= DECL_CHAIN (decl
))
10726 /* Walk the DECL_INITIAL and DECL_SIZE. We don't want to walk
10727 into declarations that are just mentioned, rather than
10728 declared; they don't really belong to this part of the tree.
10729 And, we can see cycles: the initializer for a declaration
10730 can refer to the declaration itself. */
10731 WALK_SUBTREE (DECL_INITIAL (decl
));
10732 WALK_SUBTREE (DECL_SIZE (decl
));
10733 WALK_SUBTREE (DECL_SIZE_UNIT (decl
));
10735 WALK_SUBTREE_TAIL (BIND_EXPR_BODY (*tp
));
10738 case STATEMENT_LIST
:
10740 tree_stmt_iterator i
;
10741 for (i
= tsi_start (*tp
); !tsi_end_p (i
); tsi_next (&i
))
10742 WALK_SUBTREE (*tsi_stmt_ptr (i
));
10747 switch (OMP_CLAUSE_CODE (*tp
))
10749 case OMP_CLAUSE_PRIVATE
:
10750 case OMP_CLAUSE_SHARED
:
10751 case OMP_CLAUSE_FIRSTPRIVATE
:
10752 case OMP_CLAUSE_COPYIN
:
10753 case OMP_CLAUSE_COPYPRIVATE
:
10754 case OMP_CLAUSE_FINAL
:
10755 case OMP_CLAUSE_IF
:
10756 case OMP_CLAUSE_NUM_THREADS
:
10757 case OMP_CLAUSE_SCHEDULE
:
10758 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, 0));
10761 case OMP_CLAUSE_NOWAIT
:
10762 case OMP_CLAUSE_ORDERED
:
10763 case OMP_CLAUSE_DEFAULT
:
10764 case OMP_CLAUSE_UNTIED
:
10765 case OMP_CLAUSE_MERGEABLE
:
10766 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10768 case OMP_CLAUSE_LASTPRIVATE
:
10769 WALK_SUBTREE (OMP_CLAUSE_DECL (*tp
));
10770 WALK_SUBTREE (OMP_CLAUSE_LASTPRIVATE_STMT (*tp
));
10771 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10773 case OMP_CLAUSE_COLLAPSE
:
10776 for (i
= 0; i
< 3; i
++)
10777 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
10778 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10781 case OMP_CLAUSE_REDUCTION
:
10784 for (i
= 0; i
< 4; i
++)
10785 WALK_SUBTREE (OMP_CLAUSE_OPERAND (*tp
, i
));
10786 WALK_SUBTREE_TAIL (OMP_CLAUSE_CHAIN (*tp
));
10790 gcc_unreachable ();
10798 /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
10799 But, we only want to walk once. */
10800 len
= (TREE_OPERAND (*tp
, 3) == TREE_OPERAND (*tp
, 1)) ? 2 : 3;
10801 for (i
= 0; i
< len
; ++i
)
10802 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
10803 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
));
10807 /* If this is a TYPE_DECL, walk into the fields of the type that it's
10808 defining. We only want to walk into these fields of a type in this
10809 case and not in the general case of a mere reference to the type.
10811 The criterion is as follows: if the field can be an expression, it
10812 must be walked only here. This should be in keeping with the fields
10813 that are directly gimplified in gimplify_type_sizes in order for the
10814 mark/copy-if-shared/unmark machinery of the gimplifier to work with
10815 variable-sized types.
10817 Note that DECLs get walked as part of processing the BIND_EXPR. */
10818 if (TREE_CODE (DECL_EXPR_DECL (*tp
)) == TYPE_DECL
)
10820 tree
*type_p
= &TREE_TYPE (DECL_EXPR_DECL (*tp
));
10821 if (TREE_CODE (*type_p
) == ERROR_MARK
)
10824 /* Call the function for the type. See if it returns anything or
10825 doesn't want us to continue. If we are to continue, walk both
10826 the normal fields and those for the declaration case. */
10827 result
= (*func
) (type_p
, &walk_subtrees
, data
);
10828 if (result
|| !walk_subtrees
)
10831 /* But do not walk a pointed-to type since it may itself need to
10832 be walked in the declaration case if it isn't anonymous. */
10833 if (!POINTER_TYPE_P (*type_p
))
10835 result
= walk_type_fields (*type_p
, func
, data
, pset
, lh
);
10840 /* If this is a record type, also walk the fields. */
10841 if (RECORD_OR_UNION_TYPE_P (*type_p
))
10845 for (field
= TYPE_FIELDS (*type_p
); field
;
10846 field
= DECL_CHAIN (field
))
10848 /* We'd like to look at the type of the field, but we can
10849 easily get infinite recursion. So assume it's pointed
10850 to elsewhere in the tree. Also, ignore things that
10852 if (TREE_CODE (field
) != FIELD_DECL
)
10855 WALK_SUBTREE (DECL_FIELD_OFFSET (field
));
10856 WALK_SUBTREE (DECL_SIZE (field
));
10857 WALK_SUBTREE (DECL_SIZE_UNIT (field
));
10858 if (TREE_CODE (*type_p
) == QUAL_UNION_TYPE
)
10859 WALK_SUBTREE (DECL_QUALIFIER (field
));
10863 /* Same for scalar types. */
10864 else if (TREE_CODE (*type_p
) == BOOLEAN_TYPE
10865 || TREE_CODE (*type_p
) == ENUMERAL_TYPE
10866 || TREE_CODE (*type_p
) == INTEGER_TYPE
10867 || TREE_CODE (*type_p
) == FIXED_POINT_TYPE
10868 || TREE_CODE (*type_p
) == REAL_TYPE
)
10870 WALK_SUBTREE (TYPE_MIN_VALUE (*type_p
));
10871 WALK_SUBTREE (TYPE_MAX_VALUE (*type_p
));
10874 WALK_SUBTREE (TYPE_SIZE (*type_p
));
10875 WALK_SUBTREE_TAIL (TYPE_SIZE_UNIT (*type_p
));
10880 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code
)))
10884 /* Walk over all the sub-trees of this operand. */
10885 len
= TREE_OPERAND_LENGTH (*tp
);
10887 /* Go through the subtrees. We need to do this in forward order so
10888 that the scope of a FOR_EXPR is handled properly. */
10891 for (i
= 0; i
< len
- 1; ++i
)
10892 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
10893 WALK_SUBTREE_TAIL (TREE_OPERAND (*tp
, len
- 1));
10896 /* If this is a type, walk the needed fields in the type. */
10897 else if (TYPE_P (*tp
))
10898 return walk_type_fields (*tp
, func
, data
, pset
, lh
);
10902 /* We didn't find what we were looking for. */
10905 #undef WALK_SUBTREE_TAIL
10907 #undef WALK_SUBTREE
10909 /* Like walk_tree, but does not walk duplicate nodes more than once. */
10912 walk_tree_without_duplicates_1 (tree
*tp
, walk_tree_fn func
, void *data
,
10916 struct pointer_set_t
*pset
;
10918 pset
= pointer_set_create ();
10919 result
= walk_tree_1 (tp
, func
, data
, pset
, lh
);
10920 pointer_set_destroy (pset
);
10926 tree_block (tree t
)
10928 char const c
= TREE_CODE_CLASS (TREE_CODE (t
));
10930 if (IS_EXPR_CODE_CLASS (c
))
10931 return LOCATION_BLOCK (t
->exp
.locus
);
10932 gcc_unreachable ();
10937 tree_set_block (tree t
, tree b
)
10939 char const c
= TREE_CODE_CLASS (TREE_CODE (t
));
10941 if (IS_EXPR_CODE_CLASS (c
))
10944 t
->exp
.locus
= COMBINE_LOCATION_DATA (line_table
, t
->exp
.locus
, b
);
10946 t
->exp
.locus
= LOCATION_LOCUS (t
->exp
.locus
);
10949 gcc_unreachable ();
10952 /* Create a nameless artificial label and put it in the current
10953 function context. The label has a location of LOC. Returns the
10954 newly created label. */
10957 create_artificial_label (location_t loc
)
10959 tree lab
= build_decl (loc
,
10960 LABEL_DECL
, NULL_TREE
, void_type_node
);
10962 DECL_ARTIFICIAL (lab
) = 1;
10963 DECL_IGNORED_P (lab
) = 1;
10964 DECL_CONTEXT (lab
) = current_function_decl
;
10968 /* Given a tree, try to return a useful variable name that we can use
10969 to prefix a temporary that is being assigned the value of the tree.
10970 I.E. given <temp> = &A, return A. */
10975 tree stripped_decl
;
10978 STRIP_NOPS (stripped_decl
);
10979 if (DECL_P (stripped_decl
) && DECL_NAME (stripped_decl
))
10980 return IDENTIFIER_POINTER (DECL_NAME (stripped_decl
));
10981 else if (TREE_CODE (stripped_decl
) == SSA_NAME
)
10983 tree name
= SSA_NAME_IDENTIFIER (stripped_decl
);
10986 return IDENTIFIER_POINTER (name
);
10990 switch (TREE_CODE (stripped_decl
))
10993 return get_name (TREE_OPERAND (stripped_decl
, 0));
11000 /* Return true if TYPE has a variable argument list. */
11003 stdarg_p (const_tree fntype
)
11005 function_args_iterator args_iter
;
11006 tree n
= NULL_TREE
, t
;
11011 FOREACH_FUNCTION_ARGS(fntype
, t
, args_iter
)
11016 return n
!= NULL_TREE
&& n
!= void_type_node
;
11019 /* Return true if TYPE has a prototype. */
11022 prototype_p (tree fntype
)
11026 gcc_assert (fntype
!= NULL_TREE
);
11028 t
= TYPE_ARG_TYPES (fntype
);
11029 return (t
!= NULL_TREE
);
11032 /* If BLOCK is inlined from an __attribute__((__artificial__))
11033 routine, return pointer to location from where it has been
11036 block_nonartificial_location (tree block
)
11038 location_t
*ret
= NULL
;
11040 while (block
&& TREE_CODE (block
) == BLOCK
11041 && BLOCK_ABSTRACT_ORIGIN (block
))
11043 tree ao
= BLOCK_ABSTRACT_ORIGIN (block
);
11045 while (TREE_CODE (ao
) == BLOCK
11046 && BLOCK_ABSTRACT_ORIGIN (ao
)
11047 && BLOCK_ABSTRACT_ORIGIN (ao
) != ao
)
11048 ao
= BLOCK_ABSTRACT_ORIGIN (ao
);
11050 if (TREE_CODE (ao
) == FUNCTION_DECL
)
11052 /* If AO is an artificial inline, point RET to the
11053 call site locus at which it has been inlined and continue
11054 the loop, in case AO's caller is also an artificial
11056 if (DECL_DECLARED_INLINE_P (ao
)
11057 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao
)))
11058 ret
= &BLOCK_SOURCE_LOCATION (block
);
11062 else if (TREE_CODE (ao
) != BLOCK
)
11065 block
= BLOCK_SUPERCONTEXT (block
);
11071 /* If EXP is inlined from an __attribute__((__artificial__))
11072 function, return the location of the original call expression. */
11075 tree_nonartificial_location (tree exp
)
11077 location_t
*loc
= block_nonartificial_location (TREE_BLOCK (exp
));
11082 return EXPR_LOCATION (exp
);
11086 /* These are the hash table functions for the hash table of OPTIMIZATION_NODEq
11089 /* Return the hash code code X, an OPTIMIZATION_NODE or TARGET_OPTION code. */
11092 cl_option_hash_hash (const void *x
)
11094 const_tree
const t
= (const_tree
) x
;
11098 hashval_t hash
= 0;
11100 if (TREE_CODE (t
) == OPTIMIZATION_NODE
)
11102 p
= (const char *)TREE_OPTIMIZATION (t
);
11103 len
= sizeof (struct cl_optimization
);
11106 else if (TREE_CODE (t
) == TARGET_OPTION_NODE
)
11108 p
= (const char *)TREE_TARGET_OPTION (t
);
11109 len
= sizeof (struct cl_target_option
);
11113 gcc_unreachable ();
11115 /* assume most opt flags are just 0/1, some are 2-3, and a few might be
11117 for (i
= 0; i
< len
; i
++)
11119 hash
= (hash
<< 4) ^ ((i
<< 2) | p
[i
]);
11124 /* Return nonzero if the value represented by *X (an OPTIMIZATION or
11125 TARGET_OPTION tree node) is the same as that given by *Y, which is the
11129 cl_option_hash_eq (const void *x
, const void *y
)
11131 const_tree
const xt
= (const_tree
) x
;
11132 const_tree
const yt
= (const_tree
) y
;
11137 if (TREE_CODE (xt
) != TREE_CODE (yt
))
11140 if (TREE_CODE (xt
) == OPTIMIZATION_NODE
)
11142 xp
= (const char *)TREE_OPTIMIZATION (xt
);
11143 yp
= (const char *)TREE_OPTIMIZATION (yt
);
11144 len
= sizeof (struct cl_optimization
);
11147 else if (TREE_CODE (xt
) == TARGET_OPTION_NODE
)
11149 xp
= (const char *)TREE_TARGET_OPTION (xt
);
11150 yp
= (const char *)TREE_TARGET_OPTION (yt
);
11151 len
= sizeof (struct cl_target_option
);
11155 gcc_unreachable ();
11157 return (memcmp (xp
, yp
, len
) == 0);
11160 /* Build an OPTIMIZATION_NODE based on the current options. */
11163 build_optimization_node (void)
11168 /* Use the cache of optimization nodes. */
11170 cl_optimization_save (TREE_OPTIMIZATION (cl_optimization_node
),
11173 slot
= htab_find_slot (cl_option_hash_table
, cl_optimization_node
, INSERT
);
11177 /* Insert this one into the hash table. */
11178 t
= cl_optimization_node
;
11181 /* Make a new node for next time round. */
11182 cl_optimization_node
= make_node (OPTIMIZATION_NODE
);
11188 /* Build a TARGET_OPTION_NODE based on the current options. */
11191 build_target_option_node (void)
11196 /* Use the cache of optimization nodes. */
11198 cl_target_option_save (TREE_TARGET_OPTION (cl_target_option_node
),
11201 slot
= htab_find_slot (cl_option_hash_table
, cl_target_option_node
, INSERT
);
11205 /* Insert this one into the hash table. */
11206 t
= cl_target_option_node
;
11209 /* Make a new node for next time round. */
11210 cl_target_option_node
= make_node (TARGET_OPTION_NODE
);
11216 /* Determine the "ultimate origin" of a block. The block may be an inlined
11217 instance of an inlined instance of a block which is local to an inline
11218 function, so we have to trace all of the way back through the origin chain
11219 to find out what sort of node actually served as the original seed for the
11223 block_ultimate_origin (const_tree block
)
11225 tree immediate_origin
= BLOCK_ABSTRACT_ORIGIN (block
);
11227 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
11228 nodes in the function to point to themselves; ignore that if
11229 we're trying to output the abstract instance of this function. */
11230 if (BLOCK_ABSTRACT (block
) && immediate_origin
== block
)
11233 if (immediate_origin
== NULL_TREE
)
11238 tree lookahead
= immediate_origin
;
11242 ret_val
= lookahead
;
11243 lookahead
= (TREE_CODE (ret_val
) == BLOCK
11244 ? BLOCK_ABSTRACT_ORIGIN (ret_val
) : NULL
);
11246 while (lookahead
!= NULL
&& lookahead
!= ret_val
);
11248 /* The block's abstract origin chain may not be the *ultimate* origin of
11249 the block. It could lead to a DECL that has an abstract origin set.
11250 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
11251 will give us if it has one). Note that DECL's abstract origins are
11252 supposed to be the most distant ancestor (or so decl_ultimate_origin
11253 claims), so we don't need to loop following the DECL origins. */
11254 if (DECL_P (ret_val
))
11255 return DECL_ORIGIN (ret_val
);
11261 /* Return true if T1 and T2 are equivalent lists. */
11264 list_equal_p (const_tree t1
, const_tree t2
)
11266 for (; t1
&& t2
; t1
= TREE_CHAIN (t1
) , t2
= TREE_CHAIN (t2
))
11267 if (TREE_VALUE (t1
) != TREE_VALUE (t2
))
11272 /* Return true iff conversion in EXP generates no instruction. Mark
11273 it inline so that we fully inline into the stripping functions even
11274 though we have two uses of this function. */
11277 tree_nop_conversion (const_tree exp
)
11279 tree outer_type
, inner_type
;
11281 if (!CONVERT_EXPR_P (exp
)
11282 && TREE_CODE (exp
) != NON_LVALUE_EXPR
)
11284 if (TREE_OPERAND (exp
, 0) == error_mark_node
)
11287 outer_type
= TREE_TYPE (exp
);
11288 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11293 /* Use precision rather then machine mode when we can, which gives
11294 the correct answer even for submode (bit-field) types. */
11295 if ((INTEGRAL_TYPE_P (outer_type
)
11296 || POINTER_TYPE_P (outer_type
)
11297 || TREE_CODE (outer_type
) == OFFSET_TYPE
)
11298 && (INTEGRAL_TYPE_P (inner_type
)
11299 || POINTER_TYPE_P (inner_type
)
11300 || TREE_CODE (inner_type
) == OFFSET_TYPE
))
11301 return TYPE_PRECISION (outer_type
) == TYPE_PRECISION (inner_type
);
11303 /* Otherwise fall back on comparing machine modes (e.g. for
11304 aggregate types, floats). */
11305 return TYPE_MODE (outer_type
) == TYPE_MODE (inner_type
);
11308 /* Return true iff conversion in EXP generates no instruction. Don't
11309 consider conversions changing the signedness. */
11312 tree_sign_nop_conversion (const_tree exp
)
11314 tree outer_type
, inner_type
;
11316 if (!tree_nop_conversion (exp
))
11319 outer_type
= TREE_TYPE (exp
);
11320 inner_type
= TREE_TYPE (TREE_OPERAND (exp
, 0));
11322 return (TYPE_UNSIGNED (outer_type
) == TYPE_UNSIGNED (inner_type
)
11323 && POINTER_TYPE_P (outer_type
) == POINTER_TYPE_P (inner_type
));
11326 /* Strip conversions from EXP according to tree_nop_conversion and
11327 return the resulting expression. */
11330 tree_strip_nop_conversions (tree exp
)
11332 while (tree_nop_conversion (exp
))
11333 exp
= TREE_OPERAND (exp
, 0);
11337 /* Strip conversions from EXP according to tree_sign_nop_conversion
11338 and return the resulting expression. */
11341 tree_strip_sign_nop_conversions (tree exp
)
11343 while (tree_sign_nop_conversion (exp
))
11344 exp
= TREE_OPERAND (exp
, 0);
11348 /* Avoid any floating point extensions from EXP. */
11350 strip_float_extensions (tree exp
)
11352 tree sub
, expt
, subt
;
11354 /* For floating point constant look up the narrowest type that can hold
11355 it properly and handle it like (type)(narrowest_type)constant.
11356 This way we can optimize for instance a=a*2.0 where "a" is float
11357 but 2.0 is double constant. */
11358 if (TREE_CODE (exp
) == REAL_CST
&& !DECIMAL_FLOAT_TYPE_P (TREE_TYPE (exp
)))
11360 REAL_VALUE_TYPE orig
;
11363 orig
= TREE_REAL_CST (exp
);
11364 if (TYPE_PRECISION (TREE_TYPE (exp
)) > TYPE_PRECISION (float_type_node
)
11365 && exact_real_truncate (TYPE_MODE (float_type_node
), &orig
))
11366 type
= float_type_node
;
11367 else if (TYPE_PRECISION (TREE_TYPE (exp
))
11368 > TYPE_PRECISION (double_type_node
)
11369 && exact_real_truncate (TYPE_MODE (double_type_node
), &orig
))
11370 type
= double_type_node
;
11372 return build_real (type
, real_value_truncate (TYPE_MODE (type
), orig
));
11375 if (!CONVERT_EXPR_P (exp
))
11378 sub
= TREE_OPERAND (exp
, 0);
11379 subt
= TREE_TYPE (sub
);
11380 expt
= TREE_TYPE (exp
);
11382 if (!FLOAT_TYPE_P (subt
))
11385 if (DECIMAL_FLOAT_TYPE_P (expt
) != DECIMAL_FLOAT_TYPE_P (subt
))
11388 if (TYPE_PRECISION (subt
) > TYPE_PRECISION (expt
))
11391 return strip_float_extensions (sub
);
11394 /* Strip out all handled components that produce invariant
11398 strip_invariant_refs (const_tree op
)
11400 while (handled_component_p (op
))
11402 switch (TREE_CODE (op
))
11405 case ARRAY_RANGE_REF
:
11406 if (!is_gimple_constant (TREE_OPERAND (op
, 1))
11407 || TREE_OPERAND (op
, 2) != NULL_TREE
11408 || TREE_OPERAND (op
, 3) != NULL_TREE
)
11412 case COMPONENT_REF
:
11413 if (TREE_OPERAND (op
, 2) != NULL_TREE
)
11419 op
= TREE_OPERAND (op
, 0);
11425 static GTY(()) tree gcc_eh_personality_decl
;
11427 /* Return the GCC personality function decl. */
11430 lhd_gcc_personality (void)
11432 if (!gcc_eh_personality_decl
)
11433 gcc_eh_personality_decl
= build_personality_function ("gcc");
11434 return gcc_eh_personality_decl
;
11437 /* Try to find a base info of BINFO that would have its field decl at offset
11438 OFFSET within the BINFO type and which is of EXPECTED_TYPE. If it can be
11439 found, return, otherwise return NULL_TREE. */
11442 get_binfo_at_offset (tree binfo
, HOST_WIDE_INT offset
, tree expected_type
)
11444 tree type
= BINFO_TYPE (binfo
);
11448 HOST_WIDE_INT pos
, size
;
11452 if (TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (expected_type
))
11457 for (fld
= TYPE_FIELDS (type
); fld
; fld
= DECL_CHAIN (fld
))
11459 if (TREE_CODE (fld
) != FIELD_DECL
)
11462 pos
= int_bit_position (fld
);
11463 size
= tree_low_cst (DECL_SIZE (fld
), 1);
11464 if (pos
<= offset
&& (pos
+ size
) > offset
)
11467 if (!fld
|| TREE_CODE (TREE_TYPE (fld
)) != RECORD_TYPE
)
11470 if (!DECL_ARTIFICIAL (fld
))
11472 binfo
= TYPE_BINFO (TREE_TYPE (fld
));
11476 /* Offset 0 indicates the primary base, whose vtable contents are
11477 represented in the binfo for the derived class. */
11478 else if (offset
!= 0)
11480 tree base_binfo
, found_binfo
= NULL_TREE
;
11481 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base_binfo
); i
++)
11482 if (TREE_TYPE (base_binfo
) == TREE_TYPE (fld
))
11484 found_binfo
= base_binfo
;
11489 binfo
= found_binfo
;
11492 type
= TREE_TYPE (fld
);
11497 /* Returns true if X is a typedef decl. */
11500 is_typedef_decl (tree x
)
11502 return (x
&& TREE_CODE (x
) == TYPE_DECL
11503 && DECL_ORIGINAL_TYPE (x
) != NULL_TREE
);
11506 /* Returns true iff TYPE is a type variant created for a typedef. */
11509 typedef_variant_p (tree type
)
11511 return is_typedef_decl (TYPE_NAME (type
));
11514 /* Warn about a use of an identifier which was marked deprecated. */
11516 warn_deprecated_use (tree node
, tree attr
)
11520 if (node
== 0 || !warn_deprecated_decl
)
11526 attr
= DECL_ATTRIBUTES (node
);
11527 else if (TYPE_P (node
))
11529 tree decl
= TYPE_STUB_DECL (node
);
11531 attr
= lookup_attribute ("deprecated",
11532 TYPE_ATTRIBUTES (TREE_TYPE (decl
)));
11537 attr
= lookup_attribute ("deprecated", attr
);
11540 msg
= TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (attr
)));
11546 expanded_location xloc
= expand_location (DECL_SOURCE_LOCATION (node
));
11548 warning (OPT_Wdeprecated_declarations
,
11549 "%qD is deprecated (declared at %s:%d): %s",
11550 node
, xloc
.file
, xloc
.line
, msg
);
11552 warning (OPT_Wdeprecated_declarations
,
11553 "%qD is deprecated (declared at %s:%d)",
11554 node
, xloc
.file
, xloc
.line
);
11556 else if (TYPE_P (node
))
11558 tree what
= NULL_TREE
;
11559 tree decl
= TYPE_STUB_DECL (node
);
11561 if (TYPE_NAME (node
))
11563 if (TREE_CODE (TYPE_NAME (node
)) == IDENTIFIER_NODE
)
11564 what
= TYPE_NAME (node
);
11565 else if (TREE_CODE (TYPE_NAME (node
)) == TYPE_DECL
11566 && DECL_NAME (TYPE_NAME (node
)))
11567 what
= DECL_NAME (TYPE_NAME (node
));
11572 expanded_location xloc
11573 = expand_location (DECL_SOURCE_LOCATION (decl
));
11577 warning (OPT_Wdeprecated_declarations
,
11578 "%qE is deprecated (declared at %s:%d): %s",
11579 what
, xloc
.file
, xloc
.line
, msg
);
11581 warning (OPT_Wdeprecated_declarations
,
11582 "%qE is deprecated (declared at %s:%d)", what
,
11583 xloc
.file
, xloc
.line
);
11588 warning (OPT_Wdeprecated_declarations
,
11589 "type is deprecated (declared at %s:%d): %s",
11590 xloc
.file
, xloc
.line
, msg
);
11592 warning (OPT_Wdeprecated_declarations
,
11593 "type is deprecated (declared at %s:%d)",
11594 xloc
.file
, xloc
.line
);
11602 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated: %s",
11605 warning (OPT_Wdeprecated_declarations
, "%qE is deprecated", what
);
11610 warning (OPT_Wdeprecated_declarations
, "type is deprecated: %s",
11613 warning (OPT_Wdeprecated_declarations
, "type is deprecated");
11619 #include "gt-tree.h"