1 /* Alias analysis for trees.
2 Copyright (C) 2004-2013 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"
28 #include "basic-block.h"
29 #include "timevar.h" /* for TV_ALIAS_STMT_WALK */
30 #include "langhooks.h"
33 #include "tree-pretty-print.h"
35 #include "tree-ssa-alias.h"
36 #include "internal-fn.h"
38 #include "gimple-expr.h"
41 #include "gimple-ssa.h"
42 #include "stringpool.h"
43 #include "tree-ssanames.h"
46 #include "tree-inline.h"
48 #include "alloc-pool.h"
49 #include "tree-ssa-alias.h"
50 #include "ipa-reference.h"
52 /* Broad overview of how alias analysis on gimple works:
54 Statements clobbering or using memory are linked through the
55 virtual operand factored use-def chain. The virtual operand
56 is unique per function, its symbol is accessible via gimple_vop (cfun).
57 Virtual operands are used for efficiently walking memory statements
58 in the gimple IL and are useful for things like value-numbering as
59 a generation count for memory references.
61 SSA_NAME pointers may have associated points-to information
62 accessible via the SSA_NAME_PTR_INFO macro. Flow-insensitive
63 points-to information is (re-)computed by the TODO_rebuild_alias
64 pass manager todo. Points-to information is also used for more
65 precise tracking of call-clobbered and call-used variables and
66 related disambiguations.
68 This file contains functions for disambiguating memory references,
69 the so called alias-oracle and tools for walking of the gimple IL.
71 The main alias-oracle entry-points are
73 bool stmt_may_clobber_ref_p (gimple, tree)
75 This function queries if a statement may invalidate (parts of)
76 the memory designated by the reference tree argument.
78 bool ref_maybe_used_by_stmt_p (gimple, tree)
80 This function queries if a statement may need (parts of) the
81 memory designated by the reference tree argument.
83 There are variants of these functions that only handle the call
84 part of a statement, call_may_clobber_ref_p and ref_maybe_used_by_call_p.
85 Note that these do not disambiguate against a possible call lhs.
87 bool refs_may_alias_p (tree, tree)
89 This function tries to disambiguate two reference trees.
91 bool ptr_deref_may_alias_global_p (tree)
93 This function queries if dereferencing a pointer variable may
96 More low-level disambiguators are available and documented in
97 this file. Low-level disambiguators dealing with points-to
98 information are in tree-ssa-structalias.c. */
101 /* Query statistics for the different low-level disambiguators.
102 A high-level query may trigger multiple of them. */
105 unsigned HOST_WIDE_INT refs_may_alias_p_may_alias
;
106 unsigned HOST_WIDE_INT refs_may_alias_p_no_alias
;
107 unsigned HOST_WIDE_INT ref_maybe_used_by_call_p_may_alias
;
108 unsigned HOST_WIDE_INT ref_maybe_used_by_call_p_no_alias
;
109 unsigned HOST_WIDE_INT call_may_clobber_ref_p_may_alias
;
110 unsigned HOST_WIDE_INT call_may_clobber_ref_p_no_alias
;
114 dump_alias_stats (FILE *s
)
116 fprintf (s
, "\nAlias oracle query stats:\n");
117 fprintf (s
, " refs_may_alias_p: "
118 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
119 HOST_WIDE_INT_PRINT_DEC
" queries\n",
120 alias_stats
.refs_may_alias_p_no_alias
,
121 alias_stats
.refs_may_alias_p_no_alias
122 + alias_stats
.refs_may_alias_p_may_alias
);
123 fprintf (s
, " ref_maybe_used_by_call_p: "
124 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
125 HOST_WIDE_INT_PRINT_DEC
" queries\n",
126 alias_stats
.ref_maybe_used_by_call_p_no_alias
,
127 alias_stats
.refs_may_alias_p_no_alias
128 + alias_stats
.ref_maybe_used_by_call_p_may_alias
);
129 fprintf (s
, " call_may_clobber_ref_p: "
130 HOST_WIDE_INT_PRINT_DEC
" disambiguations, "
131 HOST_WIDE_INT_PRINT_DEC
" queries\n",
132 alias_stats
.call_may_clobber_ref_p_no_alias
,
133 alias_stats
.call_may_clobber_ref_p_no_alias
134 + alias_stats
.call_may_clobber_ref_p_may_alias
);
138 /* Return true, if dereferencing PTR may alias with a global variable. */
141 ptr_deref_may_alias_global_p (tree ptr
)
143 struct ptr_info_def
*pi
;
145 /* If we end up with a pointer constant here that may point
147 if (TREE_CODE (ptr
) != SSA_NAME
)
150 pi
= SSA_NAME_PTR_INFO (ptr
);
152 /* If we do not have points-to information for this variable,
157 /* ??? This does not use TBAA to prune globals ptr may not access. */
158 return pt_solution_includes_global (&pi
->pt
);
161 /* Return true if dereferencing PTR may alias DECL.
162 The caller is responsible for applying TBAA to see if PTR
163 may access DECL at all. */
166 ptr_deref_may_alias_decl_p (tree ptr
, tree decl
)
168 struct ptr_info_def
*pi
;
170 /* Conversions are irrelevant for points-to information and
171 data-dependence analysis can feed us those. */
174 /* Anything we do not explicilty handle aliases. */
175 if ((TREE_CODE (ptr
) != SSA_NAME
176 && TREE_CODE (ptr
) != ADDR_EXPR
177 && TREE_CODE (ptr
) != POINTER_PLUS_EXPR
)
178 || !POINTER_TYPE_P (TREE_TYPE (ptr
))
179 || (TREE_CODE (decl
) != VAR_DECL
180 && TREE_CODE (decl
) != PARM_DECL
181 && TREE_CODE (decl
) != RESULT_DECL
))
184 /* Disregard pointer offsetting. */
185 if (TREE_CODE (ptr
) == POINTER_PLUS_EXPR
)
189 ptr
= TREE_OPERAND (ptr
, 0);
191 while (TREE_CODE (ptr
) == POINTER_PLUS_EXPR
);
192 return ptr_deref_may_alias_decl_p (ptr
, decl
);
195 /* ADDR_EXPR pointers either just offset another pointer or directly
196 specify the pointed-to set. */
197 if (TREE_CODE (ptr
) == ADDR_EXPR
)
199 tree base
= get_base_address (TREE_OPERAND (ptr
, 0));
201 && (TREE_CODE (base
) == MEM_REF
202 || TREE_CODE (base
) == TARGET_MEM_REF
))
203 ptr
= TREE_OPERAND (base
, 0);
208 && CONSTANT_CLASS_P (base
))
214 /* Non-aliased variables can not be pointed to. */
215 if (!may_be_aliased (decl
))
218 /* If we do not have useful points-to information for this pointer
219 we cannot disambiguate anything else. */
220 pi
= SSA_NAME_PTR_INFO (ptr
);
224 return pt_solution_includes (&pi
->pt
, decl
);
227 /* Return true if dereferenced PTR1 and PTR2 may alias.
228 The caller is responsible for applying TBAA to see if accesses
229 through PTR1 and PTR2 may conflict at all. */
232 ptr_derefs_may_alias_p (tree ptr1
, tree ptr2
)
234 struct ptr_info_def
*pi1
, *pi2
;
236 /* Conversions are irrelevant for points-to information and
237 data-dependence analysis can feed us those. */
241 /* Disregard pointer offsetting. */
242 if (TREE_CODE (ptr1
) == POINTER_PLUS_EXPR
)
246 ptr1
= TREE_OPERAND (ptr1
, 0);
248 while (TREE_CODE (ptr1
) == POINTER_PLUS_EXPR
);
249 return ptr_derefs_may_alias_p (ptr1
, ptr2
);
251 if (TREE_CODE (ptr2
) == POINTER_PLUS_EXPR
)
255 ptr2
= TREE_OPERAND (ptr2
, 0);
257 while (TREE_CODE (ptr2
) == POINTER_PLUS_EXPR
);
258 return ptr_derefs_may_alias_p (ptr1
, ptr2
);
261 /* ADDR_EXPR pointers either just offset another pointer or directly
262 specify the pointed-to set. */
263 if (TREE_CODE (ptr1
) == ADDR_EXPR
)
265 tree base
= get_base_address (TREE_OPERAND (ptr1
, 0));
267 && (TREE_CODE (base
) == MEM_REF
268 || TREE_CODE (base
) == TARGET_MEM_REF
))
269 return ptr_derefs_may_alias_p (TREE_OPERAND (base
, 0), ptr2
);
272 return ptr_deref_may_alias_decl_p (ptr2
, base
);
276 if (TREE_CODE (ptr2
) == ADDR_EXPR
)
278 tree base
= get_base_address (TREE_OPERAND (ptr2
, 0));
280 && (TREE_CODE (base
) == MEM_REF
281 || TREE_CODE (base
) == TARGET_MEM_REF
))
282 return ptr_derefs_may_alias_p (ptr1
, TREE_OPERAND (base
, 0));
285 return ptr_deref_may_alias_decl_p (ptr1
, base
);
290 /* From here we require SSA name pointers. Anything else aliases. */
291 if (TREE_CODE (ptr1
) != SSA_NAME
292 || TREE_CODE (ptr2
) != SSA_NAME
293 || !POINTER_TYPE_P (TREE_TYPE (ptr1
))
294 || !POINTER_TYPE_P (TREE_TYPE (ptr2
)))
297 /* We may end up with two empty points-to solutions for two same pointers.
298 In this case we still want to say both pointers alias, so shortcut
303 /* If we do not have useful points-to information for either pointer
304 we cannot disambiguate anything else. */
305 pi1
= SSA_NAME_PTR_INFO (ptr1
);
306 pi2
= SSA_NAME_PTR_INFO (ptr2
);
310 /* ??? This does not use TBAA to prune decls from the intersection
311 that not both pointers may access. */
312 return pt_solutions_intersect (&pi1
->pt
, &pi2
->pt
);
315 /* Return true if dereferencing PTR may alias *REF.
316 The caller is responsible for applying TBAA to see if PTR
317 may access *REF at all. */
320 ptr_deref_may_alias_ref_p_1 (tree ptr
, ao_ref
*ref
)
322 tree base
= ao_ref_base (ref
);
324 if (TREE_CODE (base
) == MEM_REF
325 || TREE_CODE (base
) == TARGET_MEM_REF
)
326 return ptr_derefs_may_alias_p (ptr
, TREE_OPERAND (base
, 0));
327 else if (DECL_P (base
))
328 return ptr_deref_may_alias_decl_p (ptr
, base
);
333 /* Return true whether REF may refer to global memory. */
336 ref_may_alias_global_p (tree ref
)
338 tree base
= get_base_address (ref
);
340 return is_global_var (base
);
341 else if (TREE_CODE (base
) == MEM_REF
342 || TREE_CODE (base
) == TARGET_MEM_REF
)
343 return ptr_deref_may_alias_global_p (TREE_OPERAND (base
, 0));
347 /* Return true whether STMT may clobber global memory. */
350 stmt_may_clobber_global_p (gimple stmt
)
354 if (!gimple_vdef (stmt
))
357 /* ??? We can ask the oracle whether an artificial pointer
358 dereference with a pointer with points-to information covering
359 all global memory (what about non-address taken memory?) maybe
360 clobbered by this call. As there is at the moment no convenient
361 way of doing that without generating garbage do some manual
363 ??? We could make a NULL ao_ref argument to the various
364 predicates special, meaning any global memory. */
366 switch (gimple_code (stmt
))
369 lhs
= gimple_assign_lhs (stmt
);
370 return (TREE_CODE (lhs
) != SSA_NAME
371 && ref_may_alias_global_p (lhs
));
380 /* Dump alias information on FILE. */
383 dump_alias_info (FILE *file
)
387 = lang_hooks
.decl_printable_name (current_function_decl
, 2);
390 fprintf (file
, "\n\nAlias information for %s\n\n", funcname
);
392 fprintf (file
, "Aliased symbols\n\n");
394 FOR_EACH_LOCAL_DECL (cfun
, i
, var
)
396 if (may_be_aliased (var
))
397 dump_variable (file
, var
);
400 fprintf (file
, "\nCall clobber information\n");
402 fprintf (file
, "\nESCAPED");
403 dump_points_to_solution (file
, &cfun
->gimple_df
->escaped
);
405 fprintf (file
, "\n\nFlow-insensitive points-to information\n\n");
407 for (i
= 1; i
< num_ssa_names
; i
++)
409 tree ptr
= ssa_name (i
);
410 struct ptr_info_def
*pi
;
413 || !POINTER_TYPE_P (TREE_TYPE (ptr
))
414 || SSA_NAME_IN_FREE_LIST (ptr
))
417 pi
= SSA_NAME_PTR_INFO (ptr
);
419 dump_points_to_info_for (file
, ptr
);
422 fprintf (file
, "\n");
426 /* Dump alias information on stderr. */
429 debug_alias_info (void)
431 dump_alias_info (stderr
);
435 /* Dump the points-to set *PT into FILE. */
438 dump_points_to_solution (FILE *file
, struct pt_solution
*pt
)
441 fprintf (file
, ", points-to anything");
444 fprintf (file
, ", points-to non-local");
447 fprintf (file
, ", points-to escaped");
450 fprintf (file
, ", points-to unit escaped");
453 fprintf (file
, ", points-to NULL");
457 fprintf (file
, ", points-to vars: ");
458 dump_decl_set (file
, pt
->vars
);
459 if (pt
->vars_contains_nonlocal
460 && pt
->vars_contains_escaped_heap
)
461 fprintf (file
, " (nonlocal, escaped heap)");
462 else if (pt
->vars_contains_nonlocal
463 && pt
->vars_contains_escaped
)
464 fprintf (file
, " (nonlocal, escaped)");
465 else if (pt
->vars_contains_nonlocal
)
466 fprintf (file
, " (nonlocal)");
467 else if (pt
->vars_contains_escaped_heap
)
468 fprintf (file
, " (escaped heap)");
469 else if (pt
->vars_contains_escaped
)
470 fprintf (file
, " (escaped)");
475 /* Unified dump function for pt_solution. */
478 debug (pt_solution
&ref
)
480 dump_points_to_solution (stderr
, &ref
);
484 debug (pt_solution
*ptr
)
489 fprintf (stderr
, "<nil>\n");
493 /* Dump points-to information for SSA_NAME PTR into FILE. */
496 dump_points_to_info_for (FILE *file
, tree ptr
)
498 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (ptr
);
500 print_generic_expr (file
, ptr
, dump_flags
);
503 dump_points_to_solution (file
, &pi
->pt
);
505 fprintf (file
, ", points-to anything");
507 fprintf (file
, "\n");
511 /* Dump points-to information for VAR into stderr. */
514 debug_points_to_info_for (tree var
)
516 dump_points_to_info_for (stderr
, var
);
520 /* Initializes the alias-oracle reference representation *R from REF. */
523 ao_ref_init (ao_ref
*r
, tree ref
)
530 r
->ref_alias_set
= -1;
531 r
->base_alias_set
= -1;
532 r
->volatile_p
= ref
? TREE_THIS_VOLATILE (ref
) : false;
535 /* Returns the base object of the memory reference *REF. */
538 ao_ref_base (ao_ref
*ref
)
542 ref
->base
= get_ref_base_and_extent (ref
->ref
, &ref
->offset
, &ref
->size
,
547 /* Returns the base object alias set of the memory reference *REF. */
549 static alias_set_type
550 ao_ref_base_alias_set (ao_ref
*ref
)
553 if (ref
->base_alias_set
!= -1)
554 return ref
->base_alias_set
;
558 while (handled_component_p (base_ref
))
559 base_ref
= TREE_OPERAND (base_ref
, 0);
560 ref
->base_alias_set
= get_alias_set (base_ref
);
561 return ref
->base_alias_set
;
564 /* Returns the reference alias set of the memory reference *REF. */
567 ao_ref_alias_set (ao_ref
*ref
)
569 if (ref
->ref_alias_set
!= -1)
570 return ref
->ref_alias_set
;
571 ref
->ref_alias_set
= get_alias_set (ref
->ref
);
572 return ref
->ref_alias_set
;
575 /* Init an alias-oracle reference representation from a gimple pointer
576 PTR and a gimple size SIZE in bytes. If SIZE is NULL_TREE then the
577 size is assumed to be unknown. The access is assumed to be only
578 to or after of the pointer target, not before it. */
581 ao_ref_init_from_ptr_and_size (ao_ref
*ref
, tree ptr
, tree size
)
583 HOST_WIDE_INT t
, size_hwi
, extra_offset
= 0;
584 ref
->ref
= NULL_TREE
;
585 if (TREE_CODE (ptr
) == SSA_NAME
)
587 gimple stmt
= SSA_NAME_DEF_STMT (ptr
);
588 if (gimple_assign_single_p (stmt
)
589 && gimple_assign_rhs_code (stmt
) == ADDR_EXPR
)
590 ptr
= gimple_assign_rhs1 (stmt
);
591 else if (is_gimple_assign (stmt
)
592 && gimple_assign_rhs_code (stmt
) == POINTER_PLUS_EXPR
593 && TREE_CODE (gimple_assign_rhs2 (stmt
)) == INTEGER_CST
)
595 ptr
= gimple_assign_rhs1 (stmt
);
596 extra_offset
= BITS_PER_UNIT
597 * int_cst_value (gimple_assign_rhs2 (stmt
));
601 if (TREE_CODE (ptr
) == ADDR_EXPR
)
603 ref
->base
= get_addr_base_and_unit_offset (TREE_OPERAND (ptr
, 0), &t
);
605 ref
->offset
= BITS_PER_UNIT
* t
;
610 ref
->base
= get_base_address (TREE_OPERAND (ptr
, 0));
615 ref
->base
= build2 (MEM_REF
, char_type_node
,
616 ptr
, null_pointer_node
);
619 ref
->offset
+= extra_offset
;
621 && tree_fits_shwi_p (size
)
622 && (size_hwi
= tree_to_shwi (size
)) <= HOST_WIDE_INT_MAX
/ BITS_PER_UNIT
)
623 ref
->max_size
= ref
->size
= size_hwi
* BITS_PER_UNIT
;
625 ref
->max_size
= ref
->size
= -1;
626 ref
->ref_alias_set
= 0;
627 ref
->base_alias_set
= 0;
628 ref
->volatile_p
= false;
631 /* Return 1 if TYPE1 and TYPE2 are to be considered equivalent for the
632 purpose of TBAA. Return 0 if they are distinct and -1 if we cannot
636 same_type_for_tbaa (tree type1
, tree type2
)
638 type1
= TYPE_MAIN_VARIANT (type1
);
639 type2
= TYPE_MAIN_VARIANT (type2
);
641 /* If we would have to do structural comparison bail out. */
642 if (TYPE_STRUCTURAL_EQUALITY_P (type1
)
643 || TYPE_STRUCTURAL_EQUALITY_P (type2
))
646 /* Compare the canonical types. */
647 if (TYPE_CANONICAL (type1
) == TYPE_CANONICAL (type2
))
650 /* ??? Array types are not properly unified in all cases as we have
651 spurious changes in the index types for example. Removing this
652 causes all sorts of problems with the Fortran frontend. */
653 if (TREE_CODE (type1
) == ARRAY_TYPE
654 && TREE_CODE (type2
) == ARRAY_TYPE
)
657 /* ??? In Ada, an lvalue of an unconstrained type can be used to access an
658 object of one of its constrained subtypes, e.g. when a function with an
659 unconstrained parameter passed by reference is called on an object and
660 inlined. But, even in the case of a fixed size, type and subtypes are
661 not equivalent enough as to share the same TYPE_CANONICAL, since this
662 would mean that conversions between them are useless, whereas they are
663 not (e.g. type and subtypes can have different modes). So, in the end,
664 they are only guaranteed to have the same alias set. */
665 if (get_alias_set (type1
) == get_alias_set (type2
))
668 /* The types are known to be not equal. */
672 /* Determine if the two component references REF1 and REF2 which are
673 based on access types TYPE1 and TYPE2 and of which at least one is based
674 on an indirect reference may alias. REF2 is the only one that can
675 be a decl in which case REF2_IS_DECL is true.
676 REF1_ALIAS_SET, BASE1_ALIAS_SET, REF2_ALIAS_SET and BASE2_ALIAS_SET
677 are the respective alias sets. */
680 aliasing_component_refs_p (tree ref1
,
681 alias_set_type ref1_alias_set
,
682 alias_set_type base1_alias_set
,
683 HOST_WIDE_INT offset1
, HOST_WIDE_INT max_size1
,
685 alias_set_type ref2_alias_set
,
686 alias_set_type base2_alias_set
,
687 HOST_WIDE_INT offset2
, HOST_WIDE_INT max_size2
,
690 /* If one reference is a component references through pointers try to find a
691 common base and apply offset based disambiguation. This handles
693 struct A { int i; int j; } *q;
694 struct B { struct A a; int k; } *p;
695 disambiguating q->i and p->a.j. */
701 /* Choose bases and base types to search for. */
703 while (handled_component_p (base1
))
704 base1
= TREE_OPERAND (base1
, 0);
705 type1
= TREE_TYPE (base1
);
707 while (handled_component_p (base2
))
708 base2
= TREE_OPERAND (base2
, 0);
709 type2
= TREE_TYPE (base2
);
711 /* Now search for the type1 in the access path of ref2. This
712 would be a common base for doing offset based disambiguation on. */
714 while (handled_component_p (*refp
)
715 && same_type_for_tbaa (TREE_TYPE (*refp
), type1
) == 0)
716 refp
= &TREE_OPERAND (*refp
, 0);
717 same_p
= same_type_for_tbaa (TREE_TYPE (*refp
), type1
);
718 /* If we couldn't compare types we have to bail out. */
721 else if (same_p
== 1)
723 HOST_WIDE_INT offadj
, sztmp
, msztmp
;
724 get_ref_base_and_extent (*refp
, &offadj
, &sztmp
, &msztmp
);
726 get_ref_base_and_extent (base1
, &offadj
, &sztmp
, &msztmp
);
728 return ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
);
730 /* If we didn't find a common base, try the other way around. */
732 while (handled_component_p (*refp
)
733 && same_type_for_tbaa (TREE_TYPE (*refp
), type2
) == 0)
734 refp
= &TREE_OPERAND (*refp
, 0);
735 same_p
= same_type_for_tbaa (TREE_TYPE (*refp
), type2
);
736 /* If we couldn't compare types we have to bail out. */
739 else if (same_p
== 1)
741 HOST_WIDE_INT offadj
, sztmp
, msztmp
;
742 get_ref_base_and_extent (*refp
, &offadj
, &sztmp
, &msztmp
);
744 get_ref_base_and_extent (base2
, &offadj
, &sztmp
, &msztmp
);
746 return ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
);
749 /* If we have two type access paths B1.path1 and B2.path2 they may
750 only alias if either B1 is in B2.path2 or B2 is in B1.path1.
751 But we can still have a path that goes B1.path1...B2.path2 with
752 a part that we do not see. So we can only disambiguate now
753 if there is no B2 in the tail of path1 and no B1 on the
755 if (base1_alias_set
== ref2_alias_set
756 || alias_set_subset_of (base1_alias_set
, ref2_alias_set
))
758 /* If this is ptr vs. decl then we know there is no ptr ... decl path. */
760 return (base2_alias_set
== ref1_alias_set
761 || alias_set_subset_of (base2_alias_set
, ref1_alias_set
));
765 /* Return true if we can determine that component references REF1 and REF2,
766 that are within a common DECL, cannot overlap. */
769 nonoverlapping_component_refs_of_decl_p (tree ref1
, tree ref2
)
771 stack_vec
<tree
, 16> component_refs1
;
772 stack_vec
<tree
, 16> component_refs2
;
774 /* Create the stack of handled components for REF1. */
775 while (handled_component_p (ref1
))
777 component_refs1
.safe_push (ref1
);
778 ref1
= TREE_OPERAND (ref1
, 0);
780 if (TREE_CODE (ref1
) == MEM_REF
)
782 if (!integer_zerop (TREE_OPERAND (ref1
, 1)))
784 ref1
= TREE_OPERAND (TREE_OPERAND (ref1
, 0), 0);
787 /* Create the stack of handled components for REF2. */
788 while (handled_component_p (ref2
))
790 component_refs2
.safe_push (ref2
);
791 ref2
= TREE_OPERAND (ref2
, 0);
793 if (TREE_CODE (ref2
) == MEM_REF
)
795 if (!integer_zerop (TREE_OPERAND (ref2
, 1)))
797 ref2
= TREE_OPERAND (TREE_OPERAND (ref2
, 0), 0);
800 /* We must have the same base DECL. */
801 gcc_assert (ref1
== ref2
);
803 /* Pop the stacks in parallel and examine the COMPONENT_REFs of the same
804 rank. This is sufficient because we start from the same DECL and you
805 cannot reference several fields at a time with COMPONENT_REFs (unlike
806 with ARRAY_RANGE_REFs for arrays) so you always need the same number
807 of them to access a sub-component, unless you're in a union, in which
808 case the return value will precisely be false. */
813 if (component_refs1
.is_empty ())
815 ref1
= component_refs1
.pop ();
817 while (!RECORD_OR_UNION_TYPE_P (TREE_TYPE (TREE_OPERAND (ref1
, 0))));
821 if (component_refs2
.is_empty ())
823 ref2
= component_refs2
.pop ();
825 while (!RECORD_OR_UNION_TYPE_P (TREE_TYPE (TREE_OPERAND (ref2
, 0))));
827 /* Beware of BIT_FIELD_REF. */
828 if (TREE_CODE (ref1
) != COMPONENT_REF
829 || TREE_CODE (ref2
) != COMPONENT_REF
)
832 tree field1
= TREE_OPERAND (ref1
, 1);
833 tree field2
= TREE_OPERAND (ref2
, 1);
835 /* ??? We cannot simply use the type of operand #0 of the refs here
836 as the Fortran compiler smuggles type punning into COMPONENT_REFs
837 for common blocks instead of using unions like everyone else. */
838 tree type1
= TYPE_MAIN_VARIANT (DECL_CONTEXT (field1
));
839 tree type2
= TYPE_MAIN_VARIANT (DECL_CONTEXT (field2
));
841 /* We cannot disambiguate fields in a union or qualified union. */
842 if (type1
!= type2
|| TREE_CODE (type1
) != RECORD_TYPE
)
845 /* Different fields of the same record type cannot overlap.
846 ??? Bitfields can overlap at RTL level so punt on them. */
847 if (field1
!= field2
)
849 component_refs1
.release ();
850 component_refs2
.release ();
851 return !(DECL_BIT_FIELD (field1
) && DECL_BIT_FIELD (field2
));
856 component_refs1
.release ();
857 component_refs2
.release ();
861 /* Return true if two memory references based on the variables BASE1
862 and BASE2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
863 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. REF1 and REF2
864 if non-NULL are the complete memory reference trees. */
867 decl_refs_may_alias_p (tree ref1
, tree base1
,
868 HOST_WIDE_INT offset1
, HOST_WIDE_INT max_size1
,
869 tree ref2
, tree base2
,
870 HOST_WIDE_INT offset2
, HOST_WIDE_INT max_size2
)
872 gcc_checking_assert (DECL_P (base1
) && DECL_P (base2
));
874 /* If both references are based on different variables, they cannot alias. */
878 /* If both references are based on the same variable, they cannot alias if
879 the accesses do not overlap. */
880 if (!ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
))
883 /* For components with variable position, the above test isn't sufficient,
884 so we disambiguate component references manually. */
886 && handled_component_p (ref1
) && handled_component_p (ref2
)
887 && nonoverlapping_component_refs_of_decl_p (ref1
, ref2
))
893 /* Return true if an indirect reference based on *PTR1 constrained
894 to [OFFSET1, OFFSET1 + MAX_SIZE1) may alias a variable based on BASE2
895 constrained to [OFFSET2, OFFSET2 + MAX_SIZE2). *PTR1 and BASE2 have
896 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
897 in which case they are computed on-demand. REF1 and REF2
898 if non-NULL are the complete memory reference trees. */
901 indirect_ref_may_alias_decl_p (tree ref1 ATTRIBUTE_UNUSED
, tree base1
,
902 HOST_WIDE_INT offset1
,
903 HOST_WIDE_INT max_size1 ATTRIBUTE_UNUSED
,
904 alias_set_type ref1_alias_set
,
905 alias_set_type base1_alias_set
,
906 tree ref2 ATTRIBUTE_UNUSED
, tree base2
,
907 HOST_WIDE_INT offset2
, HOST_WIDE_INT max_size2
,
908 alias_set_type ref2_alias_set
,
909 alias_set_type base2_alias_set
, bool tbaa_p
)
912 tree ptrtype1
, dbase2
;
913 HOST_WIDE_INT offset1p
= offset1
, offset2p
= offset2
;
914 HOST_WIDE_INT doffset1
, doffset2
;
917 gcc_checking_assert ((TREE_CODE (base1
) == MEM_REF
918 || TREE_CODE (base1
) == TARGET_MEM_REF
)
921 ptr1
= TREE_OPERAND (base1
, 0);
923 /* The offset embedded in MEM_REFs can be negative. Bias them
924 so that the resulting offset adjustment is positive. */
925 moff
= mem_ref_offset (base1
);
926 moff
= moff
.lshift (BITS_PER_UNIT
== 8 ? 3 : exact_log2 (BITS_PER_UNIT
));
927 if (moff
.is_negative ())
928 offset2p
+= (-moff
).low
;
930 offset1p
+= moff
.low
;
932 /* If only one reference is based on a variable, they cannot alias if
933 the pointer access is beyond the extent of the variable access.
934 (the pointer base cannot validly point to an offset less than zero
936 ??? IVOPTs creates bases that do not honor this restriction,
937 so do not apply this optimization for TARGET_MEM_REFs. */
938 if (TREE_CODE (base1
) != TARGET_MEM_REF
939 && !ranges_overlap_p (MAX (0, offset1p
), -1, offset2p
, max_size2
))
941 /* They also cannot alias if the pointer may not point to the decl. */
942 if (!ptr_deref_may_alias_decl_p (ptr1
, base2
))
945 /* Disambiguations that rely on strict aliasing rules follow. */
946 if (!flag_strict_aliasing
|| !tbaa_p
)
949 ptrtype1
= TREE_TYPE (TREE_OPERAND (base1
, 1));
951 /* If the alias set for a pointer access is zero all bets are off. */
952 if (base1_alias_set
== -1)
953 base1_alias_set
= get_deref_alias_set (ptrtype1
);
954 if (base1_alias_set
== 0)
956 if (base2_alias_set
== -1)
957 base2_alias_set
= get_alias_set (base2
);
959 /* When we are trying to disambiguate an access with a pointer dereference
960 as base versus one with a decl as base we can use both the size
961 of the decl and its dynamic type for extra disambiguation.
962 ??? We do not know anything about the dynamic type of the decl
963 other than that its alias-set contains base2_alias_set as a subset
964 which does not help us here. */
965 /* As we know nothing useful about the dynamic type of the decl just
966 use the usual conflict check rather than a subset test.
967 ??? We could introduce -fvery-strict-aliasing when the language
968 does not allow decls to have a dynamic type that differs from their
969 static type. Then we can check
970 !alias_set_subset_of (base1_alias_set, base2_alias_set) instead. */
971 if (base1_alias_set
!= base2_alias_set
972 && !alias_sets_conflict_p (base1_alias_set
, base2_alias_set
))
974 /* If the size of the access relevant for TBAA through the pointer
975 is bigger than the size of the decl we can't possibly access the
976 decl via that pointer. */
977 if (DECL_SIZE (base2
) && COMPLETE_TYPE_P (TREE_TYPE (ptrtype1
))
978 && TREE_CODE (DECL_SIZE (base2
)) == INTEGER_CST
979 && TREE_CODE (TYPE_SIZE (TREE_TYPE (ptrtype1
))) == INTEGER_CST
980 /* ??? This in turn may run afoul when a decl of type T which is
981 a member of union type U is accessed through a pointer to
982 type U and sizeof T is smaller than sizeof U. */
983 && TREE_CODE (TREE_TYPE (ptrtype1
)) != UNION_TYPE
984 && TREE_CODE (TREE_TYPE (ptrtype1
)) != QUAL_UNION_TYPE
985 && tree_int_cst_lt (DECL_SIZE (base2
), TYPE_SIZE (TREE_TYPE (ptrtype1
))))
991 /* If the decl is accessed via a MEM_REF, reconstruct the base
992 we can use for TBAA and an appropriately adjusted offset. */
994 while (handled_component_p (dbase2
))
995 dbase2
= TREE_OPERAND (dbase2
, 0);
998 if (TREE_CODE (dbase2
) == MEM_REF
999 || TREE_CODE (dbase2
) == TARGET_MEM_REF
)
1001 double_int moff
= mem_ref_offset (dbase2
);
1002 moff
= moff
.lshift (BITS_PER_UNIT
== 8 ? 3 : exact_log2 (BITS_PER_UNIT
));
1003 if (moff
.is_negative ())
1004 doffset1
-= (-moff
).low
;
1006 doffset2
-= moff
.low
;
1009 /* If either reference is view-converted, give up now. */
1010 if (same_type_for_tbaa (TREE_TYPE (base1
), TREE_TYPE (ptrtype1
)) != 1
1011 || same_type_for_tbaa (TREE_TYPE (dbase2
), TREE_TYPE (base2
)) != 1)
1014 /* If both references are through the same type, they do not alias
1015 if the accesses do not overlap. This does extra disambiguation
1016 for mixed/pointer accesses but requires strict aliasing.
1017 For MEM_REFs we require that the component-ref offset we computed
1018 is relative to the start of the type which we ensure by
1019 comparing rvalue and access type and disregarding the constant
1021 if ((TREE_CODE (base1
) != TARGET_MEM_REF
1022 || (!TMR_INDEX (base1
) && !TMR_INDEX2 (base1
)))
1023 && same_type_for_tbaa (TREE_TYPE (base1
), TREE_TYPE (dbase2
)) == 1)
1024 return ranges_overlap_p (doffset1
, max_size1
, doffset2
, max_size2
);
1026 /* Do access-path based disambiguation. */
1028 && (handled_component_p (ref1
) || handled_component_p (ref2
)))
1029 return aliasing_component_refs_p (ref1
,
1030 ref1_alias_set
, base1_alias_set
,
1033 ref2_alias_set
, base2_alias_set
,
1034 offset2
, max_size2
, true);
1039 /* Return true if two indirect references based on *PTR1
1040 and *PTR2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
1041 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. *PTR1 and *PTR2 have
1042 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
1043 in which case they are computed on-demand. REF1 and REF2
1044 if non-NULL are the complete memory reference trees. */
1047 indirect_refs_may_alias_p (tree ref1 ATTRIBUTE_UNUSED
, tree base1
,
1048 HOST_WIDE_INT offset1
, HOST_WIDE_INT max_size1
,
1049 alias_set_type ref1_alias_set
,
1050 alias_set_type base1_alias_set
,
1051 tree ref2 ATTRIBUTE_UNUSED
, tree base2
,
1052 HOST_WIDE_INT offset2
, HOST_WIDE_INT max_size2
,
1053 alias_set_type ref2_alias_set
,
1054 alias_set_type base2_alias_set
, bool tbaa_p
)
1058 tree ptrtype1
, ptrtype2
;
1060 gcc_checking_assert ((TREE_CODE (base1
) == MEM_REF
1061 || TREE_CODE (base1
) == TARGET_MEM_REF
)
1062 && (TREE_CODE (base2
) == MEM_REF
1063 || TREE_CODE (base2
) == TARGET_MEM_REF
));
1065 ptr1
= TREE_OPERAND (base1
, 0);
1066 ptr2
= TREE_OPERAND (base2
, 0);
1068 /* If both bases are based on pointers they cannot alias if they may not
1069 point to the same memory object or if they point to the same object
1070 and the accesses do not overlap. */
1071 if ((!cfun
|| gimple_in_ssa_p (cfun
))
1072 && operand_equal_p (ptr1
, ptr2
, 0)
1073 && (((TREE_CODE (base1
) != TARGET_MEM_REF
1074 || (!TMR_INDEX (base1
) && !TMR_INDEX2 (base1
)))
1075 && (TREE_CODE (base2
) != TARGET_MEM_REF
1076 || (!TMR_INDEX (base2
) && !TMR_INDEX2 (base2
))))
1077 || (TREE_CODE (base1
) == TARGET_MEM_REF
1078 && TREE_CODE (base2
) == TARGET_MEM_REF
1079 && (TMR_STEP (base1
) == TMR_STEP (base2
)
1080 || (TMR_STEP (base1
) && TMR_STEP (base2
)
1081 && operand_equal_p (TMR_STEP (base1
),
1082 TMR_STEP (base2
), 0)))
1083 && (TMR_INDEX (base1
) == TMR_INDEX (base2
)
1084 || (TMR_INDEX (base1
) && TMR_INDEX (base2
)
1085 && operand_equal_p (TMR_INDEX (base1
),
1086 TMR_INDEX (base2
), 0)))
1087 && (TMR_INDEX2 (base1
) == TMR_INDEX2 (base2
)
1088 || (TMR_INDEX2 (base1
) && TMR_INDEX2 (base2
)
1089 && operand_equal_p (TMR_INDEX2 (base1
),
1090 TMR_INDEX2 (base2
), 0))))))
1093 /* The offset embedded in MEM_REFs can be negative. Bias them
1094 so that the resulting offset adjustment is positive. */
1095 moff
= mem_ref_offset (base1
);
1096 moff
= moff
.lshift (BITS_PER_UNIT
== 8 ? 3 : exact_log2 (BITS_PER_UNIT
));
1097 if (moff
.is_negative ())
1098 offset2
+= (-moff
).low
;
1100 offset1
+= moff
.low
;
1101 moff
= mem_ref_offset (base2
);
1102 moff
= moff
.lshift (BITS_PER_UNIT
== 8 ? 3 : exact_log2 (BITS_PER_UNIT
));
1103 if (moff
.is_negative ())
1104 offset1
+= (-moff
).low
;
1106 offset2
+= moff
.low
;
1107 return ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
);
1109 if (!ptr_derefs_may_alias_p (ptr1
, ptr2
))
1112 /* Disambiguations that rely on strict aliasing rules follow. */
1113 if (!flag_strict_aliasing
|| !tbaa_p
)
1116 ptrtype1
= TREE_TYPE (TREE_OPERAND (base1
, 1));
1117 ptrtype2
= TREE_TYPE (TREE_OPERAND (base2
, 1));
1119 /* If the alias set for a pointer access is zero all bets are off. */
1120 if (base1_alias_set
== -1)
1121 base1_alias_set
= get_deref_alias_set (ptrtype1
);
1122 if (base1_alias_set
== 0)
1124 if (base2_alias_set
== -1)
1125 base2_alias_set
= get_deref_alias_set (ptrtype2
);
1126 if (base2_alias_set
== 0)
1129 /* If both references are through the same type, they do not alias
1130 if the accesses do not overlap. This does extra disambiguation
1131 for mixed/pointer accesses but requires strict aliasing. */
1132 if ((TREE_CODE (base1
) != TARGET_MEM_REF
1133 || (!TMR_INDEX (base1
) && !TMR_INDEX2 (base1
)))
1134 && (TREE_CODE (base2
) != TARGET_MEM_REF
1135 || (!TMR_INDEX (base2
) && !TMR_INDEX2 (base2
)))
1136 && same_type_for_tbaa (TREE_TYPE (base1
), TREE_TYPE (ptrtype1
)) == 1
1137 && same_type_for_tbaa (TREE_TYPE (base2
), TREE_TYPE (ptrtype2
)) == 1
1138 && same_type_for_tbaa (TREE_TYPE (ptrtype1
),
1139 TREE_TYPE (ptrtype2
)) == 1)
1140 return ranges_overlap_p (offset1
, max_size1
, offset2
, max_size2
);
1142 /* Do type-based disambiguation. */
1143 if (base1_alias_set
!= base2_alias_set
1144 && !alias_sets_conflict_p (base1_alias_set
, base2_alias_set
))
1147 /* Do access-path based disambiguation. */
1149 && (handled_component_p (ref1
) || handled_component_p (ref2
))
1150 && same_type_for_tbaa (TREE_TYPE (base1
), TREE_TYPE (ptrtype1
)) == 1
1151 && same_type_for_tbaa (TREE_TYPE (base2
), TREE_TYPE (ptrtype2
)) == 1)
1152 return aliasing_component_refs_p (ref1
,
1153 ref1_alias_set
, base1_alias_set
,
1156 ref2_alias_set
, base2_alias_set
,
1157 offset2
, max_size2
, false);
1162 /* Return true, if the two memory references REF1 and REF2 may alias. */
1165 refs_may_alias_p_1 (ao_ref
*ref1
, ao_ref
*ref2
, bool tbaa_p
)
1168 HOST_WIDE_INT offset1
= 0, offset2
= 0;
1169 HOST_WIDE_INT max_size1
= -1, max_size2
= -1;
1170 bool var1_p
, var2_p
, ind1_p
, ind2_p
;
1172 gcc_checking_assert ((!ref1
->ref
1173 || TREE_CODE (ref1
->ref
) == SSA_NAME
1174 || DECL_P (ref1
->ref
)
1175 || TREE_CODE (ref1
->ref
) == STRING_CST
1176 || handled_component_p (ref1
->ref
)
1177 || TREE_CODE (ref1
->ref
) == MEM_REF
1178 || TREE_CODE (ref1
->ref
) == TARGET_MEM_REF
)
1180 || TREE_CODE (ref2
->ref
) == SSA_NAME
1181 || DECL_P (ref2
->ref
)
1182 || TREE_CODE (ref2
->ref
) == STRING_CST
1183 || handled_component_p (ref2
->ref
)
1184 || TREE_CODE (ref2
->ref
) == MEM_REF
1185 || TREE_CODE (ref2
->ref
) == TARGET_MEM_REF
));
1187 /* Decompose the references into their base objects and the access. */
1188 base1
= ao_ref_base (ref1
);
1189 offset1
= ref1
->offset
;
1190 max_size1
= ref1
->max_size
;
1191 base2
= ao_ref_base (ref2
);
1192 offset2
= ref2
->offset
;
1193 max_size2
= ref2
->max_size
;
1195 /* We can end up with registers or constants as bases for example from
1196 *D.1663_44 = VIEW_CONVERT_EXPR<struct DB_LSN>(__tmp$B0F64_59);
1197 which is seen as a struct copy. */
1198 if (TREE_CODE (base1
) == SSA_NAME
1199 || TREE_CODE (base1
) == CONST_DECL
1200 || TREE_CODE (base1
) == CONSTRUCTOR
1201 || TREE_CODE (base1
) == ADDR_EXPR
1202 || CONSTANT_CLASS_P (base1
)
1203 || TREE_CODE (base2
) == SSA_NAME
1204 || TREE_CODE (base2
) == CONST_DECL
1205 || TREE_CODE (base2
) == CONSTRUCTOR
1206 || TREE_CODE (base2
) == ADDR_EXPR
1207 || CONSTANT_CLASS_P (base2
))
1210 /* We can end up referring to code via function and label decls.
1211 As we likely do not properly track code aliases conservatively
1213 if (TREE_CODE (base1
) == FUNCTION_DECL
1214 || TREE_CODE (base1
) == LABEL_DECL
1215 || TREE_CODE (base2
) == FUNCTION_DECL
1216 || TREE_CODE (base2
) == LABEL_DECL
)
1219 /* Two volatile accesses always conflict. */
1220 if (ref1
->volatile_p
1221 && ref2
->volatile_p
)
1224 /* Defer to simple offset based disambiguation if we have
1225 references based on two decls. Do this before defering to
1226 TBAA to handle must-alias cases in conformance with the
1227 GCC extension of allowing type-punning through unions. */
1228 var1_p
= DECL_P (base1
);
1229 var2_p
= DECL_P (base2
);
1230 if (var1_p
&& var2_p
)
1231 return decl_refs_may_alias_p (ref1
->ref
, base1
, offset1
, max_size1
,
1232 ref2
->ref
, base2
, offset2
, max_size2
);
1234 ind1_p
= (TREE_CODE (base1
) == MEM_REF
1235 || TREE_CODE (base1
) == TARGET_MEM_REF
);
1236 ind2_p
= (TREE_CODE (base2
) == MEM_REF
1237 || TREE_CODE (base2
) == TARGET_MEM_REF
);
1239 /* Canonicalize the pointer-vs-decl case. */
1240 if (ind1_p
&& var2_p
)
1245 tmp1
= offset1
; offset1
= offset2
; offset2
= tmp1
;
1246 tmp1
= max_size1
; max_size1
= max_size2
; max_size2
= tmp1
;
1247 tmp2
= base1
; base1
= base2
; base2
= tmp2
;
1248 tmp3
= ref1
; ref1
= ref2
; ref2
= tmp3
;
1255 /* First defer to TBAA if possible. */
1257 && flag_strict_aliasing
1258 && !alias_sets_conflict_p (ao_ref_alias_set (ref1
),
1259 ao_ref_alias_set (ref2
)))
1262 /* Dispatch to the pointer-vs-decl or pointer-vs-pointer disambiguators. */
1263 if (var1_p
&& ind2_p
)
1264 return indirect_ref_may_alias_decl_p (ref2
->ref
, base2
,
1266 ao_ref_alias_set (ref2
), -1,
1269 ao_ref_alias_set (ref1
),
1270 ao_ref_base_alias_set (ref1
),
1272 else if (ind1_p
&& ind2_p
)
1273 return indirect_refs_may_alias_p (ref1
->ref
, base1
,
1275 ao_ref_alias_set (ref1
), -1,
1278 ao_ref_alias_set (ref2
), -1,
1281 /* We really do not want to end up here, but returning true is safe. */
1282 #ifdef ENABLE_CHECKING
1290 refs_may_alias_p (tree ref1
, tree ref2
)
1294 ao_ref_init (&r1
, ref1
);
1295 ao_ref_init (&r2
, ref2
);
1296 res
= refs_may_alias_p_1 (&r1
, &r2
, true);
1298 ++alias_stats
.refs_may_alias_p_may_alias
;
1300 ++alias_stats
.refs_may_alias_p_no_alias
;
1304 /* Returns true if there is a anti-dependence for the STORE that
1305 executes after the LOAD. */
1308 refs_anti_dependent_p (tree load
, tree store
)
1311 ao_ref_init (&r1
, load
);
1312 ao_ref_init (&r2
, store
);
1313 return refs_may_alias_p_1 (&r1
, &r2
, false);
1316 /* Returns true if there is a output dependence for the stores
1317 STORE1 and STORE2. */
1320 refs_output_dependent_p (tree store1
, tree store2
)
1323 ao_ref_init (&r1
, store1
);
1324 ao_ref_init (&r2
, store2
);
1325 return refs_may_alias_p_1 (&r1
, &r2
, false);
1328 /* If the call CALL may use the memory reference REF return true,
1329 otherwise return false. */
1332 ref_maybe_used_by_call_p_1 (gimple call
, ao_ref
*ref
)
1336 int flags
= gimple_call_flags (call
);
1338 /* Const functions without a static chain do not implicitly use memory. */
1339 if (!gimple_call_chain (call
)
1340 && (flags
& (ECF_CONST
|ECF_NOVOPS
)))
1343 base
= ao_ref_base (ref
);
1347 /* A call that is not without side-effects might involve volatile
1348 accesses and thus conflicts with all other volatile accesses. */
1349 if (ref
->volatile_p
)
1352 /* If the reference is based on a decl that is not aliased the call
1353 cannot possibly use it. */
1355 && !may_be_aliased (base
)
1356 /* But local statics can be used through recursion. */
1357 && !is_global_var (base
))
1360 callee
= gimple_call_fndecl (call
);
1362 /* Handle those builtin functions explicitly that do not act as
1363 escape points. See tree-ssa-structalias.c:find_func_aliases
1364 for the list of builtins we might need to handle here. */
1365 if (callee
!= NULL_TREE
1366 && DECL_BUILT_IN_CLASS (callee
) == BUILT_IN_NORMAL
)
1367 switch (DECL_FUNCTION_CODE (callee
))
1369 /* All the following functions read memory pointed to by
1370 their second argument. strcat/strncat additionally
1371 reads memory pointed to by the first argument. */
1372 case BUILT_IN_STRCAT
:
1373 case BUILT_IN_STRNCAT
:
1376 ao_ref_init_from_ptr_and_size (&dref
,
1377 gimple_call_arg (call
, 0),
1379 if (refs_may_alias_p_1 (&dref
, ref
, false))
1383 case BUILT_IN_STRCPY
:
1384 case BUILT_IN_STRNCPY
:
1385 case BUILT_IN_MEMCPY
:
1386 case BUILT_IN_MEMMOVE
:
1387 case BUILT_IN_MEMPCPY
:
1388 case BUILT_IN_STPCPY
:
1389 case BUILT_IN_STPNCPY
:
1390 case BUILT_IN_TM_MEMCPY
:
1391 case BUILT_IN_TM_MEMMOVE
:
1394 tree size
= NULL_TREE
;
1395 if (gimple_call_num_args (call
) == 3)
1396 size
= gimple_call_arg (call
, 2);
1397 ao_ref_init_from_ptr_and_size (&dref
,
1398 gimple_call_arg (call
, 1),
1400 return refs_may_alias_p_1 (&dref
, ref
, false);
1402 case BUILT_IN_STRCAT_CHK
:
1403 case BUILT_IN_STRNCAT_CHK
:
1406 ao_ref_init_from_ptr_and_size (&dref
,
1407 gimple_call_arg (call
, 0),
1409 if (refs_may_alias_p_1 (&dref
, ref
, false))
1413 case BUILT_IN_STRCPY_CHK
:
1414 case BUILT_IN_STRNCPY_CHK
:
1415 case BUILT_IN_MEMCPY_CHK
:
1416 case BUILT_IN_MEMMOVE_CHK
:
1417 case BUILT_IN_MEMPCPY_CHK
:
1418 case BUILT_IN_STPCPY_CHK
:
1419 case BUILT_IN_STPNCPY_CHK
:
1422 tree size
= NULL_TREE
;
1423 if (gimple_call_num_args (call
) == 4)
1424 size
= gimple_call_arg (call
, 2);
1425 ao_ref_init_from_ptr_and_size (&dref
,
1426 gimple_call_arg (call
, 1),
1428 return refs_may_alias_p_1 (&dref
, ref
, false);
1430 case BUILT_IN_BCOPY
:
1433 tree size
= gimple_call_arg (call
, 2);
1434 ao_ref_init_from_ptr_and_size (&dref
,
1435 gimple_call_arg (call
, 0),
1437 return refs_may_alias_p_1 (&dref
, ref
, false);
1440 /* The following functions read memory pointed to by their
1442 CASE_BUILT_IN_TM_LOAD (1):
1443 CASE_BUILT_IN_TM_LOAD (2):
1444 CASE_BUILT_IN_TM_LOAD (4):
1445 CASE_BUILT_IN_TM_LOAD (8):
1446 CASE_BUILT_IN_TM_LOAD (FLOAT
):
1447 CASE_BUILT_IN_TM_LOAD (DOUBLE
):
1448 CASE_BUILT_IN_TM_LOAD (LDOUBLE
):
1449 CASE_BUILT_IN_TM_LOAD (M64
):
1450 CASE_BUILT_IN_TM_LOAD (M128
):
1451 CASE_BUILT_IN_TM_LOAD (M256
):
1452 case BUILT_IN_TM_LOG
:
1453 case BUILT_IN_TM_LOG_1
:
1454 case BUILT_IN_TM_LOG_2
:
1455 case BUILT_IN_TM_LOG_4
:
1456 case BUILT_IN_TM_LOG_8
:
1457 case BUILT_IN_TM_LOG_FLOAT
:
1458 case BUILT_IN_TM_LOG_DOUBLE
:
1459 case BUILT_IN_TM_LOG_LDOUBLE
:
1460 case BUILT_IN_TM_LOG_M64
:
1461 case BUILT_IN_TM_LOG_M128
:
1462 case BUILT_IN_TM_LOG_M256
:
1463 return ptr_deref_may_alias_ref_p_1 (gimple_call_arg (call
, 0), ref
);
1465 /* These read memory pointed to by the first argument. */
1466 case BUILT_IN_STRDUP
:
1467 case BUILT_IN_STRNDUP
:
1470 tree size
= NULL_TREE
;
1471 if (gimple_call_num_args (call
) == 2)
1472 size
= gimple_call_arg (call
, 1);
1473 ao_ref_init_from_ptr_and_size (&dref
,
1474 gimple_call_arg (call
, 0),
1476 return refs_may_alias_p_1 (&dref
, ref
, false);
1478 /* These read memory pointed to by the first argument. */
1479 case BUILT_IN_INDEX
:
1480 case BUILT_IN_STRCHR
:
1481 case BUILT_IN_STRRCHR
:
1484 ao_ref_init_from_ptr_and_size (&dref
,
1485 gimple_call_arg (call
, 0),
1487 return refs_may_alias_p_1 (&dref
, ref
, false);
1489 /* These read memory pointed to by the first argument with size
1490 in the third argument. */
1491 case BUILT_IN_MEMCHR
:
1494 ao_ref_init_from_ptr_and_size (&dref
,
1495 gimple_call_arg (call
, 0),
1496 gimple_call_arg (call
, 2));
1497 return refs_may_alias_p_1 (&dref
, ref
, false);
1499 /* These read memory pointed to by the first and second arguments. */
1500 case BUILT_IN_STRSTR
:
1501 case BUILT_IN_STRPBRK
:
1504 ao_ref_init_from_ptr_and_size (&dref
,
1505 gimple_call_arg (call
, 0),
1507 if (refs_may_alias_p_1 (&dref
, ref
, false))
1509 ao_ref_init_from_ptr_and_size (&dref
,
1510 gimple_call_arg (call
, 1),
1512 return refs_may_alias_p_1 (&dref
, ref
, false);
1515 /* The following builtins do not read from memory. */
1517 case BUILT_IN_MALLOC
:
1518 case BUILT_IN_CALLOC
:
1519 case BUILT_IN_ALLOCA
:
1520 case BUILT_IN_ALLOCA_WITH_ALIGN
:
1521 case BUILT_IN_STACK_SAVE
:
1522 case BUILT_IN_STACK_RESTORE
:
1523 case BUILT_IN_MEMSET
:
1524 case BUILT_IN_TM_MEMSET
:
1525 case BUILT_IN_MEMSET_CHK
:
1526 case BUILT_IN_FREXP
:
1527 case BUILT_IN_FREXPF
:
1528 case BUILT_IN_FREXPL
:
1529 case BUILT_IN_GAMMA_R
:
1530 case BUILT_IN_GAMMAF_R
:
1531 case BUILT_IN_GAMMAL_R
:
1532 case BUILT_IN_LGAMMA_R
:
1533 case BUILT_IN_LGAMMAF_R
:
1534 case BUILT_IN_LGAMMAL_R
:
1536 case BUILT_IN_MODFF
:
1537 case BUILT_IN_MODFL
:
1538 case BUILT_IN_REMQUO
:
1539 case BUILT_IN_REMQUOF
:
1540 case BUILT_IN_REMQUOL
:
1541 case BUILT_IN_SINCOS
:
1542 case BUILT_IN_SINCOSF
:
1543 case BUILT_IN_SINCOSL
:
1544 case BUILT_IN_ASSUME_ALIGNED
:
1545 case BUILT_IN_VA_END
:
1547 /* __sync_* builtins and some OpenMP builtins act as threading
1549 #undef DEF_SYNC_BUILTIN
1550 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) case ENUM:
1551 #include "sync-builtins.def"
1552 #undef DEF_SYNC_BUILTIN
1553 case BUILT_IN_GOMP_ATOMIC_START
:
1554 case BUILT_IN_GOMP_ATOMIC_END
:
1555 case BUILT_IN_GOMP_BARRIER
:
1556 case BUILT_IN_GOMP_BARRIER_CANCEL
:
1557 case BUILT_IN_GOMP_TASKWAIT
:
1558 case BUILT_IN_GOMP_TASKGROUP_END
:
1559 case BUILT_IN_GOMP_CRITICAL_START
:
1560 case BUILT_IN_GOMP_CRITICAL_END
:
1561 case BUILT_IN_GOMP_CRITICAL_NAME_START
:
1562 case BUILT_IN_GOMP_CRITICAL_NAME_END
:
1563 case BUILT_IN_GOMP_LOOP_END
:
1564 case BUILT_IN_GOMP_LOOP_END_CANCEL
:
1565 case BUILT_IN_GOMP_ORDERED_START
:
1566 case BUILT_IN_GOMP_ORDERED_END
:
1567 case BUILT_IN_GOMP_SECTIONS_END
:
1568 case BUILT_IN_GOMP_SECTIONS_END_CANCEL
:
1569 case BUILT_IN_GOMP_SINGLE_COPY_START
:
1570 case BUILT_IN_GOMP_SINGLE_COPY_END
:
1574 /* Fallthru to general call handling. */;
1577 /* Check if base is a global static variable that is not read
1579 if (callee
!= NULL_TREE
1580 && TREE_CODE (base
) == VAR_DECL
1581 && TREE_STATIC (base
))
1583 struct cgraph_node
*node
= cgraph_get_node (callee
);
1586 /* FIXME: Callee can be an OMP builtin that does not have a call graph
1587 node yet. We should enforce that there are nodes for all decls in the
1588 IL and remove this check instead. */
1590 && (not_read
= ipa_reference_get_not_read_global (node
))
1591 && bitmap_bit_p (not_read
, DECL_UID (base
)))
1595 /* Check if the base variable is call-used. */
1598 if (pt_solution_includes (gimple_call_use_set (call
), base
))
1601 else if ((TREE_CODE (base
) == MEM_REF
1602 || TREE_CODE (base
) == TARGET_MEM_REF
)
1603 && TREE_CODE (TREE_OPERAND (base
, 0)) == SSA_NAME
)
1605 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (TREE_OPERAND (base
, 0));
1609 if (pt_solutions_intersect (gimple_call_use_set (call
), &pi
->pt
))
1615 /* Inspect call arguments for passed-by-value aliases. */
1617 for (i
= 0; i
< gimple_call_num_args (call
); ++i
)
1619 tree op
= gimple_call_arg (call
, i
);
1620 int flags
= gimple_call_arg_flags (call
, i
);
1622 if (flags
& EAF_UNUSED
)
1625 if (TREE_CODE (op
) == WITH_SIZE_EXPR
)
1626 op
= TREE_OPERAND (op
, 0);
1628 if (TREE_CODE (op
) != SSA_NAME
1629 && !is_gimple_min_invariant (op
))
1632 ao_ref_init (&r
, op
);
1633 if (refs_may_alias_p_1 (&r
, ref
, true))
1642 ref_maybe_used_by_call_p (gimple call
, tree ref
)
1646 ao_ref_init (&r
, ref
);
1647 res
= ref_maybe_used_by_call_p_1 (call
, &r
);
1649 ++alias_stats
.ref_maybe_used_by_call_p_may_alias
;
1651 ++alias_stats
.ref_maybe_used_by_call_p_no_alias
;
1656 /* If the statement STMT may use the memory reference REF return
1657 true, otherwise return false. */
1660 ref_maybe_used_by_stmt_p (gimple stmt
, tree ref
)
1662 if (is_gimple_assign (stmt
))
1666 /* All memory assign statements are single. */
1667 if (!gimple_assign_single_p (stmt
))
1670 rhs
= gimple_assign_rhs1 (stmt
);
1671 if (is_gimple_reg (rhs
)
1672 || is_gimple_min_invariant (rhs
)
1673 || gimple_assign_rhs_code (stmt
) == CONSTRUCTOR
)
1676 return refs_may_alias_p (rhs
, ref
);
1678 else if (is_gimple_call (stmt
))
1679 return ref_maybe_used_by_call_p (stmt
, ref
);
1680 else if (gimple_code (stmt
) == GIMPLE_RETURN
)
1682 tree retval
= gimple_return_retval (stmt
);
1685 && TREE_CODE (retval
) != SSA_NAME
1686 && !is_gimple_min_invariant (retval
)
1687 && refs_may_alias_p (retval
, ref
))
1689 /* If ref escapes the function then the return acts as a use. */
1690 base
= get_base_address (ref
);
1693 else if (DECL_P (base
))
1694 return is_global_var (base
);
1695 else if (TREE_CODE (base
) == MEM_REF
1696 || TREE_CODE (base
) == TARGET_MEM_REF
)
1697 return ptr_deref_may_alias_global_p (TREE_OPERAND (base
, 0));
1704 /* If the call in statement CALL may clobber the memory reference REF
1705 return true, otherwise return false. */
1708 call_may_clobber_ref_p_1 (gimple call
, ao_ref
*ref
)
1713 /* If the call is pure or const it cannot clobber anything. */
1714 if (gimple_call_flags (call
)
1715 & (ECF_PURE
|ECF_CONST
|ECF_LOOPING_CONST_OR_PURE
|ECF_NOVOPS
))
1718 base
= ao_ref_base (ref
);
1722 if (TREE_CODE (base
) == SSA_NAME
1723 || CONSTANT_CLASS_P (base
))
1726 /* A call that is not without side-effects might involve volatile
1727 accesses and thus conflicts with all other volatile accesses. */
1728 if (ref
->volatile_p
)
1731 /* If the reference is based on a decl that is not aliased the call
1732 cannot possibly clobber it. */
1734 && !may_be_aliased (base
)
1735 /* But local non-readonly statics can be modified through recursion
1736 or the call may implement a threading barrier which we must
1737 treat as may-def. */
1738 && (TREE_READONLY (base
)
1739 || !is_global_var (base
)))
1742 callee
= gimple_call_fndecl (call
);
1744 /* Handle those builtin functions explicitly that do not act as
1745 escape points. See tree-ssa-structalias.c:find_func_aliases
1746 for the list of builtins we might need to handle here. */
1747 if (callee
!= NULL_TREE
1748 && DECL_BUILT_IN_CLASS (callee
) == BUILT_IN_NORMAL
)
1749 switch (DECL_FUNCTION_CODE (callee
))
1751 /* All the following functions clobber memory pointed to by
1752 their first argument. */
1753 case BUILT_IN_STRCPY
:
1754 case BUILT_IN_STRNCPY
:
1755 case BUILT_IN_MEMCPY
:
1756 case BUILT_IN_MEMMOVE
:
1757 case BUILT_IN_MEMPCPY
:
1758 case BUILT_IN_STPCPY
:
1759 case BUILT_IN_STPNCPY
:
1760 case BUILT_IN_STRCAT
:
1761 case BUILT_IN_STRNCAT
:
1762 case BUILT_IN_MEMSET
:
1763 case BUILT_IN_TM_MEMSET
:
1764 CASE_BUILT_IN_TM_STORE (1):
1765 CASE_BUILT_IN_TM_STORE (2):
1766 CASE_BUILT_IN_TM_STORE (4):
1767 CASE_BUILT_IN_TM_STORE (8):
1768 CASE_BUILT_IN_TM_STORE (FLOAT
):
1769 CASE_BUILT_IN_TM_STORE (DOUBLE
):
1770 CASE_BUILT_IN_TM_STORE (LDOUBLE
):
1771 CASE_BUILT_IN_TM_STORE (M64
):
1772 CASE_BUILT_IN_TM_STORE (M128
):
1773 CASE_BUILT_IN_TM_STORE (M256
):
1774 case BUILT_IN_TM_MEMCPY
:
1775 case BUILT_IN_TM_MEMMOVE
:
1778 tree size
= NULL_TREE
;
1779 /* Don't pass in size for strncat, as the maximum size
1780 is strlen (dest) + n + 1 instead of n, resp.
1781 n + 1 at dest + strlen (dest), but strlen (dest) isn't
1783 if (gimple_call_num_args (call
) == 3
1784 && DECL_FUNCTION_CODE (callee
) != BUILT_IN_STRNCAT
)
1785 size
= gimple_call_arg (call
, 2);
1786 ao_ref_init_from_ptr_and_size (&dref
,
1787 gimple_call_arg (call
, 0),
1789 return refs_may_alias_p_1 (&dref
, ref
, false);
1791 case BUILT_IN_STRCPY_CHK
:
1792 case BUILT_IN_STRNCPY_CHK
:
1793 case BUILT_IN_MEMCPY_CHK
:
1794 case BUILT_IN_MEMMOVE_CHK
:
1795 case BUILT_IN_MEMPCPY_CHK
:
1796 case BUILT_IN_STPCPY_CHK
:
1797 case BUILT_IN_STPNCPY_CHK
:
1798 case BUILT_IN_STRCAT_CHK
:
1799 case BUILT_IN_STRNCAT_CHK
:
1800 case BUILT_IN_MEMSET_CHK
:
1803 tree size
= NULL_TREE
;
1804 /* Don't pass in size for __strncat_chk, as the maximum size
1805 is strlen (dest) + n + 1 instead of n, resp.
1806 n + 1 at dest + strlen (dest), but strlen (dest) isn't
1808 if (gimple_call_num_args (call
) == 4
1809 && DECL_FUNCTION_CODE (callee
) != BUILT_IN_STRNCAT_CHK
)
1810 size
= gimple_call_arg (call
, 2);
1811 ao_ref_init_from_ptr_and_size (&dref
,
1812 gimple_call_arg (call
, 0),
1814 return refs_may_alias_p_1 (&dref
, ref
, false);
1816 case BUILT_IN_BCOPY
:
1819 tree size
= gimple_call_arg (call
, 2);
1820 ao_ref_init_from_ptr_and_size (&dref
,
1821 gimple_call_arg (call
, 1),
1823 return refs_may_alias_p_1 (&dref
, ref
, false);
1825 /* Allocating memory does not have any side-effects apart from
1826 being the definition point for the pointer. */
1827 case BUILT_IN_MALLOC
:
1828 case BUILT_IN_CALLOC
:
1829 case BUILT_IN_STRDUP
:
1830 case BUILT_IN_STRNDUP
:
1831 /* Unix98 specifies that errno is set on allocation failure. */
1833 && targetm
.ref_may_alias_errno (ref
))
1836 case BUILT_IN_STACK_SAVE
:
1837 case BUILT_IN_ALLOCA
:
1838 case BUILT_IN_ALLOCA_WITH_ALIGN
:
1839 case BUILT_IN_ASSUME_ALIGNED
:
1841 /* Freeing memory kills the pointed-to memory. More importantly
1842 the call has to serve as a barrier for moving loads and stores
1845 case BUILT_IN_VA_END
:
1847 tree ptr
= gimple_call_arg (call
, 0);
1848 return ptr_deref_may_alias_ref_p_1 (ptr
, ref
);
1850 case BUILT_IN_GAMMA_R
:
1851 case BUILT_IN_GAMMAF_R
:
1852 case BUILT_IN_GAMMAL_R
:
1853 case BUILT_IN_LGAMMA_R
:
1854 case BUILT_IN_LGAMMAF_R
:
1855 case BUILT_IN_LGAMMAL_R
:
1857 tree out
= gimple_call_arg (call
, 1);
1858 if (ptr_deref_may_alias_ref_p_1 (out
, ref
))
1860 if (flag_errno_math
)
1864 case BUILT_IN_FREXP
:
1865 case BUILT_IN_FREXPF
:
1866 case BUILT_IN_FREXPL
:
1868 case BUILT_IN_MODFF
:
1869 case BUILT_IN_MODFL
:
1871 tree out
= gimple_call_arg (call
, 1);
1872 return ptr_deref_may_alias_ref_p_1 (out
, ref
);
1874 case BUILT_IN_REMQUO
:
1875 case BUILT_IN_REMQUOF
:
1876 case BUILT_IN_REMQUOL
:
1878 tree out
= gimple_call_arg (call
, 2);
1879 if (ptr_deref_may_alias_ref_p_1 (out
, ref
))
1881 if (flag_errno_math
)
1885 case BUILT_IN_SINCOS
:
1886 case BUILT_IN_SINCOSF
:
1887 case BUILT_IN_SINCOSL
:
1889 tree sin
= gimple_call_arg (call
, 1);
1890 tree cos
= gimple_call_arg (call
, 2);
1891 return (ptr_deref_may_alias_ref_p_1 (sin
, ref
)
1892 || ptr_deref_may_alias_ref_p_1 (cos
, ref
));
1894 /* __sync_* builtins and some OpenMP builtins act as threading
1896 #undef DEF_SYNC_BUILTIN
1897 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) case ENUM:
1898 #include "sync-builtins.def"
1899 #undef DEF_SYNC_BUILTIN
1900 case BUILT_IN_GOMP_ATOMIC_START
:
1901 case BUILT_IN_GOMP_ATOMIC_END
:
1902 case BUILT_IN_GOMP_BARRIER
:
1903 case BUILT_IN_GOMP_BARRIER_CANCEL
:
1904 case BUILT_IN_GOMP_TASKWAIT
:
1905 case BUILT_IN_GOMP_TASKGROUP_END
:
1906 case BUILT_IN_GOMP_CRITICAL_START
:
1907 case BUILT_IN_GOMP_CRITICAL_END
:
1908 case BUILT_IN_GOMP_CRITICAL_NAME_START
:
1909 case BUILT_IN_GOMP_CRITICAL_NAME_END
:
1910 case BUILT_IN_GOMP_LOOP_END
:
1911 case BUILT_IN_GOMP_LOOP_END_CANCEL
:
1912 case BUILT_IN_GOMP_ORDERED_START
:
1913 case BUILT_IN_GOMP_ORDERED_END
:
1914 case BUILT_IN_GOMP_SECTIONS_END
:
1915 case BUILT_IN_GOMP_SECTIONS_END_CANCEL
:
1916 case BUILT_IN_GOMP_SINGLE_COPY_START
:
1917 case BUILT_IN_GOMP_SINGLE_COPY_END
:
1920 /* Fallthru to general call handling. */;
1923 /* Check if base is a global static variable that is not written
1925 if (callee
!= NULL_TREE
1926 && TREE_CODE (base
) == VAR_DECL
1927 && TREE_STATIC (base
))
1929 struct cgraph_node
*node
= cgraph_get_node (callee
);
1933 && (not_written
= ipa_reference_get_not_written_global (node
))
1934 && bitmap_bit_p (not_written
, DECL_UID (base
)))
1938 /* Check if the base variable is call-clobbered. */
1940 return pt_solution_includes (gimple_call_clobber_set (call
), base
);
1941 else if ((TREE_CODE (base
) == MEM_REF
1942 || TREE_CODE (base
) == TARGET_MEM_REF
)
1943 && TREE_CODE (TREE_OPERAND (base
, 0)) == SSA_NAME
)
1945 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (TREE_OPERAND (base
, 0));
1949 return pt_solutions_intersect (gimple_call_clobber_set (call
), &pi
->pt
);
1955 /* If the call in statement CALL may clobber the memory reference REF
1956 return true, otherwise return false. */
1959 call_may_clobber_ref_p (gimple call
, tree ref
)
1963 ao_ref_init (&r
, ref
);
1964 res
= call_may_clobber_ref_p_1 (call
, &r
);
1966 ++alias_stats
.call_may_clobber_ref_p_may_alias
;
1968 ++alias_stats
.call_may_clobber_ref_p_no_alias
;
1973 /* If the statement STMT may clobber the memory reference REF return true,
1974 otherwise return false. */
1977 stmt_may_clobber_ref_p_1 (gimple stmt
, ao_ref
*ref
)
1979 if (is_gimple_call (stmt
))
1981 tree lhs
= gimple_call_lhs (stmt
);
1983 && TREE_CODE (lhs
) != SSA_NAME
)
1986 ao_ref_init (&r
, lhs
);
1987 if (refs_may_alias_p_1 (ref
, &r
, true))
1991 return call_may_clobber_ref_p_1 (stmt
, ref
);
1993 else if (gimple_assign_single_p (stmt
))
1995 tree lhs
= gimple_assign_lhs (stmt
);
1996 if (TREE_CODE (lhs
) != SSA_NAME
)
1999 ao_ref_init (&r
, lhs
);
2000 return refs_may_alias_p_1 (ref
, &r
, true);
2003 else if (gimple_code (stmt
) == GIMPLE_ASM
)
2010 stmt_may_clobber_ref_p (gimple stmt
, tree ref
)
2013 ao_ref_init (&r
, ref
);
2014 return stmt_may_clobber_ref_p_1 (stmt
, &r
);
2017 /* If STMT kills the memory reference REF return true, otherwise
2021 stmt_kills_ref_p_1 (gimple stmt
, ao_ref
*ref
)
2023 /* For a must-alias check we need to be able to constrain
2024 the access properly.
2025 FIXME: except for BUILTIN_FREE. */
2026 if (!ao_ref_base (ref
)
2027 || ref
->max_size
== -1)
2030 if (gimple_has_lhs (stmt
)
2031 && TREE_CODE (gimple_get_lhs (stmt
)) != SSA_NAME
2032 /* The assignment is not necessarily carried out if it can throw
2033 and we can catch it in the current function where we could inspect
2035 ??? We only need to care about the RHS throwing. For aggregate
2036 assignments or similar calls and non-call exceptions the LHS
2037 might throw as well. */
2038 && !stmt_can_throw_internal (stmt
))
2040 tree base
, lhs
= gimple_get_lhs (stmt
);
2041 HOST_WIDE_INT size
, offset
, max_size
, ref_offset
= ref
->offset
;
2042 base
= get_ref_base_and_extent (lhs
, &offset
, &size
, &max_size
);
2043 /* We can get MEM[symbol: sZ, index: D.8862_1] here,
2044 so base == ref->base does not always hold. */
2045 if (base
!= ref
->base
)
2047 /* If both base and ref->base are MEM_REFs, only compare the
2048 first operand, and if the second operand isn't equal constant,
2049 try to add the offsets into offset and ref_offset. */
2050 if (TREE_CODE (base
) == MEM_REF
&& TREE_CODE (ref
->base
) == MEM_REF
2051 && TREE_OPERAND (base
, 0) == TREE_OPERAND (ref
->base
, 0))
2053 if (!tree_int_cst_equal (TREE_OPERAND (base
, 1),
2054 TREE_OPERAND (ref
->base
, 1)))
2056 double_int off1
= mem_ref_offset (base
);
2057 off1
= off1
.lshift (BITS_PER_UNIT
== 8
2058 ? 3 : exact_log2 (BITS_PER_UNIT
));
2059 off1
= off1
+ double_int::from_shwi (offset
);
2060 double_int off2
= mem_ref_offset (ref
->base
);
2061 off2
= off2
.lshift (BITS_PER_UNIT
== 8
2062 ? 3 : exact_log2 (BITS_PER_UNIT
));
2063 off2
= off2
+ double_int::from_shwi (ref_offset
);
2064 if (off1
.fits_shwi () && off2
.fits_shwi ())
2066 offset
= off1
.to_shwi ();
2067 ref_offset
= off2
.to_shwi ();
2076 /* For a must-alias check we need to be able to constrain
2077 the access properly. */
2078 if (size
!= -1 && size
== max_size
)
2080 if (offset
<= ref_offset
2081 && offset
+ size
>= ref_offset
+ ref
->max_size
)
2086 if (is_gimple_call (stmt
))
2088 tree callee
= gimple_call_fndecl (stmt
);
2089 if (callee
!= NULL_TREE
2090 && DECL_BUILT_IN_CLASS (callee
) == BUILT_IN_NORMAL
)
2091 switch (DECL_FUNCTION_CODE (callee
))
2095 tree ptr
= gimple_call_arg (stmt
, 0);
2096 tree base
= ao_ref_base (ref
);
2097 if (base
&& TREE_CODE (base
) == MEM_REF
2098 && TREE_OPERAND (base
, 0) == ptr
)
2103 case BUILT_IN_MEMCPY
:
2104 case BUILT_IN_MEMPCPY
:
2105 case BUILT_IN_MEMMOVE
:
2106 case BUILT_IN_MEMSET
:
2107 case BUILT_IN_MEMCPY_CHK
:
2108 case BUILT_IN_MEMPCPY_CHK
:
2109 case BUILT_IN_MEMMOVE_CHK
:
2110 case BUILT_IN_MEMSET_CHK
:
2112 tree dest
= gimple_call_arg (stmt
, 0);
2113 tree len
= gimple_call_arg (stmt
, 2);
2114 if (!tree_fits_shwi_p (len
))
2116 tree rbase
= ref
->base
;
2117 double_int roffset
= double_int::from_shwi (ref
->offset
);
2119 ao_ref_init_from_ptr_and_size (&dref
, dest
, len
);
2120 tree base
= ao_ref_base (&dref
);
2121 double_int offset
= double_int::from_shwi (dref
.offset
);
2122 double_int bpu
= double_int::from_uhwi (BITS_PER_UNIT
);
2123 if (!base
|| dref
.size
== -1)
2125 if (TREE_CODE (base
) == MEM_REF
)
2127 if (TREE_CODE (rbase
) != MEM_REF
)
2129 // Compare pointers.
2130 offset
+= bpu
* mem_ref_offset (base
);
2131 roffset
+= bpu
* mem_ref_offset (rbase
);
2132 base
= TREE_OPERAND (base
, 0);
2133 rbase
= TREE_OPERAND (rbase
, 0);
2137 double_int size
= bpu
* tree_to_double_int (len
);
2138 double_int rsize
= double_int::from_uhwi (ref
->max_size
);
2139 if (offset
.sle (roffset
)
2140 && (roffset
+ rsize
).sle (offset
+ size
))
2146 case BUILT_IN_VA_END
:
2148 tree ptr
= gimple_call_arg (stmt
, 0);
2149 if (TREE_CODE (ptr
) == ADDR_EXPR
)
2151 tree base
= ao_ref_base (ref
);
2152 if (TREE_OPERAND (ptr
, 0) == base
)
2165 stmt_kills_ref_p (gimple stmt
, tree ref
)
2168 ao_ref_init (&r
, ref
);
2169 return stmt_kills_ref_p_1 (stmt
, &r
);
2173 /* Walk the virtual use-def chain of VUSE until hitting the virtual operand
2174 TARGET or a statement clobbering the memory reference REF in which
2175 case false is returned. The walk starts with VUSE, one argument of PHI. */
2178 maybe_skip_until (gimple phi
, tree target
, ao_ref
*ref
,
2179 tree vuse
, unsigned int *cnt
, bitmap
*visited
,
2180 bool abort_on_visited
)
2182 basic_block bb
= gimple_bb (phi
);
2185 *visited
= BITMAP_ALLOC (NULL
);
2187 bitmap_set_bit (*visited
, SSA_NAME_VERSION (PHI_RESULT (phi
)));
2189 /* Walk until we hit the target. */
2190 while (vuse
!= target
)
2192 gimple def_stmt
= SSA_NAME_DEF_STMT (vuse
);
2193 /* Recurse for PHI nodes. */
2194 if (gimple_code (def_stmt
) == GIMPLE_PHI
)
2196 /* An already visited PHI node ends the walk successfully. */
2197 if (bitmap_bit_p (*visited
, SSA_NAME_VERSION (PHI_RESULT (def_stmt
))))
2198 return !abort_on_visited
;
2199 vuse
= get_continuation_for_phi (def_stmt
, ref
, cnt
,
2200 visited
, abort_on_visited
);
2205 else if (gimple_nop_p (def_stmt
))
2209 /* A clobbering statement or the end of the IL ends it failing. */
2211 if (stmt_may_clobber_ref_p_1 (def_stmt
, ref
))
2214 /* If we reach a new basic-block see if we already skipped it
2215 in a previous walk that ended successfully. */
2216 if (gimple_bb (def_stmt
) != bb
)
2218 if (!bitmap_set_bit (*visited
, SSA_NAME_VERSION (vuse
)))
2219 return !abort_on_visited
;
2220 bb
= gimple_bb (def_stmt
);
2222 vuse
= gimple_vuse (def_stmt
);
2227 /* For two PHI arguments ARG0 and ARG1 try to skip non-aliasing code
2228 until we hit the phi argument definition that dominates the other one.
2229 Return that, or NULL_TREE if there is no such definition. */
2232 get_continuation_for_phi_1 (gimple phi
, tree arg0
, tree arg1
,
2233 ao_ref
*ref
, unsigned int *cnt
,
2234 bitmap
*visited
, bool abort_on_visited
)
2236 gimple def0
= SSA_NAME_DEF_STMT (arg0
);
2237 gimple def1
= SSA_NAME_DEF_STMT (arg1
);
2242 else if (gimple_nop_p (def0
)
2243 || (!gimple_nop_p (def1
)
2244 && dominated_by_p (CDI_DOMINATORS
,
2245 gimple_bb (def1
), gimple_bb (def0
))))
2247 if (maybe_skip_until (phi
, arg0
, ref
, arg1
, cnt
,
2248 visited
, abort_on_visited
))
2251 else if (gimple_nop_p (def1
)
2252 || dominated_by_p (CDI_DOMINATORS
,
2253 gimple_bb (def0
), gimple_bb (def1
)))
2255 if (maybe_skip_until (phi
, arg1
, ref
, arg0
, cnt
,
2256 visited
, abort_on_visited
))
2259 /* Special case of a diamond:
2261 goto (cond) ? L1 : L2
2262 L1: store1 = ... #MEM_2 = vuse(MEM_1)
2264 L2: store2 = ... #MEM_3 = vuse(MEM_1)
2265 L3: MEM_4 = PHI<MEM_2, MEM_3>
2266 We were called with the PHI at L3, MEM_2 and MEM_3 don't
2267 dominate each other, but still we can easily skip this PHI node
2268 if we recognize that the vuse MEM operand is the same for both,
2269 and that we can skip both statements (they don't clobber us).
2270 This is still linear. Don't use maybe_skip_until, that might
2271 potentially be slow. */
2272 else if ((common_vuse
= gimple_vuse (def0
))
2273 && common_vuse
== gimple_vuse (def1
))
2276 if (!stmt_may_clobber_ref_p_1 (def0
, ref
)
2277 && !stmt_may_clobber_ref_p_1 (def1
, ref
))
2285 /* Starting from a PHI node for the virtual operand of the memory reference
2286 REF find a continuation virtual operand that allows to continue walking
2287 statements dominating PHI skipping only statements that cannot possibly
2288 clobber REF. Increments *CNT for each alias disambiguation done.
2289 Returns NULL_TREE if no suitable virtual operand can be found. */
2292 get_continuation_for_phi (gimple phi
, ao_ref
*ref
,
2293 unsigned int *cnt
, bitmap
*visited
,
2294 bool abort_on_visited
)
2296 unsigned nargs
= gimple_phi_num_args (phi
);
2298 /* Through a single-argument PHI we can simply look through. */
2300 return PHI_ARG_DEF (phi
, 0);
2302 /* For two or more arguments try to pairwise skip non-aliasing code
2303 until we hit the phi argument definition that dominates the other one. */
2304 else if (nargs
>= 2)
2309 /* Find a candidate for the virtual operand which definition
2310 dominates those of all others. */
2311 arg0
= PHI_ARG_DEF (phi
, 0);
2312 if (!SSA_NAME_IS_DEFAULT_DEF (arg0
))
2313 for (i
= 1; i
< nargs
; ++i
)
2315 arg1
= PHI_ARG_DEF (phi
, i
);
2316 if (SSA_NAME_IS_DEFAULT_DEF (arg1
))
2321 if (dominated_by_p (CDI_DOMINATORS
,
2322 gimple_bb (SSA_NAME_DEF_STMT (arg0
)),
2323 gimple_bb (SSA_NAME_DEF_STMT (arg1
))))
2327 /* Then pairwise reduce against the found candidate. */
2328 for (i
= 0; i
< nargs
; ++i
)
2330 arg1
= PHI_ARG_DEF (phi
, i
);
2331 arg0
= get_continuation_for_phi_1 (phi
, arg0
, arg1
, ref
,
2332 cnt
, visited
, abort_on_visited
);
2343 /* Based on the memory reference REF and its virtual use VUSE call
2344 WALKER for each virtual use that is equivalent to VUSE, including VUSE
2345 itself. That is, for each virtual use for which its defining statement
2346 does not clobber REF.
2348 WALKER is called with REF, the current virtual use and DATA. If
2349 WALKER returns non-NULL the walk stops and its result is returned.
2350 At the end of a non-successful walk NULL is returned.
2352 TRANSLATE if non-NULL is called with a pointer to REF, the virtual
2353 use which definition is a statement that may clobber REF and DATA.
2354 If TRANSLATE returns (void *)-1 the walk stops and NULL is returned.
2355 If TRANSLATE returns non-NULL the walk stops and its result is returned.
2356 If TRANSLATE returns NULL the walk continues and TRANSLATE is supposed
2357 to adjust REF and *DATA to make that valid.
2359 TODO: Cache the vector of equivalent vuses per ref, vuse pair. */
2362 walk_non_aliased_vuses (ao_ref
*ref
, tree vuse
,
2363 void *(*walker
)(ao_ref
*, tree
, unsigned int, void *),
2364 void *(*translate
)(ao_ref
*, tree
, void *), void *data
)
2366 bitmap visited
= NULL
;
2368 unsigned int cnt
= 0;
2369 bool translated
= false;
2371 timevar_push (TV_ALIAS_STMT_WALK
);
2377 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
2378 res
= (*walker
) (ref
, vuse
, cnt
, data
);
2380 if (res
== (void *)-1)
2385 /* Lookup succeeded. */
2386 else if (res
!= NULL
)
2389 def_stmt
= SSA_NAME_DEF_STMT (vuse
);
2390 if (gimple_nop_p (def_stmt
))
2392 else if (gimple_code (def_stmt
) == GIMPLE_PHI
)
2393 vuse
= get_continuation_for_phi (def_stmt
, ref
, &cnt
,
2394 &visited
, translated
);
2398 if (stmt_may_clobber_ref_p_1 (def_stmt
, ref
))
2402 res
= (*translate
) (ref
, vuse
, data
);
2403 /* Failed lookup and translation. */
2404 if (res
== (void *)-1)
2409 /* Lookup succeeded. */
2410 else if (res
!= NULL
)
2412 /* Translation succeeded, continue walking. */
2415 vuse
= gimple_vuse (def_stmt
);
2421 BITMAP_FREE (visited
);
2423 timevar_pop (TV_ALIAS_STMT_WALK
);
2429 /* Based on the memory reference REF call WALKER for each vdef which
2430 defining statement may clobber REF, starting with VDEF. If REF
2431 is NULL_TREE, each defining statement is visited.
2433 WALKER is called with REF, the current vdef and DATA. If WALKER
2434 returns true the walk is stopped, otherwise it continues.
2436 At PHI nodes walk_aliased_vdefs forks into one walk for reach
2437 PHI argument (but only one walk continues on merge points), the
2438 return value is true if any of the walks was successful.
2440 The function returns the number of statements walked. */
2443 walk_aliased_vdefs_1 (ao_ref
*ref
, tree vdef
,
2444 bool (*walker
)(ao_ref
*, tree
, void *), void *data
,
2445 bitmap
*visited
, unsigned int cnt
)
2449 gimple def_stmt
= SSA_NAME_DEF_STMT (vdef
);
2452 && !bitmap_set_bit (*visited
, SSA_NAME_VERSION (vdef
)))
2455 if (gimple_nop_p (def_stmt
))
2457 else if (gimple_code (def_stmt
) == GIMPLE_PHI
)
2461 *visited
= BITMAP_ALLOC (NULL
);
2462 for (i
= 0; i
< gimple_phi_num_args (def_stmt
); ++i
)
2463 cnt
+= walk_aliased_vdefs_1 (ref
, gimple_phi_arg_def (def_stmt
, i
),
2464 walker
, data
, visited
, 0);
2468 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
2471 || stmt_may_clobber_ref_p_1 (def_stmt
, ref
))
2472 && (*walker
) (ref
, vdef
, data
))
2475 vdef
= gimple_vuse (def_stmt
);
2481 walk_aliased_vdefs (ao_ref
*ref
, tree vdef
,
2482 bool (*walker
)(ao_ref
*, tree
, void *), void *data
,
2485 bitmap local_visited
= NULL
;
2488 timevar_push (TV_ALIAS_STMT_WALK
);
2490 ret
= walk_aliased_vdefs_1 (ref
, vdef
, walker
, data
,
2491 visited
? visited
: &local_visited
, 0);
2493 BITMAP_FREE (local_visited
);
2495 timevar_pop (TV_ALIAS_STMT_WALK
);