Daily bump.
[official-gcc.git] / gcc / tree-ssa-sccvn.c
blobb949bfa725d055a07c8635fdbf3f3cf6158817e5
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)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.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"
34 #include "tree-eh.h"
35 #include "gimple-expr.h"
36 #include "is-a.h"
37 #include "gimple.h"
38 #include "gimplify.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"
44 #include "expr.h"
45 #include "tree-dfa.h"
46 #include "tree-ssa.h"
47 #include "dumpfile.h"
48 #include "alloc-pool.h"
49 #include "flags.h"
50 #include "cfgloop.h"
51 #include "params.h"
52 #include "tree-ssa-propagate.h"
53 #include "tree-ssa-sccvn.h"
54 #include "tree-cfg.h"
55 #include "domwalk.h"
57 /* This algorithm is based on the SCC algorithm presented by Keith
58 Cooper and L. Taylor Simpson in "SCC-Based Value numbering"
59 (http://citeseer.ist.psu.edu/41805.html). In
60 straight line code, it is equivalent to a regular hash based value
61 numbering that is performed in reverse postorder.
63 For code with cycles, there are two alternatives, both of which
64 require keeping the hashtables separate from the actual list of
65 value numbers for SSA names.
67 1. Iterate value numbering in an RPO walk of the blocks, removing
68 all the entries from the hashtable after each iteration (but
69 keeping the SSA name->value number mapping between iterations).
70 Iterate until it does not change.
72 2. Perform value numbering as part of an SCC walk on the SSA graph,
73 iterating only the cycles in the SSA graph until they do not change
74 (using a separate, optimistic hashtable for value numbering the SCC
75 operands).
77 The second is not just faster in practice (because most SSA graph
78 cycles do not involve all the variables in the graph), it also has
79 some nice properties.
81 One of these nice properties is that when we pop an SCC off the
82 stack, we are guaranteed to have processed all the operands coming from
83 *outside of that SCC*, so we do not need to do anything special to
84 ensure they have value numbers.
86 Another nice property is that the SCC walk is done as part of a DFS
87 of the SSA graph, which makes it easy to perform combining and
88 simplifying operations at the same time.
90 The code below is deliberately written in a way that makes it easy
91 to separate the SCC walk from the other work it does.
93 In order to propagate constants through the code, we track which
94 expressions contain constants, and use those while folding. In
95 theory, we could also track expressions whose value numbers are
96 replaced, in case we end up folding based on expression
97 identities.
99 In order to value number memory, we assign value numbers to vuses.
100 This enables us to note that, for example, stores to the same
101 address of the same value from the same starting memory states are
102 equivalent.
103 TODO:
105 1. We can iterate only the changing portions of the SCC's, but
106 I have not seen an SCC big enough for this to be a win.
107 2. If you differentiate between phi nodes for loops and phi nodes
108 for if-then-else, you can properly consider phi nodes in different
109 blocks for equivalence.
110 3. We could value number vuses in more cases, particularly, whole
111 structure copies.
115 /* vn_nary_op hashtable helpers. */
117 struct vn_nary_op_hasher : typed_noop_remove <vn_nary_op_s>
119 typedef vn_nary_op_s value_type;
120 typedef vn_nary_op_s compare_type;
121 static inline hashval_t hash (const value_type *);
122 static inline bool equal (const value_type *, const compare_type *);
125 /* Return the computed hashcode for nary operation P1. */
127 inline hashval_t
128 vn_nary_op_hasher::hash (const value_type *vno1)
130 return vno1->hashcode;
133 /* Compare nary operations P1 and P2 and return true if they are
134 equivalent. */
136 inline bool
137 vn_nary_op_hasher::equal (const value_type *vno1, const compare_type *vno2)
139 return vn_nary_op_eq (vno1, vno2);
142 typedef hash_table <vn_nary_op_hasher> vn_nary_op_table_type;
143 typedef vn_nary_op_table_type::iterator vn_nary_op_iterator_type;
146 /* vn_phi hashtable helpers. */
148 static int
149 vn_phi_eq (const_vn_phi_t const vp1, const_vn_phi_t const vp2);
151 struct vn_phi_hasher
153 typedef vn_phi_s value_type;
154 typedef vn_phi_s compare_type;
155 static inline hashval_t hash (const value_type *);
156 static inline bool equal (const value_type *, const compare_type *);
157 static inline void remove (value_type *);
160 /* Return the computed hashcode for phi operation P1. */
162 inline hashval_t
163 vn_phi_hasher::hash (const value_type *vp1)
165 return vp1->hashcode;
168 /* Compare two phi entries for equality, ignoring VN_TOP arguments. */
170 inline bool
171 vn_phi_hasher::equal (const value_type *vp1, const compare_type *vp2)
173 return vn_phi_eq (vp1, vp2);
176 /* Free a phi operation structure VP. */
178 inline void
179 vn_phi_hasher::remove (value_type *phi)
181 phi->phiargs.release ();
184 typedef hash_table <vn_phi_hasher> vn_phi_table_type;
185 typedef vn_phi_table_type::iterator vn_phi_iterator_type;
188 /* Compare two reference operands P1 and P2 for equality. Return true if
189 they are equal, and false otherwise. */
191 static int
192 vn_reference_op_eq (const void *p1, const void *p2)
194 const_vn_reference_op_t const vro1 = (const_vn_reference_op_t) p1;
195 const_vn_reference_op_t const vro2 = (const_vn_reference_op_t) p2;
197 return (vro1->opcode == vro2->opcode
198 /* We do not care for differences in type qualification. */
199 && (vro1->type == vro2->type
200 || (vro1->type && vro2->type
201 && types_compatible_p (TYPE_MAIN_VARIANT (vro1->type),
202 TYPE_MAIN_VARIANT (vro2->type))))
203 && expressions_equal_p (vro1->op0, vro2->op0)
204 && expressions_equal_p (vro1->op1, vro2->op1)
205 && expressions_equal_p (vro1->op2, vro2->op2));
208 /* Free a reference operation structure VP. */
210 static inline void
211 free_reference (vn_reference_s *vr)
213 vr->operands.release ();
217 /* vn_reference hashtable helpers. */
219 struct vn_reference_hasher
221 typedef vn_reference_s value_type;
222 typedef vn_reference_s compare_type;
223 static inline hashval_t hash (const value_type *);
224 static inline bool equal (const value_type *, const compare_type *);
225 static inline void remove (value_type *);
228 /* Return the hashcode for a given reference operation P1. */
230 inline hashval_t
231 vn_reference_hasher::hash (const value_type *vr1)
233 return vr1->hashcode;
236 inline bool
237 vn_reference_hasher::equal (const value_type *v, const compare_type *c)
239 return vn_reference_eq (v, c);
242 inline void
243 vn_reference_hasher::remove (value_type *v)
245 free_reference (v);
248 typedef hash_table <vn_reference_hasher> vn_reference_table_type;
249 typedef vn_reference_table_type::iterator vn_reference_iterator_type;
252 /* The set of hashtables and alloc_pool's for their items. */
254 typedef struct vn_tables_s
256 vn_nary_op_table_type nary;
257 vn_phi_table_type phis;
258 vn_reference_table_type references;
259 struct obstack nary_obstack;
260 alloc_pool phis_pool;
261 alloc_pool references_pool;
262 } *vn_tables_t;
265 /* vn_constant hashtable helpers. */
267 struct vn_constant_hasher : typed_free_remove <vn_constant_s>
269 typedef vn_constant_s value_type;
270 typedef vn_constant_s compare_type;
271 static inline hashval_t hash (const value_type *);
272 static inline bool equal (const value_type *, const compare_type *);
275 /* Hash table hash function for vn_constant_t. */
277 inline hashval_t
278 vn_constant_hasher::hash (const value_type *vc1)
280 return vc1->hashcode;
283 /* Hash table equality function for vn_constant_t. */
285 inline bool
286 vn_constant_hasher::equal (const value_type *vc1, const compare_type *vc2)
288 if (vc1->hashcode != vc2->hashcode)
289 return false;
291 return vn_constant_eq_with_type (vc1->constant, vc2->constant);
294 static hash_table <vn_constant_hasher> constant_to_value_id;
295 static bitmap constant_value_ids;
298 /* Valid hashtables storing information we have proven to be
299 correct. */
301 static vn_tables_t valid_info;
303 /* Optimistic hashtables storing information we are making assumptions about
304 during iterations. */
306 static vn_tables_t optimistic_info;
308 /* Pointer to the set of hashtables that is currently being used.
309 Should always point to either the optimistic_info, or the
310 valid_info. */
312 static vn_tables_t current_info;
315 /* Reverse post order index for each basic block. */
317 static int *rpo_numbers;
319 #define SSA_VAL(x) (VN_INFO ((x))->valnum)
321 /* Return the SSA value of the VUSE x, supporting released VDEFs
322 during elimination which will value-number the VDEF to the
323 associated VUSE (but not substitute in the whole lattice). */
325 static inline tree
326 vuse_ssa_val (tree x)
328 if (!x)
329 return NULL_TREE;
333 x = SSA_VAL (x);
335 while (SSA_NAME_IN_FREE_LIST (x));
337 return x;
340 /* This represents the top of the VN lattice, which is the universal
341 value. */
343 tree VN_TOP;
345 /* Unique counter for our value ids. */
347 static unsigned int next_value_id;
349 /* Next DFS number and the stack for strongly connected component
350 detection. */
352 static unsigned int next_dfs_num;
353 static vec<tree> sccstack;
357 /* Table of vn_ssa_aux_t's, one per ssa_name. The vn_ssa_aux_t objects
358 are allocated on an obstack for locality reasons, and to free them
359 without looping over the vec. */
361 static vec<vn_ssa_aux_t> vn_ssa_aux_table;
362 static struct obstack vn_ssa_aux_obstack;
364 /* Return the value numbering information for a given SSA name. */
366 vn_ssa_aux_t
367 VN_INFO (tree name)
369 vn_ssa_aux_t res = vn_ssa_aux_table[SSA_NAME_VERSION (name)];
370 gcc_checking_assert (res);
371 return res;
374 /* Set the value numbering info for a given SSA name to a given
375 value. */
377 static inline void
378 VN_INFO_SET (tree name, vn_ssa_aux_t value)
380 vn_ssa_aux_table[SSA_NAME_VERSION (name)] = value;
383 /* Initialize the value numbering info for a given SSA name.
384 This should be called just once for every SSA name. */
386 vn_ssa_aux_t
387 VN_INFO_GET (tree name)
389 vn_ssa_aux_t newinfo;
391 newinfo = XOBNEW (&vn_ssa_aux_obstack, struct vn_ssa_aux);
392 memset (newinfo, 0, sizeof (struct vn_ssa_aux));
393 if (SSA_NAME_VERSION (name) >= vn_ssa_aux_table.length ())
394 vn_ssa_aux_table.safe_grow (SSA_NAME_VERSION (name) + 1);
395 vn_ssa_aux_table[SSA_NAME_VERSION (name)] = newinfo;
396 return newinfo;
400 /* Get the representative expression for the SSA_NAME NAME. Returns
401 the representative SSA_NAME if there is no expression associated with it. */
403 tree
404 vn_get_expr_for (tree name)
406 vn_ssa_aux_t vn = VN_INFO (name);
407 gimple def_stmt;
408 tree expr = NULL_TREE;
409 enum tree_code code;
411 if (vn->valnum == VN_TOP)
412 return name;
414 /* If the value-number is a constant it is the representative
415 expression. */
416 if (TREE_CODE (vn->valnum) != SSA_NAME)
417 return vn->valnum;
419 /* Get to the information of the value of this SSA_NAME. */
420 vn = VN_INFO (vn->valnum);
422 /* If the value-number is a constant it is the representative
423 expression. */
424 if (TREE_CODE (vn->valnum) != SSA_NAME)
425 return vn->valnum;
427 /* Else if we have an expression, return it. */
428 if (vn->expr != NULL_TREE)
429 return vn->expr;
431 /* Otherwise use the defining statement to build the expression. */
432 def_stmt = SSA_NAME_DEF_STMT (vn->valnum);
434 /* If the value number is not an assignment use it directly. */
435 if (!is_gimple_assign (def_stmt))
436 return vn->valnum;
438 /* Note that we can valueize here because we clear the cached
439 simplified expressions after each optimistic iteration. */
440 code = gimple_assign_rhs_code (def_stmt);
441 switch (TREE_CODE_CLASS (code))
443 case tcc_reference:
444 if ((code == REALPART_EXPR
445 || code == IMAGPART_EXPR
446 || code == VIEW_CONVERT_EXPR)
447 && TREE_CODE (TREE_OPERAND (gimple_assign_rhs1 (def_stmt),
448 0)) == SSA_NAME)
449 expr = fold_build1 (code,
450 gimple_expr_type (def_stmt),
451 vn_valueize (TREE_OPERAND
452 (gimple_assign_rhs1 (def_stmt), 0)));
453 break;
455 case tcc_unary:
456 expr = fold_build1 (code,
457 gimple_expr_type (def_stmt),
458 vn_valueize (gimple_assign_rhs1 (def_stmt)));
459 break;
461 case tcc_binary:
462 expr = fold_build2 (code,
463 gimple_expr_type (def_stmt),
464 vn_valueize (gimple_assign_rhs1 (def_stmt)),
465 vn_valueize (gimple_assign_rhs2 (def_stmt)));
466 break;
468 case tcc_exceptional:
469 if (code == CONSTRUCTOR
470 && TREE_CODE
471 (TREE_TYPE (gimple_assign_rhs1 (def_stmt))) == VECTOR_TYPE)
472 expr = gimple_assign_rhs1 (def_stmt);
473 break;
475 default:;
477 if (expr == NULL_TREE)
478 return vn->valnum;
480 /* Cache the expression. */
481 vn->expr = expr;
483 return expr;
486 /* Return the vn_kind the expression computed by the stmt should be
487 associated with. */
489 enum vn_kind
490 vn_get_stmt_kind (gimple stmt)
492 switch (gimple_code (stmt))
494 case GIMPLE_CALL:
495 return VN_REFERENCE;
496 case GIMPLE_PHI:
497 return VN_PHI;
498 case GIMPLE_ASSIGN:
500 enum tree_code code = gimple_assign_rhs_code (stmt);
501 tree rhs1 = gimple_assign_rhs1 (stmt);
502 switch (get_gimple_rhs_class (code))
504 case GIMPLE_UNARY_RHS:
505 case GIMPLE_BINARY_RHS:
506 case GIMPLE_TERNARY_RHS:
507 return VN_NARY;
508 case GIMPLE_SINGLE_RHS:
509 switch (TREE_CODE_CLASS (code))
511 case tcc_reference:
512 /* VOP-less references can go through unary case. */
513 if ((code == REALPART_EXPR
514 || code == IMAGPART_EXPR
515 || code == VIEW_CONVERT_EXPR
516 || code == BIT_FIELD_REF)
517 && TREE_CODE (TREE_OPERAND (rhs1, 0)) == SSA_NAME)
518 return VN_NARY;
520 /* Fallthrough. */
521 case tcc_declaration:
522 return VN_REFERENCE;
524 case tcc_constant:
525 return VN_CONSTANT;
527 default:
528 if (code == ADDR_EXPR)
529 return (is_gimple_min_invariant (rhs1)
530 ? VN_CONSTANT : VN_REFERENCE);
531 else if (code == CONSTRUCTOR)
532 return VN_NARY;
533 return VN_NONE;
535 default:
536 return VN_NONE;
539 default:
540 return VN_NONE;
544 /* Lookup a value id for CONSTANT and return it. If it does not
545 exist returns 0. */
547 unsigned int
548 get_constant_value_id (tree constant)
550 vn_constant_s **slot;
551 struct vn_constant_s vc;
553 vc.hashcode = vn_hash_constant_with_type (constant);
554 vc.constant = constant;
555 slot = constant_to_value_id.find_slot_with_hash (&vc, vc.hashcode, NO_INSERT);
556 if (slot)
557 return (*slot)->value_id;
558 return 0;
561 /* Lookup a value id for CONSTANT, and if it does not exist, create a
562 new one and return it. If it does exist, return it. */
564 unsigned int
565 get_or_alloc_constant_value_id (tree constant)
567 vn_constant_s **slot;
568 struct vn_constant_s vc;
569 vn_constant_t vcp;
571 vc.hashcode = vn_hash_constant_with_type (constant);
572 vc.constant = constant;
573 slot = constant_to_value_id.find_slot_with_hash (&vc, vc.hashcode, INSERT);
574 if (*slot)
575 return (*slot)->value_id;
577 vcp = XNEW (struct vn_constant_s);
578 vcp->hashcode = vc.hashcode;
579 vcp->constant = constant;
580 vcp->value_id = get_next_value_id ();
581 *slot = vcp;
582 bitmap_set_bit (constant_value_ids, vcp->value_id);
583 return vcp->value_id;
586 /* Return true if V is a value id for a constant. */
588 bool
589 value_id_constant_p (unsigned int v)
591 return bitmap_bit_p (constant_value_ids, v);
594 /* Compute the hash for a reference operand VRO1. */
596 static hashval_t
597 vn_reference_op_compute_hash (const vn_reference_op_t vro1, hashval_t result)
599 result = iterative_hash_hashval_t (vro1->opcode, result);
600 if (vro1->op0)
601 result = iterative_hash_expr (vro1->op0, result);
602 if (vro1->op1)
603 result = iterative_hash_expr (vro1->op1, result);
604 if (vro1->op2)
605 result = iterative_hash_expr (vro1->op2, result);
606 return result;
609 /* Compute a hash for the reference operation VR1 and return it. */
611 hashval_t
612 vn_reference_compute_hash (const vn_reference_t vr1)
614 hashval_t result = 0;
615 int i;
616 vn_reference_op_t vro;
617 HOST_WIDE_INT off = -1;
618 bool deref = false;
620 FOR_EACH_VEC_ELT (vr1->operands, i, vro)
622 if (vro->opcode == MEM_REF)
623 deref = true;
624 else if (vro->opcode != ADDR_EXPR)
625 deref = false;
626 if (vro->off != -1)
628 if (off == -1)
629 off = 0;
630 off += vro->off;
632 else
634 if (off != -1
635 && off != 0)
636 result = iterative_hash_hashval_t (off, result);
637 off = -1;
638 if (deref
639 && vro->opcode == ADDR_EXPR)
641 if (vro->op0)
643 tree op = TREE_OPERAND (vro->op0, 0);
644 result = iterative_hash_hashval_t (TREE_CODE (op), result);
645 result = iterative_hash_expr (op, result);
648 else
649 result = vn_reference_op_compute_hash (vro, result);
652 if (vr1->vuse)
653 result += SSA_NAME_VERSION (vr1->vuse);
655 return result;
658 /* Return true if reference operations VR1 and VR2 are equivalent. This
659 means they have the same set of operands and vuses. */
661 bool
662 vn_reference_eq (const_vn_reference_t const vr1, const_vn_reference_t const vr2)
664 unsigned i, j;
666 /* Early out if this is not a hash collision. */
667 if (vr1->hashcode != vr2->hashcode)
668 return false;
670 /* The VOP needs to be the same. */
671 if (vr1->vuse != vr2->vuse)
672 return false;
674 /* If the operands are the same we are done. */
675 if (vr1->operands == vr2->operands)
676 return true;
678 if (!expressions_equal_p (TYPE_SIZE (vr1->type), TYPE_SIZE (vr2->type)))
679 return false;
681 if (INTEGRAL_TYPE_P (vr1->type)
682 && INTEGRAL_TYPE_P (vr2->type))
684 if (TYPE_PRECISION (vr1->type) != TYPE_PRECISION (vr2->type))
685 return false;
687 else if (INTEGRAL_TYPE_P (vr1->type)
688 && (TYPE_PRECISION (vr1->type)
689 != TREE_INT_CST_LOW (TYPE_SIZE (vr1->type))))
690 return false;
691 else if (INTEGRAL_TYPE_P (vr2->type)
692 && (TYPE_PRECISION (vr2->type)
693 != TREE_INT_CST_LOW (TYPE_SIZE (vr2->type))))
694 return false;
696 i = 0;
697 j = 0;
700 HOST_WIDE_INT off1 = 0, off2 = 0;
701 vn_reference_op_t vro1, vro2;
702 vn_reference_op_s tem1, tem2;
703 bool deref1 = false, deref2 = false;
704 for (; vr1->operands.iterate (i, &vro1); i++)
706 if (vro1->opcode == MEM_REF)
707 deref1 = true;
708 if (vro1->off == -1)
709 break;
710 off1 += vro1->off;
712 for (; vr2->operands.iterate (j, &vro2); j++)
714 if (vro2->opcode == MEM_REF)
715 deref2 = true;
716 if (vro2->off == -1)
717 break;
718 off2 += vro2->off;
720 if (off1 != off2)
721 return false;
722 if (deref1 && vro1->opcode == ADDR_EXPR)
724 memset (&tem1, 0, sizeof (tem1));
725 tem1.op0 = TREE_OPERAND (vro1->op0, 0);
726 tem1.type = TREE_TYPE (tem1.op0);
727 tem1.opcode = TREE_CODE (tem1.op0);
728 vro1 = &tem1;
729 deref1 = false;
731 if (deref2 && vro2->opcode == ADDR_EXPR)
733 memset (&tem2, 0, sizeof (tem2));
734 tem2.op0 = TREE_OPERAND (vro2->op0, 0);
735 tem2.type = TREE_TYPE (tem2.op0);
736 tem2.opcode = TREE_CODE (tem2.op0);
737 vro2 = &tem2;
738 deref2 = false;
740 if (deref1 != deref2)
741 return false;
742 if (!vn_reference_op_eq (vro1, vro2))
743 return false;
744 ++j;
745 ++i;
747 while (vr1->operands.length () != i
748 || vr2->operands.length () != j);
750 return true;
753 /* Copy the operations present in load/store REF into RESULT, a vector of
754 vn_reference_op_s's. */
756 void
757 copy_reference_ops_from_ref (tree ref, vec<vn_reference_op_s> *result)
759 if (TREE_CODE (ref) == TARGET_MEM_REF)
761 vn_reference_op_s temp;
763 result->reserve (3);
765 memset (&temp, 0, sizeof (temp));
766 temp.type = TREE_TYPE (ref);
767 temp.opcode = TREE_CODE (ref);
768 temp.op0 = TMR_INDEX (ref);
769 temp.op1 = TMR_STEP (ref);
770 temp.op2 = TMR_OFFSET (ref);
771 temp.off = -1;
772 result->quick_push (temp);
774 memset (&temp, 0, sizeof (temp));
775 temp.type = NULL_TREE;
776 temp.opcode = ERROR_MARK;
777 temp.op0 = TMR_INDEX2 (ref);
778 temp.off = -1;
779 result->quick_push (temp);
781 memset (&temp, 0, sizeof (temp));
782 temp.type = NULL_TREE;
783 temp.opcode = TREE_CODE (TMR_BASE (ref));
784 temp.op0 = TMR_BASE (ref);
785 temp.off = -1;
786 result->quick_push (temp);
787 return;
790 /* For non-calls, store the information that makes up the address. */
791 tree orig = ref;
792 while (ref)
794 vn_reference_op_s temp;
796 memset (&temp, 0, sizeof (temp));
797 temp.type = TREE_TYPE (ref);
798 temp.opcode = TREE_CODE (ref);
799 temp.off = -1;
801 switch (temp.opcode)
803 case MODIFY_EXPR:
804 temp.op0 = TREE_OPERAND (ref, 1);
805 break;
806 case WITH_SIZE_EXPR:
807 temp.op0 = TREE_OPERAND (ref, 1);
808 temp.off = 0;
809 break;
810 case MEM_REF:
811 /* The base address gets its own vn_reference_op_s structure. */
812 temp.op0 = TREE_OPERAND (ref, 1);
813 if (tree_fits_shwi_p (TREE_OPERAND (ref, 1)))
814 temp.off = tree_to_shwi (TREE_OPERAND (ref, 1));
815 break;
816 case BIT_FIELD_REF:
817 /* Record bits and position. */
818 temp.op0 = TREE_OPERAND (ref, 1);
819 temp.op1 = TREE_OPERAND (ref, 2);
820 break;
821 case COMPONENT_REF:
822 /* The field decl is enough to unambiguously specify the field,
823 a matching type is not necessary and a mismatching type
824 is always a spurious difference. */
825 temp.type = NULL_TREE;
826 temp.op0 = TREE_OPERAND (ref, 1);
827 temp.op1 = TREE_OPERAND (ref, 2);
829 tree this_offset = component_ref_field_offset (ref);
830 if (this_offset
831 && TREE_CODE (this_offset) == INTEGER_CST)
833 tree bit_offset = DECL_FIELD_BIT_OFFSET (TREE_OPERAND (ref, 1));
834 if (TREE_INT_CST_LOW (bit_offset) % BITS_PER_UNIT == 0)
836 offset_int off
837 = (wi::to_offset (this_offset)
838 + wi::lrshift (wi::to_offset (bit_offset),
839 LOG2_BITS_PER_UNIT));
840 if (wi::fits_shwi_p (off)
841 /* Probibit value-numbering zero offset components
842 of addresses the same before the pass folding
843 __builtin_object_size had a chance to run
844 (checking cfun->after_inlining does the
845 trick here). */
846 && (TREE_CODE (orig) != ADDR_EXPR
847 || off != 0
848 || cfun->after_inlining))
849 temp.off = off.to_shwi ();
853 break;
854 case ARRAY_RANGE_REF:
855 case ARRAY_REF:
856 /* Record index as operand. */
857 temp.op0 = TREE_OPERAND (ref, 1);
858 /* Always record lower bounds and element size. */
859 temp.op1 = array_ref_low_bound (ref);
860 temp.op2 = array_ref_element_size (ref);
861 if (TREE_CODE (temp.op0) == INTEGER_CST
862 && TREE_CODE (temp.op1) == INTEGER_CST
863 && TREE_CODE (temp.op2) == INTEGER_CST)
865 offset_int off = ((wi::to_offset (temp.op0)
866 - wi::to_offset (temp.op1))
867 * wi::to_offset (temp.op2));
868 if (wi::fits_shwi_p (off))
869 temp.off = off.to_shwi();
871 break;
872 case VAR_DECL:
873 if (DECL_HARD_REGISTER (ref))
875 temp.op0 = ref;
876 break;
878 /* Fallthru. */
879 case PARM_DECL:
880 case CONST_DECL:
881 case RESULT_DECL:
882 /* Canonicalize decls to MEM[&decl] which is what we end up with
883 when valueizing MEM[ptr] with ptr = &decl. */
884 temp.opcode = MEM_REF;
885 temp.op0 = build_int_cst (build_pointer_type (TREE_TYPE (ref)), 0);
886 temp.off = 0;
887 result->safe_push (temp);
888 temp.opcode = ADDR_EXPR;
889 temp.op0 = build1 (ADDR_EXPR, TREE_TYPE (temp.op0), ref);
890 temp.type = TREE_TYPE (temp.op0);
891 temp.off = -1;
892 break;
893 case STRING_CST:
894 case INTEGER_CST:
895 case COMPLEX_CST:
896 case VECTOR_CST:
897 case REAL_CST:
898 case FIXED_CST:
899 case CONSTRUCTOR:
900 case SSA_NAME:
901 temp.op0 = ref;
902 break;
903 case ADDR_EXPR:
904 if (is_gimple_min_invariant (ref))
906 temp.op0 = ref;
907 break;
909 /* Fallthrough. */
910 /* These are only interesting for their operands, their
911 existence, and their type. They will never be the last
912 ref in the chain of references (IE they require an
913 operand), so we don't have to put anything
914 for op* as it will be handled by the iteration */
915 case REALPART_EXPR:
916 case VIEW_CONVERT_EXPR:
917 temp.off = 0;
918 break;
919 case IMAGPART_EXPR:
920 /* This is only interesting for its constant offset. */
921 temp.off = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (ref)));
922 break;
923 default:
924 gcc_unreachable ();
926 result->safe_push (temp);
928 if (REFERENCE_CLASS_P (ref)
929 || TREE_CODE (ref) == MODIFY_EXPR
930 || TREE_CODE (ref) == WITH_SIZE_EXPR
931 || (TREE_CODE (ref) == ADDR_EXPR
932 && !is_gimple_min_invariant (ref)))
933 ref = TREE_OPERAND (ref, 0);
934 else
935 ref = NULL_TREE;
939 /* Build a alias-oracle reference abstraction in *REF from the vn_reference
940 operands in *OPS, the reference alias set SET and the reference type TYPE.
941 Return true if something useful was produced. */
943 bool
944 ao_ref_init_from_vn_reference (ao_ref *ref,
945 alias_set_type set, tree type,
946 vec<vn_reference_op_s> ops)
948 vn_reference_op_t op;
949 unsigned i;
950 tree base = NULL_TREE;
951 tree *op0_p = &base;
952 HOST_WIDE_INT offset = 0;
953 HOST_WIDE_INT max_size;
954 HOST_WIDE_INT size = -1;
955 tree size_tree = NULL_TREE;
956 alias_set_type base_alias_set = -1;
958 /* First get the final access size from just the outermost expression. */
959 op = &ops[0];
960 if (op->opcode == COMPONENT_REF)
961 size_tree = DECL_SIZE (op->op0);
962 else if (op->opcode == BIT_FIELD_REF)
963 size_tree = op->op0;
964 else
966 enum machine_mode mode = TYPE_MODE (type);
967 if (mode == BLKmode)
968 size_tree = TYPE_SIZE (type);
969 else
970 size = GET_MODE_BITSIZE (mode);
972 if (size_tree != NULL_TREE)
974 if (!tree_fits_uhwi_p (size_tree))
975 size = -1;
976 else
977 size = tree_to_uhwi (size_tree);
980 /* Initially, maxsize is the same as the accessed element size.
981 In the following it will only grow (or become -1). */
982 max_size = size;
984 /* Compute cumulative bit-offset for nested component-refs and array-refs,
985 and find the ultimate containing object. */
986 FOR_EACH_VEC_ELT (ops, i, op)
988 switch (op->opcode)
990 /* These may be in the reference ops, but we cannot do anything
991 sensible with them here. */
992 case ADDR_EXPR:
993 /* Apart from ADDR_EXPR arguments to MEM_REF. */
994 if (base != NULL_TREE
995 && TREE_CODE (base) == MEM_REF
996 && op->op0
997 && DECL_P (TREE_OPERAND (op->op0, 0)))
999 vn_reference_op_t pop = &ops[i-1];
1000 base = TREE_OPERAND (op->op0, 0);
1001 if (pop->off == -1)
1003 max_size = -1;
1004 offset = 0;
1006 else
1007 offset += pop->off * BITS_PER_UNIT;
1008 op0_p = NULL;
1009 break;
1011 /* Fallthru. */
1012 case CALL_EXPR:
1013 return false;
1015 /* Record the base objects. */
1016 case MEM_REF:
1017 base_alias_set = get_deref_alias_set (op->op0);
1018 *op0_p = build2 (MEM_REF, op->type,
1019 NULL_TREE, op->op0);
1020 op0_p = &TREE_OPERAND (*op0_p, 0);
1021 break;
1023 case VAR_DECL:
1024 case PARM_DECL:
1025 case RESULT_DECL:
1026 case SSA_NAME:
1027 *op0_p = op->op0;
1028 op0_p = NULL;
1029 break;
1031 /* And now the usual component-reference style ops. */
1032 case BIT_FIELD_REF:
1033 offset += tree_to_shwi (op->op1);
1034 break;
1036 case COMPONENT_REF:
1038 tree field = op->op0;
1039 /* We do not have a complete COMPONENT_REF tree here so we
1040 cannot use component_ref_field_offset. Do the interesting
1041 parts manually. */
1043 if (op->op1
1044 || !tree_fits_uhwi_p (DECL_FIELD_OFFSET (field)))
1045 max_size = -1;
1046 else
1048 offset += (tree_to_uhwi (DECL_FIELD_OFFSET (field))
1049 * BITS_PER_UNIT);
1050 offset += TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (field));
1052 break;
1055 case ARRAY_RANGE_REF:
1056 case ARRAY_REF:
1057 /* We recorded the lower bound and the element size. */
1058 if (!tree_fits_shwi_p (op->op0)
1059 || !tree_fits_shwi_p (op->op1)
1060 || !tree_fits_shwi_p (op->op2))
1061 max_size = -1;
1062 else
1064 HOST_WIDE_INT hindex = tree_to_shwi (op->op0);
1065 hindex -= tree_to_shwi (op->op1);
1066 hindex *= tree_to_shwi (op->op2);
1067 hindex *= BITS_PER_UNIT;
1068 offset += hindex;
1070 break;
1072 case REALPART_EXPR:
1073 break;
1075 case IMAGPART_EXPR:
1076 offset += size;
1077 break;
1079 case VIEW_CONVERT_EXPR:
1080 break;
1082 case STRING_CST:
1083 case INTEGER_CST:
1084 case COMPLEX_CST:
1085 case VECTOR_CST:
1086 case REAL_CST:
1087 case CONSTRUCTOR:
1088 case CONST_DECL:
1089 return false;
1091 default:
1092 return false;
1096 if (base == NULL_TREE)
1097 return false;
1099 ref->ref = NULL_TREE;
1100 ref->base = base;
1101 ref->offset = offset;
1102 ref->size = size;
1103 ref->max_size = max_size;
1104 ref->ref_alias_set = set;
1105 if (base_alias_set != -1)
1106 ref->base_alias_set = base_alias_set;
1107 else
1108 ref->base_alias_set = get_alias_set (base);
1109 /* We discount volatiles from value-numbering elsewhere. */
1110 ref->volatile_p = false;
1112 return true;
1115 /* Copy the operations present in load/store/call REF into RESULT, a vector of
1116 vn_reference_op_s's. */
1118 void
1119 copy_reference_ops_from_call (gimple call,
1120 vec<vn_reference_op_s> *result)
1122 vn_reference_op_s temp;
1123 unsigned i;
1124 tree lhs = gimple_call_lhs (call);
1125 int lr;
1127 /* If 2 calls have a different non-ssa lhs, vdef value numbers should be
1128 different. By adding the lhs here in the vector, we ensure that the
1129 hashcode is different, guaranteeing a different value number. */
1130 if (lhs && TREE_CODE (lhs) != SSA_NAME)
1132 memset (&temp, 0, sizeof (temp));
1133 temp.opcode = MODIFY_EXPR;
1134 temp.type = TREE_TYPE (lhs);
1135 temp.op0 = lhs;
1136 temp.off = -1;
1137 result->safe_push (temp);
1140 /* Copy the type, opcode, function, static chain and EH region, if any. */
1141 memset (&temp, 0, sizeof (temp));
1142 temp.type = gimple_call_return_type (call);
1143 temp.opcode = CALL_EXPR;
1144 temp.op0 = gimple_call_fn (call);
1145 temp.op1 = gimple_call_chain (call);
1146 if (stmt_could_throw_p (call) && (lr = lookup_stmt_eh_lp (call)) > 0)
1147 temp.op2 = size_int (lr);
1148 temp.off = -1;
1149 result->safe_push (temp);
1151 /* Copy the call arguments. As they can be references as well,
1152 just chain them together. */
1153 for (i = 0; i < gimple_call_num_args (call); ++i)
1155 tree callarg = gimple_call_arg (call, i);
1156 copy_reference_ops_from_ref (callarg, result);
1160 /* Create a vector of vn_reference_op_s structures from CALL, a
1161 call statement. The vector is not shared. */
1163 static vec<vn_reference_op_s>
1164 create_reference_ops_from_call (gimple call)
1166 vec<vn_reference_op_s> result = vNULL;
1168 copy_reference_ops_from_call (call, &result);
1169 return result;
1172 /* Fold *& at position *I_P in a vn_reference_op_s vector *OPS. Updates
1173 *I_P to point to the last element of the replacement. */
1174 void
1175 vn_reference_fold_indirect (vec<vn_reference_op_s> *ops,
1176 unsigned int *i_p)
1178 unsigned int i = *i_p;
1179 vn_reference_op_t op = &(*ops)[i];
1180 vn_reference_op_t mem_op = &(*ops)[i - 1];
1181 tree addr_base;
1182 HOST_WIDE_INT addr_offset = 0;
1184 /* The only thing we have to do is from &OBJ.foo.bar add the offset
1185 from .foo.bar to the preceding MEM_REF offset and replace the
1186 address with &OBJ. */
1187 addr_base = get_addr_base_and_unit_offset (TREE_OPERAND (op->op0, 0),
1188 &addr_offset);
1189 gcc_checking_assert (addr_base && TREE_CODE (addr_base) != MEM_REF);
1190 if (addr_base != TREE_OPERAND (op->op0, 0))
1192 offset_int off = offset_int::from (mem_op->op0, SIGNED);
1193 off += addr_offset;
1194 mem_op->op0 = wide_int_to_tree (TREE_TYPE (mem_op->op0), off);
1195 op->op0 = build_fold_addr_expr (addr_base);
1196 if (tree_fits_shwi_p (mem_op->op0))
1197 mem_op->off = tree_to_shwi (mem_op->op0);
1198 else
1199 mem_op->off = -1;
1203 /* Fold *& at position *I_P in a vn_reference_op_s vector *OPS. Updates
1204 *I_P to point to the last element of the replacement. */
1205 static void
1206 vn_reference_maybe_forwprop_address (vec<vn_reference_op_s> *ops,
1207 unsigned int *i_p)
1209 unsigned int i = *i_p;
1210 vn_reference_op_t op = &(*ops)[i];
1211 vn_reference_op_t mem_op = &(*ops)[i - 1];
1212 gimple def_stmt;
1213 enum tree_code code;
1214 offset_int off;
1216 def_stmt = SSA_NAME_DEF_STMT (op->op0);
1217 if (!is_gimple_assign (def_stmt))
1218 return;
1220 code = gimple_assign_rhs_code (def_stmt);
1221 if (code != ADDR_EXPR
1222 && code != POINTER_PLUS_EXPR)
1223 return;
1225 off = offset_int::from (mem_op->op0, SIGNED);
1227 /* The only thing we have to do is from &OBJ.foo.bar add the offset
1228 from .foo.bar to the preceding MEM_REF offset and replace the
1229 address with &OBJ. */
1230 if (code == ADDR_EXPR)
1232 tree addr, addr_base;
1233 HOST_WIDE_INT addr_offset;
1235 addr = gimple_assign_rhs1 (def_stmt);
1236 addr_base = get_addr_base_and_unit_offset (TREE_OPERAND (addr, 0),
1237 &addr_offset);
1238 if (!addr_base
1239 || TREE_CODE (addr_base) != MEM_REF)
1240 return;
1242 off += addr_offset;
1243 off += mem_ref_offset (addr_base);
1244 op->op0 = TREE_OPERAND (addr_base, 0);
1246 else
1248 tree ptr, ptroff;
1249 ptr = gimple_assign_rhs1 (def_stmt);
1250 ptroff = gimple_assign_rhs2 (def_stmt);
1251 if (TREE_CODE (ptr) != SSA_NAME
1252 || TREE_CODE (ptroff) != INTEGER_CST)
1253 return;
1255 off += wi::to_offset (ptroff);
1256 op->op0 = ptr;
1259 mem_op->op0 = wide_int_to_tree (TREE_TYPE (mem_op->op0), off);
1260 if (tree_fits_shwi_p (mem_op->op0))
1261 mem_op->off = tree_to_shwi (mem_op->op0);
1262 else
1263 mem_op->off = -1;
1264 if (TREE_CODE (op->op0) == SSA_NAME)
1265 op->op0 = SSA_VAL (op->op0);
1266 if (TREE_CODE (op->op0) != SSA_NAME)
1267 op->opcode = TREE_CODE (op->op0);
1269 /* And recurse. */
1270 if (TREE_CODE (op->op0) == SSA_NAME)
1271 vn_reference_maybe_forwprop_address (ops, i_p);
1272 else if (TREE_CODE (op->op0) == ADDR_EXPR)
1273 vn_reference_fold_indirect (ops, i_p);
1276 /* Optimize the reference REF to a constant if possible or return
1277 NULL_TREE if not. */
1279 tree
1280 fully_constant_vn_reference_p (vn_reference_t ref)
1282 vec<vn_reference_op_s> operands = ref->operands;
1283 vn_reference_op_t op;
1285 /* Try to simplify the translated expression if it is
1286 a call to a builtin function with at most two arguments. */
1287 op = &operands[0];
1288 if (op->opcode == CALL_EXPR
1289 && TREE_CODE (op->op0) == ADDR_EXPR
1290 && TREE_CODE (TREE_OPERAND (op->op0, 0)) == FUNCTION_DECL
1291 && DECL_BUILT_IN (TREE_OPERAND (op->op0, 0))
1292 && operands.length () >= 2
1293 && operands.length () <= 3)
1295 vn_reference_op_t arg0, arg1 = NULL;
1296 bool anyconst = false;
1297 arg0 = &operands[1];
1298 if (operands.length () > 2)
1299 arg1 = &operands[2];
1300 if (TREE_CODE_CLASS (arg0->opcode) == tcc_constant
1301 || (arg0->opcode == ADDR_EXPR
1302 && is_gimple_min_invariant (arg0->op0)))
1303 anyconst = true;
1304 if (arg1
1305 && (TREE_CODE_CLASS (arg1->opcode) == tcc_constant
1306 || (arg1->opcode == ADDR_EXPR
1307 && is_gimple_min_invariant (arg1->op0))))
1308 anyconst = true;
1309 if (anyconst)
1311 tree folded = build_call_expr (TREE_OPERAND (op->op0, 0),
1312 arg1 ? 2 : 1,
1313 arg0->op0,
1314 arg1 ? arg1->op0 : NULL);
1315 if (folded
1316 && TREE_CODE (folded) == NOP_EXPR)
1317 folded = TREE_OPERAND (folded, 0);
1318 if (folded
1319 && is_gimple_min_invariant (folded))
1320 return folded;
1324 /* Simplify reads from constant strings. */
1325 else if (op->opcode == ARRAY_REF
1326 && TREE_CODE (op->op0) == INTEGER_CST
1327 && integer_zerop (op->op1)
1328 && operands.length () == 2)
1330 vn_reference_op_t arg0;
1331 arg0 = &operands[1];
1332 if (arg0->opcode == STRING_CST
1333 && (TYPE_MODE (op->type)
1334 == TYPE_MODE (TREE_TYPE (TREE_TYPE (arg0->op0))))
1335 && GET_MODE_CLASS (TYPE_MODE (op->type)) == MODE_INT
1336 && GET_MODE_SIZE (TYPE_MODE (op->type)) == 1
1337 && tree_int_cst_sgn (op->op0) >= 0
1338 && compare_tree_int (op->op0, TREE_STRING_LENGTH (arg0->op0)) < 0)
1339 return build_int_cst_type (op->type,
1340 (TREE_STRING_POINTER (arg0->op0)
1341 [TREE_INT_CST_LOW (op->op0)]));
1344 return NULL_TREE;
1347 /* Transform any SSA_NAME's in a vector of vn_reference_op_s
1348 structures into their value numbers. This is done in-place, and
1349 the vector passed in is returned. *VALUEIZED_ANYTHING will specify
1350 whether any operands were valueized. */
1352 static vec<vn_reference_op_s>
1353 valueize_refs_1 (vec<vn_reference_op_s> orig, bool *valueized_anything)
1355 vn_reference_op_t vro;
1356 unsigned int i;
1358 *valueized_anything = false;
1360 FOR_EACH_VEC_ELT (orig, i, vro)
1362 if (vro->opcode == SSA_NAME
1363 || (vro->op0 && TREE_CODE (vro->op0) == SSA_NAME))
1365 tree tem = SSA_VAL (vro->op0);
1366 if (tem != vro->op0)
1368 *valueized_anything = true;
1369 vro->op0 = tem;
1371 /* If it transforms from an SSA_NAME to a constant, update
1372 the opcode. */
1373 if (TREE_CODE (vro->op0) != SSA_NAME && vro->opcode == SSA_NAME)
1374 vro->opcode = TREE_CODE (vro->op0);
1376 if (vro->op1 && TREE_CODE (vro->op1) == SSA_NAME)
1378 tree tem = SSA_VAL (vro->op1);
1379 if (tem != vro->op1)
1381 *valueized_anything = true;
1382 vro->op1 = tem;
1385 if (vro->op2 && TREE_CODE (vro->op2) == SSA_NAME)
1387 tree tem = SSA_VAL (vro->op2);
1388 if (tem != vro->op2)
1390 *valueized_anything = true;
1391 vro->op2 = tem;
1394 /* If it transforms from an SSA_NAME to an address, fold with
1395 a preceding indirect reference. */
1396 if (i > 0
1397 && vro->op0
1398 && TREE_CODE (vro->op0) == ADDR_EXPR
1399 && orig[i - 1].opcode == MEM_REF)
1400 vn_reference_fold_indirect (&orig, &i);
1401 else if (i > 0
1402 && vro->opcode == SSA_NAME
1403 && orig[i - 1].opcode == MEM_REF)
1404 vn_reference_maybe_forwprop_address (&orig, &i);
1405 /* If it transforms a non-constant ARRAY_REF into a constant
1406 one, adjust the constant offset. */
1407 else if (vro->opcode == ARRAY_REF
1408 && vro->off == -1
1409 && TREE_CODE (vro->op0) == INTEGER_CST
1410 && TREE_CODE (vro->op1) == INTEGER_CST
1411 && TREE_CODE (vro->op2) == INTEGER_CST)
1413 offset_int off = ((wi::to_offset (vro->op0)
1414 - wi::to_offset (vro->op1))
1415 * wi::to_offset (vro->op2));
1416 if (wi::fits_shwi_p (off))
1417 vro->off = off.to_shwi ();
1421 return orig;
1424 static vec<vn_reference_op_s>
1425 valueize_refs (vec<vn_reference_op_s> orig)
1427 bool tem;
1428 return valueize_refs_1 (orig, &tem);
1431 static vec<vn_reference_op_s> shared_lookup_references;
1433 /* Create a vector of vn_reference_op_s structures from REF, a
1434 REFERENCE_CLASS_P tree. The vector is shared among all callers of
1435 this function. *VALUEIZED_ANYTHING will specify whether any
1436 operands were valueized. */
1438 static vec<vn_reference_op_s>
1439 valueize_shared_reference_ops_from_ref (tree ref, bool *valueized_anything)
1441 if (!ref)
1442 return vNULL;
1443 shared_lookup_references.truncate (0);
1444 copy_reference_ops_from_ref (ref, &shared_lookup_references);
1445 shared_lookup_references = valueize_refs_1 (shared_lookup_references,
1446 valueized_anything);
1447 return shared_lookup_references;
1450 /* Create a vector of vn_reference_op_s structures from CALL, a
1451 call statement. The vector is shared among all callers of
1452 this function. */
1454 static vec<vn_reference_op_s>
1455 valueize_shared_reference_ops_from_call (gimple call)
1457 if (!call)
1458 return vNULL;
1459 shared_lookup_references.truncate (0);
1460 copy_reference_ops_from_call (call, &shared_lookup_references);
1461 shared_lookup_references = valueize_refs (shared_lookup_references);
1462 return shared_lookup_references;
1465 /* Lookup a SCCVN reference operation VR in the current hash table.
1466 Returns the resulting value number if it exists in the hash table,
1467 NULL_TREE otherwise. VNRESULT will be filled in with the actual
1468 vn_reference_t stored in the hashtable if something is found. */
1470 static tree
1471 vn_reference_lookup_1 (vn_reference_t vr, vn_reference_t *vnresult)
1473 vn_reference_s **slot;
1474 hashval_t hash;
1476 hash = vr->hashcode;
1477 slot = current_info->references.find_slot_with_hash (vr, hash, NO_INSERT);
1478 if (!slot && current_info == optimistic_info)
1479 slot = valid_info->references.find_slot_with_hash (vr, hash, NO_INSERT);
1480 if (slot)
1482 if (vnresult)
1483 *vnresult = (vn_reference_t)*slot;
1484 return ((vn_reference_t)*slot)->result;
1487 return NULL_TREE;
1490 static tree *last_vuse_ptr;
1491 static vn_lookup_kind vn_walk_kind;
1492 static vn_lookup_kind default_vn_walk_kind;
1494 /* Callback for walk_non_aliased_vuses. Adjusts the vn_reference_t VR_
1495 with the current VUSE and performs the expression lookup. */
1497 static void *
1498 vn_reference_lookup_2 (ao_ref *op ATTRIBUTE_UNUSED, tree vuse,
1499 unsigned int cnt, void *vr_)
1501 vn_reference_t vr = (vn_reference_t)vr_;
1502 vn_reference_s **slot;
1503 hashval_t hash;
1505 /* This bounds the stmt walks we perform on reference lookups
1506 to O(1) instead of O(N) where N is the number of dominating
1507 stores. */
1508 if (cnt > (unsigned) PARAM_VALUE (PARAM_SCCVN_MAX_ALIAS_QUERIES_PER_ACCESS))
1509 return (void *)-1;
1511 if (last_vuse_ptr)
1512 *last_vuse_ptr = vuse;
1514 /* Fixup vuse and hash. */
1515 if (vr->vuse)
1516 vr->hashcode = vr->hashcode - SSA_NAME_VERSION (vr->vuse);
1517 vr->vuse = vuse_ssa_val (vuse);
1518 if (vr->vuse)
1519 vr->hashcode = vr->hashcode + SSA_NAME_VERSION (vr->vuse);
1521 hash = vr->hashcode;
1522 slot = current_info->references.find_slot_with_hash (vr, hash, NO_INSERT);
1523 if (!slot && current_info == optimistic_info)
1524 slot = valid_info->references.find_slot_with_hash (vr, hash, NO_INSERT);
1525 if (slot)
1526 return *slot;
1528 return NULL;
1531 /* Lookup an existing or insert a new vn_reference entry into the
1532 value table for the VUSE, SET, TYPE, OPERANDS reference which
1533 has the value VALUE which is either a constant or an SSA name. */
1535 static vn_reference_t
1536 vn_reference_lookup_or_insert_for_pieces (tree vuse,
1537 alias_set_type set,
1538 tree type,
1539 vec<vn_reference_op_s,
1540 va_heap> operands,
1541 tree value)
1543 struct vn_reference_s vr1;
1544 vn_reference_t result;
1545 unsigned value_id;
1546 vr1.vuse = vuse;
1547 vr1.operands = operands;
1548 vr1.type = type;
1549 vr1.set = set;
1550 vr1.hashcode = vn_reference_compute_hash (&vr1);
1551 if (vn_reference_lookup_1 (&vr1, &result))
1552 return result;
1553 if (TREE_CODE (value) == SSA_NAME)
1554 value_id = VN_INFO (value)->value_id;
1555 else
1556 value_id = get_or_alloc_constant_value_id (value);
1557 return vn_reference_insert_pieces (vuse, set, type,
1558 operands.copy (), value, value_id);
1561 /* Callback for walk_non_aliased_vuses. Tries to perform a lookup
1562 from the statement defining VUSE and if not successful tries to
1563 translate *REFP and VR_ through an aggregate copy at the definition
1564 of VUSE. */
1566 static void *
1567 vn_reference_lookup_3 (ao_ref *ref, tree vuse, void *vr_,
1568 bool disambiguate_only)
1570 vn_reference_t vr = (vn_reference_t)vr_;
1571 gimple def_stmt = SSA_NAME_DEF_STMT (vuse);
1572 tree base;
1573 HOST_WIDE_INT offset, maxsize;
1574 static vec<vn_reference_op_s>
1575 lhs_ops = vNULL;
1576 ao_ref lhs_ref;
1577 bool lhs_ref_ok = false;
1579 /* First try to disambiguate after value-replacing in the definitions LHS. */
1580 if (is_gimple_assign (def_stmt))
1582 vec<vn_reference_op_s> tem;
1583 tree lhs = gimple_assign_lhs (def_stmt);
1584 bool valueized_anything = false;
1585 /* Avoid re-allocation overhead. */
1586 lhs_ops.truncate (0);
1587 copy_reference_ops_from_ref (lhs, &lhs_ops);
1588 tem = lhs_ops;
1589 lhs_ops = valueize_refs_1 (lhs_ops, &valueized_anything);
1590 gcc_assert (lhs_ops == tem);
1591 if (valueized_anything)
1593 lhs_ref_ok = ao_ref_init_from_vn_reference (&lhs_ref,
1594 get_alias_set (lhs),
1595 TREE_TYPE (lhs), lhs_ops);
1596 if (lhs_ref_ok
1597 && !refs_may_alias_p_1 (ref, &lhs_ref, true))
1598 return NULL;
1600 else
1602 ao_ref_init (&lhs_ref, lhs);
1603 lhs_ref_ok = true;
1606 else if (gimple_call_builtin_p (def_stmt, BUILT_IN_NORMAL)
1607 && gimple_call_num_args (def_stmt) <= 4)
1609 /* For builtin calls valueize its arguments and call the
1610 alias oracle again. Valueization may improve points-to
1611 info of pointers and constify size and position arguments.
1612 Originally this was motivated by PR61034 which has
1613 conditional calls to free falsely clobbering ref because
1614 of imprecise points-to info of the argument. */
1615 tree oldargs[4];
1616 bool valueized_anything = false;
1617 for (unsigned i = 0; i < gimple_call_num_args (def_stmt); ++i)
1619 oldargs[i] = gimple_call_arg (def_stmt, i);
1620 if (TREE_CODE (oldargs[i]) == SSA_NAME
1621 && VN_INFO (oldargs[i])->valnum != oldargs[i])
1623 gimple_call_set_arg (def_stmt, i, VN_INFO (oldargs[i])->valnum);
1624 valueized_anything = true;
1627 if (valueized_anything)
1629 bool res = call_may_clobber_ref_p_1 (def_stmt, ref);
1630 for (unsigned i = 0; i < gimple_call_num_args (def_stmt); ++i)
1631 gimple_call_set_arg (def_stmt, i, oldargs[i]);
1632 if (!res)
1633 return NULL;
1637 if (disambiguate_only)
1638 return (void *)-1;
1640 base = ao_ref_base (ref);
1641 offset = ref->offset;
1642 maxsize = ref->max_size;
1644 /* If we cannot constrain the size of the reference we cannot
1645 test if anything kills it. */
1646 if (maxsize == -1)
1647 return (void *)-1;
1649 /* We can't deduce anything useful from clobbers. */
1650 if (gimple_clobber_p (def_stmt))
1651 return (void *)-1;
1653 /* def_stmt may-defs *ref. See if we can derive a value for *ref
1654 from that definition.
1655 1) Memset. */
1656 if (is_gimple_reg_type (vr->type)
1657 && gimple_call_builtin_p (def_stmt, BUILT_IN_MEMSET)
1658 && integer_zerop (gimple_call_arg (def_stmt, 1))
1659 && tree_fits_uhwi_p (gimple_call_arg (def_stmt, 2))
1660 && TREE_CODE (gimple_call_arg (def_stmt, 0)) == ADDR_EXPR)
1662 tree ref2 = TREE_OPERAND (gimple_call_arg (def_stmt, 0), 0);
1663 tree base2;
1664 HOST_WIDE_INT offset2, size2, maxsize2;
1665 base2 = get_ref_base_and_extent (ref2, &offset2, &size2, &maxsize2);
1666 size2 = tree_to_uhwi (gimple_call_arg (def_stmt, 2)) * 8;
1667 if ((unsigned HOST_WIDE_INT)size2 / 8
1668 == tree_to_uhwi (gimple_call_arg (def_stmt, 2))
1669 && maxsize2 != -1
1670 && operand_equal_p (base, base2, 0)
1671 && offset2 <= offset
1672 && offset2 + size2 >= offset + maxsize)
1674 tree val = build_zero_cst (vr->type);
1675 return vn_reference_lookup_or_insert_for_pieces
1676 (vuse, vr->set, vr->type, vr->operands, val);
1680 /* 2) Assignment from an empty CONSTRUCTOR. */
1681 else if (is_gimple_reg_type (vr->type)
1682 && gimple_assign_single_p (def_stmt)
1683 && gimple_assign_rhs_code (def_stmt) == CONSTRUCTOR
1684 && CONSTRUCTOR_NELTS (gimple_assign_rhs1 (def_stmt)) == 0)
1686 tree base2;
1687 HOST_WIDE_INT offset2, size2, maxsize2;
1688 base2 = get_ref_base_and_extent (gimple_assign_lhs (def_stmt),
1689 &offset2, &size2, &maxsize2);
1690 if (maxsize2 != -1
1691 && operand_equal_p (base, base2, 0)
1692 && offset2 <= offset
1693 && offset2 + size2 >= offset + maxsize)
1695 tree val = build_zero_cst (vr->type);
1696 return vn_reference_lookup_or_insert_for_pieces
1697 (vuse, vr->set, vr->type, vr->operands, val);
1701 /* 3) Assignment from a constant. We can use folds native encode/interpret
1702 routines to extract the assigned bits. */
1703 else if (vn_walk_kind == VN_WALKREWRITE
1704 && CHAR_BIT == 8 && BITS_PER_UNIT == 8
1705 && ref->size == maxsize
1706 && maxsize % BITS_PER_UNIT == 0
1707 && offset % BITS_PER_UNIT == 0
1708 && is_gimple_reg_type (vr->type)
1709 && gimple_assign_single_p (def_stmt)
1710 && is_gimple_min_invariant (gimple_assign_rhs1 (def_stmt)))
1712 tree base2;
1713 HOST_WIDE_INT offset2, size2, maxsize2;
1714 base2 = get_ref_base_and_extent (gimple_assign_lhs (def_stmt),
1715 &offset2, &size2, &maxsize2);
1716 if (maxsize2 != -1
1717 && maxsize2 == size2
1718 && size2 % BITS_PER_UNIT == 0
1719 && offset2 % BITS_PER_UNIT == 0
1720 && operand_equal_p (base, base2, 0)
1721 && offset2 <= offset
1722 && offset2 + size2 >= offset + maxsize)
1724 /* We support up to 512-bit values (for V8DFmode). */
1725 unsigned char buffer[64];
1726 int len;
1728 len = native_encode_expr (gimple_assign_rhs1 (def_stmt),
1729 buffer, sizeof (buffer));
1730 if (len > 0)
1732 tree val = native_interpret_expr (vr->type,
1733 buffer
1734 + ((offset - offset2)
1735 / BITS_PER_UNIT),
1736 ref->size / BITS_PER_UNIT);
1737 if (val)
1738 return vn_reference_lookup_or_insert_for_pieces
1739 (vuse, vr->set, vr->type, vr->operands, val);
1744 /* 4) Assignment from an SSA name which definition we may be able
1745 to access pieces from. */
1746 else if (ref->size == maxsize
1747 && is_gimple_reg_type (vr->type)
1748 && gimple_assign_single_p (def_stmt)
1749 && TREE_CODE (gimple_assign_rhs1 (def_stmt)) == SSA_NAME)
1751 tree rhs1 = gimple_assign_rhs1 (def_stmt);
1752 gimple def_stmt2 = SSA_NAME_DEF_STMT (rhs1);
1753 if (is_gimple_assign (def_stmt2)
1754 && (gimple_assign_rhs_code (def_stmt2) == COMPLEX_EXPR
1755 || gimple_assign_rhs_code (def_stmt2) == CONSTRUCTOR)
1756 && types_compatible_p (vr->type, TREE_TYPE (TREE_TYPE (rhs1))))
1758 tree base2;
1759 HOST_WIDE_INT offset2, size2, maxsize2, off;
1760 base2 = get_ref_base_and_extent (gimple_assign_lhs (def_stmt),
1761 &offset2, &size2, &maxsize2);
1762 off = offset - offset2;
1763 if (maxsize2 != -1
1764 && maxsize2 == size2
1765 && operand_equal_p (base, base2, 0)
1766 && offset2 <= offset
1767 && offset2 + size2 >= offset + maxsize)
1769 tree val = NULL_TREE;
1770 HOST_WIDE_INT elsz
1771 = TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (TREE_TYPE (rhs1))));
1772 if (gimple_assign_rhs_code (def_stmt2) == COMPLEX_EXPR)
1774 if (off == 0)
1775 val = gimple_assign_rhs1 (def_stmt2);
1776 else if (off == elsz)
1777 val = gimple_assign_rhs2 (def_stmt2);
1779 else if (gimple_assign_rhs_code (def_stmt2) == CONSTRUCTOR
1780 && off % elsz == 0)
1782 tree ctor = gimple_assign_rhs1 (def_stmt2);
1783 unsigned i = off / elsz;
1784 if (i < CONSTRUCTOR_NELTS (ctor))
1786 constructor_elt *elt = CONSTRUCTOR_ELT (ctor, i);
1787 if (TREE_CODE (TREE_TYPE (rhs1)) == VECTOR_TYPE)
1789 if (TREE_CODE (TREE_TYPE (elt->value))
1790 != VECTOR_TYPE)
1791 val = elt->value;
1795 if (val)
1796 return vn_reference_lookup_or_insert_for_pieces
1797 (vuse, vr->set, vr->type, vr->operands, val);
1802 /* 5) For aggregate copies translate the reference through them if
1803 the copy kills ref. */
1804 else if (vn_walk_kind == VN_WALKREWRITE
1805 && gimple_assign_single_p (def_stmt)
1806 && (DECL_P (gimple_assign_rhs1 (def_stmt))
1807 || TREE_CODE (gimple_assign_rhs1 (def_stmt)) == MEM_REF
1808 || handled_component_p (gimple_assign_rhs1 (def_stmt))))
1810 tree base2;
1811 HOST_WIDE_INT offset2, size2, maxsize2;
1812 int i, j;
1813 auto_vec<vn_reference_op_s> rhs;
1814 vn_reference_op_t vro;
1815 ao_ref r;
1817 if (!lhs_ref_ok)
1818 return (void *)-1;
1820 /* See if the assignment kills REF. */
1821 base2 = ao_ref_base (&lhs_ref);
1822 offset2 = lhs_ref.offset;
1823 size2 = lhs_ref.size;
1824 maxsize2 = lhs_ref.max_size;
1825 if (maxsize2 == -1
1826 || (base != base2 && !operand_equal_p (base, base2, 0))
1827 || offset2 > offset
1828 || offset2 + size2 < offset + maxsize)
1829 return (void *)-1;
1831 /* Find the common base of ref and the lhs. lhs_ops already
1832 contains valueized operands for the lhs. */
1833 i = vr->operands.length () - 1;
1834 j = lhs_ops.length () - 1;
1835 while (j >= 0 && i >= 0
1836 && vn_reference_op_eq (&vr->operands[i], &lhs_ops[j]))
1838 i--;
1839 j--;
1842 /* ??? The innermost op should always be a MEM_REF and we already
1843 checked that the assignment to the lhs kills vr. Thus for
1844 aggregate copies using char[] types the vn_reference_op_eq
1845 may fail when comparing types for compatibility. But we really
1846 don't care here - further lookups with the rewritten operands
1847 will simply fail if we messed up types too badly. */
1848 if (j == 0 && i >= 0
1849 && lhs_ops[0].opcode == MEM_REF
1850 && lhs_ops[0].off != -1
1851 && (lhs_ops[0].off == vr->operands[i].off))
1852 i--, j--;
1854 /* i now points to the first additional op.
1855 ??? LHS may not be completely contained in VR, one or more
1856 VIEW_CONVERT_EXPRs could be in its way. We could at least
1857 try handling outermost VIEW_CONVERT_EXPRs. */
1858 if (j != -1)
1859 return (void *)-1;
1861 /* Now re-write REF to be based on the rhs of the assignment. */
1862 copy_reference_ops_from_ref (gimple_assign_rhs1 (def_stmt), &rhs);
1863 /* We need to pre-pend vr->operands[0..i] to rhs. */
1864 if (i + 1 + rhs.length () > vr->operands.length ())
1866 vec<vn_reference_op_s> old = vr->operands;
1867 vr->operands.safe_grow (i + 1 + rhs.length ());
1868 if (old == shared_lookup_references
1869 && vr->operands != old)
1870 shared_lookup_references = vNULL;
1872 else
1873 vr->operands.truncate (i + 1 + rhs.length ());
1874 FOR_EACH_VEC_ELT (rhs, j, vro)
1875 vr->operands[i + 1 + j] = *vro;
1876 vr->operands = valueize_refs (vr->operands);
1877 vr->hashcode = vn_reference_compute_hash (vr);
1879 /* Adjust *ref from the new operands. */
1880 if (!ao_ref_init_from_vn_reference (&r, vr->set, vr->type, vr->operands))
1881 return (void *)-1;
1882 /* This can happen with bitfields. */
1883 if (ref->size != r.size)
1884 return (void *)-1;
1885 *ref = r;
1887 /* Do not update last seen VUSE after translating. */
1888 last_vuse_ptr = NULL;
1890 /* Keep looking for the adjusted *REF / VR pair. */
1891 return NULL;
1894 /* 6) For memcpy copies translate the reference through them if
1895 the copy kills ref. */
1896 else if (vn_walk_kind == VN_WALKREWRITE
1897 && is_gimple_reg_type (vr->type)
1898 /* ??? Handle BCOPY as well. */
1899 && (gimple_call_builtin_p (def_stmt, BUILT_IN_MEMCPY)
1900 || gimple_call_builtin_p (def_stmt, BUILT_IN_MEMPCPY)
1901 || gimple_call_builtin_p (def_stmt, BUILT_IN_MEMMOVE))
1902 && (TREE_CODE (gimple_call_arg (def_stmt, 0)) == ADDR_EXPR
1903 || TREE_CODE (gimple_call_arg (def_stmt, 0)) == SSA_NAME)
1904 && (TREE_CODE (gimple_call_arg (def_stmt, 1)) == ADDR_EXPR
1905 || TREE_CODE (gimple_call_arg (def_stmt, 1)) == SSA_NAME)
1906 && tree_fits_uhwi_p (gimple_call_arg (def_stmt, 2)))
1908 tree lhs, rhs;
1909 ao_ref r;
1910 HOST_WIDE_INT rhs_offset, copy_size, lhs_offset;
1911 vn_reference_op_s op;
1912 HOST_WIDE_INT at;
1915 /* Only handle non-variable, addressable refs. */
1916 if (ref->size != maxsize
1917 || offset % BITS_PER_UNIT != 0
1918 || ref->size % BITS_PER_UNIT != 0)
1919 return (void *)-1;
1921 /* Extract a pointer base and an offset for the destination. */
1922 lhs = gimple_call_arg (def_stmt, 0);
1923 lhs_offset = 0;
1924 if (TREE_CODE (lhs) == SSA_NAME)
1925 lhs = SSA_VAL (lhs);
1926 if (TREE_CODE (lhs) == ADDR_EXPR)
1928 tree tem = get_addr_base_and_unit_offset (TREE_OPERAND (lhs, 0),
1929 &lhs_offset);
1930 if (!tem)
1931 return (void *)-1;
1932 if (TREE_CODE (tem) == MEM_REF
1933 && tree_fits_uhwi_p (TREE_OPERAND (tem, 1)))
1935 lhs = TREE_OPERAND (tem, 0);
1936 lhs_offset += tree_to_uhwi (TREE_OPERAND (tem, 1));
1938 else if (DECL_P (tem))
1939 lhs = build_fold_addr_expr (tem);
1940 else
1941 return (void *)-1;
1943 if (TREE_CODE (lhs) != SSA_NAME
1944 && TREE_CODE (lhs) != ADDR_EXPR)
1945 return (void *)-1;
1947 /* Extract a pointer base and an offset for the source. */
1948 rhs = gimple_call_arg (def_stmt, 1);
1949 rhs_offset = 0;
1950 if (TREE_CODE (rhs) == SSA_NAME)
1951 rhs = SSA_VAL (rhs);
1952 if (TREE_CODE (rhs) == ADDR_EXPR)
1954 tree tem = get_addr_base_and_unit_offset (TREE_OPERAND (rhs, 0),
1955 &rhs_offset);
1956 if (!tem)
1957 return (void *)-1;
1958 if (TREE_CODE (tem) == MEM_REF
1959 && tree_fits_uhwi_p (TREE_OPERAND (tem, 1)))
1961 rhs = TREE_OPERAND (tem, 0);
1962 rhs_offset += tree_to_uhwi (TREE_OPERAND (tem, 1));
1964 else if (DECL_P (tem))
1965 rhs = build_fold_addr_expr (tem);
1966 else
1967 return (void *)-1;
1969 if (TREE_CODE (rhs) != SSA_NAME
1970 && TREE_CODE (rhs) != ADDR_EXPR)
1971 return (void *)-1;
1973 copy_size = tree_to_uhwi (gimple_call_arg (def_stmt, 2));
1975 /* The bases of the destination and the references have to agree. */
1976 if ((TREE_CODE (base) != MEM_REF
1977 && !DECL_P (base))
1978 || (TREE_CODE (base) == MEM_REF
1979 && (TREE_OPERAND (base, 0) != lhs
1980 || !tree_fits_uhwi_p (TREE_OPERAND (base, 1))))
1981 || (DECL_P (base)
1982 && (TREE_CODE (lhs) != ADDR_EXPR
1983 || TREE_OPERAND (lhs, 0) != base)))
1984 return (void *)-1;
1986 /* And the access has to be contained within the memcpy destination. */
1987 at = offset / BITS_PER_UNIT;
1988 if (TREE_CODE (base) == MEM_REF)
1989 at += tree_to_uhwi (TREE_OPERAND (base, 1));
1990 if (lhs_offset > at
1991 || lhs_offset + copy_size < at + maxsize / BITS_PER_UNIT)
1992 return (void *)-1;
1994 /* Make room for 2 operands in the new reference. */
1995 if (vr->operands.length () < 2)
1997 vec<vn_reference_op_s> old = vr->operands;
1998 vr->operands.safe_grow_cleared (2);
1999 if (old == shared_lookup_references
2000 && vr->operands != old)
2001 shared_lookup_references.create (0);
2003 else
2004 vr->operands.truncate (2);
2006 /* The looked-through reference is a simple MEM_REF. */
2007 memset (&op, 0, sizeof (op));
2008 op.type = vr->type;
2009 op.opcode = MEM_REF;
2010 op.op0 = build_int_cst (ptr_type_node, at - rhs_offset);
2011 op.off = at - lhs_offset + rhs_offset;
2012 vr->operands[0] = op;
2013 op.type = TREE_TYPE (rhs);
2014 op.opcode = TREE_CODE (rhs);
2015 op.op0 = rhs;
2016 op.off = -1;
2017 vr->operands[1] = op;
2018 vr->hashcode = vn_reference_compute_hash (vr);
2020 /* Adjust *ref from the new operands. */
2021 if (!ao_ref_init_from_vn_reference (&r, vr->set, vr->type, vr->operands))
2022 return (void *)-1;
2023 /* This can happen with bitfields. */
2024 if (ref->size != r.size)
2025 return (void *)-1;
2026 *ref = r;
2028 /* Do not update last seen VUSE after translating. */
2029 last_vuse_ptr = NULL;
2031 /* Keep looking for the adjusted *REF / VR pair. */
2032 return NULL;
2035 /* Bail out and stop walking. */
2036 return (void *)-1;
2039 /* Lookup a reference operation by it's parts, in the current hash table.
2040 Returns the resulting value number if it exists in the hash table,
2041 NULL_TREE otherwise. VNRESULT will be filled in with the actual
2042 vn_reference_t stored in the hashtable if something is found. */
2044 tree
2045 vn_reference_lookup_pieces (tree vuse, alias_set_type set, tree type,
2046 vec<vn_reference_op_s> operands,
2047 vn_reference_t *vnresult, vn_lookup_kind kind)
2049 struct vn_reference_s vr1;
2050 vn_reference_t tmp;
2051 tree cst;
2053 if (!vnresult)
2054 vnresult = &tmp;
2055 *vnresult = NULL;
2057 vr1.vuse = vuse_ssa_val (vuse);
2058 shared_lookup_references.truncate (0);
2059 shared_lookup_references.safe_grow (operands.length ());
2060 memcpy (shared_lookup_references.address (),
2061 operands.address (),
2062 sizeof (vn_reference_op_s)
2063 * operands.length ());
2064 vr1.operands = operands = shared_lookup_references
2065 = valueize_refs (shared_lookup_references);
2066 vr1.type = type;
2067 vr1.set = set;
2068 vr1.hashcode = vn_reference_compute_hash (&vr1);
2069 if ((cst = fully_constant_vn_reference_p (&vr1)))
2070 return cst;
2072 vn_reference_lookup_1 (&vr1, vnresult);
2073 if (!*vnresult
2074 && kind != VN_NOWALK
2075 && vr1.vuse)
2077 ao_ref r;
2078 vn_walk_kind = kind;
2079 if (ao_ref_init_from_vn_reference (&r, set, type, vr1.operands))
2080 *vnresult =
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 ();
2088 if (*vnresult)
2089 return (*vnresult)->result;
2091 return NULL_TREE;
2094 /* Lookup OP in the current hash table, and return the resulting value
2095 number if it exists in the hash table. Return NULL_TREE if it does
2096 not exist in the hash table or if the result field of the structure
2097 was NULL.. VNRESULT will be filled in with the vn_reference_t
2098 stored in the hashtable if one exists. */
2100 tree
2101 vn_reference_lookup (tree op, tree vuse, vn_lookup_kind kind,
2102 vn_reference_t *vnresult)
2104 vec<vn_reference_op_s> operands;
2105 struct vn_reference_s vr1;
2106 tree cst;
2107 bool valuezied_anything;
2109 if (vnresult)
2110 *vnresult = NULL;
2112 vr1.vuse = vuse_ssa_val (vuse);
2113 vr1.operands = operands
2114 = valueize_shared_reference_ops_from_ref (op, &valuezied_anything);
2115 vr1.type = TREE_TYPE (op);
2116 vr1.set = get_alias_set (op);
2117 vr1.hashcode = vn_reference_compute_hash (&vr1);
2118 if ((cst = fully_constant_vn_reference_p (&vr1)))
2119 return cst;
2121 if (kind != VN_NOWALK
2122 && vr1.vuse)
2124 vn_reference_t wvnresult;
2125 ao_ref r;
2126 /* Make sure to use a valueized reference if we valueized anything.
2127 Otherwise preserve the full reference for advanced TBAA. */
2128 if (!valuezied_anything
2129 || !ao_ref_init_from_vn_reference (&r, vr1.set, vr1.type,
2130 vr1.operands))
2131 ao_ref_init (&r, op);
2132 vn_walk_kind = kind;
2133 wvnresult =
2134 (vn_reference_t)walk_non_aliased_vuses (&r, vr1.vuse,
2135 vn_reference_lookup_2,
2136 vn_reference_lookup_3, &vr1);
2137 if (vr1.operands != operands)
2138 vr1.operands.release ();
2139 if (wvnresult)
2141 if (vnresult)
2142 *vnresult = wvnresult;
2143 return wvnresult->result;
2146 return NULL_TREE;
2149 return vn_reference_lookup_1 (&vr1, vnresult);
2153 /* Insert OP into the current hash table with a value number of
2154 RESULT, and return the resulting reference structure we created. */
2156 vn_reference_t
2157 vn_reference_insert (tree op, tree result, tree vuse, tree vdef)
2159 vn_reference_s **slot;
2160 vn_reference_t vr1;
2161 bool tem;
2163 vr1 = (vn_reference_t) pool_alloc (current_info->references_pool);
2164 if (TREE_CODE (result) == SSA_NAME)
2165 vr1->value_id = VN_INFO (result)->value_id;
2166 else
2167 vr1->value_id = get_or_alloc_constant_value_id (result);
2168 vr1->vuse = vuse ? SSA_VAL (vuse) : NULL_TREE;
2169 vr1->operands = valueize_shared_reference_ops_from_ref (op, &tem).copy ();
2170 vr1->type = TREE_TYPE (op);
2171 vr1->set = get_alias_set (op);
2172 vr1->hashcode = vn_reference_compute_hash (vr1);
2173 vr1->result = TREE_CODE (result) == SSA_NAME ? SSA_VAL (result) : result;
2174 vr1->result_vdef = vdef;
2176 slot = current_info->references.find_slot_with_hash (vr1, vr1->hashcode,
2177 INSERT);
2179 /* Because we lookup stores using vuses, and value number failures
2180 using the vdefs (see visit_reference_op_store for how and why),
2181 it's possible that on failure we may try to insert an already
2182 inserted store. This is not wrong, there is no ssa name for a
2183 store that we could use as a differentiator anyway. Thus, unlike
2184 the other lookup functions, you cannot gcc_assert (!*slot)
2185 here. */
2187 /* But free the old slot in case of a collision. */
2188 if (*slot)
2189 free_reference (*slot);
2191 *slot = vr1;
2192 return vr1;
2195 /* Insert a reference by it's pieces into the current hash table with
2196 a value number of RESULT. Return the resulting reference
2197 structure we created. */
2199 vn_reference_t
2200 vn_reference_insert_pieces (tree vuse, alias_set_type set, tree type,
2201 vec<vn_reference_op_s> operands,
2202 tree result, unsigned int value_id)
2205 vn_reference_s **slot;
2206 vn_reference_t vr1;
2208 vr1 = (vn_reference_t) pool_alloc (current_info->references_pool);
2209 vr1->value_id = value_id;
2210 vr1->vuse = vuse ? SSA_VAL (vuse) : NULL_TREE;
2211 vr1->operands = valueize_refs (operands);
2212 vr1->type = type;
2213 vr1->set = set;
2214 vr1->hashcode = vn_reference_compute_hash (vr1);
2215 if (result && TREE_CODE (result) == SSA_NAME)
2216 result = SSA_VAL (result);
2217 vr1->result = result;
2219 slot = current_info->references.find_slot_with_hash (vr1, vr1->hashcode,
2220 INSERT);
2222 /* At this point we should have all the things inserted that we have
2223 seen before, and we should never try inserting something that
2224 already exists. */
2225 gcc_assert (!*slot);
2226 if (*slot)
2227 free_reference (*slot);
2229 *slot = vr1;
2230 return vr1;
2233 /* Compute and return the hash value for nary operation VBO1. */
2235 hashval_t
2236 vn_nary_op_compute_hash (const vn_nary_op_t vno1)
2238 hashval_t hash;
2239 unsigned i;
2241 for (i = 0; i < vno1->length; ++i)
2242 if (TREE_CODE (vno1->op[i]) == SSA_NAME)
2243 vno1->op[i] = SSA_VAL (vno1->op[i]);
2245 if (vno1->length == 2
2246 && commutative_tree_code (vno1->opcode)
2247 && tree_swap_operands_p (vno1->op[0], vno1->op[1], false))
2249 tree temp = vno1->op[0];
2250 vno1->op[0] = vno1->op[1];
2251 vno1->op[1] = temp;
2254 hash = iterative_hash_hashval_t (vno1->opcode, 0);
2255 for (i = 0; i < vno1->length; ++i)
2256 hash = iterative_hash_expr (vno1->op[i], hash);
2258 return hash;
2261 /* Compare nary operations VNO1 and VNO2 and return true if they are
2262 equivalent. */
2264 bool
2265 vn_nary_op_eq (const_vn_nary_op_t const vno1, const_vn_nary_op_t const vno2)
2267 unsigned i;
2269 if (vno1->hashcode != vno2->hashcode)
2270 return false;
2272 if (vno1->length != vno2->length)
2273 return false;
2275 if (vno1->opcode != vno2->opcode
2276 || !types_compatible_p (vno1->type, vno2->type))
2277 return false;
2279 for (i = 0; i < vno1->length; ++i)
2280 if (!expressions_equal_p (vno1->op[i], vno2->op[i]))
2281 return false;
2283 return true;
2286 /* Initialize VNO from the pieces provided. */
2288 static void
2289 init_vn_nary_op_from_pieces (vn_nary_op_t vno, unsigned int length,
2290 enum tree_code code, tree type, tree *ops)
2292 vno->opcode = code;
2293 vno->length = length;
2294 vno->type = type;
2295 memcpy (&vno->op[0], ops, sizeof (tree) * length);
2298 /* Initialize VNO from OP. */
2300 static void
2301 init_vn_nary_op_from_op (vn_nary_op_t vno, tree op)
2303 unsigned i;
2305 vno->opcode = TREE_CODE (op);
2306 vno->length = TREE_CODE_LENGTH (TREE_CODE (op));
2307 vno->type = TREE_TYPE (op);
2308 for (i = 0; i < vno->length; ++i)
2309 vno->op[i] = TREE_OPERAND (op, i);
2312 /* Return the number of operands for a vn_nary ops structure from STMT. */
2314 static unsigned int
2315 vn_nary_length_from_stmt (gimple stmt)
2317 switch (gimple_assign_rhs_code (stmt))
2319 case REALPART_EXPR:
2320 case IMAGPART_EXPR:
2321 case VIEW_CONVERT_EXPR:
2322 return 1;
2324 case BIT_FIELD_REF:
2325 return 3;
2327 case CONSTRUCTOR:
2328 return CONSTRUCTOR_NELTS (gimple_assign_rhs1 (stmt));
2330 default:
2331 return gimple_num_ops (stmt) - 1;
2335 /* Initialize VNO from STMT. */
2337 static void
2338 init_vn_nary_op_from_stmt (vn_nary_op_t vno, gimple stmt)
2340 unsigned i;
2342 vno->opcode = gimple_assign_rhs_code (stmt);
2343 vno->type = gimple_expr_type (stmt);
2344 switch (vno->opcode)
2346 case REALPART_EXPR:
2347 case IMAGPART_EXPR:
2348 case VIEW_CONVERT_EXPR:
2349 vno->length = 1;
2350 vno->op[0] = TREE_OPERAND (gimple_assign_rhs1 (stmt), 0);
2351 break;
2353 case BIT_FIELD_REF:
2354 vno->length = 3;
2355 vno->op[0] = TREE_OPERAND (gimple_assign_rhs1 (stmt), 0);
2356 vno->op[1] = TREE_OPERAND (gimple_assign_rhs1 (stmt), 1);
2357 vno->op[2] = TREE_OPERAND (gimple_assign_rhs1 (stmt), 2);
2358 break;
2360 case CONSTRUCTOR:
2361 vno->length = CONSTRUCTOR_NELTS (gimple_assign_rhs1 (stmt));
2362 for (i = 0; i < vno->length; ++i)
2363 vno->op[i] = CONSTRUCTOR_ELT (gimple_assign_rhs1 (stmt), i)->value;
2364 break;
2366 default:
2367 gcc_checking_assert (!gimple_assign_single_p (stmt));
2368 vno->length = gimple_num_ops (stmt) - 1;
2369 for (i = 0; i < vno->length; ++i)
2370 vno->op[i] = gimple_op (stmt, i + 1);
2374 /* Compute the hashcode for VNO and look for it in the hash table;
2375 return the resulting value number if it exists in the hash table.
2376 Return NULL_TREE if it does not exist in the hash table or if the
2377 result field of the operation is NULL. VNRESULT will contain the
2378 vn_nary_op_t from the hashtable if it exists. */
2380 static tree
2381 vn_nary_op_lookup_1 (vn_nary_op_t vno, vn_nary_op_t *vnresult)
2383 vn_nary_op_s **slot;
2385 if (vnresult)
2386 *vnresult = NULL;
2388 vno->hashcode = vn_nary_op_compute_hash (vno);
2389 slot = current_info->nary.find_slot_with_hash (vno, vno->hashcode, NO_INSERT);
2390 if (!slot && current_info == optimistic_info)
2391 slot = valid_info->nary.find_slot_with_hash (vno, vno->hashcode, NO_INSERT);
2392 if (!slot)
2393 return NULL_TREE;
2394 if (vnresult)
2395 *vnresult = *slot;
2396 return (*slot)->result;
2399 /* Lookup a n-ary operation by its pieces and return the resulting value
2400 number if it exists in the hash table. Return NULL_TREE if it does
2401 not exist in the hash table or if the result field of the operation
2402 is NULL. VNRESULT will contain the vn_nary_op_t from the hashtable
2403 if it exists. */
2405 tree
2406 vn_nary_op_lookup_pieces (unsigned int length, enum tree_code code,
2407 tree type, tree *ops, vn_nary_op_t *vnresult)
2409 vn_nary_op_t vno1 = XALLOCAVAR (struct vn_nary_op_s,
2410 sizeof_vn_nary_op (length));
2411 init_vn_nary_op_from_pieces (vno1, length, code, type, ops);
2412 return vn_nary_op_lookup_1 (vno1, vnresult);
2415 /* Lookup OP in the current hash table, and return the resulting value
2416 number if it exists in the hash table. Return NULL_TREE if it does
2417 not exist in the hash table or if the result field of the operation
2418 is NULL. VNRESULT will contain the vn_nary_op_t from the hashtable
2419 if it exists. */
2421 tree
2422 vn_nary_op_lookup (tree op, vn_nary_op_t *vnresult)
2424 vn_nary_op_t vno1
2425 = XALLOCAVAR (struct vn_nary_op_s,
2426 sizeof_vn_nary_op (TREE_CODE_LENGTH (TREE_CODE (op))));
2427 init_vn_nary_op_from_op (vno1, op);
2428 return vn_nary_op_lookup_1 (vno1, vnresult);
2431 /* Lookup the rhs of STMT in the current hash table, and return the resulting
2432 value number if it exists in the hash table. Return NULL_TREE if
2433 it does not exist in the hash table. VNRESULT will contain the
2434 vn_nary_op_t from the hashtable if it exists. */
2436 tree
2437 vn_nary_op_lookup_stmt (gimple stmt, vn_nary_op_t *vnresult)
2439 vn_nary_op_t vno1
2440 = XALLOCAVAR (struct vn_nary_op_s,
2441 sizeof_vn_nary_op (vn_nary_length_from_stmt (stmt)));
2442 init_vn_nary_op_from_stmt (vno1, stmt);
2443 return vn_nary_op_lookup_1 (vno1, vnresult);
2446 /* Allocate a vn_nary_op_t with LENGTH operands on STACK. */
2448 static vn_nary_op_t
2449 alloc_vn_nary_op_noinit (unsigned int length, struct obstack *stack)
2451 return (vn_nary_op_t) obstack_alloc (stack, sizeof_vn_nary_op (length));
2454 /* Allocate and initialize a vn_nary_op_t on CURRENT_INFO's
2455 obstack. */
2457 static vn_nary_op_t
2458 alloc_vn_nary_op (unsigned int length, tree result, unsigned int value_id)
2460 vn_nary_op_t vno1 = alloc_vn_nary_op_noinit (length,
2461 &current_info->nary_obstack);
2463 vno1->value_id = value_id;
2464 vno1->length = length;
2465 vno1->result = result;
2467 return vno1;
2470 /* Insert VNO into TABLE. If COMPUTE_HASH is true, then compute
2471 VNO->HASHCODE first. */
2473 static vn_nary_op_t
2474 vn_nary_op_insert_into (vn_nary_op_t vno, vn_nary_op_table_type table,
2475 bool compute_hash)
2477 vn_nary_op_s **slot;
2479 if (compute_hash)
2480 vno->hashcode = vn_nary_op_compute_hash (vno);
2482 slot = table.find_slot_with_hash (vno, vno->hashcode, INSERT);
2483 gcc_assert (!*slot);
2485 *slot = vno;
2486 return vno;
2489 /* Insert a n-ary operation into the current hash table using it's
2490 pieces. Return the vn_nary_op_t structure we created and put in
2491 the hashtable. */
2493 vn_nary_op_t
2494 vn_nary_op_insert_pieces (unsigned int length, enum tree_code code,
2495 tree type, tree *ops,
2496 tree result, unsigned int value_id)
2498 vn_nary_op_t vno1 = alloc_vn_nary_op (length, result, value_id);
2499 init_vn_nary_op_from_pieces (vno1, length, code, type, ops);
2500 return vn_nary_op_insert_into (vno1, current_info->nary, true);
2503 /* Insert OP into the current hash table with a value number of
2504 RESULT. Return the vn_nary_op_t structure we created and put in
2505 the hashtable. */
2507 vn_nary_op_t
2508 vn_nary_op_insert (tree op, tree result)
2510 unsigned length = TREE_CODE_LENGTH (TREE_CODE (op));
2511 vn_nary_op_t vno1;
2513 vno1 = alloc_vn_nary_op (length, result, VN_INFO (result)->value_id);
2514 init_vn_nary_op_from_op (vno1, op);
2515 return vn_nary_op_insert_into (vno1, current_info->nary, true);
2518 /* Insert the rhs of STMT into the current hash table with a value number of
2519 RESULT. */
2521 vn_nary_op_t
2522 vn_nary_op_insert_stmt (gimple stmt, tree result)
2524 vn_nary_op_t vno1
2525 = alloc_vn_nary_op (vn_nary_length_from_stmt (stmt),
2526 result, VN_INFO (result)->value_id);
2527 init_vn_nary_op_from_stmt (vno1, stmt);
2528 return vn_nary_op_insert_into (vno1, current_info->nary, true);
2531 /* Compute a hashcode for PHI operation VP1 and return it. */
2533 static inline hashval_t
2534 vn_phi_compute_hash (vn_phi_t vp1)
2536 hashval_t result;
2537 int i;
2538 tree phi1op;
2539 tree type;
2541 result = vp1->block->index;
2543 /* If all PHI arguments are constants we need to distinguish
2544 the PHI node via its type. */
2545 type = vp1->type;
2546 result += vn_hash_type (type);
2548 FOR_EACH_VEC_ELT (vp1->phiargs, i, phi1op)
2550 if (phi1op == VN_TOP)
2551 continue;
2552 result = iterative_hash_expr (phi1op, result);
2555 return result;
2558 /* Compare two phi entries for equality, ignoring VN_TOP arguments. */
2560 static int
2561 vn_phi_eq (const_vn_phi_t const vp1, const_vn_phi_t const vp2)
2563 if (vp1->hashcode != vp2->hashcode)
2564 return false;
2566 if (vp1->block == vp2->block)
2568 int i;
2569 tree phi1op;
2571 /* If the PHI nodes do not have compatible types
2572 they are not the same. */
2573 if (!types_compatible_p (vp1->type, vp2->type))
2574 return false;
2576 /* Any phi in the same block will have it's arguments in the
2577 same edge order, because of how we store phi nodes. */
2578 FOR_EACH_VEC_ELT (vp1->phiargs, i, phi1op)
2580 tree phi2op = vp2->phiargs[i];
2581 if (phi1op == VN_TOP || phi2op == VN_TOP)
2582 continue;
2583 if (!expressions_equal_p (phi1op, phi2op))
2584 return false;
2586 return true;
2588 return false;
2591 static vec<tree> shared_lookup_phiargs;
2593 /* Lookup PHI in the current hash table, and return the resulting
2594 value number if it exists in the hash table. Return NULL_TREE if
2595 it does not exist in the hash table. */
2597 static tree
2598 vn_phi_lookup (gimple phi)
2600 vn_phi_s **slot;
2601 struct vn_phi_s vp1;
2602 unsigned i;
2604 shared_lookup_phiargs.truncate (0);
2606 /* Canonicalize the SSA_NAME's to their value number. */
2607 for (i = 0; i < gimple_phi_num_args (phi); i++)
2609 tree def = PHI_ARG_DEF (phi, i);
2610 def = TREE_CODE (def) == SSA_NAME ? SSA_VAL (def) : def;
2611 shared_lookup_phiargs.safe_push (def);
2613 vp1.type = TREE_TYPE (gimple_phi_result (phi));
2614 vp1.phiargs = shared_lookup_phiargs;
2615 vp1.block = gimple_bb (phi);
2616 vp1.hashcode = vn_phi_compute_hash (&vp1);
2617 slot = current_info->phis.find_slot_with_hash (&vp1, vp1.hashcode, NO_INSERT);
2618 if (!slot && current_info == optimistic_info)
2619 slot = valid_info->phis.find_slot_with_hash (&vp1, vp1.hashcode, NO_INSERT);
2620 if (!slot)
2621 return NULL_TREE;
2622 return (*slot)->result;
2625 /* Insert PHI into the current hash table with a value number of
2626 RESULT. */
2628 static vn_phi_t
2629 vn_phi_insert (gimple phi, tree result)
2631 vn_phi_s **slot;
2632 vn_phi_t vp1 = (vn_phi_t) pool_alloc (current_info->phis_pool);
2633 unsigned i;
2634 vec<tree> args = vNULL;
2636 /* Canonicalize the SSA_NAME's to their value number. */
2637 for (i = 0; i < gimple_phi_num_args (phi); i++)
2639 tree def = PHI_ARG_DEF (phi, i);
2640 def = TREE_CODE (def) == SSA_NAME ? SSA_VAL (def) : def;
2641 args.safe_push (def);
2643 vp1->value_id = VN_INFO (result)->value_id;
2644 vp1->type = TREE_TYPE (gimple_phi_result (phi));
2645 vp1->phiargs = args;
2646 vp1->block = gimple_bb (phi);
2647 vp1->result = result;
2648 vp1->hashcode = vn_phi_compute_hash (vp1);
2650 slot = current_info->phis.find_slot_with_hash (vp1, vp1->hashcode, INSERT);
2652 /* Because we iterate over phi operations more than once, it's
2653 possible the slot might already exist here, hence no assert.*/
2654 *slot = vp1;
2655 return vp1;
2659 /* Print set of components in strongly connected component SCC to OUT. */
2661 static void
2662 print_scc (FILE *out, vec<tree> scc)
2664 tree var;
2665 unsigned int i;
2667 fprintf (out, "SCC consists of:");
2668 FOR_EACH_VEC_ELT (scc, i, var)
2670 fprintf (out, " ");
2671 print_generic_expr (out, var, 0);
2673 fprintf (out, "\n");
2676 /* Set the value number of FROM to TO, return true if it has changed
2677 as a result. */
2679 static inline bool
2680 set_ssa_val_to (tree from, tree to)
2682 tree currval = SSA_VAL (from);
2683 HOST_WIDE_INT toff, coff;
2685 /* The only thing we allow as value numbers are ssa_names
2686 and invariants. So assert that here. We don't allow VN_TOP
2687 as visiting a stmt should produce a value-number other than
2688 that.
2689 ??? Still VN_TOP can happen for unreachable code, so force
2690 it to varying in that case. Not all code is prepared to
2691 get VN_TOP on valueization. */
2692 if (to == VN_TOP)
2694 if (dump_file && (dump_flags & TDF_DETAILS))
2695 fprintf (dump_file, "Forcing value number to varying on "
2696 "receiving VN_TOP\n");
2697 to = from;
2700 gcc_assert (to != NULL_TREE
2701 && (TREE_CODE (to) == SSA_NAME
2702 || is_gimple_min_invariant (to)));
2704 if (from != to)
2706 if (currval == from)
2708 if (dump_file && (dump_flags & TDF_DETAILS))
2710 fprintf (dump_file, "Not changing value number of ");
2711 print_generic_expr (dump_file, from, 0);
2712 fprintf (dump_file, " from VARYING to ");
2713 print_generic_expr (dump_file, to, 0);
2714 fprintf (dump_file, "\n");
2716 return false;
2718 else if (TREE_CODE (to) == SSA_NAME
2719 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (to))
2720 to = from;
2723 if (dump_file && (dump_flags & TDF_DETAILS))
2725 fprintf (dump_file, "Setting value number of ");
2726 print_generic_expr (dump_file, from, 0);
2727 fprintf (dump_file, " to ");
2728 print_generic_expr (dump_file, to, 0);
2731 if (currval != to
2732 && !operand_equal_p (currval, to, 0)
2733 /* ??? For addresses involving volatile objects or types operand_equal_p
2734 does not reliably detect ADDR_EXPRs as equal. We know we are only
2735 getting invariant gimple addresses here, so can use
2736 get_addr_base_and_unit_offset to do this comparison. */
2737 && !(TREE_CODE (currval) == ADDR_EXPR
2738 && TREE_CODE (to) == ADDR_EXPR
2739 && (get_addr_base_and_unit_offset (TREE_OPERAND (currval, 0), &coff)
2740 == get_addr_base_and_unit_offset (TREE_OPERAND (to, 0), &toff))
2741 && coff == toff))
2743 VN_INFO (from)->valnum = to;
2744 if (dump_file && (dump_flags & TDF_DETAILS))
2745 fprintf (dump_file, " (changed)\n");
2746 return true;
2748 if (dump_file && (dump_flags & TDF_DETAILS))
2749 fprintf (dump_file, "\n");
2750 return false;
2753 /* Mark as processed all the definitions in the defining stmt of USE, or
2754 the USE itself. */
2756 static void
2757 mark_use_processed (tree use)
2759 ssa_op_iter iter;
2760 def_operand_p defp;
2761 gimple stmt = SSA_NAME_DEF_STMT (use);
2763 if (SSA_NAME_IS_DEFAULT_DEF (use) || gimple_code (stmt) == GIMPLE_PHI)
2765 VN_INFO (use)->use_processed = true;
2766 return;
2769 FOR_EACH_SSA_DEF_OPERAND (defp, stmt, iter, SSA_OP_ALL_DEFS)
2771 tree def = DEF_FROM_PTR (defp);
2773 VN_INFO (def)->use_processed = true;
2777 /* Set all definitions in STMT to value number to themselves.
2778 Return true if a value number changed. */
2780 static bool
2781 defs_to_varying (gimple stmt)
2783 bool changed = false;
2784 ssa_op_iter iter;
2785 def_operand_p defp;
2787 FOR_EACH_SSA_DEF_OPERAND (defp, stmt, iter, SSA_OP_ALL_DEFS)
2789 tree def = DEF_FROM_PTR (defp);
2790 changed |= set_ssa_val_to (def, def);
2792 return changed;
2795 static bool expr_has_constants (tree expr);
2797 /* Visit a copy between LHS and RHS, return true if the value number
2798 changed. */
2800 static bool
2801 visit_copy (tree lhs, tree rhs)
2803 /* The copy may have a more interesting constant filled expression
2804 (we don't, since we know our RHS is just an SSA name). */
2805 VN_INFO (lhs)->has_constants = VN_INFO (rhs)->has_constants;
2806 VN_INFO (lhs)->expr = VN_INFO (rhs)->expr;
2808 /* And finally valueize. */
2809 rhs = SSA_VAL (rhs);
2811 return set_ssa_val_to (lhs, rhs);
2814 /* Visit a nary operator RHS, value number it, and return true if the
2815 value number of LHS has changed as a result. */
2817 static bool
2818 visit_nary_op (tree lhs, gimple stmt)
2820 bool changed = false;
2821 tree result = vn_nary_op_lookup_stmt (stmt, NULL);
2823 if (result)
2824 changed = set_ssa_val_to (lhs, result);
2825 else
2827 changed = set_ssa_val_to (lhs, lhs);
2828 vn_nary_op_insert_stmt (stmt, lhs);
2831 return changed;
2834 /* Visit a call STMT storing into LHS. Return true if the value number
2835 of the LHS has changed as a result. */
2837 static bool
2838 visit_reference_op_call (tree lhs, gimple stmt)
2840 bool changed = false;
2841 struct vn_reference_s vr1;
2842 vn_reference_t vnresult = NULL;
2843 tree vuse = gimple_vuse (stmt);
2844 tree vdef = gimple_vdef (stmt);
2846 /* Non-ssa lhs is handled in copy_reference_ops_from_call. */
2847 if (lhs && TREE_CODE (lhs) != SSA_NAME)
2848 lhs = NULL_TREE;
2850 vr1.vuse = vuse ? SSA_VAL (vuse) : NULL_TREE;
2851 vr1.operands = valueize_shared_reference_ops_from_call (stmt);
2852 vr1.type = gimple_expr_type (stmt);
2853 vr1.set = 0;
2854 vr1.hashcode = vn_reference_compute_hash (&vr1);
2855 vn_reference_lookup_1 (&vr1, &vnresult);
2857 if (vnresult)
2859 if (vnresult->result_vdef && vdef)
2860 changed |= set_ssa_val_to (vdef, vnresult->result_vdef);
2862 if (!vnresult->result && lhs)
2863 vnresult->result = lhs;
2865 if (vnresult->result && lhs)
2867 changed |= set_ssa_val_to (lhs, vnresult->result);
2869 if (VN_INFO (vnresult->result)->has_constants)
2870 VN_INFO (lhs)->has_constants = true;
2873 else
2875 vn_reference_s **slot;
2876 vn_reference_t vr2;
2877 if (vdef)
2878 changed |= set_ssa_val_to (vdef, vdef);
2879 if (lhs)
2880 changed |= set_ssa_val_to (lhs, lhs);
2881 vr2 = (vn_reference_t) pool_alloc (current_info->references_pool);
2882 vr2->vuse = vr1.vuse;
2883 vr2->operands = valueize_refs (create_reference_ops_from_call (stmt));
2884 vr2->type = vr1.type;
2885 vr2->set = vr1.set;
2886 vr2->hashcode = vr1.hashcode;
2887 vr2->result = lhs;
2888 vr2->result_vdef = vdef;
2889 slot = current_info->references.find_slot_with_hash (vr2, vr2->hashcode,
2890 INSERT);
2891 if (*slot)
2892 free_reference (*slot);
2893 *slot = vr2;
2896 return changed;
2899 /* Visit a load from a reference operator RHS, part of STMT, value number it,
2900 and return true if the value number of the LHS has changed as a result. */
2902 static bool
2903 visit_reference_op_load (tree lhs, tree op, gimple stmt)
2905 bool changed = false;
2906 tree last_vuse;
2907 tree result;
2909 last_vuse = gimple_vuse (stmt);
2910 last_vuse_ptr = &last_vuse;
2911 result = vn_reference_lookup (op, gimple_vuse (stmt),
2912 default_vn_walk_kind, NULL);
2913 last_vuse_ptr = NULL;
2915 /* If we have a VCE, try looking up its operand as it might be stored in
2916 a different type. */
2917 if (!result && TREE_CODE (op) == VIEW_CONVERT_EXPR)
2918 result = vn_reference_lookup (TREE_OPERAND (op, 0), gimple_vuse (stmt),
2919 default_vn_walk_kind, NULL);
2921 /* We handle type-punning through unions by value-numbering based
2922 on offset and size of the access. Be prepared to handle a
2923 type-mismatch here via creating a VIEW_CONVERT_EXPR. */
2924 if (result
2925 && !useless_type_conversion_p (TREE_TYPE (result), TREE_TYPE (op)))
2927 /* We will be setting the value number of lhs to the value number
2928 of VIEW_CONVERT_EXPR <TREE_TYPE (result)> (result).
2929 So first simplify and lookup this expression to see if it
2930 is already available. */
2931 tree val = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (op), result);
2932 if ((CONVERT_EXPR_P (val)
2933 || TREE_CODE (val) == VIEW_CONVERT_EXPR)
2934 && TREE_CODE (TREE_OPERAND (val, 0)) == SSA_NAME)
2936 tree tem = vn_get_expr_for (TREE_OPERAND (val, 0));
2937 if ((CONVERT_EXPR_P (tem)
2938 || TREE_CODE (tem) == VIEW_CONVERT_EXPR)
2939 && (tem = fold_unary_ignore_overflow (TREE_CODE (val),
2940 TREE_TYPE (val), tem)))
2941 val = tem;
2943 result = val;
2944 if (!is_gimple_min_invariant (val)
2945 && TREE_CODE (val) != SSA_NAME)
2946 result = vn_nary_op_lookup (val, NULL);
2947 /* If the expression is not yet available, value-number lhs to
2948 a new SSA_NAME we create. */
2949 if (!result)
2951 result = make_temp_ssa_name (TREE_TYPE (lhs), gimple_build_nop (),
2952 "vntemp");
2953 /* Initialize value-number information properly. */
2954 VN_INFO_GET (result)->valnum = result;
2955 VN_INFO (result)->value_id = get_next_value_id ();
2956 VN_INFO (result)->expr = val;
2957 VN_INFO (result)->has_constants = expr_has_constants (val);
2958 VN_INFO (result)->needs_insertion = true;
2959 /* As all "inserted" statements are singleton SCCs, insert
2960 to the valid table. This is strictly needed to
2961 avoid re-generating new value SSA_NAMEs for the same
2962 expression during SCC iteration over and over (the
2963 optimistic table gets cleared after each iteration).
2964 We do not need to insert into the optimistic table, as
2965 lookups there will fall back to the valid table. */
2966 if (current_info == optimistic_info)
2968 current_info = valid_info;
2969 vn_nary_op_insert (val, result);
2970 current_info = optimistic_info;
2972 else
2973 vn_nary_op_insert (val, result);
2974 if (dump_file && (dump_flags & TDF_DETAILS))
2976 fprintf (dump_file, "Inserting name ");
2977 print_generic_expr (dump_file, result, 0);
2978 fprintf (dump_file, " for expression ");
2979 print_generic_expr (dump_file, val, 0);
2980 fprintf (dump_file, "\n");
2985 if (result)
2987 changed = set_ssa_val_to (lhs, result);
2988 if (TREE_CODE (result) == SSA_NAME
2989 && VN_INFO (result)->has_constants)
2991 VN_INFO (lhs)->expr = VN_INFO (result)->expr;
2992 VN_INFO (lhs)->has_constants = true;
2995 else
2997 changed = set_ssa_val_to (lhs, lhs);
2998 vn_reference_insert (op, lhs, last_vuse, NULL_TREE);
3001 return changed;
3005 /* Visit a store to a reference operator LHS, part of STMT, value number it,
3006 and return true if the value number of the LHS has changed as a result. */
3008 static bool
3009 visit_reference_op_store (tree lhs, tree op, gimple stmt)
3011 bool changed = false;
3012 vn_reference_t vnresult = NULL;
3013 tree result, assign;
3014 bool resultsame = false;
3015 tree vuse = gimple_vuse (stmt);
3016 tree vdef = gimple_vdef (stmt);
3018 /* First we want to lookup using the *vuses* from the store and see
3019 if there the last store to this location with the same address
3020 had the same value.
3022 The vuses represent the memory state before the store. If the
3023 memory state, address, and value of the store is the same as the
3024 last store to this location, then this store will produce the
3025 same memory state as that store.
3027 In this case the vdef versions for this store are value numbered to those
3028 vuse versions, since they represent the same memory state after
3029 this store.
3031 Otherwise, the vdefs for the store are used when inserting into
3032 the table, since the store generates a new memory state. */
3034 result = vn_reference_lookup (lhs, vuse, VN_NOWALK, NULL);
3036 if (result)
3038 if (TREE_CODE (result) == SSA_NAME)
3039 result = SSA_VAL (result);
3040 if (TREE_CODE (op) == SSA_NAME)
3041 op = SSA_VAL (op);
3042 resultsame = expressions_equal_p (result, op);
3045 if (!result || !resultsame)
3047 assign = build2 (MODIFY_EXPR, TREE_TYPE (lhs), lhs, op);
3048 vn_reference_lookup (assign, vuse, VN_NOWALK, &vnresult);
3049 if (vnresult)
3051 VN_INFO (vdef)->use_processed = true;
3052 return set_ssa_val_to (vdef, vnresult->result_vdef);
3056 if (!result || !resultsame)
3058 if (dump_file && (dump_flags & TDF_DETAILS))
3060 fprintf (dump_file, "No store match\n");
3061 fprintf (dump_file, "Value numbering store ");
3062 print_generic_expr (dump_file, lhs, 0);
3063 fprintf (dump_file, " to ");
3064 print_generic_expr (dump_file, op, 0);
3065 fprintf (dump_file, "\n");
3067 /* Have to set value numbers before insert, since insert is
3068 going to valueize the references in-place. */
3069 if (vdef)
3071 changed |= set_ssa_val_to (vdef, vdef);
3074 /* Do not insert structure copies into the tables. */
3075 if (is_gimple_min_invariant (op)
3076 || is_gimple_reg (op))
3077 vn_reference_insert (lhs, op, vdef, NULL);
3079 assign = build2 (MODIFY_EXPR, TREE_TYPE (lhs), lhs, op);
3080 vn_reference_insert (assign, lhs, vuse, vdef);
3082 else
3084 /* We had a match, so value number the vdef to have the value
3085 number of the vuse it came from. */
3087 if (dump_file && (dump_flags & TDF_DETAILS))
3088 fprintf (dump_file, "Store matched earlier value,"
3089 "value numbering store vdefs to matching vuses.\n");
3091 changed |= set_ssa_val_to (vdef, SSA_VAL (vuse));
3094 return changed;
3097 /* Visit and value number PHI, return true if the value number
3098 changed. */
3100 static bool
3101 visit_phi (gimple phi)
3103 bool changed = false;
3104 tree result;
3105 tree sameval = VN_TOP;
3106 bool allsame = true;
3108 /* TODO: We could check for this in init_sccvn, and replace this
3109 with a gcc_assert. */
3110 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)))
3111 return set_ssa_val_to (PHI_RESULT (phi), PHI_RESULT (phi));
3113 /* See if all non-TOP arguments have the same value. TOP is
3114 equivalent to everything, so we can ignore it. */
3115 edge_iterator ei;
3116 edge e;
3117 FOR_EACH_EDGE (e, ei, gimple_bb (phi)->preds)
3118 if (e->flags & EDGE_EXECUTABLE)
3120 tree def = PHI_ARG_DEF_FROM_EDGE (phi, e);
3122 if (TREE_CODE (def) == SSA_NAME)
3123 def = SSA_VAL (def);
3124 if (def == VN_TOP)
3125 continue;
3126 if (sameval == VN_TOP)
3128 sameval = def;
3130 else
3132 if (!expressions_equal_p (def, sameval))
3134 allsame = false;
3135 break;
3140 /* If all value numbered to the same value, the phi node has that
3141 value. */
3142 if (allsame)
3143 return set_ssa_val_to (PHI_RESULT (phi), sameval);
3145 /* Otherwise, see if it is equivalent to a phi node in this block. */
3146 result = vn_phi_lookup (phi);
3147 if (result)
3148 changed = set_ssa_val_to (PHI_RESULT (phi), result);
3149 else
3151 vn_phi_insert (phi, PHI_RESULT (phi));
3152 VN_INFO (PHI_RESULT (phi))->has_constants = false;
3153 VN_INFO (PHI_RESULT (phi))->expr = PHI_RESULT (phi);
3154 changed = set_ssa_val_to (PHI_RESULT (phi), PHI_RESULT (phi));
3157 return changed;
3160 /* Return true if EXPR contains constants. */
3162 static bool
3163 expr_has_constants (tree expr)
3165 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
3167 case tcc_unary:
3168 return is_gimple_min_invariant (TREE_OPERAND (expr, 0));
3170 case tcc_binary:
3171 return is_gimple_min_invariant (TREE_OPERAND (expr, 0))
3172 || is_gimple_min_invariant (TREE_OPERAND (expr, 1));
3173 /* Constants inside reference ops are rarely interesting, but
3174 it can take a lot of looking to find them. */
3175 case tcc_reference:
3176 case tcc_declaration:
3177 return false;
3178 default:
3179 return is_gimple_min_invariant (expr);
3181 return false;
3184 /* Return true if STMT contains constants. */
3186 static bool
3187 stmt_has_constants (gimple stmt)
3189 tree tem;
3191 if (gimple_code (stmt) != GIMPLE_ASSIGN)
3192 return false;
3194 switch (get_gimple_rhs_class (gimple_assign_rhs_code (stmt)))
3196 case GIMPLE_TERNARY_RHS:
3197 tem = gimple_assign_rhs3 (stmt);
3198 if (TREE_CODE (tem) == SSA_NAME)
3199 tem = SSA_VAL (tem);
3200 if (is_gimple_min_invariant (tem))
3201 return true;
3202 /* Fallthru. */
3204 case GIMPLE_BINARY_RHS:
3205 tem = gimple_assign_rhs2 (stmt);
3206 if (TREE_CODE (tem) == SSA_NAME)
3207 tem = SSA_VAL (tem);
3208 if (is_gimple_min_invariant (tem))
3209 return true;
3210 /* Fallthru. */
3212 case GIMPLE_SINGLE_RHS:
3213 /* Constants inside reference ops are rarely interesting, but
3214 it can take a lot of looking to find them. */
3215 case GIMPLE_UNARY_RHS:
3216 tem = gimple_assign_rhs1 (stmt);
3217 if (TREE_CODE (tem) == SSA_NAME)
3218 tem = SSA_VAL (tem);
3219 return is_gimple_min_invariant (tem);
3221 default:
3222 gcc_unreachable ();
3224 return false;
3227 /* Simplify the binary expression RHS, and return the result if
3228 simplified. */
3230 static tree
3231 simplify_binary_expression (gimple stmt)
3233 tree result = NULL_TREE;
3234 tree op0 = gimple_assign_rhs1 (stmt);
3235 tree op1 = gimple_assign_rhs2 (stmt);
3236 enum tree_code code = gimple_assign_rhs_code (stmt);
3238 /* This will not catch every single case we could combine, but will
3239 catch those with constants. The goal here is to simultaneously
3240 combine constants between expressions, but avoid infinite
3241 expansion of expressions during simplification. */
3242 op0 = vn_valueize (op0);
3243 if (TREE_CODE (op0) == SSA_NAME
3244 && (VN_INFO (op0)->has_constants
3245 || TREE_CODE_CLASS (code) == tcc_comparison
3246 || code == COMPLEX_EXPR))
3247 op0 = vn_get_expr_for (op0);
3249 op1 = vn_valueize (op1);
3250 if (TREE_CODE (op1) == SSA_NAME
3251 && (VN_INFO (op1)->has_constants
3252 || code == COMPLEX_EXPR))
3253 op1 = vn_get_expr_for (op1);
3255 /* Pointer plus constant can be represented as invariant address.
3256 Do so to allow further propatation, see also tree forwprop. */
3257 if (code == POINTER_PLUS_EXPR
3258 && tree_fits_uhwi_p (op1)
3259 && TREE_CODE (op0) == ADDR_EXPR
3260 && is_gimple_min_invariant (op0))
3261 return build_invariant_address (TREE_TYPE (op0),
3262 TREE_OPERAND (op0, 0),
3263 tree_to_uhwi (op1));
3265 /* Avoid folding if nothing changed. */
3266 if (op0 == gimple_assign_rhs1 (stmt)
3267 && op1 == gimple_assign_rhs2 (stmt))
3268 return NULL_TREE;
3270 fold_defer_overflow_warnings ();
3272 result = fold_binary (code, gimple_expr_type (stmt), op0, op1);
3273 if (result)
3274 STRIP_USELESS_TYPE_CONVERSION (result);
3276 fold_undefer_overflow_warnings (result && valid_gimple_rhs_p (result),
3277 stmt, 0);
3279 /* Make sure result is not a complex expression consisting
3280 of operators of operators (IE (a + b) + (a + c))
3281 Otherwise, we will end up with unbounded expressions if
3282 fold does anything at all. */
3283 if (result && valid_gimple_rhs_p (result))
3284 return result;
3286 return NULL_TREE;
3289 /* Simplify the unary expression RHS, and return the result if
3290 simplified. */
3292 static tree
3293 simplify_unary_expression (gimple stmt)
3295 tree result = NULL_TREE;
3296 tree orig_op0, op0 = gimple_assign_rhs1 (stmt);
3297 enum tree_code code = gimple_assign_rhs_code (stmt);
3299 /* We handle some tcc_reference codes here that are all
3300 GIMPLE_ASSIGN_SINGLE codes. */
3301 if (code == REALPART_EXPR
3302 || code == IMAGPART_EXPR
3303 || code == VIEW_CONVERT_EXPR
3304 || code == BIT_FIELD_REF)
3305 op0 = TREE_OPERAND (op0, 0);
3307 orig_op0 = op0;
3308 op0 = vn_valueize (op0);
3309 if (TREE_CODE (op0) == SSA_NAME)
3311 if (VN_INFO (op0)->has_constants)
3312 op0 = vn_get_expr_for (op0);
3313 else if (CONVERT_EXPR_CODE_P (code)
3314 || code == REALPART_EXPR
3315 || code == IMAGPART_EXPR
3316 || code == VIEW_CONVERT_EXPR
3317 || code == BIT_FIELD_REF)
3319 /* We want to do tree-combining on conversion-like expressions.
3320 Make sure we feed only SSA_NAMEs or constants to fold though. */
3321 tree tem = vn_get_expr_for (op0);
3322 if (UNARY_CLASS_P (tem)
3323 || BINARY_CLASS_P (tem)
3324 || TREE_CODE (tem) == VIEW_CONVERT_EXPR
3325 || TREE_CODE (tem) == SSA_NAME
3326 || TREE_CODE (tem) == CONSTRUCTOR
3327 || is_gimple_min_invariant (tem))
3328 op0 = tem;
3332 /* Avoid folding if nothing changed, but remember the expression. */
3333 if (op0 == orig_op0)
3334 return NULL_TREE;
3336 if (code == BIT_FIELD_REF)
3338 tree rhs = gimple_assign_rhs1 (stmt);
3339 result = fold_ternary (BIT_FIELD_REF, TREE_TYPE (rhs),
3340 op0, TREE_OPERAND (rhs, 1), TREE_OPERAND (rhs, 2));
3342 else
3343 result = fold_unary_ignore_overflow (code, gimple_expr_type (stmt), op0);
3344 if (result)
3346 STRIP_USELESS_TYPE_CONVERSION (result);
3347 if (valid_gimple_rhs_p (result))
3348 return result;
3351 return NULL_TREE;
3354 /* Try to simplify RHS using equivalences and constant folding. */
3356 static tree
3357 try_to_simplify (gimple stmt)
3359 enum tree_code code = gimple_assign_rhs_code (stmt);
3360 tree tem;
3362 /* For stores we can end up simplifying a SSA_NAME rhs. Just return
3363 in this case, there is no point in doing extra work. */
3364 if (code == SSA_NAME)
3365 return NULL_TREE;
3367 /* First try constant folding based on our current lattice. */
3368 tem = gimple_fold_stmt_to_constant_1 (stmt, vn_valueize);
3369 if (tem
3370 && (TREE_CODE (tem) == SSA_NAME
3371 || is_gimple_min_invariant (tem)))
3372 return tem;
3374 /* If that didn't work try combining multiple statements. */
3375 switch (TREE_CODE_CLASS (code))
3377 case tcc_reference:
3378 /* Fallthrough for some unary codes that can operate on registers. */
3379 if (!(code == REALPART_EXPR
3380 || code == IMAGPART_EXPR
3381 || code == VIEW_CONVERT_EXPR
3382 || code == BIT_FIELD_REF))
3383 break;
3384 /* We could do a little more with unary ops, if they expand
3385 into binary ops, but it's debatable whether it is worth it. */
3386 case tcc_unary:
3387 return simplify_unary_expression (stmt);
3389 case tcc_comparison:
3390 case tcc_binary:
3391 return simplify_binary_expression (stmt);
3393 default:
3394 break;
3397 return NULL_TREE;
3400 /* Visit and value number USE, return true if the value number
3401 changed. */
3403 static bool
3404 visit_use (tree use)
3406 bool changed = false;
3407 gimple stmt = SSA_NAME_DEF_STMT (use);
3409 mark_use_processed (use);
3411 gcc_assert (!SSA_NAME_IN_FREE_LIST (use));
3412 if (dump_file && (dump_flags & TDF_DETAILS)
3413 && !SSA_NAME_IS_DEFAULT_DEF (use))
3415 fprintf (dump_file, "Value numbering ");
3416 print_generic_expr (dump_file, use, 0);
3417 fprintf (dump_file, " stmt = ");
3418 print_gimple_stmt (dump_file, stmt, 0, 0);
3421 /* Handle uninitialized uses. */
3422 if (SSA_NAME_IS_DEFAULT_DEF (use))
3423 changed = set_ssa_val_to (use, use);
3424 else
3426 if (gimple_code (stmt) == GIMPLE_PHI)
3427 changed = visit_phi (stmt);
3428 else if (gimple_has_volatile_ops (stmt))
3429 changed = defs_to_varying (stmt);
3430 else if (is_gimple_assign (stmt))
3432 enum tree_code code = gimple_assign_rhs_code (stmt);
3433 tree lhs = gimple_assign_lhs (stmt);
3434 tree rhs1 = gimple_assign_rhs1 (stmt);
3435 tree simplified;
3437 /* Shortcut for copies. Simplifying copies is pointless,
3438 since we copy the expression and value they represent. */
3439 if (code == SSA_NAME
3440 && TREE_CODE (lhs) == SSA_NAME)
3442 changed = visit_copy (lhs, rhs1);
3443 goto done;
3445 simplified = try_to_simplify (stmt);
3446 if (simplified)
3448 if (dump_file && (dump_flags & TDF_DETAILS))
3450 fprintf (dump_file, "RHS ");
3451 print_gimple_expr (dump_file, stmt, 0, 0);
3452 fprintf (dump_file, " simplified to ");
3453 print_generic_expr (dump_file, simplified, 0);
3454 if (TREE_CODE (lhs) == SSA_NAME)
3455 fprintf (dump_file, " has constants %d\n",
3456 expr_has_constants (simplified));
3457 else
3458 fprintf (dump_file, "\n");
3461 /* Setting value numbers to constants will occasionally
3462 screw up phi congruence because constants are not
3463 uniquely associated with a single ssa name that can be
3464 looked up. */
3465 if (simplified
3466 && is_gimple_min_invariant (simplified)
3467 && TREE_CODE (lhs) == SSA_NAME)
3469 VN_INFO (lhs)->expr = simplified;
3470 VN_INFO (lhs)->has_constants = true;
3471 changed = set_ssa_val_to (lhs, simplified);
3472 goto done;
3474 else if (simplified
3475 && TREE_CODE (simplified) == SSA_NAME
3476 && TREE_CODE (lhs) == SSA_NAME)
3478 changed = visit_copy (lhs, simplified);
3479 goto done;
3481 else if (simplified)
3483 if (TREE_CODE (lhs) == SSA_NAME)
3485 VN_INFO (lhs)->has_constants = expr_has_constants (simplified);
3486 /* We have to unshare the expression or else
3487 valuizing may change the IL stream. */
3488 VN_INFO (lhs)->expr = unshare_expr (simplified);
3491 else if (stmt_has_constants (stmt)
3492 && TREE_CODE (lhs) == SSA_NAME)
3493 VN_INFO (lhs)->has_constants = true;
3494 else if (TREE_CODE (lhs) == SSA_NAME)
3496 /* We reset expr and constantness here because we may
3497 have been value numbering optimistically, and
3498 iterating. They may become non-constant in this case,
3499 even if they were optimistically constant. */
3501 VN_INFO (lhs)->has_constants = false;
3502 VN_INFO (lhs)->expr = NULL_TREE;
3505 if ((TREE_CODE (lhs) == SSA_NAME
3506 /* We can substitute SSA_NAMEs that are live over
3507 abnormal edges with their constant value. */
3508 && !(gimple_assign_copy_p (stmt)
3509 && is_gimple_min_invariant (rhs1))
3510 && !(simplified
3511 && is_gimple_min_invariant (simplified))
3512 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
3513 /* Stores or copies from SSA_NAMEs that are live over
3514 abnormal edges are a problem. */
3515 || (code == SSA_NAME
3516 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs1)))
3517 changed = defs_to_varying (stmt);
3518 else if (REFERENCE_CLASS_P (lhs)
3519 || DECL_P (lhs))
3520 changed = visit_reference_op_store (lhs, rhs1, stmt);
3521 else if (TREE_CODE (lhs) == SSA_NAME)
3523 if ((gimple_assign_copy_p (stmt)
3524 && is_gimple_min_invariant (rhs1))
3525 || (simplified
3526 && is_gimple_min_invariant (simplified)))
3528 VN_INFO (lhs)->has_constants = true;
3529 if (simplified)
3530 changed = set_ssa_val_to (lhs, simplified);
3531 else
3532 changed = set_ssa_val_to (lhs, rhs1);
3534 else
3536 /* First try to lookup the simplified expression. */
3537 if (simplified)
3539 enum gimple_rhs_class rhs_class;
3542 rhs_class = get_gimple_rhs_class (TREE_CODE (simplified));
3543 if ((rhs_class == GIMPLE_UNARY_RHS
3544 || rhs_class == GIMPLE_BINARY_RHS
3545 || rhs_class == GIMPLE_TERNARY_RHS)
3546 && valid_gimple_rhs_p (simplified))
3548 tree result = vn_nary_op_lookup (simplified, NULL);
3549 if (result)
3551 changed = set_ssa_val_to (lhs, result);
3552 goto done;
3557 /* Otherwise visit the original statement. */
3558 switch (vn_get_stmt_kind (stmt))
3560 case VN_NARY:
3561 changed = visit_nary_op (lhs, stmt);
3562 break;
3563 case VN_REFERENCE:
3564 changed = visit_reference_op_load (lhs, rhs1, stmt);
3565 break;
3566 default:
3567 changed = defs_to_varying (stmt);
3568 break;
3572 else
3573 changed = defs_to_varying (stmt);
3575 else if (is_gimple_call (stmt))
3577 tree lhs = gimple_call_lhs (stmt);
3578 if (lhs && TREE_CODE (lhs) == SSA_NAME)
3580 /* Try constant folding based on our current lattice. */
3581 tree simplified = gimple_fold_stmt_to_constant_1 (stmt,
3582 vn_valueize);
3583 if (simplified)
3585 if (dump_file && (dump_flags & TDF_DETAILS))
3587 fprintf (dump_file, "call ");
3588 print_gimple_expr (dump_file, stmt, 0, 0);
3589 fprintf (dump_file, " simplified to ");
3590 print_generic_expr (dump_file, simplified, 0);
3591 if (TREE_CODE (lhs) == SSA_NAME)
3592 fprintf (dump_file, " has constants %d\n",
3593 expr_has_constants (simplified));
3594 else
3595 fprintf (dump_file, "\n");
3598 /* Setting value numbers to constants will occasionally
3599 screw up phi congruence because constants are not
3600 uniquely associated with a single ssa name that can be
3601 looked up. */
3602 if (simplified
3603 && is_gimple_min_invariant (simplified))
3605 VN_INFO (lhs)->expr = simplified;
3606 VN_INFO (lhs)->has_constants = true;
3607 changed = set_ssa_val_to (lhs, simplified);
3608 if (gimple_vdef (stmt))
3609 changed |= set_ssa_val_to (gimple_vdef (stmt),
3610 gimple_vuse (stmt));
3611 goto done;
3613 else if (simplified
3614 && TREE_CODE (simplified) == SSA_NAME)
3616 changed = visit_copy (lhs, simplified);
3617 if (gimple_vdef (stmt))
3618 changed |= set_ssa_val_to (gimple_vdef (stmt),
3619 gimple_vuse (stmt));
3620 goto done;
3622 else
3624 if (stmt_has_constants (stmt))
3625 VN_INFO (lhs)->has_constants = true;
3626 else
3628 /* We reset expr and constantness here because we may
3629 have been value numbering optimistically, and
3630 iterating. They may become non-constant in this case,
3631 even if they were optimistically constant. */
3632 VN_INFO (lhs)->has_constants = false;
3633 VN_INFO (lhs)->expr = NULL_TREE;
3636 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
3638 changed = defs_to_varying (stmt);
3639 goto done;
3644 if (!gimple_call_internal_p (stmt)
3645 && (/* Calls to the same function with the same vuse
3646 and the same operands do not necessarily return the same
3647 value, unless they're pure or const. */
3648 gimple_call_flags (stmt) & (ECF_PURE | ECF_CONST)
3649 /* If calls have a vdef, subsequent calls won't have
3650 the same incoming vuse. So, if 2 calls with vdef have the
3651 same vuse, we know they're not subsequent.
3652 We can value number 2 calls to the same function with the
3653 same vuse and the same operands which are not subsequent
3654 the same, because there is no code in the program that can
3655 compare the 2 values... */
3656 || (gimple_vdef (stmt)
3657 /* ... unless the call returns a pointer which does
3658 not alias with anything else. In which case the
3659 information that the values are distinct are encoded
3660 in the IL. */
3661 && !(gimple_call_return_flags (stmt) & ERF_NOALIAS))))
3662 changed = visit_reference_op_call (lhs, stmt);
3663 else
3664 changed = defs_to_varying (stmt);
3666 else
3667 changed = defs_to_varying (stmt);
3669 done:
3670 return changed;
3673 /* Compare two operands by reverse postorder index */
3675 static int
3676 compare_ops (const void *pa, const void *pb)
3678 const tree opa = *((const tree *)pa);
3679 const tree opb = *((const tree *)pb);
3680 gimple opstmta = SSA_NAME_DEF_STMT (opa);
3681 gimple opstmtb = SSA_NAME_DEF_STMT (opb);
3682 basic_block bba;
3683 basic_block bbb;
3685 if (gimple_nop_p (opstmta) && gimple_nop_p (opstmtb))
3686 return SSA_NAME_VERSION (opa) - SSA_NAME_VERSION (opb);
3687 else if (gimple_nop_p (opstmta))
3688 return -1;
3689 else if (gimple_nop_p (opstmtb))
3690 return 1;
3692 bba = gimple_bb (opstmta);
3693 bbb = gimple_bb (opstmtb);
3695 if (!bba && !bbb)
3696 return SSA_NAME_VERSION (opa) - SSA_NAME_VERSION (opb);
3697 else if (!bba)
3698 return -1;
3699 else if (!bbb)
3700 return 1;
3702 if (bba == bbb)
3704 if (gimple_code (opstmta) == GIMPLE_PHI
3705 && gimple_code (opstmtb) == GIMPLE_PHI)
3706 return SSA_NAME_VERSION (opa) - SSA_NAME_VERSION (opb);
3707 else if (gimple_code (opstmta) == GIMPLE_PHI)
3708 return -1;
3709 else if (gimple_code (opstmtb) == GIMPLE_PHI)
3710 return 1;
3711 else if (gimple_uid (opstmta) != gimple_uid (opstmtb))
3712 return gimple_uid (opstmta) - gimple_uid (opstmtb);
3713 else
3714 return SSA_NAME_VERSION (opa) - SSA_NAME_VERSION (opb);
3716 return rpo_numbers[bba->index] - rpo_numbers[bbb->index];
3719 /* Sort an array containing members of a strongly connected component
3720 SCC so that the members are ordered by RPO number.
3721 This means that when the sort is complete, iterating through the
3722 array will give you the members in RPO order. */
3724 static void
3725 sort_scc (vec<tree> scc)
3727 scc.qsort (compare_ops);
3730 /* Insert the no longer used nary ONARY to the hash INFO. */
3732 static void
3733 copy_nary (vn_nary_op_t onary, vn_tables_t info)
3735 size_t size = sizeof_vn_nary_op (onary->length);
3736 vn_nary_op_t nary = alloc_vn_nary_op_noinit (onary->length,
3737 &info->nary_obstack);
3738 memcpy (nary, onary, size);
3739 vn_nary_op_insert_into (nary, info->nary, false);
3742 /* Insert the no longer used phi OPHI to the hash INFO. */
3744 static void
3745 copy_phi (vn_phi_t ophi, vn_tables_t info)
3747 vn_phi_t phi = (vn_phi_t) pool_alloc (info->phis_pool);
3748 vn_phi_s **slot;
3749 memcpy (phi, ophi, sizeof (*phi));
3750 ophi->phiargs.create (0);
3751 slot = info->phis.find_slot_with_hash (phi, phi->hashcode, INSERT);
3752 gcc_assert (!*slot);
3753 *slot = phi;
3756 /* Insert the no longer used reference OREF to the hash INFO. */
3758 static void
3759 copy_reference (vn_reference_t oref, vn_tables_t info)
3761 vn_reference_t ref;
3762 vn_reference_s **slot;
3763 ref = (vn_reference_t) pool_alloc (info->references_pool);
3764 memcpy (ref, oref, sizeof (*ref));
3765 oref->operands.create (0);
3766 slot = info->references.find_slot_with_hash (ref, ref->hashcode, INSERT);
3767 if (*slot)
3768 free_reference (*slot);
3769 *slot = ref;
3772 /* Process a strongly connected component in the SSA graph. */
3774 static void
3775 process_scc (vec<tree> scc)
3777 tree var;
3778 unsigned int i;
3779 unsigned int iterations = 0;
3780 bool changed = true;
3781 vn_nary_op_iterator_type hin;
3782 vn_phi_iterator_type hip;
3783 vn_reference_iterator_type hir;
3784 vn_nary_op_t nary;
3785 vn_phi_t phi;
3786 vn_reference_t ref;
3788 /* If the SCC has a single member, just visit it. */
3789 if (scc.length () == 1)
3791 tree use = scc[0];
3792 if (VN_INFO (use)->use_processed)
3793 return;
3794 /* We need to make sure it doesn't form a cycle itself, which can
3795 happen for self-referential PHI nodes. In that case we would
3796 end up inserting an expression with VN_TOP operands into the
3797 valid table which makes us derive bogus equivalences later.
3798 The cheapest way to check this is to assume it for all PHI nodes. */
3799 if (gimple_code (SSA_NAME_DEF_STMT (use)) == GIMPLE_PHI)
3800 /* Fallthru to iteration. */ ;
3801 else
3803 visit_use (use);
3804 return;
3808 if (dump_file && (dump_flags & TDF_DETAILS))
3809 print_scc (dump_file, scc);
3811 /* Iterate over the SCC with the optimistic table until it stops
3812 changing. */
3813 current_info = optimistic_info;
3814 while (changed)
3816 changed = false;
3817 iterations++;
3818 if (dump_file && (dump_flags & TDF_DETAILS))
3819 fprintf (dump_file, "Starting iteration %d\n", iterations);
3820 /* As we are value-numbering optimistically we have to
3821 clear the expression tables and the simplified expressions
3822 in each iteration until we converge. */
3823 optimistic_info->nary.empty ();
3824 optimistic_info->phis.empty ();
3825 optimistic_info->references.empty ();
3826 obstack_free (&optimistic_info->nary_obstack, NULL);
3827 gcc_obstack_init (&optimistic_info->nary_obstack);
3828 empty_alloc_pool (optimistic_info->phis_pool);
3829 empty_alloc_pool (optimistic_info->references_pool);
3830 FOR_EACH_VEC_ELT (scc, i, var)
3831 VN_INFO (var)->expr = NULL_TREE;
3832 FOR_EACH_VEC_ELT (scc, i, var)
3833 changed |= visit_use (var);
3836 if (dump_file && (dump_flags & TDF_DETAILS))
3837 fprintf (dump_file, "Processing SCC needed %d iterations\n", iterations);
3838 statistics_histogram_event (cfun, "SCC iterations", iterations);
3840 /* Finally, copy the contents of the no longer used optimistic
3841 table to the valid table. */
3842 FOR_EACH_HASH_TABLE_ELEMENT (optimistic_info->nary, nary, vn_nary_op_t, hin)
3843 copy_nary (nary, valid_info);
3844 FOR_EACH_HASH_TABLE_ELEMENT (optimistic_info->phis, phi, vn_phi_t, hip)
3845 copy_phi (phi, valid_info);
3846 FOR_EACH_HASH_TABLE_ELEMENT (optimistic_info->references,
3847 ref, vn_reference_t, hir)
3848 copy_reference (ref, valid_info);
3850 current_info = valid_info;
3854 /* Pop the components of the found SCC for NAME off the SCC stack
3855 and process them. Returns true if all went well, false if
3856 we run into resource limits. */
3858 static bool
3859 extract_and_process_scc_for_name (tree name)
3861 auto_vec<tree> scc;
3862 tree x;
3864 /* Found an SCC, pop the components off the SCC stack and
3865 process them. */
3868 x = sccstack.pop ();
3870 VN_INFO (x)->on_sccstack = false;
3871 scc.safe_push (x);
3872 } while (x != name);
3874 /* Bail out of SCCVN in case a SCC turns out to be incredibly large. */
3875 if (scc.length ()
3876 > (unsigned)PARAM_VALUE (PARAM_SCCVN_MAX_SCC_SIZE))
3878 if (dump_file)
3879 fprintf (dump_file, "WARNING: Giving up with SCCVN due to "
3880 "SCC size %u exceeding %u\n", scc.length (),
3881 (unsigned)PARAM_VALUE (PARAM_SCCVN_MAX_SCC_SIZE));
3883 return false;
3886 if (scc.length () > 1)
3887 sort_scc (scc);
3889 process_scc (scc);
3891 return true;
3894 /* Depth first search on NAME to discover and process SCC's in the SSA
3895 graph.
3896 Execution of this algorithm relies on the fact that the SCC's are
3897 popped off the stack in topological order.
3898 Returns true if successful, false if we stopped processing SCC's due
3899 to resource constraints. */
3901 static bool
3902 DFS (tree name)
3904 vec<ssa_op_iter> itervec = vNULL;
3905 vec<tree> namevec = vNULL;
3906 use_operand_p usep = NULL;
3907 gimple defstmt;
3908 tree use;
3909 ssa_op_iter iter;
3911 start_over:
3912 /* SCC info */
3913 VN_INFO (name)->dfsnum = next_dfs_num++;
3914 VN_INFO (name)->visited = true;
3915 VN_INFO (name)->low = VN_INFO (name)->dfsnum;
3917 sccstack.safe_push (name);
3918 VN_INFO (name)->on_sccstack = true;
3919 defstmt = SSA_NAME_DEF_STMT (name);
3921 /* Recursively DFS on our operands, looking for SCC's. */
3922 if (!gimple_nop_p (defstmt))
3924 /* Push a new iterator. */
3925 if (gimple_code (defstmt) == GIMPLE_PHI)
3926 usep = op_iter_init_phiuse (&iter, defstmt, SSA_OP_ALL_USES);
3927 else
3928 usep = op_iter_init_use (&iter, defstmt, SSA_OP_ALL_USES);
3930 else
3931 clear_and_done_ssa_iter (&iter);
3933 while (1)
3935 /* If we are done processing uses of a name, go up the stack
3936 of iterators and process SCCs as we found them. */
3937 if (op_iter_done (&iter))
3939 /* See if we found an SCC. */
3940 if (VN_INFO (name)->low == VN_INFO (name)->dfsnum)
3941 if (!extract_and_process_scc_for_name (name))
3943 namevec.release ();
3944 itervec.release ();
3945 return false;
3948 /* Check if we are done. */
3949 if (namevec.is_empty ())
3951 namevec.release ();
3952 itervec.release ();
3953 return true;
3956 /* Restore the last use walker and continue walking there. */
3957 use = name;
3958 name = namevec.pop ();
3959 memcpy (&iter, &itervec.last (),
3960 sizeof (ssa_op_iter));
3961 itervec.pop ();
3962 goto continue_walking;
3965 use = USE_FROM_PTR (usep);
3967 /* Since we handle phi nodes, we will sometimes get
3968 invariants in the use expression. */
3969 if (TREE_CODE (use) == SSA_NAME)
3971 if (! (VN_INFO (use)->visited))
3973 /* Recurse by pushing the current use walking state on
3974 the stack and starting over. */
3975 itervec.safe_push (iter);
3976 namevec.safe_push (name);
3977 name = use;
3978 goto start_over;
3980 continue_walking:
3981 VN_INFO (name)->low = MIN (VN_INFO (name)->low,
3982 VN_INFO (use)->low);
3984 if (VN_INFO (use)->dfsnum < VN_INFO (name)->dfsnum
3985 && VN_INFO (use)->on_sccstack)
3987 VN_INFO (name)->low = MIN (VN_INFO (use)->dfsnum,
3988 VN_INFO (name)->low);
3992 usep = op_iter_next_use (&iter);
3996 /* Allocate a value number table. */
3998 static void
3999 allocate_vn_table (vn_tables_t table)
4001 table->phis.create (23);
4002 table->nary.create (23);
4003 table->references.create (23);
4005 gcc_obstack_init (&table->nary_obstack);
4006 table->phis_pool = create_alloc_pool ("VN phis",
4007 sizeof (struct vn_phi_s),
4008 30);
4009 table->references_pool = create_alloc_pool ("VN references",
4010 sizeof (struct vn_reference_s),
4011 30);
4014 /* Free a value number table. */
4016 static void
4017 free_vn_table (vn_tables_t table)
4019 table->phis.dispose ();
4020 table->nary.dispose ();
4021 table->references.dispose ();
4022 obstack_free (&table->nary_obstack, NULL);
4023 free_alloc_pool (table->phis_pool);
4024 free_alloc_pool (table->references_pool);
4027 static void
4028 init_scc_vn (void)
4030 size_t i;
4031 int j;
4032 int *rpo_numbers_temp;
4034 calculate_dominance_info (CDI_DOMINATORS);
4035 sccstack.create (0);
4036 constant_to_value_id.create (23);
4038 constant_value_ids = BITMAP_ALLOC (NULL);
4040 next_dfs_num = 1;
4041 next_value_id = 1;
4043 vn_ssa_aux_table.create (num_ssa_names + 1);
4044 /* VEC_alloc doesn't actually grow it to the right size, it just
4045 preallocates the space to do so. */
4046 vn_ssa_aux_table.safe_grow_cleared (num_ssa_names + 1);
4047 gcc_obstack_init (&vn_ssa_aux_obstack);
4049 shared_lookup_phiargs.create (0);
4050 shared_lookup_references.create (0);
4051 rpo_numbers = XNEWVEC (int, last_basic_block_for_fn (cfun));
4052 rpo_numbers_temp =
4053 XNEWVEC (int, n_basic_blocks_for_fn (cfun) - NUM_FIXED_BLOCKS);
4054 pre_and_rev_post_order_compute (NULL, rpo_numbers_temp, false);
4056 /* RPO numbers is an array of rpo ordering, rpo[i] = bb means that
4057 the i'th block in RPO order is bb. We want to map bb's to RPO
4058 numbers, so we need to rearrange this array. */
4059 for (j = 0; j < n_basic_blocks_for_fn (cfun) - NUM_FIXED_BLOCKS; j++)
4060 rpo_numbers[rpo_numbers_temp[j]] = j;
4062 XDELETE (rpo_numbers_temp);
4064 VN_TOP = create_tmp_var_raw (void_type_node, "vn_top");
4066 /* Create the VN_INFO structures, and initialize value numbers to
4067 TOP. */
4068 for (i = 0; i < num_ssa_names; i++)
4070 tree name = ssa_name (i);
4071 if (name)
4073 VN_INFO_GET (name)->valnum = VN_TOP;
4074 VN_INFO (name)->expr = NULL_TREE;
4075 VN_INFO (name)->value_id = 0;
4079 renumber_gimple_stmt_uids ();
4081 /* Create the valid and optimistic value numbering tables. */
4082 valid_info = XCNEW (struct vn_tables_s);
4083 allocate_vn_table (valid_info);
4084 optimistic_info = XCNEW (struct vn_tables_s);
4085 allocate_vn_table (optimistic_info);
4088 void
4089 free_scc_vn (void)
4091 size_t i;
4093 constant_to_value_id.dispose ();
4094 BITMAP_FREE (constant_value_ids);
4095 shared_lookup_phiargs.release ();
4096 shared_lookup_references.release ();
4097 XDELETEVEC (rpo_numbers);
4099 for (i = 0; i < num_ssa_names; i++)
4101 tree name = ssa_name (i);
4102 if (name
4103 && VN_INFO (name)->needs_insertion)
4104 release_ssa_name (name);
4106 obstack_free (&vn_ssa_aux_obstack, NULL);
4107 vn_ssa_aux_table.release ();
4109 sccstack.release ();
4110 free_vn_table (valid_info);
4111 XDELETE (valid_info);
4112 free_vn_table (optimistic_info);
4113 XDELETE (optimistic_info);
4116 /* Set *ID according to RESULT. */
4118 static void
4119 set_value_id_for_result (tree result, unsigned int *id)
4121 if (result && TREE_CODE (result) == SSA_NAME)
4122 *id = VN_INFO (result)->value_id;
4123 else if (result && is_gimple_min_invariant (result))
4124 *id = get_or_alloc_constant_value_id (result);
4125 else
4126 *id = get_next_value_id ();
4129 /* Set the value ids in the valid hash tables. */
4131 static void
4132 set_hashtable_value_ids (void)
4134 vn_nary_op_iterator_type hin;
4135 vn_phi_iterator_type hip;
4136 vn_reference_iterator_type hir;
4137 vn_nary_op_t vno;
4138 vn_reference_t vr;
4139 vn_phi_t vp;
4141 /* Now set the value ids of the things we had put in the hash
4142 table. */
4144 FOR_EACH_HASH_TABLE_ELEMENT (valid_info->nary, vno, vn_nary_op_t, hin)
4145 set_value_id_for_result (vno->result, &vno->value_id);
4147 FOR_EACH_HASH_TABLE_ELEMENT (valid_info->phis, vp, vn_phi_t, hip)
4148 set_value_id_for_result (vp->result, &vp->value_id);
4150 FOR_EACH_HASH_TABLE_ELEMENT (valid_info->references, vr, vn_reference_t, hir)
4151 set_value_id_for_result (vr->result, &vr->value_id);
4154 class cond_dom_walker : public dom_walker
4156 public:
4157 cond_dom_walker () : dom_walker (CDI_DOMINATORS), fail (false) {}
4159 virtual void before_dom_children (basic_block);
4161 bool fail;
4164 void
4165 cond_dom_walker::before_dom_children (basic_block bb)
4167 edge e;
4168 edge_iterator ei;
4170 if (fail)
4171 return;
4173 /* If any of the predecessor edges that do not come from blocks dominated
4174 by us are still marked as possibly executable consider this block
4175 reachable. */
4176 bool reachable = bb == ENTRY_BLOCK_PTR_FOR_FN (cfun);
4177 FOR_EACH_EDGE (e, ei, bb->preds)
4178 if (!dominated_by_p (CDI_DOMINATORS, e->src, bb))
4179 reachable |= (e->flags & EDGE_EXECUTABLE);
4181 /* If the block is not reachable all outgoing edges are not
4182 executable. */
4183 if (!reachable)
4185 if (dump_file && (dump_flags & TDF_DETAILS))
4186 fprintf (dump_file, "Marking all outgoing edges of unreachable "
4187 "BB %d as not executable\n", bb->index);
4189 FOR_EACH_EDGE (e, ei, bb->succs)
4190 e->flags &= ~EDGE_EXECUTABLE;
4191 return;
4194 gimple stmt = last_stmt (bb);
4195 if (!stmt)
4196 return;
4198 enum gimple_code code = gimple_code (stmt);
4199 if (code != GIMPLE_COND
4200 && code != GIMPLE_SWITCH
4201 && code != GIMPLE_GOTO)
4202 return;
4204 if (dump_file && (dump_flags & TDF_DETAILS))
4206 fprintf (dump_file, "Value-numbering operands of stmt ending BB %d: ",
4207 bb->index);
4208 print_gimple_stmt (dump_file, stmt, 0, 0);
4211 /* Value-number the last stmts SSA uses. */
4212 ssa_op_iter i;
4213 tree op;
4214 FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_USE)
4215 if (VN_INFO (op)->visited == false
4216 && !DFS (op))
4218 fail = true;
4219 return;
4222 /* ??? We can even handle stmts with outgoing EH or ABNORMAL edges
4223 if value-numbering can prove they are not reachable. Handling
4224 computed gotos is also possible. */
4225 tree val;
4226 switch (code)
4228 case GIMPLE_COND:
4230 tree lhs = gimple_cond_lhs (stmt);
4231 tree rhs = gimple_cond_rhs (stmt);
4232 /* Work hard in computing the condition and take into account
4233 the valueization of the defining stmt. */
4234 if (TREE_CODE (lhs) == SSA_NAME)
4235 lhs = vn_get_expr_for (lhs);
4236 if (TREE_CODE (rhs) == SSA_NAME)
4237 rhs = vn_get_expr_for (rhs);
4238 val = fold_binary (gimple_cond_code (stmt),
4239 boolean_type_node, lhs, rhs);
4240 break;
4242 case GIMPLE_SWITCH:
4243 val = gimple_switch_index (stmt);
4244 break;
4245 case GIMPLE_GOTO:
4246 val = gimple_goto_dest (stmt);
4247 break;
4248 default:
4249 gcc_unreachable ();
4251 if (!val)
4252 return;
4254 edge taken = find_taken_edge (bb, vn_valueize (val));
4255 if (!taken)
4256 return;
4258 if (dump_file && (dump_flags & TDF_DETAILS))
4259 fprintf (dump_file, "Marking all edges out of BB %d but (%d -> %d) as "
4260 "not executable\n", bb->index, bb->index, taken->dest->index);
4262 FOR_EACH_EDGE (e, ei, bb->succs)
4263 if (e != taken)
4264 e->flags &= ~EDGE_EXECUTABLE;
4267 /* Do SCCVN. Returns true if it finished, false if we bailed out
4268 due to resource constraints. DEFAULT_VN_WALK_KIND_ specifies
4269 how we use the alias oracle walking during the VN process. */
4271 bool
4272 run_scc_vn (vn_lookup_kind default_vn_walk_kind_)
4274 basic_block bb;
4275 size_t i;
4276 tree param;
4278 default_vn_walk_kind = default_vn_walk_kind_;
4280 init_scc_vn ();
4281 current_info = valid_info;
4283 for (param = DECL_ARGUMENTS (current_function_decl);
4284 param;
4285 param = DECL_CHAIN (param))
4287 tree def = ssa_default_def (cfun, param);
4288 if (def)
4290 VN_INFO (def)->visited = true;
4291 VN_INFO (def)->valnum = def;
4295 /* Mark all edges as possibly executable. */
4296 FOR_ALL_BB_FN (bb, cfun)
4298 edge_iterator ei;
4299 edge e;
4300 FOR_EACH_EDGE (e, ei, bb->succs)
4301 e->flags |= EDGE_EXECUTABLE;
4304 /* Walk all blocks in dominator order, value-numbering the last stmts
4305 SSA uses and decide whether outgoing edges are not executable. */
4306 cond_dom_walker walker;
4307 walker.walk (ENTRY_BLOCK_PTR_FOR_FN (cfun));
4308 if (walker.fail)
4310 free_scc_vn ();
4311 return false;
4314 /* Value-number remaining SSA names. */
4315 for (i = 1; i < num_ssa_names; ++i)
4317 tree name = ssa_name (i);
4318 if (name
4319 && VN_INFO (name)->visited == false
4320 && !has_zero_uses (name))
4321 if (!DFS (name))
4323 free_scc_vn ();
4324 return false;
4328 /* Initialize the value ids. */
4330 for (i = 1; i < num_ssa_names; ++i)
4332 tree name = ssa_name (i);
4333 vn_ssa_aux_t info;
4334 if (!name)
4335 continue;
4336 info = VN_INFO (name);
4337 if (info->valnum == name
4338 || info->valnum == VN_TOP)
4339 info->value_id = get_next_value_id ();
4340 else if (is_gimple_min_invariant (info->valnum))
4341 info->value_id = get_or_alloc_constant_value_id (info->valnum);
4344 /* Propagate. */
4345 for (i = 1; i < num_ssa_names; ++i)
4347 tree name = ssa_name (i);
4348 vn_ssa_aux_t info;
4349 if (!name)
4350 continue;
4351 info = VN_INFO (name);
4352 if (TREE_CODE (info->valnum) == SSA_NAME
4353 && info->valnum != name
4354 && info->value_id != VN_INFO (info->valnum)->value_id)
4355 info->value_id = VN_INFO (info->valnum)->value_id;
4358 set_hashtable_value_ids ();
4360 if (dump_file && (dump_flags & TDF_DETAILS))
4362 fprintf (dump_file, "Value numbers:\n");
4363 for (i = 0; i < num_ssa_names; i++)
4365 tree name = ssa_name (i);
4366 if (name
4367 && VN_INFO (name)->visited
4368 && SSA_VAL (name) != name)
4370 print_generic_expr (dump_file, name, 0);
4371 fprintf (dump_file, " = ");
4372 print_generic_expr (dump_file, SSA_VAL (name), 0);
4373 fprintf (dump_file, "\n");
4378 return true;
4381 /* Return the maximum value id we have ever seen. */
4383 unsigned int
4384 get_max_value_id (void)
4386 return next_value_id;
4389 /* Return the next unique value id. */
4391 unsigned int
4392 get_next_value_id (void)
4394 return next_value_id++;
4398 /* Compare two expressions E1 and E2 and return true if they are equal. */
4400 bool
4401 expressions_equal_p (tree e1, tree e2)
4403 /* The obvious case. */
4404 if (e1 == e2)
4405 return true;
4407 /* If only one of them is null, they cannot be equal. */
4408 if (!e1 || !e2)
4409 return false;
4411 /* Now perform the actual comparison. */
4412 if (TREE_CODE (e1) == TREE_CODE (e2)
4413 && operand_equal_p (e1, e2, OEP_PURE_SAME))
4414 return true;
4416 return false;
4420 /* Return true if the nary operation NARY may trap. This is a copy
4421 of stmt_could_throw_1_p adjusted to the SCCVN IL. */
4423 bool
4424 vn_nary_may_trap (vn_nary_op_t nary)
4426 tree type;
4427 tree rhs2 = NULL_TREE;
4428 bool honor_nans = false;
4429 bool honor_snans = false;
4430 bool fp_operation = false;
4431 bool honor_trapv = false;
4432 bool handled, ret;
4433 unsigned i;
4435 if (TREE_CODE_CLASS (nary->opcode) == tcc_comparison
4436 || TREE_CODE_CLASS (nary->opcode) == tcc_unary
4437 || TREE_CODE_CLASS (nary->opcode) == tcc_binary)
4439 type = nary->type;
4440 fp_operation = FLOAT_TYPE_P (type);
4441 if (fp_operation)
4443 honor_nans = flag_trapping_math && !flag_finite_math_only;
4444 honor_snans = flag_signaling_nans != 0;
4446 else if (INTEGRAL_TYPE_P (type)
4447 && TYPE_OVERFLOW_TRAPS (type))
4448 honor_trapv = true;
4450 if (nary->length >= 2)
4451 rhs2 = nary->op[1];
4452 ret = operation_could_trap_helper_p (nary->opcode, fp_operation,
4453 honor_trapv,
4454 honor_nans, honor_snans, rhs2,
4455 &handled);
4456 if (handled
4457 && ret)
4458 return true;
4460 for (i = 0; i < nary->length; ++i)
4461 if (tree_could_trap_p (nary->op[i]))
4462 return true;
4464 return false;