1 /* Value Numbering routines for tree expressions.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
3 Contributed by Daniel Berlin <dan@dberlin.org>, Steven Bosscher
4 <stevenb@suse.de> and Diego Novillo <dnovillo@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to
20 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
25 #include "coretypes.h"
29 #include "tree-flow.h"
31 #include "langhooks.h"
32 #include "tree-pass.h"
33 #include "tree-dump.h"
34 #include "diagnostic.h"
36 /* The value table that maps expressions to values. */
37 static htab_t value_table
;
39 /* Map expressions to values. These are simple pairs of expressions
40 and the values they represent. To find the value represented by
41 an expression, we use a hash table where the elements are {e,v}
42 pairs, and the expression is the key. */
43 typedef struct val_expr_pair_d
48 /* Associated expression. */
51 /* For comparing virtual uses in E. */
52 VEC (tree
, gc
) *vuses
;
58 static void set_value_handle (tree e
, tree v
);
61 /* Create and return a new value handle node of type TYPE. */
64 make_value_handle (tree type
)
66 static unsigned int id
= 0;
69 vh
= build0 (VALUE_HANDLE
, type
);
70 VALUE_HANDLE_ID (vh
) = id
++;
75 /* Given an expression EXPR, compute a hash value number using the
76 code of the expression, its real operands and virtual operands (if
79 VAL can be used to iterate by passing previous value numbers (it is
80 used by iterative_hash_expr). */
83 vn_compute (tree expr
, hashval_t val
)
85 /* EXPR must not be a statement. We are only interested in value
86 numbering expressions on the RHS of assignments. */
88 gcc_assert (!expr
->base
.ann
89 || expr
->base
.ann
->common
.type
!= STMT_ANN
);
91 val
= iterative_hash_expr (expr
, val
);
95 /* Compare two expressions E1 and E2 and return true if they are
99 expressions_equal_p (tree e1
, tree e2
)
106 te1
= TREE_TYPE (e1
);
107 te2
= TREE_TYPE (e2
);
109 if (TREE_CODE (e1
) == TREE_LIST
&& TREE_CODE (e2
) == TREE_LIST
)
113 for (lop1
= e1
, lop2
= e2
;
115 lop1
= TREE_CHAIN (lop1
), lop2
= TREE_CHAIN (lop2
))
119 if (!expressions_equal_p (TREE_VALUE (lop1
), TREE_VALUE (lop2
)))
125 else if (TREE_CODE (e1
) == TREE_CODE (e2
)
126 && (te1
== te2
|| lang_hooks
.types_compatible_p (te1
, te2
))
127 && operand_equal_p (e1
, e2
, OEP_PURE_SAME
))
134 /* Hash a {v,e} pair that is pointed to by P.
135 The hashcode is cached in the val_expr_pair, so we just return
139 val_expr_pair_hash (const void *p
)
141 const val_expr_pair_t ve
= (val_expr_pair_t
) p
;
146 /* Given two val_expr_pair_t's, return true if they represent the same
147 expression, false otherwise.
148 P1 and P2 should point to the val_expr_pair_t's to be compared. */
151 val_expr_pair_expr_eq (const void *p1
, const void *p2
)
155 const val_expr_pair_t ve1
= (val_expr_pair_t
) p1
;
156 const val_expr_pair_t ve2
= (val_expr_pair_t
) p2
;
158 if (! expressions_equal_p (ve1
->e
, ve2
->e
))
161 if (ve1
->vuses
== ve2
->vuses
)
164 if (VEC_length (tree
, ve1
->vuses
) != VEC_length (tree
, ve2
->vuses
))
167 for (i
= 0; VEC_iterate (tree
, ve1
->vuses
, i
, vuse1
); i
++)
169 if (VEC_index (tree
, ve2
->vuses
, i
) != vuse1
)
176 /* Set the value handle for expression E to value V. */
179 set_value_handle (tree e
, tree v
)
181 if (TREE_CODE (e
) == SSA_NAME
)
182 SSA_NAME_VALUE (e
) = v
;
183 else if (EXPR_P (e
) || DECL_P (e
) || TREE_CODE (e
) == TREE_LIST
185 || TREE_CODE (e
) == CONSTRUCTOR
)
186 get_tree_common_ann (e
)->value_handle
= v
;
188 /* Do nothing. Constants are their own value handles. */
189 gcc_assert (is_gimple_min_invariant (e
));
192 /* Copy the virtual uses from STMT into a newly allocated VEC(tree),
193 and return the VEC(tree). */
195 static VEC (tree
, gc
) *
196 copy_vuses_from_stmt (tree stmt
)
200 VEC (tree
, gc
) *vuses
= NULL
;
205 FOR_EACH_SSA_TREE_OPERAND (vuse
, stmt
, iter
, SSA_OP_VUSE
)
206 VEC_safe_push (tree
, gc
, vuses
, vuse
);
211 /* Place for shared_vuses_from_stmt to shove vuses. */
212 static VEC (tree
, gc
) *shared_lookup_vuses
;
214 /* Copy the virtual uses from STMT into SHARED_LOOKUP_VUSES.
215 This function will overwrite the current SHARED_LOOKUP_VUSES
218 static VEC (tree
, gc
) *
219 shared_vuses_from_stmt (tree stmt
)
227 VEC_truncate (tree
, shared_lookup_vuses
, 0);
229 FOR_EACH_SSA_TREE_OPERAND (vuse
, stmt
, iter
, SSA_OP_VUSE
)
230 VEC_safe_push (tree
, gc
, shared_lookup_vuses
, vuse
);
232 if (VEC_length (tree
, shared_lookup_vuses
) > 1)
233 sort_vuses (shared_lookup_vuses
);
235 return shared_lookup_vuses
;
238 /* Insert EXPR into VALUE_TABLE with value VAL, and add expression
239 EXPR to the value set for value VAL. */
242 vn_add (tree expr
, tree val
)
244 vn_add_with_vuses (expr
, val
, NULL
);
247 /* Insert EXPR into VALUE_TABLE with value VAL, and add expression
248 EXPR to the value set for value VAL. VUSES represents the virtual
249 use operands associated with EXPR. It is used when computing a
250 hash value for EXPR. */
253 vn_add_with_vuses (tree expr
, tree val
, VEC (tree
, gc
) *vuses
)
256 val_expr_pair_t new_pair
;
258 new_pair
= XNEW (struct val_expr_pair_d
);
261 new_pair
->vuses
= vuses
;
262 new_pair
->hashcode
= vn_compute (expr
, 0);
263 slot
= htab_find_slot_with_hash (value_table
, new_pair
, new_pair
->hashcode
,
267 *slot
= (void *) new_pair
;
269 set_value_handle (expr
, val
);
270 if (TREE_CODE (val
) == VALUE_HANDLE
)
271 add_to_value (val
, expr
);
275 /* Search in VALUE_TABLE for an existing instance of expression EXPR,
276 and return its value, or NULL if none has been set. STMT
277 represents the stmt associated with EXPR. It is used when computing the
278 hash value for EXPR. */
281 vn_lookup (tree expr
, tree stmt
)
283 return vn_lookup_with_vuses (expr
, shared_vuses_from_stmt (stmt
));
286 /* Search in VALUE_TABLE for an existing instance of expression EXPR,
287 and return its value, or NULL if none has been set. VUSES is the
288 list of virtual use operands associated with EXPR. It is used when
289 computing the hash value for EXPR. */
292 vn_lookup_with_vuses (tree expr
, VEC (tree
, gc
) *vuses
)
295 struct val_expr_pair_d vep
= {NULL
, NULL
, NULL
, 0};
297 /* Constants are their own value. */
298 if (is_gimple_min_invariant (expr
))
303 vep
.hashcode
= vn_compute (expr
, 0);
304 slot
= htab_find_slot_with_hash (value_table
, &vep
, vep
.hashcode
, NO_INSERT
);
308 return ((val_expr_pair_t
) *slot
)->v
;
312 /* A comparison function for use in qsort to compare vuses. Simply
313 subtracts version numbers. */
316 vuses_compare (const void *pa
, const void *pb
)
318 const tree vusea
= *((const tree
*)pa
);
319 const tree vuseb
= *((const tree
*)pb
);
320 int sn
= SSA_NAME_VERSION (vusea
) - SSA_NAME_VERSION (vuseb
);
325 /* Print out the "Created value <x> for <Y>" statement to the
327 This is factored because both versions of lookup use it, and it
328 obscures the real work going on in those functions. */
331 print_creation_to_file (tree v
, tree expr
, VEC (tree
, gc
) *vuses
)
333 fprintf (dump_file
, "Created value ");
334 print_generic_expr (dump_file
, v
, dump_flags
);
335 fprintf (dump_file
, " for ");
336 print_generic_expr (dump_file
, expr
, dump_flags
);
338 if (vuses
&& VEC_length (tree
, vuses
) != 0)
343 fprintf (dump_file
, " vuses: (");
344 for (i
= 0; VEC_iterate (tree
, vuses
, i
, vuse
); i
++)
346 print_generic_expr (dump_file
, vuse
, dump_flags
);
347 if (VEC_length (tree
, vuses
) - 1 != i
)
348 fprintf (dump_file
, ",");
350 fprintf (dump_file
, ")");
352 fprintf (dump_file
, "\n");
355 /* Like vn_lookup, but creates a new value for expression EXPR, if
356 EXPR doesn't already have a value. Return the existing/created
357 value for EXPR. STMT represents the stmt associated with EXPR. It
358 is used when computing the VUSES for EXPR. */
361 vn_lookup_or_add (tree expr
, tree stmt
)
363 tree v
= vn_lookup (expr
, stmt
);
368 v
= make_value_handle (TREE_TYPE (expr
));
369 vuses
= copy_vuses_from_stmt (stmt
);
372 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
373 print_creation_to_file (v
, expr
, vuses
);
375 VALUE_HANDLE_VUSES (v
) = vuses
;
376 vn_add_with_vuses (expr
, v
, vuses
);
379 set_value_handle (expr
, v
);
384 /* Sort the VUSE array so that we can do equality comparisons
385 quicker on two vuse vecs. */
388 sort_vuses (VEC (tree
,gc
) *vuses
)
390 if (VEC_length (tree
, vuses
) > 1)
391 qsort (VEC_address (tree
, vuses
),
392 VEC_length (tree
, vuses
),
397 /* Like vn_lookup, but creates a new value for expression EXPR, if
398 EXPR doesn't already have a value. Return the existing/created
399 value for EXPR. STMT represents the stmt associated with EXPR. It is used
400 when computing the hash value for EXPR. */
403 vn_lookup_or_add_with_vuses (tree expr
, VEC (tree
, gc
) *vuses
)
405 tree v
= vn_lookup_with_vuses (expr
, vuses
);
408 v
= make_value_handle (TREE_TYPE (expr
));
411 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
412 print_creation_to_file (v
, expr
, vuses
);
414 VALUE_HANDLE_VUSES (v
) = vuses
;
415 vn_add_with_vuses (expr
, v
, vuses
);
418 set_value_handle (expr
, v
);
423 /* Initialize data structures used in value numbering. */
428 value_table
= htab_create (511, val_expr_pair_hash
,
429 val_expr_pair_expr_eq
, free
);
430 shared_lookup_vuses
= NULL
;
433 /* Delete data used for value numbering. */
438 htab_delete (value_table
);
439 VEC_free (tree
, gc
, shared_lookup_vuses
);