Add option for whether ceil etc. can raise "inexact", adjust x86 conditions.
[official-gcc.git] / gcc / tree-ssa-alias.c
blobb663ddfb0d5097b34d58cd14dba8e9a4bce4d24a
1 /* Alias analysis for trees.
2 Copyright (C) 2004-2016 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "backend.h"
25 #include "target.h"
26 #include "rtl.h"
27 #include "tree.h"
28 #include "gimple.h"
29 #include "timevar.h" /* for TV_ALIAS_STMT_WALK */
30 #include "ssa.h"
31 #include "cgraph.h"
32 #include "tree-pretty-print.h"
33 #include "alias.h"
34 #include "fold-const.h"
36 #include "langhooks.h"
37 #include "dumpfile.h"
38 #include "tree-eh.h"
39 #include "tree-dfa.h"
40 #include "ipa-reference.h"
42 /* Broad overview of how alias analysis on gimple works:
44 Statements clobbering or using memory are linked through the
45 virtual operand factored use-def chain. The virtual operand
46 is unique per function, its symbol is accessible via gimple_vop (cfun).
47 Virtual operands are used for efficiently walking memory statements
48 in the gimple IL and are useful for things like value-numbering as
49 a generation count for memory references.
51 SSA_NAME pointers may have associated points-to information
52 accessible via the SSA_NAME_PTR_INFO macro. Flow-insensitive
53 points-to information is (re-)computed by the TODO_rebuild_alias
54 pass manager todo. Points-to information is also used for more
55 precise tracking of call-clobbered and call-used variables and
56 related disambiguations.
58 This file contains functions for disambiguating memory references,
59 the so called alias-oracle and tools for walking of the gimple IL.
61 The main alias-oracle entry-points are
63 bool stmt_may_clobber_ref_p (gimple *, tree)
65 This function queries if a statement may invalidate (parts of)
66 the memory designated by the reference tree argument.
68 bool ref_maybe_used_by_stmt_p (gimple *, tree)
70 This function queries if a statement may need (parts of) the
71 memory designated by the reference tree argument.
73 There are variants of these functions that only handle the call
74 part of a statement, call_may_clobber_ref_p and ref_maybe_used_by_call_p.
75 Note that these do not disambiguate against a possible call lhs.
77 bool refs_may_alias_p (tree, tree)
79 This function tries to disambiguate two reference trees.
81 bool ptr_deref_may_alias_global_p (tree)
83 This function queries if dereferencing a pointer variable may
84 alias global memory.
86 More low-level disambiguators are available and documented in
87 this file. Low-level disambiguators dealing with points-to
88 information are in tree-ssa-structalias.c. */
91 /* Query statistics for the different low-level disambiguators.
92 A high-level query may trigger multiple of them. */
94 static struct {
95 unsigned HOST_WIDE_INT refs_may_alias_p_may_alias;
96 unsigned HOST_WIDE_INT refs_may_alias_p_no_alias;
97 unsigned HOST_WIDE_INT ref_maybe_used_by_call_p_may_alias;
98 unsigned HOST_WIDE_INT ref_maybe_used_by_call_p_no_alias;
99 unsigned HOST_WIDE_INT call_may_clobber_ref_p_may_alias;
100 unsigned HOST_WIDE_INT call_may_clobber_ref_p_no_alias;
101 } alias_stats;
103 void
104 dump_alias_stats (FILE *s)
106 fprintf (s, "\nAlias oracle query stats:\n");
107 fprintf (s, " refs_may_alias_p: "
108 HOST_WIDE_INT_PRINT_DEC" disambiguations, "
109 HOST_WIDE_INT_PRINT_DEC" queries\n",
110 alias_stats.refs_may_alias_p_no_alias,
111 alias_stats.refs_may_alias_p_no_alias
112 + alias_stats.refs_may_alias_p_may_alias);
113 fprintf (s, " ref_maybe_used_by_call_p: "
114 HOST_WIDE_INT_PRINT_DEC" disambiguations, "
115 HOST_WIDE_INT_PRINT_DEC" queries\n",
116 alias_stats.ref_maybe_used_by_call_p_no_alias,
117 alias_stats.refs_may_alias_p_no_alias
118 + alias_stats.ref_maybe_used_by_call_p_may_alias);
119 fprintf (s, " call_may_clobber_ref_p: "
120 HOST_WIDE_INT_PRINT_DEC" disambiguations, "
121 HOST_WIDE_INT_PRINT_DEC" queries\n",
122 alias_stats.call_may_clobber_ref_p_no_alias,
123 alias_stats.call_may_clobber_ref_p_no_alias
124 + alias_stats.call_may_clobber_ref_p_may_alias);
125 dump_alias_stats_in_alias_c (s);
129 /* Return true, if dereferencing PTR may alias with a global variable. */
131 bool
132 ptr_deref_may_alias_global_p (tree ptr)
134 struct ptr_info_def *pi;
136 /* If we end up with a pointer constant here that may point
137 to global memory. */
138 if (TREE_CODE (ptr) != SSA_NAME)
139 return true;
141 pi = SSA_NAME_PTR_INFO (ptr);
143 /* If we do not have points-to information for this variable,
144 we have to punt. */
145 if (!pi)
146 return true;
148 /* ??? This does not use TBAA to prune globals ptr may not access. */
149 return pt_solution_includes_global (&pi->pt);
152 /* Return true if dereferencing PTR may alias DECL.
153 The caller is responsible for applying TBAA to see if PTR
154 may access DECL at all. */
156 static bool
157 ptr_deref_may_alias_decl_p (tree ptr, tree decl)
159 struct ptr_info_def *pi;
161 /* Conversions are irrelevant for points-to information and
162 data-dependence analysis can feed us those. */
163 STRIP_NOPS (ptr);
165 /* Anything we do not explicilty handle aliases. */
166 if ((TREE_CODE (ptr) != SSA_NAME
167 && TREE_CODE (ptr) != ADDR_EXPR
168 && TREE_CODE (ptr) != POINTER_PLUS_EXPR)
169 || !POINTER_TYPE_P (TREE_TYPE (ptr))
170 || (TREE_CODE (decl) != VAR_DECL
171 && TREE_CODE (decl) != PARM_DECL
172 && TREE_CODE (decl) != RESULT_DECL))
173 return true;
175 /* Disregard pointer offsetting. */
176 if (TREE_CODE (ptr) == POINTER_PLUS_EXPR)
180 ptr = TREE_OPERAND (ptr, 0);
182 while (TREE_CODE (ptr) == POINTER_PLUS_EXPR);
183 return ptr_deref_may_alias_decl_p (ptr, decl);
186 /* ADDR_EXPR pointers either just offset another pointer or directly
187 specify the pointed-to set. */
188 if (TREE_CODE (ptr) == ADDR_EXPR)
190 tree base = get_base_address (TREE_OPERAND (ptr, 0));
191 if (base
192 && (TREE_CODE (base) == MEM_REF
193 || TREE_CODE (base) == TARGET_MEM_REF))
194 ptr = TREE_OPERAND (base, 0);
195 else if (base
196 && DECL_P (base))
197 return compare_base_decls (base, decl) != 0;
198 else if (base
199 && CONSTANT_CLASS_P (base))
200 return false;
201 else
202 return true;
205 /* Non-aliased variables can not be pointed to. */
206 if (!may_be_aliased (decl))
207 return false;
209 /* If we do not have useful points-to information for this pointer
210 we cannot disambiguate anything else. */
211 pi = SSA_NAME_PTR_INFO (ptr);
212 if (!pi)
213 return true;
215 return pt_solution_includes (&pi->pt, decl);
218 /* Return true if dereferenced PTR1 and PTR2 may alias.
219 The caller is responsible for applying TBAA to see if accesses
220 through PTR1 and PTR2 may conflict at all. */
222 bool
223 ptr_derefs_may_alias_p (tree ptr1, tree ptr2)
225 struct ptr_info_def *pi1, *pi2;
227 /* Conversions are irrelevant for points-to information and
228 data-dependence analysis can feed us those. */
229 STRIP_NOPS (ptr1);
230 STRIP_NOPS (ptr2);
232 /* Disregard pointer offsetting. */
233 if (TREE_CODE (ptr1) == POINTER_PLUS_EXPR)
237 ptr1 = TREE_OPERAND (ptr1, 0);
239 while (TREE_CODE (ptr1) == POINTER_PLUS_EXPR);
240 return ptr_derefs_may_alias_p (ptr1, ptr2);
242 if (TREE_CODE (ptr2) == POINTER_PLUS_EXPR)
246 ptr2 = TREE_OPERAND (ptr2, 0);
248 while (TREE_CODE (ptr2) == POINTER_PLUS_EXPR);
249 return ptr_derefs_may_alias_p (ptr1, ptr2);
252 /* ADDR_EXPR pointers either just offset another pointer or directly
253 specify the pointed-to set. */
254 if (TREE_CODE (ptr1) == ADDR_EXPR)
256 tree base = get_base_address (TREE_OPERAND (ptr1, 0));
257 if (base
258 && (TREE_CODE (base) == MEM_REF
259 || TREE_CODE (base) == TARGET_MEM_REF))
260 return ptr_derefs_may_alias_p (TREE_OPERAND (base, 0), ptr2);
261 else if (base
262 && DECL_P (base))
263 return ptr_deref_may_alias_decl_p (ptr2, base);
264 else
265 return true;
267 if (TREE_CODE (ptr2) == ADDR_EXPR)
269 tree base = get_base_address (TREE_OPERAND (ptr2, 0));
270 if (base
271 && (TREE_CODE (base) == MEM_REF
272 || TREE_CODE (base) == TARGET_MEM_REF))
273 return ptr_derefs_may_alias_p (ptr1, TREE_OPERAND (base, 0));
274 else if (base
275 && DECL_P (base))
276 return ptr_deref_may_alias_decl_p (ptr1, base);
277 else
278 return true;
281 /* From here we require SSA name pointers. Anything else aliases. */
282 if (TREE_CODE (ptr1) != SSA_NAME
283 || TREE_CODE (ptr2) != SSA_NAME
284 || !POINTER_TYPE_P (TREE_TYPE (ptr1))
285 || !POINTER_TYPE_P (TREE_TYPE (ptr2)))
286 return true;
288 /* We may end up with two empty points-to solutions for two same pointers.
289 In this case we still want to say both pointers alias, so shortcut
290 that here. */
291 if (ptr1 == ptr2)
292 return true;
294 /* If we do not have useful points-to information for either pointer
295 we cannot disambiguate anything else. */
296 pi1 = SSA_NAME_PTR_INFO (ptr1);
297 pi2 = SSA_NAME_PTR_INFO (ptr2);
298 if (!pi1 || !pi2)
299 return true;
301 /* ??? This does not use TBAA to prune decls from the intersection
302 that not both pointers may access. */
303 return pt_solutions_intersect (&pi1->pt, &pi2->pt);
306 /* Return true if dereferencing PTR may alias *REF.
307 The caller is responsible for applying TBAA to see if PTR
308 may access *REF at all. */
310 static bool
311 ptr_deref_may_alias_ref_p_1 (tree ptr, ao_ref *ref)
313 tree base = ao_ref_base (ref);
315 if (TREE_CODE (base) == MEM_REF
316 || TREE_CODE (base) == TARGET_MEM_REF)
317 return ptr_derefs_may_alias_p (ptr, TREE_OPERAND (base, 0));
318 else if (DECL_P (base))
319 return ptr_deref_may_alias_decl_p (ptr, base);
321 return true;
324 /* Returns true if PTR1 and PTR2 compare unequal because of points-to. */
326 bool
327 ptrs_compare_unequal (tree ptr1, tree ptr2)
329 /* First resolve the pointers down to a SSA name pointer base or
330 a VAR_DECL, PARM_DECL or RESULT_DECL. This explicitely does
331 not yet try to handle LABEL_DECLs, FUNCTION_DECLs, CONST_DECLs
332 or STRING_CSTs which needs points-to adjustments to track them
333 in the points-to sets. */
334 tree obj1 = NULL_TREE;
335 tree obj2 = NULL_TREE;
336 if (TREE_CODE (ptr1) == ADDR_EXPR)
338 tree tem = get_base_address (TREE_OPERAND (ptr1, 0));
339 if (! tem)
340 return false;
341 if (TREE_CODE (tem) == VAR_DECL
342 || TREE_CODE (tem) == PARM_DECL
343 || TREE_CODE (tem) == RESULT_DECL)
344 obj1 = tem;
345 else if (TREE_CODE (tem) == MEM_REF)
346 ptr1 = TREE_OPERAND (tem, 0);
348 if (TREE_CODE (ptr2) == ADDR_EXPR)
350 tree tem = get_base_address (TREE_OPERAND (ptr2, 0));
351 if (! tem)
352 return false;
353 if (TREE_CODE (tem) == VAR_DECL
354 || TREE_CODE (tem) == PARM_DECL
355 || TREE_CODE (tem) == RESULT_DECL)
356 obj2 = tem;
357 else if (TREE_CODE (tem) == MEM_REF)
358 ptr2 = TREE_OPERAND (tem, 0);
361 if (obj1 && obj2)
362 /* Other code handles this correctly, no need to duplicate it here. */;
363 else if (obj1 && TREE_CODE (ptr2) == SSA_NAME)
365 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (ptr2);
366 /* We may not use restrict to optimize pointer comparisons.
367 See PR71062. So we have to assume that restrict-pointed-to
368 may be in fact obj1. */
369 if (!pi || pi->pt.vars_contains_restrict)
370 return false;
371 return !pt_solution_includes (&pi->pt, obj1);
373 else if (TREE_CODE (ptr1) == SSA_NAME && obj2)
375 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (ptr1);
376 if (!pi || pi->pt.vars_contains_restrict)
377 return false;
378 return !pt_solution_includes (&pi->pt, obj2);
381 /* ??? We'd like to handle ptr1 != NULL and ptr1 != ptr2
382 but those require pt.null to be conservatively correct. */
384 return false;
387 /* Returns whether reference REF to BASE may refer to global memory. */
389 static bool
390 ref_may_alias_global_p_1 (tree base)
392 if (DECL_P (base))
393 return is_global_var (base);
394 else if (TREE_CODE (base) == MEM_REF
395 || TREE_CODE (base) == TARGET_MEM_REF)
396 return ptr_deref_may_alias_global_p (TREE_OPERAND (base, 0));
397 return true;
400 bool
401 ref_may_alias_global_p (ao_ref *ref)
403 tree base = ao_ref_base (ref);
404 return ref_may_alias_global_p_1 (base);
407 bool
408 ref_may_alias_global_p (tree ref)
410 tree base = get_base_address (ref);
411 return ref_may_alias_global_p_1 (base);
414 /* Return true whether STMT may clobber global memory. */
416 bool
417 stmt_may_clobber_global_p (gimple *stmt)
419 tree lhs;
421 if (!gimple_vdef (stmt))
422 return false;
424 /* ??? We can ask the oracle whether an artificial pointer
425 dereference with a pointer with points-to information covering
426 all global memory (what about non-address taken memory?) maybe
427 clobbered by this call. As there is at the moment no convenient
428 way of doing that without generating garbage do some manual
429 checking instead.
430 ??? We could make a NULL ao_ref argument to the various
431 predicates special, meaning any global memory. */
433 switch (gimple_code (stmt))
435 case GIMPLE_ASSIGN:
436 lhs = gimple_assign_lhs (stmt);
437 return (TREE_CODE (lhs) != SSA_NAME
438 && ref_may_alias_global_p (lhs));
439 case GIMPLE_CALL:
440 return true;
441 default:
442 return true;
447 /* Dump alias information on FILE. */
449 void
450 dump_alias_info (FILE *file)
452 unsigned i;
453 const char *funcname
454 = lang_hooks.decl_printable_name (current_function_decl, 2);
455 tree var;
457 fprintf (file, "\n\nAlias information for %s\n\n", funcname);
459 fprintf (file, "Aliased symbols\n\n");
461 FOR_EACH_LOCAL_DECL (cfun, i, var)
463 if (may_be_aliased (var))
464 dump_variable (file, var);
467 fprintf (file, "\nCall clobber information\n");
469 fprintf (file, "\nESCAPED");
470 dump_points_to_solution (file, &cfun->gimple_df->escaped);
472 fprintf (file, "\n\nFlow-insensitive points-to information\n\n");
474 for (i = 1; i < num_ssa_names; i++)
476 tree ptr = ssa_name (i);
477 struct ptr_info_def *pi;
479 if (ptr == NULL_TREE
480 || !POINTER_TYPE_P (TREE_TYPE (ptr))
481 || SSA_NAME_IN_FREE_LIST (ptr))
482 continue;
484 pi = SSA_NAME_PTR_INFO (ptr);
485 if (pi)
486 dump_points_to_info_for (file, ptr);
489 fprintf (file, "\n");
493 /* Dump alias information on stderr. */
495 DEBUG_FUNCTION void
496 debug_alias_info (void)
498 dump_alias_info (stderr);
502 /* Dump the points-to set *PT into FILE. */
504 void
505 dump_points_to_solution (FILE *file, struct pt_solution *pt)
507 if (pt->anything)
508 fprintf (file, ", points-to anything");
510 if (pt->nonlocal)
511 fprintf (file, ", points-to non-local");
513 if (pt->escaped)
514 fprintf (file, ", points-to escaped");
516 if (pt->ipa_escaped)
517 fprintf (file, ", points-to unit escaped");
519 if (pt->null)
520 fprintf (file, ", points-to NULL");
522 if (pt->vars)
524 fprintf (file, ", points-to vars: ");
525 dump_decl_set (file, pt->vars);
526 if (pt->vars_contains_nonlocal
527 || pt->vars_contains_escaped
528 || pt->vars_contains_escaped_heap
529 || pt->vars_contains_restrict)
531 const char *comma = "";
532 fprintf (file, " (");
533 if (pt->vars_contains_nonlocal)
535 fprintf (file, "nonlocal");
536 comma = ", ";
538 if (pt->vars_contains_escaped)
540 fprintf (file, "%sescaped", comma);
541 comma = ", ";
543 if (pt->vars_contains_escaped_heap)
545 fprintf (file, "%sescaped heap", comma);
546 comma = ", ";
548 if (pt->vars_contains_restrict)
549 fprintf (file, "%srestrict", comma);
550 fprintf (file, ")");
556 /* Unified dump function for pt_solution. */
558 DEBUG_FUNCTION void
559 debug (pt_solution &ref)
561 dump_points_to_solution (stderr, &ref);
564 DEBUG_FUNCTION void
565 debug (pt_solution *ptr)
567 if (ptr)
568 debug (*ptr);
569 else
570 fprintf (stderr, "<nil>\n");
574 /* Dump points-to information for SSA_NAME PTR into FILE. */
576 void
577 dump_points_to_info_for (FILE *file, tree ptr)
579 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (ptr);
581 print_generic_expr (file, ptr, dump_flags);
583 if (pi)
584 dump_points_to_solution (file, &pi->pt);
585 else
586 fprintf (file, ", points-to anything");
588 fprintf (file, "\n");
592 /* Dump points-to information for VAR into stderr. */
594 DEBUG_FUNCTION void
595 debug_points_to_info_for (tree var)
597 dump_points_to_info_for (stderr, var);
601 /* Initializes the alias-oracle reference representation *R from REF. */
603 void
604 ao_ref_init (ao_ref *r, tree ref)
606 r->ref = ref;
607 r->base = NULL_TREE;
608 r->offset = 0;
609 r->size = -1;
610 r->max_size = -1;
611 r->ref_alias_set = -1;
612 r->base_alias_set = -1;
613 r->volatile_p = ref ? TREE_THIS_VOLATILE (ref) : false;
616 /* Returns the base object of the memory reference *REF. */
618 tree
619 ao_ref_base (ao_ref *ref)
621 bool reverse;
623 if (ref->base)
624 return ref->base;
625 ref->base = get_ref_base_and_extent (ref->ref, &ref->offset, &ref->size,
626 &ref->max_size, &reverse);
627 return ref->base;
630 /* Returns the base object alias set of the memory reference *REF. */
632 alias_set_type
633 ao_ref_base_alias_set (ao_ref *ref)
635 tree base_ref;
636 if (ref->base_alias_set != -1)
637 return ref->base_alias_set;
638 if (!ref->ref)
639 return 0;
640 base_ref = ref->ref;
641 while (handled_component_p (base_ref))
642 base_ref = TREE_OPERAND (base_ref, 0);
643 ref->base_alias_set = get_alias_set (base_ref);
644 return ref->base_alias_set;
647 /* Returns the reference alias set of the memory reference *REF. */
649 alias_set_type
650 ao_ref_alias_set (ao_ref *ref)
652 if (ref->ref_alias_set != -1)
653 return ref->ref_alias_set;
654 ref->ref_alias_set = get_alias_set (ref->ref);
655 return ref->ref_alias_set;
658 /* Init an alias-oracle reference representation from a gimple pointer
659 PTR and a gimple size SIZE in bytes. If SIZE is NULL_TREE then the
660 size is assumed to be unknown. The access is assumed to be only
661 to or after of the pointer target, not before it. */
663 void
664 ao_ref_init_from_ptr_and_size (ao_ref *ref, tree ptr, tree size)
666 HOST_WIDE_INT t, size_hwi, extra_offset = 0;
667 ref->ref = NULL_TREE;
668 if (TREE_CODE (ptr) == SSA_NAME)
670 gimple *stmt = SSA_NAME_DEF_STMT (ptr);
671 if (gimple_assign_single_p (stmt)
672 && gimple_assign_rhs_code (stmt) == ADDR_EXPR)
673 ptr = gimple_assign_rhs1 (stmt);
674 else if (is_gimple_assign (stmt)
675 && gimple_assign_rhs_code (stmt) == POINTER_PLUS_EXPR
676 && TREE_CODE (gimple_assign_rhs2 (stmt)) == INTEGER_CST)
678 ptr = gimple_assign_rhs1 (stmt);
679 extra_offset = BITS_PER_UNIT
680 * int_cst_value (gimple_assign_rhs2 (stmt));
684 if (TREE_CODE (ptr) == ADDR_EXPR)
686 ref->base = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &t);
687 if (ref->base)
688 ref->offset = BITS_PER_UNIT * t;
689 else
691 size = NULL_TREE;
692 ref->offset = 0;
693 ref->base = get_base_address (TREE_OPERAND (ptr, 0));
696 else
698 ref->base = build2 (MEM_REF, char_type_node,
699 ptr, null_pointer_node);
700 ref->offset = 0;
702 ref->offset += extra_offset;
703 if (size
704 && tree_fits_shwi_p (size)
705 && (size_hwi = tree_to_shwi (size)) <= HOST_WIDE_INT_MAX / BITS_PER_UNIT)
706 ref->max_size = ref->size = size_hwi * BITS_PER_UNIT;
707 else
708 ref->max_size = ref->size = -1;
709 ref->ref_alias_set = 0;
710 ref->base_alias_set = 0;
711 ref->volatile_p = false;
714 /* Return 1 if TYPE1 and TYPE2 are to be considered equivalent for the
715 purpose of TBAA. Return 0 if they are distinct and -1 if we cannot
716 decide. */
718 static inline int
719 same_type_for_tbaa (tree type1, tree type2)
721 type1 = TYPE_MAIN_VARIANT (type1);
722 type2 = TYPE_MAIN_VARIANT (type2);
724 /* If we would have to do structural comparison bail out. */
725 if (TYPE_STRUCTURAL_EQUALITY_P (type1)
726 || TYPE_STRUCTURAL_EQUALITY_P (type2))
727 return -1;
729 /* Compare the canonical types. */
730 if (TYPE_CANONICAL (type1) == TYPE_CANONICAL (type2))
731 return 1;
733 /* ??? Array types are not properly unified in all cases as we have
734 spurious changes in the index types for example. Removing this
735 causes all sorts of problems with the Fortran frontend. */
736 if (TREE_CODE (type1) == ARRAY_TYPE
737 && TREE_CODE (type2) == ARRAY_TYPE)
738 return -1;
740 /* ??? In Ada, an lvalue of an unconstrained type can be used to access an
741 object of one of its constrained subtypes, e.g. when a function with an
742 unconstrained parameter passed by reference is called on an object and
743 inlined. But, even in the case of a fixed size, type and subtypes are
744 not equivalent enough as to share the same TYPE_CANONICAL, since this
745 would mean that conversions between them are useless, whereas they are
746 not (e.g. type and subtypes can have different modes). So, in the end,
747 they are only guaranteed to have the same alias set. */
748 if (get_alias_set (type1) == get_alias_set (type2))
749 return -1;
751 /* The types are known to be not equal. */
752 return 0;
755 /* Determine if the two component references REF1 and REF2 which are
756 based on access types TYPE1 and TYPE2 and of which at least one is based
757 on an indirect reference may alias. REF2 is the only one that can
758 be a decl in which case REF2_IS_DECL is true.
759 REF1_ALIAS_SET, BASE1_ALIAS_SET, REF2_ALIAS_SET and BASE2_ALIAS_SET
760 are the respective alias sets. */
762 static bool
763 aliasing_component_refs_p (tree ref1,
764 alias_set_type ref1_alias_set,
765 alias_set_type base1_alias_set,
766 HOST_WIDE_INT offset1, HOST_WIDE_INT max_size1,
767 tree ref2,
768 alias_set_type ref2_alias_set,
769 alias_set_type base2_alias_set,
770 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2,
771 bool ref2_is_decl)
773 /* If one reference is a component references through pointers try to find a
774 common base and apply offset based disambiguation. This handles
775 for example
776 struct A { int i; int j; } *q;
777 struct B { struct A a; int k; } *p;
778 disambiguating q->i and p->a.j. */
779 tree base1, base2;
780 tree type1, type2;
781 tree *refp;
782 int same_p;
784 /* Choose bases and base types to search for. */
785 base1 = ref1;
786 while (handled_component_p (base1))
787 base1 = TREE_OPERAND (base1, 0);
788 type1 = TREE_TYPE (base1);
789 base2 = ref2;
790 while (handled_component_p (base2))
791 base2 = TREE_OPERAND (base2, 0);
792 type2 = TREE_TYPE (base2);
794 /* Now search for the type1 in the access path of ref2. This
795 would be a common base for doing offset based disambiguation on. */
796 refp = &ref2;
797 while (handled_component_p (*refp)
798 && same_type_for_tbaa (TREE_TYPE (*refp), type1) == 0)
799 refp = &TREE_OPERAND (*refp, 0);
800 same_p = same_type_for_tbaa (TREE_TYPE (*refp), type1);
801 /* If we couldn't compare types we have to bail out. */
802 if (same_p == -1)
803 return true;
804 else if (same_p == 1)
806 HOST_WIDE_INT offadj, sztmp, msztmp;
807 bool reverse;
808 get_ref_base_and_extent (*refp, &offadj, &sztmp, &msztmp, &reverse);
809 offset2 -= offadj;
810 get_ref_base_and_extent (base1, &offadj, &sztmp, &msztmp, &reverse);
811 offset1 -= offadj;
812 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
814 /* If we didn't find a common base, try the other way around. */
815 refp = &ref1;
816 while (handled_component_p (*refp)
817 && same_type_for_tbaa (TREE_TYPE (*refp), type2) == 0)
818 refp = &TREE_OPERAND (*refp, 0);
819 same_p = same_type_for_tbaa (TREE_TYPE (*refp), type2);
820 /* If we couldn't compare types we have to bail out. */
821 if (same_p == -1)
822 return true;
823 else if (same_p == 1)
825 HOST_WIDE_INT offadj, sztmp, msztmp;
826 bool reverse;
827 get_ref_base_and_extent (*refp, &offadj, &sztmp, &msztmp, &reverse);
828 offset1 -= offadj;
829 get_ref_base_and_extent (base2, &offadj, &sztmp, &msztmp, &reverse);
830 offset2 -= offadj;
831 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
834 /* If we have two type access paths B1.path1 and B2.path2 they may
835 only alias if either B1 is in B2.path2 or B2 is in B1.path1.
836 But we can still have a path that goes B1.path1...B2.path2 with
837 a part that we do not see. So we can only disambiguate now
838 if there is no B2 in the tail of path1 and no B1 on the
839 tail of path2. */
840 if (base1_alias_set == ref2_alias_set
841 || alias_set_subset_of (base1_alias_set, ref2_alias_set))
842 return true;
843 /* If this is ptr vs. decl then we know there is no ptr ... decl path. */
844 if (!ref2_is_decl)
845 return (base2_alias_set == ref1_alias_set
846 || alias_set_subset_of (base2_alias_set, ref1_alias_set));
847 return false;
850 /* Return true if we can determine that component references REF1 and REF2,
851 that are within a common DECL, cannot overlap. */
853 static bool
854 nonoverlapping_component_refs_of_decl_p (tree ref1, tree ref2)
856 auto_vec<tree, 16> component_refs1;
857 auto_vec<tree, 16> component_refs2;
859 /* Create the stack of handled components for REF1. */
860 while (handled_component_p (ref1))
862 component_refs1.safe_push (ref1);
863 ref1 = TREE_OPERAND (ref1, 0);
865 if (TREE_CODE (ref1) == MEM_REF)
867 if (!integer_zerop (TREE_OPERAND (ref1, 1)))
868 goto may_overlap;
869 ref1 = TREE_OPERAND (TREE_OPERAND (ref1, 0), 0);
872 /* Create the stack of handled components for REF2. */
873 while (handled_component_p (ref2))
875 component_refs2.safe_push (ref2);
876 ref2 = TREE_OPERAND (ref2, 0);
878 if (TREE_CODE (ref2) == MEM_REF)
880 if (!integer_zerop (TREE_OPERAND (ref2, 1)))
881 goto may_overlap;
882 ref2 = TREE_OPERAND (TREE_OPERAND (ref2, 0), 0);
885 /* Bases must be either same or uncomparable. */
886 gcc_checking_assert (ref1 == ref2
887 || (DECL_P (ref1) && DECL_P (ref2)
888 && compare_base_decls (ref1, ref2) != 0));
890 /* Pop the stacks in parallel and examine the COMPONENT_REFs of the same
891 rank. This is sufficient because we start from the same DECL and you
892 cannot reference several fields at a time with COMPONENT_REFs (unlike
893 with ARRAY_RANGE_REFs for arrays) so you always need the same number
894 of them to access a sub-component, unless you're in a union, in which
895 case the return value will precisely be false. */
896 while (true)
900 if (component_refs1.is_empty ())
901 goto may_overlap;
902 ref1 = component_refs1.pop ();
904 while (!RECORD_OR_UNION_TYPE_P (TREE_TYPE (TREE_OPERAND (ref1, 0))));
908 if (component_refs2.is_empty ())
909 goto may_overlap;
910 ref2 = component_refs2.pop ();
912 while (!RECORD_OR_UNION_TYPE_P (TREE_TYPE (TREE_OPERAND (ref2, 0))));
914 /* Beware of BIT_FIELD_REF. */
915 if (TREE_CODE (ref1) != COMPONENT_REF
916 || TREE_CODE (ref2) != COMPONENT_REF)
917 goto may_overlap;
919 tree field1 = TREE_OPERAND (ref1, 1);
920 tree field2 = TREE_OPERAND (ref2, 1);
922 /* ??? We cannot simply use the type of operand #0 of the refs here
923 as the Fortran compiler smuggles type punning into COMPONENT_REFs
924 for common blocks instead of using unions like everyone else. */
925 tree type1 = DECL_CONTEXT (field1);
926 tree type2 = DECL_CONTEXT (field2);
928 /* We cannot disambiguate fields in a union or qualified union. */
929 if (type1 != type2 || TREE_CODE (type1) != RECORD_TYPE)
930 goto may_overlap;
932 /* Different fields of the same record type cannot overlap.
933 ??? Bitfields can overlap at RTL level so punt on them. */
934 if (field1 != field2)
936 component_refs1.release ();
937 component_refs2.release ();
938 return !(DECL_BIT_FIELD (field1) && DECL_BIT_FIELD (field2));
942 may_overlap:
943 component_refs1.release ();
944 component_refs2.release ();
945 return false;
948 /* qsort compare function to sort FIELD_DECLs after their
949 DECL_FIELD_CONTEXT TYPE_UID. */
951 static inline int
952 ncr_compar (const void *field1_, const void *field2_)
954 const_tree field1 = *(const_tree *) const_cast <void *>(field1_);
955 const_tree field2 = *(const_tree *) const_cast <void *>(field2_);
956 unsigned int uid1 = TYPE_UID (DECL_FIELD_CONTEXT (field1));
957 unsigned int uid2 = TYPE_UID (DECL_FIELD_CONTEXT (field2));
958 if (uid1 < uid2)
959 return -1;
960 else if (uid1 > uid2)
961 return 1;
962 return 0;
965 /* Return true if we can determine that the fields referenced cannot
966 overlap for any pair of objects. */
968 static bool
969 nonoverlapping_component_refs_p (const_tree x, const_tree y)
971 if (!flag_strict_aliasing
972 || !x || !y
973 || TREE_CODE (x) != COMPONENT_REF
974 || TREE_CODE (y) != COMPONENT_REF)
975 return false;
977 auto_vec<const_tree, 16> fieldsx;
978 while (TREE_CODE (x) == COMPONENT_REF)
980 tree field = TREE_OPERAND (x, 1);
981 tree type = DECL_FIELD_CONTEXT (field);
982 if (TREE_CODE (type) == RECORD_TYPE)
983 fieldsx.safe_push (field);
984 x = TREE_OPERAND (x, 0);
986 if (fieldsx.length () == 0)
987 return false;
988 auto_vec<const_tree, 16> fieldsy;
989 while (TREE_CODE (y) == COMPONENT_REF)
991 tree field = TREE_OPERAND (y, 1);
992 tree type = DECL_FIELD_CONTEXT (field);
993 if (TREE_CODE (type) == RECORD_TYPE)
994 fieldsy.safe_push (TREE_OPERAND (y, 1));
995 y = TREE_OPERAND (y, 0);
997 if (fieldsy.length () == 0)
998 return false;
1000 /* Most common case first. */
1001 if (fieldsx.length () == 1
1002 && fieldsy.length () == 1)
1003 return ((DECL_FIELD_CONTEXT (fieldsx[0])
1004 == DECL_FIELD_CONTEXT (fieldsy[0]))
1005 && fieldsx[0] != fieldsy[0]
1006 && !(DECL_BIT_FIELD (fieldsx[0]) && DECL_BIT_FIELD (fieldsy[0])));
1008 if (fieldsx.length () == 2)
1010 if (ncr_compar (&fieldsx[0], &fieldsx[1]) == 1)
1011 std::swap (fieldsx[0], fieldsx[1]);
1013 else
1014 fieldsx.qsort (ncr_compar);
1016 if (fieldsy.length () == 2)
1018 if (ncr_compar (&fieldsy[0], &fieldsy[1]) == 1)
1019 std::swap (fieldsy[0], fieldsy[1]);
1021 else
1022 fieldsy.qsort (ncr_compar);
1024 unsigned i = 0, j = 0;
1027 const_tree fieldx = fieldsx[i];
1028 const_tree fieldy = fieldsy[j];
1029 tree typex = DECL_FIELD_CONTEXT (fieldx);
1030 tree typey = DECL_FIELD_CONTEXT (fieldy);
1031 if (typex == typey)
1033 /* We're left with accessing different fields of a structure,
1034 no possible overlap, unless they are both bitfields. */
1035 if (fieldx != fieldy)
1036 return !(DECL_BIT_FIELD (fieldx) && DECL_BIT_FIELD (fieldy));
1038 if (TYPE_UID (typex) < TYPE_UID (typey))
1040 i++;
1041 if (i == fieldsx.length ())
1042 break;
1044 else
1046 j++;
1047 if (j == fieldsy.length ())
1048 break;
1051 while (1);
1053 return false;
1057 /* Return true if two memory references based on the variables BASE1
1058 and BASE2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
1059 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. REF1 and REF2
1060 if non-NULL are the complete memory reference trees. */
1062 static bool
1063 decl_refs_may_alias_p (tree ref1, tree base1,
1064 HOST_WIDE_INT offset1, HOST_WIDE_INT max_size1,
1065 tree ref2, tree base2,
1066 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2)
1068 gcc_checking_assert (DECL_P (base1) && DECL_P (base2));
1070 /* If both references are based on different variables, they cannot alias. */
1071 if (compare_base_decls (base1, base2) == 0)
1072 return false;
1074 /* If both references are based on the same variable, they cannot alias if
1075 the accesses do not overlap. */
1076 if (!ranges_overlap_p (offset1, max_size1, offset2, max_size2))
1077 return false;
1079 /* For components with variable position, the above test isn't sufficient,
1080 so we disambiguate component references manually. */
1081 if (ref1 && ref2
1082 && handled_component_p (ref1) && handled_component_p (ref2)
1083 && nonoverlapping_component_refs_of_decl_p (ref1, ref2))
1084 return false;
1086 return true;
1089 /* Return true if an indirect reference based on *PTR1 constrained
1090 to [OFFSET1, OFFSET1 + MAX_SIZE1) may alias a variable based on BASE2
1091 constrained to [OFFSET2, OFFSET2 + MAX_SIZE2). *PTR1 and BASE2 have
1092 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
1093 in which case they are computed on-demand. REF1 and REF2
1094 if non-NULL are the complete memory reference trees. */
1096 static bool
1097 indirect_ref_may_alias_decl_p (tree ref1 ATTRIBUTE_UNUSED, tree base1,
1098 HOST_WIDE_INT offset1,
1099 HOST_WIDE_INT max_size1 ATTRIBUTE_UNUSED,
1100 alias_set_type ref1_alias_set,
1101 alias_set_type base1_alias_set,
1102 tree ref2 ATTRIBUTE_UNUSED, tree base2,
1103 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2,
1104 alias_set_type ref2_alias_set,
1105 alias_set_type base2_alias_set, bool tbaa_p)
1107 tree ptr1;
1108 tree ptrtype1, dbase2;
1109 HOST_WIDE_INT offset1p = offset1, offset2p = offset2;
1110 HOST_WIDE_INT doffset1, doffset2;
1112 gcc_checking_assert ((TREE_CODE (base1) == MEM_REF
1113 || TREE_CODE (base1) == TARGET_MEM_REF)
1114 && DECL_P (base2));
1116 ptr1 = TREE_OPERAND (base1, 0);
1118 /* The offset embedded in MEM_REFs can be negative. Bias them
1119 so that the resulting offset adjustment is positive. */
1120 offset_int moff = mem_ref_offset (base1);
1121 moff <<= LOG2_BITS_PER_UNIT;
1122 if (wi::neg_p (moff))
1123 offset2p += (-moff).to_short_addr ();
1124 else
1125 offset1p += moff.to_short_addr ();
1127 /* If only one reference is based on a variable, they cannot alias if
1128 the pointer access is beyond the extent of the variable access.
1129 (the pointer base cannot validly point to an offset less than zero
1130 of the variable).
1131 ??? IVOPTs creates bases that do not honor this restriction,
1132 so do not apply this optimization for TARGET_MEM_REFs. */
1133 if (TREE_CODE (base1) != TARGET_MEM_REF
1134 && !ranges_overlap_p (MAX (0, offset1p), -1, offset2p, max_size2))
1135 return false;
1136 /* They also cannot alias if the pointer may not point to the decl. */
1137 if (!ptr_deref_may_alias_decl_p (ptr1, base2))
1138 return false;
1140 /* Disambiguations that rely on strict aliasing rules follow. */
1141 if (!flag_strict_aliasing || !tbaa_p)
1142 return true;
1144 ptrtype1 = TREE_TYPE (TREE_OPERAND (base1, 1));
1146 /* If the alias set for a pointer access is zero all bets are off. */
1147 if (base1_alias_set == 0)
1148 return true;
1150 /* When we are trying to disambiguate an access with a pointer dereference
1151 as base versus one with a decl as base we can use both the size
1152 of the decl and its dynamic type for extra disambiguation.
1153 ??? We do not know anything about the dynamic type of the decl
1154 other than that its alias-set contains base2_alias_set as a subset
1155 which does not help us here. */
1156 /* As we know nothing useful about the dynamic type of the decl just
1157 use the usual conflict check rather than a subset test.
1158 ??? We could introduce -fvery-strict-aliasing when the language
1159 does not allow decls to have a dynamic type that differs from their
1160 static type. Then we can check
1161 !alias_set_subset_of (base1_alias_set, base2_alias_set) instead. */
1162 if (base1_alias_set != base2_alias_set
1163 && !alias_sets_conflict_p (base1_alias_set, base2_alias_set))
1164 return false;
1165 /* If the size of the access relevant for TBAA through the pointer
1166 is bigger than the size of the decl we can't possibly access the
1167 decl via that pointer. */
1168 if (DECL_SIZE (base2) && COMPLETE_TYPE_P (TREE_TYPE (ptrtype1))
1169 && TREE_CODE (DECL_SIZE (base2)) == INTEGER_CST
1170 && TREE_CODE (TYPE_SIZE (TREE_TYPE (ptrtype1))) == INTEGER_CST
1171 /* ??? This in turn may run afoul when a decl of type T which is
1172 a member of union type U is accessed through a pointer to
1173 type U and sizeof T is smaller than sizeof U. */
1174 && TREE_CODE (TREE_TYPE (ptrtype1)) != UNION_TYPE
1175 && TREE_CODE (TREE_TYPE (ptrtype1)) != QUAL_UNION_TYPE
1176 && tree_int_cst_lt (DECL_SIZE (base2), TYPE_SIZE (TREE_TYPE (ptrtype1))))
1177 return false;
1179 if (!ref2)
1180 return true;
1182 /* If the decl is accessed via a MEM_REF, reconstruct the base
1183 we can use for TBAA and an appropriately adjusted offset. */
1184 dbase2 = ref2;
1185 while (handled_component_p (dbase2))
1186 dbase2 = TREE_OPERAND (dbase2, 0);
1187 doffset1 = offset1;
1188 doffset2 = offset2;
1189 if (TREE_CODE (dbase2) == MEM_REF
1190 || TREE_CODE (dbase2) == TARGET_MEM_REF)
1192 offset_int moff = mem_ref_offset (dbase2);
1193 moff <<= LOG2_BITS_PER_UNIT;
1194 if (wi::neg_p (moff))
1195 doffset1 -= (-moff).to_short_addr ();
1196 else
1197 doffset2 -= moff.to_short_addr ();
1200 /* If either reference is view-converted, give up now. */
1201 if (same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) != 1
1202 || same_type_for_tbaa (TREE_TYPE (dbase2), TREE_TYPE (base2)) != 1)
1203 return true;
1205 /* If both references are through the same type, they do not alias
1206 if the accesses do not overlap. This does extra disambiguation
1207 for mixed/pointer accesses but requires strict aliasing.
1208 For MEM_REFs we require that the component-ref offset we computed
1209 is relative to the start of the type which we ensure by
1210 comparing rvalue and access type and disregarding the constant
1211 pointer offset. */
1212 if ((TREE_CODE (base1) != TARGET_MEM_REF
1213 || (!TMR_INDEX (base1) && !TMR_INDEX2 (base1)))
1214 && same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (dbase2)) == 1)
1215 return ranges_overlap_p (doffset1, max_size1, doffset2, max_size2);
1217 if (ref1 && ref2
1218 && nonoverlapping_component_refs_p (ref1, ref2))
1219 return false;
1221 /* Do access-path based disambiguation. */
1222 if (ref1 && ref2
1223 && (handled_component_p (ref1) || handled_component_p (ref2)))
1224 return aliasing_component_refs_p (ref1,
1225 ref1_alias_set, base1_alias_set,
1226 offset1, max_size1,
1227 ref2,
1228 ref2_alias_set, base2_alias_set,
1229 offset2, max_size2, true);
1231 return true;
1234 /* Return true if two indirect references based on *PTR1
1235 and *PTR2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
1236 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. *PTR1 and *PTR2 have
1237 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
1238 in which case they are computed on-demand. REF1 and REF2
1239 if non-NULL are the complete memory reference trees. */
1241 static bool
1242 indirect_refs_may_alias_p (tree ref1 ATTRIBUTE_UNUSED, tree base1,
1243 HOST_WIDE_INT offset1, HOST_WIDE_INT max_size1,
1244 alias_set_type ref1_alias_set,
1245 alias_set_type base1_alias_set,
1246 tree ref2 ATTRIBUTE_UNUSED, tree base2,
1247 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2,
1248 alias_set_type ref2_alias_set,
1249 alias_set_type base2_alias_set, bool tbaa_p)
1251 tree ptr1;
1252 tree ptr2;
1253 tree ptrtype1, ptrtype2;
1255 gcc_checking_assert ((TREE_CODE (base1) == MEM_REF
1256 || TREE_CODE (base1) == TARGET_MEM_REF)
1257 && (TREE_CODE (base2) == MEM_REF
1258 || TREE_CODE (base2) == TARGET_MEM_REF));
1260 ptr1 = TREE_OPERAND (base1, 0);
1261 ptr2 = TREE_OPERAND (base2, 0);
1263 /* If both bases are based on pointers they cannot alias if they may not
1264 point to the same memory object or if they point to the same object
1265 and the accesses do not overlap. */
1266 if ((!cfun || gimple_in_ssa_p (cfun))
1267 && operand_equal_p (ptr1, ptr2, 0)
1268 && (((TREE_CODE (base1) != TARGET_MEM_REF
1269 || (!TMR_INDEX (base1) && !TMR_INDEX2 (base1)))
1270 && (TREE_CODE (base2) != TARGET_MEM_REF
1271 || (!TMR_INDEX (base2) && !TMR_INDEX2 (base2))))
1272 || (TREE_CODE (base1) == TARGET_MEM_REF
1273 && TREE_CODE (base2) == TARGET_MEM_REF
1274 && (TMR_STEP (base1) == TMR_STEP (base2)
1275 || (TMR_STEP (base1) && TMR_STEP (base2)
1276 && operand_equal_p (TMR_STEP (base1),
1277 TMR_STEP (base2), 0)))
1278 && (TMR_INDEX (base1) == TMR_INDEX (base2)
1279 || (TMR_INDEX (base1) && TMR_INDEX (base2)
1280 && operand_equal_p (TMR_INDEX (base1),
1281 TMR_INDEX (base2), 0)))
1282 && (TMR_INDEX2 (base1) == TMR_INDEX2 (base2)
1283 || (TMR_INDEX2 (base1) && TMR_INDEX2 (base2)
1284 && operand_equal_p (TMR_INDEX2 (base1),
1285 TMR_INDEX2 (base2), 0))))))
1287 offset_int moff;
1288 /* The offset embedded in MEM_REFs can be negative. Bias them
1289 so that the resulting offset adjustment is positive. */
1290 moff = mem_ref_offset (base1);
1291 moff <<= LOG2_BITS_PER_UNIT;
1292 if (wi::neg_p (moff))
1293 offset2 += (-moff).to_short_addr ();
1294 else
1295 offset1 += moff.to_shwi ();
1296 moff = mem_ref_offset (base2);
1297 moff <<= LOG2_BITS_PER_UNIT;
1298 if (wi::neg_p (moff))
1299 offset1 += (-moff).to_short_addr ();
1300 else
1301 offset2 += moff.to_short_addr ();
1302 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
1304 if (!ptr_derefs_may_alias_p (ptr1, ptr2))
1305 return false;
1307 /* Disambiguations that rely on strict aliasing rules follow. */
1308 if (!flag_strict_aliasing || !tbaa_p)
1309 return true;
1311 ptrtype1 = TREE_TYPE (TREE_OPERAND (base1, 1));
1312 ptrtype2 = TREE_TYPE (TREE_OPERAND (base2, 1));
1314 /* If the alias set for a pointer access is zero all bets are off. */
1315 if (base1_alias_set == 0
1316 || base2_alias_set == 0)
1317 return true;
1319 /* If both references are through the same type, they do not alias
1320 if the accesses do not overlap. This does extra disambiguation
1321 for mixed/pointer accesses but requires strict aliasing. */
1322 if ((TREE_CODE (base1) != TARGET_MEM_REF
1323 || (!TMR_INDEX (base1) && !TMR_INDEX2 (base1)))
1324 && (TREE_CODE (base2) != TARGET_MEM_REF
1325 || (!TMR_INDEX (base2) && !TMR_INDEX2 (base2)))
1326 && same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) == 1
1327 && same_type_for_tbaa (TREE_TYPE (base2), TREE_TYPE (ptrtype2)) == 1
1328 && same_type_for_tbaa (TREE_TYPE (ptrtype1),
1329 TREE_TYPE (ptrtype2)) == 1)
1330 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
1332 /* Do type-based disambiguation. */
1333 if (base1_alias_set != base2_alias_set
1334 && !alias_sets_conflict_p (base1_alias_set, base2_alias_set))
1335 return false;
1337 /* If either reference is view-converted, give up now. */
1338 if (same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) != 1
1339 || same_type_for_tbaa (TREE_TYPE (base2), TREE_TYPE (ptrtype2)) != 1)
1340 return true;
1342 if (ref1 && ref2
1343 && nonoverlapping_component_refs_p (ref1, ref2))
1344 return false;
1346 /* Do access-path based disambiguation. */
1347 if (ref1 && ref2
1348 && (handled_component_p (ref1) || handled_component_p (ref2)))
1349 return aliasing_component_refs_p (ref1,
1350 ref1_alias_set, base1_alias_set,
1351 offset1, max_size1,
1352 ref2,
1353 ref2_alias_set, base2_alias_set,
1354 offset2, max_size2, false);
1356 return true;
1359 /* Return true, if the two memory references REF1 and REF2 may alias. */
1361 bool
1362 refs_may_alias_p_1 (ao_ref *ref1, ao_ref *ref2, bool tbaa_p)
1364 tree base1, base2;
1365 HOST_WIDE_INT offset1 = 0, offset2 = 0;
1366 HOST_WIDE_INT max_size1 = -1, max_size2 = -1;
1367 bool var1_p, var2_p, ind1_p, ind2_p;
1369 gcc_checking_assert ((!ref1->ref
1370 || TREE_CODE (ref1->ref) == SSA_NAME
1371 || DECL_P (ref1->ref)
1372 || TREE_CODE (ref1->ref) == STRING_CST
1373 || handled_component_p (ref1->ref)
1374 || TREE_CODE (ref1->ref) == MEM_REF
1375 || TREE_CODE (ref1->ref) == TARGET_MEM_REF)
1376 && (!ref2->ref
1377 || TREE_CODE (ref2->ref) == SSA_NAME
1378 || DECL_P (ref2->ref)
1379 || TREE_CODE (ref2->ref) == STRING_CST
1380 || handled_component_p (ref2->ref)
1381 || TREE_CODE (ref2->ref) == MEM_REF
1382 || TREE_CODE (ref2->ref) == TARGET_MEM_REF));
1384 /* Decompose the references into their base objects and the access. */
1385 base1 = ao_ref_base (ref1);
1386 offset1 = ref1->offset;
1387 max_size1 = ref1->max_size;
1388 base2 = ao_ref_base (ref2);
1389 offset2 = ref2->offset;
1390 max_size2 = ref2->max_size;
1392 /* We can end up with registers or constants as bases for example from
1393 *D.1663_44 = VIEW_CONVERT_EXPR<struct DB_LSN>(__tmp$B0F64_59);
1394 which is seen as a struct copy. */
1395 if (TREE_CODE (base1) == SSA_NAME
1396 || TREE_CODE (base1) == CONST_DECL
1397 || TREE_CODE (base1) == CONSTRUCTOR
1398 || TREE_CODE (base1) == ADDR_EXPR
1399 || CONSTANT_CLASS_P (base1)
1400 || TREE_CODE (base2) == SSA_NAME
1401 || TREE_CODE (base2) == CONST_DECL
1402 || TREE_CODE (base2) == CONSTRUCTOR
1403 || TREE_CODE (base2) == ADDR_EXPR
1404 || CONSTANT_CLASS_P (base2))
1405 return false;
1407 /* We can end up referring to code via function and label decls.
1408 As we likely do not properly track code aliases conservatively
1409 bail out. */
1410 if (TREE_CODE (base1) == FUNCTION_DECL
1411 || TREE_CODE (base1) == LABEL_DECL
1412 || TREE_CODE (base2) == FUNCTION_DECL
1413 || TREE_CODE (base2) == LABEL_DECL)
1414 return true;
1416 /* Two volatile accesses always conflict. */
1417 if (ref1->volatile_p
1418 && ref2->volatile_p)
1419 return true;
1421 /* Defer to simple offset based disambiguation if we have
1422 references based on two decls. Do this before defering to
1423 TBAA to handle must-alias cases in conformance with the
1424 GCC extension of allowing type-punning through unions. */
1425 var1_p = DECL_P (base1);
1426 var2_p = DECL_P (base2);
1427 if (var1_p && var2_p)
1428 return decl_refs_may_alias_p (ref1->ref, base1, offset1, max_size1,
1429 ref2->ref, base2, offset2, max_size2);
1431 /* Handle restrict based accesses.
1432 ??? ao_ref_base strips inner MEM_REF [&decl], recover from that
1433 here. */
1434 tree rbase1 = base1;
1435 tree rbase2 = base2;
1436 if (var1_p)
1438 rbase1 = ref1->ref;
1439 if (rbase1)
1440 while (handled_component_p (rbase1))
1441 rbase1 = TREE_OPERAND (rbase1, 0);
1443 if (var2_p)
1445 rbase2 = ref2->ref;
1446 if (rbase2)
1447 while (handled_component_p (rbase2))
1448 rbase2 = TREE_OPERAND (rbase2, 0);
1450 if (rbase1 && rbase2
1451 && (TREE_CODE (base1) == MEM_REF || TREE_CODE (base1) == TARGET_MEM_REF)
1452 && (TREE_CODE (base2) == MEM_REF || TREE_CODE (base2) == TARGET_MEM_REF)
1453 /* If the accesses are in the same restrict clique... */
1454 && MR_DEPENDENCE_CLIQUE (base1) == MR_DEPENDENCE_CLIQUE (base2)
1455 /* But based on different pointers they do not alias. */
1456 && MR_DEPENDENCE_BASE (base1) != MR_DEPENDENCE_BASE (base2))
1457 return false;
1459 ind1_p = (TREE_CODE (base1) == MEM_REF
1460 || TREE_CODE (base1) == TARGET_MEM_REF);
1461 ind2_p = (TREE_CODE (base2) == MEM_REF
1462 || TREE_CODE (base2) == TARGET_MEM_REF);
1464 /* Canonicalize the pointer-vs-decl case. */
1465 if (ind1_p && var2_p)
1467 std::swap (offset1, offset2);
1468 std::swap (max_size1, max_size2);
1469 std::swap (base1, base2);
1470 std::swap (ref1, ref2);
1471 var1_p = true;
1472 ind1_p = false;
1473 var2_p = false;
1474 ind2_p = true;
1477 /* First defer to TBAA if possible. */
1478 if (tbaa_p
1479 && flag_strict_aliasing
1480 && !alias_sets_conflict_p (ao_ref_alias_set (ref1),
1481 ao_ref_alias_set (ref2)))
1482 return false;
1484 /* Dispatch to the pointer-vs-decl or pointer-vs-pointer disambiguators. */
1485 if (var1_p && ind2_p)
1486 return indirect_ref_may_alias_decl_p (ref2->ref, base2,
1487 offset2, max_size2,
1488 ao_ref_alias_set (ref2),
1489 ao_ref_base_alias_set (ref2),
1490 ref1->ref, base1,
1491 offset1, max_size1,
1492 ao_ref_alias_set (ref1),
1493 ao_ref_base_alias_set (ref1),
1494 tbaa_p);
1495 else if (ind1_p && ind2_p)
1496 return indirect_refs_may_alias_p (ref1->ref, base1,
1497 offset1, max_size1,
1498 ao_ref_alias_set (ref1),
1499 ao_ref_base_alias_set (ref1),
1500 ref2->ref, base2,
1501 offset2, max_size2,
1502 ao_ref_alias_set (ref2),
1503 ao_ref_base_alias_set (ref2),
1504 tbaa_p);
1506 gcc_unreachable ();
1509 static bool
1510 refs_may_alias_p (tree ref1, ao_ref *ref2)
1512 ao_ref r1;
1513 ao_ref_init (&r1, ref1);
1514 return refs_may_alias_p_1 (&r1, ref2, true);
1517 bool
1518 refs_may_alias_p (tree ref1, tree ref2)
1520 ao_ref r1, r2;
1521 bool res;
1522 ao_ref_init (&r1, ref1);
1523 ao_ref_init (&r2, ref2);
1524 res = refs_may_alias_p_1 (&r1, &r2, true);
1525 if (res)
1526 ++alias_stats.refs_may_alias_p_may_alias;
1527 else
1528 ++alias_stats.refs_may_alias_p_no_alias;
1529 return res;
1532 /* Returns true if there is a anti-dependence for the STORE that
1533 executes after the LOAD. */
1535 bool
1536 refs_anti_dependent_p (tree load, tree store)
1538 ao_ref r1, r2;
1539 ao_ref_init (&r1, load);
1540 ao_ref_init (&r2, store);
1541 return refs_may_alias_p_1 (&r1, &r2, false);
1544 /* Returns true if there is a output dependence for the stores
1545 STORE1 and STORE2. */
1547 bool
1548 refs_output_dependent_p (tree store1, tree store2)
1550 ao_ref r1, r2;
1551 ao_ref_init (&r1, store1);
1552 ao_ref_init (&r2, store2);
1553 return refs_may_alias_p_1 (&r1, &r2, false);
1556 /* If the call CALL may use the memory reference REF return true,
1557 otherwise return false. */
1559 static bool
1560 ref_maybe_used_by_call_p_1 (gcall *call, ao_ref *ref)
1562 tree base, callee;
1563 unsigned i;
1564 int flags = gimple_call_flags (call);
1566 /* Const functions without a static chain do not implicitly use memory. */
1567 if (!gimple_call_chain (call)
1568 && (flags & (ECF_CONST|ECF_NOVOPS)))
1569 goto process_args;
1571 base = ao_ref_base (ref);
1572 if (!base)
1573 return true;
1575 /* A call that is not without side-effects might involve volatile
1576 accesses and thus conflicts with all other volatile accesses. */
1577 if (ref->volatile_p)
1578 return true;
1580 /* If the reference is based on a decl that is not aliased the call
1581 cannot possibly use it. */
1582 if (DECL_P (base)
1583 && !may_be_aliased (base)
1584 /* But local statics can be used through recursion. */
1585 && !is_global_var (base))
1586 goto process_args;
1588 callee = gimple_call_fndecl (call);
1590 /* Handle those builtin functions explicitly that do not act as
1591 escape points. See tree-ssa-structalias.c:find_func_aliases
1592 for the list of builtins we might need to handle here. */
1593 if (callee != NULL_TREE
1594 && gimple_call_builtin_p (call, BUILT_IN_NORMAL))
1595 switch (DECL_FUNCTION_CODE (callee))
1597 /* All the following functions read memory pointed to by
1598 their second argument. strcat/strncat additionally
1599 reads memory pointed to by the first argument. */
1600 case BUILT_IN_STRCAT:
1601 case BUILT_IN_STRNCAT:
1603 ao_ref dref;
1604 ao_ref_init_from_ptr_and_size (&dref,
1605 gimple_call_arg (call, 0),
1606 NULL_TREE);
1607 if (refs_may_alias_p_1 (&dref, ref, false))
1608 return true;
1610 /* FALLTHRU */
1611 case BUILT_IN_STRCPY:
1612 case BUILT_IN_STRNCPY:
1613 case BUILT_IN_MEMCPY:
1614 case BUILT_IN_MEMMOVE:
1615 case BUILT_IN_MEMPCPY:
1616 case BUILT_IN_STPCPY:
1617 case BUILT_IN_STPNCPY:
1618 case BUILT_IN_TM_MEMCPY:
1619 case BUILT_IN_TM_MEMMOVE:
1621 ao_ref dref;
1622 tree size = NULL_TREE;
1623 if (gimple_call_num_args (call) == 3)
1624 size = gimple_call_arg (call, 2);
1625 ao_ref_init_from_ptr_and_size (&dref,
1626 gimple_call_arg (call, 1),
1627 size);
1628 return refs_may_alias_p_1 (&dref, ref, false);
1630 case BUILT_IN_STRCAT_CHK:
1631 case BUILT_IN_STRNCAT_CHK:
1633 ao_ref dref;
1634 ao_ref_init_from_ptr_and_size (&dref,
1635 gimple_call_arg (call, 0),
1636 NULL_TREE);
1637 if (refs_may_alias_p_1 (&dref, ref, false))
1638 return true;
1640 /* FALLTHRU */
1641 case BUILT_IN_STRCPY_CHK:
1642 case BUILT_IN_STRNCPY_CHK:
1643 case BUILT_IN_MEMCPY_CHK:
1644 case BUILT_IN_MEMMOVE_CHK:
1645 case BUILT_IN_MEMPCPY_CHK:
1646 case BUILT_IN_STPCPY_CHK:
1647 case BUILT_IN_STPNCPY_CHK:
1649 ao_ref dref;
1650 tree size = NULL_TREE;
1651 if (gimple_call_num_args (call) == 4)
1652 size = gimple_call_arg (call, 2);
1653 ao_ref_init_from_ptr_and_size (&dref,
1654 gimple_call_arg (call, 1),
1655 size);
1656 return refs_may_alias_p_1 (&dref, ref, false);
1658 case BUILT_IN_BCOPY:
1660 ao_ref dref;
1661 tree size = gimple_call_arg (call, 2);
1662 ao_ref_init_from_ptr_and_size (&dref,
1663 gimple_call_arg (call, 0),
1664 size);
1665 return refs_may_alias_p_1 (&dref, ref, false);
1668 /* The following functions read memory pointed to by their
1669 first argument. */
1670 CASE_BUILT_IN_TM_LOAD (1):
1671 CASE_BUILT_IN_TM_LOAD (2):
1672 CASE_BUILT_IN_TM_LOAD (4):
1673 CASE_BUILT_IN_TM_LOAD (8):
1674 CASE_BUILT_IN_TM_LOAD (FLOAT):
1675 CASE_BUILT_IN_TM_LOAD (DOUBLE):
1676 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
1677 CASE_BUILT_IN_TM_LOAD (M64):
1678 CASE_BUILT_IN_TM_LOAD (M128):
1679 CASE_BUILT_IN_TM_LOAD (M256):
1680 case BUILT_IN_TM_LOG:
1681 case BUILT_IN_TM_LOG_1:
1682 case BUILT_IN_TM_LOG_2:
1683 case BUILT_IN_TM_LOG_4:
1684 case BUILT_IN_TM_LOG_8:
1685 case BUILT_IN_TM_LOG_FLOAT:
1686 case BUILT_IN_TM_LOG_DOUBLE:
1687 case BUILT_IN_TM_LOG_LDOUBLE:
1688 case BUILT_IN_TM_LOG_M64:
1689 case BUILT_IN_TM_LOG_M128:
1690 case BUILT_IN_TM_LOG_M256:
1691 return ptr_deref_may_alias_ref_p_1 (gimple_call_arg (call, 0), ref);
1693 /* These read memory pointed to by the first argument. */
1694 case BUILT_IN_STRDUP:
1695 case BUILT_IN_STRNDUP:
1696 case BUILT_IN_REALLOC:
1698 ao_ref dref;
1699 tree size = NULL_TREE;
1700 if (gimple_call_num_args (call) == 2)
1701 size = gimple_call_arg (call, 1);
1702 ao_ref_init_from_ptr_and_size (&dref,
1703 gimple_call_arg (call, 0),
1704 size);
1705 return refs_may_alias_p_1 (&dref, ref, false);
1707 /* These read memory pointed to by the first argument. */
1708 case BUILT_IN_INDEX:
1709 case BUILT_IN_STRCHR:
1710 case BUILT_IN_STRRCHR:
1712 ao_ref dref;
1713 ao_ref_init_from_ptr_and_size (&dref,
1714 gimple_call_arg (call, 0),
1715 NULL_TREE);
1716 return refs_may_alias_p_1 (&dref, ref, false);
1718 /* These read memory pointed to by the first argument with size
1719 in the third argument. */
1720 case BUILT_IN_MEMCHR:
1722 ao_ref dref;
1723 ao_ref_init_from_ptr_and_size (&dref,
1724 gimple_call_arg (call, 0),
1725 gimple_call_arg (call, 2));
1726 return refs_may_alias_p_1 (&dref, ref, false);
1728 /* These read memory pointed to by the first and second arguments. */
1729 case BUILT_IN_STRSTR:
1730 case BUILT_IN_STRPBRK:
1732 ao_ref dref;
1733 ao_ref_init_from_ptr_and_size (&dref,
1734 gimple_call_arg (call, 0),
1735 NULL_TREE);
1736 if (refs_may_alias_p_1 (&dref, ref, false))
1737 return true;
1738 ao_ref_init_from_ptr_and_size (&dref,
1739 gimple_call_arg (call, 1),
1740 NULL_TREE);
1741 return refs_may_alias_p_1 (&dref, ref, false);
1744 /* The following builtins do not read from memory. */
1745 case BUILT_IN_FREE:
1746 case BUILT_IN_MALLOC:
1747 case BUILT_IN_POSIX_MEMALIGN:
1748 case BUILT_IN_ALIGNED_ALLOC:
1749 case BUILT_IN_CALLOC:
1750 case BUILT_IN_ALLOCA:
1751 case BUILT_IN_ALLOCA_WITH_ALIGN:
1752 case BUILT_IN_STACK_SAVE:
1753 case BUILT_IN_STACK_RESTORE:
1754 case BUILT_IN_MEMSET:
1755 case BUILT_IN_TM_MEMSET:
1756 case BUILT_IN_MEMSET_CHK:
1757 case BUILT_IN_FREXP:
1758 case BUILT_IN_FREXPF:
1759 case BUILT_IN_FREXPL:
1760 case BUILT_IN_GAMMA_R:
1761 case BUILT_IN_GAMMAF_R:
1762 case BUILT_IN_GAMMAL_R:
1763 case BUILT_IN_LGAMMA_R:
1764 case BUILT_IN_LGAMMAF_R:
1765 case BUILT_IN_LGAMMAL_R:
1766 case BUILT_IN_MODF:
1767 case BUILT_IN_MODFF:
1768 case BUILT_IN_MODFL:
1769 case BUILT_IN_REMQUO:
1770 case BUILT_IN_REMQUOF:
1771 case BUILT_IN_REMQUOL:
1772 case BUILT_IN_SINCOS:
1773 case BUILT_IN_SINCOSF:
1774 case BUILT_IN_SINCOSL:
1775 case BUILT_IN_ASSUME_ALIGNED:
1776 case BUILT_IN_VA_END:
1777 return false;
1778 /* __sync_* builtins and some OpenMP builtins act as threading
1779 barriers. */
1780 #undef DEF_SYNC_BUILTIN
1781 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) case ENUM:
1782 #include "sync-builtins.def"
1783 #undef DEF_SYNC_BUILTIN
1784 case BUILT_IN_GOMP_ATOMIC_START:
1785 case BUILT_IN_GOMP_ATOMIC_END:
1786 case BUILT_IN_GOMP_BARRIER:
1787 case BUILT_IN_GOMP_BARRIER_CANCEL:
1788 case BUILT_IN_GOMP_TASKWAIT:
1789 case BUILT_IN_GOMP_TASKGROUP_END:
1790 case BUILT_IN_GOMP_CRITICAL_START:
1791 case BUILT_IN_GOMP_CRITICAL_END:
1792 case BUILT_IN_GOMP_CRITICAL_NAME_START:
1793 case BUILT_IN_GOMP_CRITICAL_NAME_END:
1794 case BUILT_IN_GOMP_LOOP_END:
1795 case BUILT_IN_GOMP_LOOP_END_CANCEL:
1796 case BUILT_IN_GOMP_ORDERED_START:
1797 case BUILT_IN_GOMP_ORDERED_END:
1798 case BUILT_IN_GOMP_SECTIONS_END:
1799 case BUILT_IN_GOMP_SECTIONS_END_CANCEL:
1800 case BUILT_IN_GOMP_SINGLE_COPY_START:
1801 case BUILT_IN_GOMP_SINGLE_COPY_END:
1802 return true;
1804 default:
1805 /* Fallthru to general call handling. */;
1808 /* Check if base is a global static variable that is not read
1809 by the function. */
1810 if (callee != NULL_TREE
1811 && TREE_CODE (base) == VAR_DECL
1812 && TREE_STATIC (base))
1814 struct cgraph_node *node = cgraph_node::get (callee);
1815 bitmap not_read;
1817 /* FIXME: Callee can be an OMP builtin that does not have a call graph
1818 node yet. We should enforce that there are nodes for all decls in the
1819 IL and remove this check instead. */
1820 if (node
1821 && (not_read = ipa_reference_get_not_read_global (node))
1822 && bitmap_bit_p (not_read, ipa_reference_var_uid (base)))
1823 goto process_args;
1826 /* Check if the base variable is call-used. */
1827 if (DECL_P (base))
1829 if (pt_solution_includes (gimple_call_use_set (call), base))
1830 return true;
1832 else if ((TREE_CODE (base) == MEM_REF
1833 || TREE_CODE (base) == TARGET_MEM_REF)
1834 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
1836 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0));
1837 if (!pi)
1838 return true;
1840 if (pt_solutions_intersect (gimple_call_use_set (call), &pi->pt))
1841 return true;
1843 else
1844 return true;
1846 /* Inspect call arguments for passed-by-value aliases. */
1847 process_args:
1848 for (i = 0; i < gimple_call_num_args (call); ++i)
1850 tree op = gimple_call_arg (call, i);
1851 int flags = gimple_call_arg_flags (call, i);
1853 if (flags & EAF_UNUSED)
1854 continue;
1856 if (TREE_CODE (op) == WITH_SIZE_EXPR)
1857 op = TREE_OPERAND (op, 0);
1859 if (TREE_CODE (op) != SSA_NAME
1860 && !is_gimple_min_invariant (op))
1862 ao_ref r;
1863 ao_ref_init (&r, op);
1864 if (refs_may_alias_p_1 (&r, ref, true))
1865 return true;
1869 return false;
1872 static bool
1873 ref_maybe_used_by_call_p (gcall *call, ao_ref *ref)
1875 bool res;
1876 res = ref_maybe_used_by_call_p_1 (call, ref);
1877 if (res)
1878 ++alias_stats.ref_maybe_used_by_call_p_may_alias;
1879 else
1880 ++alias_stats.ref_maybe_used_by_call_p_no_alias;
1881 return res;
1885 /* If the statement STMT may use the memory reference REF return
1886 true, otherwise return false. */
1888 bool
1889 ref_maybe_used_by_stmt_p (gimple *stmt, ao_ref *ref)
1891 if (is_gimple_assign (stmt))
1893 tree rhs;
1895 /* All memory assign statements are single. */
1896 if (!gimple_assign_single_p (stmt))
1897 return false;
1899 rhs = gimple_assign_rhs1 (stmt);
1900 if (is_gimple_reg (rhs)
1901 || is_gimple_min_invariant (rhs)
1902 || gimple_assign_rhs_code (stmt) == CONSTRUCTOR)
1903 return false;
1905 return refs_may_alias_p (rhs, ref);
1907 else if (is_gimple_call (stmt))
1908 return ref_maybe_used_by_call_p (as_a <gcall *> (stmt), ref);
1909 else if (greturn *return_stmt = dyn_cast <greturn *> (stmt))
1911 tree retval = gimple_return_retval (return_stmt);
1912 if (retval
1913 && TREE_CODE (retval) != SSA_NAME
1914 && !is_gimple_min_invariant (retval)
1915 && refs_may_alias_p (retval, ref))
1916 return true;
1917 /* If ref escapes the function then the return acts as a use. */
1918 tree base = ao_ref_base (ref);
1919 if (!base)
1921 else if (DECL_P (base))
1922 return is_global_var (base);
1923 else if (TREE_CODE (base) == MEM_REF
1924 || TREE_CODE (base) == TARGET_MEM_REF)
1925 return ptr_deref_may_alias_global_p (TREE_OPERAND (base, 0));
1926 return false;
1929 return true;
1932 bool
1933 ref_maybe_used_by_stmt_p (gimple *stmt, tree ref)
1935 ao_ref r;
1936 ao_ref_init (&r, ref);
1937 return ref_maybe_used_by_stmt_p (stmt, &r);
1940 /* If the call in statement CALL may clobber the memory reference REF
1941 return true, otherwise return false. */
1943 bool
1944 call_may_clobber_ref_p_1 (gcall *call, ao_ref *ref)
1946 tree base;
1947 tree callee;
1949 /* If the call is pure or const it cannot clobber anything. */
1950 if (gimple_call_flags (call)
1951 & (ECF_PURE|ECF_CONST|ECF_LOOPING_CONST_OR_PURE|ECF_NOVOPS))
1952 return false;
1953 if (gimple_call_internal_p (call))
1954 switch (gimple_call_internal_fn (call))
1956 /* Treat these internal calls like ECF_PURE for aliasing,
1957 they don't write to any memory the program should care about.
1958 They have important other side-effects, and read memory,
1959 so can't be ECF_NOVOPS. */
1960 case IFN_UBSAN_NULL:
1961 case IFN_UBSAN_BOUNDS:
1962 case IFN_UBSAN_VPTR:
1963 case IFN_UBSAN_OBJECT_SIZE:
1964 case IFN_ASAN_CHECK:
1965 return false;
1966 default:
1967 break;
1970 base = ao_ref_base (ref);
1971 if (!base)
1972 return true;
1974 if (TREE_CODE (base) == SSA_NAME
1975 || CONSTANT_CLASS_P (base))
1976 return false;
1978 /* A call that is not without side-effects might involve volatile
1979 accesses and thus conflicts with all other volatile accesses. */
1980 if (ref->volatile_p)
1981 return true;
1983 /* If the reference is based on a decl that is not aliased the call
1984 cannot possibly clobber it. */
1985 if (DECL_P (base)
1986 && !may_be_aliased (base)
1987 /* But local non-readonly statics can be modified through recursion
1988 or the call may implement a threading barrier which we must
1989 treat as may-def. */
1990 && (TREE_READONLY (base)
1991 || !is_global_var (base)))
1992 return false;
1994 callee = gimple_call_fndecl (call);
1996 /* Handle those builtin functions explicitly that do not act as
1997 escape points. See tree-ssa-structalias.c:find_func_aliases
1998 for the list of builtins we might need to handle here. */
1999 if (callee != NULL_TREE
2000 && gimple_call_builtin_p (call, BUILT_IN_NORMAL))
2001 switch (DECL_FUNCTION_CODE (callee))
2003 /* All the following functions clobber memory pointed to by
2004 their first argument. */
2005 case BUILT_IN_STRCPY:
2006 case BUILT_IN_STRNCPY:
2007 case BUILT_IN_MEMCPY:
2008 case BUILT_IN_MEMMOVE:
2009 case BUILT_IN_MEMPCPY:
2010 case BUILT_IN_STPCPY:
2011 case BUILT_IN_STPNCPY:
2012 case BUILT_IN_STRCAT:
2013 case BUILT_IN_STRNCAT:
2014 case BUILT_IN_MEMSET:
2015 case BUILT_IN_TM_MEMSET:
2016 CASE_BUILT_IN_TM_STORE (1):
2017 CASE_BUILT_IN_TM_STORE (2):
2018 CASE_BUILT_IN_TM_STORE (4):
2019 CASE_BUILT_IN_TM_STORE (8):
2020 CASE_BUILT_IN_TM_STORE (FLOAT):
2021 CASE_BUILT_IN_TM_STORE (DOUBLE):
2022 CASE_BUILT_IN_TM_STORE (LDOUBLE):
2023 CASE_BUILT_IN_TM_STORE (M64):
2024 CASE_BUILT_IN_TM_STORE (M128):
2025 CASE_BUILT_IN_TM_STORE (M256):
2026 case BUILT_IN_TM_MEMCPY:
2027 case BUILT_IN_TM_MEMMOVE:
2029 ao_ref dref;
2030 tree size = NULL_TREE;
2031 /* Don't pass in size for strncat, as the maximum size
2032 is strlen (dest) + n + 1 instead of n, resp.
2033 n + 1 at dest + strlen (dest), but strlen (dest) isn't
2034 known. */
2035 if (gimple_call_num_args (call) == 3
2036 && DECL_FUNCTION_CODE (callee) != BUILT_IN_STRNCAT)
2037 size = gimple_call_arg (call, 2);
2038 ao_ref_init_from_ptr_and_size (&dref,
2039 gimple_call_arg (call, 0),
2040 size);
2041 return refs_may_alias_p_1 (&dref, ref, false);
2043 case BUILT_IN_STRCPY_CHK:
2044 case BUILT_IN_STRNCPY_CHK:
2045 case BUILT_IN_MEMCPY_CHK:
2046 case BUILT_IN_MEMMOVE_CHK:
2047 case BUILT_IN_MEMPCPY_CHK:
2048 case BUILT_IN_STPCPY_CHK:
2049 case BUILT_IN_STPNCPY_CHK:
2050 case BUILT_IN_STRCAT_CHK:
2051 case BUILT_IN_STRNCAT_CHK:
2052 case BUILT_IN_MEMSET_CHK:
2054 ao_ref dref;
2055 tree size = NULL_TREE;
2056 /* Don't pass in size for __strncat_chk, as the maximum size
2057 is strlen (dest) + n + 1 instead of n, resp.
2058 n + 1 at dest + strlen (dest), but strlen (dest) isn't
2059 known. */
2060 if (gimple_call_num_args (call) == 4
2061 && DECL_FUNCTION_CODE (callee) != BUILT_IN_STRNCAT_CHK)
2062 size = gimple_call_arg (call, 2);
2063 ao_ref_init_from_ptr_and_size (&dref,
2064 gimple_call_arg (call, 0),
2065 size);
2066 return refs_may_alias_p_1 (&dref, ref, false);
2068 case BUILT_IN_BCOPY:
2070 ao_ref dref;
2071 tree size = gimple_call_arg (call, 2);
2072 ao_ref_init_from_ptr_and_size (&dref,
2073 gimple_call_arg (call, 1),
2074 size);
2075 return refs_may_alias_p_1 (&dref, ref, false);
2077 /* Allocating memory does not have any side-effects apart from
2078 being the definition point for the pointer. */
2079 case BUILT_IN_MALLOC:
2080 case BUILT_IN_ALIGNED_ALLOC:
2081 case BUILT_IN_CALLOC:
2082 case BUILT_IN_STRDUP:
2083 case BUILT_IN_STRNDUP:
2084 /* Unix98 specifies that errno is set on allocation failure. */
2085 if (flag_errno_math
2086 && targetm.ref_may_alias_errno (ref))
2087 return true;
2088 return false;
2089 case BUILT_IN_STACK_SAVE:
2090 case BUILT_IN_ALLOCA:
2091 case BUILT_IN_ALLOCA_WITH_ALIGN:
2092 case BUILT_IN_ASSUME_ALIGNED:
2093 return false;
2094 /* But posix_memalign stores a pointer into the memory pointed to
2095 by its first argument. */
2096 case BUILT_IN_POSIX_MEMALIGN:
2098 tree ptrptr = gimple_call_arg (call, 0);
2099 ao_ref dref;
2100 ao_ref_init_from_ptr_and_size (&dref, ptrptr,
2101 TYPE_SIZE_UNIT (ptr_type_node));
2102 return (refs_may_alias_p_1 (&dref, ref, false)
2103 || (flag_errno_math
2104 && targetm.ref_may_alias_errno (ref)));
2106 /* Freeing memory kills the pointed-to memory. More importantly
2107 the call has to serve as a barrier for moving loads and stores
2108 across it. */
2109 case BUILT_IN_FREE:
2110 case BUILT_IN_VA_END:
2112 tree ptr = gimple_call_arg (call, 0);
2113 return ptr_deref_may_alias_ref_p_1 (ptr, ref);
2115 /* Realloc serves both as allocation point and deallocation point. */
2116 case BUILT_IN_REALLOC:
2118 tree ptr = gimple_call_arg (call, 0);
2119 /* Unix98 specifies that errno is set on allocation failure. */
2120 return ((flag_errno_math
2121 && targetm.ref_may_alias_errno (ref))
2122 || ptr_deref_may_alias_ref_p_1 (ptr, ref));
2124 case BUILT_IN_GAMMA_R:
2125 case BUILT_IN_GAMMAF_R:
2126 case BUILT_IN_GAMMAL_R:
2127 case BUILT_IN_LGAMMA_R:
2128 case BUILT_IN_LGAMMAF_R:
2129 case BUILT_IN_LGAMMAL_R:
2131 tree out = gimple_call_arg (call, 1);
2132 if (ptr_deref_may_alias_ref_p_1 (out, ref))
2133 return true;
2134 if (flag_errno_math)
2135 break;
2136 return false;
2138 case BUILT_IN_FREXP:
2139 case BUILT_IN_FREXPF:
2140 case BUILT_IN_FREXPL:
2141 case BUILT_IN_MODF:
2142 case BUILT_IN_MODFF:
2143 case BUILT_IN_MODFL:
2145 tree out = gimple_call_arg (call, 1);
2146 return ptr_deref_may_alias_ref_p_1 (out, ref);
2148 case BUILT_IN_REMQUO:
2149 case BUILT_IN_REMQUOF:
2150 case BUILT_IN_REMQUOL:
2152 tree out = gimple_call_arg (call, 2);
2153 if (ptr_deref_may_alias_ref_p_1 (out, ref))
2154 return true;
2155 if (flag_errno_math)
2156 break;
2157 return false;
2159 case BUILT_IN_SINCOS:
2160 case BUILT_IN_SINCOSF:
2161 case BUILT_IN_SINCOSL:
2163 tree sin = gimple_call_arg (call, 1);
2164 tree cos = gimple_call_arg (call, 2);
2165 return (ptr_deref_may_alias_ref_p_1 (sin, ref)
2166 || ptr_deref_may_alias_ref_p_1 (cos, ref));
2168 /* __sync_* builtins and some OpenMP builtins act as threading
2169 barriers. */
2170 #undef DEF_SYNC_BUILTIN
2171 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) case ENUM:
2172 #include "sync-builtins.def"
2173 #undef DEF_SYNC_BUILTIN
2174 case BUILT_IN_GOMP_ATOMIC_START:
2175 case BUILT_IN_GOMP_ATOMIC_END:
2176 case BUILT_IN_GOMP_BARRIER:
2177 case BUILT_IN_GOMP_BARRIER_CANCEL:
2178 case BUILT_IN_GOMP_TASKWAIT:
2179 case BUILT_IN_GOMP_TASKGROUP_END:
2180 case BUILT_IN_GOMP_CRITICAL_START:
2181 case BUILT_IN_GOMP_CRITICAL_END:
2182 case BUILT_IN_GOMP_CRITICAL_NAME_START:
2183 case BUILT_IN_GOMP_CRITICAL_NAME_END:
2184 case BUILT_IN_GOMP_LOOP_END:
2185 case BUILT_IN_GOMP_LOOP_END_CANCEL:
2186 case BUILT_IN_GOMP_ORDERED_START:
2187 case BUILT_IN_GOMP_ORDERED_END:
2188 case BUILT_IN_GOMP_SECTIONS_END:
2189 case BUILT_IN_GOMP_SECTIONS_END_CANCEL:
2190 case BUILT_IN_GOMP_SINGLE_COPY_START:
2191 case BUILT_IN_GOMP_SINGLE_COPY_END:
2192 return true;
2193 default:
2194 /* Fallthru to general call handling. */;
2197 /* Check if base is a global static variable that is not written
2198 by the function. */
2199 if (callee != NULL_TREE
2200 && TREE_CODE (base) == VAR_DECL
2201 && TREE_STATIC (base))
2203 struct cgraph_node *node = cgraph_node::get (callee);
2204 bitmap not_written;
2206 if (node
2207 && (not_written = ipa_reference_get_not_written_global (node))
2208 && bitmap_bit_p (not_written, ipa_reference_var_uid (base)))
2209 return false;
2212 /* Check if the base variable is call-clobbered. */
2213 if (DECL_P (base))
2214 return pt_solution_includes (gimple_call_clobber_set (call), base);
2215 else if ((TREE_CODE (base) == MEM_REF
2216 || TREE_CODE (base) == TARGET_MEM_REF)
2217 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
2219 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0));
2220 if (!pi)
2221 return true;
2223 return pt_solutions_intersect (gimple_call_clobber_set (call), &pi->pt);
2226 return true;
2229 /* If the call in statement CALL may clobber the memory reference REF
2230 return true, otherwise return false. */
2232 bool
2233 call_may_clobber_ref_p (gcall *call, tree ref)
2235 bool res;
2236 ao_ref r;
2237 ao_ref_init (&r, ref);
2238 res = call_may_clobber_ref_p_1 (call, &r);
2239 if (res)
2240 ++alias_stats.call_may_clobber_ref_p_may_alias;
2241 else
2242 ++alias_stats.call_may_clobber_ref_p_no_alias;
2243 return res;
2247 /* If the statement STMT may clobber the memory reference REF return true,
2248 otherwise return false. */
2250 bool
2251 stmt_may_clobber_ref_p_1 (gimple *stmt, ao_ref *ref)
2253 if (is_gimple_call (stmt))
2255 tree lhs = gimple_call_lhs (stmt);
2256 if (lhs
2257 && TREE_CODE (lhs) != SSA_NAME)
2259 ao_ref r;
2260 ao_ref_init (&r, lhs);
2261 if (refs_may_alias_p_1 (ref, &r, true))
2262 return true;
2265 return call_may_clobber_ref_p_1 (as_a <gcall *> (stmt), ref);
2267 else if (gimple_assign_single_p (stmt))
2269 tree lhs = gimple_assign_lhs (stmt);
2270 if (TREE_CODE (lhs) != SSA_NAME)
2272 ao_ref r;
2273 ao_ref_init (&r, lhs);
2274 return refs_may_alias_p_1 (ref, &r, true);
2277 else if (gimple_code (stmt) == GIMPLE_ASM)
2278 return true;
2280 return false;
2283 bool
2284 stmt_may_clobber_ref_p (gimple *stmt, tree ref)
2286 ao_ref r;
2287 ao_ref_init (&r, ref);
2288 return stmt_may_clobber_ref_p_1 (stmt, &r);
2291 /* If STMT kills the memory reference REF return true, otherwise
2292 return false. */
2294 bool
2295 stmt_kills_ref_p (gimple *stmt, ao_ref *ref)
2297 if (!ao_ref_base (ref))
2298 return false;
2300 if (gimple_has_lhs (stmt)
2301 && TREE_CODE (gimple_get_lhs (stmt)) != SSA_NAME
2302 /* The assignment is not necessarily carried out if it can throw
2303 and we can catch it in the current function where we could inspect
2304 the previous value.
2305 ??? We only need to care about the RHS throwing. For aggregate
2306 assignments or similar calls and non-call exceptions the LHS
2307 might throw as well. */
2308 && !stmt_can_throw_internal (stmt))
2310 tree lhs = gimple_get_lhs (stmt);
2311 /* If LHS is literally a base of the access we are done. */
2312 if (ref->ref)
2314 tree base = ref->ref;
2315 if (handled_component_p (base))
2317 tree saved_lhs0 = NULL_TREE;
2318 if (handled_component_p (lhs))
2320 saved_lhs0 = TREE_OPERAND (lhs, 0);
2321 TREE_OPERAND (lhs, 0) = integer_zero_node;
2325 /* Just compare the outermost handled component, if
2326 they are equal we have found a possible common
2327 base. */
2328 tree saved_base0 = TREE_OPERAND (base, 0);
2329 TREE_OPERAND (base, 0) = integer_zero_node;
2330 bool res = operand_equal_p (lhs, base, 0);
2331 TREE_OPERAND (base, 0) = saved_base0;
2332 if (res)
2333 break;
2334 /* Otherwise drop handled components of the access. */
2335 base = saved_base0;
2337 while (handled_component_p (base));
2338 if (saved_lhs0)
2339 TREE_OPERAND (lhs, 0) = saved_lhs0;
2341 /* Finally check if the lhs has the same address and size as the
2342 base candidate of the access. */
2343 if (lhs == base
2344 || (((TYPE_SIZE (TREE_TYPE (lhs))
2345 == TYPE_SIZE (TREE_TYPE (base)))
2346 || (TYPE_SIZE (TREE_TYPE (lhs))
2347 && TYPE_SIZE (TREE_TYPE (base))
2348 && operand_equal_p (TYPE_SIZE (TREE_TYPE (lhs)),
2349 TYPE_SIZE (TREE_TYPE (base)), 0)))
2350 && operand_equal_p (lhs, base, OEP_ADDRESS_OF)))
2351 return true;
2354 /* Now look for non-literal equal bases with the restriction of
2355 handling constant offset and size. */
2356 /* For a must-alias check we need to be able to constrain
2357 the access properly. */
2358 if (ref->max_size == -1)
2359 return false;
2360 HOST_WIDE_INT size, offset, max_size, ref_offset = ref->offset;
2361 bool reverse;
2362 tree base
2363 = get_ref_base_and_extent (lhs, &offset, &size, &max_size, &reverse);
2364 /* We can get MEM[symbol: sZ, index: D.8862_1] here,
2365 so base == ref->base does not always hold. */
2366 if (base != ref->base)
2368 /* If both base and ref->base are MEM_REFs, only compare the
2369 first operand, and if the second operand isn't equal constant,
2370 try to add the offsets into offset and ref_offset. */
2371 if (TREE_CODE (base) == MEM_REF && TREE_CODE (ref->base) == MEM_REF
2372 && TREE_OPERAND (base, 0) == TREE_OPERAND (ref->base, 0))
2374 if (!tree_int_cst_equal (TREE_OPERAND (base, 1),
2375 TREE_OPERAND (ref->base, 1)))
2377 offset_int off1 = mem_ref_offset (base);
2378 off1 <<= LOG2_BITS_PER_UNIT;
2379 off1 += offset;
2380 offset_int off2 = mem_ref_offset (ref->base);
2381 off2 <<= LOG2_BITS_PER_UNIT;
2382 off2 += ref_offset;
2383 if (wi::fits_shwi_p (off1) && wi::fits_shwi_p (off2))
2385 offset = off1.to_shwi ();
2386 ref_offset = off2.to_shwi ();
2388 else
2389 size = -1;
2392 else
2393 size = -1;
2395 /* For a must-alias check we need to be able to constrain
2396 the access properly. */
2397 if (size != -1 && size == max_size)
2399 if (offset <= ref_offset
2400 && offset + size >= ref_offset + ref->max_size)
2401 return true;
2405 if (is_gimple_call (stmt))
2407 tree callee = gimple_call_fndecl (stmt);
2408 if (callee != NULL_TREE
2409 && gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
2410 switch (DECL_FUNCTION_CODE (callee))
2412 case BUILT_IN_FREE:
2414 tree ptr = gimple_call_arg (stmt, 0);
2415 tree base = ao_ref_base (ref);
2416 if (base && TREE_CODE (base) == MEM_REF
2417 && TREE_OPERAND (base, 0) == ptr)
2418 return true;
2419 break;
2422 case BUILT_IN_MEMCPY:
2423 case BUILT_IN_MEMPCPY:
2424 case BUILT_IN_MEMMOVE:
2425 case BUILT_IN_MEMSET:
2426 case BUILT_IN_MEMCPY_CHK:
2427 case BUILT_IN_MEMPCPY_CHK:
2428 case BUILT_IN_MEMMOVE_CHK:
2429 case BUILT_IN_MEMSET_CHK:
2431 /* For a must-alias check we need to be able to constrain
2432 the access properly. */
2433 if (ref->max_size == -1)
2434 return false;
2435 tree dest = gimple_call_arg (stmt, 0);
2436 tree len = gimple_call_arg (stmt, 2);
2437 if (!tree_fits_shwi_p (len))
2438 return false;
2439 tree rbase = ref->base;
2440 offset_int roffset = ref->offset;
2441 ao_ref dref;
2442 ao_ref_init_from_ptr_and_size (&dref, dest, len);
2443 tree base = ao_ref_base (&dref);
2444 offset_int offset = dref.offset;
2445 if (!base || dref.size == -1)
2446 return false;
2447 if (TREE_CODE (base) == MEM_REF)
2449 if (TREE_CODE (rbase) != MEM_REF)
2450 return false;
2451 // Compare pointers.
2452 offset += mem_ref_offset (base) << LOG2_BITS_PER_UNIT;
2453 roffset += mem_ref_offset (rbase) << LOG2_BITS_PER_UNIT;
2454 base = TREE_OPERAND (base, 0);
2455 rbase = TREE_OPERAND (rbase, 0);
2457 if (base == rbase
2458 && offset <= roffset
2459 && (roffset + ref->max_size
2460 <= offset + (wi::to_offset (len) << LOG2_BITS_PER_UNIT)))
2461 return true;
2462 break;
2465 case BUILT_IN_VA_END:
2467 tree ptr = gimple_call_arg (stmt, 0);
2468 if (TREE_CODE (ptr) == ADDR_EXPR)
2470 tree base = ao_ref_base (ref);
2471 if (TREE_OPERAND (ptr, 0) == base)
2472 return true;
2474 break;
2477 default:;
2480 return false;
2483 bool
2484 stmt_kills_ref_p (gimple *stmt, tree ref)
2486 ao_ref r;
2487 ao_ref_init (&r, ref);
2488 return stmt_kills_ref_p (stmt, &r);
2492 /* Walk the virtual use-def chain of VUSE until hitting the virtual operand
2493 TARGET or a statement clobbering the memory reference REF in which
2494 case false is returned. The walk starts with VUSE, one argument of PHI. */
2496 static bool
2497 maybe_skip_until (gimple *phi, tree target, ao_ref *ref,
2498 tree vuse, unsigned int *cnt, bitmap *visited,
2499 bool abort_on_visited,
2500 void *(*translate)(ao_ref *, tree, void *, bool *),
2501 void *data)
2503 basic_block bb = gimple_bb (phi);
2505 if (!*visited)
2506 *visited = BITMAP_ALLOC (NULL);
2508 bitmap_set_bit (*visited, SSA_NAME_VERSION (PHI_RESULT (phi)));
2510 /* Walk until we hit the target. */
2511 while (vuse != target)
2513 gimple *def_stmt = SSA_NAME_DEF_STMT (vuse);
2514 /* Recurse for PHI nodes. */
2515 if (gimple_code (def_stmt) == GIMPLE_PHI)
2517 /* An already visited PHI node ends the walk successfully. */
2518 if (bitmap_bit_p (*visited, SSA_NAME_VERSION (PHI_RESULT (def_stmt))))
2519 return !abort_on_visited;
2520 vuse = get_continuation_for_phi (def_stmt, ref, cnt,
2521 visited, abort_on_visited,
2522 translate, data);
2523 if (!vuse)
2524 return false;
2525 continue;
2527 else if (gimple_nop_p (def_stmt))
2528 return false;
2529 else
2531 /* A clobbering statement or the end of the IL ends it failing. */
2532 ++*cnt;
2533 if (stmt_may_clobber_ref_p_1 (def_stmt, ref))
2535 bool disambiguate_only = true;
2536 if (translate
2537 && (*translate) (ref, vuse, data, &disambiguate_only) == NULL)
2539 else
2540 return false;
2543 /* If we reach a new basic-block see if we already skipped it
2544 in a previous walk that ended successfully. */
2545 if (gimple_bb (def_stmt) != bb)
2547 if (!bitmap_set_bit (*visited, SSA_NAME_VERSION (vuse)))
2548 return !abort_on_visited;
2549 bb = gimple_bb (def_stmt);
2551 vuse = gimple_vuse (def_stmt);
2553 return true;
2556 /* For two PHI arguments ARG0 and ARG1 try to skip non-aliasing code
2557 until we hit the phi argument definition that dominates the other one.
2558 Return that, or NULL_TREE if there is no such definition. */
2560 static tree
2561 get_continuation_for_phi_1 (gimple *phi, tree arg0, tree arg1,
2562 ao_ref *ref, unsigned int *cnt,
2563 bitmap *visited, bool abort_on_visited,
2564 void *(*translate)(ao_ref *, tree, void *, bool *),
2565 void *data)
2567 gimple *def0 = SSA_NAME_DEF_STMT (arg0);
2568 gimple *def1 = SSA_NAME_DEF_STMT (arg1);
2569 tree common_vuse;
2571 if (arg0 == arg1)
2572 return arg0;
2573 else if (gimple_nop_p (def0)
2574 || (!gimple_nop_p (def1)
2575 && dominated_by_p (CDI_DOMINATORS,
2576 gimple_bb (def1), gimple_bb (def0))))
2578 if (maybe_skip_until (phi, arg0, ref, arg1, cnt,
2579 visited, abort_on_visited, translate, data))
2580 return arg0;
2582 else if (gimple_nop_p (def1)
2583 || dominated_by_p (CDI_DOMINATORS,
2584 gimple_bb (def0), gimple_bb (def1)))
2586 if (maybe_skip_until (phi, arg1, ref, arg0, cnt,
2587 visited, abort_on_visited, translate, data))
2588 return arg1;
2590 /* Special case of a diamond:
2591 MEM_1 = ...
2592 goto (cond) ? L1 : L2
2593 L1: store1 = ... #MEM_2 = vuse(MEM_1)
2594 goto L3
2595 L2: store2 = ... #MEM_3 = vuse(MEM_1)
2596 L3: MEM_4 = PHI<MEM_2, MEM_3>
2597 We were called with the PHI at L3, MEM_2 and MEM_3 don't
2598 dominate each other, but still we can easily skip this PHI node
2599 if we recognize that the vuse MEM operand is the same for both,
2600 and that we can skip both statements (they don't clobber us).
2601 This is still linear. Don't use maybe_skip_until, that might
2602 potentially be slow. */
2603 else if ((common_vuse = gimple_vuse (def0))
2604 && common_vuse == gimple_vuse (def1))
2606 bool disambiguate_only = true;
2607 *cnt += 2;
2608 if ((!stmt_may_clobber_ref_p_1 (def0, ref)
2609 || (translate
2610 && (*translate) (ref, arg0, data, &disambiguate_only) == NULL))
2611 && (!stmt_may_clobber_ref_p_1 (def1, ref)
2612 || (translate
2613 && (*translate) (ref, arg1, data, &disambiguate_only) == NULL)))
2614 return common_vuse;
2617 return NULL_TREE;
2621 /* Starting from a PHI node for the virtual operand of the memory reference
2622 REF find a continuation virtual operand that allows to continue walking
2623 statements dominating PHI skipping only statements that cannot possibly
2624 clobber REF. Increments *CNT for each alias disambiguation done.
2625 Returns NULL_TREE if no suitable virtual operand can be found. */
2627 tree
2628 get_continuation_for_phi (gimple *phi, ao_ref *ref,
2629 unsigned int *cnt, bitmap *visited,
2630 bool abort_on_visited,
2631 void *(*translate)(ao_ref *, tree, void *, bool *),
2632 void *data)
2634 unsigned nargs = gimple_phi_num_args (phi);
2636 /* Through a single-argument PHI we can simply look through. */
2637 if (nargs == 1)
2638 return PHI_ARG_DEF (phi, 0);
2640 /* For two or more arguments try to pairwise skip non-aliasing code
2641 until we hit the phi argument definition that dominates the other one. */
2642 else if (nargs >= 2)
2644 tree arg0, arg1;
2645 unsigned i;
2647 /* Find a candidate for the virtual operand which definition
2648 dominates those of all others. */
2649 arg0 = PHI_ARG_DEF (phi, 0);
2650 if (!SSA_NAME_IS_DEFAULT_DEF (arg0))
2651 for (i = 1; i < nargs; ++i)
2653 arg1 = PHI_ARG_DEF (phi, i);
2654 if (SSA_NAME_IS_DEFAULT_DEF (arg1))
2656 arg0 = arg1;
2657 break;
2659 if (dominated_by_p (CDI_DOMINATORS,
2660 gimple_bb (SSA_NAME_DEF_STMT (arg0)),
2661 gimple_bb (SSA_NAME_DEF_STMT (arg1))))
2662 arg0 = arg1;
2665 /* Then pairwise reduce against the found candidate. */
2666 for (i = 0; i < nargs; ++i)
2668 arg1 = PHI_ARG_DEF (phi, i);
2669 arg0 = get_continuation_for_phi_1 (phi, arg0, arg1, ref,
2670 cnt, visited, abort_on_visited,
2671 translate, data);
2672 if (!arg0)
2673 return NULL_TREE;
2676 return arg0;
2679 return NULL_TREE;
2682 /* Based on the memory reference REF and its virtual use VUSE call
2683 WALKER for each virtual use that is equivalent to VUSE, including VUSE
2684 itself. That is, for each virtual use for which its defining statement
2685 does not clobber REF.
2687 WALKER is called with REF, the current virtual use and DATA. If
2688 WALKER returns non-NULL the walk stops and its result is returned.
2689 At the end of a non-successful walk NULL is returned.
2691 TRANSLATE if non-NULL is called with a pointer to REF, the virtual
2692 use which definition is a statement that may clobber REF and DATA.
2693 If TRANSLATE returns (void *)-1 the walk stops and NULL is returned.
2694 If TRANSLATE returns non-NULL the walk stops and its result is returned.
2695 If TRANSLATE returns NULL the walk continues and TRANSLATE is supposed
2696 to adjust REF and *DATA to make that valid.
2698 VALUEIZE if non-NULL is called with the next VUSE that is considered
2699 and return value is substituted for that. This can be used to
2700 implement optimistic value-numbering for example. Note that the
2701 VUSE argument is assumed to be valueized already.
2703 TODO: Cache the vector of equivalent vuses per ref, vuse pair. */
2705 void *
2706 walk_non_aliased_vuses (ao_ref *ref, tree vuse,
2707 void *(*walker)(ao_ref *, tree, unsigned int, void *),
2708 void *(*translate)(ao_ref *, tree, void *, bool *),
2709 tree (*valueize)(tree),
2710 void *data)
2712 bitmap visited = NULL;
2713 void *res;
2714 unsigned int cnt = 0;
2715 bool translated = false;
2717 timevar_push (TV_ALIAS_STMT_WALK);
2721 gimple *def_stmt;
2723 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
2724 res = (*walker) (ref, vuse, cnt, data);
2725 /* Abort walk. */
2726 if (res == (void *)-1)
2728 res = NULL;
2729 break;
2731 /* Lookup succeeded. */
2732 else if (res != NULL)
2733 break;
2735 if (valueize)
2736 vuse = valueize (vuse);
2737 def_stmt = SSA_NAME_DEF_STMT (vuse);
2738 if (gimple_nop_p (def_stmt))
2739 break;
2740 else if (gimple_code (def_stmt) == GIMPLE_PHI)
2741 vuse = get_continuation_for_phi (def_stmt, ref, &cnt,
2742 &visited, translated, translate, data);
2743 else
2745 cnt++;
2746 if (stmt_may_clobber_ref_p_1 (def_stmt, ref))
2748 if (!translate)
2749 break;
2750 bool disambiguate_only = false;
2751 res = (*translate) (ref, vuse, data, &disambiguate_only);
2752 /* Failed lookup and translation. */
2753 if (res == (void *)-1)
2755 res = NULL;
2756 break;
2758 /* Lookup succeeded. */
2759 else if (res != NULL)
2760 break;
2761 /* Translation succeeded, continue walking. */
2762 translated = translated || !disambiguate_only;
2764 vuse = gimple_vuse (def_stmt);
2767 while (vuse);
2769 if (visited)
2770 BITMAP_FREE (visited);
2772 timevar_pop (TV_ALIAS_STMT_WALK);
2774 return res;
2778 /* Based on the memory reference REF call WALKER for each vdef which
2779 defining statement may clobber REF, starting with VDEF. If REF
2780 is NULL_TREE, each defining statement is visited.
2782 WALKER is called with REF, the current vdef and DATA. If WALKER
2783 returns true the walk is stopped, otherwise it continues.
2785 If function entry is reached, FUNCTION_ENTRY_REACHED is set to true.
2786 The pointer may be NULL and then we do not track this information.
2788 At PHI nodes walk_aliased_vdefs forks into one walk for reach
2789 PHI argument (but only one walk continues on merge points), the
2790 return value is true if any of the walks was successful.
2792 The function returns the number of statements walked. */
2794 static unsigned int
2795 walk_aliased_vdefs_1 (ao_ref *ref, tree vdef,
2796 bool (*walker)(ao_ref *, tree, void *), void *data,
2797 bitmap *visited, unsigned int cnt,
2798 bool *function_entry_reached)
2802 gimple *def_stmt = SSA_NAME_DEF_STMT (vdef);
2804 if (*visited
2805 && !bitmap_set_bit (*visited, SSA_NAME_VERSION (vdef)))
2806 return cnt;
2808 if (gimple_nop_p (def_stmt))
2810 if (function_entry_reached)
2811 *function_entry_reached = true;
2812 return cnt;
2814 else if (gimple_code (def_stmt) == GIMPLE_PHI)
2816 unsigned i;
2817 if (!*visited)
2818 *visited = BITMAP_ALLOC (NULL);
2819 for (i = 0; i < gimple_phi_num_args (def_stmt); ++i)
2820 cnt += walk_aliased_vdefs_1 (ref, gimple_phi_arg_def (def_stmt, i),
2821 walker, data, visited, 0,
2822 function_entry_reached);
2823 return cnt;
2826 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
2827 cnt++;
2828 if ((!ref
2829 || stmt_may_clobber_ref_p_1 (def_stmt, ref))
2830 && (*walker) (ref, vdef, data))
2831 return cnt;
2833 vdef = gimple_vuse (def_stmt);
2835 while (1);
2838 unsigned int
2839 walk_aliased_vdefs (ao_ref *ref, tree vdef,
2840 bool (*walker)(ao_ref *, tree, void *), void *data,
2841 bitmap *visited,
2842 bool *function_entry_reached)
2844 bitmap local_visited = NULL;
2845 unsigned int ret;
2847 timevar_push (TV_ALIAS_STMT_WALK);
2849 if (function_entry_reached)
2850 *function_entry_reached = false;
2852 ret = walk_aliased_vdefs_1 (ref, vdef, walker, data,
2853 visited ? visited : &local_visited, 0,
2854 function_entry_reached);
2855 if (local_visited)
2856 BITMAP_FREE (local_visited);
2858 timevar_pop (TV_ALIAS_STMT_WALK);
2860 return ret;