1 /* Alias analysis for trees.
2 Copyright (C) 2004-2016 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
29 #include "timevar.h" /* for TV_ALIAS_STMT_WALK */
32 #include "tree-pretty-print.h"
34 #include "fold-const.h"
36 #include "langhooks.h"
40 #include "ipa-reference.h"
42 /* Broad overview of how alias analysis on gimple works:
44 Statements clobbering or using memory are linked through the
45 virtual operand factored use-def chain. The virtual operand
46 is unique per function, its symbol is accessible via gimple_vop (cfun).
47 Virtual operands are used for efficiently walking memory statements
48 in the gimple IL and are useful for things like value-numbering as
49 a generation count for memory references.
51 SSA_NAME pointers may have associated points-to information
52 accessible via the SSA_NAME_PTR_INFO macro. Flow-insensitive
53 points-to information is (re-)computed by the TODO_rebuild_alias
54 pass manager todo. Points-to information is also used for more
55 precise tracking of call-clobbered and call-used variables and
56 related disambiguations.
58 This file contains functions for disambiguating memory references,
59 the so called alias-oracle and tools for walking of the gimple IL.
61 The main alias-oracle entry-points are
63 bool stmt_may_clobber_ref_p (gimple *, tree)
65 This function queries if a statement may invalidate (parts of)
66 the memory designated by the reference tree argument.
68 bool ref_maybe_used_by_stmt_p (gimple *, tree)
70 This function queries if a statement may need (parts of) the
71 memory designated by the reference tree argument.
73 There are variants of these functions that only handle the call
74 part of a statement, call_may_clobber_ref_p and ref_maybe_used_by_call_p.
75 Note that these do not disambiguate against a possible call lhs.
77 bool refs_may_alias_p (tree, tree)
79 This function tries to disambiguate two reference trees.
81 bool ptr_deref_may_alias_global_p (tree)
83 This function queries if dereferencing a pointer variable may
86 More low-level disambiguators are available and documented in
87 this file. Low-level disambiguators dealing with points-to
88 information are in tree-ssa-structalias.c. */
91 /* Query statistics for the different low-level disambiguators.
92 A high-level query may trigger multiple of them. */
95 unsigned HOST_WIDE_INT refs_may_alias_p_may_alias
;
96 unsigned HOST_WIDE_INT refs_may_alias_p_no_alias
;
97 unsigned HOST_WIDE_INT ref_maybe_used_by_call_p_may_alias
;
98 unsigned HOST_WIDE_INT ref_maybe_used_by_call_p_no_alias
;
99 unsigned HOST_WIDE_INT call_may_clobber_ref_p_may_alias
;
100 unsigned HOST_WIDE_INT call_may_clobber_ref_p_no_alias
;
104 dump_alias_stats (FILE *s
)
106 fprintf (s
, "\nAlias oracle query stats:\n");
107 fprintf (s
, " refs_may_alias_p: "
108 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
109 HOST_WIDE_INT_PRINT_DEC
" queries\n",
110 alias_stats
.refs_may_alias_p_no_alias
,
111 alias_stats
.refs_may_alias_p_no_alias
112 + alias_stats
.refs_may_alias_p_may_alias
);
113 fprintf (s
, " ref_maybe_used_by_call_p: "
114 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
115 HOST_WIDE_INT_PRINT_DEC
" queries\n",
116 alias_stats
.ref_maybe_used_by_call_p_no_alias
,
117 alias_stats
.refs_may_alias_p_no_alias
118 + alias_stats
.ref_maybe_used_by_call_p_may_alias
);
119 fprintf (s
, " call_may_clobber_ref_p: "
120 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
121 HOST_WIDE_INT_PRINT_DEC
" queries\n",
122 alias_stats
.call_may_clobber_ref_p_no_alias
,
123 alias_stats
.call_may_clobber_ref_p_no_alias
124 + alias_stats
.call_may_clobber_ref_p_may_alias
);
125 dump_alias_stats_in_alias_c (s
);
129 /* Return true, if dereferencing PTR may alias with a global variable. */
132 ptr_deref_may_alias_global_p (tree ptr
)
134 struct ptr_info_def
*pi
;
136 /* If we end up with a pointer constant here that may point
138 if (TREE_CODE (ptr
) != SSA_NAME
)
141 pi
= SSA_NAME_PTR_INFO (ptr
);
143 /* If we do not have points-to information for this variable,
148 /* ??? This does not use TBAA to prune globals ptr may not access. */
149 return pt_solution_includes_global (&pi
->pt
);
152 /* Return true if dereferencing PTR may alias DECL.
153 The caller is responsible for applying TBAA to see if PTR
154 may access DECL at all. */
157 ptr_deref_may_alias_decl_p (tree ptr
, tree decl
)
159 struct ptr_info_def
*pi
;
161 /* Conversions are irrelevant for points-to information and
162 data-dependence analysis can feed us those. */
165 /* Anything we do not explicilty handle aliases. */
166 if ((TREE_CODE (ptr
) != SSA_NAME
167 && TREE_CODE (ptr
) != ADDR_EXPR
168 && TREE_CODE (ptr
) != POINTER_PLUS_EXPR
)
169 || !POINTER_TYPE_P (TREE_TYPE (ptr
))
170 || (TREE_CODE (decl
) != VAR_DECL
171 && TREE_CODE (decl
) != PARM_DECL
172 && TREE_CODE (decl
) != RESULT_DECL
))
175 /* Disregard pointer offsetting. */
176 if (TREE_CODE (ptr
) == POINTER_PLUS_EXPR
)
180 ptr
= TREE_OPERAND (ptr
, 0);
182 while (TREE_CODE (ptr
) == POINTER_PLUS_EXPR
);
183 return ptr_deref_may_alias_decl_p (ptr
, decl
);
186 /* ADDR_EXPR pointers either just offset another pointer or directly
187 specify the pointed-to set. */
188 if (TREE_CODE (ptr
) == ADDR_EXPR
)
190 tree base
= get_base_address (TREE_OPERAND (ptr
, 0));
192 && (TREE_CODE (base
) == MEM_REF
193 || TREE_CODE (base
) == TARGET_MEM_REF
))
194 ptr
= TREE_OPERAND (base
, 0);
197 return compare_base_decls (base
, decl
) != 0;
199 && CONSTANT_CLASS_P (base
))
205 /* Non-aliased variables can not be pointed to. */
206 if (!may_be_aliased (decl
))
209 /* If we do not have useful points-to information for this pointer
210 we cannot disambiguate anything else. */
211 pi
= SSA_NAME_PTR_INFO (ptr
);
215 return pt_solution_includes (&pi
->pt
, decl
);
218 /* Return true if dereferenced PTR1 and PTR2 may alias.
219 The caller is responsible for applying TBAA to see if accesses
220 through PTR1 and PTR2 may conflict at all. */
223 ptr_derefs_may_alias_p (tree ptr1
, tree ptr2
)
225 struct ptr_info_def
*pi1
, *pi2
;
227 /* Conversions are irrelevant for points-to information and
228 data-dependence analysis can feed us those. */
232 /* Disregard pointer offsetting. */
233 if (TREE_CODE (ptr1
) == POINTER_PLUS_EXPR
)
237 ptr1
= TREE_OPERAND (ptr1
, 0);
239 while (TREE_CODE (ptr1
) == POINTER_PLUS_EXPR
);
240 return ptr_derefs_may_alias_p (ptr1
, ptr2
);
242 if (TREE_CODE (ptr2
) == POINTER_PLUS_EXPR
)
246 ptr2
= TREE_OPERAND (ptr2
, 0);
248 while (TREE_CODE (ptr2
) == POINTER_PLUS_EXPR
);
249 return ptr_derefs_may_alias_p (ptr1
, ptr2
);
252 /* ADDR_EXPR pointers either just offset another pointer or directly
253 specify the pointed-to set. */
254 if (TREE_CODE (ptr1
) == ADDR_EXPR
)
256 tree base
= get_base_address (TREE_OPERAND (ptr1
, 0));
258 && (TREE_CODE (base
) == MEM_REF
259 || TREE_CODE (base
) == TARGET_MEM_REF
))
260 return ptr_derefs_may_alias_p (TREE_OPERAND (base
, 0), ptr2
);
263 return ptr_deref_may_alias_decl_p (ptr2
, base
);
267 if (TREE_CODE (ptr2
) == ADDR_EXPR
)
269 tree base
= get_base_address (TREE_OPERAND (ptr2
, 0));
271 && (TREE_CODE (base
) == MEM_REF
272 || TREE_CODE (base
) == TARGET_MEM_REF
))
273 return ptr_derefs_may_alias_p (ptr1
, TREE_OPERAND (base
, 0));
276 return ptr_deref_may_alias_decl_p (ptr1
, base
);
281 /* From here we require SSA name pointers. Anything else aliases. */
282 if (TREE_CODE (ptr1
) != SSA_NAME
283 || TREE_CODE (ptr2
) != SSA_NAME
284 || !POINTER_TYPE_P (TREE_TYPE (ptr1
))
285 || !POINTER_TYPE_P (TREE_TYPE (ptr2
)))
288 /* We may end up with two empty points-to solutions for two same pointers.
289 In this case we still want to say both pointers alias, so shortcut
294 /* If we do not have useful points-to information for either pointer
295 we cannot disambiguate anything else. */
296 pi1
= SSA_NAME_PTR_INFO (ptr1
);
297 pi2
= SSA_NAME_PTR_INFO (ptr2
);
301 /* ??? This does not use TBAA to prune decls from the intersection
302 that not both pointers may access. */
303 return pt_solutions_intersect (&pi1
->pt
, &pi2
->pt
);
306 /* Return true if dereferencing PTR may alias *REF.
307 The caller is responsible for applying TBAA to see if PTR
308 may access *REF at all. */
311 ptr_deref_may_alias_ref_p_1 (tree ptr
, ao_ref
*ref
)
313 tree base
= ao_ref_base (ref
);
315 if (TREE_CODE (base
) == MEM_REF
316 || TREE_CODE (base
) == TARGET_MEM_REF
)
317 return ptr_derefs_may_alias_p (ptr
, TREE_OPERAND (base
, 0));
318 else if (DECL_P (base
))
319 return ptr_deref_may_alias_decl_p (ptr
, base
);
324 /* Returns true if PTR1 and PTR2 compare unequal because of points-to. */
327 ptrs_compare_unequal (tree ptr1
, tree ptr2
)
329 /* First resolve the pointers down to a SSA name pointer base or
330 a VAR_DECL, PARM_DECL or RESULT_DECL. This explicitely does
331 not yet try to handle LABEL_DECLs, FUNCTION_DECLs, CONST_DECLs
332 or STRING_CSTs which needs points-to adjustments to track them
333 in the points-to sets. */
334 tree obj1
= NULL_TREE
;
335 tree obj2
= NULL_TREE
;
336 if (TREE_CODE (ptr1
) == ADDR_EXPR
)
338 tree tem
= get_base_address (TREE_OPERAND (ptr1
, 0));
341 if (TREE_CODE (tem
) == VAR_DECL
342 || TREE_CODE (tem
) == PARM_DECL
343 || TREE_CODE (tem
) == RESULT_DECL
)
345 else if (TREE_CODE (tem
) == MEM_REF
)
346 ptr1
= TREE_OPERAND (tem
, 0);
348 if (TREE_CODE (ptr2
) == ADDR_EXPR
)
350 tree tem
= get_base_address (TREE_OPERAND (ptr2
, 0));
353 if (TREE_CODE (tem
) == VAR_DECL
354 || TREE_CODE (tem
) == PARM_DECL
355 || TREE_CODE (tem
) == RESULT_DECL
)
357 else if (TREE_CODE (tem
) == MEM_REF
)
358 ptr2
= TREE_OPERAND (tem
, 0);
362 /* Other code handles this correctly, no need to duplicate it here. */;
363 else if (obj1
&& TREE_CODE (ptr2
) == SSA_NAME
)
365 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (ptr2
);
366 /* We may not use restrict to optimize pointer comparisons.
367 See PR71062. So we have to assume that restrict-pointed-to
368 may be in fact obj1. */
369 if (!pi
|| pi
->pt
.vars_contains_restrict
)
371 return !pt_solution_includes (&pi
->pt
, obj1
);
373 else if (TREE_CODE (ptr1
) == SSA_NAME
&& obj2
)
375 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (ptr1
);
376 if (!pi
|| pi
->pt
.vars_contains_restrict
)
378 return !pt_solution_includes (&pi
->pt
, obj2
);
381 /* ??? We'd like to handle ptr1 != NULL and ptr1 != ptr2
382 but those require pt.null to be conservatively correct. */
387 /* Returns whether reference REF to BASE may refer to global memory. */
390 ref_may_alias_global_p_1 (tree base
)
393 return is_global_var (base
);
394 else if (TREE_CODE (base
) == MEM_REF
395 || TREE_CODE (base
) == TARGET_MEM_REF
)
396 return ptr_deref_may_alias_global_p (TREE_OPERAND (base
, 0));
401 ref_may_alias_global_p (ao_ref
*ref
)
403 tree base
= ao_ref_base (ref
);
404 return ref_may_alias_global_p_1 (base
);
408 ref_may_alias_global_p (tree ref
)
410 tree base
= get_base_address (ref
);
411 return ref_may_alias_global_p_1 (base
);
414 /* Return true whether STMT may clobber global memory. */
417 stmt_may_clobber_global_p (gimple
*stmt
)
421 if (!gimple_vdef (stmt
))
424 /* ??? We can ask the oracle whether an artificial pointer
425 dereference with a pointer with points-to information covering
426 all global memory (what about non-address taken memory?) maybe
427 clobbered by this call. As there is at the moment no convenient
428 way of doing that without generating garbage do some manual
430 ??? We could make a NULL ao_ref argument to the various
431 predicates special, meaning any global memory. */
433 switch (gimple_code (stmt
))
436 lhs
= gimple_assign_lhs (stmt
);
437 return (TREE_CODE (lhs
) != SSA_NAME
438 && ref_may_alias_global_p (lhs
));
447 /* Dump alias information on FILE. */
450 dump_alias_info (FILE *file
)
455 = lang_hooks
.decl_printable_name (current_function_decl
, 2);
458 fprintf (file
, "\n\nAlias information for %s\n\n", funcname
);
460 fprintf (file
, "Aliased symbols\n\n");
462 FOR_EACH_LOCAL_DECL (cfun
, i
, var
)
464 if (may_be_aliased (var
))
465 dump_variable (file
, var
);
468 fprintf (file
, "\nCall clobber information\n");
470 fprintf (file
, "\nESCAPED");
471 dump_points_to_solution (file
, &cfun
->gimple_df
->escaped
);
473 fprintf (file
, "\n\nFlow-insensitive points-to information\n\n");
475 FOR_EACH_SSA_NAME (i
, ptr
, cfun
)
477 struct ptr_info_def
*pi
;
479 if (!POINTER_TYPE_P (TREE_TYPE (ptr
))
480 || SSA_NAME_IN_FREE_LIST (ptr
))
483 pi
= SSA_NAME_PTR_INFO (ptr
);
485 dump_points_to_info_for (file
, ptr
);
488 fprintf (file
, "\n");
492 /* Dump alias information on stderr. */
495 debug_alias_info (void)
497 dump_alias_info (stderr
);
501 /* Dump the points-to set *PT into FILE. */
504 dump_points_to_solution (FILE *file
, struct pt_solution
*pt
)
507 fprintf (file
, ", points-to anything");
510 fprintf (file
, ", points-to non-local");
513 fprintf (file
, ", points-to escaped");
516 fprintf (file
, ", points-to unit escaped");
519 fprintf (file
, ", points-to NULL");
523 fprintf (file
, ", points-to vars: ");
524 dump_decl_set (file
, pt
->vars
);
525 if (pt
->vars_contains_nonlocal
526 || pt
->vars_contains_escaped
527 || pt
->vars_contains_escaped_heap
528 || pt
->vars_contains_restrict
)
530 const char *comma
= "";
531 fprintf (file
, " (");
532 if (pt
->vars_contains_nonlocal
)
534 fprintf (file
, "nonlocal");
537 if (pt
->vars_contains_escaped
)
539 fprintf (file
, "%sescaped", comma
);
542 if (pt
->vars_contains_escaped_heap
)
544 fprintf (file
, "%sescaped heap", comma
);
547 if (pt
->vars_contains_restrict
)
548 fprintf (file
, "%srestrict", comma
);
555 /* Unified dump function for pt_solution. */
558 debug (pt_solution
&ref
)
560 dump_points_to_solution (stderr
, &ref
);
564 debug (pt_solution
*ptr
)
569 fprintf (stderr
, "<nil>\n");
573 /* Dump points-to information for SSA_NAME PTR into FILE. */
576 dump_points_to_info_for (FILE *file
, tree ptr
)
578 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (ptr
);
580 print_generic_expr (file
, ptr
, dump_flags
);
583 dump_points_to_solution (file
, &pi
->pt
);
585 fprintf (file
, ", points-to anything");
587 fprintf (file
, "\n");
591 /* Dump points-to information for VAR into stderr. */
594 debug_points_to_info_for (tree var
)
596 dump_points_to_info_for (stderr
, var
);
600 /* Initializes the alias-oracle reference representation *R from REF. */
603 ao_ref_init (ao_ref
*r
, tree ref
)
610 r
->ref_alias_set
= -1;
611 r
->base_alias_set
= -1;
612 r
->volatile_p
= ref
? TREE_THIS_VOLATILE (ref
) : false;
615 /* Returns the base object of the memory reference *REF. */
618 ao_ref_base (ao_ref
*ref
)
624 ref
->base
= get_ref_base_and_extent (ref
->ref
, &ref
->offset
, &ref
->size
,
625 &ref
->max_size
, &reverse
);
629 /* Returns the base object alias set of the memory reference *REF. */
632 ao_ref_base_alias_set (ao_ref
*ref
)
635 if (ref
->base_alias_set
!= -1)
636 return ref
->base_alias_set
;
640 while (handled_component_p (base_ref
))
641 base_ref
= TREE_OPERAND (base_ref
, 0);
642 ref
->base_alias_set
= get_alias_set (base_ref
);
643 return ref
->base_alias_set
;
646 /* Returns the reference alias set of the memory reference *REF. */
649 ao_ref_alias_set (ao_ref
*ref
)
651 if (ref
->ref_alias_set
!= -1)
652 return ref
->ref_alias_set
;
653 ref
->ref_alias_set
= get_alias_set (ref
->ref
);
654 return ref
->ref_alias_set
;
657 /* Init an alias-oracle reference representation from a gimple pointer
658 PTR and a gimple size SIZE in bytes. If SIZE is NULL_TREE then the
659 size is assumed to be unknown. The access is assumed to be only
660 to or after of the pointer target, not before it. */
663 ao_ref_init_from_ptr_and_size (ao_ref
*ref
, tree ptr
, tree size
)
665 HOST_WIDE_INT t
, size_hwi
, extra_offset
= 0;
666 ref
->ref
= NULL_TREE
;
667 if (TREE_CODE (ptr
) == SSA_NAME
)
669 gimple
*stmt
= SSA_NAME_DEF_STMT (ptr
);
670 if (gimple_assign_single_p (stmt
)
671 && gimple_assign_rhs_code (stmt
) == ADDR_EXPR
)
672 ptr
= gimple_assign_rhs1 (stmt
);
673 else if (is_gimple_assign (stmt
)
674 && gimple_assign_rhs_code (stmt
) == POINTER_PLUS_EXPR
675 && TREE_CODE (gimple_assign_rhs2 (stmt
)) == INTEGER_CST
)
677 ptr
= gimple_assign_rhs1 (stmt
);
678 extra_offset
= BITS_PER_UNIT
679 * int_cst_value (gimple_assign_rhs2 (stmt
));
683 if (TREE_CODE (ptr
) == ADDR_EXPR
)
685 ref
->base
= get_addr_base_and_unit_offset (TREE_OPERAND (ptr
, 0), &t
);
687 ref
->offset
= BITS_PER_UNIT
* t
;
692 ref
->base
= get_base_address (TREE_OPERAND (ptr
, 0));
697 ref
->base
= build2 (MEM_REF
, char_type_node
,
698 ptr
, null_pointer_node
);
701 ref
->offset
+= extra_offset
;
703 && tree_fits_shwi_p (size
)
704 && (size_hwi
= tree_to_shwi (size
)) <= HOST_WIDE_INT_MAX
/ BITS_PER_UNIT
)
705 ref
->max_size
= ref
->size
= size_hwi
* BITS_PER_UNIT
;
707 ref
->max_size
= ref
->size
= -1;
708 ref
->ref_alias_set
= 0;
709 ref
->base_alias_set
= 0;
710 ref
->volatile_p
= false;
713 /* Return 1 if TYPE1 and TYPE2 are to be considered equivalent for the
714 purpose of TBAA. Return 0 if they are distinct and -1 if we cannot
718 same_type_for_tbaa (tree type1
, tree type2
)
720 type1
= TYPE_MAIN_VARIANT (type1
);
721 type2
= TYPE_MAIN_VARIANT (type2
);
723 /* If we would have to do structural comparison bail out. */
724 if (TYPE_STRUCTURAL_EQUALITY_P (type1
)
725 || TYPE_STRUCTURAL_EQUALITY_P (type2
))
728 /* Compare the canonical types. */
729 if (TYPE_CANONICAL (type1
) == TYPE_CANONICAL (type2
))
732 /* ??? Array types are not properly unified in all cases as we have
733 spurious changes in the index types for example. Removing this
734 causes all sorts of problems with the Fortran frontend. */
735 if (TREE_CODE (type1
) == ARRAY_TYPE
736 && TREE_CODE (type2
) == ARRAY_TYPE
)
739 /* ??? In Ada, an lvalue of an unconstrained type can be used to access an
740 object of one of its constrained subtypes, e.g. when a function with an
741 unconstrained parameter passed by reference is called on an object and
742 inlined. But, even in the case of a fixed size, type and subtypes are
743 not equivalent enough as to share the same TYPE_CANONICAL, since this
744 would mean that conversions between them are useless, whereas they are
745 not (e.g. type and subtypes can have different modes). So, in the end,
746 they are only guaranteed to have the same alias set. */
747 if (get_alias_set (type1
) == get_alias_set (type2
))
750 /* The types are known to be not equal. */
754 /* Determine if the two component references REF1 and REF2 which are
755 based on access types TYPE1 and TYPE2 and of which at least one is based
756 on an indirect reference may alias. REF2 is the only one that can
757 be a decl in which case REF2_IS_DECL is true.
758 REF1_ALIAS_SET, BASE1_ALIAS_SET, REF2_ALIAS_SET and BASE2_ALIAS_SET
759 are the respective alias sets. */
762 aliasing_component_refs_p (tree ref1
,
763 alias_set_type ref1_alias_set
,
764 alias_set_type base1_alias_set
,
765 HOST_WIDE_INT offset1
, HOST_WIDE_INT max_size1
,
767 alias_set_type ref2_alias_set
,
768 alias_set_type base2_alias_set
,
769 HOST_WIDE_INT offset2
, HOST_WIDE_INT max_size2
,
772 /* If one reference is a component references through pointers try to find a
773 common base and apply offset based disambiguation. This handles
775 struct A { int i; int j; } *q;
776 struct B { struct A a; int k; } *p;
777 disambiguating q->i and p->a.j. */
783 /* Choose bases and base types to search for. */
785 while (handled_component_p (base1
))
786 base1
= TREE_OPERAND (base1
, 0);
787 type1
= TREE_TYPE (base1
);
789 while (handled_component_p (base2
))
790 base2
= TREE_OPERAND (base2
, 0);
791 type2
= TREE_TYPE (base2
);
793 /* Now search for the type1 in the access path of ref2. This
794 would be a common base for doing offset based disambiguation on. */
796 while (handled_component_p (*refp
)
797 && same_type_for_tbaa (TREE_TYPE (*refp
), type1
) == 0)
798 refp
= &TREE_OPERAND (*refp
, 0);
799 same_p
= same_type_for_tbaa (TREE_TYPE (*refp
), type1
);
800 /* If we couldn't compare types we have to bail out. */
803 else if (same_p
== 1)
805 HOST_WIDE_INT offadj
, sztmp
, msztmp
;
807 get_ref_base_and_extent (*refp
, &offadj
, &sztmp
, &msztmp
, &reverse
);
809 get_ref_base_and_extent (base1
, &offadj
, &sztmp
, &msztmp
, &reverse
);
811 return ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
);
813 /* If we didn't find a common base, try the other way around. */
815 while (handled_component_p (*refp
)
816 && same_type_for_tbaa (TREE_TYPE (*refp
), type2
) == 0)
817 refp
= &TREE_OPERAND (*refp
, 0);
818 same_p
= same_type_for_tbaa (TREE_TYPE (*refp
), type2
);
819 /* If we couldn't compare types we have to bail out. */
822 else if (same_p
== 1)
824 HOST_WIDE_INT offadj
, sztmp
, msztmp
;
826 get_ref_base_and_extent (*refp
, &offadj
, &sztmp
, &msztmp
, &reverse
);
828 get_ref_base_and_extent (base2
, &offadj
, &sztmp
, &msztmp
, &reverse
);
830 return ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
);
833 /* If we have two type access paths B1.path1 and B2.path2 they may
834 only alias if either B1 is in B2.path2 or B2 is in B1.path1.
835 But we can still have a path that goes B1.path1...B2.path2 with
836 a part that we do not see. So we can only disambiguate now
837 if there is no B2 in the tail of path1 and no B1 on the
839 if (base1_alias_set
== ref2_alias_set
840 || alias_set_subset_of (base1_alias_set
, ref2_alias_set
))
842 /* If this is ptr vs. decl then we know there is no ptr ... decl path. */
844 return (base2_alias_set
== ref1_alias_set
845 || alias_set_subset_of (base2_alias_set
, ref1_alias_set
));
849 /* Return true if we can determine that component references REF1 and REF2,
850 that are within a common DECL, cannot overlap. */
853 nonoverlapping_component_refs_of_decl_p (tree ref1
, tree ref2
)
855 auto_vec
<tree
, 16> component_refs1
;
856 auto_vec
<tree
, 16> component_refs2
;
858 /* Create the stack of handled components for REF1. */
859 while (handled_component_p (ref1
))
861 component_refs1
.safe_push (ref1
);
862 ref1
= TREE_OPERAND (ref1
, 0);
864 if (TREE_CODE (ref1
) == MEM_REF
)
866 if (!integer_zerop (TREE_OPERAND (ref1
, 1)))
868 ref1
= TREE_OPERAND (TREE_OPERAND (ref1
, 0), 0);
871 /* Create the stack of handled components for REF2. */
872 while (handled_component_p (ref2
))
874 component_refs2
.safe_push (ref2
);
875 ref2
= TREE_OPERAND (ref2
, 0);
877 if (TREE_CODE (ref2
) == MEM_REF
)
879 if (!integer_zerop (TREE_OPERAND (ref2
, 1)))
881 ref2
= TREE_OPERAND (TREE_OPERAND (ref2
, 0), 0);
884 /* Bases must be either same or uncomparable. */
885 gcc_checking_assert (ref1
== ref2
886 || (DECL_P (ref1
) && DECL_P (ref2
)
887 && compare_base_decls (ref1
, ref2
) != 0));
889 /* Pop the stacks in parallel and examine the COMPONENT_REFs of the same
890 rank. This is sufficient because we start from the same DECL and you
891 cannot reference several fields at a time with COMPONENT_REFs (unlike
892 with ARRAY_RANGE_REFs for arrays) so you always need the same number
893 of them to access a sub-component, unless you're in a union, in which
894 case the return value will precisely be false. */
899 if (component_refs1
.is_empty ())
901 ref1
= component_refs1
.pop ();
903 while (!RECORD_OR_UNION_TYPE_P (TREE_TYPE (TREE_OPERAND (ref1
, 0))));
907 if (component_refs2
.is_empty ())
909 ref2
= component_refs2
.pop ();
911 while (!RECORD_OR_UNION_TYPE_P (TREE_TYPE (TREE_OPERAND (ref2
, 0))));
913 /* Beware of BIT_FIELD_REF. */
914 if (TREE_CODE (ref1
) != COMPONENT_REF
915 || TREE_CODE (ref2
) != COMPONENT_REF
)
918 tree field1
= TREE_OPERAND (ref1
, 1);
919 tree field2
= TREE_OPERAND (ref2
, 1);
921 /* ??? We cannot simply use the type of operand #0 of the refs here
922 as the Fortran compiler smuggles type punning into COMPONENT_REFs
923 for common blocks instead of using unions like everyone else. */
924 tree type1
= DECL_CONTEXT (field1
);
925 tree type2
= DECL_CONTEXT (field2
);
927 /* We cannot disambiguate fields in a union or qualified union. */
928 if (type1
!= type2
|| TREE_CODE (type1
) != RECORD_TYPE
)
931 if (field1
!= field2
)
933 /* A field and its representative need to be considered the
935 if (DECL_BIT_FIELD_REPRESENTATIVE (field1
) == field2
936 || DECL_BIT_FIELD_REPRESENTATIVE (field2
) == field1
)
938 /* Different fields of the same record type cannot overlap.
939 ??? Bitfields can overlap at RTL level so punt on them. */
940 if (DECL_BIT_FIELD (field1
) && DECL_BIT_FIELD (field2
))
949 /* qsort compare function to sort FIELD_DECLs after their
950 DECL_FIELD_CONTEXT TYPE_UID. */
953 ncr_compar (const void *field1_
, const void *field2_
)
955 const_tree field1
= *(const_tree
*) const_cast <void *>(field1_
);
956 const_tree field2
= *(const_tree
*) const_cast <void *>(field2_
);
957 unsigned int uid1
= TYPE_UID (DECL_FIELD_CONTEXT (field1
));
958 unsigned int uid2
= TYPE_UID (DECL_FIELD_CONTEXT (field2
));
961 else if (uid1
> uid2
)
966 /* Return true if we can determine that the fields referenced cannot
967 overlap for any pair of objects. */
970 nonoverlapping_component_refs_p (const_tree x
, const_tree y
)
972 if (!flag_strict_aliasing
974 || TREE_CODE (x
) != COMPONENT_REF
975 || TREE_CODE (y
) != COMPONENT_REF
)
978 auto_vec
<const_tree
, 16> fieldsx
;
979 while (TREE_CODE (x
) == COMPONENT_REF
)
981 tree field
= TREE_OPERAND (x
, 1);
982 tree type
= DECL_FIELD_CONTEXT (field
);
983 if (TREE_CODE (type
) == RECORD_TYPE
)
984 fieldsx
.safe_push (field
);
985 x
= TREE_OPERAND (x
, 0);
987 if (fieldsx
.length () == 0)
989 auto_vec
<const_tree
, 16> fieldsy
;
990 while (TREE_CODE (y
) == COMPONENT_REF
)
992 tree field
= TREE_OPERAND (y
, 1);
993 tree type
= DECL_FIELD_CONTEXT (field
);
994 if (TREE_CODE (type
) == RECORD_TYPE
)
995 fieldsy
.safe_push (TREE_OPERAND (y
, 1));
996 y
= TREE_OPERAND (y
, 0);
998 if (fieldsy
.length () == 0)
1001 /* Most common case first. */
1002 if (fieldsx
.length () == 1
1003 && fieldsy
.length () == 1)
1004 return ((DECL_FIELD_CONTEXT (fieldsx
[0])
1005 == DECL_FIELD_CONTEXT (fieldsy
[0]))
1006 && fieldsx
[0] != fieldsy
[0]
1007 && !(DECL_BIT_FIELD (fieldsx
[0]) && DECL_BIT_FIELD (fieldsy
[0])));
1009 if (fieldsx
.length () == 2)
1011 if (ncr_compar (&fieldsx
[0], &fieldsx
[1]) == 1)
1012 std::swap (fieldsx
[0], fieldsx
[1]);
1015 fieldsx
.qsort (ncr_compar
);
1017 if (fieldsy
.length () == 2)
1019 if (ncr_compar (&fieldsy
[0], &fieldsy
[1]) == 1)
1020 std::swap (fieldsy
[0], fieldsy
[1]);
1023 fieldsy
.qsort (ncr_compar
);
1025 unsigned i
= 0, j
= 0;
1028 const_tree fieldx
= fieldsx
[i
];
1029 const_tree fieldy
= fieldsy
[j
];
1030 tree typex
= DECL_FIELD_CONTEXT (fieldx
);
1031 tree typey
= DECL_FIELD_CONTEXT (fieldy
);
1034 /* We're left with accessing different fields of a structure,
1035 no possible overlap. */
1036 if (fieldx
!= fieldy
)
1038 /* A field and its representative need to be considered the
1040 if (DECL_BIT_FIELD_REPRESENTATIVE (fieldx
) == fieldy
1041 || DECL_BIT_FIELD_REPRESENTATIVE (fieldy
) == fieldx
)
1043 /* Different fields of the same record type cannot overlap.
1044 ??? Bitfields can overlap at RTL level so punt on them. */
1045 if (DECL_BIT_FIELD (fieldx
) && DECL_BIT_FIELD (fieldy
))
1050 if (TYPE_UID (typex
) < TYPE_UID (typey
))
1053 if (i
== fieldsx
.length ())
1059 if (j
== fieldsy
.length ())
1069 /* Return true if two memory references based on the variables BASE1
1070 and BASE2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
1071 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. REF1 and REF2
1072 if non-NULL are the complete memory reference trees. */
1075 decl_refs_may_alias_p (tree ref1
, tree base1
,
1076 HOST_WIDE_INT offset1
, HOST_WIDE_INT max_size1
,
1077 tree ref2
, tree base2
,
1078 HOST_WIDE_INT offset2
, HOST_WIDE_INT max_size2
)
1080 gcc_checking_assert (DECL_P (base1
) && DECL_P (base2
));
1082 /* If both references are based on different variables, they cannot alias. */
1083 if (compare_base_decls (base1
, base2
) == 0)
1086 /* If both references are based on the same variable, they cannot alias if
1087 the accesses do not overlap. */
1088 if (!ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
))
1091 /* For components with variable position, the above test isn't sufficient,
1092 so we disambiguate component references manually. */
1094 && handled_component_p (ref1
) && handled_component_p (ref2
)
1095 && nonoverlapping_component_refs_of_decl_p (ref1
, ref2
))
1101 /* Return true if an indirect reference based on *PTR1 constrained
1102 to [OFFSET1, OFFSET1 + MAX_SIZE1) may alias a variable based on BASE2
1103 constrained to [OFFSET2, OFFSET2 + MAX_SIZE2). *PTR1 and BASE2 have
1104 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
1105 in which case they are computed on-demand. REF1 and REF2
1106 if non-NULL are the complete memory reference trees. */
1109 indirect_ref_may_alias_decl_p (tree ref1 ATTRIBUTE_UNUSED
, tree base1
,
1110 HOST_WIDE_INT offset1
,
1111 HOST_WIDE_INT max_size1 ATTRIBUTE_UNUSED
,
1112 alias_set_type ref1_alias_set
,
1113 alias_set_type base1_alias_set
,
1114 tree ref2 ATTRIBUTE_UNUSED
, tree base2
,
1115 HOST_WIDE_INT offset2
, HOST_WIDE_INT max_size2
,
1116 alias_set_type ref2_alias_set
,
1117 alias_set_type base2_alias_set
, bool tbaa_p
)
1120 tree ptrtype1
, dbase2
;
1121 HOST_WIDE_INT offset1p
= offset1
, offset2p
= offset2
;
1122 HOST_WIDE_INT doffset1
, doffset2
;
1124 gcc_checking_assert ((TREE_CODE (base1
) == MEM_REF
1125 || TREE_CODE (base1
) == TARGET_MEM_REF
)
1128 ptr1
= TREE_OPERAND (base1
, 0);
1130 /* The offset embedded in MEM_REFs can be negative. Bias them
1131 so that the resulting offset adjustment is positive. */
1132 offset_int moff
= mem_ref_offset (base1
);
1133 moff
<<= LOG2_BITS_PER_UNIT
;
1134 if (wi::neg_p (moff
))
1135 offset2p
+= (-moff
).to_short_addr ();
1137 offset1p
+= moff
.to_short_addr ();
1139 /* If only one reference is based on a variable, they cannot alias if
1140 the pointer access is beyond the extent of the variable access.
1141 (the pointer base cannot validly point to an offset less than zero
1143 ??? IVOPTs creates bases that do not honor this restriction,
1144 so do not apply this optimization for TARGET_MEM_REFs. */
1145 if (TREE_CODE (base1
) != TARGET_MEM_REF
1146 && !ranges_overlap_p (MAX (0, offset1p
), -1, offset2p
, max_size2
))
1148 /* They also cannot alias if the pointer may not point to the decl. */
1149 if (!ptr_deref_may_alias_decl_p (ptr1
, base2
))
1152 /* Disambiguations that rely on strict aliasing rules follow. */
1153 if (!flag_strict_aliasing
|| !tbaa_p
)
1156 ptrtype1
= TREE_TYPE (TREE_OPERAND (base1
, 1));
1158 /* If the alias set for a pointer access is zero all bets are off. */
1159 if (base1_alias_set
== 0)
1162 /* When we are trying to disambiguate an access with a pointer dereference
1163 as base versus one with a decl as base we can use both the size
1164 of the decl and its dynamic type for extra disambiguation.
1165 ??? We do not know anything about the dynamic type of the decl
1166 other than that its alias-set contains base2_alias_set as a subset
1167 which does not help us here. */
1168 /* As we know nothing useful about the dynamic type of the decl just
1169 use the usual conflict check rather than a subset test.
1170 ??? We could introduce -fvery-strict-aliasing when the language
1171 does not allow decls to have a dynamic type that differs from their
1172 static type. Then we can check
1173 !alias_set_subset_of (base1_alias_set, base2_alias_set) instead. */
1174 if (base1_alias_set
!= base2_alias_set
1175 && !alias_sets_conflict_p (base1_alias_set
, base2_alias_set
))
1177 /* If the size of the access relevant for TBAA through the pointer
1178 is bigger than the size of the decl we can't possibly access the
1179 decl via that pointer. */
1180 if (DECL_SIZE (base2
) && COMPLETE_TYPE_P (TREE_TYPE (ptrtype1
))
1181 && TREE_CODE (DECL_SIZE (base2
)) == INTEGER_CST
1182 && TREE_CODE (TYPE_SIZE (TREE_TYPE (ptrtype1
))) == INTEGER_CST
1183 /* ??? This in turn may run afoul when a decl of type T which is
1184 a member of union type U is accessed through a pointer to
1185 type U and sizeof T is smaller than sizeof U. */
1186 && TREE_CODE (TREE_TYPE (ptrtype1
)) != UNION_TYPE
1187 && TREE_CODE (TREE_TYPE (ptrtype1
)) != QUAL_UNION_TYPE
1188 && tree_int_cst_lt (DECL_SIZE (base2
), TYPE_SIZE (TREE_TYPE (ptrtype1
))))
1194 /* If the decl is accessed via a MEM_REF, reconstruct the base
1195 we can use for TBAA and an appropriately adjusted offset. */
1197 while (handled_component_p (dbase2
))
1198 dbase2
= TREE_OPERAND (dbase2
, 0);
1201 if (TREE_CODE (dbase2
) == MEM_REF
1202 || TREE_CODE (dbase2
) == TARGET_MEM_REF
)
1204 offset_int moff
= mem_ref_offset (dbase2
);
1205 moff
<<= LOG2_BITS_PER_UNIT
;
1206 if (wi::neg_p (moff
))
1207 doffset1
-= (-moff
).to_short_addr ();
1209 doffset2
-= moff
.to_short_addr ();
1212 /* If either reference is view-converted, give up now. */
1213 if (same_type_for_tbaa (TREE_TYPE (base1
), TREE_TYPE (ptrtype1
)) != 1
1214 || same_type_for_tbaa (TREE_TYPE (dbase2
), TREE_TYPE (base2
)) != 1)
1217 /* If both references are through the same type, they do not alias
1218 if the accesses do not overlap. This does extra disambiguation
1219 for mixed/pointer accesses but requires strict aliasing.
1220 For MEM_REFs we require that the component-ref offset we computed
1221 is relative to the start of the type which we ensure by
1222 comparing rvalue and access type and disregarding the constant
1224 if ((TREE_CODE (base1
) != TARGET_MEM_REF
1225 || (!TMR_INDEX (base1
) && !TMR_INDEX2 (base1
)))
1226 && same_type_for_tbaa (TREE_TYPE (base1
), TREE_TYPE (dbase2
)) == 1)
1227 return ranges_overlap_p (doffset1
, max_size1
, doffset2
, max_size2
);
1230 && nonoverlapping_component_refs_p (ref1
, ref2
))
1233 /* Do access-path based disambiguation. */
1235 && (handled_component_p (ref1
) || handled_component_p (ref2
)))
1236 return aliasing_component_refs_p (ref1
,
1237 ref1_alias_set
, base1_alias_set
,
1240 ref2_alias_set
, base2_alias_set
,
1241 offset2
, max_size2
, true);
1246 /* Return true if two indirect references based on *PTR1
1247 and *PTR2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
1248 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. *PTR1 and *PTR2 have
1249 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
1250 in which case they are computed on-demand. REF1 and REF2
1251 if non-NULL are the complete memory reference trees. */
1254 indirect_refs_may_alias_p (tree ref1 ATTRIBUTE_UNUSED
, tree base1
,
1255 HOST_WIDE_INT offset1
, HOST_WIDE_INT max_size1
,
1256 alias_set_type ref1_alias_set
,
1257 alias_set_type base1_alias_set
,
1258 tree ref2 ATTRIBUTE_UNUSED
, tree base2
,
1259 HOST_WIDE_INT offset2
, HOST_WIDE_INT max_size2
,
1260 alias_set_type ref2_alias_set
,
1261 alias_set_type base2_alias_set
, bool tbaa_p
)
1265 tree ptrtype1
, ptrtype2
;
1267 gcc_checking_assert ((TREE_CODE (base1
) == MEM_REF
1268 || TREE_CODE (base1
) == TARGET_MEM_REF
)
1269 && (TREE_CODE (base2
) == MEM_REF
1270 || TREE_CODE (base2
) == TARGET_MEM_REF
));
1272 ptr1
= TREE_OPERAND (base1
, 0);
1273 ptr2
= TREE_OPERAND (base2
, 0);
1275 /* If both bases are based on pointers they cannot alias if they may not
1276 point to the same memory object or if they point to the same object
1277 and the accesses do not overlap. */
1278 if ((!cfun
|| gimple_in_ssa_p (cfun
))
1279 && operand_equal_p (ptr1
, ptr2
, 0)
1280 && (((TREE_CODE (base1
) != TARGET_MEM_REF
1281 || (!TMR_INDEX (base1
) && !TMR_INDEX2 (base1
)))
1282 && (TREE_CODE (base2
) != TARGET_MEM_REF
1283 || (!TMR_INDEX (base2
) && !TMR_INDEX2 (base2
))))
1284 || (TREE_CODE (base1
) == TARGET_MEM_REF
1285 && TREE_CODE (base2
) == TARGET_MEM_REF
1286 && (TMR_STEP (base1
) == TMR_STEP (base2
)
1287 || (TMR_STEP (base1
) && TMR_STEP (base2
)
1288 && operand_equal_p (TMR_STEP (base1
),
1289 TMR_STEP (base2
), 0)))
1290 && (TMR_INDEX (base1
) == TMR_INDEX (base2
)
1291 || (TMR_INDEX (base1
) && TMR_INDEX (base2
)
1292 && operand_equal_p (TMR_INDEX (base1
),
1293 TMR_INDEX (base2
), 0)))
1294 && (TMR_INDEX2 (base1
) == TMR_INDEX2 (base2
)
1295 || (TMR_INDEX2 (base1
) && TMR_INDEX2 (base2
)
1296 && operand_equal_p (TMR_INDEX2 (base1
),
1297 TMR_INDEX2 (base2
), 0))))))
1300 /* The offset embedded in MEM_REFs can be negative. Bias them
1301 so that the resulting offset adjustment is positive. */
1302 moff
= mem_ref_offset (base1
);
1303 moff
<<= LOG2_BITS_PER_UNIT
;
1304 if (wi::neg_p (moff
))
1305 offset2
+= (-moff
).to_short_addr ();
1307 offset1
+= moff
.to_shwi ();
1308 moff
= mem_ref_offset (base2
);
1309 moff
<<= LOG2_BITS_PER_UNIT
;
1310 if (wi::neg_p (moff
))
1311 offset1
+= (-moff
).to_short_addr ();
1313 offset2
+= moff
.to_short_addr ();
1314 return ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
);
1316 if (!ptr_derefs_may_alias_p (ptr1
, ptr2
))
1319 /* Disambiguations that rely on strict aliasing rules follow. */
1320 if (!flag_strict_aliasing
|| !tbaa_p
)
1323 ptrtype1
= TREE_TYPE (TREE_OPERAND (base1
, 1));
1324 ptrtype2
= TREE_TYPE (TREE_OPERAND (base2
, 1));
1326 /* If the alias set for a pointer access is zero all bets are off. */
1327 if (base1_alias_set
== 0
1328 || base2_alias_set
== 0)
1331 /* If both references are through the same type, they do not alias
1332 if the accesses do not overlap. This does extra disambiguation
1333 for mixed/pointer accesses but requires strict aliasing. */
1334 if ((TREE_CODE (base1
) != TARGET_MEM_REF
1335 || (!TMR_INDEX (base1
) && !TMR_INDEX2 (base1
)))
1336 && (TREE_CODE (base2
) != TARGET_MEM_REF
1337 || (!TMR_INDEX (base2
) && !TMR_INDEX2 (base2
)))
1338 && same_type_for_tbaa (TREE_TYPE (base1
), TREE_TYPE (ptrtype1
)) == 1
1339 && same_type_for_tbaa (TREE_TYPE (base2
), TREE_TYPE (ptrtype2
)) == 1
1340 && same_type_for_tbaa (TREE_TYPE (ptrtype1
),
1341 TREE_TYPE (ptrtype2
)) == 1)
1342 return ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
);
1344 /* Do type-based disambiguation. */
1345 if (base1_alias_set
!= base2_alias_set
1346 && !alias_sets_conflict_p (base1_alias_set
, base2_alias_set
))
1349 /* If either reference is view-converted, give up now. */
1350 if (same_type_for_tbaa (TREE_TYPE (base1
), TREE_TYPE (ptrtype1
)) != 1
1351 || same_type_for_tbaa (TREE_TYPE (base2
), TREE_TYPE (ptrtype2
)) != 1)
1355 && nonoverlapping_component_refs_p (ref1
, ref2
))
1358 /* Do access-path based disambiguation. */
1360 && (handled_component_p (ref1
) || handled_component_p (ref2
)))
1361 return aliasing_component_refs_p (ref1
,
1362 ref1_alias_set
, base1_alias_set
,
1365 ref2_alias_set
, base2_alias_set
,
1366 offset2
, max_size2
, false);
1371 /* Return true, if the two memory references REF1 and REF2 may alias. */
1374 refs_may_alias_p_1 (ao_ref
*ref1
, ao_ref
*ref2
, bool tbaa_p
)
1377 HOST_WIDE_INT offset1
= 0, offset2
= 0;
1378 HOST_WIDE_INT max_size1
= -1, max_size2
= -1;
1379 bool var1_p
, var2_p
, ind1_p
, ind2_p
;
1381 gcc_checking_assert ((!ref1
->ref
1382 || TREE_CODE (ref1
->ref
) == SSA_NAME
1383 || DECL_P (ref1
->ref
)
1384 || TREE_CODE (ref1
->ref
) == STRING_CST
1385 || handled_component_p (ref1
->ref
)
1386 || TREE_CODE (ref1
->ref
) == MEM_REF
1387 || TREE_CODE (ref1
->ref
) == TARGET_MEM_REF
)
1389 || TREE_CODE (ref2
->ref
) == SSA_NAME
1390 || DECL_P (ref2
->ref
)
1391 || TREE_CODE (ref2
->ref
) == STRING_CST
1392 || handled_component_p (ref2
->ref
)
1393 || TREE_CODE (ref2
->ref
) == MEM_REF
1394 || TREE_CODE (ref2
->ref
) == TARGET_MEM_REF
));
1396 /* Decompose the references into their base objects and the access. */
1397 base1
= ao_ref_base (ref1
);
1398 offset1
= ref1
->offset
;
1399 max_size1
= ref1
->max_size
;
1400 base2
= ao_ref_base (ref2
);
1401 offset2
= ref2
->offset
;
1402 max_size2
= ref2
->max_size
;
1404 /* We can end up with registers or constants as bases for example from
1405 *D.1663_44 = VIEW_CONVERT_EXPR<struct DB_LSN>(__tmp$B0F64_59);
1406 which is seen as a struct copy. */
1407 if (TREE_CODE (base1
) == SSA_NAME
1408 || TREE_CODE (base1
) == CONST_DECL
1409 || TREE_CODE (base1
) == CONSTRUCTOR
1410 || TREE_CODE (base1
) == ADDR_EXPR
1411 || CONSTANT_CLASS_P (base1
)
1412 || TREE_CODE (base2
) == SSA_NAME
1413 || TREE_CODE (base2
) == CONST_DECL
1414 || TREE_CODE (base2
) == CONSTRUCTOR
1415 || TREE_CODE (base2
) == ADDR_EXPR
1416 || CONSTANT_CLASS_P (base2
))
1419 /* We can end up referring to code via function and label decls.
1420 As we likely do not properly track code aliases conservatively
1422 if (TREE_CODE (base1
) == FUNCTION_DECL
1423 || TREE_CODE (base1
) == LABEL_DECL
1424 || TREE_CODE (base2
) == FUNCTION_DECL
1425 || TREE_CODE (base2
) == LABEL_DECL
)
1428 /* Two volatile accesses always conflict. */
1429 if (ref1
->volatile_p
1430 && ref2
->volatile_p
)
1433 /* Defer to simple offset based disambiguation if we have
1434 references based on two decls. Do this before defering to
1435 TBAA to handle must-alias cases in conformance with the
1436 GCC extension of allowing type-punning through unions. */
1437 var1_p
= DECL_P (base1
);
1438 var2_p
= DECL_P (base2
);
1439 if (var1_p
&& var2_p
)
1440 return decl_refs_may_alias_p (ref1
->ref
, base1
, offset1
, max_size1
,
1441 ref2
->ref
, base2
, offset2
, max_size2
);
1443 /* Handle restrict based accesses.
1444 ??? ao_ref_base strips inner MEM_REF [&decl], recover from that
1446 tree rbase1
= base1
;
1447 tree rbase2
= base2
;
1452 while (handled_component_p (rbase1
))
1453 rbase1
= TREE_OPERAND (rbase1
, 0);
1459 while (handled_component_p (rbase2
))
1460 rbase2
= TREE_OPERAND (rbase2
, 0);
1462 if (rbase1
&& rbase2
1463 && (TREE_CODE (base1
) == MEM_REF
|| TREE_CODE (base1
) == TARGET_MEM_REF
)
1464 && (TREE_CODE (base2
) == MEM_REF
|| TREE_CODE (base2
) == TARGET_MEM_REF
)
1465 /* If the accesses are in the same restrict clique... */
1466 && MR_DEPENDENCE_CLIQUE (base1
) == MR_DEPENDENCE_CLIQUE (base2
)
1467 /* But based on different pointers they do not alias. */
1468 && MR_DEPENDENCE_BASE (base1
) != MR_DEPENDENCE_BASE (base2
))
1471 ind1_p
= (TREE_CODE (base1
) == MEM_REF
1472 || TREE_CODE (base1
) == TARGET_MEM_REF
);
1473 ind2_p
= (TREE_CODE (base2
) == MEM_REF
1474 || TREE_CODE (base2
) == TARGET_MEM_REF
);
1476 /* Canonicalize the pointer-vs-decl case. */
1477 if (ind1_p
&& var2_p
)
1479 std::swap (offset1
, offset2
);
1480 std::swap (max_size1
, max_size2
);
1481 std::swap (base1
, base2
);
1482 std::swap (ref1
, ref2
);
1489 /* First defer to TBAA if possible. */
1491 && flag_strict_aliasing
1492 && !alias_sets_conflict_p (ao_ref_alias_set (ref1
),
1493 ao_ref_alias_set (ref2
)))
1496 /* Dispatch to the pointer-vs-decl or pointer-vs-pointer disambiguators. */
1497 if (var1_p
&& ind2_p
)
1498 return indirect_ref_may_alias_decl_p (ref2
->ref
, base2
,
1500 ao_ref_alias_set (ref2
),
1501 ao_ref_base_alias_set (ref2
),
1504 ao_ref_alias_set (ref1
),
1505 ao_ref_base_alias_set (ref1
),
1507 else if (ind1_p
&& ind2_p
)
1508 return indirect_refs_may_alias_p (ref1
->ref
, base1
,
1510 ao_ref_alias_set (ref1
),
1511 ao_ref_base_alias_set (ref1
),
1514 ao_ref_alias_set (ref2
),
1515 ao_ref_base_alias_set (ref2
),
1522 refs_may_alias_p (tree ref1
, ao_ref
*ref2
)
1525 ao_ref_init (&r1
, ref1
);
1526 return refs_may_alias_p_1 (&r1
, ref2
, true);
1530 refs_may_alias_p (tree ref1
, tree ref2
)
1534 ao_ref_init (&r1
, ref1
);
1535 ao_ref_init (&r2
, ref2
);
1536 res
= refs_may_alias_p_1 (&r1
, &r2
, true);
1538 ++alias_stats
.refs_may_alias_p_may_alias
;
1540 ++alias_stats
.refs_may_alias_p_no_alias
;
1544 /* Returns true if there is a anti-dependence for the STORE that
1545 executes after the LOAD. */
1548 refs_anti_dependent_p (tree load
, tree store
)
1551 ao_ref_init (&r1
, load
);
1552 ao_ref_init (&r2
, store
);
1553 return refs_may_alias_p_1 (&r1
, &r2
, false);
1556 /* Returns true if there is a output dependence for the stores
1557 STORE1 and STORE2. */
1560 refs_output_dependent_p (tree store1
, tree store2
)
1563 ao_ref_init (&r1
, store1
);
1564 ao_ref_init (&r2
, store2
);
1565 return refs_may_alias_p_1 (&r1
, &r2
, false);
1568 /* If the call CALL may use the memory reference REF return true,
1569 otherwise return false. */
1572 ref_maybe_used_by_call_p_1 (gcall
*call
, ao_ref
*ref
)
1576 int flags
= gimple_call_flags (call
);
1578 /* Const functions without a static chain do not implicitly use memory. */
1579 if (!gimple_call_chain (call
)
1580 && (flags
& (ECF_CONST
|ECF_NOVOPS
)))
1583 base
= ao_ref_base (ref
);
1587 /* A call that is not without side-effects might involve volatile
1588 accesses and thus conflicts with all other volatile accesses. */
1589 if (ref
->volatile_p
)
1592 /* If the reference is based on a decl that is not aliased the call
1593 cannot possibly use it. */
1595 && !may_be_aliased (base
)
1596 /* But local statics can be used through recursion. */
1597 && !is_global_var (base
))
1600 callee
= gimple_call_fndecl (call
);
1602 /* Handle those builtin functions explicitly that do not act as
1603 escape points. See tree-ssa-structalias.c:find_func_aliases
1604 for the list of builtins we might need to handle here. */
1605 if (callee
!= NULL_TREE
1606 && gimple_call_builtin_p (call
, BUILT_IN_NORMAL
))
1607 switch (DECL_FUNCTION_CODE (callee
))
1609 /* All the following functions read memory pointed to by
1610 their second argument. strcat/strncat additionally
1611 reads memory pointed to by the first argument. */
1612 case BUILT_IN_STRCAT
:
1613 case BUILT_IN_STRNCAT
:
1616 ao_ref_init_from_ptr_and_size (&dref
,
1617 gimple_call_arg (call
, 0),
1619 if (refs_may_alias_p_1 (&dref
, ref
, false))
1623 case BUILT_IN_STRCPY
:
1624 case BUILT_IN_STRNCPY
:
1625 case BUILT_IN_MEMCPY
:
1626 case BUILT_IN_MEMMOVE
:
1627 case BUILT_IN_MEMPCPY
:
1628 case BUILT_IN_STPCPY
:
1629 case BUILT_IN_STPNCPY
:
1630 case BUILT_IN_TM_MEMCPY
:
1631 case BUILT_IN_TM_MEMMOVE
:
1634 tree size
= NULL_TREE
;
1635 if (gimple_call_num_args (call
) == 3)
1636 size
= gimple_call_arg (call
, 2);
1637 ao_ref_init_from_ptr_and_size (&dref
,
1638 gimple_call_arg (call
, 1),
1640 return refs_may_alias_p_1 (&dref
, ref
, false);
1642 case BUILT_IN_STRCAT_CHK
:
1643 case BUILT_IN_STRNCAT_CHK
:
1646 ao_ref_init_from_ptr_and_size (&dref
,
1647 gimple_call_arg (call
, 0),
1649 if (refs_may_alias_p_1 (&dref
, ref
, false))
1653 case BUILT_IN_STRCPY_CHK
:
1654 case BUILT_IN_STRNCPY_CHK
:
1655 case BUILT_IN_MEMCPY_CHK
:
1656 case BUILT_IN_MEMMOVE_CHK
:
1657 case BUILT_IN_MEMPCPY_CHK
:
1658 case BUILT_IN_STPCPY_CHK
:
1659 case BUILT_IN_STPNCPY_CHK
:
1662 tree size
= NULL_TREE
;
1663 if (gimple_call_num_args (call
) == 4)
1664 size
= gimple_call_arg (call
, 2);
1665 ao_ref_init_from_ptr_and_size (&dref
,
1666 gimple_call_arg (call
, 1),
1668 return refs_may_alias_p_1 (&dref
, ref
, false);
1670 case BUILT_IN_BCOPY
:
1673 tree size
= gimple_call_arg (call
, 2);
1674 ao_ref_init_from_ptr_and_size (&dref
,
1675 gimple_call_arg (call
, 0),
1677 return refs_may_alias_p_1 (&dref
, ref
, false);
1680 /* The following functions read memory pointed to by their
1682 CASE_BUILT_IN_TM_LOAD (1):
1683 CASE_BUILT_IN_TM_LOAD (2):
1684 CASE_BUILT_IN_TM_LOAD (4):
1685 CASE_BUILT_IN_TM_LOAD (8):
1686 CASE_BUILT_IN_TM_LOAD (FLOAT
):
1687 CASE_BUILT_IN_TM_LOAD (DOUBLE
):
1688 CASE_BUILT_IN_TM_LOAD (LDOUBLE
):
1689 CASE_BUILT_IN_TM_LOAD (M64
):
1690 CASE_BUILT_IN_TM_LOAD (M128
):
1691 CASE_BUILT_IN_TM_LOAD (M256
):
1692 case BUILT_IN_TM_LOG
:
1693 case BUILT_IN_TM_LOG_1
:
1694 case BUILT_IN_TM_LOG_2
:
1695 case BUILT_IN_TM_LOG_4
:
1696 case BUILT_IN_TM_LOG_8
:
1697 case BUILT_IN_TM_LOG_FLOAT
:
1698 case BUILT_IN_TM_LOG_DOUBLE
:
1699 case BUILT_IN_TM_LOG_LDOUBLE
:
1700 case BUILT_IN_TM_LOG_M64
:
1701 case BUILT_IN_TM_LOG_M128
:
1702 case BUILT_IN_TM_LOG_M256
:
1703 return ptr_deref_may_alias_ref_p_1 (gimple_call_arg (call
, 0), ref
);
1705 /* These read memory pointed to by the first argument. */
1706 case BUILT_IN_STRDUP
:
1707 case BUILT_IN_STRNDUP
:
1708 case BUILT_IN_REALLOC
:
1711 tree size
= NULL_TREE
;
1712 if (gimple_call_num_args (call
) == 2)
1713 size
= gimple_call_arg (call
, 1);
1714 ao_ref_init_from_ptr_and_size (&dref
,
1715 gimple_call_arg (call
, 0),
1717 return refs_may_alias_p_1 (&dref
, ref
, false);
1719 /* These read memory pointed to by the first argument. */
1720 case BUILT_IN_INDEX
:
1721 case BUILT_IN_STRCHR
:
1722 case BUILT_IN_STRRCHR
:
1725 ao_ref_init_from_ptr_and_size (&dref
,
1726 gimple_call_arg (call
, 0),
1728 return refs_may_alias_p_1 (&dref
, ref
, false);
1730 /* These read memory pointed to by the first argument with size
1731 in the third argument. */
1732 case BUILT_IN_MEMCHR
:
1735 ao_ref_init_from_ptr_and_size (&dref
,
1736 gimple_call_arg (call
, 0),
1737 gimple_call_arg (call
, 2));
1738 return refs_may_alias_p_1 (&dref
, ref
, false);
1740 /* These read memory pointed to by the first and second arguments. */
1741 case BUILT_IN_STRSTR
:
1742 case BUILT_IN_STRPBRK
:
1745 ao_ref_init_from_ptr_and_size (&dref
,
1746 gimple_call_arg (call
, 0),
1748 if (refs_may_alias_p_1 (&dref
, ref
, false))
1750 ao_ref_init_from_ptr_and_size (&dref
,
1751 gimple_call_arg (call
, 1),
1753 return refs_may_alias_p_1 (&dref
, ref
, false);
1756 /* The following builtins do not read from memory. */
1758 case BUILT_IN_MALLOC
:
1759 case BUILT_IN_POSIX_MEMALIGN
:
1760 case BUILT_IN_ALIGNED_ALLOC
:
1761 case BUILT_IN_CALLOC
:
1762 case BUILT_IN_ALLOCA
:
1763 case BUILT_IN_ALLOCA_WITH_ALIGN
:
1764 case BUILT_IN_STACK_SAVE
:
1765 case BUILT_IN_STACK_RESTORE
:
1766 case BUILT_IN_MEMSET
:
1767 case BUILT_IN_TM_MEMSET
:
1768 case BUILT_IN_MEMSET_CHK
:
1769 case BUILT_IN_FREXP
:
1770 case BUILT_IN_FREXPF
:
1771 case BUILT_IN_FREXPL
:
1772 case BUILT_IN_GAMMA_R
:
1773 case BUILT_IN_GAMMAF_R
:
1774 case BUILT_IN_GAMMAL_R
:
1775 case BUILT_IN_LGAMMA_R
:
1776 case BUILT_IN_LGAMMAF_R
:
1777 case BUILT_IN_LGAMMAL_R
:
1779 case BUILT_IN_MODFF
:
1780 case BUILT_IN_MODFL
:
1781 case BUILT_IN_REMQUO
:
1782 case BUILT_IN_REMQUOF
:
1783 case BUILT_IN_REMQUOL
:
1784 case BUILT_IN_SINCOS
:
1785 case BUILT_IN_SINCOSF
:
1786 case BUILT_IN_SINCOSL
:
1787 case BUILT_IN_ASSUME_ALIGNED
:
1788 case BUILT_IN_VA_END
:
1790 /* __sync_* builtins and some OpenMP builtins act as threading
1792 #undef DEF_SYNC_BUILTIN
1793 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) case ENUM:
1794 #include "sync-builtins.def"
1795 #undef DEF_SYNC_BUILTIN
1796 case BUILT_IN_GOMP_ATOMIC_START
:
1797 case BUILT_IN_GOMP_ATOMIC_END
:
1798 case BUILT_IN_GOMP_BARRIER
:
1799 case BUILT_IN_GOMP_BARRIER_CANCEL
:
1800 case BUILT_IN_GOMP_TASKWAIT
:
1801 case BUILT_IN_GOMP_TASKGROUP_END
:
1802 case BUILT_IN_GOMP_CRITICAL_START
:
1803 case BUILT_IN_GOMP_CRITICAL_END
:
1804 case BUILT_IN_GOMP_CRITICAL_NAME_START
:
1805 case BUILT_IN_GOMP_CRITICAL_NAME_END
:
1806 case BUILT_IN_GOMP_LOOP_END
:
1807 case BUILT_IN_GOMP_LOOP_END_CANCEL
:
1808 case BUILT_IN_GOMP_ORDERED_START
:
1809 case BUILT_IN_GOMP_ORDERED_END
:
1810 case BUILT_IN_GOMP_SECTIONS_END
:
1811 case BUILT_IN_GOMP_SECTIONS_END_CANCEL
:
1812 case BUILT_IN_GOMP_SINGLE_COPY_START
:
1813 case BUILT_IN_GOMP_SINGLE_COPY_END
:
1817 /* Fallthru to general call handling. */;
1820 /* Check if base is a global static variable that is not read
1822 if (callee
!= NULL_TREE
1823 && TREE_CODE (base
) == VAR_DECL
1824 && TREE_STATIC (base
))
1826 struct cgraph_node
*node
= cgraph_node::get (callee
);
1829 /* FIXME: Callee can be an OMP builtin that does not have a call graph
1830 node yet. We should enforce that there are nodes for all decls in the
1831 IL and remove this check instead. */
1833 && (not_read
= ipa_reference_get_not_read_global (node
))
1834 && bitmap_bit_p (not_read
, ipa_reference_var_uid (base
)))
1838 /* Check if the base variable is call-used. */
1841 if (pt_solution_includes (gimple_call_use_set (call
), base
))
1844 else if ((TREE_CODE (base
) == MEM_REF
1845 || TREE_CODE (base
) == TARGET_MEM_REF
)
1846 && TREE_CODE (TREE_OPERAND (base
, 0)) == SSA_NAME
)
1848 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (TREE_OPERAND (base
, 0));
1852 if (pt_solutions_intersect (gimple_call_use_set (call
), &pi
->pt
))
1858 /* Inspect call arguments for passed-by-value aliases. */
1860 for (i
= 0; i
< gimple_call_num_args (call
); ++i
)
1862 tree op
= gimple_call_arg (call
, i
);
1863 int flags
= gimple_call_arg_flags (call
, i
);
1865 if (flags
& EAF_UNUSED
)
1868 if (TREE_CODE (op
) == WITH_SIZE_EXPR
)
1869 op
= TREE_OPERAND (op
, 0);
1871 if (TREE_CODE (op
) != SSA_NAME
1872 && !is_gimple_min_invariant (op
))
1875 ao_ref_init (&r
, op
);
1876 if (refs_may_alias_p_1 (&r
, ref
, true))
1885 ref_maybe_used_by_call_p (gcall
*call
, ao_ref
*ref
)
1888 res
= ref_maybe_used_by_call_p_1 (call
, ref
);
1890 ++alias_stats
.ref_maybe_used_by_call_p_may_alias
;
1892 ++alias_stats
.ref_maybe_used_by_call_p_no_alias
;
1897 /* If the statement STMT may use the memory reference REF return
1898 true, otherwise return false. */
1901 ref_maybe_used_by_stmt_p (gimple
*stmt
, ao_ref
*ref
)
1903 if (is_gimple_assign (stmt
))
1907 /* All memory assign statements are single. */
1908 if (!gimple_assign_single_p (stmt
))
1911 rhs
= gimple_assign_rhs1 (stmt
);
1912 if (is_gimple_reg (rhs
)
1913 || is_gimple_min_invariant (rhs
)
1914 || gimple_assign_rhs_code (stmt
) == CONSTRUCTOR
)
1917 return refs_may_alias_p (rhs
, ref
);
1919 else if (is_gimple_call (stmt
))
1920 return ref_maybe_used_by_call_p (as_a
<gcall
*> (stmt
), ref
);
1921 else if (greturn
*return_stmt
= dyn_cast
<greturn
*> (stmt
))
1923 tree retval
= gimple_return_retval (return_stmt
);
1925 && TREE_CODE (retval
) != SSA_NAME
1926 && !is_gimple_min_invariant (retval
)
1927 && refs_may_alias_p (retval
, ref
))
1929 /* If ref escapes the function then the return acts as a use. */
1930 tree base
= ao_ref_base (ref
);
1933 else if (DECL_P (base
))
1934 return is_global_var (base
);
1935 else if (TREE_CODE (base
) == MEM_REF
1936 || TREE_CODE (base
) == TARGET_MEM_REF
)
1937 return ptr_deref_may_alias_global_p (TREE_OPERAND (base
, 0));
1945 ref_maybe_used_by_stmt_p (gimple
*stmt
, tree ref
)
1948 ao_ref_init (&r
, ref
);
1949 return ref_maybe_used_by_stmt_p (stmt
, &r
);
1952 /* If the call in statement CALL may clobber the memory reference REF
1953 return true, otherwise return false. */
1956 call_may_clobber_ref_p_1 (gcall
*call
, ao_ref
*ref
)
1961 /* If the call is pure or const it cannot clobber anything. */
1962 if (gimple_call_flags (call
)
1963 & (ECF_PURE
|ECF_CONST
|ECF_LOOPING_CONST_OR_PURE
|ECF_NOVOPS
))
1965 if (gimple_call_internal_p (call
))
1966 switch (gimple_call_internal_fn (call
))
1968 /* Treat these internal calls like ECF_PURE for aliasing,
1969 they don't write to any memory the program should care about.
1970 They have important other side-effects, and read memory,
1971 so can't be ECF_NOVOPS. */
1972 case IFN_UBSAN_NULL
:
1973 case IFN_UBSAN_BOUNDS
:
1974 case IFN_UBSAN_VPTR
:
1975 case IFN_UBSAN_OBJECT_SIZE
:
1976 case IFN_ASAN_CHECK
:
1982 base
= ao_ref_base (ref
);
1986 if (TREE_CODE (base
) == SSA_NAME
1987 || CONSTANT_CLASS_P (base
))
1990 /* A call that is not without side-effects might involve volatile
1991 accesses and thus conflicts with all other volatile accesses. */
1992 if (ref
->volatile_p
)
1995 /* If the reference is based on a decl that is not aliased the call
1996 cannot possibly clobber it. */
1998 && !may_be_aliased (base
)
1999 /* But local non-readonly statics can be modified through recursion
2000 or the call may implement a threading barrier which we must
2001 treat as may-def. */
2002 && (TREE_READONLY (base
)
2003 || !is_global_var (base
)))
2006 callee
= gimple_call_fndecl (call
);
2008 /* Handle those builtin functions explicitly that do not act as
2009 escape points. See tree-ssa-structalias.c:find_func_aliases
2010 for the list of builtins we might need to handle here. */
2011 if (callee
!= NULL_TREE
2012 && gimple_call_builtin_p (call
, BUILT_IN_NORMAL
))
2013 switch (DECL_FUNCTION_CODE (callee
))
2015 /* All the following functions clobber memory pointed to by
2016 their first argument. */
2017 case BUILT_IN_STRCPY
:
2018 case BUILT_IN_STRNCPY
:
2019 case BUILT_IN_MEMCPY
:
2020 case BUILT_IN_MEMMOVE
:
2021 case BUILT_IN_MEMPCPY
:
2022 case BUILT_IN_STPCPY
:
2023 case BUILT_IN_STPNCPY
:
2024 case BUILT_IN_STRCAT
:
2025 case BUILT_IN_STRNCAT
:
2026 case BUILT_IN_MEMSET
:
2027 case BUILT_IN_TM_MEMSET
:
2028 CASE_BUILT_IN_TM_STORE (1):
2029 CASE_BUILT_IN_TM_STORE (2):
2030 CASE_BUILT_IN_TM_STORE (4):
2031 CASE_BUILT_IN_TM_STORE (8):
2032 CASE_BUILT_IN_TM_STORE (FLOAT
):
2033 CASE_BUILT_IN_TM_STORE (DOUBLE
):
2034 CASE_BUILT_IN_TM_STORE (LDOUBLE
):
2035 CASE_BUILT_IN_TM_STORE (M64
):
2036 CASE_BUILT_IN_TM_STORE (M128
):
2037 CASE_BUILT_IN_TM_STORE (M256
):
2038 case BUILT_IN_TM_MEMCPY
:
2039 case BUILT_IN_TM_MEMMOVE
:
2042 tree size
= NULL_TREE
;
2043 /* Don't pass in size for strncat, as the maximum size
2044 is strlen (dest) + n + 1 instead of n, resp.
2045 n + 1 at dest + strlen (dest), but strlen (dest) isn't
2047 if (gimple_call_num_args (call
) == 3
2048 && DECL_FUNCTION_CODE (callee
) != BUILT_IN_STRNCAT
)
2049 size
= gimple_call_arg (call
, 2);
2050 ao_ref_init_from_ptr_and_size (&dref
,
2051 gimple_call_arg (call
, 0),
2053 return refs_may_alias_p_1 (&dref
, ref
, false);
2055 case BUILT_IN_STRCPY_CHK
:
2056 case BUILT_IN_STRNCPY_CHK
:
2057 case BUILT_IN_MEMCPY_CHK
:
2058 case BUILT_IN_MEMMOVE_CHK
:
2059 case BUILT_IN_MEMPCPY_CHK
:
2060 case BUILT_IN_STPCPY_CHK
:
2061 case BUILT_IN_STPNCPY_CHK
:
2062 case BUILT_IN_STRCAT_CHK
:
2063 case BUILT_IN_STRNCAT_CHK
:
2064 case BUILT_IN_MEMSET_CHK
:
2067 tree size
= NULL_TREE
;
2068 /* Don't pass in size for __strncat_chk, as the maximum size
2069 is strlen (dest) + n + 1 instead of n, resp.
2070 n + 1 at dest + strlen (dest), but strlen (dest) isn't
2072 if (gimple_call_num_args (call
) == 4
2073 && DECL_FUNCTION_CODE (callee
) != BUILT_IN_STRNCAT_CHK
)
2074 size
= gimple_call_arg (call
, 2);
2075 ao_ref_init_from_ptr_and_size (&dref
,
2076 gimple_call_arg (call
, 0),
2078 return refs_may_alias_p_1 (&dref
, ref
, false);
2080 case BUILT_IN_BCOPY
:
2083 tree size
= gimple_call_arg (call
, 2);
2084 ao_ref_init_from_ptr_and_size (&dref
,
2085 gimple_call_arg (call
, 1),
2087 return refs_may_alias_p_1 (&dref
, ref
, false);
2089 /* Allocating memory does not have any side-effects apart from
2090 being the definition point for the pointer. */
2091 case BUILT_IN_MALLOC
:
2092 case BUILT_IN_ALIGNED_ALLOC
:
2093 case BUILT_IN_CALLOC
:
2094 case BUILT_IN_STRDUP
:
2095 case BUILT_IN_STRNDUP
:
2096 /* Unix98 specifies that errno is set on allocation failure. */
2098 && targetm
.ref_may_alias_errno (ref
))
2101 case BUILT_IN_STACK_SAVE
:
2102 case BUILT_IN_ALLOCA
:
2103 case BUILT_IN_ALLOCA_WITH_ALIGN
:
2104 case BUILT_IN_ASSUME_ALIGNED
:
2106 /* But posix_memalign stores a pointer into the memory pointed to
2107 by its first argument. */
2108 case BUILT_IN_POSIX_MEMALIGN
:
2110 tree ptrptr
= gimple_call_arg (call
, 0);
2112 ao_ref_init_from_ptr_and_size (&dref
, ptrptr
,
2113 TYPE_SIZE_UNIT (ptr_type_node
));
2114 return (refs_may_alias_p_1 (&dref
, ref
, false)
2116 && targetm
.ref_may_alias_errno (ref
)));
2118 /* Freeing memory kills the pointed-to memory. More importantly
2119 the call has to serve as a barrier for moving loads and stores
2122 case BUILT_IN_VA_END
:
2124 tree ptr
= gimple_call_arg (call
, 0);
2125 return ptr_deref_may_alias_ref_p_1 (ptr
, ref
);
2127 /* Realloc serves both as allocation point and deallocation point. */
2128 case BUILT_IN_REALLOC
:
2130 tree ptr
= gimple_call_arg (call
, 0);
2131 /* Unix98 specifies that errno is set on allocation failure. */
2132 return ((flag_errno_math
2133 && targetm
.ref_may_alias_errno (ref
))
2134 || ptr_deref_may_alias_ref_p_1 (ptr
, ref
));
2136 case BUILT_IN_GAMMA_R
:
2137 case BUILT_IN_GAMMAF_R
:
2138 case BUILT_IN_GAMMAL_R
:
2139 case BUILT_IN_LGAMMA_R
:
2140 case BUILT_IN_LGAMMAF_R
:
2141 case BUILT_IN_LGAMMAL_R
:
2143 tree out
= gimple_call_arg (call
, 1);
2144 if (ptr_deref_may_alias_ref_p_1 (out
, ref
))
2146 if (flag_errno_math
)
2150 case BUILT_IN_FREXP
:
2151 case BUILT_IN_FREXPF
:
2152 case BUILT_IN_FREXPL
:
2154 case BUILT_IN_MODFF
:
2155 case BUILT_IN_MODFL
:
2157 tree out
= gimple_call_arg (call
, 1);
2158 return ptr_deref_may_alias_ref_p_1 (out
, ref
);
2160 case BUILT_IN_REMQUO
:
2161 case BUILT_IN_REMQUOF
:
2162 case BUILT_IN_REMQUOL
:
2164 tree out
= gimple_call_arg (call
, 2);
2165 if (ptr_deref_may_alias_ref_p_1 (out
, ref
))
2167 if (flag_errno_math
)
2171 case BUILT_IN_SINCOS
:
2172 case BUILT_IN_SINCOSF
:
2173 case BUILT_IN_SINCOSL
:
2175 tree sin
= gimple_call_arg (call
, 1);
2176 tree cos
= gimple_call_arg (call
, 2);
2177 return (ptr_deref_may_alias_ref_p_1 (sin
, ref
)
2178 || ptr_deref_may_alias_ref_p_1 (cos
, ref
));
2180 /* __sync_* builtins and some OpenMP builtins act as threading
2182 #undef DEF_SYNC_BUILTIN
2183 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) case ENUM:
2184 #include "sync-builtins.def"
2185 #undef DEF_SYNC_BUILTIN
2186 case BUILT_IN_GOMP_ATOMIC_START
:
2187 case BUILT_IN_GOMP_ATOMIC_END
:
2188 case BUILT_IN_GOMP_BARRIER
:
2189 case BUILT_IN_GOMP_BARRIER_CANCEL
:
2190 case BUILT_IN_GOMP_TASKWAIT
:
2191 case BUILT_IN_GOMP_TASKGROUP_END
:
2192 case BUILT_IN_GOMP_CRITICAL_START
:
2193 case BUILT_IN_GOMP_CRITICAL_END
:
2194 case BUILT_IN_GOMP_CRITICAL_NAME_START
:
2195 case BUILT_IN_GOMP_CRITICAL_NAME_END
:
2196 case BUILT_IN_GOMP_LOOP_END
:
2197 case BUILT_IN_GOMP_LOOP_END_CANCEL
:
2198 case BUILT_IN_GOMP_ORDERED_START
:
2199 case BUILT_IN_GOMP_ORDERED_END
:
2200 case BUILT_IN_GOMP_SECTIONS_END
:
2201 case BUILT_IN_GOMP_SECTIONS_END_CANCEL
:
2202 case BUILT_IN_GOMP_SINGLE_COPY_START
:
2203 case BUILT_IN_GOMP_SINGLE_COPY_END
:
2206 /* Fallthru to general call handling. */;
2209 /* Check if base is a global static variable that is not written
2211 if (callee
!= NULL_TREE
2212 && TREE_CODE (base
) == VAR_DECL
2213 && TREE_STATIC (base
))
2215 struct cgraph_node
*node
= cgraph_node::get (callee
);
2219 && (not_written
= ipa_reference_get_not_written_global (node
))
2220 && bitmap_bit_p (not_written
, ipa_reference_var_uid (base
)))
2224 /* Check if the base variable is call-clobbered. */
2226 return pt_solution_includes (gimple_call_clobber_set (call
), base
);
2227 else if ((TREE_CODE (base
) == MEM_REF
2228 || TREE_CODE (base
) == TARGET_MEM_REF
)
2229 && TREE_CODE (TREE_OPERAND (base
, 0)) == SSA_NAME
)
2231 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (TREE_OPERAND (base
, 0));
2235 return pt_solutions_intersect (gimple_call_clobber_set (call
), &pi
->pt
);
2241 /* If the call in statement CALL may clobber the memory reference REF
2242 return true, otherwise return false. */
2245 call_may_clobber_ref_p (gcall
*call
, tree ref
)
2249 ao_ref_init (&r
, ref
);
2250 res
= call_may_clobber_ref_p_1 (call
, &r
);
2252 ++alias_stats
.call_may_clobber_ref_p_may_alias
;
2254 ++alias_stats
.call_may_clobber_ref_p_no_alias
;
2259 /* If the statement STMT may clobber the memory reference REF return true,
2260 otherwise return false. */
2263 stmt_may_clobber_ref_p_1 (gimple
*stmt
, ao_ref
*ref
)
2265 if (is_gimple_call (stmt
))
2267 tree lhs
= gimple_call_lhs (stmt
);
2269 && TREE_CODE (lhs
) != SSA_NAME
)
2272 ao_ref_init (&r
, lhs
);
2273 if (refs_may_alias_p_1 (ref
, &r
, true))
2277 return call_may_clobber_ref_p_1 (as_a
<gcall
*> (stmt
), ref
);
2279 else if (gimple_assign_single_p (stmt
))
2281 tree lhs
= gimple_assign_lhs (stmt
);
2282 if (TREE_CODE (lhs
) != SSA_NAME
)
2285 ao_ref_init (&r
, lhs
);
2286 return refs_may_alias_p_1 (ref
, &r
, true);
2289 else if (gimple_code (stmt
) == GIMPLE_ASM
)
2296 stmt_may_clobber_ref_p (gimple
*stmt
, tree ref
)
2299 ao_ref_init (&r
, ref
);
2300 return stmt_may_clobber_ref_p_1 (stmt
, &r
);
2303 /* If STMT kills the memory reference REF return true, otherwise
2307 stmt_kills_ref_p (gimple
*stmt
, ao_ref
*ref
)
2309 if (!ao_ref_base (ref
))
2312 if (gimple_has_lhs (stmt
)
2313 && TREE_CODE (gimple_get_lhs (stmt
)) != SSA_NAME
2314 /* The assignment is not necessarily carried out if it can throw
2315 and we can catch it in the current function where we could inspect
2317 ??? We only need to care about the RHS throwing. For aggregate
2318 assignments or similar calls and non-call exceptions the LHS
2319 might throw as well. */
2320 && !stmt_can_throw_internal (stmt
))
2322 tree lhs
= gimple_get_lhs (stmt
);
2323 /* If LHS is literally a base of the access we are done. */
2326 tree base
= ref
->ref
;
2327 if (handled_component_p (base
))
2329 tree saved_lhs0
= NULL_TREE
;
2330 if (handled_component_p (lhs
))
2332 saved_lhs0
= TREE_OPERAND (lhs
, 0);
2333 TREE_OPERAND (lhs
, 0) = integer_zero_node
;
2337 /* Just compare the outermost handled component, if
2338 they are equal we have found a possible common
2340 tree saved_base0
= TREE_OPERAND (base
, 0);
2341 TREE_OPERAND (base
, 0) = integer_zero_node
;
2342 bool res
= operand_equal_p (lhs
, base
, 0);
2343 TREE_OPERAND (base
, 0) = saved_base0
;
2346 /* Otherwise drop handled components of the access. */
2349 while (handled_component_p (base
));
2351 TREE_OPERAND (lhs
, 0) = saved_lhs0
;
2353 /* Finally check if the lhs has the same address and size as the
2354 base candidate of the access. */
2356 || (((TYPE_SIZE (TREE_TYPE (lhs
))
2357 == TYPE_SIZE (TREE_TYPE (base
)))
2358 || (TYPE_SIZE (TREE_TYPE (lhs
))
2359 && TYPE_SIZE (TREE_TYPE (base
))
2360 && operand_equal_p (TYPE_SIZE (TREE_TYPE (lhs
)),
2361 TYPE_SIZE (TREE_TYPE (base
)), 0)))
2362 && operand_equal_p (lhs
, base
, OEP_ADDRESS_OF
)))
2366 /* Now look for non-literal equal bases with the restriction of
2367 handling constant offset and size. */
2368 /* For a must-alias check we need to be able to constrain
2369 the access properly. */
2370 if (ref
->max_size
== -1)
2372 HOST_WIDE_INT size
, offset
, max_size
, ref_offset
= ref
->offset
;
2375 = get_ref_base_and_extent (lhs
, &offset
, &size
, &max_size
, &reverse
);
2376 /* We can get MEM[symbol: sZ, index: D.8862_1] here,
2377 so base == ref->base does not always hold. */
2378 if (base
!= ref
->base
)
2380 /* If both base and ref->base are MEM_REFs, only compare the
2381 first operand, and if the second operand isn't equal constant,
2382 try to add the offsets into offset and ref_offset. */
2383 if (TREE_CODE (base
) == MEM_REF
&& TREE_CODE (ref
->base
) == MEM_REF
2384 && TREE_OPERAND (base
, 0) == TREE_OPERAND (ref
->base
, 0))
2386 if (!tree_int_cst_equal (TREE_OPERAND (base
, 1),
2387 TREE_OPERAND (ref
->base
, 1)))
2389 offset_int off1
= mem_ref_offset (base
);
2390 off1
<<= LOG2_BITS_PER_UNIT
;
2392 offset_int off2
= mem_ref_offset (ref
->base
);
2393 off2
<<= LOG2_BITS_PER_UNIT
;
2395 if (wi::fits_shwi_p (off1
) && wi::fits_shwi_p (off2
))
2397 offset
= off1
.to_shwi ();
2398 ref_offset
= off2
.to_shwi ();
2407 /* For a must-alias check we need to be able to constrain
2408 the access properly. */
2409 if (size
!= -1 && size
== max_size
)
2411 if (offset
<= ref_offset
2412 && offset
+ size
>= ref_offset
+ ref
->max_size
)
2417 if (is_gimple_call (stmt
))
2419 tree callee
= gimple_call_fndecl (stmt
);
2420 if (callee
!= NULL_TREE
2421 && gimple_call_builtin_p (stmt
, BUILT_IN_NORMAL
))
2422 switch (DECL_FUNCTION_CODE (callee
))
2426 tree ptr
= gimple_call_arg (stmt
, 0);
2427 tree base
= ao_ref_base (ref
);
2428 if (base
&& TREE_CODE (base
) == MEM_REF
2429 && TREE_OPERAND (base
, 0) == ptr
)
2434 case BUILT_IN_MEMCPY
:
2435 case BUILT_IN_MEMPCPY
:
2436 case BUILT_IN_MEMMOVE
:
2437 case BUILT_IN_MEMSET
:
2438 case BUILT_IN_MEMCPY_CHK
:
2439 case BUILT_IN_MEMPCPY_CHK
:
2440 case BUILT_IN_MEMMOVE_CHK
:
2441 case BUILT_IN_MEMSET_CHK
:
2443 /* For a must-alias check we need to be able to constrain
2444 the access properly. */
2445 if (ref
->max_size
== -1)
2447 tree dest
= gimple_call_arg (stmt
, 0);
2448 tree len
= gimple_call_arg (stmt
, 2);
2449 if (!tree_fits_shwi_p (len
))
2451 tree rbase
= ref
->base
;
2452 offset_int roffset
= ref
->offset
;
2454 ao_ref_init_from_ptr_and_size (&dref
, dest
, len
);
2455 tree base
= ao_ref_base (&dref
);
2456 offset_int offset
= dref
.offset
;
2457 if (!base
|| dref
.size
== -1)
2459 if (TREE_CODE (base
) == MEM_REF
)
2461 if (TREE_CODE (rbase
) != MEM_REF
)
2463 // Compare pointers.
2464 offset
+= mem_ref_offset (base
) << LOG2_BITS_PER_UNIT
;
2465 roffset
+= mem_ref_offset (rbase
) << LOG2_BITS_PER_UNIT
;
2466 base
= TREE_OPERAND (base
, 0);
2467 rbase
= TREE_OPERAND (rbase
, 0);
2470 && offset
<= roffset
2471 && (roffset
+ ref
->max_size
2472 <= offset
+ (wi::to_offset (len
) << LOG2_BITS_PER_UNIT
)))
2477 case BUILT_IN_VA_END
:
2479 tree ptr
= gimple_call_arg (stmt
, 0);
2480 if (TREE_CODE (ptr
) == ADDR_EXPR
)
2482 tree base
= ao_ref_base (ref
);
2483 if (TREE_OPERAND (ptr
, 0) == base
)
2496 stmt_kills_ref_p (gimple
*stmt
, tree ref
)
2499 ao_ref_init (&r
, ref
);
2500 return stmt_kills_ref_p (stmt
, &r
);
2504 /* Walk the virtual use-def chain of VUSE until hitting the virtual operand
2505 TARGET or a statement clobbering the memory reference REF in which
2506 case false is returned. The walk starts with VUSE, one argument of PHI. */
2509 maybe_skip_until (gimple
*phi
, tree target
, ao_ref
*ref
,
2510 tree vuse
, unsigned int *cnt
, bitmap
*visited
,
2511 bool abort_on_visited
,
2512 void *(*translate
)(ao_ref
*, tree
, void *, bool *),
2515 basic_block bb
= gimple_bb (phi
);
2518 *visited
= BITMAP_ALLOC (NULL
);
2520 bitmap_set_bit (*visited
, SSA_NAME_VERSION (PHI_RESULT (phi
)));
2522 /* Walk until we hit the target. */
2523 while (vuse
!= target
)
2525 gimple
*def_stmt
= SSA_NAME_DEF_STMT (vuse
);
2526 /* Recurse for PHI nodes. */
2527 if (gimple_code (def_stmt
) == GIMPLE_PHI
)
2529 /* An already visited PHI node ends the walk successfully. */
2530 if (bitmap_bit_p (*visited
, SSA_NAME_VERSION (PHI_RESULT (def_stmt
))))
2531 return !abort_on_visited
;
2532 vuse
= get_continuation_for_phi (def_stmt
, ref
, cnt
,
2533 visited
, abort_on_visited
,
2539 else if (gimple_nop_p (def_stmt
))
2543 /* A clobbering statement or the end of the IL ends it failing. */
2545 if (stmt_may_clobber_ref_p_1 (def_stmt
, ref
))
2547 bool disambiguate_only
= true;
2549 && (*translate
) (ref
, vuse
, data
, &disambiguate_only
) == NULL
)
2555 /* If we reach a new basic-block see if we already skipped it
2556 in a previous walk that ended successfully. */
2557 if (gimple_bb (def_stmt
) != bb
)
2559 if (!bitmap_set_bit (*visited
, SSA_NAME_VERSION (vuse
)))
2560 return !abort_on_visited
;
2561 bb
= gimple_bb (def_stmt
);
2563 vuse
= gimple_vuse (def_stmt
);
2568 /* For two PHI arguments ARG0 and ARG1 try to skip non-aliasing code
2569 until we hit the phi argument definition that dominates the other one.
2570 Return that, or NULL_TREE if there is no such definition. */
2573 get_continuation_for_phi_1 (gimple
*phi
, tree arg0
, tree arg1
,
2574 ao_ref
*ref
, unsigned int *cnt
,
2575 bitmap
*visited
, bool abort_on_visited
,
2576 void *(*translate
)(ao_ref
*, tree
, void *, bool *),
2579 gimple
*def0
= SSA_NAME_DEF_STMT (arg0
);
2580 gimple
*def1
= SSA_NAME_DEF_STMT (arg1
);
2585 else if (gimple_nop_p (def0
)
2586 || (!gimple_nop_p (def1
)
2587 && dominated_by_p (CDI_DOMINATORS
,
2588 gimple_bb (def1
), gimple_bb (def0
))))
2590 if (maybe_skip_until (phi
, arg0
, ref
, arg1
, cnt
,
2591 visited
, abort_on_visited
, translate
, data
))
2594 else if (gimple_nop_p (def1
)
2595 || dominated_by_p (CDI_DOMINATORS
,
2596 gimple_bb (def0
), gimple_bb (def1
)))
2598 if (maybe_skip_until (phi
, arg1
, ref
, arg0
, cnt
,
2599 visited
, abort_on_visited
, translate
, data
))
2602 /* Special case of a diamond:
2604 goto (cond) ? L1 : L2
2605 L1: store1 = ... #MEM_2 = vuse(MEM_1)
2607 L2: store2 = ... #MEM_3 = vuse(MEM_1)
2608 L3: MEM_4 = PHI<MEM_2, MEM_3>
2609 We were called with the PHI at L3, MEM_2 and MEM_3 don't
2610 dominate each other, but still we can easily skip this PHI node
2611 if we recognize that the vuse MEM operand is the same for both,
2612 and that we can skip both statements (they don't clobber us).
2613 This is still linear. Don't use maybe_skip_until, that might
2614 potentially be slow. */
2615 else if ((common_vuse
= gimple_vuse (def0
))
2616 && common_vuse
== gimple_vuse (def1
))
2618 bool disambiguate_only
= true;
2620 if ((!stmt_may_clobber_ref_p_1 (def0
, ref
)
2622 && (*translate
) (ref
, arg0
, data
, &disambiguate_only
) == NULL
))
2623 && (!stmt_may_clobber_ref_p_1 (def1
, ref
)
2625 && (*translate
) (ref
, arg1
, data
, &disambiguate_only
) == NULL
)))
2633 /* Starting from a PHI node for the virtual operand of the memory reference
2634 REF find a continuation virtual operand that allows to continue walking
2635 statements dominating PHI skipping only statements that cannot possibly
2636 clobber REF. Increments *CNT for each alias disambiguation done.
2637 Returns NULL_TREE if no suitable virtual operand can be found. */
2640 get_continuation_for_phi (gimple
*phi
, ao_ref
*ref
,
2641 unsigned int *cnt
, bitmap
*visited
,
2642 bool abort_on_visited
,
2643 void *(*translate
)(ao_ref
*, tree
, void *, bool *),
2646 unsigned nargs
= gimple_phi_num_args (phi
);
2648 /* Through a single-argument PHI we can simply look through. */
2650 return PHI_ARG_DEF (phi
, 0);
2652 /* For two or more arguments try to pairwise skip non-aliasing code
2653 until we hit the phi argument definition that dominates the other one. */
2654 else if (nargs
>= 2)
2659 /* Find a candidate for the virtual operand which definition
2660 dominates those of all others. */
2661 arg0
= PHI_ARG_DEF (phi
, 0);
2662 if (!SSA_NAME_IS_DEFAULT_DEF (arg0
))
2663 for (i
= 1; i
< nargs
; ++i
)
2665 arg1
= PHI_ARG_DEF (phi
, i
);
2666 if (SSA_NAME_IS_DEFAULT_DEF (arg1
))
2671 if (dominated_by_p (CDI_DOMINATORS
,
2672 gimple_bb (SSA_NAME_DEF_STMT (arg0
)),
2673 gimple_bb (SSA_NAME_DEF_STMT (arg1
))))
2677 /* Then pairwise reduce against the found candidate. */
2678 for (i
= 0; i
< nargs
; ++i
)
2680 arg1
= PHI_ARG_DEF (phi
, i
);
2681 arg0
= get_continuation_for_phi_1 (phi
, arg0
, arg1
, ref
,
2682 cnt
, visited
, abort_on_visited
,
2694 /* Based on the memory reference REF and its virtual use VUSE call
2695 WALKER for each virtual use that is equivalent to VUSE, including VUSE
2696 itself. That is, for each virtual use for which its defining statement
2697 does not clobber REF.
2699 WALKER is called with REF, the current virtual use and DATA. If
2700 WALKER returns non-NULL the walk stops and its result is returned.
2701 At the end of a non-successful walk NULL is returned.
2703 TRANSLATE if non-NULL is called with a pointer to REF, the virtual
2704 use which definition is a statement that may clobber REF and DATA.
2705 If TRANSLATE returns (void *)-1 the walk stops and NULL is returned.
2706 If TRANSLATE returns non-NULL the walk stops and its result is returned.
2707 If TRANSLATE returns NULL the walk continues and TRANSLATE is supposed
2708 to adjust REF and *DATA to make that valid.
2710 VALUEIZE if non-NULL is called with the next VUSE that is considered
2711 and return value is substituted for that. This can be used to
2712 implement optimistic value-numbering for example. Note that the
2713 VUSE argument is assumed to be valueized already.
2715 TODO: Cache the vector of equivalent vuses per ref, vuse pair. */
2718 walk_non_aliased_vuses (ao_ref
*ref
, tree vuse
,
2719 void *(*walker
)(ao_ref
*, tree
, unsigned int, void *),
2720 void *(*translate
)(ao_ref
*, tree
, void *, bool *),
2721 tree (*valueize
)(tree
),
2724 bitmap visited
= NULL
;
2726 unsigned int cnt
= 0;
2727 bool translated
= false;
2729 timevar_push (TV_ALIAS_STMT_WALK
);
2735 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
2736 res
= (*walker
) (ref
, vuse
, cnt
, data
);
2738 if (res
== (void *)-1)
2743 /* Lookup succeeded. */
2744 else if (res
!= NULL
)
2748 vuse
= valueize (vuse
);
2749 def_stmt
= SSA_NAME_DEF_STMT (vuse
);
2750 if (gimple_nop_p (def_stmt
))
2752 else if (gimple_code (def_stmt
) == GIMPLE_PHI
)
2753 vuse
= get_continuation_for_phi (def_stmt
, ref
, &cnt
,
2754 &visited
, translated
, translate
, data
);
2758 if (stmt_may_clobber_ref_p_1 (def_stmt
, ref
))
2762 bool disambiguate_only
= false;
2763 res
= (*translate
) (ref
, vuse
, data
, &disambiguate_only
);
2764 /* Failed lookup and translation. */
2765 if (res
== (void *)-1)
2770 /* Lookup succeeded. */
2771 else if (res
!= NULL
)
2773 /* Translation succeeded, continue walking. */
2774 translated
= translated
|| !disambiguate_only
;
2776 vuse
= gimple_vuse (def_stmt
);
2782 BITMAP_FREE (visited
);
2784 timevar_pop (TV_ALIAS_STMT_WALK
);
2790 /* Based on the memory reference REF call WALKER for each vdef which
2791 defining statement may clobber REF, starting with VDEF. If REF
2792 is NULL_TREE, each defining statement is visited.
2794 WALKER is called with REF, the current vdef and DATA. If WALKER
2795 returns true the walk is stopped, otherwise it continues.
2797 If function entry is reached, FUNCTION_ENTRY_REACHED is set to true.
2798 The pointer may be NULL and then we do not track this information.
2800 At PHI nodes walk_aliased_vdefs forks into one walk for reach
2801 PHI argument (but only one walk continues on merge points), the
2802 return value is true if any of the walks was successful.
2804 The function returns the number of statements walked. */
2807 walk_aliased_vdefs_1 (ao_ref
*ref
, tree vdef
,
2808 bool (*walker
)(ao_ref
*, tree
, void *), void *data
,
2809 bitmap
*visited
, unsigned int cnt
,
2810 bool *function_entry_reached
)
2814 gimple
*def_stmt
= SSA_NAME_DEF_STMT (vdef
);
2817 && !bitmap_set_bit (*visited
, SSA_NAME_VERSION (vdef
)))
2820 if (gimple_nop_p (def_stmt
))
2822 if (function_entry_reached
)
2823 *function_entry_reached
= true;
2826 else if (gimple_code (def_stmt
) == GIMPLE_PHI
)
2830 *visited
= BITMAP_ALLOC (NULL
);
2831 for (i
= 0; i
< gimple_phi_num_args (def_stmt
); ++i
)
2832 cnt
+= walk_aliased_vdefs_1 (ref
, gimple_phi_arg_def (def_stmt
, i
),
2833 walker
, data
, visited
, 0,
2834 function_entry_reached
);
2838 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
2841 || stmt_may_clobber_ref_p_1 (def_stmt
, ref
))
2842 && (*walker
) (ref
, vdef
, data
))
2845 vdef
= gimple_vuse (def_stmt
);
2851 walk_aliased_vdefs (ao_ref
*ref
, tree vdef
,
2852 bool (*walker
)(ao_ref
*, tree
, void *), void *data
,
2854 bool *function_entry_reached
)
2856 bitmap local_visited
= NULL
;
2859 timevar_push (TV_ALIAS_STMT_WALK
);
2861 if (function_entry_reached
)
2862 *function_entry_reached
= false;
2864 ret
= walk_aliased_vdefs_1 (ref
, vdef
, walker
, data
,
2865 visited
? visited
: &local_visited
, 0,
2866 function_entry_reached
);
2868 BITMAP_FREE (local_visited
);
2870 timevar_pop (TV_ALIAS_STMT_WALK
);