2013-11-21 Edward Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / tree-ssa-sccvn.c
blob1b9514e2108896d71be9231f84c4470d99b5fcc5
1 /* SCC value numbering for trees
2 Copyright (C) 2006-2013 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 "gimple.h"
31 #include "gimplify.h"
32 #include "gimple-ssa.h"
33 #include "tree-phinodes.h"
34 #include "ssa-iterators.h"
35 #include "stringpool.h"
36 #include "tree-ssanames.h"
37 #include "expr.h"
38 #include "tree-dfa.h"
39 #include "tree-ssa.h"
40 #include "dumpfile.h"
41 #include "hash-table.h"
42 #include "alloc-pool.h"
43 #include "flags.h"
44 #include "cfgloop.h"
45 #include "params.h"
46 #include "tree-ssa-propagate.h"
47 #include "tree-ssa-sccvn.h"
49 /* This algorithm is based on the SCC algorithm presented by Keith
50 Cooper and L. Taylor Simpson in "SCC-Based Value numbering"
51 (http://citeseer.ist.psu.edu/41805.html). In
52 straight line code, it is equivalent to a regular hash based value
53 numbering that is performed in reverse postorder.
55 For code with cycles, there are two alternatives, both of which
56 require keeping the hashtables separate from the actual list of
57 value numbers for SSA names.
59 1. Iterate value numbering in an RPO walk of the blocks, removing
60 all the entries from the hashtable after each iteration (but
61 keeping the SSA name->value number mapping between iterations).
62 Iterate until it does not change.
64 2. Perform value numbering as part of an SCC walk on the SSA graph,
65 iterating only the cycles in the SSA graph until they do not change
66 (using a separate, optimistic hashtable for value numbering the SCC
67 operands).
69 The second is not just faster in practice (because most SSA graph
70 cycles do not involve all the variables in the graph), it also has
71 some nice properties.
73 One of these nice properties is that when we pop an SCC off the
74 stack, we are guaranteed to have processed all the operands coming from
75 *outside of that SCC*, so we do not need to do anything special to
76 ensure they have value numbers.
78 Another nice property is that the SCC walk is done as part of a DFS
79 of the SSA graph, which makes it easy to perform combining and
80 simplifying operations at the same time.
82 The code below is deliberately written in a way that makes it easy
83 to separate the SCC walk from the other work it does.
85 In order to propagate constants through the code, we track which
86 expressions contain constants, and use those while folding. In
87 theory, we could also track expressions whose value numbers are
88 replaced, in case we end up folding based on expression
89 identities.
91 In order to value number memory, we assign value numbers to vuses.
92 This enables us to note that, for example, stores to the same
93 address of the same value from the same starting memory states are
94 equivalent.
95 TODO:
97 1. We can iterate only the changing portions of the SCC's, but
98 I have not seen an SCC big enough for this to be a win.
99 2. If you differentiate between phi nodes for loops and phi nodes
100 for if-then-else, you can properly consider phi nodes in different
101 blocks for equivalence.
102 3. We could value number vuses in more cases, particularly, whole
103 structure copies.
107 /* vn_nary_op hashtable helpers. */
109 struct vn_nary_op_hasher : typed_noop_remove <vn_nary_op_s>
111 typedef vn_nary_op_s value_type;
112 typedef vn_nary_op_s compare_type;
113 static inline hashval_t hash (const value_type *);
114 static inline bool equal (const value_type *, const compare_type *);
117 /* Return the computed hashcode for nary operation P1. */
119 inline hashval_t
120 vn_nary_op_hasher::hash (const value_type *vno1)
122 return vno1->hashcode;
125 /* Compare nary operations P1 and P2 and return true if they are
126 equivalent. */
128 inline bool
129 vn_nary_op_hasher::equal (const value_type *vno1, const compare_type *vno2)
131 return vn_nary_op_eq (vno1, vno2);
134 typedef hash_table <vn_nary_op_hasher> vn_nary_op_table_type;
135 typedef vn_nary_op_table_type::iterator vn_nary_op_iterator_type;
138 /* vn_phi hashtable helpers. */
140 static int
141 vn_phi_eq (const_vn_phi_t const vp1, const_vn_phi_t const vp2);
143 struct vn_phi_hasher
145 typedef vn_phi_s value_type;
146 typedef vn_phi_s compare_type;
147 static inline hashval_t hash (const value_type *);
148 static inline bool equal (const value_type *, const compare_type *);
149 static inline void remove (value_type *);
152 /* Return the computed hashcode for phi operation P1. */
154 inline hashval_t
155 vn_phi_hasher::hash (const value_type *vp1)
157 return vp1->hashcode;
160 /* Compare two phi entries for equality, ignoring VN_TOP arguments. */
162 inline bool
163 vn_phi_hasher::equal (const value_type *vp1, const compare_type *vp2)
165 return vn_phi_eq (vp1, vp2);
168 /* Free a phi operation structure VP. */
170 inline void
171 vn_phi_hasher::remove (value_type *phi)
173 phi->phiargs.release ();
176 typedef hash_table <vn_phi_hasher> vn_phi_table_type;
177 typedef vn_phi_table_type::iterator vn_phi_iterator_type;
180 /* Compare two reference operands P1 and P2 for equality. Return true if
181 they are equal, and false otherwise. */
183 static int
184 vn_reference_op_eq (const void *p1, const void *p2)
186 const_vn_reference_op_t const vro1 = (const_vn_reference_op_t) p1;
187 const_vn_reference_op_t const vro2 = (const_vn_reference_op_t) p2;
189 return (vro1->opcode == vro2->opcode
190 /* We do not care for differences in type qualification. */
191 && (vro1->type == vro2->type
192 || (vro1->type && vro2->type
193 && types_compatible_p (TYPE_MAIN_VARIANT (vro1->type),
194 TYPE_MAIN_VARIANT (vro2->type))))
195 && expressions_equal_p (vro1->op0, vro2->op0)
196 && expressions_equal_p (vro1->op1, vro2->op1)
197 && expressions_equal_p (vro1->op2, vro2->op2));
200 /* Free a reference operation structure VP. */
202 static inline void
203 free_reference (vn_reference_s *vr)
205 vr->operands.release ();
209 /* vn_reference hashtable helpers. */
211 struct vn_reference_hasher
213 typedef vn_reference_s value_type;
214 typedef vn_reference_s compare_type;
215 static inline hashval_t hash (const value_type *);
216 static inline bool equal (const value_type *, const compare_type *);
217 static inline void remove (value_type *);
220 /* Return the hashcode for a given reference operation P1. */
222 inline hashval_t
223 vn_reference_hasher::hash (const value_type *vr1)
225 return vr1->hashcode;
228 inline bool
229 vn_reference_hasher::equal (const value_type *v, const compare_type *c)
231 return vn_reference_eq (v, c);
234 inline void
235 vn_reference_hasher::remove (value_type *v)
237 free_reference (v);
240 typedef hash_table <vn_reference_hasher> vn_reference_table_type;
241 typedef vn_reference_table_type::iterator vn_reference_iterator_type;
244 /* The set of hashtables and alloc_pool's for their items. */
246 typedef struct vn_tables_s
248 vn_nary_op_table_type nary;
249 vn_phi_table_type phis;
250 vn_reference_table_type references;
251 struct obstack nary_obstack;
252 alloc_pool phis_pool;
253 alloc_pool references_pool;
254 } *vn_tables_t;
257 /* vn_constant hashtable helpers. */
259 struct vn_constant_hasher : typed_free_remove <vn_constant_s>
261 typedef vn_constant_s value_type;
262 typedef vn_constant_s compare_type;
263 static inline hashval_t hash (const value_type *);
264 static inline bool equal (const value_type *, const compare_type *);
267 /* Hash table hash function for vn_constant_t. */
269 inline hashval_t
270 vn_constant_hasher::hash (const value_type *vc1)
272 return vc1->hashcode;
275 /* Hash table equality function for vn_constant_t. */
277 inline bool
278 vn_constant_hasher::equal (const value_type *vc1, const compare_type *vc2)
280 if (vc1->hashcode != vc2->hashcode)
281 return false;
283 return vn_constant_eq_with_type (vc1->constant, vc2->constant);
286 static hash_table <vn_constant_hasher> constant_to_value_id;
287 static bitmap constant_value_ids;
290 /* Valid hashtables storing information we have proven to be
291 correct. */
293 static vn_tables_t valid_info;
295 /* Optimistic hashtables storing information we are making assumptions about
296 during iterations. */
298 static vn_tables_t optimistic_info;
300 /* Pointer to the set of hashtables that is currently being used.
301 Should always point to either the optimistic_info, or the
302 valid_info. */
304 static vn_tables_t current_info;
307 /* Reverse post order index for each basic block. */
309 static int *rpo_numbers;
311 #define SSA_VAL(x) (VN_INFO ((x))->valnum)
313 /* This represents the top of the VN lattice, which is the universal
314 value. */
316 tree VN_TOP;
318 /* Unique counter for our value ids. */
320 static unsigned int next_value_id;
322 /* Next DFS number and the stack for strongly connected component
323 detection. */
325 static unsigned int next_dfs_num;
326 static vec<tree> sccstack;
330 /* Table of vn_ssa_aux_t's, one per ssa_name. The vn_ssa_aux_t objects
331 are allocated on an obstack for locality reasons, and to free them
332 without looping over the vec. */
334 static vec<vn_ssa_aux_t> vn_ssa_aux_table;
335 static struct obstack vn_ssa_aux_obstack;
337 /* Return the value numbering information for a given SSA name. */
339 vn_ssa_aux_t
340 VN_INFO (tree name)
342 vn_ssa_aux_t res = vn_ssa_aux_table[SSA_NAME_VERSION (name)];
343 gcc_checking_assert (res);
344 return res;
347 /* Set the value numbering info for a given SSA name to a given
348 value. */
350 static inline void
351 VN_INFO_SET (tree name, vn_ssa_aux_t value)
353 vn_ssa_aux_table[SSA_NAME_VERSION (name)] = value;
356 /* Initialize the value numbering info for a given SSA name.
357 This should be called just once for every SSA name. */
359 vn_ssa_aux_t
360 VN_INFO_GET (tree name)
362 vn_ssa_aux_t newinfo;
364 newinfo = XOBNEW (&vn_ssa_aux_obstack, struct vn_ssa_aux);
365 memset (newinfo, 0, sizeof (struct vn_ssa_aux));
366 if (SSA_NAME_VERSION (name) >= vn_ssa_aux_table.length ())
367 vn_ssa_aux_table.safe_grow (SSA_NAME_VERSION (name) + 1);
368 vn_ssa_aux_table[SSA_NAME_VERSION (name)] = newinfo;
369 return newinfo;
373 /* Get the representative expression for the SSA_NAME NAME. Returns
374 the representative SSA_NAME if there is no expression associated with it. */
376 tree
377 vn_get_expr_for (tree name)
379 vn_ssa_aux_t vn = VN_INFO (name);
380 gimple def_stmt;
381 tree expr = NULL_TREE;
382 enum tree_code code;
384 if (vn->valnum == VN_TOP)
385 return name;
387 /* If the value-number is a constant it is the representative
388 expression. */
389 if (TREE_CODE (vn->valnum) != SSA_NAME)
390 return vn->valnum;
392 /* Get to the information of the value of this SSA_NAME. */
393 vn = VN_INFO (vn->valnum);
395 /* If the value-number is a constant it is the representative
396 expression. */
397 if (TREE_CODE (vn->valnum) != SSA_NAME)
398 return vn->valnum;
400 /* Else if we have an expression, return it. */
401 if (vn->expr != NULL_TREE)
402 return vn->expr;
404 /* Otherwise use the defining statement to build the expression. */
405 def_stmt = SSA_NAME_DEF_STMT (vn->valnum);
407 /* If the value number is not an assignment use it directly. */
408 if (!is_gimple_assign (def_stmt))
409 return vn->valnum;
411 /* FIXME tuples. This is incomplete and likely will miss some
412 simplifications. */
413 code = gimple_assign_rhs_code (def_stmt);
414 switch (TREE_CODE_CLASS (code))
416 case tcc_reference:
417 if ((code == REALPART_EXPR
418 || code == IMAGPART_EXPR
419 || code == VIEW_CONVERT_EXPR)
420 && TREE_CODE (TREE_OPERAND (gimple_assign_rhs1 (def_stmt),
421 0)) == SSA_NAME)
422 expr = fold_build1 (code,
423 gimple_expr_type (def_stmt),
424 TREE_OPERAND (gimple_assign_rhs1 (def_stmt), 0));
425 break;
427 case tcc_unary:
428 expr = fold_build1 (code,
429 gimple_expr_type (def_stmt),
430 gimple_assign_rhs1 (def_stmt));
431 break;
433 case tcc_binary:
434 expr = fold_build2 (code,
435 gimple_expr_type (def_stmt),
436 gimple_assign_rhs1 (def_stmt),
437 gimple_assign_rhs2 (def_stmt));
438 break;
440 case tcc_exceptional:
441 if (code == CONSTRUCTOR
442 && TREE_CODE
443 (TREE_TYPE (gimple_assign_rhs1 (def_stmt))) == VECTOR_TYPE)
444 expr = gimple_assign_rhs1 (def_stmt);
445 break;
447 default:;
449 if (expr == NULL_TREE)
450 return vn->valnum;
452 /* Cache the expression. */
453 vn->expr = expr;
455 return expr;
458 /* Return the vn_kind the expression computed by the stmt should be
459 associated with. */
461 enum vn_kind
462 vn_get_stmt_kind (gimple stmt)
464 switch (gimple_code (stmt))
466 case GIMPLE_CALL:
467 return VN_REFERENCE;
468 case GIMPLE_PHI:
469 return VN_PHI;
470 case GIMPLE_ASSIGN:
472 enum tree_code code = gimple_assign_rhs_code (stmt);
473 tree rhs1 = gimple_assign_rhs1 (stmt);
474 switch (get_gimple_rhs_class (code))
476 case GIMPLE_UNARY_RHS:
477 case GIMPLE_BINARY_RHS:
478 case GIMPLE_TERNARY_RHS:
479 return VN_NARY;
480 case GIMPLE_SINGLE_RHS:
481 switch (TREE_CODE_CLASS (code))
483 case tcc_reference:
484 /* VOP-less references can go through unary case. */
485 if ((code == REALPART_EXPR
486 || code == IMAGPART_EXPR
487 || code == VIEW_CONVERT_EXPR
488 || code == BIT_FIELD_REF)
489 && TREE_CODE (TREE_OPERAND (rhs1, 0)) == SSA_NAME)
490 return VN_NARY;
492 /* Fallthrough. */
493 case tcc_declaration:
494 return VN_REFERENCE;
496 case tcc_constant:
497 return VN_CONSTANT;
499 default:
500 if (code == ADDR_EXPR)
501 return (is_gimple_min_invariant (rhs1)
502 ? VN_CONSTANT : VN_REFERENCE);
503 else if (code == CONSTRUCTOR)
504 return VN_NARY;
505 return VN_NONE;
507 default:
508 return VN_NONE;
511 default:
512 return VN_NONE;
516 /* Lookup a value id for CONSTANT and return it. If it does not
517 exist returns 0. */
519 unsigned int
520 get_constant_value_id (tree constant)
522 vn_constant_s **slot;
523 struct vn_constant_s vc;
525 vc.hashcode = vn_hash_constant_with_type (constant);
526 vc.constant = constant;
527 slot = constant_to_value_id.find_slot_with_hash (&vc, vc.hashcode, NO_INSERT);
528 if (slot)
529 return (*slot)->value_id;
530 return 0;
533 /* Lookup a value id for CONSTANT, and if it does not exist, create a
534 new one and return it. If it does exist, return it. */
536 unsigned int
537 get_or_alloc_constant_value_id (tree constant)
539 vn_constant_s **slot;
540 struct vn_constant_s vc;
541 vn_constant_t vcp;
543 vc.hashcode = vn_hash_constant_with_type (constant);
544 vc.constant = constant;
545 slot = constant_to_value_id.find_slot_with_hash (&vc, vc.hashcode, INSERT);
546 if (*slot)
547 return (*slot)->value_id;
549 vcp = XNEW (struct vn_constant_s);
550 vcp->hashcode = vc.hashcode;
551 vcp->constant = constant;
552 vcp->value_id = get_next_value_id ();
553 *slot = vcp;
554 bitmap_set_bit (constant_value_ids, vcp->value_id);
555 return vcp->value_id;
558 /* Return true if V is a value id for a constant. */
560 bool
561 value_id_constant_p (unsigned int v)
563 return bitmap_bit_p (constant_value_ids, v);
566 /* Compute the hash for a reference operand VRO1. */
568 static hashval_t
569 vn_reference_op_compute_hash (const vn_reference_op_t vro1, hashval_t result)
571 result = iterative_hash_hashval_t (vro1->opcode, result);
572 if (vro1->op0)
573 result = iterative_hash_expr (vro1->op0, result);
574 if (vro1->op1)
575 result = iterative_hash_expr (vro1->op1, result);
576 if (vro1->op2)
577 result = iterative_hash_expr (vro1->op2, result);
578 return result;
581 /* Compute a hash for the reference operation VR1 and return it. */
583 hashval_t
584 vn_reference_compute_hash (const vn_reference_t vr1)
586 hashval_t result = 0;
587 int i;
588 vn_reference_op_t vro;
589 HOST_WIDE_INT off = -1;
590 bool deref = false;
592 FOR_EACH_VEC_ELT (vr1->operands, i, vro)
594 if (vro->opcode == MEM_REF)
595 deref = true;
596 else if (vro->opcode != ADDR_EXPR)
597 deref = false;
598 if (vro->off != -1)
600 if (off == -1)
601 off = 0;
602 off += vro->off;
604 else
606 if (off != -1
607 && off != 0)
608 result = iterative_hash_hashval_t (off, result);
609 off = -1;
610 if (deref
611 && vro->opcode == ADDR_EXPR)
613 if (vro->op0)
615 tree op = TREE_OPERAND (vro->op0, 0);
616 result = iterative_hash_hashval_t (TREE_CODE (op), result);
617 result = iterative_hash_expr (op, result);
620 else
621 result = vn_reference_op_compute_hash (vro, result);
624 if (vr1->vuse)
625 result += SSA_NAME_VERSION (vr1->vuse);
627 return result;
630 /* Return true if reference operations VR1 and VR2 are equivalent. This
631 means they have the same set of operands and vuses. */
633 bool
634 vn_reference_eq (const_vn_reference_t const vr1, const_vn_reference_t const vr2)
636 unsigned i, j;
638 if (vr1->hashcode != vr2->hashcode)
639 return false;
641 /* Early out if this is not a hash collision. */
642 if (vr1->hashcode != vr2->hashcode)
643 return false;
645 /* The VOP needs to be the same. */
646 if (vr1->vuse != vr2->vuse)
647 return false;
649 /* If the operands are the same we are done. */
650 if (vr1->operands == vr2->operands)
651 return true;
653 if (!expressions_equal_p (TYPE_SIZE (vr1->type), TYPE_SIZE (vr2->type)))
654 return false;
656 if (INTEGRAL_TYPE_P (vr1->type)
657 && INTEGRAL_TYPE_P (vr2->type))
659 if (TYPE_PRECISION (vr1->type) != TYPE_PRECISION (vr2->type))
660 return false;
662 else if (INTEGRAL_TYPE_P (vr1->type)
663 && (TYPE_PRECISION (vr1->type)
664 != TREE_INT_CST_LOW (TYPE_SIZE (vr1->type))))
665 return false;
666 else if (INTEGRAL_TYPE_P (vr2->type)
667 && (TYPE_PRECISION (vr2->type)
668 != TREE_INT_CST_LOW (TYPE_SIZE (vr2->type))))
669 return false;
671 i = 0;
672 j = 0;
675 HOST_WIDE_INT off1 = 0, off2 = 0;
676 vn_reference_op_t vro1, vro2;
677 vn_reference_op_s tem1, tem2;
678 bool deref1 = false, deref2 = false;
679 for (; vr1->operands.iterate (i, &vro1); i++)
681 if (vro1->opcode == MEM_REF)
682 deref1 = true;
683 if (vro1->off == -1)
684 break;
685 off1 += vro1->off;
687 for (; vr2->operands.iterate (j, &vro2); j++)
689 if (vro2->opcode == MEM_REF)
690 deref2 = true;
691 if (vro2->off == -1)
692 break;
693 off2 += vro2->off;
695 if (off1 != off2)
696 return false;
697 if (deref1 && vro1->opcode == ADDR_EXPR)
699 memset (&tem1, 0, sizeof (tem1));
700 tem1.op0 = TREE_OPERAND (vro1->op0, 0);
701 tem1.type = TREE_TYPE (tem1.op0);
702 tem1.opcode = TREE_CODE (tem1.op0);
703 vro1 = &tem1;
704 deref1 = false;
706 if (deref2 && vro2->opcode == ADDR_EXPR)
708 memset (&tem2, 0, sizeof (tem2));
709 tem2.op0 = TREE_OPERAND (vro2->op0, 0);
710 tem2.type = TREE_TYPE (tem2.op0);
711 tem2.opcode = TREE_CODE (tem2.op0);
712 vro2 = &tem2;
713 deref2 = false;
715 if (deref1 != deref2)
716 return false;
717 if (!vn_reference_op_eq (vro1, vro2))
718 return false;
719 ++j;
720 ++i;
722 while (vr1->operands.length () != i
723 || vr2->operands.length () != j);
725 return true;
728 /* Copy the operations present in load/store REF into RESULT, a vector of
729 vn_reference_op_s's. */
731 void
732 copy_reference_ops_from_ref (tree ref, vec<vn_reference_op_s> *result)
734 if (TREE_CODE (ref) == TARGET_MEM_REF)
736 vn_reference_op_s temp;
738 result->reserve (3);
740 memset (&temp, 0, sizeof (temp));
741 temp.type = TREE_TYPE (ref);
742 temp.opcode = TREE_CODE (ref);
743 temp.op0 = TMR_INDEX (ref);
744 temp.op1 = TMR_STEP (ref);
745 temp.op2 = TMR_OFFSET (ref);
746 temp.off = -1;
747 result->quick_push (temp);
749 memset (&temp, 0, sizeof (temp));
750 temp.type = NULL_TREE;
751 temp.opcode = ERROR_MARK;
752 temp.op0 = TMR_INDEX2 (ref);
753 temp.off = -1;
754 result->quick_push (temp);
756 memset (&temp, 0, sizeof (temp));
757 temp.type = NULL_TREE;
758 temp.opcode = TREE_CODE (TMR_BASE (ref));
759 temp.op0 = TMR_BASE (ref);
760 temp.off = -1;
761 result->quick_push (temp);
762 return;
765 /* For non-calls, store the information that makes up the address. */
766 tree orig = ref;
767 while (ref)
769 vn_reference_op_s temp;
771 memset (&temp, 0, sizeof (temp));
772 temp.type = TREE_TYPE (ref);
773 temp.opcode = TREE_CODE (ref);
774 temp.off = -1;
776 switch (temp.opcode)
778 case MODIFY_EXPR:
779 temp.op0 = TREE_OPERAND (ref, 1);
780 break;
781 case WITH_SIZE_EXPR:
782 temp.op0 = TREE_OPERAND (ref, 1);
783 temp.off = 0;
784 break;
785 case MEM_REF:
786 /* The base address gets its own vn_reference_op_s structure. */
787 temp.op0 = TREE_OPERAND (ref, 1);
788 if (tree_fits_shwi_p (TREE_OPERAND (ref, 1)))
789 temp.off = tree_to_shwi (TREE_OPERAND (ref, 1));
790 break;
791 case BIT_FIELD_REF:
792 /* Record bits and position. */
793 temp.op0 = TREE_OPERAND (ref, 1);
794 temp.op1 = TREE_OPERAND (ref, 2);
795 break;
796 case COMPONENT_REF:
797 /* The field decl is enough to unambiguously specify the field,
798 a matching type is not necessary and a mismatching type
799 is always a spurious difference. */
800 temp.type = NULL_TREE;
801 temp.op0 = TREE_OPERAND (ref, 1);
802 temp.op1 = TREE_OPERAND (ref, 2);
804 tree this_offset = component_ref_field_offset (ref);
805 if (this_offset
806 && TREE_CODE (this_offset) == INTEGER_CST)
808 tree bit_offset = DECL_FIELD_BIT_OFFSET (TREE_OPERAND (ref, 1));
809 if (TREE_INT_CST_LOW (bit_offset) % BITS_PER_UNIT == 0)
811 double_int off
812 = tree_to_double_int (this_offset)
813 + tree_to_double_int (bit_offset)
814 .rshift (BITS_PER_UNIT == 8
815 ? 3 : exact_log2 (BITS_PER_UNIT));
816 if (off.fits_shwi ()
817 /* Probibit value-numbering zero offset components
818 of addresses the same before the pass folding
819 __builtin_object_size had a chance to run
820 (checking cfun->after_inlining does the
821 trick here). */
822 && (TREE_CODE (orig) != ADDR_EXPR
823 || !off.is_zero ()
824 || cfun->after_inlining))
825 temp.off = off.low;
829 break;
830 case ARRAY_RANGE_REF:
831 case ARRAY_REF:
832 /* Record index as operand. */
833 temp.op0 = TREE_OPERAND (ref, 1);
834 /* Always record lower bounds and element size. */
835 temp.op1 = array_ref_low_bound (ref);
836 temp.op2 = array_ref_element_size (ref);
837 if (TREE_CODE (temp.op0) == INTEGER_CST
838 && TREE_CODE (temp.op1) == INTEGER_CST
839 && TREE_CODE (temp.op2) == INTEGER_CST)
841 double_int off = tree_to_double_int (temp.op0);
842 off += -tree_to_double_int (temp.op1);
843 off *= tree_to_double_int (temp.op2);
844 if (off.fits_shwi ())
845 temp.off = off.low;
847 break;
848 case VAR_DECL:
849 if (DECL_HARD_REGISTER (ref))
851 temp.op0 = ref;
852 break;
854 /* Fallthru. */
855 case PARM_DECL:
856 case CONST_DECL:
857 case RESULT_DECL:
858 /* Canonicalize decls to MEM[&decl] which is what we end up with
859 when valueizing MEM[ptr] with ptr = &decl. */
860 temp.opcode = MEM_REF;
861 temp.op0 = build_int_cst (build_pointer_type (TREE_TYPE (ref)), 0);
862 temp.off = 0;
863 result->safe_push (temp);
864 temp.opcode = ADDR_EXPR;
865 temp.op0 = build1 (ADDR_EXPR, TREE_TYPE (temp.op0), ref);
866 temp.type = TREE_TYPE (temp.op0);
867 temp.off = -1;
868 break;
869 case STRING_CST:
870 case INTEGER_CST:
871 case COMPLEX_CST:
872 case VECTOR_CST:
873 case REAL_CST:
874 case FIXED_CST:
875 case CONSTRUCTOR:
876 case SSA_NAME:
877 temp.op0 = ref;
878 break;
879 case ADDR_EXPR:
880 if (is_gimple_min_invariant (ref))
882 temp.op0 = ref;
883 break;
885 /* Fallthrough. */
886 /* These are only interesting for their operands, their
887 existence, and their type. They will never be the last
888 ref in the chain of references (IE they require an
889 operand), so we don't have to put anything
890 for op* as it will be handled by the iteration */
891 case REALPART_EXPR:
892 case VIEW_CONVERT_EXPR:
893 temp.off = 0;
894 break;
895 case IMAGPART_EXPR:
896 /* This is only interesting for its constant offset. */
897 temp.off = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (ref)));
898 break;
899 default:
900 gcc_unreachable ();
902 result->safe_push (temp);
904 if (REFERENCE_CLASS_P (ref)
905 || TREE_CODE (ref) == MODIFY_EXPR
906 || TREE_CODE (ref) == WITH_SIZE_EXPR
907 || (TREE_CODE (ref) == ADDR_EXPR
908 && !is_gimple_min_invariant (ref)))
909 ref = TREE_OPERAND (ref, 0);
910 else
911 ref = NULL_TREE;
915 /* Build a alias-oracle reference abstraction in *REF from the vn_reference
916 operands in *OPS, the reference alias set SET and the reference type TYPE.
917 Return true if something useful was produced. */
919 bool
920 ao_ref_init_from_vn_reference (ao_ref *ref,
921 alias_set_type set, tree type,
922 vec<vn_reference_op_s> ops)
924 vn_reference_op_t op;
925 unsigned i;
926 tree base = NULL_TREE;
927 tree *op0_p = &base;
928 HOST_WIDE_INT offset = 0;
929 HOST_WIDE_INT max_size;
930 HOST_WIDE_INT size = -1;
931 tree size_tree = NULL_TREE;
932 alias_set_type base_alias_set = -1;
934 /* First get the final access size from just the outermost expression. */
935 op = &ops[0];
936 if (op->opcode == COMPONENT_REF)
937 size_tree = DECL_SIZE (op->op0);
938 else if (op->opcode == BIT_FIELD_REF)
939 size_tree = op->op0;
940 else
942 enum machine_mode mode = TYPE_MODE (type);
943 if (mode == BLKmode)
944 size_tree = TYPE_SIZE (type);
945 else
946 size = GET_MODE_BITSIZE (mode);
948 if (size_tree != NULL_TREE)
950 if (!tree_fits_uhwi_p (size_tree))
951 size = -1;
952 else
953 size = tree_to_uhwi (size_tree);
956 /* Initially, maxsize is the same as the accessed element size.
957 In the following it will only grow (or become -1). */
958 max_size = size;
960 /* Compute cumulative bit-offset for nested component-refs and array-refs,
961 and find the ultimate containing object. */
962 FOR_EACH_VEC_ELT (ops, i, op)
964 switch (op->opcode)
966 /* These may be in the reference ops, but we cannot do anything
967 sensible with them here. */
968 case ADDR_EXPR:
969 /* Apart from ADDR_EXPR arguments to MEM_REF. */
970 if (base != NULL_TREE
971 && TREE_CODE (base) == MEM_REF
972 && op->op0
973 && DECL_P (TREE_OPERAND (op->op0, 0)))
975 vn_reference_op_t pop = &ops[i-1];
976 base = TREE_OPERAND (op->op0, 0);
977 if (pop->off == -1)
979 max_size = -1;
980 offset = 0;
982 else
983 offset += pop->off * BITS_PER_UNIT;
984 op0_p = NULL;
985 break;
987 /* Fallthru. */
988 case CALL_EXPR:
989 return false;
991 /* Record the base objects. */
992 case MEM_REF:
993 base_alias_set = get_deref_alias_set (op->op0);
994 *op0_p = build2 (MEM_REF, op->type,
995 NULL_TREE, op->op0);
996 op0_p = &TREE_OPERAND (*op0_p, 0);
997 break;
999 case VAR_DECL:
1000 case PARM_DECL:
1001 case RESULT_DECL:
1002 case SSA_NAME:
1003 *op0_p = op->op0;
1004 op0_p = NULL;
1005 break;
1007 /* And now the usual component-reference style ops. */
1008 case BIT_FIELD_REF:
1009 offset += tree_to_shwi (op->op1);
1010 break;
1012 case COMPONENT_REF:
1014 tree field = op->op0;
1015 /* We do not have a complete COMPONENT_REF tree here so we
1016 cannot use component_ref_field_offset. Do the interesting
1017 parts manually. */
1019 if (op->op1
1020 || !tree_fits_uhwi_p (DECL_FIELD_OFFSET (field)))
1021 max_size = -1;
1022 else
1024 offset += (tree_to_uhwi (DECL_FIELD_OFFSET (field))
1025 * BITS_PER_UNIT);
1026 offset += TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (field));
1028 break;
1031 case ARRAY_RANGE_REF:
1032 case ARRAY_REF:
1033 /* We recorded the lower bound and the element size. */
1034 if (!tree_fits_shwi_p (op->op0)
1035 || !tree_fits_shwi_p (op->op1)
1036 || !tree_fits_shwi_p (op->op2))
1037 max_size = -1;
1038 else
1040 HOST_WIDE_INT hindex = tree_to_shwi (op->op0);
1041 hindex -= tree_to_shwi (op->op1);
1042 hindex *= tree_to_shwi (op->op2);
1043 hindex *= BITS_PER_UNIT;
1044 offset += hindex;
1046 break;
1048 case REALPART_EXPR:
1049 break;
1051 case IMAGPART_EXPR:
1052 offset += size;
1053 break;
1055 case VIEW_CONVERT_EXPR:
1056 break;
1058 case STRING_CST:
1059 case INTEGER_CST:
1060 case COMPLEX_CST:
1061 case VECTOR_CST:
1062 case REAL_CST:
1063 case CONSTRUCTOR:
1064 case CONST_DECL:
1065 return false;
1067 default:
1068 return false;
1072 if (base == NULL_TREE)
1073 return false;
1075 ref->ref = NULL_TREE;
1076 ref->base = base;
1077 ref->offset = offset;
1078 ref->size = size;
1079 ref->max_size = max_size;
1080 ref->ref_alias_set = set;
1081 if (base_alias_set != -1)
1082 ref->base_alias_set = base_alias_set;
1083 else
1084 ref->base_alias_set = get_alias_set (base);
1085 /* We discount volatiles from value-numbering elsewhere. */
1086 ref->volatile_p = false;
1088 return true;
1091 /* Copy the operations present in load/store/call REF into RESULT, a vector of
1092 vn_reference_op_s's. */
1094 void
1095 copy_reference_ops_from_call (gimple call,
1096 vec<vn_reference_op_s> *result)
1098 vn_reference_op_s temp;
1099 unsigned i;
1100 tree lhs = gimple_call_lhs (call);
1102 /* If 2 calls have a different non-ssa lhs, vdef value numbers should be
1103 different. By adding the lhs here in the vector, we ensure that the
1104 hashcode is different, guaranteeing a different value number. */
1105 if (lhs && TREE_CODE (lhs) != SSA_NAME)
1107 memset (&temp, 0, sizeof (temp));
1108 temp.opcode = MODIFY_EXPR;
1109 temp.type = TREE_TYPE (lhs);
1110 temp.op0 = lhs;
1111 temp.off = -1;
1112 result->safe_push (temp);
1115 /* Copy the type, opcode, function being called and static chain. */
1116 memset (&temp, 0, sizeof (temp));
1117 temp.type = gimple_call_return_type (call);
1118 temp.opcode = CALL_EXPR;
1119 temp.op0 = gimple_call_fn (call);
1120 temp.op1 = gimple_call_chain (call);
1121 temp.off = -1;
1122 result->safe_push (temp);
1124 /* Copy the call arguments. As they can be references as well,
1125 just chain them together. */
1126 for (i = 0; i < gimple_call_num_args (call); ++i)
1128 tree callarg = gimple_call_arg (call, i);
1129 copy_reference_ops_from_ref (callarg, result);
1133 /* Create a vector of vn_reference_op_s structures from CALL, a
1134 call statement. The vector is not shared. */
1136 static vec<vn_reference_op_s>
1137 create_reference_ops_from_call (gimple call)
1139 vec<vn_reference_op_s> result = vNULL;
1141 copy_reference_ops_from_call (call, &result);
1142 return result;
1145 /* Fold *& at position *I_P in a vn_reference_op_s vector *OPS. Updates
1146 *I_P to point to the last element of the replacement. */
1147 void
1148 vn_reference_fold_indirect (vec<vn_reference_op_s> *ops,
1149 unsigned int *i_p)
1151 unsigned int i = *i_p;
1152 vn_reference_op_t op = &(*ops)[i];
1153 vn_reference_op_t mem_op = &(*ops)[i - 1];
1154 tree addr_base;
1155 HOST_WIDE_INT addr_offset = 0;
1157 /* The only thing we have to do is from &OBJ.foo.bar add the offset
1158 from .foo.bar to the preceding MEM_REF offset and replace the
1159 address with &OBJ. */
1160 addr_base = get_addr_base_and_unit_offset (TREE_OPERAND (op->op0, 0),
1161 &addr_offset);
1162 gcc_checking_assert (addr_base && TREE_CODE (addr_base) != MEM_REF);
1163 if (addr_base != TREE_OPERAND (op->op0, 0))
1165 double_int off = tree_to_double_int (mem_op->op0);
1166 off = off.sext (TYPE_PRECISION (TREE_TYPE (mem_op->op0)));
1167 off += double_int::from_shwi (addr_offset);
1168 mem_op->op0 = double_int_to_tree (TREE_TYPE (mem_op->op0), off);
1169 op->op0 = build_fold_addr_expr (addr_base);
1170 if (tree_fits_shwi_p (mem_op->op0))
1171 mem_op->off = tree_to_shwi (mem_op->op0);
1172 else
1173 mem_op->off = -1;
1177 /* Fold *& at position *I_P in a vn_reference_op_s vector *OPS. Updates
1178 *I_P to point to the last element of the replacement. */
1179 static void
1180 vn_reference_maybe_forwprop_address (vec<vn_reference_op_s> *ops,
1181 unsigned int *i_p)
1183 unsigned int i = *i_p;
1184 vn_reference_op_t op = &(*ops)[i];
1185 vn_reference_op_t mem_op = &(*ops)[i - 1];
1186 gimple def_stmt;
1187 enum tree_code code;
1188 double_int off;
1190 def_stmt = SSA_NAME_DEF_STMT (op->op0);
1191 if (!is_gimple_assign (def_stmt))
1192 return;
1194 code = gimple_assign_rhs_code (def_stmt);
1195 if (code != ADDR_EXPR
1196 && code != POINTER_PLUS_EXPR)
1197 return;
1199 off = tree_to_double_int (mem_op->op0);
1200 off = off.sext (TYPE_PRECISION (TREE_TYPE (mem_op->op0)));
1202 /* The only thing we have to do is from &OBJ.foo.bar add the offset
1203 from .foo.bar to the preceding MEM_REF offset and replace the
1204 address with &OBJ. */
1205 if (code == ADDR_EXPR)
1207 tree addr, addr_base;
1208 HOST_WIDE_INT addr_offset;
1210 addr = gimple_assign_rhs1 (def_stmt);
1211 addr_base = get_addr_base_and_unit_offset (TREE_OPERAND (addr, 0),
1212 &addr_offset);
1213 if (!addr_base
1214 || TREE_CODE (addr_base) != MEM_REF)
1215 return;
1217 off += double_int::from_shwi (addr_offset);
1218 off += mem_ref_offset (addr_base);
1219 op->op0 = TREE_OPERAND (addr_base, 0);
1221 else
1223 tree ptr, ptroff;
1224 ptr = gimple_assign_rhs1 (def_stmt);
1225 ptroff = gimple_assign_rhs2 (def_stmt);
1226 if (TREE_CODE (ptr) != SSA_NAME
1227 || TREE_CODE (ptroff) != INTEGER_CST)
1228 return;
1230 off += tree_to_double_int (ptroff);
1231 op->op0 = ptr;
1234 mem_op->op0 = double_int_to_tree (TREE_TYPE (mem_op->op0), off);
1235 if (tree_fits_shwi_p (mem_op->op0))
1236 mem_op->off = tree_to_shwi (mem_op->op0);
1237 else
1238 mem_op->off = -1;
1239 if (TREE_CODE (op->op0) == SSA_NAME)
1240 op->op0 = SSA_VAL (op->op0);
1241 if (TREE_CODE (op->op0) != SSA_NAME)
1242 op->opcode = TREE_CODE (op->op0);
1244 /* And recurse. */
1245 if (TREE_CODE (op->op0) == SSA_NAME)
1246 vn_reference_maybe_forwprop_address (ops, i_p);
1247 else if (TREE_CODE (op->op0) == ADDR_EXPR)
1248 vn_reference_fold_indirect (ops, i_p);
1251 /* Optimize the reference REF to a constant if possible or return
1252 NULL_TREE if not. */
1254 tree
1255 fully_constant_vn_reference_p (vn_reference_t ref)
1257 vec<vn_reference_op_s> operands = ref->operands;
1258 vn_reference_op_t op;
1260 /* Try to simplify the translated expression if it is
1261 a call to a builtin function with at most two arguments. */
1262 op = &operands[0];
1263 if (op->opcode == CALL_EXPR
1264 && TREE_CODE (op->op0) == ADDR_EXPR
1265 && TREE_CODE (TREE_OPERAND (op->op0, 0)) == FUNCTION_DECL
1266 && DECL_BUILT_IN (TREE_OPERAND (op->op0, 0))
1267 && operands.length () >= 2
1268 && operands.length () <= 3)
1270 vn_reference_op_t arg0, arg1 = NULL;
1271 bool anyconst = false;
1272 arg0 = &operands[1];
1273 if (operands.length () > 2)
1274 arg1 = &operands[2];
1275 if (TREE_CODE_CLASS (arg0->opcode) == tcc_constant
1276 || (arg0->opcode == ADDR_EXPR
1277 && is_gimple_min_invariant (arg0->op0)))
1278 anyconst = true;
1279 if (arg1
1280 && (TREE_CODE_CLASS (arg1->opcode) == tcc_constant
1281 || (arg1->opcode == ADDR_EXPR
1282 && is_gimple_min_invariant (arg1->op0))))
1283 anyconst = true;
1284 if (anyconst)
1286 tree folded = build_call_expr (TREE_OPERAND (op->op0, 0),
1287 arg1 ? 2 : 1,
1288 arg0->op0,
1289 arg1 ? arg1->op0 : NULL);
1290 if (folded
1291 && TREE_CODE (folded) == NOP_EXPR)
1292 folded = TREE_OPERAND (folded, 0);
1293 if (folded
1294 && is_gimple_min_invariant (folded))
1295 return folded;
1299 /* Simplify reads from constant strings. */
1300 else if (op->opcode == ARRAY_REF
1301 && TREE_CODE (op->op0) == INTEGER_CST
1302 && integer_zerop (op->op1)
1303 && operands.length () == 2)
1305 vn_reference_op_t arg0;
1306 arg0 = &operands[1];
1307 if (arg0->opcode == STRING_CST
1308 && (TYPE_MODE (op->type)
1309 == TYPE_MODE (TREE_TYPE (TREE_TYPE (arg0->op0))))
1310 && GET_MODE_CLASS (TYPE_MODE (op->type)) == MODE_INT
1311 && GET_MODE_SIZE (TYPE_MODE (op->type)) == 1
1312 && tree_int_cst_sgn (op->op0) >= 0
1313 && compare_tree_int (op->op0, TREE_STRING_LENGTH (arg0->op0)) < 0)
1314 return build_int_cst_type (op->type,
1315 (TREE_STRING_POINTER (arg0->op0)
1316 [TREE_INT_CST_LOW (op->op0)]));
1319 return NULL_TREE;
1322 /* Transform any SSA_NAME's in a vector of vn_reference_op_s
1323 structures into their value numbers. This is done in-place, and
1324 the vector passed in is returned. *VALUEIZED_ANYTHING will specify
1325 whether any operands were valueized. */
1327 static vec<vn_reference_op_s>
1328 valueize_refs_1 (vec<vn_reference_op_s> orig, bool *valueized_anything)
1330 vn_reference_op_t vro;
1331 unsigned int i;
1333 *valueized_anything = false;
1335 FOR_EACH_VEC_ELT (orig, i, vro)
1337 if (vro->opcode == SSA_NAME
1338 || (vro->op0 && TREE_CODE (vro->op0) == SSA_NAME))
1340 tree tem = SSA_VAL (vro->op0);
1341 if (tem != vro->op0)
1343 *valueized_anything = true;
1344 vro->op0 = tem;
1346 /* If it transforms from an SSA_NAME to a constant, update
1347 the opcode. */
1348 if (TREE_CODE (vro->op0) != SSA_NAME && vro->opcode == SSA_NAME)
1349 vro->opcode = TREE_CODE (vro->op0);
1351 if (vro->op1 && TREE_CODE (vro->op1) == SSA_NAME)
1353 tree tem = SSA_VAL (vro->op1);
1354 if (tem != vro->op1)
1356 *valueized_anything = true;
1357 vro->op1 = tem;
1360 if (vro->op2 && TREE_CODE (vro->op2) == SSA_NAME)
1362 tree tem = SSA_VAL (vro->op2);
1363 if (tem != vro->op2)
1365 *valueized_anything = true;
1366 vro->op2 = tem;
1369 /* If it transforms from an SSA_NAME to an address, fold with
1370 a preceding indirect reference. */
1371 if (i > 0
1372 && vro->op0
1373 && TREE_CODE (vro->op0) == ADDR_EXPR
1374 && orig[i - 1].opcode == MEM_REF)
1375 vn_reference_fold_indirect (&orig, &i);
1376 else if (i > 0
1377 && vro->opcode == SSA_NAME
1378 && orig[i - 1].opcode == MEM_REF)
1379 vn_reference_maybe_forwprop_address (&orig, &i);
1380 /* If it transforms a non-constant ARRAY_REF into a constant
1381 one, adjust the constant offset. */
1382 else if (vro->opcode == ARRAY_REF
1383 && vro->off == -1
1384 && TREE_CODE (vro->op0) == INTEGER_CST
1385 && TREE_CODE (vro->op1) == INTEGER_CST
1386 && TREE_CODE (vro->op2) == INTEGER_CST)
1388 double_int off = tree_to_double_int (vro->op0);
1389 off += -tree_to_double_int (vro->op1);
1390 off *= tree_to_double_int (vro->op2);
1391 if (off.fits_shwi ())
1392 vro->off = off.low;
1396 return orig;
1399 static vec<vn_reference_op_s>
1400 valueize_refs (vec<vn_reference_op_s> orig)
1402 bool tem;
1403 return valueize_refs_1 (orig, &tem);
1406 static vec<vn_reference_op_s> shared_lookup_references;
1408 /* Create a vector of vn_reference_op_s structures from REF, a
1409 REFERENCE_CLASS_P tree. The vector is shared among all callers of
1410 this function. *VALUEIZED_ANYTHING will specify whether any
1411 operands were valueized. */
1413 static vec<vn_reference_op_s>
1414 valueize_shared_reference_ops_from_ref (tree ref, bool *valueized_anything)
1416 if (!ref)
1417 return vNULL;
1418 shared_lookup_references.truncate (0);
1419 copy_reference_ops_from_ref (ref, &shared_lookup_references);
1420 shared_lookup_references = valueize_refs_1 (shared_lookup_references,
1421 valueized_anything);
1422 return shared_lookup_references;
1425 /* Create a vector of vn_reference_op_s structures from CALL, a
1426 call statement. The vector is shared among all callers of
1427 this function. */
1429 static vec<vn_reference_op_s>
1430 valueize_shared_reference_ops_from_call (gimple call)
1432 if (!call)
1433 return vNULL;
1434 shared_lookup_references.truncate (0);
1435 copy_reference_ops_from_call (call, &shared_lookup_references);
1436 shared_lookup_references = valueize_refs (shared_lookup_references);
1437 return shared_lookup_references;
1440 /* Lookup a SCCVN reference operation VR in the current hash table.
1441 Returns the resulting value number if it exists in the hash table,
1442 NULL_TREE otherwise. VNRESULT will be filled in with the actual
1443 vn_reference_t stored in the hashtable if something is found. */
1445 static tree
1446 vn_reference_lookup_1 (vn_reference_t vr, vn_reference_t *vnresult)
1448 vn_reference_s **slot;
1449 hashval_t hash;
1451 hash = vr->hashcode;
1452 slot = current_info->references.find_slot_with_hash (vr, hash, NO_INSERT);
1453 if (!slot && current_info == optimistic_info)
1454 slot = valid_info->references.find_slot_with_hash (vr, hash, NO_INSERT);
1455 if (slot)
1457 if (vnresult)
1458 *vnresult = (vn_reference_t)*slot;
1459 return ((vn_reference_t)*slot)->result;
1462 return NULL_TREE;
1465 static tree *last_vuse_ptr;
1466 static vn_lookup_kind vn_walk_kind;
1467 static vn_lookup_kind default_vn_walk_kind;
1469 /* Callback for walk_non_aliased_vuses. Adjusts the vn_reference_t VR_
1470 with the current VUSE and performs the expression lookup. */
1472 static void *
1473 vn_reference_lookup_2 (ao_ref *op ATTRIBUTE_UNUSED, tree vuse,
1474 unsigned int cnt, void *vr_)
1476 vn_reference_t vr = (vn_reference_t)vr_;
1477 vn_reference_s **slot;
1478 hashval_t hash;
1480 /* This bounds the stmt walks we perform on reference lookups
1481 to O(1) instead of O(N) where N is the number of dominating
1482 stores. */
1483 if (cnt > (unsigned) PARAM_VALUE (PARAM_SCCVN_MAX_ALIAS_QUERIES_PER_ACCESS))
1484 return (void *)-1;
1486 if (last_vuse_ptr)
1487 *last_vuse_ptr = vuse;
1489 /* Fixup vuse and hash. */
1490 if (vr->vuse)
1491 vr->hashcode = vr->hashcode - SSA_NAME_VERSION (vr->vuse);
1492 vr->vuse = SSA_VAL (vuse);
1493 if (vr->vuse)
1494 vr->hashcode = vr->hashcode + SSA_NAME_VERSION (vr->vuse);
1496 hash = vr->hashcode;
1497 slot = current_info->references.find_slot_with_hash (vr, hash, NO_INSERT);
1498 if (!slot && current_info == optimistic_info)
1499 slot = valid_info->references.find_slot_with_hash (vr, hash, NO_INSERT);
1500 if (slot)
1501 return *slot;
1503 return NULL;
1506 /* Lookup an existing or insert a new vn_reference entry into the
1507 value table for the VUSE, SET, TYPE, OPERANDS reference which
1508 has the value VALUE which is either a constant or an SSA name. */
1510 static vn_reference_t
1511 vn_reference_lookup_or_insert_for_pieces (tree vuse,
1512 alias_set_type set,
1513 tree type,
1514 vec<vn_reference_op_s,
1515 va_heap> operands,
1516 tree value)
1518 struct vn_reference_s vr1;
1519 vn_reference_t result;
1520 unsigned value_id;
1521 vr1.vuse = vuse;
1522 vr1.operands = operands;
1523 vr1.type = type;
1524 vr1.set = set;
1525 vr1.hashcode = vn_reference_compute_hash (&vr1);
1526 if (vn_reference_lookup_1 (&vr1, &result))
1527 return result;
1528 if (TREE_CODE (value) == SSA_NAME)
1529 value_id = VN_INFO (value)->value_id;
1530 else
1531 value_id = get_or_alloc_constant_value_id (value);
1532 return vn_reference_insert_pieces (vuse, set, type,
1533 operands.copy (), value, value_id);
1536 /* Callback for walk_non_aliased_vuses. Tries to perform a lookup
1537 from the statement defining VUSE and if not successful tries to
1538 translate *REFP and VR_ through an aggregate copy at the definition
1539 of VUSE. */
1541 static void *
1542 vn_reference_lookup_3 (ao_ref *ref, tree vuse, void *vr_)
1544 vn_reference_t vr = (vn_reference_t)vr_;
1545 gimple def_stmt = SSA_NAME_DEF_STMT (vuse);
1546 tree base;
1547 HOST_WIDE_INT offset, maxsize;
1548 static vec<vn_reference_op_s>
1549 lhs_ops = vNULL;
1550 ao_ref lhs_ref;
1551 bool lhs_ref_ok = false;
1553 /* First try to disambiguate after value-replacing in the definitions LHS. */
1554 if (is_gimple_assign (def_stmt))
1556 vec<vn_reference_op_s> tem;
1557 tree lhs = gimple_assign_lhs (def_stmt);
1558 bool valueized_anything = false;
1559 /* Avoid re-allocation overhead. */
1560 lhs_ops.truncate (0);
1561 copy_reference_ops_from_ref (lhs, &lhs_ops);
1562 tem = lhs_ops;
1563 lhs_ops = valueize_refs_1 (lhs_ops, &valueized_anything);
1564 gcc_assert (lhs_ops == tem);
1565 if (valueized_anything)
1567 lhs_ref_ok = ao_ref_init_from_vn_reference (&lhs_ref,
1568 get_alias_set (lhs),
1569 TREE_TYPE (lhs), lhs_ops);
1570 if (lhs_ref_ok
1571 && !refs_may_alias_p_1 (ref, &lhs_ref, true))
1572 return NULL;
1574 else
1576 ao_ref_init (&lhs_ref, lhs);
1577 lhs_ref_ok = true;
1581 base = ao_ref_base (ref);
1582 offset = ref->offset;
1583 maxsize = ref->max_size;
1585 /* If we cannot constrain the size of the reference we cannot
1586 test if anything kills it. */
1587 if (maxsize == -1)
1588 return (void *)-1;
1590 /* We can't deduce anything useful from clobbers. */
1591 if (gimple_clobber_p (def_stmt))
1592 return (void *)-1;
1594 /* def_stmt may-defs *ref. See if we can derive a value for *ref
1595 from that definition.
1596 1) Memset. */
1597 if (is_gimple_reg_type (vr->type)
1598 && gimple_call_builtin_p (def_stmt, BUILT_IN_MEMSET)
1599 && integer_zerop (gimple_call_arg (def_stmt, 1))
1600 && tree_fits_uhwi_p (gimple_call_arg (def_stmt, 2))
1601 && TREE_CODE (gimple_call_arg (def_stmt, 0)) == ADDR_EXPR)
1603 tree ref2 = TREE_OPERAND (gimple_call_arg (def_stmt, 0), 0);
1604 tree base2;
1605 HOST_WIDE_INT offset2, size2, maxsize2;
1606 base2 = get_ref_base_and_extent (ref2, &offset2, &size2, &maxsize2);
1607 size2 = tree_to_uhwi (gimple_call_arg (def_stmt, 2)) * 8;
1608 if ((unsigned HOST_WIDE_INT)size2 / 8
1609 == tree_to_uhwi (gimple_call_arg (def_stmt, 2))
1610 && maxsize2 != -1
1611 && operand_equal_p (base, base2, 0)
1612 && offset2 <= offset
1613 && offset2 + size2 >= offset + maxsize)
1615 tree val = build_zero_cst (vr->type);
1616 return vn_reference_lookup_or_insert_for_pieces
1617 (vuse, vr->set, vr->type, vr->operands, val);
1621 /* 2) Assignment from an empty CONSTRUCTOR. */
1622 else if (is_gimple_reg_type (vr->type)
1623 && gimple_assign_single_p (def_stmt)
1624 && gimple_assign_rhs_code (def_stmt) == CONSTRUCTOR
1625 && CONSTRUCTOR_NELTS (gimple_assign_rhs1 (def_stmt)) == 0)
1627 tree base2;
1628 HOST_WIDE_INT offset2, size2, maxsize2;
1629 base2 = get_ref_base_and_extent (gimple_assign_lhs (def_stmt),
1630 &offset2, &size2, &maxsize2);
1631 if (maxsize2 != -1
1632 && operand_equal_p (base, base2, 0)
1633 && offset2 <= offset
1634 && offset2 + size2 >= offset + maxsize)
1636 tree val = build_zero_cst (vr->type);
1637 return vn_reference_lookup_or_insert_for_pieces
1638 (vuse, vr->set, vr->type, vr->operands, val);
1642 /* 3) Assignment from a constant. We can use folds native encode/interpret
1643 routines to extract the assigned bits. */
1644 else if (vn_walk_kind == VN_WALKREWRITE
1645 && CHAR_BIT == 8 && BITS_PER_UNIT == 8
1646 && ref->size == maxsize
1647 && maxsize % BITS_PER_UNIT == 0
1648 && offset % BITS_PER_UNIT == 0
1649 && is_gimple_reg_type (vr->type)
1650 && gimple_assign_single_p (def_stmt)
1651 && is_gimple_min_invariant (gimple_assign_rhs1 (def_stmt)))
1653 tree base2;
1654 HOST_WIDE_INT offset2, size2, maxsize2;
1655 base2 = get_ref_base_and_extent (gimple_assign_lhs (def_stmt),
1656 &offset2, &size2, &maxsize2);
1657 if (maxsize2 != -1
1658 && maxsize2 == size2
1659 && size2 % BITS_PER_UNIT == 0
1660 && offset2 % BITS_PER_UNIT == 0
1661 && operand_equal_p (base, base2, 0)
1662 && offset2 <= offset
1663 && offset2 + size2 >= offset + maxsize)
1665 /* We support up to 512-bit values (for V8DFmode). */
1666 unsigned char buffer[64];
1667 int len;
1669 len = native_encode_expr (gimple_assign_rhs1 (def_stmt),
1670 buffer, sizeof (buffer));
1671 if (len > 0)
1673 tree val = native_interpret_expr (vr->type,
1674 buffer
1675 + ((offset - offset2)
1676 / BITS_PER_UNIT),
1677 ref->size / BITS_PER_UNIT);
1678 if (val)
1679 return vn_reference_lookup_or_insert_for_pieces
1680 (vuse, vr->set, vr->type, vr->operands, val);
1685 /* 4) Assignment from an SSA name which definition we may be able
1686 to access pieces from. */
1687 else if (ref->size == maxsize
1688 && is_gimple_reg_type (vr->type)
1689 && gimple_assign_single_p (def_stmt)
1690 && TREE_CODE (gimple_assign_rhs1 (def_stmt)) == SSA_NAME)
1692 tree rhs1 = gimple_assign_rhs1 (def_stmt);
1693 gimple def_stmt2 = SSA_NAME_DEF_STMT (rhs1);
1694 if (is_gimple_assign (def_stmt2)
1695 && (gimple_assign_rhs_code (def_stmt2) == COMPLEX_EXPR
1696 || gimple_assign_rhs_code (def_stmt2) == CONSTRUCTOR)
1697 && types_compatible_p (vr->type, TREE_TYPE (TREE_TYPE (rhs1))))
1699 tree base2;
1700 HOST_WIDE_INT offset2, size2, maxsize2, off;
1701 base2 = get_ref_base_and_extent (gimple_assign_lhs (def_stmt),
1702 &offset2, &size2, &maxsize2);
1703 off = offset - offset2;
1704 if (maxsize2 != -1
1705 && maxsize2 == size2
1706 && operand_equal_p (base, base2, 0)
1707 && offset2 <= offset
1708 && offset2 + size2 >= offset + maxsize)
1710 tree val = NULL_TREE;
1711 HOST_WIDE_INT elsz
1712 = TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (TREE_TYPE (rhs1))));
1713 if (gimple_assign_rhs_code (def_stmt2) == COMPLEX_EXPR)
1715 if (off == 0)
1716 val = gimple_assign_rhs1 (def_stmt2);
1717 else if (off == elsz)
1718 val = gimple_assign_rhs2 (def_stmt2);
1720 else if (gimple_assign_rhs_code (def_stmt2) == CONSTRUCTOR
1721 && off % elsz == 0)
1723 tree ctor = gimple_assign_rhs1 (def_stmt2);
1724 unsigned i = off / elsz;
1725 if (i < CONSTRUCTOR_NELTS (ctor))
1727 constructor_elt *elt = CONSTRUCTOR_ELT (ctor, i);
1728 if (TREE_CODE (TREE_TYPE (rhs1)) == VECTOR_TYPE)
1730 if (TREE_CODE (TREE_TYPE (elt->value))
1731 != VECTOR_TYPE)
1732 val = elt->value;
1736 if (val)
1737 return vn_reference_lookup_or_insert_for_pieces
1738 (vuse, vr->set, vr->type, vr->operands, val);
1743 /* 5) For aggregate copies translate the reference through them if
1744 the copy kills ref. */
1745 else if (vn_walk_kind == VN_WALKREWRITE
1746 && gimple_assign_single_p (def_stmt)
1747 && (DECL_P (gimple_assign_rhs1 (def_stmt))
1748 || TREE_CODE (gimple_assign_rhs1 (def_stmt)) == MEM_REF
1749 || handled_component_p (gimple_assign_rhs1 (def_stmt))))
1751 tree base2;
1752 HOST_WIDE_INT offset2, size2, maxsize2;
1753 int i, j;
1754 vec<vn_reference_op_s>
1755 rhs = vNULL;
1756 vn_reference_op_t vro;
1757 ao_ref r;
1759 if (!lhs_ref_ok)
1760 return (void *)-1;
1762 /* See if the assignment kills REF. */
1763 base2 = ao_ref_base (&lhs_ref);
1764 offset2 = lhs_ref.offset;
1765 size2 = lhs_ref.size;
1766 maxsize2 = lhs_ref.max_size;
1767 if (maxsize2 == -1
1768 || (base != base2 && !operand_equal_p (base, base2, 0))
1769 || offset2 > offset
1770 || offset2 + size2 < offset + maxsize)
1771 return (void *)-1;
1773 /* Find the common base of ref and the lhs. lhs_ops already
1774 contains valueized operands for the lhs. */
1775 i = vr->operands.length () - 1;
1776 j = lhs_ops.length () - 1;
1777 while (j >= 0 && i >= 0
1778 && vn_reference_op_eq (&vr->operands[i], &lhs_ops[j]))
1780 i--;
1781 j--;
1784 /* ??? The innermost op should always be a MEM_REF and we already
1785 checked that the assignment to the lhs kills vr. Thus for
1786 aggregate copies using char[] types the vn_reference_op_eq
1787 may fail when comparing types for compatibility. But we really
1788 don't care here - further lookups with the rewritten operands
1789 will simply fail if we messed up types too badly. */
1790 if (j == 0 && i >= 0
1791 && lhs_ops[0].opcode == MEM_REF
1792 && lhs_ops[0].off != -1
1793 && (lhs_ops[0].off == vr->operands[i].off))
1794 i--, j--;
1796 /* i now points to the first additional op.
1797 ??? LHS may not be completely contained in VR, one or more
1798 VIEW_CONVERT_EXPRs could be in its way. We could at least
1799 try handling outermost VIEW_CONVERT_EXPRs. */
1800 if (j != -1)
1801 return (void *)-1;
1803 /* Now re-write REF to be based on the rhs of the assignment. */
1804 copy_reference_ops_from_ref (gimple_assign_rhs1 (def_stmt), &rhs);
1805 /* We need to pre-pend vr->operands[0..i] to rhs. */
1806 if (i + 1 + rhs.length () > vr->operands.length ())
1808 vec<vn_reference_op_s> old = vr->operands;
1809 vr->operands.safe_grow (i + 1 + rhs.length ());
1810 if (old == shared_lookup_references
1811 && vr->operands != old)
1812 shared_lookup_references = vNULL;
1814 else
1815 vr->operands.truncate (i + 1 + rhs.length ());
1816 FOR_EACH_VEC_ELT (rhs, j, vro)
1817 vr->operands[i + 1 + j] = *vro;
1818 rhs.release ();
1819 vr->operands = valueize_refs (vr->operands);
1820 vr->hashcode = vn_reference_compute_hash (vr);
1822 /* Adjust *ref from the new operands. */
1823 if (!ao_ref_init_from_vn_reference (&r, vr->set, vr->type, vr->operands))
1824 return (void *)-1;
1825 /* This can happen with bitfields. */
1826 if (ref->size != r.size)
1827 return (void *)-1;
1828 *ref = r;
1830 /* Do not update last seen VUSE after translating. */
1831 last_vuse_ptr = NULL;
1833 /* Keep looking for the adjusted *REF / VR pair. */
1834 return NULL;
1837 /* 6) For memcpy copies translate the reference through them if
1838 the copy kills ref. */
1839 else if (vn_walk_kind == VN_WALKREWRITE
1840 && is_gimple_reg_type (vr->type)
1841 /* ??? Handle BCOPY as well. */
1842 && (gimple_call_builtin_p (def_stmt, BUILT_IN_MEMCPY)
1843 || gimple_call_builtin_p (def_stmt, BUILT_IN_MEMPCPY)
1844 || gimple_call_builtin_p (def_stmt, BUILT_IN_MEMMOVE))
1845 && (TREE_CODE (gimple_call_arg (def_stmt, 0)) == ADDR_EXPR
1846 || TREE_CODE (gimple_call_arg (def_stmt, 0)) == SSA_NAME)
1847 && (TREE_CODE (gimple_call_arg (def_stmt, 1)) == ADDR_EXPR
1848 || TREE_CODE (gimple_call_arg (def_stmt, 1)) == SSA_NAME)
1849 && tree_fits_uhwi_p (gimple_call_arg (def_stmt, 2)))
1851 tree lhs, rhs;
1852 ao_ref r;
1853 HOST_WIDE_INT rhs_offset, copy_size, lhs_offset;
1854 vn_reference_op_s op;
1855 HOST_WIDE_INT at;
1858 /* Only handle non-variable, addressable refs. */
1859 if (ref->size != maxsize
1860 || offset % BITS_PER_UNIT != 0
1861 || ref->size % BITS_PER_UNIT != 0)
1862 return (void *)-1;
1864 /* Extract a pointer base and an offset for the destination. */
1865 lhs = gimple_call_arg (def_stmt, 0);
1866 lhs_offset = 0;
1867 if (TREE_CODE (lhs) == SSA_NAME)
1868 lhs = SSA_VAL (lhs);
1869 if (TREE_CODE (lhs) == ADDR_EXPR)
1871 tree tem = get_addr_base_and_unit_offset (TREE_OPERAND (lhs, 0),
1872 &lhs_offset);
1873 if (!tem)
1874 return (void *)-1;
1875 if (TREE_CODE (tem) == MEM_REF
1876 && tree_fits_uhwi_p (TREE_OPERAND (tem, 1)))
1878 lhs = TREE_OPERAND (tem, 0);
1879 lhs_offset += tree_to_uhwi (TREE_OPERAND (tem, 1));
1881 else if (DECL_P (tem))
1882 lhs = build_fold_addr_expr (tem);
1883 else
1884 return (void *)-1;
1886 if (TREE_CODE (lhs) != SSA_NAME
1887 && TREE_CODE (lhs) != ADDR_EXPR)
1888 return (void *)-1;
1890 /* Extract a pointer base and an offset for the source. */
1891 rhs = gimple_call_arg (def_stmt, 1);
1892 rhs_offset = 0;
1893 if (TREE_CODE (rhs) == SSA_NAME)
1894 rhs = SSA_VAL (rhs);
1895 if (TREE_CODE (rhs) == ADDR_EXPR)
1897 tree tem = get_addr_base_and_unit_offset (TREE_OPERAND (rhs, 0),
1898 &rhs_offset);
1899 if (!tem)
1900 return (void *)-1;
1901 if (TREE_CODE (tem) == MEM_REF
1902 && tree_fits_uhwi_p (TREE_OPERAND (tem, 1)))
1904 rhs = TREE_OPERAND (tem, 0);
1905 rhs_offset += tree_to_uhwi (TREE_OPERAND (tem, 1));
1907 else if (DECL_P (tem))
1908 rhs = build_fold_addr_expr (tem);
1909 else
1910 return (void *)-1;
1912 if (TREE_CODE (rhs) != SSA_NAME
1913 && TREE_CODE (rhs) != ADDR_EXPR)
1914 return (void *)-1;
1916 copy_size = tree_to_uhwi (gimple_call_arg (def_stmt, 2));
1918 /* The bases of the destination and the references have to agree. */
1919 if ((TREE_CODE (base) != MEM_REF
1920 && !DECL_P (base))
1921 || (TREE_CODE (base) == MEM_REF
1922 && (TREE_OPERAND (base, 0) != lhs
1923 || !tree_fits_uhwi_p (TREE_OPERAND (base, 1))))
1924 || (DECL_P (base)
1925 && (TREE_CODE (lhs) != ADDR_EXPR
1926 || TREE_OPERAND (lhs, 0) != base)))
1927 return (void *)-1;
1929 /* And the access has to be contained within the memcpy destination. */
1930 at = offset / BITS_PER_UNIT;
1931 if (TREE_CODE (base) == MEM_REF)
1932 at += tree_to_uhwi (TREE_OPERAND (base, 1));
1933 if (lhs_offset > at
1934 || lhs_offset + copy_size < at + maxsize / BITS_PER_UNIT)
1935 return (void *)-1;
1937 /* Make room for 2 operands in the new reference. */
1938 if (vr->operands.length () < 2)
1940 vec<vn_reference_op_s> old = vr->operands;
1941 vr->operands.safe_grow_cleared (2);
1942 if (old == shared_lookup_references
1943 && vr->operands != old)
1944 shared_lookup_references.create (0);
1946 else
1947 vr->operands.truncate (2);
1949 /* The looked-through reference is a simple MEM_REF. */
1950 memset (&op, 0, sizeof (op));
1951 op.type = vr->type;
1952 op.opcode = MEM_REF;
1953 op.op0 = build_int_cst (ptr_type_node, at - rhs_offset);
1954 op.off = at - lhs_offset + rhs_offset;
1955 vr->operands[0] = op;
1956 op.type = TREE_TYPE (rhs);
1957 op.opcode = TREE_CODE (rhs);
1958 op.op0 = rhs;
1959 op.off = -1;
1960 vr->operands[1] = op;
1961 vr->hashcode = vn_reference_compute_hash (vr);
1963 /* Adjust *ref from the new operands. */
1964 if (!ao_ref_init_from_vn_reference (&r, vr->set, vr->type, vr->operands))
1965 return (void *)-1;
1966 /* This can happen with bitfields. */
1967 if (ref->size != r.size)
1968 return (void *)-1;
1969 *ref = r;
1971 /* Do not update last seen VUSE after translating. */
1972 last_vuse_ptr = NULL;
1974 /* Keep looking for the adjusted *REF / VR pair. */
1975 return NULL;
1978 /* Bail out and stop walking. */
1979 return (void *)-1;
1982 /* Lookup a reference operation by it's parts, in the current hash table.
1983 Returns the resulting value number if it exists in the hash table,
1984 NULL_TREE otherwise. VNRESULT will be filled in with the actual
1985 vn_reference_t stored in the hashtable if something is found. */
1987 tree
1988 vn_reference_lookup_pieces (tree vuse, alias_set_type set, tree type,
1989 vec<vn_reference_op_s> operands,
1990 vn_reference_t *vnresult, vn_lookup_kind kind)
1992 struct vn_reference_s vr1;
1993 vn_reference_t tmp;
1994 tree cst;
1996 if (!vnresult)
1997 vnresult = &tmp;
1998 *vnresult = NULL;
2000 vr1.vuse = vuse ? SSA_VAL (vuse) : NULL_TREE;
2001 shared_lookup_references.truncate (0);
2002 shared_lookup_references.safe_grow (operands.length ());
2003 memcpy (shared_lookup_references.address (),
2004 operands.address (),
2005 sizeof (vn_reference_op_s)
2006 * operands.length ());
2007 vr1.operands = operands = shared_lookup_references
2008 = valueize_refs (shared_lookup_references);
2009 vr1.type = type;
2010 vr1.set = set;
2011 vr1.hashcode = vn_reference_compute_hash (&vr1);
2012 if ((cst = fully_constant_vn_reference_p (&vr1)))
2013 return cst;
2015 vn_reference_lookup_1 (&vr1, vnresult);
2016 if (!*vnresult
2017 && kind != VN_NOWALK
2018 && vr1.vuse)
2020 ao_ref r;
2021 vn_walk_kind = kind;
2022 if (ao_ref_init_from_vn_reference (&r, set, type, vr1.operands))
2023 *vnresult =
2024 (vn_reference_t)walk_non_aliased_vuses (&r, vr1.vuse,
2025 vn_reference_lookup_2,
2026 vn_reference_lookup_3, &vr1);
2027 if (vr1.operands != operands)
2028 vr1.operands.release ();
2031 if (*vnresult)
2032 return (*vnresult)->result;
2034 return NULL_TREE;
2037 /* Lookup OP in the current hash table, and return the resulting value
2038 number if it exists in the hash table. Return NULL_TREE if it does
2039 not exist in the hash table or if the result field of the structure
2040 was NULL.. VNRESULT will be filled in with the vn_reference_t
2041 stored in the hashtable if one exists. */
2043 tree
2044 vn_reference_lookup (tree op, tree vuse, vn_lookup_kind kind,
2045 vn_reference_t *vnresult)
2047 vec<vn_reference_op_s> operands;
2048 struct vn_reference_s vr1;
2049 tree cst;
2050 bool valuezied_anything;
2052 if (vnresult)
2053 *vnresult = NULL;
2055 vr1.vuse = vuse ? SSA_VAL (vuse) : NULL_TREE;
2056 vr1.operands = operands
2057 = valueize_shared_reference_ops_from_ref (op, &valuezied_anything);
2058 vr1.type = TREE_TYPE (op);
2059 vr1.set = get_alias_set (op);
2060 vr1.hashcode = vn_reference_compute_hash (&vr1);
2061 if ((cst = fully_constant_vn_reference_p (&vr1)))
2062 return cst;
2064 if (kind != VN_NOWALK
2065 && vr1.vuse)
2067 vn_reference_t wvnresult;
2068 ao_ref r;
2069 /* Make sure to use a valueized reference if we valueized anything.
2070 Otherwise preserve the full reference for advanced TBAA. */
2071 if (!valuezied_anything
2072 || !ao_ref_init_from_vn_reference (&r, vr1.set, vr1.type,
2073 vr1.operands))
2074 ao_ref_init (&r, op);
2075 vn_walk_kind = kind;
2076 wvnresult =
2077 (vn_reference_t)walk_non_aliased_vuses (&r, vr1.vuse,
2078 vn_reference_lookup_2,
2079 vn_reference_lookup_3, &vr1);
2080 if (vr1.operands != operands)
2081 vr1.operands.release ();
2082 if (wvnresult)
2084 if (vnresult)
2085 *vnresult = wvnresult;
2086 return wvnresult->result;
2089 return NULL_TREE;
2092 return vn_reference_lookup_1 (&vr1, vnresult);
2096 /* Insert OP into the current hash table with a value number of
2097 RESULT, and return the resulting reference structure we created. */
2099 vn_reference_t
2100 vn_reference_insert (tree op, tree result, tree vuse, tree vdef)
2102 vn_reference_s **slot;
2103 vn_reference_t vr1;
2104 bool tem;
2106 vr1 = (vn_reference_t) pool_alloc (current_info->references_pool);
2107 if (TREE_CODE (result) == SSA_NAME)
2108 vr1->value_id = VN_INFO (result)->value_id;
2109 else
2110 vr1->value_id = get_or_alloc_constant_value_id (result);
2111 vr1->vuse = vuse ? SSA_VAL (vuse) : NULL_TREE;
2112 vr1->operands = valueize_shared_reference_ops_from_ref (op, &tem).copy ();
2113 vr1->type = TREE_TYPE (op);
2114 vr1->set = get_alias_set (op);
2115 vr1->hashcode = vn_reference_compute_hash (vr1);
2116 vr1->result = TREE_CODE (result) == SSA_NAME ? SSA_VAL (result) : result;
2117 vr1->result_vdef = vdef;
2119 slot = current_info->references.find_slot_with_hash (vr1, vr1->hashcode,
2120 INSERT);
2122 /* Because we lookup stores using vuses, and value number failures
2123 using the vdefs (see visit_reference_op_store for how and why),
2124 it's possible that on failure we may try to insert an already
2125 inserted store. This is not wrong, there is no ssa name for a
2126 store that we could use as a differentiator anyway. Thus, unlike
2127 the other lookup functions, you cannot gcc_assert (!*slot)
2128 here. */
2130 /* But free the old slot in case of a collision. */
2131 if (*slot)
2132 free_reference (*slot);
2134 *slot = vr1;
2135 return vr1;
2138 /* Insert a reference by it's pieces into the current hash table with
2139 a value number of RESULT. Return the resulting reference
2140 structure we created. */
2142 vn_reference_t
2143 vn_reference_insert_pieces (tree vuse, alias_set_type set, tree type,
2144 vec<vn_reference_op_s> operands,
2145 tree result, unsigned int value_id)
2148 vn_reference_s **slot;
2149 vn_reference_t vr1;
2151 vr1 = (vn_reference_t) pool_alloc (current_info->references_pool);
2152 vr1->value_id = value_id;
2153 vr1->vuse = vuse ? SSA_VAL (vuse) : NULL_TREE;
2154 vr1->operands = valueize_refs (operands);
2155 vr1->type = type;
2156 vr1->set = set;
2157 vr1->hashcode = vn_reference_compute_hash (vr1);
2158 if (result && TREE_CODE (result) == SSA_NAME)
2159 result = SSA_VAL (result);
2160 vr1->result = result;
2162 slot = current_info->references.find_slot_with_hash (vr1, vr1->hashcode,
2163 INSERT);
2165 /* At this point we should have all the things inserted that we have
2166 seen before, and we should never try inserting something that
2167 already exists. */
2168 gcc_assert (!*slot);
2169 if (*slot)
2170 free_reference (*slot);
2172 *slot = vr1;
2173 return vr1;
2176 /* Compute and return the hash value for nary operation VBO1. */
2178 hashval_t
2179 vn_nary_op_compute_hash (const vn_nary_op_t vno1)
2181 hashval_t hash;
2182 unsigned i;
2184 for (i = 0; i < vno1->length; ++i)
2185 if (TREE_CODE (vno1->op[i]) == SSA_NAME)
2186 vno1->op[i] = SSA_VAL (vno1->op[i]);
2188 if (vno1->length == 2
2189 && commutative_tree_code (vno1->opcode)
2190 && tree_swap_operands_p (vno1->op[0], vno1->op[1], false))
2192 tree temp = vno1->op[0];
2193 vno1->op[0] = vno1->op[1];
2194 vno1->op[1] = temp;
2197 hash = iterative_hash_hashval_t (vno1->opcode, 0);
2198 for (i = 0; i < vno1->length; ++i)
2199 hash = iterative_hash_expr (vno1->op[i], hash);
2201 return hash;
2204 /* Compare nary operations VNO1 and VNO2 and return true if they are
2205 equivalent. */
2207 bool
2208 vn_nary_op_eq (const_vn_nary_op_t const vno1, const_vn_nary_op_t const vno2)
2210 unsigned i;
2212 if (vno1->hashcode != vno2->hashcode)
2213 return false;
2215 if (vno1->length != vno2->length)
2216 return false;
2218 if (vno1->opcode != vno2->opcode
2219 || !types_compatible_p (vno1->type, vno2->type))
2220 return false;
2222 for (i = 0; i < vno1->length; ++i)
2223 if (!expressions_equal_p (vno1->op[i], vno2->op[i]))
2224 return false;
2226 return true;
2229 /* Initialize VNO from the pieces provided. */
2231 static void
2232 init_vn_nary_op_from_pieces (vn_nary_op_t vno, unsigned int length,
2233 enum tree_code code, tree type, tree *ops)
2235 vno->opcode = code;
2236 vno->length = length;
2237 vno->type = type;
2238 memcpy (&vno->op[0], ops, sizeof (tree) * length);
2241 /* Initialize VNO from OP. */
2243 static void
2244 init_vn_nary_op_from_op (vn_nary_op_t vno, tree op)
2246 unsigned i;
2248 vno->opcode = TREE_CODE (op);
2249 vno->length = TREE_CODE_LENGTH (TREE_CODE (op));
2250 vno->type = TREE_TYPE (op);
2251 for (i = 0; i < vno->length; ++i)
2252 vno->op[i] = TREE_OPERAND (op, i);
2255 /* Return the number of operands for a vn_nary ops structure from STMT. */
2257 static unsigned int
2258 vn_nary_length_from_stmt (gimple stmt)
2260 switch (gimple_assign_rhs_code (stmt))
2262 case REALPART_EXPR:
2263 case IMAGPART_EXPR:
2264 case VIEW_CONVERT_EXPR:
2265 return 1;
2267 case BIT_FIELD_REF:
2268 return 3;
2270 case CONSTRUCTOR:
2271 return CONSTRUCTOR_NELTS (gimple_assign_rhs1 (stmt));
2273 default:
2274 return gimple_num_ops (stmt) - 1;
2278 /* Initialize VNO from STMT. */
2280 static void
2281 init_vn_nary_op_from_stmt (vn_nary_op_t vno, gimple stmt)
2283 unsigned i;
2285 vno->opcode = gimple_assign_rhs_code (stmt);
2286 vno->type = gimple_expr_type (stmt);
2287 switch (vno->opcode)
2289 case REALPART_EXPR:
2290 case IMAGPART_EXPR:
2291 case VIEW_CONVERT_EXPR:
2292 vno->length = 1;
2293 vno->op[0] = TREE_OPERAND (gimple_assign_rhs1 (stmt), 0);
2294 break;
2296 case BIT_FIELD_REF:
2297 vno->length = 3;
2298 vno->op[0] = TREE_OPERAND (gimple_assign_rhs1 (stmt), 0);
2299 vno->op[1] = TREE_OPERAND (gimple_assign_rhs1 (stmt), 1);
2300 vno->op[2] = TREE_OPERAND (gimple_assign_rhs1 (stmt), 2);
2301 break;
2303 case CONSTRUCTOR:
2304 vno->length = CONSTRUCTOR_NELTS (gimple_assign_rhs1 (stmt));
2305 for (i = 0; i < vno->length; ++i)
2306 vno->op[i] = CONSTRUCTOR_ELT (gimple_assign_rhs1 (stmt), i)->value;
2307 break;
2309 default:
2310 gcc_checking_assert (!gimple_assign_single_p (stmt));
2311 vno->length = gimple_num_ops (stmt) - 1;
2312 for (i = 0; i < vno->length; ++i)
2313 vno->op[i] = gimple_op (stmt, i + 1);
2317 /* Compute the hashcode for VNO and look for it in the hash table;
2318 return the resulting value number if it exists in the hash table.
2319 Return NULL_TREE if it does not exist in the hash table or if the
2320 result field of the operation is NULL. VNRESULT will contain the
2321 vn_nary_op_t from the hashtable if it exists. */
2323 static tree
2324 vn_nary_op_lookup_1 (vn_nary_op_t vno, vn_nary_op_t *vnresult)
2326 vn_nary_op_s **slot;
2328 if (vnresult)
2329 *vnresult = NULL;
2331 vno->hashcode = vn_nary_op_compute_hash (vno);
2332 slot = current_info->nary.find_slot_with_hash (vno, vno->hashcode, NO_INSERT);
2333 if (!slot && current_info == optimistic_info)
2334 slot = valid_info->nary.find_slot_with_hash (vno, vno->hashcode, NO_INSERT);
2335 if (!slot)
2336 return NULL_TREE;
2337 if (vnresult)
2338 *vnresult = *slot;
2339 return (*slot)->result;
2342 /* Lookup a n-ary operation by its pieces and return the resulting value
2343 number if it exists in the hash table. Return NULL_TREE if it does
2344 not exist in the hash table or if the result field of the operation
2345 is NULL. VNRESULT will contain the vn_nary_op_t from the hashtable
2346 if it exists. */
2348 tree
2349 vn_nary_op_lookup_pieces (unsigned int length, enum tree_code code,
2350 tree type, tree *ops, vn_nary_op_t *vnresult)
2352 vn_nary_op_t vno1 = XALLOCAVAR (struct vn_nary_op_s,
2353 sizeof_vn_nary_op (length));
2354 init_vn_nary_op_from_pieces (vno1, length, code, type, ops);
2355 return vn_nary_op_lookup_1 (vno1, vnresult);
2358 /* Lookup OP in the current hash table, and return the resulting value
2359 number if it exists in the hash table. Return NULL_TREE if it does
2360 not exist in the hash table or if the result field of the operation
2361 is NULL. VNRESULT will contain the vn_nary_op_t from the hashtable
2362 if it exists. */
2364 tree
2365 vn_nary_op_lookup (tree op, vn_nary_op_t *vnresult)
2367 vn_nary_op_t vno1
2368 = XALLOCAVAR (struct vn_nary_op_s,
2369 sizeof_vn_nary_op (TREE_CODE_LENGTH (TREE_CODE (op))));
2370 init_vn_nary_op_from_op (vno1, op);
2371 return vn_nary_op_lookup_1 (vno1, vnresult);
2374 /* Lookup the rhs of STMT in the current hash table, and return the resulting
2375 value number if it exists in the hash table. Return NULL_TREE if
2376 it does not exist in the hash table. VNRESULT will contain the
2377 vn_nary_op_t from the hashtable if it exists. */
2379 tree
2380 vn_nary_op_lookup_stmt (gimple stmt, vn_nary_op_t *vnresult)
2382 vn_nary_op_t vno1
2383 = XALLOCAVAR (struct vn_nary_op_s,
2384 sizeof_vn_nary_op (vn_nary_length_from_stmt (stmt)));
2385 init_vn_nary_op_from_stmt (vno1, stmt);
2386 return vn_nary_op_lookup_1 (vno1, vnresult);
2389 /* Allocate a vn_nary_op_t with LENGTH operands on STACK. */
2391 static vn_nary_op_t
2392 alloc_vn_nary_op_noinit (unsigned int length, struct obstack *stack)
2394 return (vn_nary_op_t) obstack_alloc (stack, sizeof_vn_nary_op (length));
2397 /* Allocate and initialize a vn_nary_op_t on CURRENT_INFO's
2398 obstack. */
2400 static vn_nary_op_t
2401 alloc_vn_nary_op (unsigned int length, tree result, unsigned int value_id)
2403 vn_nary_op_t vno1 = alloc_vn_nary_op_noinit (length,
2404 &current_info->nary_obstack);
2406 vno1->value_id = value_id;
2407 vno1->length = length;
2408 vno1->result = result;
2410 return vno1;
2413 /* Insert VNO into TABLE. If COMPUTE_HASH is true, then compute
2414 VNO->HASHCODE first. */
2416 static vn_nary_op_t
2417 vn_nary_op_insert_into (vn_nary_op_t vno, vn_nary_op_table_type table,
2418 bool compute_hash)
2420 vn_nary_op_s **slot;
2422 if (compute_hash)
2423 vno->hashcode = vn_nary_op_compute_hash (vno);
2425 slot = table.find_slot_with_hash (vno, vno->hashcode, INSERT);
2426 gcc_assert (!*slot);
2428 *slot = vno;
2429 return vno;
2432 /* Insert a n-ary operation into the current hash table using it's
2433 pieces. Return the vn_nary_op_t structure we created and put in
2434 the hashtable. */
2436 vn_nary_op_t
2437 vn_nary_op_insert_pieces (unsigned int length, enum tree_code code,
2438 tree type, tree *ops,
2439 tree result, unsigned int value_id)
2441 vn_nary_op_t vno1 = alloc_vn_nary_op (length, result, value_id);
2442 init_vn_nary_op_from_pieces (vno1, length, code, type, ops);
2443 return vn_nary_op_insert_into (vno1, current_info->nary, true);
2446 /* Insert OP into the current hash table with a value number of
2447 RESULT. Return the vn_nary_op_t structure we created and put in
2448 the hashtable. */
2450 vn_nary_op_t
2451 vn_nary_op_insert (tree op, tree result)
2453 unsigned length = TREE_CODE_LENGTH (TREE_CODE (op));
2454 vn_nary_op_t vno1;
2456 vno1 = alloc_vn_nary_op (length, result, VN_INFO (result)->value_id);
2457 init_vn_nary_op_from_op (vno1, op);
2458 return vn_nary_op_insert_into (vno1, current_info->nary, true);
2461 /* Insert the rhs of STMT into the current hash table with a value number of
2462 RESULT. */
2464 vn_nary_op_t
2465 vn_nary_op_insert_stmt (gimple stmt, tree result)
2467 vn_nary_op_t vno1
2468 = alloc_vn_nary_op (vn_nary_length_from_stmt (stmt),
2469 result, VN_INFO (result)->value_id);
2470 init_vn_nary_op_from_stmt (vno1, stmt);
2471 return vn_nary_op_insert_into (vno1, current_info->nary, true);
2474 /* Compute a hashcode for PHI operation VP1 and return it. */
2476 static inline hashval_t
2477 vn_phi_compute_hash (vn_phi_t vp1)
2479 hashval_t result;
2480 int i;
2481 tree phi1op;
2482 tree type;
2484 result = vp1->block->index;
2486 /* If all PHI arguments are constants we need to distinguish
2487 the PHI node via its type. */
2488 type = vp1->type;
2489 result += vn_hash_type (type);
2491 FOR_EACH_VEC_ELT (vp1->phiargs, i, phi1op)
2493 if (phi1op == VN_TOP)
2494 continue;
2495 result = iterative_hash_expr (phi1op, result);
2498 return result;
2501 /* Compare two phi entries for equality, ignoring VN_TOP arguments. */
2503 static int
2504 vn_phi_eq (const_vn_phi_t const vp1, const_vn_phi_t const vp2)
2506 if (vp1->hashcode != vp2->hashcode)
2507 return false;
2509 if (vp1->block == vp2->block)
2511 int i;
2512 tree phi1op;
2514 /* If the PHI nodes do not have compatible types
2515 they are not the same. */
2516 if (!types_compatible_p (vp1->type, vp2->type))
2517 return false;
2519 /* Any phi in the same block will have it's arguments in the
2520 same edge order, because of how we store phi nodes. */
2521 FOR_EACH_VEC_ELT (vp1->phiargs, i, phi1op)
2523 tree phi2op = vp2->phiargs[i];
2524 if (phi1op == VN_TOP || phi2op == VN_TOP)
2525 continue;
2526 if (!expressions_equal_p (phi1op, phi2op))
2527 return false;
2529 return true;
2531 return false;
2534 static vec<tree> shared_lookup_phiargs;
2536 /* Lookup PHI in the current hash table, and return the resulting
2537 value number if it exists in the hash table. Return NULL_TREE if
2538 it does not exist in the hash table. */
2540 static tree
2541 vn_phi_lookup (gimple phi)
2543 vn_phi_s **slot;
2544 struct vn_phi_s vp1;
2545 unsigned i;
2547 shared_lookup_phiargs.truncate (0);
2549 /* Canonicalize the SSA_NAME's to their value number. */
2550 for (i = 0; i < gimple_phi_num_args (phi); i++)
2552 tree def = PHI_ARG_DEF (phi, i);
2553 def = TREE_CODE (def) == SSA_NAME ? SSA_VAL (def) : def;
2554 shared_lookup_phiargs.safe_push (def);
2556 vp1.type = TREE_TYPE (gimple_phi_result (phi));
2557 vp1.phiargs = shared_lookup_phiargs;
2558 vp1.block = gimple_bb (phi);
2559 vp1.hashcode = vn_phi_compute_hash (&vp1);
2560 slot = current_info->phis.find_slot_with_hash (&vp1, vp1.hashcode, NO_INSERT);
2561 if (!slot && current_info == optimistic_info)
2562 slot = valid_info->phis.find_slot_with_hash (&vp1, vp1.hashcode, NO_INSERT);
2563 if (!slot)
2564 return NULL_TREE;
2565 return (*slot)->result;
2568 /* Insert PHI into the current hash table with a value number of
2569 RESULT. */
2571 static vn_phi_t
2572 vn_phi_insert (gimple phi, tree result)
2574 vn_phi_s **slot;
2575 vn_phi_t vp1 = (vn_phi_t) pool_alloc (current_info->phis_pool);
2576 unsigned i;
2577 vec<tree> args = vNULL;
2579 /* Canonicalize the SSA_NAME's to their value number. */
2580 for (i = 0; i < gimple_phi_num_args (phi); i++)
2582 tree def = PHI_ARG_DEF (phi, i);
2583 def = TREE_CODE (def) == SSA_NAME ? SSA_VAL (def) : def;
2584 args.safe_push (def);
2586 vp1->value_id = VN_INFO (result)->value_id;
2587 vp1->type = TREE_TYPE (gimple_phi_result (phi));
2588 vp1->phiargs = args;
2589 vp1->block = gimple_bb (phi);
2590 vp1->result = result;
2591 vp1->hashcode = vn_phi_compute_hash (vp1);
2593 slot = current_info->phis.find_slot_with_hash (vp1, vp1->hashcode, INSERT);
2595 /* Because we iterate over phi operations more than once, it's
2596 possible the slot might already exist here, hence no assert.*/
2597 *slot = vp1;
2598 return vp1;
2602 /* Print set of components in strongly connected component SCC to OUT. */
2604 static void
2605 print_scc (FILE *out, vec<tree> scc)
2607 tree var;
2608 unsigned int i;
2610 fprintf (out, "SCC consists of:");
2611 FOR_EACH_VEC_ELT (scc, i, var)
2613 fprintf (out, " ");
2614 print_generic_expr (out, var, 0);
2616 fprintf (out, "\n");
2619 /* Set the value number of FROM to TO, return true if it has changed
2620 as a result. */
2622 static inline bool
2623 set_ssa_val_to (tree from, tree to)
2625 tree currval = SSA_VAL (from);
2626 HOST_WIDE_INT toff, coff;
2628 if (from != to)
2630 if (currval == from)
2632 if (dump_file && (dump_flags & TDF_DETAILS))
2634 fprintf (dump_file, "Not changing value number of ");
2635 print_generic_expr (dump_file, from, 0);
2636 fprintf (dump_file, " from VARYING to ");
2637 print_generic_expr (dump_file, to, 0);
2638 fprintf (dump_file, "\n");
2640 return false;
2642 else if (TREE_CODE (to) == SSA_NAME
2643 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (to))
2644 to = from;
2647 /* The only thing we allow as value numbers are VN_TOP, ssa_names
2648 and invariants. So assert that here. */
2649 gcc_assert (to != NULL_TREE
2650 && (to == VN_TOP
2651 || TREE_CODE (to) == SSA_NAME
2652 || is_gimple_min_invariant (to)));
2654 if (dump_file && (dump_flags & TDF_DETAILS))
2656 fprintf (dump_file, "Setting value number of ");
2657 print_generic_expr (dump_file, from, 0);
2658 fprintf (dump_file, " to ");
2659 print_generic_expr (dump_file, to, 0);
2662 if (currval != to
2663 && !operand_equal_p (currval, to, 0)
2664 /* ??? For addresses involving volatile objects or types operand_equal_p
2665 does not reliably detect ADDR_EXPRs as equal. We know we are only
2666 getting invariant gimple addresses here, so can use
2667 get_addr_base_and_unit_offset to do this comparison. */
2668 && !(TREE_CODE (currval) == ADDR_EXPR
2669 && TREE_CODE (to) == ADDR_EXPR
2670 && (get_addr_base_and_unit_offset (TREE_OPERAND (currval, 0), &coff)
2671 == get_addr_base_and_unit_offset (TREE_OPERAND (to, 0), &toff))
2672 && coff == toff))
2674 VN_INFO (from)->valnum = to;
2675 if (dump_file && (dump_flags & TDF_DETAILS))
2676 fprintf (dump_file, " (changed)\n");
2677 return true;
2679 if (dump_file && (dump_flags & TDF_DETAILS))
2680 fprintf (dump_file, "\n");
2681 return false;
2684 /* Mark as processed all the definitions in the defining stmt of USE, or
2685 the USE itself. */
2687 static void
2688 mark_use_processed (tree use)
2690 ssa_op_iter iter;
2691 def_operand_p defp;
2692 gimple stmt = SSA_NAME_DEF_STMT (use);
2694 if (SSA_NAME_IS_DEFAULT_DEF (use) || gimple_code (stmt) == GIMPLE_PHI)
2696 VN_INFO (use)->use_processed = true;
2697 return;
2700 FOR_EACH_SSA_DEF_OPERAND (defp, stmt, iter, SSA_OP_ALL_DEFS)
2702 tree def = DEF_FROM_PTR (defp);
2704 VN_INFO (def)->use_processed = true;
2708 /* Set all definitions in STMT to value number to themselves.
2709 Return true if a value number changed. */
2711 static bool
2712 defs_to_varying (gimple stmt)
2714 bool changed = false;
2715 ssa_op_iter iter;
2716 def_operand_p defp;
2718 FOR_EACH_SSA_DEF_OPERAND (defp, stmt, iter, SSA_OP_ALL_DEFS)
2720 tree def = DEF_FROM_PTR (defp);
2721 changed |= set_ssa_val_to (def, def);
2723 return changed;
2726 static bool expr_has_constants (tree expr);
2727 static tree valueize_expr (tree expr);
2729 /* Visit a copy between LHS and RHS, return true if the value number
2730 changed. */
2732 static bool
2733 visit_copy (tree lhs, tree rhs)
2735 /* The copy may have a more interesting constant filled expression
2736 (we don't, since we know our RHS is just an SSA name). */
2737 VN_INFO (lhs)->has_constants = VN_INFO (rhs)->has_constants;
2738 VN_INFO (lhs)->expr = VN_INFO (rhs)->expr;
2740 /* And finally valueize. */
2741 rhs = SSA_VAL (rhs);
2743 return set_ssa_val_to (lhs, rhs);
2746 /* Visit a nary operator RHS, value number it, and return true if the
2747 value number of LHS has changed as a result. */
2749 static bool
2750 visit_nary_op (tree lhs, gimple stmt)
2752 bool changed = false;
2753 tree result = vn_nary_op_lookup_stmt (stmt, NULL);
2755 if (result)
2756 changed = set_ssa_val_to (lhs, result);
2757 else
2759 changed = set_ssa_val_to (lhs, lhs);
2760 vn_nary_op_insert_stmt (stmt, lhs);
2763 return changed;
2766 /* Visit a call STMT storing into LHS. Return true if the value number
2767 of the LHS has changed as a result. */
2769 static bool
2770 visit_reference_op_call (tree lhs, gimple stmt)
2772 bool changed = false;
2773 struct vn_reference_s vr1;
2774 vn_reference_t vnresult = NULL;
2775 tree vuse = gimple_vuse (stmt);
2776 tree vdef = gimple_vdef (stmt);
2778 /* Non-ssa lhs is handled in copy_reference_ops_from_call. */
2779 if (lhs && TREE_CODE (lhs) != SSA_NAME)
2780 lhs = NULL_TREE;
2782 vr1.vuse = vuse ? SSA_VAL (vuse) : NULL_TREE;
2783 vr1.operands = valueize_shared_reference_ops_from_call (stmt);
2784 vr1.type = gimple_expr_type (stmt);
2785 vr1.set = 0;
2786 vr1.hashcode = vn_reference_compute_hash (&vr1);
2787 vn_reference_lookup_1 (&vr1, &vnresult);
2789 if (vnresult)
2791 if (vnresult->result_vdef)
2792 changed |= set_ssa_val_to (vdef, vnresult->result_vdef);
2794 if (!vnresult->result && lhs)
2795 vnresult->result = lhs;
2797 if (vnresult->result && lhs)
2799 changed |= set_ssa_val_to (lhs, vnresult->result);
2801 if (VN_INFO (vnresult->result)->has_constants)
2802 VN_INFO (lhs)->has_constants = true;
2805 else
2807 vn_reference_s **slot;
2808 vn_reference_t vr2;
2809 if (vdef)
2810 changed |= set_ssa_val_to (vdef, vdef);
2811 if (lhs)
2812 changed |= set_ssa_val_to (lhs, lhs);
2813 vr2 = (vn_reference_t) pool_alloc (current_info->references_pool);
2814 vr2->vuse = vr1.vuse;
2815 vr2->operands = valueize_refs (create_reference_ops_from_call (stmt));
2816 vr2->type = vr1.type;
2817 vr2->set = vr1.set;
2818 vr2->hashcode = vr1.hashcode;
2819 vr2->result = lhs;
2820 vr2->result_vdef = vdef;
2821 slot = current_info->references.find_slot_with_hash (vr2, vr2->hashcode,
2822 INSERT);
2823 if (*slot)
2824 free_reference (*slot);
2825 *slot = vr2;
2828 return changed;
2831 /* Visit a load from a reference operator RHS, part of STMT, value number it,
2832 and return true if the value number of the LHS has changed as a result. */
2834 static bool
2835 visit_reference_op_load (tree lhs, tree op, gimple stmt)
2837 bool changed = false;
2838 tree last_vuse;
2839 tree result;
2841 last_vuse = gimple_vuse (stmt);
2842 last_vuse_ptr = &last_vuse;
2843 result = vn_reference_lookup (op, gimple_vuse (stmt),
2844 default_vn_walk_kind, NULL);
2845 last_vuse_ptr = NULL;
2847 /* If we have a VCE, try looking up its operand as it might be stored in
2848 a different type. */
2849 if (!result && TREE_CODE (op) == VIEW_CONVERT_EXPR)
2850 result = vn_reference_lookup (TREE_OPERAND (op, 0), gimple_vuse (stmt),
2851 default_vn_walk_kind, NULL);
2853 /* We handle type-punning through unions by value-numbering based
2854 on offset and size of the access. Be prepared to handle a
2855 type-mismatch here via creating a VIEW_CONVERT_EXPR. */
2856 if (result
2857 && !useless_type_conversion_p (TREE_TYPE (result), TREE_TYPE (op)))
2859 /* We will be setting the value number of lhs to the value number
2860 of VIEW_CONVERT_EXPR <TREE_TYPE (result)> (result).
2861 So first simplify and lookup this expression to see if it
2862 is already available. */
2863 tree val = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (op), result);
2864 if ((CONVERT_EXPR_P (val)
2865 || TREE_CODE (val) == VIEW_CONVERT_EXPR)
2866 && TREE_CODE (TREE_OPERAND (val, 0)) == SSA_NAME)
2868 tree tem = valueize_expr (vn_get_expr_for (TREE_OPERAND (val, 0)));
2869 if ((CONVERT_EXPR_P (tem)
2870 || TREE_CODE (tem) == VIEW_CONVERT_EXPR)
2871 && (tem = fold_unary_ignore_overflow (TREE_CODE (val),
2872 TREE_TYPE (val), tem)))
2873 val = tem;
2875 result = val;
2876 if (!is_gimple_min_invariant (val)
2877 && TREE_CODE (val) != SSA_NAME)
2878 result = vn_nary_op_lookup (val, NULL);
2879 /* If the expression is not yet available, value-number lhs to
2880 a new SSA_NAME we create. */
2881 if (!result)
2883 result = make_temp_ssa_name (TREE_TYPE (lhs), gimple_build_nop (),
2884 "vntemp");
2885 /* Initialize value-number information properly. */
2886 VN_INFO_GET (result)->valnum = result;
2887 VN_INFO (result)->value_id = get_next_value_id ();
2888 VN_INFO (result)->expr = val;
2889 VN_INFO (result)->has_constants = expr_has_constants (val);
2890 VN_INFO (result)->needs_insertion = true;
2891 /* As all "inserted" statements are singleton SCCs, insert
2892 to the valid table. This is strictly needed to
2893 avoid re-generating new value SSA_NAMEs for the same
2894 expression during SCC iteration over and over (the
2895 optimistic table gets cleared after each iteration).
2896 We do not need to insert into the optimistic table, as
2897 lookups there will fall back to the valid table. */
2898 if (current_info == optimistic_info)
2900 current_info = valid_info;
2901 vn_nary_op_insert (val, result);
2902 current_info = optimistic_info;
2904 else
2905 vn_nary_op_insert (val, result);
2906 if (dump_file && (dump_flags & TDF_DETAILS))
2908 fprintf (dump_file, "Inserting name ");
2909 print_generic_expr (dump_file, result, 0);
2910 fprintf (dump_file, " for expression ");
2911 print_generic_expr (dump_file, val, 0);
2912 fprintf (dump_file, "\n");
2917 if (result)
2919 changed = set_ssa_val_to (lhs, result);
2920 if (TREE_CODE (result) == SSA_NAME
2921 && VN_INFO (result)->has_constants)
2923 VN_INFO (lhs)->expr = VN_INFO (result)->expr;
2924 VN_INFO (lhs)->has_constants = true;
2927 else
2929 changed = set_ssa_val_to (lhs, lhs);
2930 vn_reference_insert (op, lhs, last_vuse, NULL_TREE);
2933 return changed;
2937 /* Visit a store to a reference operator LHS, part of STMT, value number it,
2938 and return true if the value number of the LHS has changed as a result. */
2940 static bool
2941 visit_reference_op_store (tree lhs, tree op, gimple stmt)
2943 bool changed = false;
2944 vn_reference_t vnresult = NULL;
2945 tree result, assign;
2946 bool resultsame = false;
2947 tree vuse = gimple_vuse (stmt);
2948 tree vdef = gimple_vdef (stmt);
2950 /* First we want to lookup using the *vuses* from the store and see
2951 if there the last store to this location with the same address
2952 had the same value.
2954 The vuses represent the memory state before the store. If the
2955 memory state, address, and value of the store is the same as the
2956 last store to this location, then this store will produce the
2957 same memory state as that store.
2959 In this case the vdef versions for this store are value numbered to those
2960 vuse versions, since they represent the same memory state after
2961 this store.
2963 Otherwise, the vdefs for the store are used when inserting into
2964 the table, since the store generates a new memory state. */
2966 result = vn_reference_lookup (lhs, vuse, VN_NOWALK, NULL);
2968 if (result)
2970 if (TREE_CODE (result) == SSA_NAME)
2971 result = SSA_VAL (result);
2972 if (TREE_CODE (op) == SSA_NAME)
2973 op = SSA_VAL (op);
2974 resultsame = expressions_equal_p (result, op);
2977 if (!result || !resultsame)
2979 assign = build2 (MODIFY_EXPR, TREE_TYPE (lhs), lhs, op);
2980 vn_reference_lookup (assign, vuse, VN_NOWALK, &vnresult);
2981 if (vnresult)
2983 VN_INFO (vdef)->use_processed = true;
2984 return set_ssa_val_to (vdef, vnresult->result_vdef);
2988 if (!result || !resultsame)
2990 if (dump_file && (dump_flags & TDF_DETAILS))
2992 fprintf (dump_file, "No store match\n");
2993 fprintf (dump_file, "Value numbering store ");
2994 print_generic_expr (dump_file, lhs, 0);
2995 fprintf (dump_file, " to ");
2996 print_generic_expr (dump_file, op, 0);
2997 fprintf (dump_file, "\n");
2999 /* Have to set value numbers before insert, since insert is
3000 going to valueize the references in-place. */
3001 if (vdef)
3003 changed |= set_ssa_val_to (vdef, vdef);
3006 /* Do not insert structure copies into the tables. */
3007 if (is_gimple_min_invariant (op)
3008 || is_gimple_reg (op))
3009 vn_reference_insert (lhs, op, vdef, NULL);
3011 assign = build2 (MODIFY_EXPR, TREE_TYPE (lhs), lhs, op);
3012 vn_reference_insert (assign, lhs, vuse, vdef);
3014 else
3016 /* We had a match, so value number the vdef to have the value
3017 number of the vuse it came from. */
3019 if (dump_file && (dump_flags & TDF_DETAILS))
3020 fprintf (dump_file, "Store matched earlier value,"
3021 "value numbering store vdefs to matching vuses.\n");
3023 changed |= set_ssa_val_to (vdef, SSA_VAL (vuse));
3026 return changed;
3029 /* Visit and value number PHI, return true if the value number
3030 changed. */
3032 static bool
3033 visit_phi (gimple phi)
3035 bool changed = false;
3036 tree result;
3037 tree sameval = VN_TOP;
3038 bool allsame = true;
3039 unsigned i;
3041 /* TODO: We could check for this in init_sccvn, and replace this
3042 with a gcc_assert. */
3043 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)))
3044 return set_ssa_val_to (PHI_RESULT (phi), PHI_RESULT (phi));
3046 /* See if all non-TOP arguments have the same value. TOP is
3047 equivalent to everything, so we can ignore it. */
3048 for (i = 0; i < gimple_phi_num_args (phi); i++)
3050 tree def = PHI_ARG_DEF (phi, i);
3052 if (TREE_CODE (def) == SSA_NAME)
3053 def = SSA_VAL (def);
3054 if (def == VN_TOP)
3055 continue;
3056 if (sameval == VN_TOP)
3058 sameval = def;
3060 else
3062 if (!expressions_equal_p (def, sameval))
3064 allsame = false;
3065 break;
3070 /* If all value numbered to the same value, the phi node has that
3071 value. */
3072 if (allsame)
3074 if (is_gimple_min_invariant (sameval))
3076 VN_INFO (PHI_RESULT (phi))->has_constants = true;
3077 VN_INFO (PHI_RESULT (phi))->expr = sameval;
3079 else
3081 VN_INFO (PHI_RESULT (phi))->has_constants = false;
3082 VN_INFO (PHI_RESULT (phi))->expr = sameval;
3085 if (TREE_CODE (sameval) == SSA_NAME)
3086 return visit_copy (PHI_RESULT (phi), sameval);
3088 return set_ssa_val_to (PHI_RESULT (phi), sameval);
3091 /* Otherwise, see if it is equivalent to a phi node in this block. */
3092 result = vn_phi_lookup (phi);
3093 if (result)
3095 if (TREE_CODE (result) == SSA_NAME)
3096 changed = visit_copy (PHI_RESULT (phi), result);
3097 else
3098 changed = set_ssa_val_to (PHI_RESULT (phi), result);
3100 else
3102 vn_phi_insert (phi, PHI_RESULT (phi));
3103 VN_INFO (PHI_RESULT (phi))->has_constants = false;
3104 VN_INFO (PHI_RESULT (phi))->expr = PHI_RESULT (phi);
3105 changed = set_ssa_val_to (PHI_RESULT (phi), PHI_RESULT (phi));
3108 return changed;
3111 /* Return true if EXPR contains constants. */
3113 static bool
3114 expr_has_constants (tree expr)
3116 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
3118 case tcc_unary:
3119 return is_gimple_min_invariant (TREE_OPERAND (expr, 0));
3121 case tcc_binary:
3122 return is_gimple_min_invariant (TREE_OPERAND (expr, 0))
3123 || is_gimple_min_invariant (TREE_OPERAND (expr, 1));
3124 /* Constants inside reference ops are rarely interesting, but
3125 it can take a lot of looking to find them. */
3126 case tcc_reference:
3127 case tcc_declaration:
3128 return false;
3129 default:
3130 return is_gimple_min_invariant (expr);
3132 return false;
3135 /* Return true if STMT contains constants. */
3137 static bool
3138 stmt_has_constants (gimple stmt)
3140 tree tem;
3142 if (gimple_code (stmt) != GIMPLE_ASSIGN)
3143 return false;
3145 switch (get_gimple_rhs_class (gimple_assign_rhs_code (stmt)))
3147 case GIMPLE_TERNARY_RHS:
3148 tem = gimple_assign_rhs3 (stmt);
3149 if (TREE_CODE (tem) == SSA_NAME)
3150 tem = SSA_VAL (tem);
3151 if (is_gimple_min_invariant (tem))
3152 return true;
3153 /* Fallthru. */
3155 case GIMPLE_BINARY_RHS:
3156 tem = gimple_assign_rhs2 (stmt);
3157 if (TREE_CODE (tem) == SSA_NAME)
3158 tem = SSA_VAL (tem);
3159 if (is_gimple_min_invariant (tem))
3160 return true;
3161 /* Fallthru. */
3163 case GIMPLE_SINGLE_RHS:
3164 /* Constants inside reference ops are rarely interesting, but
3165 it can take a lot of looking to find them. */
3166 case GIMPLE_UNARY_RHS:
3167 tem = gimple_assign_rhs1 (stmt);
3168 if (TREE_CODE (tem) == SSA_NAME)
3169 tem = SSA_VAL (tem);
3170 return is_gimple_min_invariant (tem);
3172 default:
3173 gcc_unreachable ();
3175 return false;
3178 /* Replace SSA_NAMES in expr with their value numbers, and return the
3179 result.
3180 This is performed in place. */
3182 static tree
3183 valueize_expr (tree expr)
3185 switch (TREE_CODE_CLASS (TREE_CODE (expr)))
3187 case tcc_binary:
3188 TREE_OPERAND (expr, 1) = vn_valueize (TREE_OPERAND (expr, 1));
3189 /* Fallthru. */
3190 case tcc_unary:
3191 TREE_OPERAND (expr, 0) = vn_valueize (TREE_OPERAND (expr, 0));
3192 break;
3193 default:;
3195 return expr;
3198 /* Simplify the binary expression RHS, and return the result if
3199 simplified. */
3201 static tree
3202 simplify_binary_expression (gimple stmt)
3204 tree result = NULL_TREE;
3205 tree op0 = gimple_assign_rhs1 (stmt);
3206 tree op1 = gimple_assign_rhs2 (stmt);
3207 enum tree_code code = gimple_assign_rhs_code (stmt);
3209 /* This will not catch every single case we could combine, but will
3210 catch those with constants. The goal here is to simultaneously
3211 combine constants between expressions, but avoid infinite
3212 expansion of expressions during simplification. */
3213 if (TREE_CODE (op0) == SSA_NAME)
3215 if (VN_INFO (op0)->has_constants
3216 || TREE_CODE_CLASS (code) == tcc_comparison
3217 || code == COMPLEX_EXPR)
3218 op0 = valueize_expr (vn_get_expr_for (op0));
3219 else
3220 op0 = vn_valueize (op0);
3223 if (TREE_CODE (op1) == SSA_NAME)
3225 if (VN_INFO (op1)->has_constants
3226 || code == COMPLEX_EXPR)
3227 op1 = valueize_expr (vn_get_expr_for (op1));
3228 else
3229 op1 = vn_valueize (op1);
3232 /* Pointer plus constant can be represented as invariant address.
3233 Do so to allow further propatation, see also tree forwprop. */
3234 if (code == POINTER_PLUS_EXPR
3235 && tree_fits_uhwi_p (op1)
3236 && TREE_CODE (op0) == ADDR_EXPR
3237 && is_gimple_min_invariant (op0))
3238 return build_invariant_address (TREE_TYPE (op0),
3239 TREE_OPERAND (op0, 0),
3240 tree_to_uhwi (op1));
3242 /* Avoid folding if nothing changed. */
3243 if (op0 == gimple_assign_rhs1 (stmt)
3244 && op1 == gimple_assign_rhs2 (stmt))
3245 return NULL_TREE;
3247 fold_defer_overflow_warnings ();
3249 result = fold_binary (code, gimple_expr_type (stmt), op0, op1);
3250 if (result)
3251 STRIP_USELESS_TYPE_CONVERSION (result);
3253 fold_undefer_overflow_warnings (result && valid_gimple_rhs_p (result),
3254 stmt, 0);
3256 /* Make sure result is not a complex expression consisting
3257 of operators of operators (IE (a + b) + (a + c))
3258 Otherwise, we will end up with unbounded expressions if
3259 fold does anything at all. */
3260 if (result && valid_gimple_rhs_p (result))
3261 return result;
3263 return NULL_TREE;
3266 /* Simplify the unary expression RHS, and return the result if
3267 simplified. */
3269 static tree
3270 simplify_unary_expression (gimple stmt)
3272 tree result = NULL_TREE;
3273 tree orig_op0, op0 = gimple_assign_rhs1 (stmt);
3274 enum tree_code code = gimple_assign_rhs_code (stmt);
3276 /* We handle some tcc_reference codes here that are all
3277 GIMPLE_ASSIGN_SINGLE codes. */
3278 if (code == REALPART_EXPR
3279 || code == IMAGPART_EXPR
3280 || code == VIEW_CONVERT_EXPR
3281 || code == BIT_FIELD_REF)
3282 op0 = TREE_OPERAND (op0, 0);
3284 if (TREE_CODE (op0) != SSA_NAME)
3285 return NULL_TREE;
3287 orig_op0 = op0;
3288 if (VN_INFO (op0)->has_constants)
3289 op0 = valueize_expr (vn_get_expr_for (op0));
3290 else if (CONVERT_EXPR_CODE_P (code)
3291 || code == REALPART_EXPR
3292 || code == IMAGPART_EXPR
3293 || code == VIEW_CONVERT_EXPR
3294 || code == BIT_FIELD_REF)
3296 /* We want to do tree-combining on conversion-like expressions.
3297 Make sure we feed only SSA_NAMEs or constants to fold though. */
3298 tree tem = valueize_expr (vn_get_expr_for (op0));
3299 if (UNARY_CLASS_P (tem)
3300 || BINARY_CLASS_P (tem)
3301 || TREE_CODE (tem) == VIEW_CONVERT_EXPR
3302 || TREE_CODE (tem) == SSA_NAME
3303 || TREE_CODE (tem) == CONSTRUCTOR
3304 || is_gimple_min_invariant (tem))
3305 op0 = tem;
3308 /* Avoid folding if nothing changed, but remember the expression. */
3309 if (op0 == orig_op0)
3310 return NULL_TREE;
3312 if (code == BIT_FIELD_REF)
3314 tree rhs = gimple_assign_rhs1 (stmt);
3315 result = fold_ternary (BIT_FIELD_REF, TREE_TYPE (rhs),
3316 op0, TREE_OPERAND (rhs, 1), TREE_OPERAND (rhs, 2));
3318 else
3319 result = fold_unary_ignore_overflow (code, gimple_expr_type (stmt), op0);
3320 if (result)
3322 STRIP_USELESS_TYPE_CONVERSION (result);
3323 if (valid_gimple_rhs_p (result))
3324 return result;
3327 return NULL_TREE;
3330 /* Try to simplify RHS using equivalences and constant folding. */
3332 static tree
3333 try_to_simplify (gimple stmt)
3335 enum tree_code code = gimple_assign_rhs_code (stmt);
3336 tree tem;
3338 /* For stores we can end up simplifying a SSA_NAME rhs. Just return
3339 in this case, there is no point in doing extra work. */
3340 if (code == SSA_NAME)
3341 return NULL_TREE;
3343 /* First try constant folding based on our current lattice. */
3344 tem = gimple_fold_stmt_to_constant_1 (stmt, vn_valueize);
3345 if (tem
3346 && (TREE_CODE (tem) == SSA_NAME
3347 || is_gimple_min_invariant (tem)))
3348 return tem;
3350 /* If that didn't work try combining multiple statements. */
3351 switch (TREE_CODE_CLASS (code))
3353 case tcc_reference:
3354 /* Fallthrough for some unary codes that can operate on registers. */
3355 if (!(code == REALPART_EXPR
3356 || code == IMAGPART_EXPR
3357 || code == VIEW_CONVERT_EXPR
3358 || code == BIT_FIELD_REF))
3359 break;
3360 /* We could do a little more with unary ops, if they expand
3361 into binary ops, but it's debatable whether it is worth it. */
3362 case tcc_unary:
3363 return simplify_unary_expression (stmt);
3365 case tcc_comparison:
3366 case tcc_binary:
3367 return simplify_binary_expression (stmt);
3369 default:
3370 break;
3373 return NULL_TREE;
3376 /* Visit and value number USE, return true if the value number
3377 changed. */
3379 static bool
3380 visit_use (tree use)
3382 bool changed = false;
3383 gimple stmt = SSA_NAME_DEF_STMT (use);
3385 mark_use_processed (use);
3387 gcc_assert (!SSA_NAME_IN_FREE_LIST (use));
3388 if (dump_file && (dump_flags & TDF_DETAILS)
3389 && !SSA_NAME_IS_DEFAULT_DEF (use))
3391 fprintf (dump_file, "Value numbering ");
3392 print_generic_expr (dump_file, use, 0);
3393 fprintf (dump_file, " stmt = ");
3394 print_gimple_stmt (dump_file, stmt, 0, 0);
3397 /* Handle uninitialized uses. */
3398 if (SSA_NAME_IS_DEFAULT_DEF (use))
3399 changed = set_ssa_val_to (use, use);
3400 else
3402 if (gimple_code (stmt) == GIMPLE_PHI)
3403 changed = visit_phi (stmt);
3404 else if (gimple_has_volatile_ops (stmt))
3405 changed = defs_to_varying (stmt);
3406 else if (is_gimple_assign (stmt))
3408 enum tree_code code = gimple_assign_rhs_code (stmt);
3409 tree lhs = gimple_assign_lhs (stmt);
3410 tree rhs1 = gimple_assign_rhs1 (stmt);
3411 tree simplified;
3413 /* Shortcut for copies. Simplifying copies is pointless,
3414 since we copy the expression and value they represent. */
3415 if (code == SSA_NAME
3416 && TREE_CODE (lhs) == SSA_NAME)
3418 changed = visit_copy (lhs, rhs1);
3419 goto done;
3421 simplified = try_to_simplify (stmt);
3422 if (simplified)
3424 if (dump_file && (dump_flags & TDF_DETAILS))
3426 fprintf (dump_file, "RHS ");
3427 print_gimple_expr (dump_file, stmt, 0, 0);
3428 fprintf (dump_file, " simplified to ");
3429 print_generic_expr (dump_file, simplified, 0);
3430 if (TREE_CODE (lhs) == SSA_NAME)
3431 fprintf (dump_file, " has constants %d\n",
3432 expr_has_constants (simplified));
3433 else
3434 fprintf (dump_file, "\n");
3437 /* Setting value numbers to constants will occasionally
3438 screw up phi congruence because constants are not
3439 uniquely associated with a single ssa name that can be
3440 looked up. */
3441 if (simplified
3442 && is_gimple_min_invariant (simplified)
3443 && TREE_CODE (lhs) == SSA_NAME)
3445 VN_INFO (lhs)->expr = simplified;
3446 VN_INFO (lhs)->has_constants = true;
3447 changed = set_ssa_val_to (lhs, simplified);
3448 goto done;
3450 else if (simplified
3451 && TREE_CODE (simplified) == SSA_NAME
3452 && TREE_CODE (lhs) == SSA_NAME)
3454 changed = visit_copy (lhs, simplified);
3455 goto done;
3457 else if (simplified)
3459 if (TREE_CODE (lhs) == SSA_NAME)
3461 VN_INFO (lhs)->has_constants = expr_has_constants (simplified);
3462 /* We have to unshare the expression or else
3463 valuizing may change the IL stream. */
3464 VN_INFO (lhs)->expr = unshare_expr (simplified);
3467 else if (stmt_has_constants (stmt)
3468 && TREE_CODE (lhs) == SSA_NAME)
3469 VN_INFO (lhs)->has_constants = true;
3470 else if (TREE_CODE (lhs) == SSA_NAME)
3472 /* We reset expr and constantness here because we may
3473 have been value numbering optimistically, and
3474 iterating. They may become non-constant in this case,
3475 even if they were optimistically constant. */
3477 VN_INFO (lhs)->has_constants = false;
3478 VN_INFO (lhs)->expr = NULL_TREE;
3481 if ((TREE_CODE (lhs) == SSA_NAME
3482 /* We can substitute SSA_NAMEs that are live over
3483 abnormal edges with their constant value. */
3484 && !(gimple_assign_copy_p (stmt)
3485 && is_gimple_min_invariant (rhs1))
3486 && !(simplified
3487 && is_gimple_min_invariant (simplified))
3488 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
3489 /* Stores or copies from SSA_NAMEs that are live over
3490 abnormal edges are a problem. */
3491 || (code == SSA_NAME
3492 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs1)))
3493 changed = defs_to_varying (stmt);
3494 else if (REFERENCE_CLASS_P (lhs)
3495 || DECL_P (lhs))
3496 changed = visit_reference_op_store (lhs, rhs1, stmt);
3497 else if (TREE_CODE (lhs) == SSA_NAME)
3499 if ((gimple_assign_copy_p (stmt)
3500 && is_gimple_min_invariant (rhs1))
3501 || (simplified
3502 && is_gimple_min_invariant (simplified)))
3504 VN_INFO (lhs)->has_constants = true;
3505 if (simplified)
3506 changed = set_ssa_val_to (lhs, simplified);
3507 else
3508 changed = set_ssa_val_to (lhs, rhs1);
3510 else
3512 /* First try to lookup the simplified expression. */
3513 if (simplified)
3515 enum gimple_rhs_class rhs_class;
3518 rhs_class = get_gimple_rhs_class (TREE_CODE (simplified));
3519 if ((rhs_class == GIMPLE_UNARY_RHS
3520 || rhs_class == GIMPLE_BINARY_RHS
3521 || rhs_class == GIMPLE_TERNARY_RHS)
3522 && valid_gimple_rhs_p (simplified))
3524 tree result = vn_nary_op_lookup (simplified, NULL);
3525 if (result)
3527 changed = set_ssa_val_to (lhs, result);
3528 goto done;
3533 /* Otherwise visit the original statement. */
3534 switch (vn_get_stmt_kind (stmt))
3536 case VN_NARY:
3537 changed = visit_nary_op (lhs, stmt);
3538 break;
3539 case VN_REFERENCE:
3540 changed = visit_reference_op_load (lhs, rhs1, stmt);
3541 break;
3542 default:
3543 changed = defs_to_varying (stmt);
3544 break;
3548 else
3549 changed = defs_to_varying (stmt);
3551 else if (is_gimple_call (stmt))
3553 tree lhs = gimple_call_lhs (stmt);
3555 /* ??? We could try to simplify calls. */
3557 if (lhs && TREE_CODE (lhs) == SSA_NAME)
3559 if (stmt_has_constants (stmt))
3560 VN_INFO (lhs)->has_constants = true;
3561 else
3563 /* We reset expr and constantness here because we may
3564 have been value numbering optimistically, and
3565 iterating. They may become non-constant in this case,
3566 even if they were optimistically constant. */
3567 VN_INFO (lhs)->has_constants = false;
3568 VN_INFO (lhs)->expr = NULL_TREE;
3571 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
3573 changed = defs_to_varying (stmt);
3574 goto done;
3578 if (!gimple_call_internal_p (stmt)
3579 && (/* Calls to the same function with the same vuse
3580 and the same operands do not necessarily return the same
3581 value, unless they're pure or const. */
3582 gimple_call_flags (stmt) & (ECF_PURE | ECF_CONST)
3583 /* If calls have a vdef, subsequent calls won't have
3584 the same incoming vuse. So, if 2 calls with vdef have the
3585 same vuse, we know they're not subsequent.
3586 We can value number 2 calls to the same function with the
3587 same vuse and the same operands which are not subsequent
3588 the same, because there is no code in the program that can
3589 compare the 2 values... */
3590 || (gimple_vdef (stmt)
3591 /* ... unless the call returns a pointer which does
3592 not alias with anything else. In which case the
3593 information that the values are distinct are encoded
3594 in the IL. */
3595 && !(gimple_call_return_flags (stmt) & ERF_NOALIAS))))
3596 changed = visit_reference_op_call (lhs, stmt);
3597 else
3598 changed = defs_to_varying (stmt);
3600 else
3601 changed = defs_to_varying (stmt);
3603 done:
3604 return changed;
3607 /* Compare two operands by reverse postorder index */
3609 static int
3610 compare_ops (const void *pa, const void *pb)
3612 const tree opa = *((const tree *)pa);
3613 const tree opb = *((const tree *)pb);
3614 gimple opstmta = SSA_NAME_DEF_STMT (opa);
3615 gimple opstmtb = SSA_NAME_DEF_STMT (opb);
3616 basic_block bba;
3617 basic_block bbb;
3619 if (gimple_nop_p (opstmta) && gimple_nop_p (opstmtb))
3620 return SSA_NAME_VERSION (opa) - SSA_NAME_VERSION (opb);
3621 else if (gimple_nop_p (opstmta))
3622 return -1;
3623 else if (gimple_nop_p (opstmtb))
3624 return 1;
3626 bba = gimple_bb (opstmta);
3627 bbb = gimple_bb (opstmtb);
3629 if (!bba && !bbb)
3630 return SSA_NAME_VERSION (opa) - SSA_NAME_VERSION (opb);
3631 else if (!bba)
3632 return -1;
3633 else if (!bbb)
3634 return 1;
3636 if (bba == bbb)
3638 if (gimple_code (opstmta) == GIMPLE_PHI
3639 && gimple_code (opstmtb) == GIMPLE_PHI)
3640 return SSA_NAME_VERSION (opa) - SSA_NAME_VERSION (opb);
3641 else if (gimple_code (opstmta) == GIMPLE_PHI)
3642 return -1;
3643 else if (gimple_code (opstmtb) == GIMPLE_PHI)
3644 return 1;
3645 else if (gimple_uid (opstmta) != gimple_uid (opstmtb))
3646 return gimple_uid (opstmta) - gimple_uid (opstmtb);
3647 else
3648 return SSA_NAME_VERSION (opa) - SSA_NAME_VERSION (opb);
3650 return rpo_numbers[bba->index] - rpo_numbers[bbb->index];
3653 /* Sort an array containing members of a strongly connected component
3654 SCC so that the members are ordered by RPO number.
3655 This means that when the sort is complete, iterating through the
3656 array will give you the members in RPO order. */
3658 static void
3659 sort_scc (vec<tree> scc)
3661 scc.qsort (compare_ops);
3664 /* Insert the no longer used nary ONARY to the hash INFO. */
3666 static void
3667 copy_nary (vn_nary_op_t onary, vn_tables_t info)
3669 size_t size = sizeof_vn_nary_op (onary->length);
3670 vn_nary_op_t nary = alloc_vn_nary_op_noinit (onary->length,
3671 &info->nary_obstack);
3672 memcpy (nary, onary, size);
3673 vn_nary_op_insert_into (nary, info->nary, false);
3676 /* Insert the no longer used phi OPHI to the hash INFO. */
3678 static void
3679 copy_phi (vn_phi_t ophi, vn_tables_t info)
3681 vn_phi_t phi = (vn_phi_t) pool_alloc (info->phis_pool);
3682 vn_phi_s **slot;
3683 memcpy (phi, ophi, sizeof (*phi));
3684 ophi->phiargs.create (0);
3685 slot = info->phis.find_slot_with_hash (phi, phi->hashcode, INSERT);
3686 gcc_assert (!*slot);
3687 *slot = phi;
3690 /* Insert the no longer used reference OREF to the hash INFO. */
3692 static void
3693 copy_reference (vn_reference_t oref, vn_tables_t info)
3695 vn_reference_t ref;
3696 vn_reference_s **slot;
3697 ref = (vn_reference_t) pool_alloc (info->references_pool);
3698 memcpy (ref, oref, sizeof (*ref));
3699 oref->operands.create (0);
3700 slot = info->references.find_slot_with_hash (ref, ref->hashcode, INSERT);
3701 if (*slot)
3702 free_reference (*slot);
3703 *slot = ref;
3706 /* Process a strongly connected component in the SSA graph. */
3708 static void
3709 process_scc (vec<tree> scc)
3711 tree var;
3712 unsigned int i;
3713 unsigned int iterations = 0;
3714 bool changed = true;
3715 vn_nary_op_iterator_type hin;
3716 vn_phi_iterator_type hip;
3717 vn_reference_iterator_type hir;
3718 vn_nary_op_t nary;
3719 vn_phi_t phi;
3720 vn_reference_t ref;
3722 /* If the SCC has a single member, just visit it. */
3723 if (scc.length () == 1)
3725 tree use = scc[0];
3726 if (VN_INFO (use)->use_processed)
3727 return;
3728 /* We need to make sure it doesn't form a cycle itself, which can
3729 happen for self-referential PHI nodes. In that case we would
3730 end up inserting an expression with VN_TOP operands into the
3731 valid table which makes us derive bogus equivalences later.
3732 The cheapest way to check this is to assume it for all PHI nodes. */
3733 if (gimple_code (SSA_NAME_DEF_STMT (use)) == GIMPLE_PHI)
3734 /* Fallthru to iteration. */ ;
3735 else
3737 visit_use (use);
3738 return;
3742 /* Iterate over the SCC with the optimistic table until it stops
3743 changing. */
3744 current_info = optimistic_info;
3745 while (changed)
3747 changed = false;
3748 iterations++;
3749 if (dump_file && (dump_flags & TDF_DETAILS))
3750 fprintf (dump_file, "Starting iteration %d\n", iterations);
3751 /* As we are value-numbering optimistically we have to
3752 clear the expression tables and the simplified expressions
3753 in each iteration until we converge. */
3754 optimistic_info->nary.empty ();
3755 optimistic_info->phis.empty ();
3756 optimistic_info->references.empty ();
3757 obstack_free (&optimistic_info->nary_obstack, NULL);
3758 gcc_obstack_init (&optimistic_info->nary_obstack);
3759 empty_alloc_pool (optimistic_info->phis_pool);
3760 empty_alloc_pool (optimistic_info->references_pool);
3761 FOR_EACH_VEC_ELT (scc, i, var)
3762 VN_INFO (var)->expr = NULL_TREE;
3763 FOR_EACH_VEC_ELT (scc, i, var)
3764 changed |= visit_use (var);
3767 statistics_histogram_event (cfun, "SCC iterations", iterations);
3769 /* Finally, copy the contents of the no longer used optimistic
3770 table to the valid table. */
3771 FOR_EACH_HASH_TABLE_ELEMENT (optimistic_info->nary, nary, vn_nary_op_t, hin)
3772 copy_nary (nary, valid_info);
3773 FOR_EACH_HASH_TABLE_ELEMENT (optimistic_info->phis, phi, vn_phi_t, hip)
3774 copy_phi (phi, valid_info);
3775 FOR_EACH_HASH_TABLE_ELEMENT (optimistic_info->references,
3776 ref, vn_reference_t, hir)
3777 copy_reference (ref, valid_info);
3779 current_info = valid_info;
3783 /* Pop the components of the found SCC for NAME off the SCC stack
3784 and process them. Returns true if all went well, false if
3785 we run into resource limits. */
3787 static bool
3788 extract_and_process_scc_for_name (tree name)
3790 vec<tree> scc = vNULL;
3791 tree x;
3793 /* Found an SCC, pop the components off the SCC stack and
3794 process them. */
3797 x = sccstack.pop ();
3799 VN_INFO (x)->on_sccstack = false;
3800 scc.safe_push (x);
3801 } while (x != name);
3803 /* Bail out of SCCVN in case a SCC turns out to be incredibly large. */
3804 if (scc.length ()
3805 > (unsigned)PARAM_VALUE (PARAM_SCCVN_MAX_SCC_SIZE))
3807 if (dump_file)
3808 fprintf (dump_file, "WARNING: Giving up with SCCVN due to "
3809 "SCC size %u exceeding %u\n", scc.length (),
3810 (unsigned)PARAM_VALUE (PARAM_SCCVN_MAX_SCC_SIZE));
3812 scc.release ();
3813 return false;
3816 if (scc.length () > 1)
3817 sort_scc (scc);
3819 if (dump_file && (dump_flags & TDF_DETAILS))
3820 print_scc (dump_file, scc);
3822 process_scc (scc);
3824 scc.release ();
3826 return true;
3829 /* Depth first search on NAME to discover and process SCC's in the SSA
3830 graph.
3831 Execution of this algorithm relies on the fact that the SCC's are
3832 popped off the stack in topological order.
3833 Returns true if successful, false if we stopped processing SCC's due
3834 to resource constraints. */
3836 static bool
3837 DFS (tree name)
3839 vec<ssa_op_iter> itervec = vNULL;
3840 vec<tree> namevec = vNULL;
3841 use_operand_p usep = NULL;
3842 gimple defstmt;
3843 tree use;
3844 ssa_op_iter iter;
3846 start_over:
3847 /* SCC info */
3848 VN_INFO (name)->dfsnum = next_dfs_num++;
3849 VN_INFO (name)->visited = true;
3850 VN_INFO (name)->low = VN_INFO (name)->dfsnum;
3852 sccstack.safe_push (name);
3853 VN_INFO (name)->on_sccstack = true;
3854 defstmt = SSA_NAME_DEF_STMT (name);
3856 /* Recursively DFS on our operands, looking for SCC's. */
3857 if (!gimple_nop_p (defstmt))
3859 /* Push a new iterator. */
3860 if (gimple_code (defstmt) == GIMPLE_PHI)
3861 usep = op_iter_init_phiuse (&iter, defstmt, SSA_OP_ALL_USES);
3862 else
3863 usep = op_iter_init_use (&iter, defstmt, SSA_OP_ALL_USES);
3865 else
3866 clear_and_done_ssa_iter (&iter);
3868 while (1)
3870 /* If we are done processing uses of a name, go up the stack
3871 of iterators and process SCCs as we found them. */
3872 if (op_iter_done (&iter))
3874 /* See if we found an SCC. */
3875 if (VN_INFO (name)->low == VN_INFO (name)->dfsnum)
3876 if (!extract_and_process_scc_for_name (name))
3878 namevec.release ();
3879 itervec.release ();
3880 return false;
3883 /* Check if we are done. */
3884 if (namevec.is_empty ())
3886 namevec.release ();
3887 itervec.release ();
3888 return true;
3891 /* Restore the last use walker and continue walking there. */
3892 use = name;
3893 name = namevec.pop ();
3894 memcpy (&iter, &itervec.last (),
3895 sizeof (ssa_op_iter));
3896 itervec.pop ();
3897 goto continue_walking;
3900 use = USE_FROM_PTR (usep);
3902 /* Since we handle phi nodes, we will sometimes get
3903 invariants in the use expression. */
3904 if (TREE_CODE (use) == SSA_NAME)
3906 if (! (VN_INFO (use)->visited))
3908 /* Recurse by pushing the current use walking state on
3909 the stack and starting over. */
3910 itervec.safe_push (iter);
3911 namevec.safe_push (name);
3912 name = use;
3913 goto start_over;
3915 continue_walking:
3916 VN_INFO (name)->low = MIN (VN_INFO (name)->low,
3917 VN_INFO (use)->low);
3919 if (VN_INFO (use)->dfsnum < VN_INFO (name)->dfsnum
3920 && VN_INFO (use)->on_sccstack)
3922 VN_INFO (name)->low = MIN (VN_INFO (use)->dfsnum,
3923 VN_INFO (name)->low);
3927 usep = op_iter_next_use (&iter);
3931 /* Allocate a value number table. */
3933 static void
3934 allocate_vn_table (vn_tables_t table)
3936 table->phis.create (23);
3937 table->nary.create (23);
3938 table->references.create (23);
3940 gcc_obstack_init (&table->nary_obstack);
3941 table->phis_pool = create_alloc_pool ("VN phis",
3942 sizeof (struct vn_phi_s),
3943 30);
3944 table->references_pool = create_alloc_pool ("VN references",
3945 sizeof (struct vn_reference_s),
3946 30);
3949 /* Free a value number table. */
3951 static void
3952 free_vn_table (vn_tables_t table)
3954 table->phis.dispose ();
3955 table->nary.dispose ();
3956 table->references.dispose ();
3957 obstack_free (&table->nary_obstack, NULL);
3958 free_alloc_pool (table->phis_pool);
3959 free_alloc_pool (table->references_pool);
3962 static void
3963 init_scc_vn (void)
3965 size_t i;
3966 int j;
3967 int *rpo_numbers_temp;
3969 calculate_dominance_info (CDI_DOMINATORS);
3970 sccstack.create (0);
3971 constant_to_value_id.create (23);
3973 constant_value_ids = BITMAP_ALLOC (NULL);
3975 next_dfs_num = 1;
3976 next_value_id = 1;
3978 vn_ssa_aux_table.create (num_ssa_names + 1);
3979 /* VEC_alloc doesn't actually grow it to the right size, it just
3980 preallocates the space to do so. */
3981 vn_ssa_aux_table.safe_grow_cleared (num_ssa_names + 1);
3982 gcc_obstack_init (&vn_ssa_aux_obstack);
3984 shared_lookup_phiargs.create (0);
3985 shared_lookup_references.create (0);
3986 rpo_numbers = XNEWVEC (int, last_basic_block);
3987 rpo_numbers_temp =
3988 XNEWVEC (int, n_basic_blocks_for_fn (cfun) - NUM_FIXED_BLOCKS);
3989 pre_and_rev_post_order_compute (NULL, rpo_numbers_temp, false);
3991 /* RPO numbers is an array of rpo ordering, rpo[i] = bb means that
3992 the i'th block in RPO order is bb. We want to map bb's to RPO
3993 numbers, so we need to rearrange this array. */
3994 for (j = 0; j < n_basic_blocks_for_fn (cfun) - NUM_FIXED_BLOCKS; j++)
3995 rpo_numbers[rpo_numbers_temp[j]] = j;
3997 XDELETE (rpo_numbers_temp);
3999 VN_TOP = create_tmp_var_raw (void_type_node, "vn_top");
4001 /* Create the VN_INFO structures, and initialize value numbers to
4002 TOP. */
4003 for (i = 0; i < num_ssa_names; i++)
4005 tree name = ssa_name (i);
4006 if (name)
4008 VN_INFO_GET (name)->valnum = VN_TOP;
4009 VN_INFO (name)->expr = NULL_TREE;
4010 VN_INFO (name)->value_id = 0;
4014 renumber_gimple_stmt_uids ();
4016 /* Create the valid and optimistic value numbering tables. */
4017 valid_info = XCNEW (struct vn_tables_s);
4018 allocate_vn_table (valid_info);
4019 optimistic_info = XCNEW (struct vn_tables_s);
4020 allocate_vn_table (optimistic_info);
4023 void
4024 free_scc_vn (void)
4026 size_t i;
4028 constant_to_value_id.dispose ();
4029 BITMAP_FREE (constant_value_ids);
4030 shared_lookup_phiargs.release ();
4031 shared_lookup_references.release ();
4032 XDELETEVEC (rpo_numbers);
4034 for (i = 0; i < num_ssa_names; i++)
4036 tree name = ssa_name (i);
4037 if (name
4038 && VN_INFO (name)->needs_insertion)
4039 release_ssa_name (name);
4041 obstack_free (&vn_ssa_aux_obstack, NULL);
4042 vn_ssa_aux_table.release ();
4044 sccstack.release ();
4045 free_vn_table (valid_info);
4046 XDELETE (valid_info);
4047 free_vn_table (optimistic_info);
4048 XDELETE (optimistic_info);
4051 /* Set *ID according to RESULT. */
4053 static void
4054 set_value_id_for_result (tree result, unsigned int *id)
4056 if (result && TREE_CODE (result) == SSA_NAME)
4057 *id = VN_INFO (result)->value_id;
4058 else if (result && is_gimple_min_invariant (result))
4059 *id = get_or_alloc_constant_value_id (result);
4060 else
4061 *id = get_next_value_id ();
4064 /* Set the value ids in the valid hash tables. */
4066 static void
4067 set_hashtable_value_ids (void)
4069 vn_nary_op_iterator_type hin;
4070 vn_phi_iterator_type hip;
4071 vn_reference_iterator_type hir;
4072 vn_nary_op_t vno;
4073 vn_reference_t vr;
4074 vn_phi_t vp;
4076 /* Now set the value ids of the things we had put in the hash
4077 table. */
4079 FOR_EACH_HASH_TABLE_ELEMENT (valid_info->nary, vno, vn_nary_op_t, hin)
4080 set_value_id_for_result (vno->result, &vno->value_id);
4082 FOR_EACH_HASH_TABLE_ELEMENT (valid_info->phis, vp, vn_phi_t, hip)
4083 set_value_id_for_result (vp->result, &vp->value_id);
4085 FOR_EACH_HASH_TABLE_ELEMENT (valid_info->references, vr, vn_reference_t, hir)
4086 set_value_id_for_result (vr->result, &vr->value_id);
4089 /* Do SCCVN. Returns true if it finished, false if we bailed out
4090 due to resource constraints. DEFAULT_VN_WALK_KIND_ specifies
4091 how we use the alias oracle walking during the VN process. */
4093 bool
4094 run_scc_vn (vn_lookup_kind default_vn_walk_kind_)
4096 size_t i;
4097 tree param;
4099 default_vn_walk_kind = default_vn_walk_kind_;
4101 init_scc_vn ();
4102 current_info = valid_info;
4104 for (param = DECL_ARGUMENTS (current_function_decl);
4105 param;
4106 param = DECL_CHAIN (param))
4108 tree def = ssa_default_def (cfun, param);
4109 if (def)
4110 VN_INFO (def)->valnum = def;
4113 for (i = 1; i < num_ssa_names; ++i)
4115 tree name = ssa_name (i);
4116 if (name
4117 && VN_INFO (name)->visited == false
4118 && !has_zero_uses (name))
4119 if (!DFS (name))
4121 free_scc_vn ();
4122 return false;
4126 /* Initialize the value ids. */
4128 for (i = 1; i < num_ssa_names; ++i)
4130 tree name = ssa_name (i);
4131 vn_ssa_aux_t info;
4132 if (!name)
4133 continue;
4134 info = VN_INFO (name);
4135 if (info->valnum == name
4136 || info->valnum == VN_TOP)
4137 info->value_id = get_next_value_id ();
4138 else if (is_gimple_min_invariant (info->valnum))
4139 info->value_id = get_or_alloc_constant_value_id (info->valnum);
4142 /* Propagate. */
4143 for (i = 1; i < num_ssa_names; ++i)
4145 tree name = ssa_name (i);
4146 vn_ssa_aux_t info;
4147 if (!name)
4148 continue;
4149 info = VN_INFO (name);
4150 if (TREE_CODE (info->valnum) == SSA_NAME
4151 && info->valnum != name
4152 && info->value_id != VN_INFO (info->valnum)->value_id)
4153 info->value_id = VN_INFO (info->valnum)->value_id;
4156 set_hashtable_value_ids ();
4158 if (dump_file && (dump_flags & TDF_DETAILS))
4160 fprintf (dump_file, "Value numbers:\n");
4161 for (i = 0; i < num_ssa_names; i++)
4163 tree name = ssa_name (i);
4164 if (name
4165 && VN_INFO (name)->visited
4166 && SSA_VAL (name) != name)
4168 print_generic_expr (dump_file, name, 0);
4169 fprintf (dump_file, " = ");
4170 print_generic_expr (dump_file, SSA_VAL (name), 0);
4171 fprintf (dump_file, "\n");
4176 return true;
4179 /* Return the maximum value id we have ever seen. */
4181 unsigned int
4182 get_max_value_id (void)
4184 return next_value_id;
4187 /* Return the next unique value id. */
4189 unsigned int
4190 get_next_value_id (void)
4192 return next_value_id++;
4196 /* Compare two expressions E1 and E2 and return true if they are equal. */
4198 bool
4199 expressions_equal_p (tree e1, tree e2)
4201 /* The obvious case. */
4202 if (e1 == e2)
4203 return true;
4205 /* If only one of them is null, they cannot be equal. */
4206 if (!e1 || !e2)
4207 return false;
4209 /* Now perform the actual comparison. */
4210 if (TREE_CODE (e1) == TREE_CODE (e2)
4211 && operand_equal_p (e1, e2, OEP_PURE_SAME))
4212 return true;
4214 return false;
4218 /* Return true if the nary operation NARY may trap. This is a copy
4219 of stmt_could_throw_1_p adjusted to the SCCVN IL. */
4221 bool
4222 vn_nary_may_trap (vn_nary_op_t nary)
4224 tree type;
4225 tree rhs2 = NULL_TREE;
4226 bool honor_nans = false;
4227 bool honor_snans = false;
4228 bool fp_operation = false;
4229 bool honor_trapv = false;
4230 bool handled, ret;
4231 unsigned i;
4233 if (TREE_CODE_CLASS (nary->opcode) == tcc_comparison
4234 || TREE_CODE_CLASS (nary->opcode) == tcc_unary
4235 || TREE_CODE_CLASS (nary->opcode) == tcc_binary)
4237 type = nary->type;
4238 fp_operation = FLOAT_TYPE_P (type);
4239 if (fp_operation)
4241 honor_nans = flag_trapping_math && !flag_finite_math_only;
4242 honor_snans = flag_signaling_nans != 0;
4244 else if (INTEGRAL_TYPE_P (type)
4245 && TYPE_OVERFLOW_TRAPS (type))
4246 honor_trapv = true;
4248 if (nary->length >= 2)
4249 rhs2 = nary->op[1];
4250 ret = operation_could_trap_helper_p (nary->opcode, fp_operation,
4251 honor_trapv,
4252 honor_nans, honor_snans, rhs2,
4253 &handled);
4254 if (handled
4255 && ret)
4256 return true;
4258 for (i = 0; i < nary->length; ++i)
4259 if (tree_could_trap_p (nary->op[i]))
4260 return true;
4262 return false;