1 /* Tree SCC value numbering
2 Copyright (C) 2007-2015 Free Software Foundation, Inc.
3 Contributed by Daniel Berlin <dberlin@dberlin.org>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #ifndef TREE_SSA_SCCVN_H
22 #define TREE_SSA_SCCVN_H
24 /* In tree-ssa-sccvn.c */
25 bool expressions_equal_p (tree
, tree
);
28 /* TOP of the VN lattice. */
31 /* N-ary operations in the hashtable consist of length operands, an
32 opcode, and a type. Result is the value number of the operation,
33 and hashcode is stored to avoid having to calculate it
36 typedef struct vn_nary_op_s
38 /* Unique identify that all expressions with the same value have. */
39 unsigned int value_id
;
40 ENUM_BITFIELD(tree_code
) opcode
: 16;
47 typedef const struct vn_nary_op_s
*const_vn_nary_op_t
;
49 /* Return the size of a vn_nary_op_t with LENGTH operands. */
52 sizeof_vn_nary_op (unsigned int length
)
54 return sizeof (struct vn_nary_op_s
) + sizeof (tree
) * length
- sizeof (tree
);
57 /* Phi nodes in the hashtable consist of their non-VN_TOP phi
58 arguments, and the basic block the phi is in. Result is the value
59 number of the operation, and hashcode is stored to avoid having to
60 calculate it repeatedly. Phi nodes not in the same block are never
61 considered equivalent. */
63 typedef struct vn_phi_s
65 /* Unique identifier that all expressions with the same value have. */
66 unsigned int value_id
;
73 typedef const struct vn_phi_s
*const_vn_phi_t
;
75 /* Reference operands only exist in reference operations structures.
76 They consist of an opcode, type, and some number of operands. For
77 a given opcode, some, all, or none of the operands may be used.
78 The operands are there to store the information that makes up the
79 portion of the addressing calculation that opcode performs. */
81 typedef struct vn_reference_op_struct
83 ENUM_BITFIELD(tree_code
) opcode
: 16;
84 /* 1 for instrumented calls. */
85 unsigned with_bounds
: 1;
86 /* Dependence info, used for [TARGET_]MEM_REF only. */
87 unsigned short clique
;
89 /* Constant offset this op adds or -1 if it is variable. */
96 typedef vn_reference_op_s
*vn_reference_op_t
;
97 typedef const vn_reference_op_s
*const_vn_reference_op_t
;
100 /* A reference operation in the hashtable is representation as
101 the vuse, representing the memory state at the time of
102 the operation, and a collection of operands that make up the
103 addressing calculation. If two vn_reference_t's have the same set
104 of operands, they access the same memory location. We also store
105 the resulting value number, and the hashcode. */
107 typedef struct vn_reference_s
109 /* Unique identifier that all expressions with the same value have. */
110 unsigned int value_id
;
115 vec
<vn_reference_op_s
> operands
;
119 typedef const struct vn_reference_s
*const_vn_reference_t
;
121 typedef struct vn_constant_s
123 unsigned int value_id
;
128 enum vn_kind
{ VN_NONE
, VN_CONSTANT
, VN_NARY
, VN_REFERENCE
, VN_PHI
};
129 enum vn_kind
vn_get_stmt_kind (gimple
*);
131 /* Hash the type TYPE using bits that distinguishes it in the
132 types_compatible_p sense. */
134 static inline hashval_t
135 vn_hash_type (tree type
)
137 return (INTEGRAL_TYPE_P (type
)
138 + (INTEGRAL_TYPE_P (type
)
139 ? TYPE_PRECISION (type
) + TYPE_UNSIGNED (type
) : 0));
142 /* Hash the constant CONSTANT with distinguishing type incompatible
143 constants in the types_compatible_p sense. */
145 static inline hashval_t
146 vn_hash_constant_with_type (tree constant
)
148 inchash::hash hstate
;
149 inchash::add_expr (constant
, hstate
);
150 hstate
.merge_hash (vn_hash_type (TREE_TYPE (constant
)));
151 return hstate
.end ();
154 /* Compare the constants C1 and C2 with distinguishing type incompatible
155 constants in the types_compatible_p sense. */
158 vn_constant_eq_with_type (tree c1
, tree c2
)
160 return (expressions_equal_p (c1
, c2
)
161 && types_compatible_p (TREE_TYPE (c1
), TREE_TYPE (c2
)));
164 typedef struct vn_ssa_aux
166 /* Value number. This may be an SSA name or a constant. */
168 /* Representative expression, if not a direct constant. */
171 /* Unique identifier that all expressions with the same value have. */
172 unsigned int value_id
;
174 /* SCC information. */
177 unsigned visited
: 1;
178 unsigned on_sccstack
: 1;
180 /* Whether the representative expression contains constants. */
181 unsigned has_constants
: 1;
182 /* Whether the SSA_NAME has been value numbered already. This is
183 only saying whether visit_use has been called on it at least
184 once. It cannot be used to avoid visitation for SSA_NAME's
185 involved in non-singleton SCC's. */
186 unsigned use_processed
: 1;
188 /* Whether the SSA_NAME has no defining statement and thus an
189 insertion of such with EXPR as definition is required before
190 a use can be created of it. */
191 unsigned needs_insertion
: 1;
194 enum vn_lookup_kind
{ VN_NOWALK
, VN_WALK
, VN_WALKREWRITE
};
196 /* Return the value numbering info for an SSA_NAME. */
197 extern vn_ssa_aux_t
VN_INFO (tree
);
198 extern vn_ssa_aux_t
VN_INFO_GET (tree
);
199 tree
vn_get_expr_for (tree
);
200 bool run_scc_vn (vn_lookup_kind
);
201 void free_scc_vn (void);
202 tree
vn_nary_op_lookup (tree
, vn_nary_op_t
*);
203 tree
vn_nary_op_lookup_stmt (gimple
*, vn_nary_op_t
*);
204 tree
vn_nary_op_lookup_pieces (unsigned int, enum tree_code
,
205 tree
, tree
*, vn_nary_op_t
*);
206 vn_nary_op_t
vn_nary_op_insert (tree
, tree
);
207 vn_nary_op_t
vn_nary_op_insert_pieces (unsigned int, enum tree_code
,
208 tree
, tree
*, tree
, unsigned int);
209 bool ao_ref_init_from_vn_reference (ao_ref
*, alias_set_type
, tree
,
210 vec
<vn_reference_op_s
> );
211 tree
vn_reference_lookup_pieces (tree
, alias_set_type
, tree
,
212 vec
<vn_reference_op_s
> ,
213 vn_reference_t
*, vn_lookup_kind
);
214 tree
vn_reference_lookup (tree
, tree
, vn_lookup_kind
, vn_reference_t
*);
215 void vn_reference_lookup_call (gcall
*, vn_reference_t
*, vn_reference_t
);
216 vn_reference_t
vn_reference_insert_pieces (tree
, alias_set_type
, tree
,
217 vec
<vn_reference_op_s
> ,
220 bool vn_nary_op_eq (const_vn_nary_op_t
const vno1
,
221 const_vn_nary_op_t
const vno2
);
222 bool vn_nary_may_trap (vn_nary_op_t
);
223 bool vn_reference_eq (const_vn_reference_t
const, const_vn_reference_t
const);
224 unsigned int get_max_value_id (void);
225 unsigned int get_next_value_id (void);
226 unsigned int get_constant_value_id (tree
);
227 unsigned int get_or_alloc_constant_value_id (tree
);
228 bool value_id_constant_p (unsigned int);
229 tree
fully_constant_vn_reference_p (vn_reference_t
);
231 /* Valueize NAME if it is an SSA name, otherwise just return it. */
234 vn_valueize (tree name
)
236 if (TREE_CODE (name
) == SSA_NAME
)
238 tree tem
= VN_INFO (name
)->valnum
;
239 return tem
== VN_TOP
? name
: tem
;
244 #endif /* TREE_SSA_SCCVN_H */