1 /* SCC value numbering for trees
2 Copyright (C) 2006-2014 Free Software Foundation, Inc.
3 Contributed by Daniel Berlin <dan@dberlin.org>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
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/>. */
23 #include "coretypes.h"
26 #include "stor-layout.h"
27 #include "basic-block.h"
28 #include "gimple-pretty-print.h"
29 #include "tree-inline.h"
30 #include "hash-table.h"
31 #include "tree-ssa-alias.h"
32 #include "internal-fn.h"
33 #include "gimple-fold.h"
35 #include "gimple-expr.h"
39 #include "gimple-ssa.h"
40 #include "tree-phinodes.h"
41 #include "ssa-iterators.h"
42 #include "stringpool.h"
43 #include "tree-ssanames.h"
48 #include "alloc-pool.h"
52 #include "tree-ssa-propagate.h"
53 #include "tree-ssa-sccvn.h"
55 /* This algorithm is based on the SCC algorithm presented by Keith
56 Cooper and L. Taylor Simpson in "SCC-Based Value numbering"
57 (http://citeseer.ist.psu.edu/41805.html). In
58 straight line code, it is equivalent to a regular hash based value
59 numbering that is performed in reverse postorder.
61 For code with cycles, there are two alternatives, both of which
62 require keeping the hashtables separate from the actual list of
63 value numbers for SSA names.
65 1. Iterate value numbering in an RPO walk of the blocks, removing
66 all the entries from the hashtable after each iteration (but
67 keeping the SSA name->value number mapping between iterations).
68 Iterate until it does not change.
70 2. Perform value numbering as part of an SCC walk on the SSA graph,
71 iterating only the cycles in the SSA graph until they do not change
72 (using a separate, optimistic hashtable for value numbering the SCC
75 The second is not just faster in practice (because most SSA graph
76 cycles do not involve all the variables in the graph), it also has
79 One of these nice properties is that when we pop an SCC off the
80 stack, we are guaranteed to have processed all the operands coming from
81 *outside of that SCC*, so we do not need to do anything special to
82 ensure they have value numbers.
84 Another nice property is that the SCC walk is done as part of a DFS
85 of the SSA graph, which makes it easy to perform combining and
86 simplifying operations at the same time.
88 The code below is deliberately written in a way that makes it easy
89 to separate the SCC walk from the other work it does.
91 In order to propagate constants through the code, we track which
92 expressions contain constants, and use those while folding. In
93 theory, we could also track expressions whose value numbers are
94 replaced, in case we end up folding based on expression
97 In order to value number memory, we assign value numbers to vuses.
98 This enables us to note that, for example, stores to the same
99 address of the same value from the same starting memory states are
103 1. We can iterate only the changing portions of the SCC's, but
104 I have not seen an SCC big enough for this to be a win.
105 2. If you differentiate between phi nodes for loops and phi nodes
106 for if-then-else, you can properly consider phi nodes in different
107 blocks for equivalence.
108 3. We could value number vuses in more cases, particularly, whole
113 /* vn_nary_op hashtable helpers. */
115 struct vn_nary_op_hasher
: typed_noop_remove
<vn_nary_op_s
>
117 typedef vn_nary_op_s value_type
;
118 typedef vn_nary_op_s compare_type
;
119 static inline hashval_t
hash (const value_type
*);
120 static inline bool equal (const value_type
*, const compare_type
*);
123 /* Return the computed hashcode for nary operation P1. */
126 vn_nary_op_hasher::hash (const value_type
*vno1
)
128 return vno1
->hashcode
;
131 /* Compare nary operations P1 and P2 and return true if they are
135 vn_nary_op_hasher::equal (const value_type
*vno1
, const compare_type
*vno2
)
137 return vn_nary_op_eq (vno1
, vno2
);
140 typedef hash_table
<vn_nary_op_hasher
> vn_nary_op_table_type
;
141 typedef vn_nary_op_table_type::iterator vn_nary_op_iterator_type
;
144 /* vn_phi hashtable helpers. */
147 vn_phi_eq (const_vn_phi_t
const vp1
, const_vn_phi_t
const vp2
);
151 typedef vn_phi_s value_type
;
152 typedef vn_phi_s compare_type
;
153 static inline hashval_t
hash (const value_type
*);
154 static inline bool equal (const value_type
*, const compare_type
*);
155 static inline void remove (value_type
*);
158 /* Return the computed hashcode for phi operation P1. */
161 vn_phi_hasher::hash (const value_type
*vp1
)
163 return vp1
->hashcode
;
166 /* Compare two phi entries for equality, ignoring VN_TOP arguments. */
169 vn_phi_hasher::equal (const value_type
*vp1
, const compare_type
*vp2
)
171 return vn_phi_eq (vp1
, vp2
);
174 /* Free a phi operation structure VP. */
177 vn_phi_hasher::remove (value_type
*phi
)
179 phi
->phiargs
.release ();
182 typedef hash_table
<vn_phi_hasher
> vn_phi_table_type
;
183 typedef vn_phi_table_type::iterator vn_phi_iterator_type
;
186 /* Compare two reference operands P1 and P2 for equality. Return true if
187 they are equal, and false otherwise. */
190 vn_reference_op_eq (const void *p1
, const void *p2
)
192 const_vn_reference_op_t
const vro1
= (const_vn_reference_op_t
) p1
;
193 const_vn_reference_op_t
const vro2
= (const_vn_reference_op_t
) p2
;
195 return (vro1
->opcode
== vro2
->opcode
196 /* We do not care for differences in type qualification. */
197 && (vro1
->type
== vro2
->type
198 || (vro1
->type
&& vro2
->type
199 && types_compatible_p (TYPE_MAIN_VARIANT (vro1
->type
),
200 TYPE_MAIN_VARIANT (vro2
->type
))))
201 && expressions_equal_p (vro1
->op0
, vro2
->op0
)
202 && expressions_equal_p (vro1
->op1
, vro2
->op1
)
203 && expressions_equal_p (vro1
->op2
, vro2
->op2
));
206 /* Free a reference operation structure VP. */
209 free_reference (vn_reference_s
*vr
)
211 vr
->operands
.release ();
215 /* vn_reference hashtable helpers. */
217 struct vn_reference_hasher
219 typedef vn_reference_s value_type
;
220 typedef vn_reference_s compare_type
;
221 static inline hashval_t
hash (const value_type
*);
222 static inline bool equal (const value_type
*, const compare_type
*);
223 static inline void remove (value_type
*);
226 /* Return the hashcode for a given reference operation P1. */
229 vn_reference_hasher::hash (const value_type
*vr1
)
231 return vr1
->hashcode
;
235 vn_reference_hasher::equal (const value_type
*v
, const compare_type
*c
)
237 return vn_reference_eq (v
, c
);
241 vn_reference_hasher::remove (value_type
*v
)
246 typedef hash_table
<vn_reference_hasher
> vn_reference_table_type
;
247 typedef vn_reference_table_type::iterator vn_reference_iterator_type
;
250 /* The set of hashtables and alloc_pool's for their items. */
252 typedef struct vn_tables_s
254 vn_nary_op_table_type nary
;
255 vn_phi_table_type phis
;
256 vn_reference_table_type references
;
257 struct obstack nary_obstack
;
258 alloc_pool phis_pool
;
259 alloc_pool references_pool
;
263 /* vn_constant hashtable helpers. */
265 struct vn_constant_hasher
: typed_free_remove
<vn_constant_s
>
267 typedef vn_constant_s value_type
;
268 typedef vn_constant_s compare_type
;
269 static inline hashval_t
hash (const value_type
*);
270 static inline bool equal (const value_type
*, const compare_type
*);
273 /* Hash table hash function for vn_constant_t. */
276 vn_constant_hasher::hash (const value_type
*vc1
)
278 return vc1
->hashcode
;
281 /* Hash table equality function for vn_constant_t. */
284 vn_constant_hasher::equal (const value_type
*vc1
, const compare_type
*vc2
)
286 if (vc1
->hashcode
!= vc2
->hashcode
)
289 return vn_constant_eq_with_type (vc1
->constant
, vc2
->constant
);
292 static hash_table
<vn_constant_hasher
> constant_to_value_id
;
293 static bitmap constant_value_ids
;
296 /* Valid hashtables storing information we have proven to be
299 static vn_tables_t valid_info
;
301 /* Optimistic hashtables storing information we are making assumptions about
302 during iterations. */
304 static vn_tables_t optimistic_info
;
306 /* Pointer to the set of hashtables that is currently being used.
307 Should always point to either the optimistic_info, or the
310 static vn_tables_t current_info
;
313 /* Reverse post order index for each basic block. */
315 static int *rpo_numbers
;
317 #define SSA_VAL(x) (VN_INFO ((x))->valnum)
319 /* This represents the top of the VN lattice, which is the universal
324 /* Unique counter for our value ids. */
326 static unsigned int next_value_id
;
328 /* Next DFS number and the stack for strongly connected component
331 static unsigned int next_dfs_num
;
332 static vec
<tree
> sccstack
;
336 /* Table of vn_ssa_aux_t's, one per ssa_name. The vn_ssa_aux_t objects
337 are allocated on an obstack for locality reasons, and to free them
338 without looping over the vec. */
340 static vec
<vn_ssa_aux_t
> vn_ssa_aux_table
;
341 static struct obstack vn_ssa_aux_obstack
;
343 /* Return the value numbering information for a given SSA name. */
348 vn_ssa_aux_t res
= vn_ssa_aux_table
[SSA_NAME_VERSION (name
)];
349 gcc_checking_assert (res
);
353 /* Set the value numbering info for a given SSA name to a given
357 VN_INFO_SET (tree name
, vn_ssa_aux_t value
)
359 vn_ssa_aux_table
[SSA_NAME_VERSION (name
)] = value
;
362 /* Initialize the value numbering info for a given SSA name.
363 This should be called just once for every SSA name. */
366 VN_INFO_GET (tree name
)
368 vn_ssa_aux_t newinfo
;
370 newinfo
= XOBNEW (&vn_ssa_aux_obstack
, struct vn_ssa_aux
);
371 memset (newinfo
, 0, sizeof (struct vn_ssa_aux
));
372 if (SSA_NAME_VERSION (name
) >= vn_ssa_aux_table
.length ())
373 vn_ssa_aux_table
.safe_grow (SSA_NAME_VERSION (name
) + 1);
374 vn_ssa_aux_table
[SSA_NAME_VERSION (name
)] = newinfo
;
379 /* Get the representative expression for the SSA_NAME NAME. Returns
380 the representative SSA_NAME if there is no expression associated with it. */
383 vn_get_expr_for (tree name
)
385 vn_ssa_aux_t vn
= VN_INFO (name
);
387 tree expr
= NULL_TREE
;
390 if (vn
->valnum
== VN_TOP
)
393 /* If the value-number is a constant it is the representative
395 if (TREE_CODE (vn
->valnum
) != SSA_NAME
)
398 /* Get to the information of the value of this SSA_NAME. */
399 vn
= VN_INFO (vn
->valnum
);
401 /* If the value-number is a constant it is the representative
403 if (TREE_CODE (vn
->valnum
) != SSA_NAME
)
406 /* Else if we have an expression, return it. */
407 if (vn
->expr
!= NULL_TREE
)
410 /* Otherwise use the defining statement to build the expression. */
411 def_stmt
= SSA_NAME_DEF_STMT (vn
->valnum
);
413 /* If the value number is not an assignment use it directly. */
414 if (!is_gimple_assign (def_stmt
))
417 /* FIXME tuples. This is incomplete and likely will miss some
419 code
= gimple_assign_rhs_code (def_stmt
);
420 switch (TREE_CODE_CLASS (code
))
423 if ((code
== REALPART_EXPR
424 || code
== IMAGPART_EXPR
425 || code
== VIEW_CONVERT_EXPR
)
426 && TREE_CODE (TREE_OPERAND (gimple_assign_rhs1 (def_stmt
),
428 expr
= fold_build1 (code
,
429 gimple_expr_type (def_stmt
),
430 TREE_OPERAND (gimple_assign_rhs1 (def_stmt
), 0));
434 expr
= fold_build1 (code
,
435 gimple_expr_type (def_stmt
),
436 gimple_assign_rhs1 (def_stmt
));
440 expr
= fold_build2 (code
,
441 gimple_expr_type (def_stmt
),
442 gimple_assign_rhs1 (def_stmt
),
443 gimple_assign_rhs2 (def_stmt
));
446 case tcc_exceptional
:
447 if (code
== CONSTRUCTOR
449 (TREE_TYPE (gimple_assign_rhs1 (def_stmt
))) == VECTOR_TYPE
)
450 expr
= gimple_assign_rhs1 (def_stmt
);
455 if (expr
== NULL_TREE
)
458 /* Cache the expression. */
464 /* Return the vn_kind the expression computed by the stmt should be
468 vn_get_stmt_kind (gimple stmt
)
470 switch (gimple_code (stmt
))
478 enum tree_code code
= gimple_assign_rhs_code (stmt
);
479 tree rhs1
= gimple_assign_rhs1 (stmt
);
480 switch (get_gimple_rhs_class (code
))
482 case GIMPLE_UNARY_RHS
:
483 case GIMPLE_BINARY_RHS
:
484 case GIMPLE_TERNARY_RHS
:
486 case GIMPLE_SINGLE_RHS
:
487 switch (TREE_CODE_CLASS (code
))
490 /* VOP-less references can go through unary case. */
491 if ((code
== REALPART_EXPR
492 || code
== IMAGPART_EXPR
493 || code
== VIEW_CONVERT_EXPR
494 || code
== BIT_FIELD_REF
)
495 && TREE_CODE (TREE_OPERAND (rhs1
, 0)) == SSA_NAME
)
499 case tcc_declaration
:
506 if (code
== ADDR_EXPR
)
507 return (is_gimple_min_invariant (rhs1
)
508 ? VN_CONSTANT
: VN_REFERENCE
);
509 else if (code
== CONSTRUCTOR
)
522 /* Lookup a value id for CONSTANT and return it. If it does not
526 get_constant_value_id (tree constant
)
528 vn_constant_s
**slot
;
529 struct vn_constant_s vc
;
531 vc
.hashcode
= vn_hash_constant_with_type (constant
);
532 vc
.constant
= constant
;
533 slot
= constant_to_value_id
.find_slot_with_hash (&vc
, vc
.hashcode
, NO_INSERT
);
535 return (*slot
)->value_id
;
539 /* Lookup a value id for CONSTANT, and if it does not exist, create a
540 new one and return it. If it does exist, return it. */
543 get_or_alloc_constant_value_id (tree constant
)
545 vn_constant_s
**slot
;
546 struct vn_constant_s vc
;
549 vc
.hashcode
= vn_hash_constant_with_type (constant
);
550 vc
.constant
= constant
;
551 slot
= constant_to_value_id
.find_slot_with_hash (&vc
, vc
.hashcode
, INSERT
);
553 return (*slot
)->value_id
;
555 vcp
= XNEW (struct vn_constant_s
);
556 vcp
->hashcode
= vc
.hashcode
;
557 vcp
->constant
= constant
;
558 vcp
->value_id
= get_next_value_id ();
560 bitmap_set_bit (constant_value_ids
, vcp
->value_id
);
561 return vcp
->value_id
;
564 /* Return true if V is a value id for a constant. */
567 value_id_constant_p (unsigned int v
)
569 return bitmap_bit_p (constant_value_ids
, v
);
572 /* Compute the hash for a reference operand VRO1. */
575 vn_reference_op_compute_hash (const vn_reference_op_t vro1
, hashval_t result
)
577 result
= iterative_hash_hashval_t (vro1
->opcode
, result
);
579 result
= iterative_hash_expr (vro1
->op0
, result
);
581 result
= iterative_hash_expr (vro1
->op1
, result
);
583 result
= iterative_hash_expr (vro1
->op2
, result
);
587 /* Compute a hash for the reference operation VR1 and return it. */
590 vn_reference_compute_hash (const vn_reference_t vr1
)
592 hashval_t result
= 0;
594 vn_reference_op_t vro
;
595 HOST_WIDE_INT off
= -1;
598 FOR_EACH_VEC_ELT (vr1
->operands
, i
, vro
)
600 if (vro
->opcode
== MEM_REF
)
602 else if (vro
->opcode
!= ADDR_EXPR
)
614 result
= iterative_hash_hashval_t (off
, result
);
617 && vro
->opcode
== ADDR_EXPR
)
621 tree op
= TREE_OPERAND (vro
->op0
, 0);
622 result
= iterative_hash_hashval_t (TREE_CODE (op
), result
);
623 result
= iterative_hash_expr (op
, result
);
627 result
= vn_reference_op_compute_hash (vro
, result
);
631 result
+= SSA_NAME_VERSION (vr1
->vuse
);
636 /* Return true if reference operations VR1 and VR2 are equivalent. This
637 means they have the same set of operands and vuses. */
640 vn_reference_eq (const_vn_reference_t
const vr1
, const_vn_reference_t
const vr2
)
644 if (vr1
->hashcode
!= vr2
->hashcode
)
647 /* Early out if this is not a hash collision. */
648 if (vr1
->hashcode
!= vr2
->hashcode
)
651 /* The VOP needs to be the same. */
652 if (vr1
->vuse
!= vr2
->vuse
)
655 /* If the operands are the same we are done. */
656 if (vr1
->operands
== vr2
->operands
)
659 if (!expressions_equal_p (TYPE_SIZE (vr1
->type
), TYPE_SIZE (vr2
->type
)))
662 if (INTEGRAL_TYPE_P (vr1
->type
)
663 && INTEGRAL_TYPE_P (vr2
->type
))
665 if (TYPE_PRECISION (vr1
->type
) != TYPE_PRECISION (vr2
->type
))
668 else if (INTEGRAL_TYPE_P (vr1
->type
)
669 && (TYPE_PRECISION (vr1
->type
)
670 != TREE_INT_CST_LOW (TYPE_SIZE (vr1
->type
))))
672 else if (INTEGRAL_TYPE_P (vr2
->type
)
673 && (TYPE_PRECISION (vr2
->type
)
674 != TREE_INT_CST_LOW (TYPE_SIZE (vr2
->type
))))
681 HOST_WIDE_INT off1
= 0, off2
= 0;
682 vn_reference_op_t vro1
, vro2
;
683 vn_reference_op_s tem1
, tem2
;
684 bool deref1
= false, deref2
= false;
685 for (; vr1
->operands
.iterate (i
, &vro1
); i
++)
687 if (vro1
->opcode
== MEM_REF
)
693 for (; vr2
->operands
.iterate (j
, &vro2
); j
++)
695 if (vro2
->opcode
== MEM_REF
)
703 if (deref1
&& vro1
->opcode
== ADDR_EXPR
)
705 memset (&tem1
, 0, sizeof (tem1
));
706 tem1
.op0
= TREE_OPERAND (vro1
->op0
, 0);
707 tem1
.type
= TREE_TYPE (tem1
.op0
);
708 tem1
.opcode
= TREE_CODE (tem1
.op0
);
712 if (deref2
&& vro2
->opcode
== ADDR_EXPR
)
714 memset (&tem2
, 0, sizeof (tem2
));
715 tem2
.op0
= TREE_OPERAND (vro2
->op0
, 0);
716 tem2
.type
= TREE_TYPE (tem2
.op0
);
717 tem2
.opcode
= TREE_CODE (tem2
.op0
);
721 if (deref1
!= deref2
)
723 if (!vn_reference_op_eq (vro1
, vro2
))
728 while (vr1
->operands
.length () != i
729 || vr2
->operands
.length () != j
);
734 /* Copy the operations present in load/store REF into RESULT, a vector of
735 vn_reference_op_s's. */
738 copy_reference_ops_from_ref (tree ref
, vec
<vn_reference_op_s
> *result
)
740 if (TREE_CODE (ref
) == TARGET_MEM_REF
)
742 vn_reference_op_s temp
;
746 memset (&temp
, 0, sizeof (temp
));
747 temp
.type
= TREE_TYPE (ref
);
748 temp
.opcode
= TREE_CODE (ref
);
749 temp
.op0
= TMR_INDEX (ref
);
750 temp
.op1
= TMR_STEP (ref
);
751 temp
.op2
= TMR_OFFSET (ref
);
753 result
->quick_push (temp
);
755 memset (&temp
, 0, sizeof (temp
));
756 temp
.type
= NULL_TREE
;
757 temp
.opcode
= ERROR_MARK
;
758 temp
.op0
= TMR_INDEX2 (ref
);
760 result
->quick_push (temp
);
762 memset (&temp
, 0, sizeof (temp
));
763 temp
.type
= NULL_TREE
;
764 temp
.opcode
= TREE_CODE (TMR_BASE (ref
));
765 temp
.op0
= TMR_BASE (ref
);
767 result
->quick_push (temp
);
771 /* For non-calls, store the information that makes up the address. */
775 vn_reference_op_s temp
;
777 memset (&temp
, 0, sizeof (temp
));
778 temp
.type
= TREE_TYPE (ref
);
779 temp
.opcode
= TREE_CODE (ref
);
785 temp
.op0
= TREE_OPERAND (ref
, 1);
788 temp
.op0
= TREE_OPERAND (ref
, 1);
792 /* The base address gets its own vn_reference_op_s structure. */
793 temp
.op0
= TREE_OPERAND (ref
, 1);
794 if (tree_fits_shwi_p (TREE_OPERAND (ref
, 1)))
795 temp
.off
= tree_to_shwi (TREE_OPERAND (ref
, 1));
798 /* Record bits and position. */
799 temp
.op0
= TREE_OPERAND (ref
, 1);
800 temp
.op1
= TREE_OPERAND (ref
, 2);
803 /* The field decl is enough to unambiguously specify the field,
804 a matching type is not necessary and a mismatching type
805 is always a spurious difference. */
806 temp
.type
= NULL_TREE
;
807 temp
.op0
= TREE_OPERAND (ref
, 1);
808 temp
.op1
= TREE_OPERAND (ref
, 2);
810 tree this_offset
= component_ref_field_offset (ref
);
812 && TREE_CODE (this_offset
) == INTEGER_CST
)
814 tree bit_offset
= DECL_FIELD_BIT_OFFSET (TREE_OPERAND (ref
, 1));
815 if (TREE_INT_CST_LOW (bit_offset
) % BITS_PER_UNIT
== 0)
818 = tree_to_double_int (this_offset
)
819 + tree_to_double_int (bit_offset
)
820 .rshift (BITS_PER_UNIT
== 8
821 ? 3 : exact_log2 (BITS_PER_UNIT
));
823 /* Probibit value-numbering zero offset components
824 of addresses the same before the pass folding
825 __builtin_object_size had a chance to run
826 (checking cfun->after_inlining does the
828 && (TREE_CODE (orig
) != ADDR_EXPR
830 || cfun
->after_inlining
))
836 case ARRAY_RANGE_REF
:
838 /* Record index as operand. */
839 temp
.op0
= TREE_OPERAND (ref
, 1);
840 /* Always record lower bounds and element size. */
841 temp
.op1
= array_ref_low_bound (ref
);
842 temp
.op2
= array_ref_element_size (ref
);
843 if (TREE_CODE (temp
.op0
) == INTEGER_CST
844 && TREE_CODE (temp
.op1
) == INTEGER_CST
845 && TREE_CODE (temp
.op2
) == INTEGER_CST
)
847 double_int off
= tree_to_double_int (temp
.op0
);
848 off
+= -tree_to_double_int (temp
.op1
);
849 off
*= tree_to_double_int (temp
.op2
);
850 if (off
.fits_shwi ())
855 if (DECL_HARD_REGISTER (ref
))
864 /* Canonicalize decls to MEM[&decl] which is what we end up with
865 when valueizing MEM[ptr] with ptr = &decl. */
866 temp
.opcode
= MEM_REF
;
867 temp
.op0
= build_int_cst (build_pointer_type (TREE_TYPE (ref
)), 0);
869 result
->safe_push (temp
);
870 temp
.opcode
= ADDR_EXPR
;
871 temp
.op0
= build1 (ADDR_EXPR
, TREE_TYPE (temp
.op0
), ref
);
872 temp
.type
= TREE_TYPE (temp
.op0
);
886 if (is_gimple_min_invariant (ref
))
892 /* These are only interesting for their operands, their
893 existence, and their type. They will never be the last
894 ref in the chain of references (IE they require an
895 operand), so we don't have to put anything
896 for op* as it will be handled by the iteration */
898 case VIEW_CONVERT_EXPR
:
902 /* This is only interesting for its constant offset. */
903 temp
.off
= TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (ref
)));
908 result
->safe_push (temp
);
910 if (REFERENCE_CLASS_P (ref
)
911 || TREE_CODE (ref
) == MODIFY_EXPR
912 || TREE_CODE (ref
) == WITH_SIZE_EXPR
913 || (TREE_CODE (ref
) == ADDR_EXPR
914 && !is_gimple_min_invariant (ref
)))
915 ref
= TREE_OPERAND (ref
, 0);
921 /* Build a alias-oracle reference abstraction in *REF from the vn_reference
922 operands in *OPS, the reference alias set SET and the reference type TYPE.
923 Return true if something useful was produced. */
926 ao_ref_init_from_vn_reference (ao_ref
*ref
,
927 alias_set_type set
, tree type
,
928 vec
<vn_reference_op_s
> ops
)
930 vn_reference_op_t op
;
932 tree base
= NULL_TREE
;
934 HOST_WIDE_INT offset
= 0;
935 HOST_WIDE_INT max_size
;
936 HOST_WIDE_INT size
= -1;
937 tree size_tree
= NULL_TREE
;
938 alias_set_type base_alias_set
= -1;
940 /* First get the final access size from just the outermost expression. */
942 if (op
->opcode
== COMPONENT_REF
)
943 size_tree
= DECL_SIZE (op
->op0
);
944 else if (op
->opcode
== BIT_FIELD_REF
)
948 enum machine_mode mode
= TYPE_MODE (type
);
950 size_tree
= TYPE_SIZE (type
);
952 size
= GET_MODE_BITSIZE (mode
);
954 if (size_tree
!= NULL_TREE
)
956 if (!tree_fits_uhwi_p (size_tree
))
959 size
= tree_to_uhwi (size_tree
);
962 /* Initially, maxsize is the same as the accessed element size.
963 In the following it will only grow (or become -1). */
966 /* Compute cumulative bit-offset for nested component-refs and array-refs,
967 and find the ultimate containing object. */
968 FOR_EACH_VEC_ELT (ops
, i
, op
)
972 /* These may be in the reference ops, but we cannot do anything
973 sensible with them here. */
975 /* Apart from ADDR_EXPR arguments to MEM_REF. */
976 if (base
!= NULL_TREE
977 && TREE_CODE (base
) == MEM_REF
979 && DECL_P (TREE_OPERAND (op
->op0
, 0)))
981 vn_reference_op_t pop
= &ops
[i
-1];
982 base
= TREE_OPERAND (op
->op0
, 0);
989 offset
+= pop
->off
* BITS_PER_UNIT
;
997 /* Record the base objects. */
999 base_alias_set
= get_deref_alias_set (op
->op0
);
1000 *op0_p
= build2 (MEM_REF
, op
->type
,
1001 NULL_TREE
, op
->op0
);
1002 op0_p
= &TREE_OPERAND (*op0_p
, 0);
1013 /* And now the usual component-reference style ops. */
1015 offset
+= tree_to_shwi (op
->op1
);
1020 tree field
= op
->op0
;
1021 /* We do not have a complete COMPONENT_REF tree here so we
1022 cannot use component_ref_field_offset. Do the interesting
1026 || !tree_fits_uhwi_p (DECL_FIELD_OFFSET (field
)))
1030 offset
+= (tree_to_uhwi (DECL_FIELD_OFFSET (field
))
1032 offset
+= TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (field
));
1037 case ARRAY_RANGE_REF
:
1039 /* We recorded the lower bound and the element size. */
1040 if (!tree_fits_shwi_p (op
->op0
)
1041 || !tree_fits_shwi_p (op
->op1
)
1042 || !tree_fits_shwi_p (op
->op2
))
1046 HOST_WIDE_INT hindex
= tree_to_shwi (op
->op0
);
1047 hindex
-= tree_to_shwi (op
->op1
);
1048 hindex
*= tree_to_shwi (op
->op2
);
1049 hindex
*= BITS_PER_UNIT
;
1061 case VIEW_CONVERT_EXPR
:
1078 if (base
== NULL_TREE
)
1081 ref
->ref
= NULL_TREE
;
1083 ref
->offset
= offset
;
1085 ref
->max_size
= max_size
;
1086 ref
->ref_alias_set
= set
;
1087 if (base_alias_set
!= -1)
1088 ref
->base_alias_set
= base_alias_set
;
1090 ref
->base_alias_set
= get_alias_set (base
);
1091 /* We discount volatiles from value-numbering elsewhere. */
1092 ref
->volatile_p
= false;
1097 /* Copy the operations present in load/store/call REF into RESULT, a vector of
1098 vn_reference_op_s's. */
1101 copy_reference_ops_from_call (gimple call
,
1102 vec
<vn_reference_op_s
> *result
)
1104 vn_reference_op_s temp
;
1106 tree lhs
= gimple_call_lhs (call
);
1108 /* If 2 calls have a different non-ssa lhs, vdef value numbers should be
1109 different. By adding the lhs here in the vector, we ensure that the
1110 hashcode is different, guaranteeing a different value number. */
1111 if (lhs
&& TREE_CODE (lhs
) != SSA_NAME
)
1113 memset (&temp
, 0, sizeof (temp
));
1114 temp
.opcode
= MODIFY_EXPR
;
1115 temp
.type
= TREE_TYPE (lhs
);
1118 result
->safe_push (temp
);
1121 /* Copy the type, opcode, function being called and static chain. */
1122 memset (&temp
, 0, sizeof (temp
));
1123 temp
.type
= gimple_call_return_type (call
);
1124 temp
.opcode
= CALL_EXPR
;
1125 temp
.op0
= gimple_call_fn (call
);
1126 temp
.op1
= gimple_call_chain (call
);
1128 result
->safe_push (temp
);
1130 /* Copy the call arguments. As they can be references as well,
1131 just chain them together. */
1132 for (i
= 0; i
< gimple_call_num_args (call
); ++i
)
1134 tree callarg
= gimple_call_arg (call
, i
);
1135 copy_reference_ops_from_ref (callarg
, result
);
1139 /* Create a vector of vn_reference_op_s structures from CALL, a
1140 call statement. The vector is not shared. */
1142 static vec
<vn_reference_op_s
>
1143 create_reference_ops_from_call (gimple call
)
1145 vec
<vn_reference_op_s
> result
= vNULL
;
1147 copy_reference_ops_from_call (call
, &result
);
1151 /* Fold *& at position *I_P in a vn_reference_op_s vector *OPS. Updates
1152 *I_P to point to the last element of the replacement. */
1154 vn_reference_fold_indirect (vec
<vn_reference_op_s
> *ops
,
1157 unsigned int i
= *i_p
;
1158 vn_reference_op_t op
= &(*ops
)[i
];
1159 vn_reference_op_t mem_op
= &(*ops
)[i
- 1];
1161 HOST_WIDE_INT addr_offset
= 0;
1163 /* The only thing we have to do is from &OBJ.foo.bar add the offset
1164 from .foo.bar to the preceding MEM_REF offset and replace the
1165 address with &OBJ. */
1166 addr_base
= get_addr_base_and_unit_offset (TREE_OPERAND (op
->op0
, 0),
1168 gcc_checking_assert (addr_base
&& TREE_CODE (addr_base
) != MEM_REF
);
1169 if (addr_base
!= TREE_OPERAND (op
->op0
, 0))
1171 double_int off
= tree_to_double_int (mem_op
->op0
);
1172 off
= off
.sext (TYPE_PRECISION (TREE_TYPE (mem_op
->op0
)));
1173 off
+= double_int::from_shwi (addr_offset
);
1174 mem_op
->op0
= double_int_to_tree (TREE_TYPE (mem_op
->op0
), off
);
1175 op
->op0
= build_fold_addr_expr (addr_base
);
1176 if (tree_fits_shwi_p (mem_op
->op0
))
1177 mem_op
->off
= tree_to_shwi (mem_op
->op0
);
1183 /* Fold *& at position *I_P in a vn_reference_op_s vector *OPS. Updates
1184 *I_P to point to the last element of the replacement. */
1186 vn_reference_maybe_forwprop_address (vec
<vn_reference_op_s
> *ops
,
1189 unsigned int i
= *i_p
;
1190 vn_reference_op_t op
= &(*ops
)[i
];
1191 vn_reference_op_t mem_op
= &(*ops
)[i
- 1];
1193 enum tree_code code
;
1196 def_stmt
= SSA_NAME_DEF_STMT (op
->op0
);
1197 if (!is_gimple_assign (def_stmt
))
1200 code
= gimple_assign_rhs_code (def_stmt
);
1201 if (code
!= ADDR_EXPR
1202 && code
!= POINTER_PLUS_EXPR
)
1205 off
= tree_to_double_int (mem_op
->op0
);
1206 off
= off
.sext (TYPE_PRECISION (TREE_TYPE (mem_op
->op0
)));
1208 /* The only thing we have to do is from &OBJ.foo.bar add the offset
1209 from .foo.bar to the preceding MEM_REF offset and replace the
1210 address with &OBJ. */
1211 if (code
== ADDR_EXPR
)
1213 tree addr
, addr_base
;
1214 HOST_WIDE_INT addr_offset
;
1216 addr
= gimple_assign_rhs1 (def_stmt
);
1217 addr_base
= get_addr_base_and_unit_offset (TREE_OPERAND (addr
, 0),
1220 || TREE_CODE (addr_base
) != MEM_REF
)
1223 off
+= double_int::from_shwi (addr_offset
);
1224 off
+= mem_ref_offset (addr_base
);
1225 op
->op0
= TREE_OPERAND (addr_base
, 0);
1230 ptr
= gimple_assign_rhs1 (def_stmt
);
1231 ptroff
= gimple_assign_rhs2 (def_stmt
);
1232 if (TREE_CODE (ptr
) != SSA_NAME
1233 || TREE_CODE (ptroff
) != INTEGER_CST
)
1236 off
+= tree_to_double_int (ptroff
);
1240 mem_op
->op0
= double_int_to_tree (TREE_TYPE (mem_op
->op0
), off
);
1241 if (tree_fits_shwi_p (mem_op
->op0
))
1242 mem_op
->off
= tree_to_shwi (mem_op
->op0
);
1245 if (TREE_CODE (op
->op0
) == SSA_NAME
)
1246 op
->op0
= SSA_VAL (op
->op0
);
1247 if (TREE_CODE (op
->op0
) != SSA_NAME
)
1248 op
->opcode
= TREE_CODE (op
->op0
);
1251 if (TREE_CODE (op
->op0
) == SSA_NAME
)
1252 vn_reference_maybe_forwprop_address (ops
, i_p
);
1253 else if (TREE_CODE (op
->op0
) == ADDR_EXPR
)
1254 vn_reference_fold_indirect (ops
, i_p
);
1257 /* Optimize the reference REF to a constant if possible or return
1258 NULL_TREE if not. */
1261 fully_constant_vn_reference_p (vn_reference_t ref
)
1263 vec
<vn_reference_op_s
> operands
= ref
->operands
;
1264 vn_reference_op_t op
;
1266 /* Try to simplify the translated expression if it is
1267 a call to a builtin function with at most two arguments. */
1269 if (op
->opcode
== CALL_EXPR
1270 && TREE_CODE (op
->op0
) == ADDR_EXPR
1271 && TREE_CODE (TREE_OPERAND (op
->op0
, 0)) == FUNCTION_DECL
1272 && DECL_BUILT_IN (TREE_OPERAND (op
->op0
, 0))
1273 && operands
.length () >= 2
1274 && operands
.length () <= 3)
1276 vn_reference_op_t arg0
, arg1
= NULL
;
1277 bool anyconst
= false;
1278 arg0
= &operands
[1];
1279 if (operands
.length () > 2)
1280 arg1
= &operands
[2];
1281 if (TREE_CODE_CLASS (arg0
->opcode
) == tcc_constant
1282 || (arg0
->opcode
== ADDR_EXPR
1283 && is_gimple_min_invariant (arg0
->op0
)))
1286 && (TREE_CODE_CLASS (arg1
->opcode
) == tcc_constant
1287 || (arg1
->opcode
== ADDR_EXPR
1288 && is_gimple_min_invariant (arg1
->op0
))))
1292 tree folded
= build_call_expr (TREE_OPERAND (op
->op0
, 0),
1295 arg1
? arg1
->op0
: NULL
);
1297 && TREE_CODE (folded
) == NOP_EXPR
)
1298 folded
= TREE_OPERAND (folded
, 0);
1300 && is_gimple_min_invariant (folded
))
1305 /* Simplify reads from constant strings. */
1306 else if (op
->opcode
== ARRAY_REF
1307 && TREE_CODE (op
->op0
) == INTEGER_CST
1308 && integer_zerop (op
->op1
)
1309 && operands
.length () == 2)
1311 vn_reference_op_t arg0
;
1312 arg0
= &operands
[1];
1313 if (arg0
->opcode
== STRING_CST
1314 && (TYPE_MODE (op
->type
)
1315 == TYPE_MODE (TREE_TYPE (TREE_TYPE (arg0
->op0
))))
1316 && GET_MODE_CLASS (TYPE_MODE (op
->type
)) == MODE_INT
1317 && GET_MODE_SIZE (TYPE_MODE (op
->type
)) == 1
1318 && tree_int_cst_sgn (op
->op0
) >= 0
1319 && compare_tree_int (op
->op0
, TREE_STRING_LENGTH (arg0
->op0
)) < 0)
1320 return build_int_cst_type (op
->type
,
1321 (TREE_STRING_POINTER (arg0
->op0
)
1322 [TREE_INT_CST_LOW (op
->op0
)]));
1328 /* Transform any SSA_NAME's in a vector of vn_reference_op_s
1329 structures into their value numbers. This is done in-place, and
1330 the vector passed in is returned. *VALUEIZED_ANYTHING will specify
1331 whether any operands were valueized. */
1333 static vec
<vn_reference_op_s
>
1334 valueize_refs_1 (vec
<vn_reference_op_s
> orig
, bool *valueized_anything
)
1336 vn_reference_op_t vro
;
1339 *valueized_anything
= false;
1341 FOR_EACH_VEC_ELT (orig
, i
, vro
)
1343 if (vro
->opcode
== SSA_NAME
1344 || (vro
->op0
&& TREE_CODE (vro
->op0
) == SSA_NAME
))
1346 tree tem
= SSA_VAL (vro
->op0
);
1347 if (tem
!= vro
->op0
)
1349 *valueized_anything
= true;
1352 /* If it transforms from an SSA_NAME to a constant, update
1354 if (TREE_CODE (vro
->op0
) != SSA_NAME
&& vro
->opcode
== SSA_NAME
)
1355 vro
->opcode
= TREE_CODE (vro
->op0
);
1357 if (vro
->op1
&& TREE_CODE (vro
->op1
) == SSA_NAME
)
1359 tree tem
= SSA_VAL (vro
->op1
);
1360 if (tem
!= vro
->op1
)
1362 *valueized_anything
= true;
1366 if (vro
->op2
&& TREE_CODE (vro
->op2
) == SSA_NAME
)
1368 tree tem
= SSA_VAL (vro
->op2
);
1369 if (tem
!= vro
->op2
)
1371 *valueized_anything
= true;
1375 /* If it transforms from an SSA_NAME to an address, fold with
1376 a preceding indirect reference. */
1379 && TREE_CODE (vro
->op0
) == ADDR_EXPR
1380 && orig
[i
- 1].opcode
== MEM_REF
)
1381 vn_reference_fold_indirect (&orig
, &i
);
1383 && vro
->opcode
== SSA_NAME
1384 && orig
[i
- 1].opcode
== MEM_REF
)
1385 vn_reference_maybe_forwprop_address (&orig
, &i
);
1386 /* If it transforms a non-constant ARRAY_REF into a constant
1387 one, adjust the constant offset. */
1388 else if (vro
->opcode
== ARRAY_REF
1390 && TREE_CODE (vro
->op0
) == INTEGER_CST
1391 && TREE_CODE (vro
->op1
) == INTEGER_CST
1392 && TREE_CODE (vro
->op2
) == INTEGER_CST
)
1394 double_int off
= tree_to_double_int (vro
->op0
);
1395 off
+= -tree_to_double_int (vro
->op1
);
1396 off
*= tree_to_double_int (vro
->op2
);
1397 if (off
.fits_shwi ())
1405 static vec
<vn_reference_op_s
>
1406 valueize_refs (vec
<vn_reference_op_s
> orig
)
1409 return valueize_refs_1 (orig
, &tem
);
1412 static vec
<vn_reference_op_s
> shared_lookup_references
;
1414 /* Create a vector of vn_reference_op_s structures from REF, a
1415 REFERENCE_CLASS_P tree. The vector is shared among all callers of
1416 this function. *VALUEIZED_ANYTHING will specify whether any
1417 operands were valueized. */
1419 static vec
<vn_reference_op_s
>
1420 valueize_shared_reference_ops_from_ref (tree ref
, bool *valueized_anything
)
1424 shared_lookup_references
.truncate (0);
1425 copy_reference_ops_from_ref (ref
, &shared_lookup_references
);
1426 shared_lookup_references
= valueize_refs_1 (shared_lookup_references
,
1427 valueized_anything
);
1428 return shared_lookup_references
;
1431 /* Create a vector of vn_reference_op_s structures from CALL, a
1432 call statement. The vector is shared among all callers of
1435 static vec
<vn_reference_op_s
>
1436 valueize_shared_reference_ops_from_call (gimple call
)
1440 shared_lookup_references
.truncate (0);
1441 copy_reference_ops_from_call (call
, &shared_lookup_references
);
1442 shared_lookup_references
= valueize_refs (shared_lookup_references
);
1443 return shared_lookup_references
;
1446 /* Lookup a SCCVN reference operation VR in the current hash table.
1447 Returns the resulting value number if it exists in the hash table,
1448 NULL_TREE otherwise. VNRESULT will be filled in with the actual
1449 vn_reference_t stored in the hashtable if something is found. */
1452 vn_reference_lookup_1 (vn_reference_t vr
, vn_reference_t
*vnresult
)
1454 vn_reference_s
**slot
;
1457 hash
= vr
->hashcode
;
1458 slot
= current_info
->references
.find_slot_with_hash (vr
, hash
, NO_INSERT
);
1459 if (!slot
&& current_info
== optimistic_info
)
1460 slot
= valid_info
->references
.find_slot_with_hash (vr
, hash
, NO_INSERT
);
1464 *vnresult
= (vn_reference_t
)*slot
;
1465 return ((vn_reference_t
)*slot
)->result
;
1471 static tree
*last_vuse_ptr
;
1472 static vn_lookup_kind vn_walk_kind
;
1473 static vn_lookup_kind default_vn_walk_kind
;
1475 /* Callback for walk_non_aliased_vuses. Adjusts the vn_reference_t VR_
1476 with the current VUSE and performs the expression lookup. */
1479 vn_reference_lookup_2 (ao_ref
*op ATTRIBUTE_UNUSED
, tree vuse
,
1480 unsigned int cnt
, void *vr_
)
1482 vn_reference_t vr
= (vn_reference_t
)vr_
;
1483 vn_reference_s
**slot
;
1486 /* This bounds the stmt walks we perform on reference lookups
1487 to O(1) instead of O(N) where N is the number of dominating
1489 if (cnt
> (unsigned) PARAM_VALUE (PARAM_SCCVN_MAX_ALIAS_QUERIES_PER_ACCESS
))
1493 *last_vuse_ptr
= vuse
;
1495 /* Fixup vuse and hash. */
1497 vr
->hashcode
= vr
->hashcode
- SSA_NAME_VERSION (vr
->vuse
);
1498 vr
->vuse
= SSA_VAL (vuse
);
1500 vr
->hashcode
= vr
->hashcode
+ SSA_NAME_VERSION (vr
->vuse
);
1502 hash
= vr
->hashcode
;
1503 slot
= current_info
->references
.find_slot_with_hash (vr
, hash
, NO_INSERT
);
1504 if (!slot
&& current_info
== optimistic_info
)
1505 slot
= valid_info
->references
.find_slot_with_hash (vr
, hash
, NO_INSERT
);
1512 /* Lookup an existing or insert a new vn_reference entry into the
1513 value table for the VUSE, SET, TYPE, OPERANDS reference which
1514 has the value VALUE which is either a constant or an SSA name. */
1516 static vn_reference_t
1517 vn_reference_lookup_or_insert_for_pieces (tree vuse
,
1520 vec
<vn_reference_op_s
,
1524 struct vn_reference_s vr1
;
1525 vn_reference_t result
;
1528 vr1
.operands
= operands
;
1531 vr1
.hashcode
= vn_reference_compute_hash (&vr1
);
1532 if (vn_reference_lookup_1 (&vr1
, &result
))
1534 if (TREE_CODE (value
) == SSA_NAME
)
1535 value_id
= VN_INFO (value
)->value_id
;
1537 value_id
= get_or_alloc_constant_value_id (value
);
1538 return vn_reference_insert_pieces (vuse
, set
, type
,
1539 operands
.copy (), value
, value_id
);
1542 /* Callback for walk_non_aliased_vuses. Tries to perform a lookup
1543 from the statement defining VUSE and if not successful tries to
1544 translate *REFP and VR_ through an aggregate copy at the definition
1548 vn_reference_lookup_3 (ao_ref
*ref
, tree vuse
, void *vr_
)
1550 vn_reference_t vr
= (vn_reference_t
)vr_
;
1551 gimple def_stmt
= SSA_NAME_DEF_STMT (vuse
);
1553 HOST_WIDE_INT offset
, maxsize
;
1554 static vec
<vn_reference_op_s
>
1557 bool lhs_ref_ok
= false;
1559 /* First try to disambiguate after value-replacing in the definitions LHS. */
1560 if (is_gimple_assign (def_stmt
))
1562 vec
<vn_reference_op_s
> tem
;
1563 tree lhs
= gimple_assign_lhs (def_stmt
);
1564 bool valueized_anything
= false;
1565 /* Avoid re-allocation overhead. */
1566 lhs_ops
.truncate (0);
1567 copy_reference_ops_from_ref (lhs
, &lhs_ops
);
1569 lhs_ops
= valueize_refs_1 (lhs_ops
, &valueized_anything
);
1570 gcc_assert (lhs_ops
== tem
);
1571 if (valueized_anything
)
1573 lhs_ref_ok
= ao_ref_init_from_vn_reference (&lhs_ref
,
1574 get_alias_set (lhs
),
1575 TREE_TYPE (lhs
), lhs_ops
);
1577 && !refs_may_alias_p_1 (ref
, &lhs_ref
, true))
1582 ao_ref_init (&lhs_ref
, lhs
);
1587 base
= ao_ref_base (ref
);
1588 offset
= ref
->offset
;
1589 maxsize
= ref
->max_size
;
1591 /* If we cannot constrain the size of the reference we cannot
1592 test if anything kills it. */
1596 /* We can't deduce anything useful from clobbers. */
1597 if (gimple_clobber_p (def_stmt
))
1600 /* def_stmt may-defs *ref. See if we can derive a value for *ref
1601 from that definition.
1603 if (is_gimple_reg_type (vr
->type
)
1604 && gimple_call_builtin_p (def_stmt
, BUILT_IN_MEMSET
)
1605 && integer_zerop (gimple_call_arg (def_stmt
, 1))
1606 && tree_fits_uhwi_p (gimple_call_arg (def_stmt
, 2))
1607 && TREE_CODE (gimple_call_arg (def_stmt
, 0)) == ADDR_EXPR
)
1609 tree ref2
= TREE_OPERAND (gimple_call_arg (def_stmt
, 0), 0);
1611 HOST_WIDE_INT offset2
, size2
, maxsize2
;
1612 base2
= get_ref_base_and_extent (ref2
, &offset2
, &size2
, &maxsize2
);
1613 size2
= tree_to_uhwi (gimple_call_arg (def_stmt
, 2)) * 8;
1614 if ((unsigned HOST_WIDE_INT
)size2
/ 8
1615 == tree_to_uhwi (gimple_call_arg (def_stmt
, 2))
1617 && operand_equal_p (base
, base2
, 0)
1618 && offset2
<= offset
1619 && offset2
+ size2
>= offset
+ maxsize
)
1621 tree val
= build_zero_cst (vr
->type
);
1622 return vn_reference_lookup_or_insert_for_pieces
1623 (vuse
, vr
->set
, vr
->type
, vr
->operands
, val
);
1627 /* 2) Assignment from an empty CONSTRUCTOR. */
1628 else if (is_gimple_reg_type (vr
->type
)
1629 && gimple_assign_single_p (def_stmt
)
1630 && gimple_assign_rhs_code (def_stmt
) == CONSTRUCTOR
1631 && CONSTRUCTOR_NELTS (gimple_assign_rhs1 (def_stmt
)) == 0)
1634 HOST_WIDE_INT offset2
, size2
, maxsize2
;
1635 base2
= get_ref_base_and_extent (gimple_assign_lhs (def_stmt
),
1636 &offset2
, &size2
, &maxsize2
);
1638 && operand_equal_p (base
, base2
, 0)
1639 && offset2
<= offset
1640 && offset2
+ size2
>= offset
+ maxsize
)
1642 tree val
= build_zero_cst (vr
->type
);
1643 return vn_reference_lookup_or_insert_for_pieces
1644 (vuse
, vr
->set
, vr
->type
, vr
->operands
, val
);
1648 /* 3) Assignment from a constant. We can use folds native encode/interpret
1649 routines to extract the assigned bits. */
1650 else if (vn_walk_kind
== VN_WALKREWRITE
1651 && CHAR_BIT
== 8 && BITS_PER_UNIT
== 8
1652 && ref
->size
== maxsize
1653 && maxsize
% BITS_PER_UNIT
== 0
1654 && offset
% BITS_PER_UNIT
== 0
1655 && is_gimple_reg_type (vr
->type
)
1656 && gimple_assign_single_p (def_stmt
)
1657 && is_gimple_min_invariant (gimple_assign_rhs1 (def_stmt
)))
1660 HOST_WIDE_INT offset2
, size2
, maxsize2
;
1661 base2
= get_ref_base_and_extent (gimple_assign_lhs (def_stmt
),
1662 &offset2
, &size2
, &maxsize2
);
1664 && maxsize2
== size2
1665 && size2
% BITS_PER_UNIT
== 0
1666 && offset2
% BITS_PER_UNIT
== 0
1667 && operand_equal_p (base
, base2
, 0)
1668 && offset2
<= offset
1669 && offset2
+ size2
>= offset
+ maxsize
)
1671 /* We support up to 512-bit values (for V8DFmode). */
1672 unsigned char buffer
[64];
1675 len
= native_encode_expr (gimple_assign_rhs1 (def_stmt
),
1676 buffer
, sizeof (buffer
));
1679 tree val
= native_interpret_expr (vr
->type
,
1681 + ((offset
- offset2
)
1683 ref
->size
/ BITS_PER_UNIT
);
1685 return vn_reference_lookup_or_insert_for_pieces
1686 (vuse
, vr
->set
, vr
->type
, vr
->operands
, val
);
1691 /* 4) Assignment from an SSA name which definition we may be able
1692 to access pieces from. */
1693 else if (ref
->size
== maxsize
1694 && is_gimple_reg_type (vr
->type
)
1695 && gimple_assign_single_p (def_stmt
)
1696 && TREE_CODE (gimple_assign_rhs1 (def_stmt
)) == SSA_NAME
)
1698 tree rhs1
= gimple_assign_rhs1 (def_stmt
);
1699 gimple def_stmt2
= SSA_NAME_DEF_STMT (rhs1
);
1700 if (is_gimple_assign (def_stmt2
)
1701 && (gimple_assign_rhs_code (def_stmt2
) == COMPLEX_EXPR
1702 || gimple_assign_rhs_code (def_stmt2
) == CONSTRUCTOR
)
1703 && types_compatible_p (vr
->type
, TREE_TYPE (TREE_TYPE (rhs1
))))
1706 HOST_WIDE_INT offset2
, size2
, maxsize2
, off
;
1707 base2
= get_ref_base_and_extent (gimple_assign_lhs (def_stmt
),
1708 &offset2
, &size2
, &maxsize2
);
1709 off
= offset
- offset2
;
1711 && maxsize2
== size2
1712 && operand_equal_p (base
, base2
, 0)
1713 && offset2
<= offset
1714 && offset2
+ size2
>= offset
+ maxsize
)
1716 tree val
= NULL_TREE
;
1718 = TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (TREE_TYPE (rhs1
))));
1719 if (gimple_assign_rhs_code (def_stmt2
) == COMPLEX_EXPR
)
1722 val
= gimple_assign_rhs1 (def_stmt2
);
1723 else if (off
== elsz
)
1724 val
= gimple_assign_rhs2 (def_stmt2
);
1726 else if (gimple_assign_rhs_code (def_stmt2
) == CONSTRUCTOR
1729 tree ctor
= gimple_assign_rhs1 (def_stmt2
);
1730 unsigned i
= off
/ elsz
;
1731 if (i
< CONSTRUCTOR_NELTS (ctor
))
1733 constructor_elt
*elt
= CONSTRUCTOR_ELT (ctor
, i
);
1734 if (TREE_CODE (TREE_TYPE (rhs1
)) == VECTOR_TYPE
)
1736 if (TREE_CODE (TREE_TYPE (elt
->value
))
1743 return vn_reference_lookup_or_insert_for_pieces
1744 (vuse
, vr
->set
, vr
->type
, vr
->operands
, val
);
1749 /* 5) For aggregate copies translate the reference through them if
1750 the copy kills ref. */
1751 else if (vn_walk_kind
== VN_WALKREWRITE
1752 && gimple_assign_single_p (def_stmt
)
1753 && (DECL_P (gimple_assign_rhs1 (def_stmt
))
1754 || TREE_CODE (gimple_assign_rhs1 (def_stmt
)) == MEM_REF
1755 || handled_component_p (gimple_assign_rhs1 (def_stmt
))))
1758 HOST_WIDE_INT offset2
, size2
, maxsize2
;
1760 auto_vec
<vn_reference_op_s
> rhs
;
1761 vn_reference_op_t vro
;
1767 /* See if the assignment kills REF. */
1768 base2
= ao_ref_base (&lhs_ref
);
1769 offset2
= lhs_ref
.offset
;
1770 size2
= lhs_ref
.size
;
1771 maxsize2
= lhs_ref
.max_size
;
1773 || (base
!= base2
&& !operand_equal_p (base
, base2
, 0))
1775 || offset2
+ size2
< offset
+ maxsize
)
1778 /* Find the common base of ref and the lhs. lhs_ops already
1779 contains valueized operands for the lhs. */
1780 i
= vr
->operands
.length () - 1;
1781 j
= lhs_ops
.length () - 1;
1782 while (j
>= 0 && i
>= 0
1783 && vn_reference_op_eq (&vr
->operands
[i
], &lhs_ops
[j
]))
1789 /* ??? The innermost op should always be a MEM_REF and we already
1790 checked that the assignment to the lhs kills vr. Thus for
1791 aggregate copies using char[] types the vn_reference_op_eq
1792 may fail when comparing types for compatibility. But we really
1793 don't care here - further lookups with the rewritten operands
1794 will simply fail if we messed up types too badly. */
1795 if (j
== 0 && i
>= 0
1796 && lhs_ops
[0].opcode
== MEM_REF
1797 && lhs_ops
[0].off
!= -1
1798 && (lhs_ops
[0].off
== vr
->operands
[i
].off
))
1801 /* i now points to the first additional op.
1802 ??? LHS may not be completely contained in VR, one or more
1803 VIEW_CONVERT_EXPRs could be in its way. We could at least
1804 try handling outermost VIEW_CONVERT_EXPRs. */
1808 /* Now re-write REF to be based on the rhs of the assignment. */
1809 copy_reference_ops_from_ref (gimple_assign_rhs1 (def_stmt
), &rhs
);
1810 /* We need to pre-pend vr->operands[0..i] to rhs. */
1811 if (i
+ 1 + rhs
.length () > vr
->operands
.length ())
1813 vec
<vn_reference_op_s
> old
= vr
->operands
;
1814 vr
->operands
.safe_grow (i
+ 1 + rhs
.length ());
1815 if (old
== shared_lookup_references
1816 && vr
->operands
!= old
)
1817 shared_lookup_references
= vNULL
;
1820 vr
->operands
.truncate (i
+ 1 + rhs
.length ());
1821 FOR_EACH_VEC_ELT (rhs
, j
, vro
)
1822 vr
->operands
[i
+ 1 + j
] = *vro
;
1823 vr
->operands
= valueize_refs (vr
->operands
);
1824 vr
->hashcode
= vn_reference_compute_hash (vr
);
1826 /* Adjust *ref from the new operands. */
1827 if (!ao_ref_init_from_vn_reference (&r
, vr
->set
, vr
->type
, vr
->operands
))
1829 /* This can happen with bitfields. */
1830 if (ref
->size
!= r
.size
)
1834 /* Do not update last seen VUSE after translating. */
1835 last_vuse_ptr
= NULL
;
1837 /* Keep looking for the adjusted *REF / VR pair. */
1841 /* 6) For memcpy copies translate the reference through them if
1842 the copy kills ref. */
1843 else if (vn_walk_kind
== VN_WALKREWRITE
1844 && is_gimple_reg_type (vr
->type
)
1845 /* ??? Handle BCOPY as well. */
1846 && (gimple_call_builtin_p (def_stmt
, BUILT_IN_MEMCPY
)
1847 || gimple_call_builtin_p (def_stmt
, BUILT_IN_MEMPCPY
)
1848 || gimple_call_builtin_p (def_stmt
, BUILT_IN_MEMMOVE
))
1849 && (TREE_CODE (gimple_call_arg (def_stmt
, 0)) == ADDR_EXPR
1850 || TREE_CODE (gimple_call_arg (def_stmt
, 0)) == SSA_NAME
)
1851 && (TREE_CODE (gimple_call_arg (def_stmt
, 1)) == ADDR_EXPR
1852 || TREE_CODE (gimple_call_arg (def_stmt
, 1)) == SSA_NAME
)
1853 && tree_fits_uhwi_p (gimple_call_arg (def_stmt
, 2)))
1857 HOST_WIDE_INT rhs_offset
, copy_size
, lhs_offset
;
1858 vn_reference_op_s op
;
1862 /* Only handle non-variable, addressable refs. */
1863 if (ref
->size
!= maxsize
1864 || offset
% BITS_PER_UNIT
!= 0
1865 || ref
->size
% BITS_PER_UNIT
!= 0)
1868 /* Extract a pointer base and an offset for the destination. */
1869 lhs
= gimple_call_arg (def_stmt
, 0);
1871 if (TREE_CODE (lhs
) == SSA_NAME
)
1872 lhs
= SSA_VAL (lhs
);
1873 if (TREE_CODE (lhs
) == ADDR_EXPR
)
1875 tree tem
= get_addr_base_and_unit_offset (TREE_OPERAND (lhs
, 0),
1879 if (TREE_CODE (tem
) == MEM_REF
1880 && tree_fits_uhwi_p (TREE_OPERAND (tem
, 1)))
1882 lhs
= TREE_OPERAND (tem
, 0);
1883 lhs_offset
+= tree_to_uhwi (TREE_OPERAND (tem
, 1));
1885 else if (DECL_P (tem
))
1886 lhs
= build_fold_addr_expr (tem
);
1890 if (TREE_CODE (lhs
) != SSA_NAME
1891 && TREE_CODE (lhs
) != ADDR_EXPR
)
1894 /* Extract a pointer base and an offset for the source. */
1895 rhs
= gimple_call_arg (def_stmt
, 1);
1897 if (TREE_CODE (rhs
) == SSA_NAME
)
1898 rhs
= SSA_VAL (rhs
);
1899 if (TREE_CODE (rhs
) == ADDR_EXPR
)
1901 tree tem
= get_addr_base_and_unit_offset (TREE_OPERAND (rhs
, 0),
1905 if (TREE_CODE (tem
) == MEM_REF
1906 && tree_fits_uhwi_p (TREE_OPERAND (tem
, 1)))
1908 rhs
= TREE_OPERAND (tem
, 0);
1909 rhs_offset
+= tree_to_uhwi (TREE_OPERAND (tem
, 1));
1911 else if (DECL_P (tem
))
1912 rhs
= build_fold_addr_expr (tem
);
1916 if (TREE_CODE (rhs
) != SSA_NAME
1917 && TREE_CODE (rhs
) != ADDR_EXPR
)
1920 copy_size
= tree_to_uhwi (gimple_call_arg (def_stmt
, 2));
1922 /* The bases of the destination and the references have to agree. */
1923 if ((TREE_CODE (base
) != MEM_REF
1925 || (TREE_CODE (base
) == MEM_REF
1926 && (TREE_OPERAND (base
, 0) != lhs
1927 || !tree_fits_uhwi_p (TREE_OPERAND (base
, 1))))
1929 && (TREE_CODE (lhs
) != ADDR_EXPR
1930 || TREE_OPERAND (lhs
, 0) != base
)))
1933 /* And the access has to be contained within the memcpy destination. */
1934 at
= offset
/ BITS_PER_UNIT
;
1935 if (TREE_CODE (base
) == MEM_REF
)
1936 at
+= tree_to_uhwi (TREE_OPERAND (base
, 1));
1938 || lhs_offset
+ copy_size
< at
+ maxsize
/ BITS_PER_UNIT
)
1941 /* Make room for 2 operands in the new reference. */
1942 if (vr
->operands
.length () < 2)
1944 vec
<vn_reference_op_s
> old
= vr
->operands
;
1945 vr
->operands
.safe_grow_cleared (2);
1946 if (old
== shared_lookup_references
1947 && vr
->operands
!= old
)
1948 shared_lookup_references
.create (0);
1951 vr
->operands
.truncate (2);
1953 /* The looked-through reference is a simple MEM_REF. */
1954 memset (&op
, 0, sizeof (op
));
1956 op
.opcode
= MEM_REF
;
1957 op
.op0
= build_int_cst (ptr_type_node
, at
- rhs_offset
);
1958 op
.off
= at
- lhs_offset
+ rhs_offset
;
1959 vr
->operands
[0] = op
;
1960 op
.type
= TREE_TYPE (rhs
);
1961 op
.opcode
= TREE_CODE (rhs
);
1964 vr
->operands
[1] = op
;
1965 vr
->hashcode
= vn_reference_compute_hash (vr
);
1967 /* Adjust *ref from the new operands. */
1968 if (!ao_ref_init_from_vn_reference (&r
, vr
->set
, vr
->type
, vr
->operands
))
1970 /* This can happen with bitfields. */
1971 if (ref
->size
!= r
.size
)
1975 /* Do not update last seen VUSE after translating. */
1976 last_vuse_ptr
= NULL
;
1978 /* Keep looking for the adjusted *REF / VR pair. */
1982 /* Bail out and stop walking. */
1986 /* Lookup a reference operation by it's parts, in the current hash table.
1987 Returns the resulting value number if it exists in the hash table,
1988 NULL_TREE otherwise. VNRESULT will be filled in with the actual
1989 vn_reference_t stored in the hashtable if something is found. */
1992 vn_reference_lookup_pieces (tree vuse
, alias_set_type set
, tree type
,
1993 vec
<vn_reference_op_s
> operands
,
1994 vn_reference_t
*vnresult
, vn_lookup_kind kind
)
1996 struct vn_reference_s vr1
;
2004 vr1
.vuse
= vuse
? SSA_VAL (vuse
) : NULL_TREE
;
2005 shared_lookup_references
.truncate (0);
2006 shared_lookup_references
.safe_grow (operands
.length ());
2007 memcpy (shared_lookup_references
.address (),
2008 operands
.address (),
2009 sizeof (vn_reference_op_s
)
2010 * operands
.length ());
2011 vr1
.operands
= operands
= shared_lookup_references
2012 = valueize_refs (shared_lookup_references
);
2015 vr1
.hashcode
= vn_reference_compute_hash (&vr1
);
2016 if ((cst
= fully_constant_vn_reference_p (&vr1
)))
2019 vn_reference_lookup_1 (&vr1
, vnresult
);
2021 && kind
!= VN_NOWALK
2025 vn_walk_kind
= kind
;
2026 if (ao_ref_init_from_vn_reference (&r
, set
, type
, vr1
.operands
))
2028 (vn_reference_t
)walk_non_aliased_vuses (&r
, vr1
.vuse
,
2029 vn_reference_lookup_2
,
2030 vn_reference_lookup_3
, &vr1
);
2031 if (vr1
.operands
!= operands
)
2032 vr1
.operands
.release ();
2036 return (*vnresult
)->result
;
2041 /* Lookup OP in the current hash table, and return the resulting value
2042 number if it exists in the hash table. Return NULL_TREE if it does
2043 not exist in the hash table or if the result field of the structure
2044 was NULL.. VNRESULT will be filled in with the vn_reference_t
2045 stored in the hashtable if one exists. */
2048 vn_reference_lookup (tree op
, tree vuse
, vn_lookup_kind kind
,
2049 vn_reference_t
*vnresult
)
2051 vec
<vn_reference_op_s
> operands
;
2052 struct vn_reference_s vr1
;
2054 bool valuezied_anything
;
2059 vr1
.vuse
= vuse
? SSA_VAL (vuse
) : NULL_TREE
;
2060 vr1
.operands
= operands
2061 = valueize_shared_reference_ops_from_ref (op
, &valuezied_anything
);
2062 vr1
.type
= TREE_TYPE (op
);
2063 vr1
.set
= get_alias_set (op
);
2064 vr1
.hashcode
= vn_reference_compute_hash (&vr1
);
2065 if ((cst
= fully_constant_vn_reference_p (&vr1
)))
2068 if (kind
!= VN_NOWALK
2071 vn_reference_t wvnresult
;
2073 /* Make sure to use a valueized reference if we valueized anything.
2074 Otherwise preserve the full reference for advanced TBAA. */
2075 if (!valuezied_anything
2076 || !ao_ref_init_from_vn_reference (&r
, vr1
.set
, vr1
.type
,
2078 ao_ref_init (&r
, op
);
2079 vn_walk_kind
= kind
;
2081 (vn_reference_t
)walk_non_aliased_vuses (&r
, vr1
.vuse
,
2082 vn_reference_lookup_2
,
2083 vn_reference_lookup_3
, &vr1
);
2084 if (vr1
.operands
!= operands
)
2085 vr1
.operands
.release ();
2089 *vnresult
= wvnresult
;
2090 return wvnresult
->result
;
2096 return vn_reference_lookup_1 (&vr1
, vnresult
);
2100 /* Insert OP into the current hash table with a value number of
2101 RESULT, and return the resulting reference structure we created. */
2104 vn_reference_insert (tree op
, tree result
, tree vuse
, tree vdef
)
2106 vn_reference_s
**slot
;
2110 vr1
= (vn_reference_t
) pool_alloc (current_info
->references_pool
);
2111 if (TREE_CODE (result
) == SSA_NAME
)
2112 vr1
->value_id
= VN_INFO (result
)->value_id
;
2114 vr1
->value_id
= get_or_alloc_constant_value_id (result
);
2115 vr1
->vuse
= vuse
? SSA_VAL (vuse
) : NULL_TREE
;
2116 vr1
->operands
= valueize_shared_reference_ops_from_ref (op
, &tem
).copy ();
2117 vr1
->type
= TREE_TYPE (op
);
2118 vr1
->set
= get_alias_set (op
);
2119 vr1
->hashcode
= vn_reference_compute_hash (vr1
);
2120 vr1
->result
= TREE_CODE (result
) == SSA_NAME
? SSA_VAL (result
) : result
;
2121 vr1
->result_vdef
= vdef
;
2123 slot
= current_info
->references
.find_slot_with_hash (vr1
, vr1
->hashcode
,
2126 /* Because we lookup stores using vuses, and value number failures
2127 using the vdefs (see visit_reference_op_store for how and why),
2128 it's possible that on failure we may try to insert an already
2129 inserted store. This is not wrong, there is no ssa name for a
2130 store that we could use as a differentiator anyway. Thus, unlike
2131 the other lookup functions, you cannot gcc_assert (!*slot)
2134 /* But free the old slot in case of a collision. */
2136 free_reference (*slot
);
2142 /* Insert a reference by it's pieces into the current hash table with
2143 a value number of RESULT. Return the resulting reference
2144 structure we created. */
2147 vn_reference_insert_pieces (tree vuse
, alias_set_type set
, tree type
,
2148 vec
<vn_reference_op_s
> operands
,
2149 tree result
, unsigned int value_id
)
2152 vn_reference_s
**slot
;
2155 vr1
= (vn_reference_t
) pool_alloc (current_info
->references_pool
);
2156 vr1
->value_id
= value_id
;
2157 vr1
->vuse
= vuse
? SSA_VAL (vuse
) : NULL_TREE
;
2158 vr1
->operands
= valueize_refs (operands
);
2161 vr1
->hashcode
= vn_reference_compute_hash (vr1
);
2162 if (result
&& TREE_CODE (result
) == SSA_NAME
)
2163 result
= SSA_VAL (result
);
2164 vr1
->result
= result
;
2166 slot
= current_info
->references
.find_slot_with_hash (vr1
, vr1
->hashcode
,
2169 /* At this point we should have all the things inserted that we have
2170 seen before, and we should never try inserting something that
2172 gcc_assert (!*slot
);
2174 free_reference (*slot
);
2180 /* Compute and return the hash value for nary operation VBO1. */
2183 vn_nary_op_compute_hash (const vn_nary_op_t vno1
)
2188 for (i
= 0; i
< vno1
->length
; ++i
)
2189 if (TREE_CODE (vno1
->op
[i
]) == SSA_NAME
)
2190 vno1
->op
[i
] = SSA_VAL (vno1
->op
[i
]);
2192 if (vno1
->length
== 2
2193 && commutative_tree_code (vno1
->opcode
)
2194 && tree_swap_operands_p (vno1
->op
[0], vno1
->op
[1], false))
2196 tree temp
= vno1
->op
[0];
2197 vno1
->op
[0] = vno1
->op
[1];
2201 hash
= iterative_hash_hashval_t (vno1
->opcode
, 0);
2202 for (i
= 0; i
< vno1
->length
; ++i
)
2203 hash
= iterative_hash_expr (vno1
->op
[i
], hash
);
2208 /* Compare nary operations VNO1 and VNO2 and return true if they are
2212 vn_nary_op_eq (const_vn_nary_op_t
const vno1
, const_vn_nary_op_t
const vno2
)
2216 if (vno1
->hashcode
!= vno2
->hashcode
)
2219 if (vno1
->length
!= vno2
->length
)
2222 if (vno1
->opcode
!= vno2
->opcode
2223 || !types_compatible_p (vno1
->type
, vno2
->type
))
2226 for (i
= 0; i
< vno1
->length
; ++i
)
2227 if (!expressions_equal_p (vno1
->op
[i
], vno2
->op
[i
]))
2233 /* Initialize VNO from the pieces provided. */
2236 init_vn_nary_op_from_pieces (vn_nary_op_t vno
, unsigned int length
,
2237 enum tree_code code
, tree type
, tree
*ops
)
2240 vno
->length
= length
;
2242 memcpy (&vno
->op
[0], ops
, sizeof (tree
) * length
);
2245 /* Initialize VNO from OP. */
2248 init_vn_nary_op_from_op (vn_nary_op_t vno
, tree op
)
2252 vno
->opcode
= TREE_CODE (op
);
2253 vno
->length
= TREE_CODE_LENGTH (TREE_CODE (op
));
2254 vno
->type
= TREE_TYPE (op
);
2255 for (i
= 0; i
< vno
->length
; ++i
)
2256 vno
->op
[i
] = TREE_OPERAND (op
, i
);
2259 /* Return the number of operands for a vn_nary ops structure from STMT. */
2262 vn_nary_length_from_stmt (gimple stmt
)
2264 switch (gimple_assign_rhs_code (stmt
))
2268 case VIEW_CONVERT_EXPR
:
2275 return CONSTRUCTOR_NELTS (gimple_assign_rhs1 (stmt
));
2278 return gimple_num_ops (stmt
) - 1;
2282 /* Initialize VNO from STMT. */
2285 init_vn_nary_op_from_stmt (vn_nary_op_t vno
, gimple stmt
)
2289 vno
->opcode
= gimple_assign_rhs_code (stmt
);
2290 vno
->type
= gimple_expr_type (stmt
);
2291 switch (vno
->opcode
)
2295 case VIEW_CONVERT_EXPR
:
2297 vno
->op
[0] = TREE_OPERAND (gimple_assign_rhs1 (stmt
), 0);
2302 vno
->op
[0] = TREE_OPERAND (gimple_assign_rhs1 (stmt
), 0);
2303 vno
->op
[1] = TREE_OPERAND (gimple_assign_rhs1 (stmt
), 1);
2304 vno
->op
[2] = TREE_OPERAND (gimple_assign_rhs1 (stmt
), 2);
2308 vno
->length
= CONSTRUCTOR_NELTS (gimple_assign_rhs1 (stmt
));
2309 for (i
= 0; i
< vno
->length
; ++i
)
2310 vno
->op
[i
] = CONSTRUCTOR_ELT (gimple_assign_rhs1 (stmt
), i
)->value
;
2314 gcc_checking_assert (!gimple_assign_single_p (stmt
));
2315 vno
->length
= gimple_num_ops (stmt
) - 1;
2316 for (i
= 0; i
< vno
->length
; ++i
)
2317 vno
->op
[i
] = gimple_op (stmt
, i
+ 1);
2321 /* Compute the hashcode for VNO and look for it in the hash table;
2322 return the resulting value number if it exists in the hash table.
2323 Return NULL_TREE if it does not exist in the hash table or if the
2324 result field of the operation is NULL. VNRESULT will contain the
2325 vn_nary_op_t from the hashtable if it exists. */
2328 vn_nary_op_lookup_1 (vn_nary_op_t vno
, vn_nary_op_t
*vnresult
)
2330 vn_nary_op_s
**slot
;
2335 vno
->hashcode
= vn_nary_op_compute_hash (vno
);
2336 slot
= current_info
->nary
.find_slot_with_hash (vno
, vno
->hashcode
, NO_INSERT
);
2337 if (!slot
&& current_info
== optimistic_info
)
2338 slot
= valid_info
->nary
.find_slot_with_hash (vno
, vno
->hashcode
, NO_INSERT
);
2343 return (*slot
)->result
;
2346 /* Lookup a n-ary operation by its pieces and return the resulting value
2347 number if it exists in the hash table. Return NULL_TREE if it does
2348 not exist in the hash table or if the result field of the operation
2349 is NULL. VNRESULT will contain the vn_nary_op_t from the hashtable
2353 vn_nary_op_lookup_pieces (unsigned int length
, enum tree_code code
,
2354 tree type
, tree
*ops
, vn_nary_op_t
*vnresult
)
2356 vn_nary_op_t vno1
= XALLOCAVAR (struct vn_nary_op_s
,
2357 sizeof_vn_nary_op (length
));
2358 init_vn_nary_op_from_pieces (vno1
, length
, code
, type
, ops
);
2359 return vn_nary_op_lookup_1 (vno1
, vnresult
);
2362 /* Lookup OP in the current hash table, and return the resulting value
2363 number if it exists in the hash table. Return NULL_TREE if it does
2364 not exist in the hash table or if the result field of the operation
2365 is NULL. VNRESULT will contain the vn_nary_op_t from the hashtable
2369 vn_nary_op_lookup (tree op
, vn_nary_op_t
*vnresult
)
2372 = XALLOCAVAR (struct vn_nary_op_s
,
2373 sizeof_vn_nary_op (TREE_CODE_LENGTH (TREE_CODE (op
))));
2374 init_vn_nary_op_from_op (vno1
, op
);
2375 return vn_nary_op_lookup_1 (vno1
, vnresult
);
2378 /* Lookup the rhs of STMT in the current hash table, and return the resulting
2379 value number if it exists in the hash table. Return NULL_TREE if
2380 it does not exist in the hash table. VNRESULT will contain the
2381 vn_nary_op_t from the hashtable if it exists. */
2384 vn_nary_op_lookup_stmt (gimple stmt
, vn_nary_op_t
*vnresult
)
2387 = XALLOCAVAR (struct vn_nary_op_s
,
2388 sizeof_vn_nary_op (vn_nary_length_from_stmt (stmt
)));
2389 init_vn_nary_op_from_stmt (vno1
, stmt
);
2390 return vn_nary_op_lookup_1 (vno1
, vnresult
);
2393 /* Allocate a vn_nary_op_t with LENGTH operands on STACK. */
2396 alloc_vn_nary_op_noinit (unsigned int length
, struct obstack
*stack
)
2398 return (vn_nary_op_t
) obstack_alloc (stack
, sizeof_vn_nary_op (length
));
2401 /* Allocate and initialize a vn_nary_op_t on CURRENT_INFO's
2405 alloc_vn_nary_op (unsigned int length
, tree result
, unsigned int value_id
)
2407 vn_nary_op_t vno1
= alloc_vn_nary_op_noinit (length
,
2408 ¤t_info
->nary_obstack
);
2410 vno1
->value_id
= value_id
;
2411 vno1
->length
= length
;
2412 vno1
->result
= result
;
2417 /* Insert VNO into TABLE. If COMPUTE_HASH is true, then compute
2418 VNO->HASHCODE first. */
2421 vn_nary_op_insert_into (vn_nary_op_t vno
, vn_nary_op_table_type table
,
2424 vn_nary_op_s
**slot
;
2427 vno
->hashcode
= vn_nary_op_compute_hash (vno
);
2429 slot
= table
.find_slot_with_hash (vno
, vno
->hashcode
, INSERT
);
2430 gcc_assert (!*slot
);
2436 /* Insert a n-ary operation into the current hash table using it's
2437 pieces. Return the vn_nary_op_t structure we created and put in
2441 vn_nary_op_insert_pieces (unsigned int length
, enum tree_code code
,
2442 tree type
, tree
*ops
,
2443 tree result
, unsigned int value_id
)
2445 vn_nary_op_t vno1
= alloc_vn_nary_op (length
, result
, value_id
);
2446 init_vn_nary_op_from_pieces (vno1
, length
, code
, type
, ops
);
2447 return vn_nary_op_insert_into (vno1
, current_info
->nary
, true);
2450 /* Insert OP into the current hash table with a value number of
2451 RESULT. Return the vn_nary_op_t structure we created and put in
2455 vn_nary_op_insert (tree op
, tree result
)
2457 unsigned length
= TREE_CODE_LENGTH (TREE_CODE (op
));
2460 vno1
= alloc_vn_nary_op (length
, result
, VN_INFO (result
)->value_id
);
2461 init_vn_nary_op_from_op (vno1
, op
);
2462 return vn_nary_op_insert_into (vno1
, current_info
->nary
, true);
2465 /* Insert the rhs of STMT into the current hash table with a value number of
2469 vn_nary_op_insert_stmt (gimple stmt
, tree result
)
2472 = alloc_vn_nary_op (vn_nary_length_from_stmt (stmt
),
2473 result
, VN_INFO (result
)->value_id
);
2474 init_vn_nary_op_from_stmt (vno1
, stmt
);
2475 return vn_nary_op_insert_into (vno1
, current_info
->nary
, true);
2478 /* Compute a hashcode for PHI operation VP1 and return it. */
2480 static inline hashval_t
2481 vn_phi_compute_hash (vn_phi_t vp1
)
2488 result
= vp1
->block
->index
;
2490 /* If all PHI arguments are constants we need to distinguish
2491 the PHI node via its type. */
2493 result
+= vn_hash_type (type
);
2495 FOR_EACH_VEC_ELT (vp1
->phiargs
, i
, phi1op
)
2497 if (phi1op
== VN_TOP
)
2499 result
= iterative_hash_expr (phi1op
, result
);
2505 /* Compare two phi entries for equality, ignoring VN_TOP arguments. */
2508 vn_phi_eq (const_vn_phi_t
const vp1
, const_vn_phi_t
const vp2
)
2510 if (vp1
->hashcode
!= vp2
->hashcode
)
2513 if (vp1
->block
== vp2
->block
)
2518 /* If the PHI nodes do not have compatible types
2519 they are not the same. */
2520 if (!types_compatible_p (vp1
->type
, vp2
->type
))
2523 /* Any phi in the same block will have it's arguments in the
2524 same edge order, because of how we store phi nodes. */
2525 FOR_EACH_VEC_ELT (vp1
->phiargs
, i
, phi1op
)
2527 tree phi2op
= vp2
->phiargs
[i
];
2528 if (phi1op
== VN_TOP
|| phi2op
== VN_TOP
)
2530 if (!expressions_equal_p (phi1op
, phi2op
))
2538 static vec
<tree
> shared_lookup_phiargs
;
2540 /* Lookup PHI in the current hash table, and return the resulting
2541 value number if it exists in the hash table. Return NULL_TREE if
2542 it does not exist in the hash table. */
2545 vn_phi_lookup (gimple phi
)
2548 struct vn_phi_s vp1
;
2551 shared_lookup_phiargs
.truncate (0);
2553 /* Canonicalize the SSA_NAME's to their value number. */
2554 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
2556 tree def
= PHI_ARG_DEF (phi
, i
);
2557 def
= TREE_CODE (def
) == SSA_NAME
? SSA_VAL (def
) : def
;
2558 shared_lookup_phiargs
.safe_push (def
);
2560 vp1
.type
= TREE_TYPE (gimple_phi_result (phi
));
2561 vp1
.phiargs
= shared_lookup_phiargs
;
2562 vp1
.block
= gimple_bb (phi
);
2563 vp1
.hashcode
= vn_phi_compute_hash (&vp1
);
2564 slot
= current_info
->phis
.find_slot_with_hash (&vp1
, vp1
.hashcode
, NO_INSERT
);
2565 if (!slot
&& current_info
== optimistic_info
)
2566 slot
= valid_info
->phis
.find_slot_with_hash (&vp1
, vp1
.hashcode
, NO_INSERT
);
2569 return (*slot
)->result
;
2572 /* Insert PHI into the current hash table with a value number of
2576 vn_phi_insert (gimple phi
, tree result
)
2579 vn_phi_t vp1
= (vn_phi_t
) pool_alloc (current_info
->phis_pool
);
2581 vec
<tree
> args
= vNULL
;
2583 /* Canonicalize the SSA_NAME's to their value number. */
2584 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
2586 tree def
= PHI_ARG_DEF (phi
, i
);
2587 def
= TREE_CODE (def
) == SSA_NAME
? SSA_VAL (def
) : def
;
2588 args
.safe_push (def
);
2590 vp1
->value_id
= VN_INFO (result
)->value_id
;
2591 vp1
->type
= TREE_TYPE (gimple_phi_result (phi
));
2592 vp1
->phiargs
= args
;
2593 vp1
->block
= gimple_bb (phi
);
2594 vp1
->result
= result
;
2595 vp1
->hashcode
= vn_phi_compute_hash (vp1
);
2597 slot
= current_info
->phis
.find_slot_with_hash (vp1
, vp1
->hashcode
, INSERT
);
2599 /* Because we iterate over phi operations more than once, it's
2600 possible the slot might already exist here, hence no assert.*/
2606 /* Print set of components in strongly connected component SCC to OUT. */
2609 print_scc (FILE *out
, vec
<tree
> scc
)
2614 fprintf (out
, "SCC consists of:");
2615 FOR_EACH_VEC_ELT (scc
, i
, var
)
2618 print_generic_expr (out
, var
, 0);
2620 fprintf (out
, "\n");
2623 /* Set the value number of FROM to TO, return true if it has changed
2627 set_ssa_val_to (tree from
, tree to
)
2629 tree currval
= SSA_VAL (from
);
2630 HOST_WIDE_INT toff
, coff
;
2634 if (currval
== from
)
2636 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2638 fprintf (dump_file
, "Not changing value number of ");
2639 print_generic_expr (dump_file
, from
, 0);
2640 fprintf (dump_file
, " from VARYING to ");
2641 print_generic_expr (dump_file
, to
, 0);
2642 fprintf (dump_file
, "\n");
2646 else if (TREE_CODE (to
) == SSA_NAME
2647 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (to
))
2651 /* The only thing we allow as value numbers are VN_TOP, ssa_names
2652 and invariants. So assert that here. */
2653 gcc_assert (to
!= NULL_TREE
2655 || TREE_CODE (to
) == SSA_NAME
2656 || is_gimple_min_invariant (to
)));
2658 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2660 fprintf (dump_file
, "Setting value number of ");
2661 print_generic_expr (dump_file
, from
, 0);
2662 fprintf (dump_file
, " to ");
2663 print_generic_expr (dump_file
, to
, 0);
2667 && !operand_equal_p (currval
, to
, 0)
2668 /* ??? For addresses involving volatile objects or types operand_equal_p
2669 does not reliably detect ADDR_EXPRs as equal. We know we are only
2670 getting invariant gimple addresses here, so can use
2671 get_addr_base_and_unit_offset to do this comparison. */
2672 && !(TREE_CODE (currval
) == ADDR_EXPR
2673 && TREE_CODE (to
) == ADDR_EXPR
2674 && (get_addr_base_and_unit_offset (TREE_OPERAND (currval
, 0), &coff
)
2675 == get_addr_base_and_unit_offset (TREE_OPERAND (to
, 0), &toff
))
2678 VN_INFO (from
)->valnum
= to
;
2679 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2680 fprintf (dump_file
, " (changed)\n");
2683 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2684 fprintf (dump_file
, "\n");
2688 /* Mark as processed all the definitions in the defining stmt of USE, or
2692 mark_use_processed (tree use
)
2696 gimple stmt
= SSA_NAME_DEF_STMT (use
);
2698 if (SSA_NAME_IS_DEFAULT_DEF (use
) || gimple_code (stmt
) == GIMPLE_PHI
)
2700 VN_INFO (use
)->use_processed
= true;
2704 FOR_EACH_SSA_DEF_OPERAND (defp
, stmt
, iter
, SSA_OP_ALL_DEFS
)
2706 tree def
= DEF_FROM_PTR (defp
);
2708 VN_INFO (def
)->use_processed
= true;
2712 /* Set all definitions in STMT to value number to themselves.
2713 Return true if a value number changed. */
2716 defs_to_varying (gimple stmt
)
2718 bool changed
= false;
2722 FOR_EACH_SSA_DEF_OPERAND (defp
, stmt
, iter
, SSA_OP_ALL_DEFS
)
2724 tree def
= DEF_FROM_PTR (defp
);
2725 changed
|= set_ssa_val_to (def
, def
);
2730 static bool expr_has_constants (tree expr
);
2731 static tree
valueize_expr (tree expr
);
2733 /* Visit a copy between LHS and RHS, return true if the value number
2737 visit_copy (tree lhs
, tree rhs
)
2739 /* The copy may have a more interesting constant filled expression
2740 (we don't, since we know our RHS is just an SSA name). */
2741 VN_INFO (lhs
)->has_constants
= VN_INFO (rhs
)->has_constants
;
2742 VN_INFO (lhs
)->expr
= VN_INFO (rhs
)->expr
;
2744 /* And finally valueize. */
2745 rhs
= SSA_VAL (rhs
);
2747 return set_ssa_val_to (lhs
, rhs
);
2750 /* Visit a nary operator RHS, value number it, and return true if the
2751 value number of LHS has changed as a result. */
2754 visit_nary_op (tree lhs
, gimple stmt
)
2756 bool changed
= false;
2757 tree result
= vn_nary_op_lookup_stmt (stmt
, NULL
);
2760 changed
= set_ssa_val_to (lhs
, result
);
2763 changed
= set_ssa_val_to (lhs
, lhs
);
2764 vn_nary_op_insert_stmt (stmt
, lhs
);
2770 /* Visit a call STMT storing into LHS. Return true if the value number
2771 of the LHS has changed as a result. */
2774 visit_reference_op_call (tree lhs
, gimple stmt
)
2776 bool changed
= false;
2777 struct vn_reference_s vr1
;
2778 vn_reference_t vnresult
= NULL
;
2779 tree vuse
= gimple_vuse (stmt
);
2780 tree vdef
= gimple_vdef (stmt
);
2782 /* Non-ssa lhs is handled in copy_reference_ops_from_call. */
2783 if (lhs
&& TREE_CODE (lhs
) != SSA_NAME
)
2786 vr1
.vuse
= vuse
? SSA_VAL (vuse
) : NULL_TREE
;
2787 vr1
.operands
= valueize_shared_reference_ops_from_call (stmt
);
2788 vr1
.type
= gimple_expr_type (stmt
);
2790 vr1
.hashcode
= vn_reference_compute_hash (&vr1
);
2791 vn_reference_lookup_1 (&vr1
, &vnresult
);
2795 if (vnresult
->result_vdef
&& vdef
)
2796 changed
|= set_ssa_val_to (vdef
, vnresult
->result_vdef
);
2798 if (!vnresult
->result
&& lhs
)
2799 vnresult
->result
= lhs
;
2801 if (vnresult
->result
&& lhs
)
2803 changed
|= set_ssa_val_to (lhs
, vnresult
->result
);
2805 if (VN_INFO (vnresult
->result
)->has_constants
)
2806 VN_INFO (lhs
)->has_constants
= true;
2811 vn_reference_s
**slot
;
2814 changed
|= set_ssa_val_to (vdef
, vdef
);
2816 changed
|= set_ssa_val_to (lhs
, lhs
);
2817 vr2
= (vn_reference_t
) pool_alloc (current_info
->references_pool
);
2818 vr2
->vuse
= vr1
.vuse
;
2819 vr2
->operands
= valueize_refs (create_reference_ops_from_call (stmt
));
2820 vr2
->type
= vr1
.type
;
2822 vr2
->hashcode
= vr1
.hashcode
;
2824 vr2
->result_vdef
= vdef
;
2825 slot
= current_info
->references
.find_slot_with_hash (vr2
, vr2
->hashcode
,
2828 free_reference (*slot
);
2835 /* Visit a load from a reference operator RHS, part of STMT, value number it,
2836 and return true if the value number of the LHS has changed as a result. */
2839 visit_reference_op_load (tree lhs
, tree op
, gimple stmt
)
2841 bool changed
= false;
2845 last_vuse
= gimple_vuse (stmt
);
2846 last_vuse_ptr
= &last_vuse
;
2847 result
= vn_reference_lookup (op
, gimple_vuse (stmt
),
2848 default_vn_walk_kind
, NULL
);
2849 last_vuse_ptr
= NULL
;
2851 /* If we have a VCE, try looking up its operand as it might be stored in
2852 a different type. */
2853 if (!result
&& TREE_CODE (op
) == VIEW_CONVERT_EXPR
)
2854 result
= vn_reference_lookup (TREE_OPERAND (op
, 0), gimple_vuse (stmt
),
2855 default_vn_walk_kind
, NULL
);
2857 /* We handle type-punning through unions by value-numbering based
2858 on offset and size of the access. Be prepared to handle a
2859 type-mismatch here via creating a VIEW_CONVERT_EXPR. */
2861 && !useless_type_conversion_p (TREE_TYPE (result
), TREE_TYPE (op
)))
2863 /* We will be setting the value number of lhs to the value number
2864 of VIEW_CONVERT_EXPR <TREE_TYPE (result)> (result).
2865 So first simplify and lookup this expression to see if it
2866 is already available. */
2867 tree val
= fold_build1 (VIEW_CONVERT_EXPR
, TREE_TYPE (op
), result
);
2868 if ((CONVERT_EXPR_P (val
)
2869 || TREE_CODE (val
) == VIEW_CONVERT_EXPR
)
2870 && TREE_CODE (TREE_OPERAND (val
, 0)) == SSA_NAME
)
2872 tree tem
= valueize_expr (vn_get_expr_for (TREE_OPERAND (val
, 0)));
2873 if ((CONVERT_EXPR_P (tem
)
2874 || TREE_CODE (tem
) == VIEW_CONVERT_EXPR
)
2875 && (tem
= fold_unary_ignore_overflow (TREE_CODE (val
),
2876 TREE_TYPE (val
), tem
)))
2880 if (!is_gimple_min_invariant (val
)
2881 && TREE_CODE (val
) != SSA_NAME
)
2882 result
= vn_nary_op_lookup (val
, NULL
);
2883 /* If the expression is not yet available, value-number lhs to
2884 a new SSA_NAME we create. */
2887 result
= make_temp_ssa_name (TREE_TYPE (lhs
), gimple_build_nop (),
2889 /* Initialize value-number information properly. */
2890 VN_INFO_GET (result
)->valnum
= result
;
2891 VN_INFO (result
)->value_id
= get_next_value_id ();
2892 VN_INFO (result
)->expr
= val
;
2893 VN_INFO (result
)->has_constants
= expr_has_constants (val
);
2894 VN_INFO (result
)->needs_insertion
= true;
2895 /* As all "inserted" statements are singleton SCCs, insert
2896 to the valid table. This is strictly needed to
2897 avoid re-generating new value SSA_NAMEs for the same
2898 expression during SCC iteration over and over (the
2899 optimistic table gets cleared after each iteration).
2900 We do not need to insert into the optimistic table, as
2901 lookups there will fall back to the valid table. */
2902 if (current_info
== optimistic_info
)
2904 current_info
= valid_info
;
2905 vn_nary_op_insert (val
, result
);
2906 current_info
= optimistic_info
;
2909 vn_nary_op_insert (val
, result
);
2910 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2912 fprintf (dump_file
, "Inserting name ");
2913 print_generic_expr (dump_file
, result
, 0);
2914 fprintf (dump_file
, " for expression ");
2915 print_generic_expr (dump_file
, val
, 0);
2916 fprintf (dump_file
, "\n");
2923 changed
= set_ssa_val_to (lhs
, result
);
2924 if (TREE_CODE (result
) == SSA_NAME
2925 && VN_INFO (result
)->has_constants
)
2927 VN_INFO (lhs
)->expr
= VN_INFO (result
)->expr
;
2928 VN_INFO (lhs
)->has_constants
= true;
2933 changed
= set_ssa_val_to (lhs
, lhs
);
2934 vn_reference_insert (op
, lhs
, last_vuse
, NULL_TREE
);
2941 /* Visit a store to a reference operator LHS, part of STMT, value number it,
2942 and return true if the value number of the LHS has changed as a result. */
2945 visit_reference_op_store (tree lhs
, tree op
, gimple stmt
)
2947 bool changed
= false;
2948 vn_reference_t vnresult
= NULL
;
2949 tree result
, assign
;
2950 bool resultsame
= false;
2951 tree vuse
= gimple_vuse (stmt
);
2952 tree vdef
= gimple_vdef (stmt
);
2954 /* First we want to lookup using the *vuses* from the store and see
2955 if there the last store to this location with the same address
2958 The vuses represent the memory state before the store. If the
2959 memory state, address, and value of the store is the same as the
2960 last store to this location, then this store will produce the
2961 same memory state as that store.
2963 In this case the vdef versions for this store are value numbered to those
2964 vuse versions, since they represent the same memory state after
2967 Otherwise, the vdefs for the store are used when inserting into
2968 the table, since the store generates a new memory state. */
2970 result
= vn_reference_lookup (lhs
, vuse
, VN_NOWALK
, NULL
);
2974 if (TREE_CODE (result
) == SSA_NAME
)
2975 result
= SSA_VAL (result
);
2976 if (TREE_CODE (op
) == SSA_NAME
)
2978 resultsame
= expressions_equal_p (result
, op
);
2981 if (!result
|| !resultsame
)
2983 assign
= build2 (MODIFY_EXPR
, TREE_TYPE (lhs
), lhs
, op
);
2984 vn_reference_lookup (assign
, vuse
, VN_NOWALK
, &vnresult
);
2987 VN_INFO (vdef
)->use_processed
= true;
2988 return set_ssa_val_to (vdef
, vnresult
->result_vdef
);
2992 if (!result
|| !resultsame
)
2994 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2996 fprintf (dump_file
, "No store match\n");
2997 fprintf (dump_file
, "Value numbering store ");
2998 print_generic_expr (dump_file
, lhs
, 0);
2999 fprintf (dump_file
, " to ");
3000 print_generic_expr (dump_file
, op
, 0);
3001 fprintf (dump_file
, "\n");
3003 /* Have to set value numbers before insert, since insert is
3004 going to valueize the references in-place. */
3007 changed
|= set_ssa_val_to (vdef
, vdef
);
3010 /* Do not insert structure copies into the tables. */
3011 if (is_gimple_min_invariant (op
)
3012 || is_gimple_reg (op
))
3013 vn_reference_insert (lhs
, op
, vdef
, NULL
);
3015 assign
= build2 (MODIFY_EXPR
, TREE_TYPE (lhs
), lhs
, op
);
3016 vn_reference_insert (assign
, lhs
, vuse
, vdef
);
3020 /* We had a match, so value number the vdef to have the value
3021 number of the vuse it came from. */
3023 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3024 fprintf (dump_file
, "Store matched earlier value,"
3025 "value numbering store vdefs to matching vuses.\n");
3027 changed
|= set_ssa_val_to (vdef
, SSA_VAL (vuse
));
3033 /* Visit and value number PHI, return true if the value number
3037 visit_phi (gimple phi
)
3039 bool changed
= false;
3041 tree sameval
= VN_TOP
;
3042 bool allsame
= true;
3045 /* TODO: We could check for this in init_sccvn, and replace this
3046 with a gcc_assert. */
3047 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi
)))
3048 return set_ssa_val_to (PHI_RESULT (phi
), PHI_RESULT (phi
));
3050 /* See if all non-TOP arguments have the same value. TOP is
3051 equivalent to everything, so we can ignore it. */
3052 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
3054 tree def
= PHI_ARG_DEF (phi
, i
);
3056 if (TREE_CODE (def
) == SSA_NAME
)
3057 def
= SSA_VAL (def
);
3060 if (sameval
== VN_TOP
)
3066 if (!expressions_equal_p (def
, sameval
))
3074 /* If all value numbered to the same value, the phi node has that
3078 if (is_gimple_min_invariant (sameval
))
3080 VN_INFO (PHI_RESULT (phi
))->has_constants
= true;
3081 VN_INFO (PHI_RESULT (phi
))->expr
= sameval
;
3085 VN_INFO (PHI_RESULT (phi
))->has_constants
= false;
3086 VN_INFO (PHI_RESULT (phi
))->expr
= sameval
;
3089 if (TREE_CODE (sameval
) == SSA_NAME
)
3090 return visit_copy (PHI_RESULT (phi
), sameval
);
3092 return set_ssa_val_to (PHI_RESULT (phi
), sameval
);
3095 /* Otherwise, see if it is equivalent to a phi node in this block. */
3096 result
= vn_phi_lookup (phi
);
3099 if (TREE_CODE (result
) == SSA_NAME
)
3100 changed
= visit_copy (PHI_RESULT (phi
), result
);
3102 changed
= set_ssa_val_to (PHI_RESULT (phi
), result
);
3106 vn_phi_insert (phi
, PHI_RESULT (phi
));
3107 VN_INFO (PHI_RESULT (phi
))->has_constants
= false;
3108 VN_INFO (PHI_RESULT (phi
))->expr
= PHI_RESULT (phi
);
3109 changed
= set_ssa_val_to (PHI_RESULT (phi
), PHI_RESULT (phi
));
3115 /* Return true if EXPR contains constants. */
3118 expr_has_constants (tree expr
)
3120 switch (TREE_CODE_CLASS (TREE_CODE (expr
)))
3123 return is_gimple_min_invariant (TREE_OPERAND (expr
, 0));
3126 return is_gimple_min_invariant (TREE_OPERAND (expr
, 0))
3127 || is_gimple_min_invariant (TREE_OPERAND (expr
, 1));
3128 /* Constants inside reference ops are rarely interesting, but
3129 it can take a lot of looking to find them. */
3131 case tcc_declaration
:
3134 return is_gimple_min_invariant (expr
);
3139 /* Return true if STMT contains constants. */
3142 stmt_has_constants (gimple stmt
)
3146 if (gimple_code (stmt
) != GIMPLE_ASSIGN
)
3149 switch (get_gimple_rhs_class (gimple_assign_rhs_code (stmt
)))
3151 case GIMPLE_TERNARY_RHS
:
3152 tem
= gimple_assign_rhs3 (stmt
);
3153 if (TREE_CODE (tem
) == SSA_NAME
)
3154 tem
= SSA_VAL (tem
);
3155 if (is_gimple_min_invariant (tem
))
3159 case GIMPLE_BINARY_RHS
:
3160 tem
= gimple_assign_rhs2 (stmt
);
3161 if (TREE_CODE (tem
) == SSA_NAME
)
3162 tem
= SSA_VAL (tem
);
3163 if (is_gimple_min_invariant (tem
))
3167 case GIMPLE_SINGLE_RHS
:
3168 /* Constants inside reference ops are rarely interesting, but
3169 it can take a lot of looking to find them. */
3170 case GIMPLE_UNARY_RHS
:
3171 tem
= gimple_assign_rhs1 (stmt
);
3172 if (TREE_CODE (tem
) == SSA_NAME
)
3173 tem
= SSA_VAL (tem
);
3174 return is_gimple_min_invariant (tem
);
3182 /* Replace SSA_NAMES in expr with their value numbers, and return the
3184 This is performed in place. */
3187 valueize_expr (tree expr
)
3189 switch (TREE_CODE_CLASS (TREE_CODE (expr
)))
3192 TREE_OPERAND (expr
, 1) = vn_valueize (TREE_OPERAND (expr
, 1));
3195 TREE_OPERAND (expr
, 0) = vn_valueize (TREE_OPERAND (expr
, 0));
3202 /* Simplify the binary expression RHS, and return the result if
3206 simplify_binary_expression (gimple stmt
)
3208 tree result
= NULL_TREE
;
3209 tree op0
= gimple_assign_rhs1 (stmt
);
3210 tree op1
= gimple_assign_rhs2 (stmt
);
3211 enum tree_code code
= gimple_assign_rhs_code (stmt
);
3213 /* This will not catch every single case we could combine, but will
3214 catch those with constants. The goal here is to simultaneously
3215 combine constants between expressions, but avoid infinite
3216 expansion of expressions during simplification. */
3217 if (TREE_CODE (op0
) == SSA_NAME
)
3219 if (VN_INFO (op0
)->has_constants
3220 || TREE_CODE_CLASS (code
) == tcc_comparison
3221 || code
== COMPLEX_EXPR
)
3222 op0
= valueize_expr (vn_get_expr_for (op0
));
3224 op0
= vn_valueize (op0
);
3227 if (TREE_CODE (op1
) == SSA_NAME
)
3229 if (VN_INFO (op1
)->has_constants
3230 || code
== COMPLEX_EXPR
)
3231 op1
= valueize_expr (vn_get_expr_for (op1
));
3233 op1
= vn_valueize (op1
);
3236 /* Pointer plus constant can be represented as invariant address.
3237 Do so to allow further propatation, see also tree forwprop. */
3238 if (code
== POINTER_PLUS_EXPR
3239 && tree_fits_uhwi_p (op1
)
3240 && TREE_CODE (op0
) == ADDR_EXPR
3241 && is_gimple_min_invariant (op0
))
3242 return build_invariant_address (TREE_TYPE (op0
),
3243 TREE_OPERAND (op0
, 0),
3244 tree_to_uhwi (op1
));
3246 /* Avoid folding if nothing changed. */
3247 if (op0
== gimple_assign_rhs1 (stmt
)
3248 && op1
== gimple_assign_rhs2 (stmt
))
3251 fold_defer_overflow_warnings ();
3253 result
= fold_binary (code
, gimple_expr_type (stmt
), op0
, op1
);
3255 STRIP_USELESS_TYPE_CONVERSION (result
);
3257 fold_undefer_overflow_warnings (result
&& valid_gimple_rhs_p (result
),
3260 /* Make sure result is not a complex expression consisting
3261 of operators of operators (IE (a + b) + (a + c))
3262 Otherwise, we will end up with unbounded expressions if
3263 fold does anything at all. */
3264 if (result
&& valid_gimple_rhs_p (result
))
3270 /* Simplify the unary expression RHS, and return the result if
3274 simplify_unary_expression (gimple stmt
)
3276 tree result
= NULL_TREE
;
3277 tree orig_op0
, op0
= gimple_assign_rhs1 (stmt
);
3278 enum tree_code code
= gimple_assign_rhs_code (stmt
);
3280 /* We handle some tcc_reference codes here that are all
3281 GIMPLE_ASSIGN_SINGLE codes. */
3282 if (code
== REALPART_EXPR
3283 || code
== IMAGPART_EXPR
3284 || code
== VIEW_CONVERT_EXPR
3285 || code
== BIT_FIELD_REF
)
3286 op0
= TREE_OPERAND (op0
, 0);
3288 if (TREE_CODE (op0
) != SSA_NAME
)
3292 if (VN_INFO (op0
)->has_constants
)
3293 op0
= valueize_expr (vn_get_expr_for (op0
));
3294 else if (CONVERT_EXPR_CODE_P (code
)
3295 || code
== REALPART_EXPR
3296 || code
== IMAGPART_EXPR
3297 || code
== VIEW_CONVERT_EXPR
3298 || code
== BIT_FIELD_REF
)
3300 /* We want to do tree-combining on conversion-like expressions.
3301 Make sure we feed only SSA_NAMEs or constants to fold though. */
3302 tree tem
= valueize_expr (vn_get_expr_for (op0
));
3303 if (UNARY_CLASS_P (tem
)
3304 || BINARY_CLASS_P (tem
)
3305 || TREE_CODE (tem
) == VIEW_CONVERT_EXPR
3306 || TREE_CODE (tem
) == SSA_NAME
3307 || TREE_CODE (tem
) == CONSTRUCTOR
3308 || is_gimple_min_invariant (tem
))
3312 /* Avoid folding if nothing changed, but remember the expression. */
3313 if (op0
== orig_op0
)
3316 if (code
== BIT_FIELD_REF
)
3318 tree rhs
= gimple_assign_rhs1 (stmt
);
3319 result
= fold_ternary (BIT_FIELD_REF
, TREE_TYPE (rhs
),
3320 op0
, TREE_OPERAND (rhs
, 1), TREE_OPERAND (rhs
, 2));
3323 result
= fold_unary_ignore_overflow (code
, gimple_expr_type (stmt
), op0
);
3326 STRIP_USELESS_TYPE_CONVERSION (result
);
3327 if (valid_gimple_rhs_p (result
))
3334 /* Try to simplify RHS using equivalences and constant folding. */
3337 try_to_simplify (gimple stmt
)
3339 enum tree_code code
= gimple_assign_rhs_code (stmt
);
3342 /* For stores we can end up simplifying a SSA_NAME rhs. Just return
3343 in this case, there is no point in doing extra work. */
3344 if (code
== SSA_NAME
)
3347 /* First try constant folding based on our current lattice. */
3348 tem
= gimple_fold_stmt_to_constant_1 (stmt
, vn_valueize
);
3350 && (TREE_CODE (tem
) == SSA_NAME
3351 || is_gimple_min_invariant (tem
)))
3354 /* If that didn't work try combining multiple statements. */
3355 switch (TREE_CODE_CLASS (code
))
3358 /* Fallthrough for some unary codes that can operate on registers. */
3359 if (!(code
== REALPART_EXPR
3360 || code
== IMAGPART_EXPR
3361 || code
== VIEW_CONVERT_EXPR
3362 || code
== BIT_FIELD_REF
))
3364 /* We could do a little more with unary ops, if they expand
3365 into binary ops, but it's debatable whether it is worth it. */
3367 return simplify_unary_expression (stmt
);
3369 case tcc_comparison
:
3371 return simplify_binary_expression (stmt
);
3380 /* Visit and value number USE, return true if the value number
3384 visit_use (tree use
)
3386 bool changed
= false;
3387 gimple stmt
= SSA_NAME_DEF_STMT (use
);
3389 mark_use_processed (use
);
3391 gcc_assert (!SSA_NAME_IN_FREE_LIST (use
));
3392 if (dump_file
&& (dump_flags
& TDF_DETAILS
)
3393 && !SSA_NAME_IS_DEFAULT_DEF (use
))
3395 fprintf (dump_file
, "Value numbering ");
3396 print_generic_expr (dump_file
, use
, 0);
3397 fprintf (dump_file
, " stmt = ");
3398 print_gimple_stmt (dump_file
, stmt
, 0, 0);
3401 /* Handle uninitialized uses. */
3402 if (SSA_NAME_IS_DEFAULT_DEF (use
))
3403 changed
= set_ssa_val_to (use
, use
);
3406 if (gimple_code (stmt
) == GIMPLE_PHI
)
3407 changed
= visit_phi (stmt
);
3408 else if (gimple_has_volatile_ops (stmt
))
3409 changed
= defs_to_varying (stmt
);
3410 else if (is_gimple_assign (stmt
))
3412 enum tree_code code
= gimple_assign_rhs_code (stmt
);
3413 tree lhs
= gimple_assign_lhs (stmt
);
3414 tree rhs1
= gimple_assign_rhs1 (stmt
);
3417 /* Shortcut for copies. Simplifying copies is pointless,
3418 since we copy the expression and value they represent. */
3419 if (code
== SSA_NAME
3420 && TREE_CODE (lhs
) == SSA_NAME
)
3422 changed
= visit_copy (lhs
, rhs1
);
3425 simplified
= try_to_simplify (stmt
);
3428 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3430 fprintf (dump_file
, "RHS ");
3431 print_gimple_expr (dump_file
, stmt
, 0, 0);
3432 fprintf (dump_file
, " simplified to ");
3433 print_generic_expr (dump_file
, simplified
, 0);
3434 if (TREE_CODE (lhs
) == SSA_NAME
)
3435 fprintf (dump_file
, " has constants %d\n",
3436 expr_has_constants (simplified
));
3438 fprintf (dump_file
, "\n");
3441 /* Setting value numbers to constants will occasionally
3442 screw up phi congruence because constants are not
3443 uniquely associated with a single ssa name that can be
3446 && is_gimple_min_invariant (simplified
)
3447 && TREE_CODE (lhs
) == SSA_NAME
)
3449 VN_INFO (lhs
)->expr
= simplified
;
3450 VN_INFO (lhs
)->has_constants
= true;
3451 changed
= set_ssa_val_to (lhs
, simplified
);
3455 && TREE_CODE (simplified
) == SSA_NAME
3456 && TREE_CODE (lhs
) == SSA_NAME
)
3458 changed
= visit_copy (lhs
, simplified
);
3461 else if (simplified
)
3463 if (TREE_CODE (lhs
) == SSA_NAME
)
3465 VN_INFO (lhs
)->has_constants
= expr_has_constants (simplified
);
3466 /* We have to unshare the expression or else
3467 valuizing may change the IL stream. */
3468 VN_INFO (lhs
)->expr
= unshare_expr (simplified
);
3471 else if (stmt_has_constants (stmt
)
3472 && TREE_CODE (lhs
) == SSA_NAME
)
3473 VN_INFO (lhs
)->has_constants
= true;
3474 else if (TREE_CODE (lhs
) == SSA_NAME
)
3476 /* We reset expr and constantness here because we may
3477 have been value numbering optimistically, and
3478 iterating. They may become non-constant in this case,
3479 even if they were optimistically constant. */
3481 VN_INFO (lhs
)->has_constants
= false;
3482 VN_INFO (lhs
)->expr
= NULL_TREE
;
3485 if ((TREE_CODE (lhs
) == SSA_NAME
3486 /* We can substitute SSA_NAMEs that are live over
3487 abnormal edges with their constant value. */
3488 && !(gimple_assign_copy_p (stmt
)
3489 && is_gimple_min_invariant (rhs1
))
3491 && is_gimple_min_invariant (simplified
))
3492 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs
))
3493 /* Stores or copies from SSA_NAMEs that are live over
3494 abnormal edges are a problem. */
3495 || (code
== SSA_NAME
3496 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs1
)))
3497 changed
= defs_to_varying (stmt
);
3498 else if (REFERENCE_CLASS_P (lhs
)
3500 changed
= visit_reference_op_store (lhs
, rhs1
, stmt
);
3501 else if (TREE_CODE (lhs
) == SSA_NAME
)
3503 if ((gimple_assign_copy_p (stmt
)
3504 && is_gimple_min_invariant (rhs1
))
3506 && is_gimple_min_invariant (simplified
)))
3508 VN_INFO (lhs
)->has_constants
= true;
3510 changed
= set_ssa_val_to (lhs
, simplified
);
3512 changed
= set_ssa_val_to (lhs
, rhs1
);
3516 /* First try to lookup the simplified expression. */
3519 enum gimple_rhs_class rhs_class
;
3522 rhs_class
= get_gimple_rhs_class (TREE_CODE (simplified
));
3523 if ((rhs_class
== GIMPLE_UNARY_RHS
3524 || rhs_class
== GIMPLE_BINARY_RHS
3525 || rhs_class
== GIMPLE_TERNARY_RHS
)
3526 && valid_gimple_rhs_p (simplified
))
3528 tree result
= vn_nary_op_lookup (simplified
, NULL
);
3531 changed
= set_ssa_val_to (lhs
, result
);
3537 /* Otherwise visit the original statement. */
3538 switch (vn_get_stmt_kind (stmt
))
3541 changed
= visit_nary_op (lhs
, stmt
);
3544 changed
= visit_reference_op_load (lhs
, rhs1
, stmt
);
3547 changed
= defs_to_varying (stmt
);
3553 changed
= defs_to_varying (stmt
);
3555 else if (is_gimple_call (stmt
))
3557 tree lhs
= gimple_call_lhs (stmt
);
3559 /* ??? We could try to simplify calls. */
3561 if (lhs
&& TREE_CODE (lhs
) == SSA_NAME
)
3563 if (stmt_has_constants (stmt
))
3564 VN_INFO (lhs
)->has_constants
= true;
3567 /* We reset expr and constantness here because we may
3568 have been value numbering optimistically, and
3569 iterating. They may become non-constant in this case,
3570 even if they were optimistically constant. */
3571 VN_INFO (lhs
)->has_constants
= false;
3572 VN_INFO (lhs
)->expr
= NULL_TREE
;
3575 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs
))
3577 changed
= defs_to_varying (stmt
);
3582 if (!gimple_call_internal_p (stmt
)
3583 && (/* Calls to the same function with the same vuse
3584 and the same operands do not necessarily return the same
3585 value, unless they're pure or const. */
3586 gimple_call_flags (stmt
) & (ECF_PURE
| ECF_CONST
)
3587 /* If calls have a vdef, subsequent calls won't have
3588 the same incoming vuse. So, if 2 calls with vdef have the
3589 same vuse, we know they're not subsequent.
3590 We can value number 2 calls to the same function with the
3591 same vuse and the same operands which are not subsequent
3592 the same, because there is no code in the program that can
3593 compare the 2 values... */
3594 || (gimple_vdef (stmt
)
3595 /* ... unless the call returns a pointer which does
3596 not alias with anything else. In which case the
3597 information that the values are distinct are encoded
3599 && !(gimple_call_return_flags (stmt
) & ERF_NOALIAS
))))
3600 changed
= visit_reference_op_call (lhs
, stmt
);
3602 changed
= defs_to_varying (stmt
);
3605 changed
= defs_to_varying (stmt
);
3611 /* Compare two operands by reverse postorder index */
3614 compare_ops (const void *pa
, const void *pb
)
3616 const tree opa
= *((const tree
*)pa
);
3617 const tree opb
= *((const tree
*)pb
);
3618 gimple opstmta
= SSA_NAME_DEF_STMT (opa
);
3619 gimple opstmtb
= SSA_NAME_DEF_STMT (opb
);
3623 if (gimple_nop_p (opstmta
) && gimple_nop_p (opstmtb
))
3624 return SSA_NAME_VERSION (opa
) - SSA_NAME_VERSION (opb
);
3625 else if (gimple_nop_p (opstmta
))
3627 else if (gimple_nop_p (opstmtb
))
3630 bba
= gimple_bb (opstmta
);
3631 bbb
= gimple_bb (opstmtb
);
3634 return SSA_NAME_VERSION (opa
) - SSA_NAME_VERSION (opb
);
3642 if (gimple_code (opstmta
) == GIMPLE_PHI
3643 && gimple_code (opstmtb
) == GIMPLE_PHI
)
3644 return SSA_NAME_VERSION (opa
) - SSA_NAME_VERSION (opb
);
3645 else if (gimple_code (opstmta
) == GIMPLE_PHI
)
3647 else if (gimple_code (opstmtb
) == GIMPLE_PHI
)
3649 else if (gimple_uid (opstmta
) != gimple_uid (opstmtb
))
3650 return gimple_uid (opstmta
) - gimple_uid (opstmtb
);
3652 return SSA_NAME_VERSION (opa
) - SSA_NAME_VERSION (opb
);
3654 return rpo_numbers
[bba
->index
] - rpo_numbers
[bbb
->index
];
3657 /* Sort an array containing members of a strongly connected component
3658 SCC so that the members are ordered by RPO number.
3659 This means that when the sort is complete, iterating through the
3660 array will give you the members in RPO order. */
3663 sort_scc (vec
<tree
> scc
)
3665 scc
.qsort (compare_ops
);
3668 /* Insert the no longer used nary ONARY to the hash INFO. */
3671 copy_nary (vn_nary_op_t onary
, vn_tables_t info
)
3673 size_t size
= sizeof_vn_nary_op (onary
->length
);
3674 vn_nary_op_t nary
= alloc_vn_nary_op_noinit (onary
->length
,
3675 &info
->nary_obstack
);
3676 memcpy (nary
, onary
, size
);
3677 vn_nary_op_insert_into (nary
, info
->nary
, false);
3680 /* Insert the no longer used phi OPHI to the hash INFO. */
3683 copy_phi (vn_phi_t ophi
, vn_tables_t info
)
3685 vn_phi_t phi
= (vn_phi_t
) pool_alloc (info
->phis_pool
);
3687 memcpy (phi
, ophi
, sizeof (*phi
));
3688 ophi
->phiargs
.create (0);
3689 slot
= info
->phis
.find_slot_with_hash (phi
, phi
->hashcode
, INSERT
);
3690 gcc_assert (!*slot
);
3694 /* Insert the no longer used reference OREF to the hash INFO. */
3697 copy_reference (vn_reference_t oref
, vn_tables_t info
)
3700 vn_reference_s
**slot
;
3701 ref
= (vn_reference_t
) pool_alloc (info
->references_pool
);
3702 memcpy (ref
, oref
, sizeof (*ref
));
3703 oref
->operands
.create (0);
3704 slot
= info
->references
.find_slot_with_hash (ref
, ref
->hashcode
, INSERT
);
3706 free_reference (*slot
);
3710 /* Process a strongly connected component in the SSA graph. */
3713 process_scc (vec
<tree
> scc
)
3717 unsigned int iterations
= 0;
3718 bool changed
= true;
3719 vn_nary_op_iterator_type hin
;
3720 vn_phi_iterator_type hip
;
3721 vn_reference_iterator_type hir
;
3726 /* If the SCC has a single member, just visit it. */
3727 if (scc
.length () == 1)
3730 if (VN_INFO (use
)->use_processed
)
3732 /* We need to make sure it doesn't form a cycle itself, which can
3733 happen for self-referential PHI nodes. In that case we would
3734 end up inserting an expression with VN_TOP operands into the
3735 valid table which makes us derive bogus equivalences later.
3736 The cheapest way to check this is to assume it for all PHI nodes. */
3737 if (gimple_code (SSA_NAME_DEF_STMT (use
)) == GIMPLE_PHI
)
3738 /* Fallthru to iteration. */ ;
3746 /* Iterate over the SCC with the optimistic table until it stops
3748 current_info
= optimistic_info
;
3753 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3754 fprintf (dump_file
, "Starting iteration %d\n", iterations
);
3755 /* As we are value-numbering optimistically we have to
3756 clear the expression tables and the simplified expressions
3757 in each iteration until we converge. */
3758 optimistic_info
->nary
.empty ();
3759 optimistic_info
->phis
.empty ();
3760 optimistic_info
->references
.empty ();
3761 obstack_free (&optimistic_info
->nary_obstack
, NULL
);
3762 gcc_obstack_init (&optimistic_info
->nary_obstack
);
3763 empty_alloc_pool (optimistic_info
->phis_pool
);
3764 empty_alloc_pool (optimistic_info
->references_pool
);
3765 FOR_EACH_VEC_ELT (scc
, i
, var
)
3766 VN_INFO (var
)->expr
= NULL_TREE
;
3767 FOR_EACH_VEC_ELT (scc
, i
, var
)
3768 changed
|= visit_use (var
);
3771 statistics_histogram_event (cfun
, "SCC iterations", iterations
);
3773 /* Finally, copy the contents of the no longer used optimistic
3774 table to the valid table. */
3775 FOR_EACH_HASH_TABLE_ELEMENT (optimistic_info
->nary
, nary
, vn_nary_op_t
, hin
)
3776 copy_nary (nary
, valid_info
);
3777 FOR_EACH_HASH_TABLE_ELEMENT (optimistic_info
->phis
, phi
, vn_phi_t
, hip
)
3778 copy_phi (phi
, valid_info
);
3779 FOR_EACH_HASH_TABLE_ELEMENT (optimistic_info
->references
,
3780 ref
, vn_reference_t
, hir
)
3781 copy_reference (ref
, valid_info
);
3783 current_info
= valid_info
;
3787 /* Pop the components of the found SCC for NAME off the SCC stack
3788 and process them. Returns true if all went well, false if
3789 we run into resource limits. */
3792 extract_and_process_scc_for_name (tree name
)
3797 /* Found an SCC, pop the components off the SCC stack and
3801 x
= sccstack
.pop ();
3803 VN_INFO (x
)->on_sccstack
= false;
3805 } while (x
!= name
);
3807 /* Bail out of SCCVN in case a SCC turns out to be incredibly large. */
3809 > (unsigned)PARAM_VALUE (PARAM_SCCVN_MAX_SCC_SIZE
))
3812 fprintf (dump_file
, "WARNING: Giving up with SCCVN due to "
3813 "SCC size %u exceeding %u\n", scc
.length (),
3814 (unsigned)PARAM_VALUE (PARAM_SCCVN_MAX_SCC_SIZE
));
3819 if (scc
.length () > 1)
3822 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3823 print_scc (dump_file
, scc
);
3830 /* Depth first search on NAME to discover and process SCC's in the SSA
3832 Execution of this algorithm relies on the fact that the SCC's are
3833 popped off the stack in topological order.
3834 Returns true if successful, false if we stopped processing SCC's due
3835 to resource constraints. */
3840 vec
<ssa_op_iter
> itervec
= vNULL
;
3841 vec
<tree
> namevec
= vNULL
;
3842 use_operand_p usep
= NULL
;
3849 VN_INFO (name
)->dfsnum
= next_dfs_num
++;
3850 VN_INFO (name
)->visited
= true;
3851 VN_INFO (name
)->low
= VN_INFO (name
)->dfsnum
;
3853 sccstack
.safe_push (name
);
3854 VN_INFO (name
)->on_sccstack
= true;
3855 defstmt
= SSA_NAME_DEF_STMT (name
);
3857 /* Recursively DFS on our operands, looking for SCC's. */
3858 if (!gimple_nop_p (defstmt
))
3860 /* Push a new iterator. */
3861 if (gimple_code (defstmt
) == GIMPLE_PHI
)
3862 usep
= op_iter_init_phiuse (&iter
, defstmt
, SSA_OP_ALL_USES
);
3864 usep
= op_iter_init_use (&iter
, defstmt
, SSA_OP_ALL_USES
);
3867 clear_and_done_ssa_iter (&iter
);
3871 /* If we are done processing uses of a name, go up the stack
3872 of iterators and process SCCs as we found them. */
3873 if (op_iter_done (&iter
))
3875 /* See if we found an SCC. */
3876 if (VN_INFO (name
)->low
== VN_INFO (name
)->dfsnum
)
3877 if (!extract_and_process_scc_for_name (name
))
3884 /* Check if we are done. */
3885 if (namevec
.is_empty ())
3892 /* Restore the last use walker and continue walking there. */
3894 name
= namevec
.pop ();
3895 memcpy (&iter
, &itervec
.last (),
3896 sizeof (ssa_op_iter
));
3898 goto continue_walking
;
3901 use
= USE_FROM_PTR (usep
);
3903 /* Since we handle phi nodes, we will sometimes get
3904 invariants in the use expression. */
3905 if (TREE_CODE (use
) == SSA_NAME
)
3907 if (! (VN_INFO (use
)->visited
))
3909 /* Recurse by pushing the current use walking state on
3910 the stack and starting over. */
3911 itervec
.safe_push (iter
);
3912 namevec
.safe_push (name
);
3917 VN_INFO (name
)->low
= MIN (VN_INFO (name
)->low
,
3918 VN_INFO (use
)->low
);
3920 if (VN_INFO (use
)->dfsnum
< VN_INFO (name
)->dfsnum
3921 && VN_INFO (use
)->on_sccstack
)
3923 VN_INFO (name
)->low
= MIN (VN_INFO (use
)->dfsnum
,
3924 VN_INFO (name
)->low
);
3928 usep
= op_iter_next_use (&iter
);
3932 /* Allocate a value number table. */
3935 allocate_vn_table (vn_tables_t table
)
3937 table
->phis
.create (23);
3938 table
->nary
.create (23);
3939 table
->references
.create (23);
3941 gcc_obstack_init (&table
->nary_obstack
);
3942 table
->phis_pool
= create_alloc_pool ("VN phis",
3943 sizeof (struct vn_phi_s
),
3945 table
->references_pool
= create_alloc_pool ("VN references",
3946 sizeof (struct vn_reference_s
),
3950 /* Free a value number table. */
3953 free_vn_table (vn_tables_t table
)
3955 table
->phis
.dispose ();
3956 table
->nary
.dispose ();
3957 table
->references
.dispose ();
3958 obstack_free (&table
->nary_obstack
, NULL
);
3959 free_alloc_pool (table
->phis_pool
);
3960 free_alloc_pool (table
->references_pool
);
3968 int *rpo_numbers_temp
;
3970 calculate_dominance_info (CDI_DOMINATORS
);
3971 sccstack
.create (0);
3972 constant_to_value_id
.create (23);
3974 constant_value_ids
= BITMAP_ALLOC (NULL
);
3979 vn_ssa_aux_table
.create (num_ssa_names
+ 1);
3980 /* VEC_alloc doesn't actually grow it to the right size, it just
3981 preallocates the space to do so. */
3982 vn_ssa_aux_table
.safe_grow_cleared (num_ssa_names
+ 1);
3983 gcc_obstack_init (&vn_ssa_aux_obstack
);
3985 shared_lookup_phiargs
.create (0);
3986 shared_lookup_references
.create (0);
3987 rpo_numbers
= XNEWVEC (int, last_basic_block_for_fn (cfun
));
3989 XNEWVEC (int, n_basic_blocks_for_fn (cfun
) - NUM_FIXED_BLOCKS
);
3990 pre_and_rev_post_order_compute (NULL
, rpo_numbers_temp
, false);
3992 /* RPO numbers is an array of rpo ordering, rpo[i] = bb means that
3993 the i'th block in RPO order is bb. We want to map bb's to RPO
3994 numbers, so we need to rearrange this array. */
3995 for (j
= 0; j
< n_basic_blocks_for_fn (cfun
) - NUM_FIXED_BLOCKS
; j
++)
3996 rpo_numbers
[rpo_numbers_temp
[j
]] = j
;
3998 XDELETE (rpo_numbers_temp
);
4000 VN_TOP
= create_tmp_var_raw (void_type_node
, "vn_top");
4002 /* Create the VN_INFO structures, and initialize value numbers to
4004 for (i
= 0; i
< num_ssa_names
; i
++)
4006 tree name
= ssa_name (i
);
4009 VN_INFO_GET (name
)->valnum
= VN_TOP
;
4010 VN_INFO (name
)->expr
= NULL_TREE
;
4011 VN_INFO (name
)->value_id
= 0;
4015 renumber_gimple_stmt_uids ();
4017 /* Create the valid and optimistic value numbering tables. */
4018 valid_info
= XCNEW (struct vn_tables_s
);
4019 allocate_vn_table (valid_info
);
4020 optimistic_info
= XCNEW (struct vn_tables_s
);
4021 allocate_vn_table (optimistic_info
);
4029 constant_to_value_id
.dispose ();
4030 BITMAP_FREE (constant_value_ids
);
4031 shared_lookup_phiargs
.release ();
4032 shared_lookup_references
.release ();
4033 XDELETEVEC (rpo_numbers
);
4035 for (i
= 0; i
< num_ssa_names
; i
++)
4037 tree name
= ssa_name (i
);
4039 && VN_INFO (name
)->needs_insertion
)
4040 release_ssa_name (name
);
4042 obstack_free (&vn_ssa_aux_obstack
, NULL
);
4043 vn_ssa_aux_table
.release ();
4045 sccstack
.release ();
4046 free_vn_table (valid_info
);
4047 XDELETE (valid_info
);
4048 free_vn_table (optimistic_info
);
4049 XDELETE (optimistic_info
);
4052 /* Set *ID according to RESULT. */
4055 set_value_id_for_result (tree result
, unsigned int *id
)
4057 if (result
&& TREE_CODE (result
) == SSA_NAME
)
4058 *id
= VN_INFO (result
)->value_id
;
4059 else if (result
&& is_gimple_min_invariant (result
))
4060 *id
= get_or_alloc_constant_value_id (result
);
4062 *id
= get_next_value_id ();
4065 /* Set the value ids in the valid hash tables. */
4068 set_hashtable_value_ids (void)
4070 vn_nary_op_iterator_type hin
;
4071 vn_phi_iterator_type hip
;
4072 vn_reference_iterator_type hir
;
4077 /* Now set the value ids of the things we had put in the hash
4080 FOR_EACH_HASH_TABLE_ELEMENT (valid_info
->nary
, vno
, vn_nary_op_t
, hin
)
4081 set_value_id_for_result (vno
->result
, &vno
->value_id
);
4083 FOR_EACH_HASH_TABLE_ELEMENT (valid_info
->phis
, vp
, vn_phi_t
, hip
)
4084 set_value_id_for_result (vp
->result
, &vp
->value_id
);
4086 FOR_EACH_HASH_TABLE_ELEMENT (valid_info
->references
, vr
, vn_reference_t
, hir
)
4087 set_value_id_for_result (vr
->result
, &vr
->value_id
);
4090 /* Do SCCVN. Returns true if it finished, false if we bailed out
4091 due to resource constraints. DEFAULT_VN_WALK_KIND_ specifies
4092 how we use the alias oracle walking during the VN process. */
4095 run_scc_vn (vn_lookup_kind default_vn_walk_kind_
)
4100 default_vn_walk_kind
= default_vn_walk_kind_
;
4103 current_info
= valid_info
;
4105 for (param
= DECL_ARGUMENTS (current_function_decl
);
4107 param
= DECL_CHAIN (param
))
4109 tree def
= ssa_default_def (cfun
, param
);
4111 VN_INFO (def
)->valnum
= def
;
4114 for (i
= 1; i
< num_ssa_names
; ++i
)
4116 tree name
= ssa_name (i
);
4118 && VN_INFO (name
)->visited
== false
4119 && !has_zero_uses (name
))
4127 /* Initialize the value ids. */
4129 for (i
= 1; i
< num_ssa_names
; ++i
)
4131 tree name
= ssa_name (i
);
4135 info
= VN_INFO (name
);
4136 if (info
->valnum
== name
4137 || info
->valnum
== VN_TOP
)
4138 info
->value_id
= get_next_value_id ();
4139 else if (is_gimple_min_invariant (info
->valnum
))
4140 info
->value_id
= get_or_alloc_constant_value_id (info
->valnum
);
4144 for (i
= 1; i
< num_ssa_names
; ++i
)
4146 tree name
= ssa_name (i
);
4150 info
= VN_INFO (name
);
4151 if (TREE_CODE (info
->valnum
) == SSA_NAME
4152 && info
->valnum
!= name
4153 && info
->value_id
!= VN_INFO (info
->valnum
)->value_id
)
4154 info
->value_id
= VN_INFO (info
->valnum
)->value_id
;
4157 set_hashtable_value_ids ();
4159 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4161 fprintf (dump_file
, "Value numbers:\n");
4162 for (i
= 0; i
< num_ssa_names
; i
++)
4164 tree name
= ssa_name (i
);
4166 && VN_INFO (name
)->visited
4167 && SSA_VAL (name
) != name
)
4169 print_generic_expr (dump_file
, name
, 0);
4170 fprintf (dump_file
, " = ");
4171 print_generic_expr (dump_file
, SSA_VAL (name
), 0);
4172 fprintf (dump_file
, "\n");
4180 /* Return the maximum value id we have ever seen. */
4183 get_max_value_id (void)
4185 return next_value_id
;
4188 /* Return the next unique value id. */
4191 get_next_value_id (void)
4193 return next_value_id
++;
4197 /* Compare two expressions E1 and E2 and return true if they are equal. */
4200 expressions_equal_p (tree e1
, tree e2
)
4202 /* The obvious case. */
4206 /* If only one of them is null, they cannot be equal. */
4210 /* Now perform the actual comparison. */
4211 if (TREE_CODE (e1
) == TREE_CODE (e2
)
4212 && operand_equal_p (e1
, e2
, OEP_PURE_SAME
))
4219 /* Return true if the nary operation NARY may trap. This is a copy
4220 of stmt_could_throw_1_p adjusted to the SCCVN IL. */
4223 vn_nary_may_trap (vn_nary_op_t nary
)
4226 tree rhs2
= NULL_TREE
;
4227 bool honor_nans
= false;
4228 bool honor_snans
= false;
4229 bool fp_operation
= false;
4230 bool honor_trapv
= false;
4234 if (TREE_CODE_CLASS (nary
->opcode
) == tcc_comparison
4235 || TREE_CODE_CLASS (nary
->opcode
) == tcc_unary
4236 || TREE_CODE_CLASS (nary
->opcode
) == tcc_binary
)
4239 fp_operation
= FLOAT_TYPE_P (type
);
4242 honor_nans
= flag_trapping_math
&& !flag_finite_math_only
;
4243 honor_snans
= flag_signaling_nans
!= 0;
4245 else if (INTEGRAL_TYPE_P (type
)
4246 && TYPE_OVERFLOW_TRAPS (type
))
4249 if (nary
->length
>= 2)
4251 ret
= operation_could_trap_helper_p (nary
->opcode
, fp_operation
,
4253 honor_nans
, honor_snans
, rhs2
,
4259 for (i
= 0; i
< nary
->length
; ++i
)
4260 if (tree_could_trap_p (nary
->op
[i
]))