1 /* Alias analysis for trees.
2 Copyright (C) 2004-2014 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"
33 #include "hard-reg-set.h"
36 #include "dominance.h"
37 #include "basic-block.h"
38 #include "timevar.h" /* for TV_ALIAS_STMT_WALK */
39 #include "langhooks.h"
41 #include "tree-pretty-print.h"
43 #include "tree-ssa-alias.h"
44 #include "internal-fn.h"
46 #include "gimple-expr.h"
49 #include "gimple-ssa.h"
50 #include "stringpool.h"
51 #include "tree-ssanames.h"
54 #include "tree-inline.h"
56 #include "alloc-pool.h"
57 #include "tree-ssa-alias.h"
60 #include "plugin-api.h"
63 #include "ipa-reference.h"
65 /* Broad overview of how alias analysis on gimple works:
67 Statements clobbering or using memory are linked through the
68 virtual operand factored use-def chain. The virtual operand
69 is unique per function, its symbol is accessible via gimple_vop (cfun).
70 Virtual operands are used for efficiently walking memory statements
71 in the gimple IL and are useful for things like value-numbering as
72 a generation count for memory references.
74 SSA_NAME pointers may have associated points-to information
75 accessible via the SSA_NAME_PTR_INFO macro. Flow-insensitive
76 points-to information is (re-)computed by the TODO_rebuild_alias
77 pass manager todo. Points-to information is also used for more
78 precise tracking of call-clobbered and call-used variables and
79 related disambiguations.
81 This file contains functions for disambiguating memory references,
82 the so called alias-oracle and tools for walking of the gimple IL.
84 The main alias-oracle entry-points are
86 bool stmt_may_clobber_ref_p (gimple, tree)
88 This function queries if a statement may invalidate (parts of)
89 the memory designated by the reference tree argument.
91 bool ref_maybe_used_by_stmt_p (gimple, tree)
93 This function queries if a statement may need (parts of) the
94 memory designated by the reference tree argument.
96 There are variants of these functions that only handle the call
97 part of a statement, call_may_clobber_ref_p and ref_maybe_used_by_call_p.
98 Note that these do not disambiguate against a possible call lhs.
100 bool refs_may_alias_p (tree, tree)
102 This function tries to disambiguate two reference trees.
104 bool ptr_deref_may_alias_global_p (tree)
106 This function queries if dereferencing a pointer variable may
109 More low-level disambiguators are available and documented in
110 this file. Low-level disambiguators dealing with points-to
111 information are in tree-ssa-structalias.c. */
114 /* Query statistics for the different low-level disambiguators.
115 A high-level query may trigger multiple of them. */
118 unsigned HOST_WIDE_INT refs_may_alias_p_may_alias
;
119 unsigned HOST_WIDE_INT refs_may_alias_p_no_alias
;
120 unsigned HOST_WIDE_INT ref_maybe_used_by_call_p_may_alias
;
121 unsigned HOST_WIDE_INT ref_maybe_used_by_call_p_no_alias
;
122 unsigned HOST_WIDE_INT call_may_clobber_ref_p_may_alias
;
123 unsigned HOST_WIDE_INT call_may_clobber_ref_p_no_alias
;
127 dump_alias_stats (FILE *s
)
129 fprintf (s
, "\nAlias oracle query stats:\n");
130 fprintf (s
, " refs_may_alias_p: "
131 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
132 HOST_WIDE_INT_PRINT_DEC
" queries\n",
133 alias_stats
.refs_may_alias_p_no_alias
,
134 alias_stats
.refs_may_alias_p_no_alias
135 + alias_stats
.refs_may_alias_p_may_alias
);
136 fprintf (s
, " ref_maybe_used_by_call_p: "
137 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
138 HOST_WIDE_INT_PRINT_DEC
" queries\n",
139 alias_stats
.ref_maybe_used_by_call_p_no_alias
,
140 alias_stats
.refs_may_alias_p_no_alias
141 + alias_stats
.ref_maybe_used_by_call_p_may_alias
);
142 fprintf (s
, " call_may_clobber_ref_p: "
143 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
144 HOST_WIDE_INT_PRINT_DEC
" queries\n",
145 alias_stats
.call_may_clobber_ref_p_no_alias
,
146 alias_stats
.call_may_clobber_ref_p_no_alias
147 + alias_stats
.call_may_clobber_ref_p_may_alias
);
151 /* Return true, if dereferencing PTR may alias with a global variable. */
154 ptr_deref_may_alias_global_p (tree ptr
)
156 struct ptr_info_def
*pi
;
158 /* If we end up with a pointer constant here that may point
160 if (TREE_CODE (ptr
) != SSA_NAME
)
163 pi
= SSA_NAME_PTR_INFO (ptr
);
165 /* If we do not have points-to information for this variable,
170 /* ??? This does not use TBAA to prune globals ptr may not access. */
171 return pt_solution_includes_global (&pi
->pt
);
174 /* Return true if dereferencing PTR may alias DECL.
175 The caller is responsible for applying TBAA to see if PTR
176 may access DECL at all. */
179 ptr_deref_may_alias_decl_p (tree ptr
, tree decl
)
181 struct ptr_info_def
*pi
;
183 /* Conversions are irrelevant for points-to information and
184 data-dependence analysis can feed us those. */
187 /* Anything we do not explicilty handle aliases. */
188 if ((TREE_CODE (ptr
) != SSA_NAME
189 && TREE_CODE (ptr
) != ADDR_EXPR
190 && TREE_CODE (ptr
) != POINTER_PLUS_EXPR
)
191 || !POINTER_TYPE_P (TREE_TYPE (ptr
))
192 || (TREE_CODE (decl
) != VAR_DECL
193 && TREE_CODE (decl
) != PARM_DECL
194 && TREE_CODE (decl
) != RESULT_DECL
))
197 /* Disregard pointer offsetting. */
198 if (TREE_CODE (ptr
) == POINTER_PLUS_EXPR
)
202 ptr
= TREE_OPERAND (ptr
, 0);
204 while (TREE_CODE (ptr
) == POINTER_PLUS_EXPR
);
205 return ptr_deref_may_alias_decl_p (ptr
, decl
);
208 /* ADDR_EXPR pointers either just offset another pointer or directly
209 specify the pointed-to set. */
210 if (TREE_CODE (ptr
) == ADDR_EXPR
)
212 tree base
= get_base_address (TREE_OPERAND (ptr
, 0));
214 && (TREE_CODE (base
) == MEM_REF
215 || TREE_CODE (base
) == TARGET_MEM_REF
))
216 ptr
= TREE_OPERAND (base
, 0);
221 && CONSTANT_CLASS_P (base
))
227 /* Non-aliased variables can not be pointed to. */
228 if (!may_be_aliased (decl
))
231 /* If we do not have useful points-to information for this pointer
232 we cannot disambiguate anything else. */
233 pi
= SSA_NAME_PTR_INFO (ptr
);
237 return pt_solution_includes (&pi
->pt
, decl
);
240 /* Return true if dereferenced PTR1 and PTR2 may alias.
241 The caller is responsible for applying TBAA to see if accesses
242 through PTR1 and PTR2 may conflict at all. */
245 ptr_derefs_may_alias_p (tree ptr1
, tree ptr2
)
247 struct ptr_info_def
*pi1
, *pi2
;
249 /* Conversions are irrelevant for points-to information and
250 data-dependence analysis can feed us those. */
254 /* Disregard pointer offsetting. */
255 if (TREE_CODE (ptr1
) == POINTER_PLUS_EXPR
)
259 ptr1
= TREE_OPERAND (ptr1
, 0);
261 while (TREE_CODE (ptr1
) == POINTER_PLUS_EXPR
);
262 return ptr_derefs_may_alias_p (ptr1
, ptr2
);
264 if (TREE_CODE (ptr2
) == POINTER_PLUS_EXPR
)
268 ptr2
= TREE_OPERAND (ptr2
, 0);
270 while (TREE_CODE (ptr2
) == POINTER_PLUS_EXPR
);
271 return ptr_derefs_may_alias_p (ptr1
, ptr2
);
274 /* ADDR_EXPR pointers either just offset another pointer or directly
275 specify the pointed-to set. */
276 if (TREE_CODE (ptr1
) == ADDR_EXPR
)
278 tree base
= get_base_address (TREE_OPERAND (ptr1
, 0));
280 && (TREE_CODE (base
) == MEM_REF
281 || TREE_CODE (base
) == TARGET_MEM_REF
))
282 return ptr_derefs_may_alias_p (TREE_OPERAND (base
, 0), ptr2
);
285 return ptr_deref_may_alias_decl_p (ptr2
, base
);
289 if (TREE_CODE (ptr2
) == ADDR_EXPR
)
291 tree base
= get_base_address (TREE_OPERAND (ptr2
, 0));
293 && (TREE_CODE (base
) == MEM_REF
294 || TREE_CODE (base
) == TARGET_MEM_REF
))
295 return ptr_derefs_may_alias_p (ptr1
, TREE_OPERAND (base
, 0));
298 return ptr_deref_may_alias_decl_p (ptr1
, base
);
303 /* From here we require SSA name pointers. Anything else aliases. */
304 if (TREE_CODE (ptr1
) != SSA_NAME
305 || TREE_CODE (ptr2
) != SSA_NAME
306 || !POINTER_TYPE_P (TREE_TYPE (ptr1
))
307 || !POINTER_TYPE_P (TREE_TYPE (ptr2
)))
310 /* We may end up with two empty points-to solutions for two same pointers.
311 In this case we still want to say both pointers alias, so shortcut
316 /* If we do not have useful points-to information for either pointer
317 we cannot disambiguate anything else. */
318 pi1
= SSA_NAME_PTR_INFO (ptr1
);
319 pi2
= SSA_NAME_PTR_INFO (ptr2
);
323 /* ??? This does not use TBAA to prune decls from the intersection
324 that not both pointers may access. */
325 return pt_solutions_intersect (&pi1
->pt
, &pi2
->pt
);
328 /* Return true if dereferencing PTR may alias *REF.
329 The caller is responsible for applying TBAA to see if PTR
330 may access *REF at all. */
333 ptr_deref_may_alias_ref_p_1 (tree ptr
, ao_ref
*ref
)
335 tree base
= ao_ref_base (ref
);
337 if (TREE_CODE (base
) == MEM_REF
338 || TREE_CODE (base
) == TARGET_MEM_REF
)
339 return ptr_derefs_may_alias_p (ptr
, TREE_OPERAND (base
, 0));
340 else if (DECL_P (base
))
341 return ptr_deref_may_alias_decl_p (ptr
, base
);
346 /* Returns whether reference REF to BASE may refer to global memory. */
349 ref_may_alias_global_p_1 (tree base
)
352 return is_global_var (base
);
353 else if (TREE_CODE (base
) == MEM_REF
354 || TREE_CODE (base
) == TARGET_MEM_REF
)
355 return ptr_deref_may_alias_global_p (TREE_OPERAND (base
, 0));
360 ref_may_alias_global_p (ao_ref
*ref
)
362 tree base
= ao_ref_base (ref
);
363 return ref_may_alias_global_p_1 (base
);
367 ref_may_alias_global_p (tree ref
)
369 tree base
= get_base_address (ref
);
370 return ref_may_alias_global_p_1 (base
);
373 /* Return true whether STMT may clobber global memory. */
376 stmt_may_clobber_global_p (gimple stmt
)
380 if (!gimple_vdef (stmt
))
383 /* ??? We can ask the oracle whether an artificial pointer
384 dereference with a pointer with points-to information covering
385 all global memory (what about non-address taken memory?) maybe
386 clobbered by this call. As there is at the moment no convenient
387 way of doing that without generating garbage do some manual
389 ??? We could make a NULL ao_ref argument to the various
390 predicates special, meaning any global memory. */
392 switch (gimple_code (stmt
))
395 lhs
= gimple_assign_lhs (stmt
);
396 return (TREE_CODE (lhs
) != SSA_NAME
397 && ref_may_alias_global_p (lhs
));
406 /* Dump alias information on FILE. */
409 dump_alias_info (FILE *file
)
413 = lang_hooks
.decl_printable_name (current_function_decl
, 2);
416 fprintf (file
, "\n\nAlias information for %s\n\n", funcname
);
418 fprintf (file
, "Aliased symbols\n\n");
420 FOR_EACH_LOCAL_DECL (cfun
, i
, var
)
422 if (may_be_aliased (var
))
423 dump_variable (file
, var
);
426 fprintf (file
, "\nCall clobber information\n");
428 fprintf (file
, "\nESCAPED");
429 dump_points_to_solution (file
, &cfun
->gimple_df
->escaped
);
431 fprintf (file
, "\n\nFlow-insensitive points-to information\n\n");
433 for (i
= 1; i
< num_ssa_names
; i
++)
435 tree ptr
= ssa_name (i
);
436 struct ptr_info_def
*pi
;
439 || !POINTER_TYPE_P (TREE_TYPE (ptr
))
440 || SSA_NAME_IN_FREE_LIST (ptr
))
443 pi
= SSA_NAME_PTR_INFO (ptr
);
445 dump_points_to_info_for (file
, ptr
);
448 fprintf (file
, "\n");
452 /* Dump alias information on stderr. */
455 debug_alias_info (void)
457 dump_alias_info (stderr
);
461 /* Dump the points-to set *PT into FILE. */
464 dump_points_to_solution (FILE *file
, struct pt_solution
*pt
)
467 fprintf (file
, ", points-to anything");
470 fprintf (file
, ", points-to non-local");
473 fprintf (file
, ", points-to escaped");
476 fprintf (file
, ", points-to unit escaped");
479 fprintf (file
, ", points-to NULL");
483 fprintf (file
, ", points-to vars: ");
484 dump_decl_set (file
, pt
->vars
);
485 if (pt
->vars_contains_nonlocal
486 && pt
->vars_contains_escaped_heap
)
487 fprintf (file
, " (nonlocal, escaped heap)");
488 else if (pt
->vars_contains_nonlocal
489 && pt
->vars_contains_escaped
)
490 fprintf (file
, " (nonlocal, escaped)");
491 else if (pt
->vars_contains_nonlocal
)
492 fprintf (file
, " (nonlocal)");
493 else if (pt
->vars_contains_escaped_heap
)
494 fprintf (file
, " (escaped heap)");
495 else if (pt
->vars_contains_escaped
)
496 fprintf (file
, " (escaped)");
501 /* Unified dump function for pt_solution. */
504 debug (pt_solution
&ref
)
506 dump_points_to_solution (stderr
, &ref
);
510 debug (pt_solution
*ptr
)
515 fprintf (stderr
, "<nil>\n");
519 /* Dump points-to information for SSA_NAME PTR into FILE. */
522 dump_points_to_info_for (FILE *file
, tree ptr
)
524 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (ptr
);
526 print_generic_expr (file
, ptr
, dump_flags
);
529 dump_points_to_solution (file
, &pi
->pt
);
531 fprintf (file
, ", points-to anything");
533 fprintf (file
, "\n");
537 /* Dump points-to information for VAR into stderr. */
540 debug_points_to_info_for (tree var
)
542 dump_points_to_info_for (stderr
, var
);
546 /* Initializes the alias-oracle reference representation *R from REF. */
549 ao_ref_init (ao_ref
*r
, tree ref
)
556 r
->ref_alias_set
= -1;
557 r
->base_alias_set
= -1;
558 r
->volatile_p
= ref
? TREE_THIS_VOLATILE (ref
) : false;
561 /* Returns the base object of the memory reference *REF. */
564 ao_ref_base (ao_ref
*ref
)
568 ref
->base
= get_ref_base_and_extent (ref
->ref
, &ref
->offset
, &ref
->size
,
573 /* Returns the base object alias set of the memory reference *REF. */
576 ao_ref_base_alias_set (ao_ref
*ref
)
579 if (ref
->base_alias_set
!= -1)
580 return ref
->base_alias_set
;
584 while (handled_component_p (base_ref
))
585 base_ref
= TREE_OPERAND (base_ref
, 0);
586 ref
->base_alias_set
= get_alias_set (base_ref
);
587 return ref
->base_alias_set
;
590 /* Returns the reference alias set of the memory reference *REF. */
593 ao_ref_alias_set (ao_ref
*ref
)
595 if (ref
->ref_alias_set
!= -1)
596 return ref
->ref_alias_set
;
597 ref
->ref_alias_set
= get_alias_set (ref
->ref
);
598 return ref
->ref_alias_set
;
601 /* Init an alias-oracle reference representation from a gimple pointer
602 PTR and a gimple size SIZE in bytes. If SIZE is NULL_TREE then the
603 size is assumed to be unknown. The access is assumed to be only
604 to or after of the pointer target, not before it. */
607 ao_ref_init_from_ptr_and_size (ao_ref
*ref
, tree ptr
, tree size
)
609 HOST_WIDE_INT t
, size_hwi
, extra_offset
= 0;
610 ref
->ref
= NULL_TREE
;
611 if (TREE_CODE (ptr
) == SSA_NAME
)
613 gimple stmt
= SSA_NAME_DEF_STMT (ptr
);
614 if (gimple_assign_single_p (stmt
)
615 && gimple_assign_rhs_code (stmt
) == ADDR_EXPR
)
616 ptr
= gimple_assign_rhs1 (stmt
);
617 else if (is_gimple_assign (stmt
)
618 && gimple_assign_rhs_code (stmt
) == POINTER_PLUS_EXPR
619 && TREE_CODE (gimple_assign_rhs2 (stmt
)) == INTEGER_CST
)
621 ptr
= gimple_assign_rhs1 (stmt
);
622 extra_offset
= BITS_PER_UNIT
623 * int_cst_value (gimple_assign_rhs2 (stmt
));
627 if (TREE_CODE (ptr
) == ADDR_EXPR
)
629 ref
->base
= get_addr_base_and_unit_offset (TREE_OPERAND (ptr
, 0), &t
);
631 ref
->offset
= BITS_PER_UNIT
* t
;
636 ref
->base
= get_base_address (TREE_OPERAND (ptr
, 0));
641 ref
->base
= build2 (MEM_REF
, char_type_node
,
642 ptr
, null_pointer_node
);
645 ref
->offset
+= extra_offset
;
647 && tree_fits_shwi_p (size
)
648 && (size_hwi
= tree_to_shwi (size
)) <= HOST_WIDE_INT_MAX
/ BITS_PER_UNIT
)
649 ref
->max_size
= ref
->size
= size_hwi
* BITS_PER_UNIT
;
651 ref
->max_size
= ref
->size
= -1;
652 ref
->ref_alias_set
= 0;
653 ref
->base_alias_set
= 0;
654 ref
->volatile_p
= false;
657 /* Return 1 if TYPE1 and TYPE2 are to be considered equivalent for the
658 purpose of TBAA. Return 0 if they are distinct and -1 if we cannot
662 same_type_for_tbaa (tree type1
, tree type2
)
664 type1
= TYPE_MAIN_VARIANT (type1
);
665 type2
= TYPE_MAIN_VARIANT (type2
);
667 /* If we would have to do structural comparison bail out. */
668 if (TYPE_STRUCTURAL_EQUALITY_P (type1
)
669 || TYPE_STRUCTURAL_EQUALITY_P (type2
))
672 /* Compare the canonical types. */
673 if (TYPE_CANONICAL (type1
) == TYPE_CANONICAL (type2
))
676 /* ??? Array types are not properly unified in all cases as we have
677 spurious changes in the index types for example. Removing this
678 causes all sorts of problems with the Fortran frontend. */
679 if (TREE_CODE (type1
) == ARRAY_TYPE
680 && TREE_CODE (type2
) == ARRAY_TYPE
)
683 /* ??? In Ada, an lvalue of an unconstrained type can be used to access an
684 object of one of its constrained subtypes, e.g. when a function with an
685 unconstrained parameter passed by reference is called on an object and
686 inlined. But, even in the case of a fixed size, type and subtypes are
687 not equivalent enough as to share the same TYPE_CANONICAL, since this
688 would mean that conversions between them are useless, whereas they are
689 not (e.g. type and subtypes can have different modes). So, in the end,
690 they are only guaranteed to have the same alias set. */
691 if (get_alias_set (type1
) == get_alias_set (type2
))
694 /* The types are known to be not equal. */
698 /* Determine if the two component references REF1 and REF2 which are
699 based on access types TYPE1 and TYPE2 and of which at least one is based
700 on an indirect reference may alias. REF2 is the only one that can
701 be a decl in which case REF2_IS_DECL is true.
702 REF1_ALIAS_SET, BASE1_ALIAS_SET, REF2_ALIAS_SET and BASE2_ALIAS_SET
703 are the respective alias sets. */
706 aliasing_component_refs_p (tree ref1
,
707 alias_set_type ref1_alias_set
,
708 alias_set_type base1_alias_set
,
709 HOST_WIDE_INT offset1
, HOST_WIDE_INT max_size1
,
711 alias_set_type ref2_alias_set
,
712 alias_set_type base2_alias_set
,
713 HOST_WIDE_INT offset2
, HOST_WIDE_INT max_size2
,
716 /* If one reference is a component references through pointers try to find a
717 common base and apply offset based disambiguation. This handles
719 struct A { int i; int j; } *q;
720 struct B { struct A a; int k; } *p;
721 disambiguating q->i and p->a.j. */
727 /* Choose bases and base types to search for. */
729 while (handled_component_p (base1
))
730 base1
= TREE_OPERAND (base1
, 0);
731 type1
= TREE_TYPE (base1
);
733 while (handled_component_p (base2
))
734 base2
= TREE_OPERAND (base2
, 0);
735 type2
= TREE_TYPE (base2
);
737 /* Now search for the type1 in the access path of ref2. This
738 would be a common base for doing offset based disambiguation on. */
740 while (handled_component_p (*refp
)
741 && same_type_for_tbaa (TREE_TYPE (*refp
), type1
) == 0)
742 refp
= &TREE_OPERAND (*refp
, 0);
743 same_p
= same_type_for_tbaa (TREE_TYPE (*refp
), type1
);
744 /* If we couldn't compare types we have to bail out. */
747 else if (same_p
== 1)
749 HOST_WIDE_INT offadj
, sztmp
, msztmp
;
750 get_ref_base_and_extent (*refp
, &offadj
, &sztmp
, &msztmp
);
752 get_ref_base_and_extent (base1
, &offadj
, &sztmp
, &msztmp
);
754 return ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
);
756 /* If we didn't find a common base, try the other way around. */
758 while (handled_component_p (*refp
)
759 && same_type_for_tbaa (TREE_TYPE (*refp
), type2
) == 0)
760 refp
= &TREE_OPERAND (*refp
, 0);
761 same_p
= same_type_for_tbaa (TREE_TYPE (*refp
), type2
);
762 /* If we couldn't compare types we have to bail out. */
765 else if (same_p
== 1)
767 HOST_WIDE_INT offadj
, sztmp
, msztmp
;
768 get_ref_base_and_extent (*refp
, &offadj
, &sztmp
, &msztmp
);
770 get_ref_base_and_extent (base2
, &offadj
, &sztmp
, &msztmp
);
772 return ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
);
775 /* If we have two type access paths B1.path1 and B2.path2 they may
776 only alias if either B1 is in B2.path2 or B2 is in B1.path1.
777 But we can still have a path that goes B1.path1...B2.path2 with
778 a part that we do not see. So we can only disambiguate now
779 if there is no B2 in the tail of path1 and no B1 on the
781 if (base1_alias_set
== ref2_alias_set
782 || alias_set_subset_of (base1_alias_set
, ref2_alias_set
))
784 /* If this is ptr vs. decl then we know there is no ptr ... decl path. */
786 return (base2_alias_set
== ref1_alias_set
787 || alias_set_subset_of (base2_alias_set
, ref1_alias_set
));
791 /* Return true if we can determine that component references REF1 and REF2,
792 that are within a common DECL, cannot overlap. */
795 nonoverlapping_component_refs_of_decl_p (tree ref1
, tree ref2
)
797 auto_vec
<tree
, 16> component_refs1
;
798 auto_vec
<tree
, 16> component_refs2
;
800 /* Create the stack of handled components for REF1. */
801 while (handled_component_p (ref1
))
803 component_refs1
.safe_push (ref1
);
804 ref1
= TREE_OPERAND (ref1
, 0);
806 if (TREE_CODE (ref1
) == MEM_REF
)
808 if (!integer_zerop (TREE_OPERAND (ref1
, 1)))
810 ref1
= TREE_OPERAND (TREE_OPERAND (ref1
, 0), 0);
813 /* Create the stack of handled components for REF2. */
814 while (handled_component_p (ref2
))
816 component_refs2
.safe_push (ref2
);
817 ref2
= TREE_OPERAND (ref2
, 0);
819 if (TREE_CODE (ref2
) == MEM_REF
)
821 if (!integer_zerop (TREE_OPERAND (ref2
, 1)))
823 ref2
= TREE_OPERAND (TREE_OPERAND (ref2
, 0), 0);
826 /* We must have the same base DECL. */
827 gcc_assert (ref1
== ref2
);
829 /* Pop the stacks in parallel and examine the COMPONENT_REFs of the same
830 rank. This is sufficient because we start from the same DECL and you
831 cannot reference several fields at a time with COMPONENT_REFs (unlike
832 with ARRAY_RANGE_REFs for arrays) so you always need the same number
833 of them to access a sub-component, unless you're in a union, in which
834 case the return value will precisely be false. */
839 if (component_refs1
.is_empty ())
841 ref1
= component_refs1
.pop ();
843 while (!RECORD_OR_UNION_TYPE_P (TREE_TYPE (TREE_OPERAND (ref1
, 0))));
847 if (component_refs2
.is_empty ())
849 ref2
= component_refs2
.pop ();
851 while (!RECORD_OR_UNION_TYPE_P (TREE_TYPE (TREE_OPERAND (ref2
, 0))));
853 /* Beware of BIT_FIELD_REF. */
854 if (TREE_CODE (ref1
) != COMPONENT_REF
855 || TREE_CODE (ref2
) != COMPONENT_REF
)
858 tree field1
= TREE_OPERAND (ref1
, 1);
859 tree field2
= TREE_OPERAND (ref2
, 1);
861 /* ??? We cannot simply use the type of operand #0 of the refs here
862 as the Fortran compiler smuggles type punning into COMPONENT_REFs
863 for common blocks instead of using unions like everyone else. */
864 tree type1
= DECL_CONTEXT (field1
);
865 tree type2
= DECL_CONTEXT (field2
);
867 /* We cannot disambiguate fields in a union or qualified union. */
868 if (type1
!= type2
|| TREE_CODE (type1
) != RECORD_TYPE
)
871 /* Different fields of the same record type cannot overlap.
872 ??? Bitfields can overlap at RTL level so punt on them. */
873 if (field1
!= field2
)
875 component_refs1
.release ();
876 component_refs2
.release ();
877 return !(DECL_BIT_FIELD (field1
) && DECL_BIT_FIELD (field2
));
882 component_refs1
.release ();
883 component_refs2
.release ();
887 /* qsort compare function to sort FIELD_DECLs after their
888 DECL_FIELD_CONTEXT TYPE_UID. */
891 ncr_compar (const void *field1_
, const void *field2_
)
893 const_tree field1
= *(const_tree
*) const_cast <void *>(field1_
);
894 const_tree field2
= *(const_tree
*) const_cast <void *>(field2_
);
895 unsigned int uid1
= TYPE_UID (DECL_FIELD_CONTEXT (field1
));
896 unsigned int uid2
= TYPE_UID (DECL_FIELD_CONTEXT (field2
));
899 else if (uid1
> uid2
)
904 /* Return true if we can determine that the fields referenced cannot
905 overlap for any pair of objects. */
908 nonoverlapping_component_refs_p (const_tree x
, const_tree y
)
910 if (!flag_strict_aliasing
912 || TREE_CODE (x
) != COMPONENT_REF
913 || TREE_CODE (y
) != COMPONENT_REF
)
916 auto_vec
<const_tree
, 16> fieldsx
;
917 while (TREE_CODE (x
) == COMPONENT_REF
)
919 tree field
= TREE_OPERAND (x
, 1);
920 tree type
= DECL_FIELD_CONTEXT (field
);
921 if (TREE_CODE (type
) == RECORD_TYPE
)
922 fieldsx
.safe_push (field
);
923 x
= TREE_OPERAND (x
, 0);
925 if (fieldsx
.length () == 0)
927 auto_vec
<const_tree
, 16> fieldsy
;
928 while (TREE_CODE (y
) == COMPONENT_REF
)
930 tree field
= TREE_OPERAND (y
, 1);
931 tree type
= DECL_FIELD_CONTEXT (field
);
932 if (TREE_CODE (type
) == RECORD_TYPE
)
933 fieldsy
.safe_push (TREE_OPERAND (y
, 1));
934 y
= TREE_OPERAND (y
, 0);
936 if (fieldsy
.length () == 0)
939 /* Most common case first. */
940 if (fieldsx
.length () == 1
941 && fieldsy
.length () == 1)
942 return ((DECL_FIELD_CONTEXT (fieldsx
[0])
943 == DECL_FIELD_CONTEXT (fieldsy
[0]))
944 && fieldsx
[0] != fieldsy
[0]
945 && !(DECL_BIT_FIELD (fieldsx
[0]) && DECL_BIT_FIELD (fieldsy
[0])));
947 if (fieldsx
.length () == 2)
949 if (ncr_compar (&fieldsx
[0], &fieldsx
[1]) == 1)
951 const_tree tem
= fieldsx
[0];
952 fieldsx
[0] = fieldsx
[1];
957 fieldsx
.qsort (ncr_compar
);
959 if (fieldsy
.length () == 2)
961 if (ncr_compar (&fieldsy
[0], &fieldsy
[1]) == 1)
963 const_tree tem
= fieldsy
[0];
964 fieldsy
[0] = fieldsy
[1];
969 fieldsy
.qsort (ncr_compar
);
971 unsigned i
= 0, j
= 0;
974 const_tree fieldx
= fieldsx
[i
];
975 const_tree fieldy
= fieldsy
[j
];
976 tree typex
= DECL_FIELD_CONTEXT (fieldx
);
977 tree typey
= DECL_FIELD_CONTEXT (fieldy
);
980 /* We're left with accessing different fields of a structure,
981 no possible overlap, unless they are both bitfields. */
982 if (fieldx
!= fieldy
)
983 return !(DECL_BIT_FIELD (fieldx
) && DECL_BIT_FIELD (fieldy
));
985 if (TYPE_UID (typex
) < TYPE_UID (typey
))
988 if (i
== fieldsx
.length ())
994 if (j
== fieldsy
.length ())
1004 /* Return true if two memory references based on the variables BASE1
1005 and BASE2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
1006 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. REF1 and REF2
1007 if non-NULL are the complete memory reference trees. */
1010 decl_refs_may_alias_p (tree ref1
, tree base1
,
1011 HOST_WIDE_INT offset1
, HOST_WIDE_INT max_size1
,
1012 tree ref2
, tree base2
,
1013 HOST_WIDE_INT offset2
, HOST_WIDE_INT max_size2
)
1015 gcc_checking_assert (DECL_P (base1
) && DECL_P (base2
));
1017 /* If both references are based on different variables, they cannot alias. */
1021 /* If both references are based on the same variable, they cannot alias if
1022 the accesses do not overlap. */
1023 if (!ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
))
1026 /* For components with variable position, the above test isn't sufficient,
1027 so we disambiguate component references manually. */
1029 && handled_component_p (ref1
) && handled_component_p (ref2
)
1030 && nonoverlapping_component_refs_of_decl_p (ref1
, ref2
))
1036 /* Return true if an indirect reference based on *PTR1 constrained
1037 to [OFFSET1, OFFSET1 + MAX_SIZE1) may alias a variable based on BASE2
1038 constrained to [OFFSET2, OFFSET2 + MAX_SIZE2). *PTR1 and BASE2 have
1039 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
1040 in which case they are computed on-demand. REF1 and REF2
1041 if non-NULL are the complete memory reference trees. */
1044 indirect_ref_may_alias_decl_p (tree ref1 ATTRIBUTE_UNUSED
, tree base1
,
1045 HOST_WIDE_INT offset1
,
1046 HOST_WIDE_INT max_size1 ATTRIBUTE_UNUSED
,
1047 alias_set_type ref1_alias_set
,
1048 alias_set_type base1_alias_set
,
1049 tree ref2 ATTRIBUTE_UNUSED
, tree base2
,
1050 HOST_WIDE_INT offset2
, HOST_WIDE_INT max_size2
,
1051 alias_set_type ref2_alias_set
,
1052 alias_set_type base2_alias_set
, bool tbaa_p
)
1055 tree ptrtype1
, dbase2
;
1056 HOST_WIDE_INT offset1p
= offset1
, offset2p
= offset2
;
1057 HOST_WIDE_INT doffset1
, doffset2
;
1059 gcc_checking_assert ((TREE_CODE (base1
) == MEM_REF
1060 || TREE_CODE (base1
) == TARGET_MEM_REF
)
1063 ptr1
= TREE_OPERAND (base1
, 0);
1065 /* The offset embedded in MEM_REFs can be negative. Bias them
1066 so that the resulting offset adjustment is positive. */
1067 offset_int moff
= mem_ref_offset (base1
);
1068 moff
= wi::lshift (moff
, LOG2_BITS_PER_UNIT
);
1069 if (wi::neg_p (moff
))
1070 offset2p
+= (-moff
).to_short_addr ();
1072 offset1p
+= moff
.to_short_addr ();
1074 /* If only one reference is based on a variable, they cannot alias if
1075 the pointer access is beyond the extent of the variable access.
1076 (the pointer base cannot validly point to an offset less than zero
1078 ??? IVOPTs creates bases that do not honor this restriction,
1079 so do not apply this optimization for TARGET_MEM_REFs. */
1080 if (TREE_CODE (base1
) != TARGET_MEM_REF
1081 && !ranges_overlap_p (MAX (0, offset1p
), -1, offset2p
, max_size2
))
1083 /* They also cannot alias if the pointer may not point to the decl. */
1084 if (!ptr_deref_may_alias_decl_p (ptr1
, base2
))
1087 /* Disambiguations that rely on strict aliasing rules follow. */
1088 if (!flag_strict_aliasing
|| !tbaa_p
)
1091 ptrtype1
= TREE_TYPE (TREE_OPERAND (base1
, 1));
1093 /* If the alias set for a pointer access is zero all bets are off. */
1094 if (base1_alias_set
== -1)
1095 base1_alias_set
= get_deref_alias_set (ptrtype1
);
1096 if (base1_alias_set
== 0)
1098 if (base2_alias_set
== -1)
1099 base2_alias_set
= get_alias_set (base2
);
1101 /* When we are trying to disambiguate an access with a pointer dereference
1102 as base versus one with a decl as base we can use both the size
1103 of the decl and its dynamic type for extra disambiguation.
1104 ??? We do not know anything about the dynamic type of the decl
1105 other than that its alias-set contains base2_alias_set as a subset
1106 which does not help us here. */
1107 /* As we know nothing useful about the dynamic type of the decl just
1108 use the usual conflict check rather than a subset test.
1109 ??? We could introduce -fvery-strict-aliasing when the language
1110 does not allow decls to have a dynamic type that differs from their
1111 static type. Then we can check
1112 !alias_set_subset_of (base1_alias_set, base2_alias_set) instead. */
1113 if (base1_alias_set
!= base2_alias_set
1114 && !alias_sets_conflict_p (base1_alias_set
, base2_alias_set
))
1116 /* If the size of the access relevant for TBAA through the pointer
1117 is bigger than the size of the decl we can't possibly access the
1118 decl via that pointer. */
1119 if (DECL_SIZE (base2
) && COMPLETE_TYPE_P (TREE_TYPE (ptrtype1
))
1120 && TREE_CODE (DECL_SIZE (base2
)) == INTEGER_CST
1121 && TREE_CODE (TYPE_SIZE (TREE_TYPE (ptrtype1
))) == INTEGER_CST
1122 /* ??? This in turn may run afoul when a decl of type T which is
1123 a member of union type U is accessed through a pointer to
1124 type U and sizeof T is smaller than sizeof U. */
1125 && TREE_CODE (TREE_TYPE (ptrtype1
)) != UNION_TYPE
1126 && TREE_CODE (TREE_TYPE (ptrtype1
)) != QUAL_UNION_TYPE
1127 && tree_int_cst_lt (DECL_SIZE (base2
), TYPE_SIZE (TREE_TYPE (ptrtype1
))))
1133 /* If the decl is accessed via a MEM_REF, reconstruct the base
1134 we can use for TBAA and an appropriately adjusted offset. */
1136 while (handled_component_p (dbase2
))
1137 dbase2
= TREE_OPERAND (dbase2
, 0);
1140 if (TREE_CODE (dbase2
) == MEM_REF
1141 || TREE_CODE (dbase2
) == TARGET_MEM_REF
)
1143 offset_int moff
= mem_ref_offset (dbase2
);
1144 moff
= wi::lshift (moff
, LOG2_BITS_PER_UNIT
);
1145 if (wi::neg_p (moff
))
1146 doffset1
-= (-moff
).to_short_addr ();
1148 doffset2
-= moff
.to_short_addr ();
1151 /* If either reference is view-converted, give up now. */
1152 if (same_type_for_tbaa (TREE_TYPE (base1
), TREE_TYPE (ptrtype1
)) != 1
1153 || same_type_for_tbaa (TREE_TYPE (dbase2
), TREE_TYPE (base2
)) != 1)
1156 /* If both references are through the same type, they do not alias
1157 if the accesses do not overlap. This does extra disambiguation
1158 for mixed/pointer accesses but requires strict aliasing.
1159 For MEM_REFs we require that the component-ref offset we computed
1160 is relative to the start of the type which we ensure by
1161 comparing rvalue and access type and disregarding the constant
1163 if ((TREE_CODE (base1
) != TARGET_MEM_REF
1164 || (!TMR_INDEX (base1
) && !TMR_INDEX2 (base1
)))
1165 && same_type_for_tbaa (TREE_TYPE (base1
), TREE_TYPE (dbase2
)) == 1)
1166 return ranges_overlap_p (doffset1
, max_size1
, doffset2
, max_size2
);
1169 && nonoverlapping_component_refs_p (ref1
, ref2
))
1172 /* Do access-path based disambiguation. */
1174 && (handled_component_p (ref1
) || handled_component_p (ref2
)))
1175 return aliasing_component_refs_p (ref1
,
1176 ref1_alias_set
, base1_alias_set
,
1179 ref2_alias_set
, base2_alias_set
,
1180 offset2
, max_size2
, true);
1185 /* Return true if two indirect references based on *PTR1
1186 and *PTR2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
1187 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. *PTR1 and *PTR2 have
1188 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
1189 in which case they are computed on-demand. REF1 and REF2
1190 if non-NULL are the complete memory reference trees. */
1193 indirect_refs_may_alias_p (tree ref1 ATTRIBUTE_UNUSED
, tree base1
,
1194 HOST_WIDE_INT offset1
, HOST_WIDE_INT max_size1
,
1195 alias_set_type ref1_alias_set
,
1196 alias_set_type base1_alias_set
,
1197 tree ref2 ATTRIBUTE_UNUSED
, tree base2
,
1198 HOST_WIDE_INT offset2
, HOST_WIDE_INT max_size2
,
1199 alias_set_type ref2_alias_set
,
1200 alias_set_type base2_alias_set
, bool tbaa_p
)
1204 tree ptrtype1
, ptrtype2
;
1206 gcc_checking_assert ((TREE_CODE (base1
) == MEM_REF
1207 || TREE_CODE (base1
) == TARGET_MEM_REF
)
1208 && (TREE_CODE (base2
) == MEM_REF
1209 || TREE_CODE (base2
) == TARGET_MEM_REF
));
1211 ptr1
= TREE_OPERAND (base1
, 0);
1212 ptr2
= TREE_OPERAND (base2
, 0);
1214 /* If both bases are based on pointers they cannot alias if they may not
1215 point to the same memory object or if they point to the same object
1216 and the accesses do not overlap. */
1217 if ((!cfun
|| gimple_in_ssa_p (cfun
))
1218 && operand_equal_p (ptr1
, ptr2
, 0)
1219 && (((TREE_CODE (base1
) != TARGET_MEM_REF
1220 || (!TMR_INDEX (base1
) && !TMR_INDEX2 (base1
)))
1221 && (TREE_CODE (base2
) != TARGET_MEM_REF
1222 || (!TMR_INDEX (base2
) && !TMR_INDEX2 (base2
))))
1223 || (TREE_CODE (base1
) == TARGET_MEM_REF
1224 && TREE_CODE (base2
) == TARGET_MEM_REF
1225 && (TMR_STEP (base1
) == TMR_STEP (base2
)
1226 || (TMR_STEP (base1
) && TMR_STEP (base2
)
1227 && operand_equal_p (TMR_STEP (base1
),
1228 TMR_STEP (base2
), 0)))
1229 && (TMR_INDEX (base1
) == TMR_INDEX (base2
)
1230 || (TMR_INDEX (base1
) && TMR_INDEX (base2
)
1231 && operand_equal_p (TMR_INDEX (base1
),
1232 TMR_INDEX (base2
), 0)))
1233 && (TMR_INDEX2 (base1
) == TMR_INDEX2 (base2
)
1234 || (TMR_INDEX2 (base1
) && TMR_INDEX2 (base2
)
1235 && operand_equal_p (TMR_INDEX2 (base1
),
1236 TMR_INDEX2 (base2
), 0))))))
1239 /* The offset embedded in MEM_REFs can be negative. Bias them
1240 so that the resulting offset adjustment is positive. */
1241 moff
= mem_ref_offset (base1
);
1242 moff
= wi::lshift (moff
, LOG2_BITS_PER_UNIT
);
1243 if (wi::neg_p (moff
))
1244 offset2
+= (-moff
).to_short_addr ();
1246 offset1
+= moff
.to_shwi ();
1247 moff
= mem_ref_offset (base2
);
1248 moff
= wi::lshift (moff
, LOG2_BITS_PER_UNIT
);
1249 if (wi::neg_p (moff
))
1250 offset1
+= (-moff
).to_short_addr ();
1252 offset2
+= moff
.to_short_addr ();
1253 return ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
);
1255 if (!ptr_derefs_may_alias_p (ptr1
, ptr2
))
1258 /* Disambiguations that rely on strict aliasing rules follow. */
1259 if (!flag_strict_aliasing
|| !tbaa_p
)
1262 ptrtype1
= TREE_TYPE (TREE_OPERAND (base1
, 1));
1263 ptrtype2
= TREE_TYPE (TREE_OPERAND (base2
, 1));
1265 /* If the alias set for a pointer access is zero all bets are off. */
1266 if (base1_alias_set
== -1)
1267 base1_alias_set
= get_deref_alias_set (ptrtype1
);
1268 if (base1_alias_set
== 0)
1270 if (base2_alias_set
== -1)
1271 base2_alias_set
= get_deref_alias_set (ptrtype2
);
1272 if (base2_alias_set
== 0)
1275 /* If both references are through the same type, they do not alias
1276 if the accesses do not overlap. This does extra disambiguation
1277 for mixed/pointer accesses but requires strict aliasing. */
1278 if ((TREE_CODE (base1
) != TARGET_MEM_REF
1279 || (!TMR_INDEX (base1
) && !TMR_INDEX2 (base1
)))
1280 && (TREE_CODE (base2
) != TARGET_MEM_REF
1281 || (!TMR_INDEX (base2
) && !TMR_INDEX2 (base2
)))
1282 && same_type_for_tbaa (TREE_TYPE (base1
), TREE_TYPE (ptrtype1
)) == 1
1283 && same_type_for_tbaa (TREE_TYPE (base2
), TREE_TYPE (ptrtype2
)) == 1
1284 && same_type_for_tbaa (TREE_TYPE (ptrtype1
),
1285 TREE_TYPE (ptrtype2
)) == 1)
1286 return ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
);
1288 /* Do type-based disambiguation. */
1289 if (base1_alias_set
!= base2_alias_set
1290 && !alias_sets_conflict_p (base1_alias_set
, base2_alias_set
))
1293 /* If either reference is view-converted, give up now. */
1294 if (same_type_for_tbaa (TREE_TYPE (base1
), TREE_TYPE (ptrtype1
)) != 1
1295 || same_type_for_tbaa (TREE_TYPE (base2
), TREE_TYPE (ptrtype2
)) != 1)
1299 && nonoverlapping_component_refs_p (ref1
, ref2
))
1302 /* Do access-path based disambiguation. */
1304 && (handled_component_p (ref1
) || handled_component_p (ref2
)))
1305 return aliasing_component_refs_p (ref1
,
1306 ref1_alias_set
, base1_alias_set
,
1309 ref2_alias_set
, base2_alias_set
,
1310 offset2
, max_size2
, false);
1315 /* Return true, if the two memory references REF1 and REF2 may alias. */
1318 refs_may_alias_p_1 (ao_ref
*ref1
, ao_ref
*ref2
, bool tbaa_p
)
1321 HOST_WIDE_INT offset1
= 0, offset2
= 0;
1322 HOST_WIDE_INT max_size1
= -1, max_size2
= -1;
1323 bool var1_p
, var2_p
, ind1_p
, ind2_p
;
1325 gcc_checking_assert ((!ref1
->ref
1326 || TREE_CODE (ref1
->ref
) == SSA_NAME
1327 || DECL_P (ref1
->ref
)
1328 || TREE_CODE (ref1
->ref
) == STRING_CST
1329 || handled_component_p (ref1
->ref
)
1330 || TREE_CODE (ref1
->ref
) == MEM_REF
1331 || TREE_CODE (ref1
->ref
) == TARGET_MEM_REF
)
1333 || TREE_CODE (ref2
->ref
) == SSA_NAME
1334 || DECL_P (ref2
->ref
)
1335 || TREE_CODE (ref2
->ref
) == STRING_CST
1336 || handled_component_p (ref2
->ref
)
1337 || TREE_CODE (ref2
->ref
) == MEM_REF
1338 || TREE_CODE (ref2
->ref
) == TARGET_MEM_REF
));
1340 /* Decompose the references into their base objects and the access. */
1341 base1
= ao_ref_base (ref1
);
1342 offset1
= ref1
->offset
;
1343 max_size1
= ref1
->max_size
;
1344 base2
= ao_ref_base (ref2
);
1345 offset2
= ref2
->offset
;
1346 max_size2
= ref2
->max_size
;
1348 /* We can end up with registers or constants as bases for example from
1349 *D.1663_44 = VIEW_CONVERT_EXPR<struct DB_LSN>(__tmp$B0F64_59);
1350 which is seen as a struct copy. */
1351 if (TREE_CODE (base1
) == SSA_NAME
1352 || TREE_CODE (base1
) == CONST_DECL
1353 || TREE_CODE (base1
) == CONSTRUCTOR
1354 || TREE_CODE (base1
) == ADDR_EXPR
1355 || CONSTANT_CLASS_P (base1
)
1356 || TREE_CODE (base2
) == SSA_NAME
1357 || TREE_CODE (base2
) == CONST_DECL
1358 || TREE_CODE (base2
) == CONSTRUCTOR
1359 || TREE_CODE (base2
) == ADDR_EXPR
1360 || CONSTANT_CLASS_P (base2
))
1363 /* We can end up referring to code via function and label decls.
1364 As we likely do not properly track code aliases conservatively
1366 if (TREE_CODE (base1
) == FUNCTION_DECL
1367 || TREE_CODE (base1
) == LABEL_DECL
1368 || TREE_CODE (base2
) == FUNCTION_DECL
1369 || TREE_CODE (base2
) == LABEL_DECL
)
1372 /* Two volatile accesses always conflict. */
1373 if (ref1
->volatile_p
1374 && ref2
->volatile_p
)
1377 /* Defer to simple offset based disambiguation if we have
1378 references based on two decls. Do this before defering to
1379 TBAA to handle must-alias cases in conformance with the
1380 GCC extension of allowing type-punning through unions. */
1381 var1_p
= DECL_P (base1
);
1382 var2_p
= DECL_P (base2
);
1383 if (var1_p
&& var2_p
)
1384 return decl_refs_may_alias_p (ref1
->ref
, base1
, offset1
, max_size1
,
1385 ref2
->ref
, base2
, offset2
, max_size2
);
1387 /* Handle restrict based accesses.
1388 ??? ao_ref_base strips inner MEM_REF [&decl], recover from that
1390 tree rbase1
= base1
;
1391 tree rbase2
= base2
;
1396 while (handled_component_p (rbase1
))
1397 rbase1
= TREE_OPERAND (rbase1
, 0);
1403 while (handled_component_p (rbase2
))
1404 rbase2
= TREE_OPERAND (rbase2
, 0);
1406 if (rbase1
&& rbase2
1407 && (TREE_CODE (base1
) == MEM_REF
|| TREE_CODE (base1
) == TARGET_MEM_REF
)
1408 && (TREE_CODE (base2
) == MEM_REF
|| TREE_CODE (base2
) == TARGET_MEM_REF
)
1409 /* If the accesses are in the same restrict clique... */
1410 && MR_DEPENDENCE_CLIQUE (base1
) == MR_DEPENDENCE_CLIQUE (base2
)
1411 /* But based on different pointers they do not alias. */
1412 && MR_DEPENDENCE_BASE (base1
) != MR_DEPENDENCE_BASE (base2
))
1415 ind1_p
= (TREE_CODE (base1
) == MEM_REF
1416 || TREE_CODE (base1
) == TARGET_MEM_REF
);
1417 ind2_p
= (TREE_CODE (base2
) == MEM_REF
1418 || TREE_CODE (base2
) == TARGET_MEM_REF
);
1420 /* Canonicalize the pointer-vs-decl case. */
1421 if (ind1_p
&& var2_p
)
1426 tmp1
= offset1
; offset1
= offset2
; offset2
= tmp1
;
1427 tmp1
= max_size1
; max_size1
= max_size2
; max_size2
= tmp1
;
1428 tmp2
= base1
; base1
= base2
; base2
= tmp2
;
1429 tmp3
= ref1
; ref1
= ref2
; ref2
= tmp3
;
1436 /* First defer to TBAA if possible. */
1438 && flag_strict_aliasing
1439 && !alias_sets_conflict_p (ao_ref_alias_set (ref1
),
1440 ao_ref_alias_set (ref2
)))
1443 /* Dispatch to the pointer-vs-decl or pointer-vs-pointer disambiguators. */
1444 if (var1_p
&& ind2_p
)
1445 return indirect_ref_may_alias_decl_p (ref2
->ref
, base2
,
1447 ao_ref_alias_set (ref2
), -1,
1450 ao_ref_alias_set (ref1
),
1451 ao_ref_base_alias_set (ref1
),
1453 else if (ind1_p
&& ind2_p
)
1454 return indirect_refs_may_alias_p (ref1
->ref
, base1
,
1456 ao_ref_alias_set (ref1
), -1,
1459 ao_ref_alias_set (ref2
), -1,
1462 /* We really do not want to end up here, but returning true is safe. */
1463 #ifdef ENABLE_CHECKING
1471 refs_may_alias_p (tree ref1
, ao_ref
*ref2
)
1474 ao_ref_init (&r1
, ref1
);
1475 return refs_may_alias_p_1 (&r1
, ref2
, true);
1479 refs_may_alias_p (tree ref1
, tree ref2
)
1483 ao_ref_init (&r1
, ref1
);
1484 ao_ref_init (&r2
, ref2
);
1485 res
= refs_may_alias_p_1 (&r1
, &r2
, true);
1487 ++alias_stats
.refs_may_alias_p_may_alias
;
1489 ++alias_stats
.refs_may_alias_p_no_alias
;
1493 /* Returns true if there is a anti-dependence for the STORE that
1494 executes after the LOAD. */
1497 refs_anti_dependent_p (tree load
, tree store
)
1500 ao_ref_init (&r1
, load
);
1501 ao_ref_init (&r2
, store
);
1502 return refs_may_alias_p_1 (&r1
, &r2
, false);
1505 /* Returns true if there is a output dependence for the stores
1506 STORE1 and STORE2. */
1509 refs_output_dependent_p (tree store1
, tree store2
)
1512 ao_ref_init (&r1
, store1
);
1513 ao_ref_init (&r2
, store2
);
1514 return refs_may_alias_p_1 (&r1
, &r2
, false);
1517 /* If the call CALL may use the memory reference REF return true,
1518 otherwise return false. */
1521 ref_maybe_used_by_call_p_1 (gcall
*call
, ao_ref
*ref
)
1525 int flags
= gimple_call_flags (call
);
1527 /* Const functions without a static chain do not implicitly use memory. */
1528 if (!gimple_call_chain (call
)
1529 && (flags
& (ECF_CONST
|ECF_NOVOPS
)))
1532 base
= ao_ref_base (ref
);
1536 /* A call that is not without side-effects might involve volatile
1537 accesses and thus conflicts with all other volatile accesses. */
1538 if (ref
->volatile_p
)
1541 /* If the reference is based on a decl that is not aliased the call
1542 cannot possibly use it. */
1544 && !may_be_aliased (base
)
1545 /* But local statics can be used through recursion. */
1546 && !is_global_var (base
))
1549 callee
= gimple_call_fndecl (call
);
1551 /* Handle those builtin functions explicitly that do not act as
1552 escape points. See tree-ssa-structalias.c:find_func_aliases
1553 for the list of builtins we might need to handle here. */
1554 if (callee
!= NULL_TREE
1555 && DECL_BUILT_IN_CLASS (callee
) == BUILT_IN_NORMAL
)
1556 switch (DECL_FUNCTION_CODE (callee
))
1558 /* All the following functions read memory pointed to by
1559 their second argument. strcat/strncat additionally
1560 reads memory pointed to by the first argument. */
1561 case BUILT_IN_STRCAT
:
1562 case BUILT_IN_STRNCAT
:
1565 ao_ref_init_from_ptr_and_size (&dref
,
1566 gimple_call_arg (call
, 0),
1568 if (refs_may_alias_p_1 (&dref
, ref
, false))
1572 case BUILT_IN_STRCPY
:
1573 case BUILT_IN_STRNCPY
:
1574 case BUILT_IN_MEMCPY
:
1575 case BUILT_IN_MEMMOVE
:
1576 case BUILT_IN_MEMPCPY
:
1577 case BUILT_IN_STPCPY
:
1578 case BUILT_IN_STPNCPY
:
1579 case BUILT_IN_TM_MEMCPY
:
1580 case BUILT_IN_TM_MEMMOVE
:
1583 tree size
= NULL_TREE
;
1584 if (gimple_call_num_args (call
) == 3)
1585 size
= gimple_call_arg (call
, 2);
1586 ao_ref_init_from_ptr_and_size (&dref
,
1587 gimple_call_arg (call
, 1),
1589 return refs_may_alias_p_1 (&dref
, ref
, false);
1591 case BUILT_IN_STRCAT_CHK
:
1592 case BUILT_IN_STRNCAT_CHK
:
1595 ao_ref_init_from_ptr_and_size (&dref
,
1596 gimple_call_arg (call
, 0),
1598 if (refs_may_alias_p_1 (&dref
, ref
, false))
1602 case BUILT_IN_STRCPY_CHK
:
1603 case BUILT_IN_STRNCPY_CHK
:
1604 case BUILT_IN_MEMCPY_CHK
:
1605 case BUILT_IN_MEMMOVE_CHK
:
1606 case BUILT_IN_MEMPCPY_CHK
:
1607 case BUILT_IN_STPCPY_CHK
:
1608 case BUILT_IN_STPNCPY_CHK
:
1611 tree size
= NULL_TREE
;
1612 if (gimple_call_num_args (call
) == 4)
1613 size
= gimple_call_arg (call
, 2);
1614 ao_ref_init_from_ptr_and_size (&dref
,
1615 gimple_call_arg (call
, 1),
1617 return refs_may_alias_p_1 (&dref
, ref
, false);
1619 case BUILT_IN_BCOPY
:
1622 tree size
= gimple_call_arg (call
, 2);
1623 ao_ref_init_from_ptr_and_size (&dref
,
1624 gimple_call_arg (call
, 0),
1626 return refs_may_alias_p_1 (&dref
, ref
, false);
1629 /* The following functions read memory pointed to by their
1631 CASE_BUILT_IN_TM_LOAD (1):
1632 CASE_BUILT_IN_TM_LOAD (2):
1633 CASE_BUILT_IN_TM_LOAD (4):
1634 CASE_BUILT_IN_TM_LOAD (8):
1635 CASE_BUILT_IN_TM_LOAD (FLOAT
):
1636 CASE_BUILT_IN_TM_LOAD (DOUBLE
):
1637 CASE_BUILT_IN_TM_LOAD (LDOUBLE
):
1638 CASE_BUILT_IN_TM_LOAD (M64
):
1639 CASE_BUILT_IN_TM_LOAD (M128
):
1640 CASE_BUILT_IN_TM_LOAD (M256
):
1641 case BUILT_IN_TM_LOG
:
1642 case BUILT_IN_TM_LOG_1
:
1643 case BUILT_IN_TM_LOG_2
:
1644 case BUILT_IN_TM_LOG_4
:
1645 case BUILT_IN_TM_LOG_8
:
1646 case BUILT_IN_TM_LOG_FLOAT
:
1647 case BUILT_IN_TM_LOG_DOUBLE
:
1648 case BUILT_IN_TM_LOG_LDOUBLE
:
1649 case BUILT_IN_TM_LOG_M64
:
1650 case BUILT_IN_TM_LOG_M128
:
1651 case BUILT_IN_TM_LOG_M256
:
1652 return ptr_deref_may_alias_ref_p_1 (gimple_call_arg (call
, 0), ref
);
1654 /* These read memory pointed to by the first argument. */
1655 case BUILT_IN_STRDUP
:
1656 case BUILT_IN_STRNDUP
:
1657 case BUILT_IN_REALLOC
:
1660 tree size
= NULL_TREE
;
1661 if (gimple_call_num_args (call
) == 2)
1662 size
= gimple_call_arg (call
, 1);
1663 ao_ref_init_from_ptr_and_size (&dref
,
1664 gimple_call_arg (call
, 0),
1666 return refs_may_alias_p_1 (&dref
, ref
, false);
1668 /* These read memory pointed to by the first argument. */
1669 case BUILT_IN_INDEX
:
1670 case BUILT_IN_STRCHR
:
1671 case BUILT_IN_STRRCHR
:
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);
1679 /* These read memory pointed to by the first argument with size
1680 in the third argument. */
1681 case BUILT_IN_MEMCHR
:
1684 ao_ref_init_from_ptr_and_size (&dref
,
1685 gimple_call_arg (call
, 0),
1686 gimple_call_arg (call
, 2));
1687 return refs_may_alias_p_1 (&dref
, ref
, false);
1689 /* These read memory pointed to by the first and second arguments. */
1690 case BUILT_IN_STRSTR
:
1691 case BUILT_IN_STRPBRK
:
1694 ao_ref_init_from_ptr_and_size (&dref
,
1695 gimple_call_arg (call
, 0),
1697 if (refs_may_alias_p_1 (&dref
, ref
, false))
1699 ao_ref_init_from_ptr_and_size (&dref
,
1700 gimple_call_arg (call
, 1),
1702 return refs_may_alias_p_1 (&dref
, ref
, false);
1705 /* The following builtins do not read from memory. */
1707 case BUILT_IN_MALLOC
:
1708 case BUILT_IN_POSIX_MEMALIGN
:
1709 case BUILT_IN_ALIGNED_ALLOC
:
1710 case BUILT_IN_CALLOC
:
1711 case BUILT_IN_ALLOCA
:
1712 case BUILT_IN_ALLOCA_WITH_ALIGN
:
1713 case BUILT_IN_STACK_SAVE
:
1714 case BUILT_IN_STACK_RESTORE
:
1715 case BUILT_IN_MEMSET
:
1716 case BUILT_IN_TM_MEMSET
:
1717 case BUILT_IN_MEMSET_CHK
:
1718 case BUILT_IN_FREXP
:
1719 case BUILT_IN_FREXPF
:
1720 case BUILT_IN_FREXPL
:
1721 case BUILT_IN_GAMMA_R
:
1722 case BUILT_IN_GAMMAF_R
:
1723 case BUILT_IN_GAMMAL_R
:
1724 case BUILT_IN_LGAMMA_R
:
1725 case BUILT_IN_LGAMMAF_R
:
1726 case BUILT_IN_LGAMMAL_R
:
1728 case BUILT_IN_MODFF
:
1729 case BUILT_IN_MODFL
:
1730 case BUILT_IN_REMQUO
:
1731 case BUILT_IN_REMQUOF
:
1732 case BUILT_IN_REMQUOL
:
1733 case BUILT_IN_SINCOS
:
1734 case BUILT_IN_SINCOSF
:
1735 case BUILT_IN_SINCOSL
:
1736 case BUILT_IN_ASSUME_ALIGNED
:
1737 case BUILT_IN_VA_END
:
1739 /* __sync_* builtins and some OpenMP builtins act as threading
1741 #undef DEF_SYNC_BUILTIN
1742 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) case ENUM:
1743 #include "sync-builtins.def"
1744 #undef DEF_SYNC_BUILTIN
1745 case BUILT_IN_GOMP_ATOMIC_START
:
1746 case BUILT_IN_GOMP_ATOMIC_END
:
1747 case BUILT_IN_GOMP_BARRIER
:
1748 case BUILT_IN_GOMP_BARRIER_CANCEL
:
1749 case BUILT_IN_GOMP_TASKWAIT
:
1750 case BUILT_IN_GOMP_TASKGROUP_END
:
1751 case BUILT_IN_GOMP_CRITICAL_START
:
1752 case BUILT_IN_GOMP_CRITICAL_END
:
1753 case BUILT_IN_GOMP_CRITICAL_NAME_START
:
1754 case BUILT_IN_GOMP_CRITICAL_NAME_END
:
1755 case BUILT_IN_GOMP_LOOP_END
:
1756 case BUILT_IN_GOMP_LOOP_END_CANCEL
:
1757 case BUILT_IN_GOMP_ORDERED_START
:
1758 case BUILT_IN_GOMP_ORDERED_END
:
1759 case BUILT_IN_GOMP_SECTIONS_END
:
1760 case BUILT_IN_GOMP_SECTIONS_END_CANCEL
:
1761 case BUILT_IN_GOMP_SINGLE_COPY_START
:
1762 case BUILT_IN_GOMP_SINGLE_COPY_END
:
1766 /* Fallthru to general call handling. */;
1769 /* Check if base is a global static variable that is not read
1771 if (callee
!= NULL_TREE
1772 && TREE_CODE (base
) == VAR_DECL
1773 && TREE_STATIC (base
))
1775 struct cgraph_node
*node
= cgraph_node::get (callee
);
1778 /* FIXME: Callee can be an OMP builtin that does not have a call graph
1779 node yet. We should enforce that there are nodes for all decls in the
1780 IL and remove this check instead. */
1782 && (not_read
= ipa_reference_get_not_read_global (node
))
1783 && bitmap_bit_p (not_read
, DECL_UID (base
)))
1787 /* Check if the base variable is call-used. */
1790 if (pt_solution_includes (gimple_call_use_set (call
), base
))
1793 else if ((TREE_CODE (base
) == MEM_REF
1794 || TREE_CODE (base
) == TARGET_MEM_REF
)
1795 && TREE_CODE (TREE_OPERAND (base
, 0)) == SSA_NAME
)
1797 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (TREE_OPERAND (base
, 0));
1801 if (pt_solutions_intersect (gimple_call_use_set (call
), &pi
->pt
))
1807 /* Inspect call arguments for passed-by-value aliases. */
1809 for (i
= 0; i
< gimple_call_num_args (call
); ++i
)
1811 tree op
= gimple_call_arg (call
, i
);
1812 int flags
= gimple_call_arg_flags (call
, i
);
1814 if (flags
& EAF_UNUSED
)
1817 if (TREE_CODE (op
) == WITH_SIZE_EXPR
)
1818 op
= TREE_OPERAND (op
, 0);
1820 if (TREE_CODE (op
) != SSA_NAME
1821 && !is_gimple_min_invariant (op
))
1824 ao_ref_init (&r
, op
);
1825 if (refs_may_alias_p_1 (&r
, ref
, true))
1834 ref_maybe_used_by_call_p (gcall
*call
, ao_ref
*ref
)
1837 res
= ref_maybe_used_by_call_p_1 (call
, ref
);
1839 ++alias_stats
.ref_maybe_used_by_call_p_may_alias
;
1841 ++alias_stats
.ref_maybe_used_by_call_p_no_alias
;
1846 /* If the statement STMT may use the memory reference REF return
1847 true, otherwise return false. */
1850 ref_maybe_used_by_stmt_p (gimple stmt
, ao_ref
*ref
)
1852 if (is_gimple_assign (stmt
))
1856 /* All memory assign statements are single. */
1857 if (!gimple_assign_single_p (stmt
))
1860 rhs
= gimple_assign_rhs1 (stmt
);
1861 if (is_gimple_reg (rhs
)
1862 || is_gimple_min_invariant (rhs
)
1863 || gimple_assign_rhs_code (stmt
) == CONSTRUCTOR
)
1866 return refs_may_alias_p (rhs
, ref
);
1868 else if (is_gimple_call (stmt
))
1869 return ref_maybe_used_by_call_p (as_a
<gcall
*> (stmt
), ref
);
1870 else if (greturn
*return_stmt
= dyn_cast
<greturn
*> (stmt
))
1872 tree retval
= gimple_return_retval (return_stmt
);
1874 && TREE_CODE (retval
) != SSA_NAME
1875 && !is_gimple_min_invariant (retval
)
1876 && refs_may_alias_p (retval
, ref
))
1878 /* If ref escapes the function then the return acts as a use. */
1879 tree base
= ao_ref_base (ref
);
1882 else if (DECL_P (base
))
1883 return is_global_var (base
);
1884 else if (TREE_CODE (base
) == MEM_REF
1885 || TREE_CODE (base
) == TARGET_MEM_REF
)
1886 return ptr_deref_may_alias_global_p (TREE_OPERAND (base
, 0));
1894 ref_maybe_used_by_stmt_p (gimple stmt
, tree ref
)
1897 ao_ref_init (&r
, ref
);
1898 return ref_maybe_used_by_stmt_p (stmt
, &r
);
1901 /* If the call in statement CALL may clobber the memory reference REF
1902 return true, otherwise return false. */
1905 call_may_clobber_ref_p_1 (gcall
*call
, ao_ref
*ref
)
1910 /* If the call is pure or const it cannot clobber anything. */
1911 if (gimple_call_flags (call
)
1912 & (ECF_PURE
|ECF_CONST
|ECF_LOOPING_CONST_OR_PURE
|ECF_NOVOPS
))
1915 base
= ao_ref_base (ref
);
1919 if (TREE_CODE (base
) == SSA_NAME
1920 || CONSTANT_CLASS_P (base
))
1923 /* A call that is not without side-effects might involve volatile
1924 accesses and thus conflicts with all other volatile accesses. */
1925 if (ref
->volatile_p
)
1928 /* If the reference is based on a decl that is not aliased the call
1929 cannot possibly clobber it. */
1931 && !may_be_aliased (base
)
1932 /* But local non-readonly statics can be modified through recursion
1933 or the call may implement a threading barrier which we must
1934 treat as may-def. */
1935 && (TREE_READONLY (base
)
1936 || !is_global_var (base
)))
1939 callee
= gimple_call_fndecl (call
);
1941 /* Handle those builtin functions explicitly that do not act as
1942 escape points. See tree-ssa-structalias.c:find_func_aliases
1943 for the list of builtins we might need to handle here. */
1944 if (callee
!= NULL_TREE
1945 && DECL_BUILT_IN_CLASS (callee
) == BUILT_IN_NORMAL
)
1946 switch (DECL_FUNCTION_CODE (callee
))
1948 /* All the following functions clobber memory pointed to by
1949 their first argument. */
1950 case BUILT_IN_STRCPY
:
1951 case BUILT_IN_STRNCPY
:
1952 case BUILT_IN_MEMCPY
:
1953 case BUILT_IN_MEMMOVE
:
1954 case BUILT_IN_MEMPCPY
:
1955 case BUILT_IN_STPCPY
:
1956 case BUILT_IN_STPNCPY
:
1957 case BUILT_IN_STRCAT
:
1958 case BUILT_IN_STRNCAT
:
1959 case BUILT_IN_MEMSET
:
1960 case BUILT_IN_TM_MEMSET
:
1961 CASE_BUILT_IN_TM_STORE (1):
1962 CASE_BUILT_IN_TM_STORE (2):
1963 CASE_BUILT_IN_TM_STORE (4):
1964 CASE_BUILT_IN_TM_STORE (8):
1965 CASE_BUILT_IN_TM_STORE (FLOAT
):
1966 CASE_BUILT_IN_TM_STORE (DOUBLE
):
1967 CASE_BUILT_IN_TM_STORE (LDOUBLE
):
1968 CASE_BUILT_IN_TM_STORE (M64
):
1969 CASE_BUILT_IN_TM_STORE (M128
):
1970 CASE_BUILT_IN_TM_STORE (M256
):
1971 case BUILT_IN_TM_MEMCPY
:
1972 case BUILT_IN_TM_MEMMOVE
:
1975 tree size
= NULL_TREE
;
1976 /* Don't pass in size for strncat, as the maximum size
1977 is strlen (dest) + n + 1 instead of n, resp.
1978 n + 1 at dest + strlen (dest), but strlen (dest) isn't
1980 if (gimple_call_num_args (call
) == 3
1981 && DECL_FUNCTION_CODE (callee
) != BUILT_IN_STRNCAT
)
1982 size
= gimple_call_arg (call
, 2);
1983 ao_ref_init_from_ptr_and_size (&dref
,
1984 gimple_call_arg (call
, 0),
1986 return refs_may_alias_p_1 (&dref
, ref
, false);
1988 case BUILT_IN_STRCPY_CHK
:
1989 case BUILT_IN_STRNCPY_CHK
:
1990 case BUILT_IN_MEMCPY_CHK
:
1991 case BUILT_IN_MEMMOVE_CHK
:
1992 case BUILT_IN_MEMPCPY_CHK
:
1993 case BUILT_IN_STPCPY_CHK
:
1994 case BUILT_IN_STPNCPY_CHK
:
1995 case BUILT_IN_STRCAT_CHK
:
1996 case BUILT_IN_STRNCAT_CHK
:
1997 case BUILT_IN_MEMSET_CHK
:
2000 tree size
= NULL_TREE
;
2001 /* Don't pass in size for __strncat_chk, as the maximum size
2002 is strlen (dest) + n + 1 instead of n, resp.
2003 n + 1 at dest + strlen (dest), but strlen (dest) isn't
2005 if (gimple_call_num_args (call
) == 4
2006 && DECL_FUNCTION_CODE (callee
) != BUILT_IN_STRNCAT_CHK
)
2007 size
= gimple_call_arg (call
, 2);
2008 ao_ref_init_from_ptr_and_size (&dref
,
2009 gimple_call_arg (call
, 0),
2011 return refs_may_alias_p_1 (&dref
, ref
, false);
2013 case BUILT_IN_BCOPY
:
2016 tree size
= gimple_call_arg (call
, 2);
2017 ao_ref_init_from_ptr_and_size (&dref
,
2018 gimple_call_arg (call
, 1),
2020 return refs_may_alias_p_1 (&dref
, ref
, false);
2022 /* Allocating memory does not have any side-effects apart from
2023 being the definition point for the pointer. */
2024 case BUILT_IN_MALLOC
:
2025 case BUILT_IN_ALIGNED_ALLOC
:
2026 case BUILT_IN_CALLOC
:
2027 case BUILT_IN_STRDUP
:
2028 case BUILT_IN_STRNDUP
:
2029 /* Unix98 specifies that errno is set on allocation failure. */
2031 && targetm
.ref_may_alias_errno (ref
))
2034 case BUILT_IN_STACK_SAVE
:
2035 case BUILT_IN_ALLOCA
:
2036 case BUILT_IN_ALLOCA_WITH_ALIGN
:
2037 case BUILT_IN_ASSUME_ALIGNED
:
2039 /* But posix_memalign stores a pointer into the memory pointed to
2040 by its first argument. */
2041 case BUILT_IN_POSIX_MEMALIGN
:
2043 tree ptrptr
= gimple_call_arg (call
, 0);
2045 ao_ref_init_from_ptr_and_size (&dref
, ptrptr
,
2046 TYPE_SIZE_UNIT (ptr_type_node
));
2047 return (refs_may_alias_p_1 (&dref
, ref
, false)
2049 && targetm
.ref_may_alias_errno (ref
)));
2051 /* Freeing memory kills the pointed-to memory. More importantly
2052 the call has to serve as a barrier for moving loads and stores
2055 case BUILT_IN_VA_END
:
2057 tree ptr
= gimple_call_arg (call
, 0);
2058 return ptr_deref_may_alias_ref_p_1 (ptr
, ref
);
2060 /* Realloc serves both as allocation point and deallocation point. */
2061 case BUILT_IN_REALLOC
:
2063 tree ptr
= gimple_call_arg (call
, 0);
2064 /* Unix98 specifies that errno is set on allocation failure. */
2065 return ((flag_errno_math
2066 && targetm
.ref_may_alias_errno (ref
))
2067 || ptr_deref_may_alias_ref_p_1 (ptr
, ref
));
2069 case BUILT_IN_GAMMA_R
:
2070 case BUILT_IN_GAMMAF_R
:
2071 case BUILT_IN_GAMMAL_R
:
2072 case BUILT_IN_LGAMMA_R
:
2073 case BUILT_IN_LGAMMAF_R
:
2074 case BUILT_IN_LGAMMAL_R
:
2076 tree out
= gimple_call_arg (call
, 1);
2077 if (ptr_deref_may_alias_ref_p_1 (out
, ref
))
2079 if (flag_errno_math
)
2083 case BUILT_IN_FREXP
:
2084 case BUILT_IN_FREXPF
:
2085 case BUILT_IN_FREXPL
:
2087 case BUILT_IN_MODFF
:
2088 case BUILT_IN_MODFL
:
2090 tree out
= gimple_call_arg (call
, 1);
2091 return ptr_deref_may_alias_ref_p_1 (out
, ref
);
2093 case BUILT_IN_REMQUO
:
2094 case BUILT_IN_REMQUOF
:
2095 case BUILT_IN_REMQUOL
:
2097 tree out
= gimple_call_arg (call
, 2);
2098 if (ptr_deref_may_alias_ref_p_1 (out
, ref
))
2100 if (flag_errno_math
)
2104 case BUILT_IN_SINCOS
:
2105 case BUILT_IN_SINCOSF
:
2106 case BUILT_IN_SINCOSL
:
2108 tree sin
= gimple_call_arg (call
, 1);
2109 tree cos
= gimple_call_arg (call
, 2);
2110 return (ptr_deref_may_alias_ref_p_1 (sin
, ref
)
2111 || ptr_deref_may_alias_ref_p_1 (cos
, ref
));
2113 /* __sync_* builtins and some OpenMP builtins act as threading
2115 #undef DEF_SYNC_BUILTIN
2116 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) case ENUM:
2117 #include "sync-builtins.def"
2118 #undef DEF_SYNC_BUILTIN
2119 case BUILT_IN_GOMP_ATOMIC_START
:
2120 case BUILT_IN_GOMP_ATOMIC_END
:
2121 case BUILT_IN_GOMP_BARRIER
:
2122 case BUILT_IN_GOMP_BARRIER_CANCEL
:
2123 case BUILT_IN_GOMP_TASKWAIT
:
2124 case BUILT_IN_GOMP_TASKGROUP_END
:
2125 case BUILT_IN_GOMP_CRITICAL_START
:
2126 case BUILT_IN_GOMP_CRITICAL_END
:
2127 case BUILT_IN_GOMP_CRITICAL_NAME_START
:
2128 case BUILT_IN_GOMP_CRITICAL_NAME_END
:
2129 case BUILT_IN_GOMP_LOOP_END
:
2130 case BUILT_IN_GOMP_LOOP_END_CANCEL
:
2131 case BUILT_IN_GOMP_ORDERED_START
:
2132 case BUILT_IN_GOMP_ORDERED_END
:
2133 case BUILT_IN_GOMP_SECTIONS_END
:
2134 case BUILT_IN_GOMP_SECTIONS_END_CANCEL
:
2135 case BUILT_IN_GOMP_SINGLE_COPY_START
:
2136 case BUILT_IN_GOMP_SINGLE_COPY_END
:
2139 /* Fallthru to general call handling. */;
2142 /* Check if base is a global static variable that is not written
2144 if (callee
!= NULL_TREE
2145 && TREE_CODE (base
) == VAR_DECL
2146 && TREE_STATIC (base
))
2148 struct cgraph_node
*node
= cgraph_node::get (callee
);
2152 && (not_written
= ipa_reference_get_not_written_global (node
))
2153 && bitmap_bit_p (not_written
, DECL_UID (base
)))
2157 /* Check if the base variable is call-clobbered. */
2159 return pt_solution_includes (gimple_call_clobber_set (call
), base
);
2160 else if ((TREE_CODE (base
) == MEM_REF
2161 || TREE_CODE (base
) == TARGET_MEM_REF
)
2162 && TREE_CODE (TREE_OPERAND (base
, 0)) == SSA_NAME
)
2164 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (TREE_OPERAND (base
, 0));
2168 return pt_solutions_intersect (gimple_call_clobber_set (call
), &pi
->pt
);
2174 /* If the call in statement CALL may clobber the memory reference REF
2175 return true, otherwise return false. */
2178 call_may_clobber_ref_p (gcall
*call
, tree ref
)
2182 ao_ref_init (&r
, ref
);
2183 res
= call_may_clobber_ref_p_1 (call
, &r
);
2185 ++alias_stats
.call_may_clobber_ref_p_may_alias
;
2187 ++alias_stats
.call_may_clobber_ref_p_no_alias
;
2192 /* If the statement STMT may clobber the memory reference REF return true,
2193 otherwise return false. */
2196 stmt_may_clobber_ref_p_1 (gimple stmt
, ao_ref
*ref
)
2198 if (is_gimple_call (stmt
))
2200 tree lhs
= gimple_call_lhs (stmt
);
2202 && TREE_CODE (lhs
) != SSA_NAME
)
2205 ao_ref_init (&r
, lhs
);
2206 if (refs_may_alias_p_1 (ref
, &r
, true))
2210 return call_may_clobber_ref_p_1 (as_a
<gcall
*> (stmt
), ref
);
2212 else if (gimple_assign_single_p (stmt
))
2214 tree lhs
= gimple_assign_lhs (stmt
);
2215 if (TREE_CODE (lhs
) != SSA_NAME
)
2218 ao_ref_init (&r
, lhs
);
2219 return refs_may_alias_p_1 (ref
, &r
, true);
2222 else if (gimple_code (stmt
) == GIMPLE_ASM
)
2229 stmt_may_clobber_ref_p (gimple stmt
, tree ref
)
2232 ao_ref_init (&r
, ref
);
2233 return stmt_may_clobber_ref_p_1 (stmt
, &r
);
2236 /* If STMT kills the memory reference REF return true, otherwise
2240 stmt_kills_ref_p (gimple stmt
, ao_ref
*ref
)
2242 if (!ao_ref_base (ref
))
2245 if (gimple_has_lhs (stmt
)
2246 && TREE_CODE (gimple_get_lhs (stmt
)) != SSA_NAME
2247 /* The assignment is not necessarily carried out if it can throw
2248 and we can catch it in the current function where we could inspect
2250 ??? We only need to care about the RHS throwing. For aggregate
2251 assignments or similar calls and non-call exceptions the LHS
2252 might throw as well. */
2253 && !stmt_can_throw_internal (stmt
))
2255 tree lhs
= gimple_get_lhs (stmt
);
2256 /* If LHS is literally a base of the access we are done. */
2259 tree base
= ref
->ref
;
2260 if (handled_component_p (base
))
2262 tree saved_lhs0
= NULL_TREE
;
2263 if (handled_component_p (lhs
))
2265 saved_lhs0
= TREE_OPERAND (lhs
, 0);
2266 TREE_OPERAND (lhs
, 0) = integer_zero_node
;
2270 /* Just compare the outermost handled component, if
2271 they are equal we have found a possible common
2273 tree saved_base0
= TREE_OPERAND (base
, 0);
2274 TREE_OPERAND (base
, 0) = integer_zero_node
;
2275 bool res
= operand_equal_p (lhs
, base
, 0);
2276 TREE_OPERAND (base
, 0) = saved_base0
;
2279 /* Otherwise drop handled components of the access. */
2282 while (handled_component_p (base
));
2284 TREE_OPERAND (lhs
, 0) = saved_lhs0
;
2286 /* Finally check if lhs is equal or equal to the base candidate
2288 if (operand_equal_p (lhs
, base
, 0))
2292 /* Now look for non-literal equal bases with the restriction of
2293 handling constant offset and size. */
2294 /* For a must-alias check we need to be able to constrain
2295 the access properly. */
2296 if (ref
->max_size
== -1)
2298 HOST_WIDE_INT size
, offset
, max_size
, ref_offset
= ref
->offset
;
2299 tree base
= get_ref_base_and_extent (lhs
, &offset
, &size
, &max_size
);
2300 /* We can get MEM[symbol: sZ, index: D.8862_1] here,
2301 so base == ref->base does not always hold. */
2302 if (base
!= ref
->base
)
2304 /* If both base and ref->base are MEM_REFs, only compare the
2305 first operand, and if the second operand isn't equal constant,
2306 try to add the offsets into offset and ref_offset. */
2307 if (TREE_CODE (base
) == MEM_REF
&& TREE_CODE (ref
->base
) == MEM_REF
2308 && TREE_OPERAND (base
, 0) == TREE_OPERAND (ref
->base
, 0))
2310 if (!tree_int_cst_equal (TREE_OPERAND (base
, 1),
2311 TREE_OPERAND (ref
->base
, 1)))
2313 offset_int off1
= mem_ref_offset (base
);
2314 off1
= wi::lshift (off1
, LOG2_BITS_PER_UNIT
);
2316 offset_int off2
= mem_ref_offset (ref
->base
);
2317 off2
= wi::lshift (off2
, LOG2_BITS_PER_UNIT
);
2319 if (wi::fits_shwi_p (off1
) && wi::fits_shwi_p (off2
))
2321 offset
= off1
.to_shwi ();
2322 ref_offset
= off2
.to_shwi ();
2331 /* For a must-alias check we need to be able to constrain
2332 the access properly. */
2333 if (size
!= -1 && size
== max_size
)
2335 if (offset
<= ref_offset
2336 && offset
+ size
>= ref_offset
+ ref
->max_size
)
2341 if (is_gimple_call (stmt
))
2343 tree callee
= gimple_call_fndecl (stmt
);
2344 if (callee
!= NULL_TREE
2345 && DECL_BUILT_IN_CLASS (callee
) == BUILT_IN_NORMAL
)
2346 switch (DECL_FUNCTION_CODE (callee
))
2350 tree ptr
= gimple_call_arg (stmt
, 0);
2351 tree base
= ao_ref_base (ref
);
2352 if (base
&& TREE_CODE (base
) == MEM_REF
2353 && TREE_OPERAND (base
, 0) == ptr
)
2358 case BUILT_IN_MEMCPY
:
2359 case BUILT_IN_MEMPCPY
:
2360 case BUILT_IN_MEMMOVE
:
2361 case BUILT_IN_MEMSET
:
2362 case BUILT_IN_MEMCPY_CHK
:
2363 case BUILT_IN_MEMPCPY_CHK
:
2364 case BUILT_IN_MEMMOVE_CHK
:
2365 case BUILT_IN_MEMSET_CHK
:
2367 /* For a must-alias check we need to be able to constrain
2368 the access properly. */
2369 if (ref
->max_size
== -1)
2371 tree dest
= gimple_call_arg (stmt
, 0);
2372 tree len
= gimple_call_arg (stmt
, 2);
2373 if (!tree_fits_shwi_p (len
))
2375 tree rbase
= ref
->base
;
2376 offset_int roffset
= ref
->offset
;
2378 ao_ref_init_from_ptr_and_size (&dref
, dest
, len
);
2379 tree base
= ao_ref_base (&dref
);
2380 offset_int offset
= dref
.offset
;
2381 if (!base
|| dref
.size
== -1)
2383 if (TREE_CODE (base
) == MEM_REF
)
2385 if (TREE_CODE (rbase
) != MEM_REF
)
2387 // Compare pointers.
2388 offset
+= wi::lshift (mem_ref_offset (base
),
2389 LOG2_BITS_PER_UNIT
);
2390 roffset
+= wi::lshift (mem_ref_offset (rbase
),
2391 LOG2_BITS_PER_UNIT
);
2392 base
= TREE_OPERAND (base
, 0);
2393 rbase
= TREE_OPERAND (rbase
, 0);
2396 && wi::les_p (offset
, roffset
)
2397 && wi::les_p (roffset
+ ref
->max_size
,
2398 offset
+ wi::lshift (wi::to_offset (len
),
2399 LOG2_BITS_PER_UNIT
)))
2404 case BUILT_IN_VA_END
:
2406 tree ptr
= gimple_call_arg (stmt
, 0);
2407 if (TREE_CODE (ptr
) == ADDR_EXPR
)
2409 tree base
= ao_ref_base (ref
);
2410 if (TREE_OPERAND (ptr
, 0) == base
)
2423 stmt_kills_ref_p (gimple stmt
, tree ref
)
2426 ao_ref_init (&r
, ref
);
2427 return stmt_kills_ref_p (stmt
, &r
);
2431 /* Walk the virtual use-def chain of VUSE until hitting the virtual operand
2432 TARGET or a statement clobbering the memory reference REF in which
2433 case false is returned. The walk starts with VUSE, one argument of PHI. */
2436 maybe_skip_until (gimple phi
, tree target
, ao_ref
*ref
,
2437 tree vuse
, unsigned int *cnt
, bitmap
*visited
,
2438 bool abort_on_visited
,
2439 void *(*translate
)(ao_ref
*, tree
, void *, bool),
2442 basic_block bb
= gimple_bb (phi
);
2445 *visited
= BITMAP_ALLOC (NULL
);
2447 bitmap_set_bit (*visited
, SSA_NAME_VERSION (PHI_RESULT (phi
)));
2449 /* Walk until we hit the target. */
2450 while (vuse
!= target
)
2452 gimple def_stmt
= SSA_NAME_DEF_STMT (vuse
);
2453 /* Recurse for PHI nodes. */
2454 if (gimple_code (def_stmt
) == GIMPLE_PHI
)
2456 /* An already visited PHI node ends the walk successfully. */
2457 if (bitmap_bit_p (*visited
, SSA_NAME_VERSION (PHI_RESULT (def_stmt
))))
2458 return !abort_on_visited
;
2459 vuse
= get_continuation_for_phi (def_stmt
, ref
, cnt
,
2460 visited
, abort_on_visited
,
2466 else if (gimple_nop_p (def_stmt
))
2470 /* A clobbering statement or the end of the IL ends it failing. */
2472 if (stmt_may_clobber_ref_p_1 (def_stmt
, ref
))
2475 && (*translate
) (ref
, vuse
, data
, true) == NULL
)
2481 /* If we reach a new basic-block see if we already skipped it
2482 in a previous walk that ended successfully. */
2483 if (gimple_bb (def_stmt
) != bb
)
2485 if (!bitmap_set_bit (*visited
, SSA_NAME_VERSION (vuse
)))
2486 return !abort_on_visited
;
2487 bb
= gimple_bb (def_stmt
);
2489 vuse
= gimple_vuse (def_stmt
);
2494 /* For two PHI arguments ARG0 and ARG1 try to skip non-aliasing code
2495 until we hit the phi argument definition that dominates the other one.
2496 Return that, or NULL_TREE if there is no such definition. */
2499 get_continuation_for_phi_1 (gimple phi
, tree arg0
, tree arg1
,
2500 ao_ref
*ref
, unsigned int *cnt
,
2501 bitmap
*visited
, bool abort_on_visited
,
2502 void *(*translate
)(ao_ref
*, tree
, void *, bool),
2505 gimple def0
= SSA_NAME_DEF_STMT (arg0
);
2506 gimple def1
= SSA_NAME_DEF_STMT (arg1
);
2511 else if (gimple_nop_p (def0
)
2512 || (!gimple_nop_p (def1
)
2513 && dominated_by_p (CDI_DOMINATORS
,
2514 gimple_bb (def1
), gimple_bb (def0
))))
2516 if (maybe_skip_until (phi
, arg0
, ref
, arg1
, cnt
,
2517 visited
, abort_on_visited
, translate
, data
))
2520 else if (gimple_nop_p (def1
)
2521 || dominated_by_p (CDI_DOMINATORS
,
2522 gimple_bb (def0
), gimple_bb (def1
)))
2524 if (maybe_skip_until (phi
, arg1
, ref
, arg0
, cnt
,
2525 visited
, abort_on_visited
, translate
, data
))
2528 /* Special case of a diamond:
2530 goto (cond) ? L1 : L2
2531 L1: store1 = ... #MEM_2 = vuse(MEM_1)
2533 L2: store2 = ... #MEM_3 = vuse(MEM_1)
2534 L3: MEM_4 = PHI<MEM_2, MEM_3>
2535 We were called with the PHI at L3, MEM_2 and MEM_3 don't
2536 dominate each other, but still we can easily skip this PHI node
2537 if we recognize that the vuse MEM operand is the same for both,
2538 and that we can skip both statements (they don't clobber us).
2539 This is still linear. Don't use maybe_skip_until, that might
2540 potentially be slow. */
2541 else if ((common_vuse
= gimple_vuse (def0
))
2542 && common_vuse
== gimple_vuse (def1
))
2545 if ((!stmt_may_clobber_ref_p_1 (def0
, ref
)
2547 && (*translate
) (ref
, arg0
, data
, true) == NULL
))
2548 && (!stmt_may_clobber_ref_p_1 (def1
, ref
)
2550 && (*translate
) (ref
, arg1
, data
, true) == NULL
)))
2558 /* Starting from a PHI node for the virtual operand of the memory reference
2559 REF find a continuation virtual operand that allows to continue walking
2560 statements dominating PHI skipping only statements that cannot possibly
2561 clobber REF. Increments *CNT for each alias disambiguation done.
2562 Returns NULL_TREE if no suitable virtual operand can be found. */
2565 get_continuation_for_phi (gimple phi
, ao_ref
*ref
,
2566 unsigned int *cnt
, bitmap
*visited
,
2567 bool abort_on_visited
,
2568 void *(*translate
)(ao_ref
*, tree
, void *, bool),
2571 unsigned nargs
= gimple_phi_num_args (phi
);
2573 /* Through a single-argument PHI we can simply look through. */
2575 return PHI_ARG_DEF (phi
, 0);
2577 /* For two or more arguments try to pairwise skip non-aliasing code
2578 until we hit the phi argument definition that dominates the other one. */
2579 else if (nargs
>= 2)
2584 /* Find a candidate for the virtual operand which definition
2585 dominates those of all others. */
2586 arg0
= PHI_ARG_DEF (phi
, 0);
2587 if (!SSA_NAME_IS_DEFAULT_DEF (arg0
))
2588 for (i
= 1; i
< nargs
; ++i
)
2590 arg1
= PHI_ARG_DEF (phi
, i
);
2591 if (SSA_NAME_IS_DEFAULT_DEF (arg1
))
2596 if (dominated_by_p (CDI_DOMINATORS
,
2597 gimple_bb (SSA_NAME_DEF_STMT (arg0
)),
2598 gimple_bb (SSA_NAME_DEF_STMT (arg1
))))
2602 /* Then pairwise reduce against the found candidate. */
2603 for (i
= 0; i
< nargs
; ++i
)
2605 arg1
= PHI_ARG_DEF (phi
, i
);
2606 arg0
= get_continuation_for_phi_1 (phi
, arg0
, arg1
, ref
,
2607 cnt
, visited
, abort_on_visited
,
2619 /* Based on the memory reference REF and its virtual use VUSE call
2620 WALKER for each virtual use that is equivalent to VUSE, including VUSE
2621 itself. That is, for each virtual use for which its defining statement
2622 does not clobber REF.
2624 WALKER is called with REF, the current virtual use and DATA. If
2625 WALKER returns non-NULL the walk stops and its result is returned.
2626 At the end of a non-successful walk NULL is returned.
2628 TRANSLATE if non-NULL is called with a pointer to REF, the virtual
2629 use which definition is a statement that may clobber REF and DATA.
2630 If TRANSLATE returns (void *)-1 the walk stops and NULL is returned.
2631 If TRANSLATE returns non-NULL the walk stops and its result is returned.
2632 If TRANSLATE returns NULL the walk continues and TRANSLATE is supposed
2633 to adjust REF and *DATA to make that valid.
2635 VALUEIZE if non-NULL is called with the next VUSE that is considered
2636 and return value is substituted for that. This can be used to
2637 implement optimistic value-numbering for example. Note that the
2638 VUSE argument is assumed to be valueized already.
2640 TODO: Cache the vector of equivalent vuses per ref, vuse pair. */
2643 walk_non_aliased_vuses (ao_ref
*ref
, tree vuse
,
2644 void *(*walker
)(ao_ref
*, tree
, unsigned int, void *),
2645 void *(*translate
)(ao_ref
*, tree
, void *, bool),
2646 tree (*valueize
)(tree
),
2649 bitmap visited
= NULL
;
2651 unsigned int cnt
= 0;
2652 bool translated
= false;
2654 timevar_push (TV_ALIAS_STMT_WALK
);
2660 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
2661 res
= (*walker
) (ref
, vuse
, cnt
, data
);
2663 if (res
== (void *)-1)
2668 /* Lookup succeeded. */
2669 else if (res
!= NULL
)
2673 vuse
= valueize (vuse
);
2674 def_stmt
= SSA_NAME_DEF_STMT (vuse
);
2675 if (gimple_nop_p (def_stmt
))
2677 else if (gimple_code (def_stmt
) == GIMPLE_PHI
)
2678 vuse
= get_continuation_for_phi (def_stmt
, ref
, &cnt
,
2679 &visited
, translated
, translate
, data
);
2683 if (stmt_may_clobber_ref_p_1 (def_stmt
, ref
))
2687 res
= (*translate
) (ref
, vuse
, data
, false);
2688 /* Failed lookup and translation. */
2689 if (res
== (void *)-1)
2694 /* Lookup succeeded. */
2695 else if (res
!= NULL
)
2697 /* Translation succeeded, continue walking. */
2700 vuse
= gimple_vuse (def_stmt
);
2706 BITMAP_FREE (visited
);
2708 timevar_pop (TV_ALIAS_STMT_WALK
);
2714 /* Based on the memory reference REF call WALKER for each vdef which
2715 defining statement may clobber REF, starting with VDEF. If REF
2716 is NULL_TREE, each defining statement is visited.
2718 WALKER is called with REF, the current vdef and DATA. If WALKER
2719 returns true the walk is stopped, otherwise it continues.
2721 If function entry is reached, FUNCTION_ENTRY_REACHED is set to true.
2722 The pointer may be NULL and then we do not track this information.
2724 At PHI nodes walk_aliased_vdefs forks into one walk for reach
2725 PHI argument (but only one walk continues on merge points), the
2726 return value is true if any of the walks was successful.
2728 The function returns the number of statements walked. */
2731 walk_aliased_vdefs_1 (ao_ref
*ref
, tree vdef
,
2732 bool (*walker
)(ao_ref
*, tree
, void *), void *data
,
2733 bitmap
*visited
, unsigned int cnt
,
2734 bool *function_entry_reached
)
2738 gimple def_stmt
= SSA_NAME_DEF_STMT (vdef
);
2741 && !bitmap_set_bit (*visited
, SSA_NAME_VERSION (vdef
)))
2744 if (gimple_nop_p (def_stmt
))
2746 if (function_entry_reached
)
2747 *function_entry_reached
= true;
2750 else if (gimple_code (def_stmt
) == GIMPLE_PHI
)
2754 *visited
= BITMAP_ALLOC (NULL
);
2755 for (i
= 0; i
< gimple_phi_num_args (def_stmt
); ++i
)
2756 cnt
+= walk_aliased_vdefs_1 (ref
, gimple_phi_arg_def (def_stmt
, i
),
2757 walker
, data
, visited
, 0,
2758 function_entry_reached
);
2762 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
2765 || stmt_may_clobber_ref_p_1 (def_stmt
, ref
))
2766 && (*walker
) (ref
, vdef
, data
))
2769 vdef
= gimple_vuse (def_stmt
);
2775 walk_aliased_vdefs (ao_ref
*ref
, tree vdef
,
2776 bool (*walker
)(ao_ref
*, tree
, void *), void *data
,
2778 bool *function_entry_reached
)
2780 bitmap local_visited
= NULL
;
2783 timevar_push (TV_ALIAS_STMT_WALK
);
2785 if (function_entry_reached
)
2786 *function_entry_reached
= false;
2788 ret
= walk_aliased_vdefs_1 (ref
, vdef
, walker
, data
,
2789 visited
? visited
: &local_visited
, 0,
2790 function_entry_reached
);
2792 BITMAP_FREE (local_visited
);
2794 timevar_pop (TV_ALIAS_STMT_WALK
);