gcc:
[official-gcc.git] / gcc / tree-ssa-alias.c
blob42335b577a52089115f3df7558b0baef3ef7d115
1 /* Alias analysis for trees.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Diego Novillo <dnovillo@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "tm_p.h"
28 #include "basic-block.h"
29 #include "timevar.h"
30 #include "ggc.h"
31 #include "langhooks.h"
32 #include "flags.h"
33 #include "toplev.h"
34 #include "function.h"
35 #include "tree-pretty-print.h"
36 #include "tree-dump.h"
37 #include "gimple.h"
38 #include "tree-flow.h"
39 #include "tree-inline.h"
40 #include "tree-pass.h"
41 #include "convert.h"
42 #include "params.h"
43 #include "ipa-type-escape.h"
44 #include "vec.h"
45 #include "bitmap.h"
46 #include "vecprim.h"
47 #include "pointer-set.h"
48 #include "alloc-pool.h"
49 #include "tree-ssa-alias.h"
51 /* Broad overview of how alias analysis on gimple works:
53 Statements clobbering or using memory are linked through the
54 virtual operand factored use-def chain. The virtual operand
55 is unique per function, its symbol is accessible via gimple_vop (cfun).
56 Virtual operands are used for efficiently walking memory statements
57 in the gimple IL and are useful for things like value-numbering as
58 a generation count for memory references.
60 SSA_NAME pointers may have associated points-to information
61 accessible via the SSA_NAME_PTR_INFO macro. Flow-insensitive
62 points-to information is (re-)computed by the TODO_rebuild_alias
63 pass manager todo. Points-to information is also used for more
64 precise tracking of call-clobbered and call-used variables and
65 related disambiguations.
67 This file contains functions for disambiguating memory references,
68 the so called alias-oracle and tools for walking of the gimple IL.
70 The main alias-oracle entry-points are
72 bool stmt_may_clobber_ref_p (gimple, tree)
74 This function queries if a statement may invalidate (parts of)
75 the memory designated by the reference tree argument.
77 bool ref_maybe_used_by_stmt_p (gimple, tree)
79 This function queries if a statement may need (parts of) the
80 memory designated by the reference tree argument.
82 There are variants of these functions that only handle the call
83 part of a statement, call_may_clobber_ref_p and ref_maybe_used_by_call_p.
84 Note that these do not disambiguate against a possible call lhs.
86 bool refs_may_alias_p (tree, tree)
88 This function tries to disambiguate two reference trees.
90 bool ptr_deref_may_alias_global_p (tree)
92 This function queries if dereferencing a pointer variable may
93 alias global memory.
95 More low-level disambiguators are available and documented in
96 this file. Low-level disambiguators dealing with points-to
97 information are in tree-ssa-structalias.c. */
100 /* Query statistics for the different low-level disambiguators.
101 A high-level query may trigger multiple of them. */
103 static struct {
104 unsigned HOST_WIDE_INT refs_may_alias_p_may_alias;
105 unsigned HOST_WIDE_INT refs_may_alias_p_no_alias;
106 unsigned HOST_WIDE_INT ref_maybe_used_by_call_p_may_alias;
107 unsigned HOST_WIDE_INT ref_maybe_used_by_call_p_no_alias;
108 unsigned HOST_WIDE_INT call_may_clobber_ref_p_may_alias;
109 unsigned HOST_WIDE_INT call_may_clobber_ref_p_no_alias;
110 } alias_stats;
112 void
113 dump_alias_stats (FILE *s)
115 fprintf (s, "\nAlias oracle query stats:\n");
116 fprintf (s, " refs_may_alias_p: "
117 HOST_WIDE_INT_PRINT_DEC" disambiguations, "
118 HOST_WIDE_INT_PRINT_DEC" queries\n",
119 alias_stats.refs_may_alias_p_no_alias,
120 alias_stats.refs_may_alias_p_no_alias
121 + alias_stats.refs_may_alias_p_may_alias);
122 fprintf (s, " ref_maybe_used_by_call_p: "
123 HOST_WIDE_INT_PRINT_DEC" disambiguations, "
124 HOST_WIDE_INT_PRINT_DEC" queries\n",
125 alias_stats.ref_maybe_used_by_call_p_no_alias,
126 alias_stats.refs_may_alias_p_no_alias
127 + alias_stats.ref_maybe_used_by_call_p_may_alias);
128 fprintf (s, " call_may_clobber_ref_p: "
129 HOST_WIDE_INT_PRINT_DEC" disambiguations, "
130 HOST_WIDE_INT_PRINT_DEC" queries\n",
131 alias_stats.call_may_clobber_ref_p_no_alias,
132 alias_stats.call_may_clobber_ref_p_no_alias
133 + alias_stats.call_may_clobber_ref_p_may_alias);
137 /* Return true, if dereferencing PTR may alias with a global variable. */
139 bool
140 ptr_deref_may_alias_global_p (tree ptr)
142 struct ptr_info_def *pi;
144 /* If we end up with a pointer constant here that may point
145 to global memory. */
146 if (TREE_CODE (ptr) != SSA_NAME)
147 return true;
149 pi = SSA_NAME_PTR_INFO (ptr);
151 /* If we do not have points-to information for this variable,
152 we have to punt. */
153 if (!pi)
154 return true;
156 /* ??? This does not use TBAA to prune globals ptr may not access. */
157 return pt_solution_includes_global (&pi->pt);
160 /* Return true if dereferencing PTR may alias DECL.
161 The caller is responsible for applying TBAA to see if PTR
162 may access DECL at all. */
164 static bool
165 ptr_deref_may_alias_decl_p (tree ptr, tree decl)
167 struct ptr_info_def *pi;
169 /* Conversions are irrelevant for points-to information and
170 data-dependence analysis can feed us those. */
171 STRIP_NOPS (ptr);
173 /* Anything we do not explicilty handle aliases. */
174 if ((TREE_CODE (ptr) != SSA_NAME
175 && TREE_CODE (ptr) != ADDR_EXPR
176 && TREE_CODE (ptr) != POINTER_PLUS_EXPR)
177 || !POINTER_TYPE_P (TREE_TYPE (ptr))
178 || (TREE_CODE (decl) != VAR_DECL
179 && TREE_CODE (decl) != PARM_DECL
180 && TREE_CODE (decl) != RESULT_DECL))
181 return false;
183 /* Disregard pointer offsetting. */
184 if (TREE_CODE (ptr) == POINTER_PLUS_EXPR)
188 ptr = TREE_OPERAND (ptr, 0);
190 while (TREE_CODE (ptr) == POINTER_PLUS_EXPR);
191 return ptr_deref_may_alias_decl_p (ptr, decl);
194 /* ADDR_EXPR pointers either just offset another pointer or directly
195 specify the pointed-to set. */
196 if (TREE_CODE (ptr) == ADDR_EXPR)
198 tree base = get_base_address (TREE_OPERAND (ptr, 0));
199 if (base
200 && (INDIRECT_REF_P (base)
201 || TREE_CODE (base) == MEM_REF))
202 ptr = TREE_OPERAND (base, 0);
203 else if (base
204 && SSA_VAR_P (base))
205 return base == decl;
206 else if (base
207 && CONSTANT_CLASS_P (base))
208 return false;
209 else
210 return true;
213 /* Non-aliased variables can not be pointed to. */
214 if (!may_be_aliased (decl))
215 return false;
217 /* If we do not have useful points-to information for this pointer
218 we cannot disambiguate anything else. */
219 pi = SSA_NAME_PTR_INFO (ptr);
220 if (!pi)
221 return true;
223 /* If the decl can be used as a restrict tag and we have a restrict
224 pointer and that pointers points-to set doesn't contain this decl
225 then they can't alias. */
226 if (DECL_RESTRICTED_P (decl)
227 && TYPE_RESTRICT (TREE_TYPE (ptr))
228 && pi->pt.vars_contains_restrict)
229 return bitmap_bit_p (pi->pt.vars, DECL_PT_UID (decl));
231 return pt_solution_includes (&pi->pt, decl);
234 /* Return true if dereferenced PTR1 and PTR2 may alias.
235 The caller is responsible for applying TBAA to see if accesses
236 through PTR1 and PTR2 may conflict at all. */
238 bool
239 ptr_derefs_may_alias_p (tree ptr1, tree ptr2)
241 struct ptr_info_def *pi1, *pi2;
243 /* Conversions are irrelevant for points-to information and
244 data-dependence analysis can feed us those. */
245 STRIP_NOPS (ptr1);
246 STRIP_NOPS (ptr2);
248 /* Anything we do not explicilty handle aliases. */
249 if ((TREE_CODE (ptr1) != SSA_NAME
250 && TREE_CODE (ptr1) != ADDR_EXPR
251 && TREE_CODE (ptr1) != POINTER_PLUS_EXPR)
252 || (TREE_CODE (ptr2) != SSA_NAME
253 && TREE_CODE (ptr2) != ADDR_EXPR
254 && TREE_CODE (ptr2) != POINTER_PLUS_EXPR)
255 || !POINTER_TYPE_P (TREE_TYPE (ptr1))
256 || !POINTER_TYPE_P (TREE_TYPE (ptr2)))
257 return true;
259 /* Disregard pointer offsetting. */
260 if (TREE_CODE (ptr1) == POINTER_PLUS_EXPR)
264 ptr1 = TREE_OPERAND (ptr1, 0);
266 while (TREE_CODE (ptr1) == POINTER_PLUS_EXPR);
267 return ptr_derefs_may_alias_p (ptr1, ptr2);
269 if (TREE_CODE (ptr2) == POINTER_PLUS_EXPR)
273 ptr2 = TREE_OPERAND (ptr2, 0);
275 while (TREE_CODE (ptr2) == POINTER_PLUS_EXPR);
276 return ptr_derefs_may_alias_p (ptr1, ptr2);
279 /* ADDR_EXPR pointers either just offset another pointer or directly
280 specify the pointed-to set. */
281 if (TREE_CODE (ptr1) == ADDR_EXPR)
283 tree base = get_base_address (TREE_OPERAND (ptr1, 0));
284 if (base
285 && (INDIRECT_REF_P (base)
286 || TREE_CODE (base) == MEM_REF))
287 ptr1 = TREE_OPERAND (base, 0);
288 else if (base
289 && SSA_VAR_P (base))
290 return ptr_deref_may_alias_decl_p (ptr2, base);
291 else
292 return true;
294 if (TREE_CODE (ptr2) == ADDR_EXPR)
296 tree base = get_base_address (TREE_OPERAND (ptr2, 0));
297 if (base
298 && (INDIRECT_REF_P (base)
299 || TREE_CODE (base) == MEM_REF))
300 ptr2 = TREE_OPERAND (base, 0);
301 else if (base
302 && SSA_VAR_P (base))
303 return ptr_deref_may_alias_decl_p (ptr1, base);
304 else
305 return true;
308 /* We may end up with two empty points-to solutions for two same pointers.
309 In this case we still want to say both pointers alias, so shortcut
310 that here. */
311 if (ptr1 == ptr2)
312 return true;
314 /* If we do not have useful points-to information for either pointer
315 we cannot disambiguate anything else. */
316 pi1 = SSA_NAME_PTR_INFO (ptr1);
317 pi2 = SSA_NAME_PTR_INFO (ptr2);
318 if (!pi1 || !pi2)
319 return true;
321 /* If both pointers are restrict-qualified try to disambiguate
322 with restrict information. */
323 if (TYPE_RESTRICT (TREE_TYPE (ptr1))
324 && TYPE_RESTRICT (TREE_TYPE (ptr2))
325 && !pt_solutions_same_restrict_base (&pi1->pt, &pi2->pt))
326 return false;
328 /* ??? This does not use TBAA to prune decls from the intersection
329 that not both pointers may access. */
330 return pt_solutions_intersect (&pi1->pt, &pi2->pt);
333 /* Return true if dereferencing PTR may alias *REF.
334 The caller is responsible for applying TBAA to see if PTR
335 may access *REF at all. */
337 static bool
338 ptr_deref_may_alias_ref_p_1 (tree ptr, ao_ref *ref)
340 tree base = ao_ref_base (ref);
342 if (INDIRECT_REF_P (base)
343 || TREE_CODE (base) == MEM_REF)
344 return ptr_derefs_may_alias_p (ptr, TREE_OPERAND (base, 0));
345 else if (SSA_VAR_P (base))
346 return ptr_deref_may_alias_decl_p (ptr, base);
348 return true;
352 /* Dump alias information on FILE. */
354 void
355 dump_alias_info (FILE *file)
357 size_t i;
358 const char *funcname
359 = lang_hooks.decl_printable_name (current_function_decl, 2);
360 referenced_var_iterator rvi;
361 tree var;
363 fprintf (file, "\n\nAlias information for %s\n\n", funcname);
365 fprintf (file, "Aliased symbols\n\n");
367 FOR_EACH_REFERENCED_VAR (var, rvi)
369 if (may_be_aliased (var))
370 dump_variable (file, var);
373 fprintf (file, "\nCall clobber information\n");
375 fprintf (file, "\nESCAPED");
376 dump_points_to_solution (file, &cfun->gimple_df->escaped);
378 fprintf (file, "\n\nFlow-insensitive points-to information\n\n");
380 for (i = 1; i < num_ssa_names; i++)
382 tree ptr = ssa_name (i);
383 struct ptr_info_def *pi;
385 if (ptr == NULL_TREE
386 || SSA_NAME_IN_FREE_LIST (ptr))
387 continue;
389 pi = SSA_NAME_PTR_INFO (ptr);
390 if (pi)
391 dump_points_to_info_for (file, ptr);
394 fprintf (file, "\n");
398 /* Dump alias information on stderr. */
400 DEBUG_FUNCTION void
401 debug_alias_info (void)
403 dump_alias_info (stderr);
407 /* Dump the points-to set *PT into FILE. */
409 void
410 dump_points_to_solution (FILE *file, struct pt_solution *pt)
412 if (pt->anything)
413 fprintf (file, ", points-to anything");
415 if (pt->nonlocal)
416 fprintf (file, ", points-to non-local");
418 if (pt->escaped)
419 fprintf (file, ", points-to escaped");
421 if (pt->ipa_escaped)
422 fprintf (file, ", points-to unit escaped");
424 if (pt->null)
425 fprintf (file, ", points-to NULL");
427 if (pt->vars)
429 fprintf (file, ", points-to vars: ");
430 dump_decl_set (file, pt->vars);
431 if (pt->vars_contains_global)
432 fprintf (file, " (includes global vars)");
433 if (pt->vars_contains_restrict)
434 fprintf (file, " (includes restrict tags)");
438 /* Dump points-to information for SSA_NAME PTR into FILE. */
440 void
441 dump_points_to_info_for (FILE *file, tree ptr)
443 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (ptr);
445 print_generic_expr (file, ptr, dump_flags);
447 if (pi)
448 dump_points_to_solution (file, &pi->pt);
449 else
450 fprintf (file, ", points-to anything");
452 fprintf (file, "\n");
456 /* Dump points-to information for VAR into stderr. */
458 DEBUG_FUNCTION void
459 debug_points_to_info_for (tree var)
461 dump_points_to_info_for (stderr, var);
465 /* Initializes the alias-oracle reference representation *R from REF. */
467 void
468 ao_ref_init (ao_ref *r, tree ref)
470 r->ref = ref;
471 r->base = NULL_TREE;
472 r->offset = 0;
473 r->size = -1;
474 r->max_size = -1;
475 r->ref_alias_set = -1;
476 r->base_alias_set = -1;
479 /* Returns the base object of the memory reference *REF. */
481 tree
482 ao_ref_base (ao_ref *ref)
484 if (ref->base)
485 return ref->base;
486 ref->base = get_ref_base_and_extent (ref->ref, &ref->offset, &ref->size,
487 &ref->max_size);
488 return ref->base;
491 /* Returns the base object alias set of the memory reference *REF. */
493 static alias_set_type
494 ao_ref_base_alias_set (ao_ref *ref)
496 tree base_ref;
497 if (ref->base_alias_set != -1)
498 return ref->base_alias_set;
499 if (!ref->ref)
500 return 0;
501 base_ref = ref->ref;
502 while (handled_component_p (base_ref))
503 base_ref = TREE_OPERAND (base_ref, 0);
504 ref->base_alias_set = get_alias_set (base_ref);
505 return ref->base_alias_set;
508 /* Returns the reference alias set of the memory reference *REF. */
510 alias_set_type
511 ao_ref_alias_set (ao_ref *ref)
513 if (ref->ref_alias_set != -1)
514 return ref->ref_alias_set;
515 ref->ref_alias_set = get_alias_set (ref->ref);
516 return ref->ref_alias_set;
519 /* Init an alias-oracle reference representation from a gimple pointer
520 PTR and a gimple size SIZE in bytes. If SIZE is NULL_TREE the the
521 size is assumed to be unknown. The access is assumed to be only
522 to or after of the pointer target, not before it. */
524 void
525 ao_ref_init_from_ptr_and_size (ao_ref *ref, tree ptr, tree size)
527 HOST_WIDE_INT t1, t2;
528 ref->ref = NULL_TREE;
529 if (TREE_CODE (ptr) == ADDR_EXPR)
530 ref->base = get_ref_base_and_extent (TREE_OPERAND (ptr, 0),
531 &ref->offset, &t1, &t2);
532 else
534 ref->base = build2 (MEM_REF, char_type_node,
535 ptr, null_pointer_node);
536 ref->offset = 0;
538 if (size
539 && host_integerp (size, 0)
540 && TREE_INT_CST_LOW (size) * 8 / 8 == TREE_INT_CST_LOW (size))
541 ref->max_size = ref->size = TREE_INT_CST_LOW (size) * 8;
542 else
543 ref->max_size = ref->size = -1;
544 ref->ref_alias_set = 0;
545 ref->base_alias_set = 0;
548 /* Return 1 if TYPE1 and TYPE2 are to be considered equivalent for the
549 purpose of TBAA. Return 0 if they are distinct and -1 if we cannot
550 decide. */
552 static inline int
553 same_type_for_tbaa (tree type1, tree type2)
555 type1 = TYPE_MAIN_VARIANT (type1);
556 type2 = TYPE_MAIN_VARIANT (type2);
558 /* If we would have to do structural comparison bail out. */
559 if (TYPE_STRUCTURAL_EQUALITY_P (type1)
560 || TYPE_STRUCTURAL_EQUALITY_P (type2))
561 return -1;
563 /* Compare the canonical types. */
564 if (TYPE_CANONICAL (type1) == TYPE_CANONICAL (type2))
565 return 1;
567 /* ??? Array types are not properly unified in all cases as we have
568 spurious changes in the index types for example. Removing this
569 causes all sorts of problems with the Fortran frontend. */
570 if (TREE_CODE (type1) == ARRAY_TYPE
571 && TREE_CODE (type2) == ARRAY_TYPE)
572 return -1;
574 /* ??? In Ada, an lvalue of an unconstrained type can be used to access an
575 object of one of its constrained subtypes, e.g. when a function with an
576 unconstrained parameter passed by reference is called on an object and
577 inlined. But, even in the case of a fixed size, type and subtypes are
578 not equivalent enough as to share the same TYPE_CANONICAL, since this
579 would mean that conversions between them are useless, whereas they are
580 not (e.g. type and subtypes can have different modes). So, in the end,
581 they are only guaranteed to have the same alias set. */
582 if (get_alias_set (type1) == get_alias_set (type2))
583 return -1;
585 /* The types are known to be not equal. */
586 return 0;
589 /* Determine if the two component references REF1 and REF2 which are
590 based on access types TYPE1 and TYPE2 and of which at least one is based
591 on an indirect reference may alias. REF2 is the only one that can
592 be a decl in which case REF2_IS_DECL is true.
593 REF1_ALIAS_SET, BASE1_ALIAS_SET, REF2_ALIAS_SET and BASE2_ALIAS_SET
594 are the respective alias sets. */
596 static bool
597 aliasing_component_refs_p (tree ref1, tree type1,
598 alias_set_type ref1_alias_set,
599 alias_set_type base1_alias_set,
600 HOST_WIDE_INT offset1, HOST_WIDE_INT max_size1,
601 tree ref2, tree type2,
602 alias_set_type ref2_alias_set,
603 alias_set_type base2_alias_set,
604 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2,
605 bool ref2_is_decl)
607 /* If one reference is a component references through pointers try to find a
608 common base and apply offset based disambiguation. This handles
609 for example
610 struct A { int i; int j; } *q;
611 struct B { struct A a; int k; } *p;
612 disambiguating q->i and p->a.j. */
613 tree *refp;
614 int same_p;
616 /* Now search for the type1 in the access path of ref2. This
617 would be a common base for doing offset based disambiguation on. */
618 refp = &ref2;
619 while (handled_component_p (*refp)
620 && same_type_for_tbaa (TREE_TYPE (*refp), type1) == 0)
621 refp = &TREE_OPERAND (*refp, 0);
622 same_p = same_type_for_tbaa (TREE_TYPE (*refp), type1);
623 /* If we couldn't compare types we have to bail out. */
624 if (same_p == -1)
625 return true;
626 else if (same_p == 1)
628 HOST_WIDE_INT offadj, sztmp, msztmp;
629 get_ref_base_and_extent (*refp, &offadj, &sztmp, &msztmp);
630 offset2 -= offadj;
631 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
633 /* If we didn't find a common base, try the other way around. */
634 refp = &ref1;
635 while (handled_component_p (*refp)
636 && same_type_for_tbaa (TREE_TYPE (*refp), type2) == 0)
637 refp = &TREE_OPERAND (*refp, 0);
638 same_p = same_type_for_tbaa (TREE_TYPE (*refp), type2);
639 /* If we couldn't compare types we have to bail out. */
640 if (same_p == -1)
641 return true;
642 else if (same_p == 1)
644 HOST_WIDE_INT offadj, sztmp, msztmp;
645 get_ref_base_and_extent (*refp, &offadj, &sztmp, &msztmp);
646 offset1 -= offadj;
647 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
650 /* If we have two type access paths B1.path1 and B2.path2 they may
651 only alias if either B1 is in B2.path2 or B2 is in B1.path1.
652 But we can still have a path that goes B1.path1...B2.path2 with
653 a part that we do not see. So we can only disambiguate now
654 if there is no B2 in the tail of path1 and no B1 on the
655 tail of path2. */
656 if (base1_alias_set == ref2_alias_set
657 || alias_set_subset_of (base1_alias_set, ref2_alias_set))
658 return true;
659 /* If this is ptr vs. decl then we know there is no ptr ... decl path. */
660 if (!ref2_is_decl)
661 return (base2_alias_set == ref1_alias_set
662 || alias_set_subset_of (base2_alias_set, ref1_alias_set));
663 return false;
666 /* Return true if two memory references based on the variables BASE1
667 and BASE2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
668 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. */
670 static bool
671 decl_refs_may_alias_p (tree base1,
672 HOST_WIDE_INT offset1, HOST_WIDE_INT max_size1,
673 tree base2,
674 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2)
676 gcc_assert (SSA_VAR_P (base1) && SSA_VAR_P (base2));
678 /* If both references are based on different variables, they cannot alias. */
679 if (base1 != base2)
680 return false;
682 /* If both references are based on the same variable, they cannot alias if
683 the accesses do not overlap. */
684 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
687 /* Return true if an indirect reference based on *PTR1 constrained
688 to [OFFSET1, OFFSET1 + MAX_SIZE1) may alias a variable based on BASE2
689 constrained to [OFFSET2, OFFSET2 + MAX_SIZE2). *PTR1 and BASE2 have
690 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
691 in which case they are computed on-demand. REF1 and REF2
692 if non-NULL are the complete memory reference trees. */
694 static bool
695 indirect_ref_may_alias_decl_p (tree ref1 ATTRIBUTE_UNUSED, tree base1,
696 HOST_WIDE_INT offset1,
697 HOST_WIDE_INT max_size1 ATTRIBUTE_UNUSED,
698 alias_set_type ref1_alias_set,
699 alias_set_type base1_alias_set,
700 tree ref2 ATTRIBUTE_UNUSED, tree base2,
701 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2,
702 alias_set_type ref2_alias_set,
703 alias_set_type base2_alias_set, bool tbaa_p)
705 tree ptr1;
706 tree ptrtype1;
707 HOST_WIDE_INT offset1p = offset1, offset2p = offset2;
709 ptr1 = TREE_OPERAND (base1, 0);
711 /* The offset embedded in MEM_REFs can be negative. Bias them
712 so that the resulting offset adjustment is positive. */
713 if (TREE_CODE (base1) == MEM_REF
714 || TREE_CODE (base1) == TARGET_MEM_REF)
716 double_int moff = mem_ref_offset (base1);
717 moff = double_int_lshift (moff,
718 BITS_PER_UNIT == 8
719 ? 3 : exact_log2 (BITS_PER_UNIT),
720 HOST_BITS_PER_DOUBLE_INT, true);
721 if (double_int_negative_p (moff))
722 offset2p += double_int_neg (moff).low;
723 else
724 offset1p += moff.low;
727 /* If only one reference is based on a variable, they cannot alias if
728 the pointer access is beyond the extent of the variable access.
729 (the pointer base cannot validly point to an offset less than zero
730 of the variable).
731 They also cannot alias if the pointer may not point to the decl. */
732 if ((TREE_CODE (base1) != TARGET_MEM_REF
733 || (!TMR_INDEX (base1) && !TMR_INDEX2 (base1)))
734 && !ranges_overlap_p (MAX (0, offset1p), -1, offset2p, max_size2))
735 return false;
736 if (!ptr_deref_may_alias_decl_p (ptr1, base2))
737 return false;
739 /* Disambiguations that rely on strict aliasing rules follow. */
740 if (!flag_strict_aliasing || !tbaa_p)
741 return true;
743 if (TREE_CODE (base1) == MEM_REF)
744 ptrtype1 = TREE_TYPE (TREE_OPERAND (base1, 1));
745 else if (TREE_CODE (base1) == TARGET_MEM_REF)
746 ptrtype1 = TREE_TYPE (TMR_OFFSET (base1));
747 else
748 ptrtype1 = TREE_TYPE (ptr1);
750 /* If the alias set for a pointer access is zero all bets are off. */
751 if (base1_alias_set == -1)
752 base1_alias_set = get_deref_alias_set (ptrtype1);
753 if (base1_alias_set == 0)
754 return true;
755 if (base2_alias_set == -1)
756 base2_alias_set = get_alias_set (base2);
758 /* If both references are through the same type, they do not alias
759 if the accesses do not overlap. This does extra disambiguation
760 for mixed/pointer accesses but requires strict aliasing.
761 For MEM_REFs we require that the component-ref offset we computed
762 is relative to the start of the type which we ensure by
763 comparing rvalue and access type and disregarding the constant
764 pointer offset. */
765 if ((TREE_CODE (base1) != TARGET_MEM_REF
766 || (!TMR_INDEX (base1) && !TMR_INDEX2 (base1)))
767 && (TREE_CODE (base1) != MEM_REF
768 || same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) == 1)
769 && same_type_for_tbaa (TREE_TYPE (ptrtype1), TREE_TYPE (base2)) == 1)
770 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
772 /* When we are trying to disambiguate an access with a pointer dereference
773 as base versus one with a decl as base we can use both the size
774 of the decl and its dynamic type for extra disambiguation.
775 ??? We do not know anything about the dynamic type of the decl
776 other than that its alias-set contains base2_alias_set as a subset
777 which does not help us here. */
778 /* As we know nothing useful about the dynamic type of the decl just
779 use the usual conflict check rather than a subset test.
780 ??? We could introduce -fvery-strict-aliasing when the language
781 does not allow decls to have a dynamic type that differs from their
782 static type. Then we can check
783 !alias_set_subset_of (base1_alias_set, base2_alias_set) instead. */
784 if (base1_alias_set != base2_alias_set
785 && !alias_sets_conflict_p (base1_alias_set, base2_alias_set))
786 return false;
787 /* If the size of the access relevant for TBAA through the pointer
788 is bigger than the size of the decl we can't possibly access the
789 decl via that pointer. */
790 if (DECL_SIZE (base2) && COMPLETE_TYPE_P (TREE_TYPE (ptrtype1))
791 && TREE_CODE (DECL_SIZE (base2)) == INTEGER_CST
792 && TREE_CODE (TYPE_SIZE (TREE_TYPE (ptrtype1))) == INTEGER_CST
793 /* ??? This in turn may run afoul when a decl of type T which is
794 a member of union type U is accessed through a pointer to
795 type U and sizeof T is smaller than sizeof U. */
796 && TREE_CODE (TREE_TYPE (ptrtype1)) != UNION_TYPE
797 && TREE_CODE (TREE_TYPE (ptrtype1)) != QUAL_UNION_TYPE
798 && tree_int_cst_lt (DECL_SIZE (base2), TYPE_SIZE (TREE_TYPE (ptrtype1))))
799 return false;
801 /* Do access-path based disambiguation. */
802 if (ref1 && ref2
803 && handled_component_p (ref1)
804 && handled_component_p (ref2)
805 && TREE_CODE (base1) != TARGET_MEM_REF
806 && (TREE_CODE (base1) != MEM_REF
807 || same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) == 1))
808 return aliasing_component_refs_p (ref1, TREE_TYPE (ptrtype1),
809 ref1_alias_set, base1_alias_set,
810 offset1, max_size1,
811 ref2, TREE_TYPE (base2),
812 ref2_alias_set, base2_alias_set,
813 offset2, max_size2, true);
815 return true;
818 /* Return true if two indirect references based on *PTR1
819 and *PTR2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
820 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. *PTR1 and *PTR2 have
821 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
822 in which case they are computed on-demand. REF1 and REF2
823 if non-NULL are the complete memory reference trees. */
825 static bool
826 indirect_refs_may_alias_p (tree ref1 ATTRIBUTE_UNUSED, tree base1,
827 HOST_WIDE_INT offset1, HOST_WIDE_INT max_size1,
828 alias_set_type ref1_alias_set,
829 alias_set_type base1_alias_set,
830 tree ref2 ATTRIBUTE_UNUSED, tree base2,
831 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2,
832 alias_set_type ref2_alias_set,
833 alias_set_type base2_alias_set, bool tbaa_p)
835 tree ptr1;
836 tree ptr2;
837 tree ptrtype1, ptrtype2;
839 ptr1 = TREE_OPERAND (base1, 0);
840 ptr2 = TREE_OPERAND (base2, 0);
842 /* If both bases are based on pointers they cannot alias if they may not
843 point to the same memory object or if they point to the same object
844 and the accesses do not overlap. */
845 if ((!cfun || gimple_in_ssa_p (cfun))
846 && operand_equal_p (ptr1, ptr2, 0)
847 && (((TREE_CODE (base1) != TARGET_MEM_REF
848 || (!TMR_INDEX (base1) && !TMR_INDEX2 (base1)))
849 && (TREE_CODE (base2) != TARGET_MEM_REF
850 || (!TMR_INDEX (base2) && !TMR_INDEX2 (base2))))
851 || (TREE_CODE (base1) == TARGET_MEM_REF
852 && TREE_CODE (base2) == TARGET_MEM_REF
853 && (TMR_STEP (base1) == TMR_STEP (base2)
854 || (TMR_STEP (base1) && TMR_STEP (base2)
855 && operand_equal_p (TMR_STEP (base1),
856 TMR_STEP (base2), 0)))
857 && (TMR_INDEX (base1) == TMR_INDEX (base2)
858 || (TMR_INDEX (base1) && TMR_INDEX (base2)
859 && operand_equal_p (TMR_INDEX (base1),
860 TMR_INDEX (base2), 0)))
861 && (TMR_INDEX2 (base1) == TMR_INDEX2 (base2)
862 || (TMR_INDEX2 (base1) && TMR_INDEX2 (base2)
863 && operand_equal_p (TMR_INDEX2 (base1),
864 TMR_INDEX2 (base2), 0))))))
866 /* The offset embedded in MEM_REFs can be negative. Bias them
867 so that the resulting offset adjustment is positive. */
868 if (TREE_CODE (base1) == MEM_REF
869 || TREE_CODE (base1) == TARGET_MEM_REF)
871 double_int moff = mem_ref_offset (base1);
872 moff = double_int_lshift (moff,
873 BITS_PER_UNIT == 8
874 ? 3 : exact_log2 (BITS_PER_UNIT),
875 HOST_BITS_PER_DOUBLE_INT, true);
876 if (double_int_negative_p (moff))
877 offset2 += double_int_neg (moff).low;
878 else
879 offset1 += moff.low;
881 if (TREE_CODE (base2) == MEM_REF
882 || TREE_CODE (base2) == TARGET_MEM_REF)
884 double_int moff = mem_ref_offset (base2);
885 moff = double_int_lshift (moff,
886 BITS_PER_UNIT == 8
887 ? 3 : exact_log2 (BITS_PER_UNIT),
888 HOST_BITS_PER_DOUBLE_INT, true);
889 if (double_int_negative_p (moff))
890 offset1 += double_int_neg (moff).low;
891 else
892 offset2 += moff.low;
894 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
896 if (!ptr_derefs_may_alias_p (ptr1, ptr2))
897 return false;
899 /* Disambiguations that rely on strict aliasing rules follow. */
900 if (!flag_strict_aliasing || !tbaa_p)
901 return true;
903 if (TREE_CODE (base1) == MEM_REF)
904 ptrtype1 = TREE_TYPE (TREE_OPERAND (base1, 1));
905 else if (TREE_CODE (base1) == TARGET_MEM_REF)
906 ptrtype1 = TREE_TYPE (TMR_OFFSET (base1));
907 else
908 ptrtype1 = TREE_TYPE (ptr1);
909 if (TREE_CODE (base2) == MEM_REF)
910 ptrtype2 = TREE_TYPE (TREE_OPERAND (base2, 1));
911 else if (TREE_CODE (base2) == TARGET_MEM_REF)
912 ptrtype2 = TREE_TYPE (TMR_OFFSET (base2));
913 else
914 ptrtype2 = TREE_TYPE (ptr2);
916 /* If the alias set for a pointer access is zero all bets are off. */
917 if (base1_alias_set == -1)
918 base1_alias_set = get_deref_alias_set (ptrtype1);
919 if (base1_alias_set == 0)
920 return true;
921 if (base2_alias_set == -1)
922 base2_alias_set = get_deref_alias_set (ptrtype2);
923 if (base2_alias_set == 0)
924 return true;
926 /* If both references are through the same type, they do not alias
927 if the accesses do not overlap. This does extra disambiguation
928 for mixed/pointer accesses but requires strict aliasing. */
929 if ((TREE_CODE (base1) != TARGET_MEM_REF || !TMR_INDEX (base1))
930 && (TREE_CODE (base2) != TARGET_MEM_REF || !TMR_INDEX (base2))
931 && (TREE_CODE (base1) != MEM_REF
932 || same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) == 1)
933 && (TREE_CODE (base2) != MEM_REF
934 || same_type_for_tbaa (TREE_TYPE (base2), TREE_TYPE (ptrtype2)) == 1)
935 && same_type_for_tbaa (TREE_TYPE (ptrtype1),
936 TREE_TYPE (ptrtype2)) == 1)
937 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
939 /* Do type-based disambiguation. */
940 if (base1_alias_set != base2_alias_set
941 && !alias_sets_conflict_p (base1_alias_set, base2_alias_set))
942 return false;
944 /* Do access-path based disambiguation. */
945 if (ref1 && ref2
946 && handled_component_p (ref1)
947 && handled_component_p (ref2)
948 && TREE_CODE (base1) != TARGET_MEM_REF
949 && TREE_CODE (base2) != TARGET_MEM_REF
950 && (TREE_CODE (base1) != MEM_REF
951 || same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) == 1)
952 && (TREE_CODE (base2) != MEM_REF
953 || same_type_for_tbaa (TREE_TYPE (base2), TREE_TYPE (ptrtype2)) == 1))
954 return aliasing_component_refs_p (ref1, TREE_TYPE (ptrtype1),
955 ref1_alias_set, base1_alias_set,
956 offset1, max_size1,
957 ref2, TREE_TYPE (ptrtype2),
958 ref2_alias_set, base2_alias_set,
959 offset2, max_size2, false);
961 return true;
964 /* Return true, if the two memory references REF1 and REF2 may alias. */
966 bool
967 refs_may_alias_p_1 (ao_ref *ref1, ao_ref *ref2, bool tbaa_p)
969 tree base1, base2;
970 HOST_WIDE_INT offset1 = 0, offset2 = 0;
971 HOST_WIDE_INT max_size1 = -1, max_size2 = -1;
972 bool var1_p, var2_p, ind1_p, ind2_p;
974 gcc_checking_assert ((!ref1->ref
975 || TREE_CODE (ref1->ref) == SSA_NAME
976 || DECL_P (ref1->ref)
977 || TREE_CODE (ref1->ref) == STRING_CST
978 || handled_component_p (ref1->ref)
979 || INDIRECT_REF_P (ref1->ref)
980 || TREE_CODE (ref1->ref) == MEM_REF
981 || TREE_CODE (ref1->ref) == TARGET_MEM_REF)
982 && (!ref2->ref
983 || TREE_CODE (ref2->ref) == SSA_NAME
984 || DECL_P (ref2->ref)
985 || TREE_CODE (ref2->ref) == STRING_CST
986 || handled_component_p (ref2->ref)
987 || INDIRECT_REF_P (ref2->ref)
988 || TREE_CODE (ref2->ref) == MEM_REF
989 || TREE_CODE (ref2->ref) == TARGET_MEM_REF));
991 /* Decompose the references into their base objects and the access. */
992 base1 = ao_ref_base (ref1);
993 offset1 = ref1->offset;
994 max_size1 = ref1->max_size;
995 base2 = ao_ref_base (ref2);
996 offset2 = ref2->offset;
997 max_size2 = ref2->max_size;
999 /* We can end up with registers or constants as bases for example from
1000 *D.1663_44 = VIEW_CONVERT_EXPR<struct DB_LSN>(__tmp$B0F64_59);
1001 which is seen as a struct copy. */
1002 if (TREE_CODE (base1) == SSA_NAME
1003 || TREE_CODE (base2) == SSA_NAME
1004 || TREE_CODE (base1) == CONST_DECL
1005 || TREE_CODE (base2) == CONST_DECL
1006 || TREE_CODE (base1) == STRING_CST
1007 || TREE_CODE (base2) == STRING_CST
1008 || is_gimple_min_invariant (base1)
1009 || is_gimple_min_invariant (base2))
1010 return false;
1012 /* We can end up refering to code via function and label decls.
1013 As we likely do not properly track code aliases conservatively
1014 bail out. */
1015 if (TREE_CODE (base1) == FUNCTION_DECL
1016 || TREE_CODE (base2) == FUNCTION_DECL
1017 || TREE_CODE (base1) == LABEL_DECL
1018 || TREE_CODE (base2) == LABEL_DECL)
1019 return true;
1021 /* Defer to simple offset based disambiguation if we have
1022 references based on two decls. Do this before defering to
1023 TBAA to handle must-alias cases in conformance with the
1024 GCC extension of allowing type-punning through unions. */
1025 var1_p = SSA_VAR_P (base1);
1026 var2_p = SSA_VAR_P (base2);
1027 if (var1_p && var2_p)
1028 return decl_refs_may_alias_p (base1, offset1, max_size1,
1029 base2, offset2, max_size2);
1031 ind1_p = (INDIRECT_REF_P (base1)
1032 || (TREE_CODE (base1) == MEM_REF)
1033 || (TREE_CODE (base1) == TARGET_MEM_REF));
1034 ind2_p = (INDIRECT_REF_P (base2)
1035 || (TREE_CODE (base2) == MEM_REF)
1036 || (TREE_CODE (base2) == TARGET_MEM_REF));
1038 /* Canonicalize the pointer-vs-decl case. */
1039 if (ind1_p && var2_p)
1041 HOST_WIDE_INT tmp1;
1042 tree tmp2;
1043 ao_ref *tmp3;
1044 tmp1 = offset1; offset1 = offset2; offset2 = tmp1;
1045 tmp1 = max_size1; max_size1 = max_size2; max_size2 = tmp1;
1046 tmp2 = base1; base1 = base2; base2 = tmp2;
1047 tmp3 = ref1; ref1 = ref2; ref2 = tmp3;
1048 var1_p = true;
1049 ind1_p = false;
1050 var2_p = false;
1051 ind2_p = true;
1054 /* First defer to TBAA if possible. */
1055 if (tbaa_p
1056 && flag_strict_aliasing
1057 && !alias_sets_conflict_p (ao_ref_alias_set (ref1),
1058 ao_ref_alias_set (ref2)))
1059 return false;
1061 /* Dispatch to the pointer-vs-decl or pointer-vs-pointer disambiguators. */
1062 if (var1_p && ind2_p)
1063 return indirect_ref_may_alias_decl_p (ref2->ref, base2,
1064 offset2, max_size2,
1065 ao_ref_alias_set (ref2), -1,
1066 ref1->ref, base1,
1067 offset1, max_size1,
1068 ao_ref_alias_set (ref1),
1069 ao_ref_base_alias_set (ref1),
1070 tbaa_p);
1071 else if (ind1_p && ind2_p)
1072 return indirect_refs_may_alias_p (ref1->ref, base1,
1073 offset1, max_size1,
1074 ao_ref_alias_set (ref1), -1,
1075 ref2->ref, base2,
1076 offset2, max_size2,
1077 ao_ref_alias_set (ref2), -1,
1078 tbaa_p);
1080 gcc_unreachable ();
1083 bool
1084 refs_may_alias_p (tree ref1, tree ref2)
1086 ao_ref r1, r2;
1087 bool res;
1088 ao_ref_init (&r1, ref1);
1089 ao_ref_init (&r2, ref2);
1090 res = refs_may_alias_p_1 (&r1, &r2, true);
1091 if (res)
1092 ++alias_stats.refs_may_alias_p_may_alias;
1093 else
1094 ++alias_stats.refs_may_alias_p_no_alias;
1095 return res;
1098 /* Returns true if there is a anti-dependence for the STORE that
1099 executes after the LOAD. */
1101 bool
1102 refs_anti_dependent_p (tree load, tree store)
1104 ao_ref r1, r2;
1105 ao_ref_init (&r1, load);
1106 ao_ref_init (&r2, store);
1107 return refs_may_alias_p_1 (&r1, &r2, false);
1110 /* Returns true if there is a output dependence for the stores
1111 STORE1 and STORE2. */
1113 bool
1114 refs_output_dependent_p (tree store1, tree store2)
1116 ao_ref r1, r2;
1117 ao_ref_init (&r1, store1);
1118 ao_ref_init (&r2, store2);
1119 return refs_may_alias_p_1 (&r1, &r2, false);
1122 /* If the call CALL may use the memory reference REF return true,
1123 otherwise return false. */
1125 static bool
1126 ref_maybe_used_by_call_p_1 (gimple call, ao_ref *ref)
1128 tree base, callee;
1129 unsigned i;
1130 int flags = gimple_call_flags (call);
1132 /* Const functions without a static chain do not implicitly use memory. */
1133 if (!gimple_call_chain (call)
1134 && (flags & (ECF_CONST|ECF_NOVOPS)))
1135 goto process_args;
1137 base = ao_ref_base (ref);
1138 if (!base)
1139 return true;
1141 /* If the reference is based on a decl that is not aliased the call
1142 cannot possibly use it. */
1143 if (DECL_P (base)
1144 && !may_be_aliased (base)
1145 /* But local statics can be used through recursion. */
1146 && !is_global_var (base))
1147 goto process_args;
1149 callee = gimple_call_fndecl (call);
1151 /* Handle those builtin functions explicitly that do not act as
1152 escape points. See tree-ssa-structalias.c:find_func_aliases
1153 for the list of builtins we might need to handle here. */
1154 if (callee != NULL_TREE
1155 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
1156 switch (DECL_FUNCTION_CODE (callee))
1158 /* All the following functions clobber memory pointed to by
1159 their first argument. */
1160 case BUILT_IN_STRCPY:
1161 case BUILT_IN_STRNCPY:
1162 case BUILT_IN_MEMCPY:
1163 case BUILT_IN_MEMMOVE:
1164 case BUILT_IN_MEMPCPY:
1165 case BUILT_IN_STPCPY:
1166 case BUILT_IN_STPNCPY:
1167 case BUILT_IN_STRCAT:
1168 case BUILT_IN_STRNCAT:
1170 ao_ref dref;
1171 tree size = NULL_TREE;
1172 if (gimple_call_num_args (call) == 3)
1173 size = gimple_call_arg (call, 2);
1174 ao_ref_init_from_ptr_and_size (&dref,
1175 gimple_call_arg (call, 1),
1176 size);
1177 return refs_may_alias_p_1 (&dref, ref, false);
1179 case BUILT_IN_BCOPY:
1181 ao_ref dref;
1182 tree size = gimple_call_arg (call, 2);
1183 ao_ref_init_from_ptr_and_size (&dref,
1184 gimple_call_arg (call, 0),
1185 size);
1186 return refs_may_alias_p_1 (&dref, ref, false);
1188 /* The following builtins do not read from memory. */
1189 case BUILT_IN_FREE:
1190 case BUILT_IN_MALLOC:
1191 case BUILT_IN_CALLOC:
1192 case BUILT_IN_MEMSET:
1193 case BUILT_IN_FREXP:
1194 case BUILT_IN_FREXPF:
1195 case BUILT_IN_FREXPL:
1196 case BUILT_IN_GAMMA_R:
1197 case BUILT_IN_GAMMAF_R:
1198 case BUILT_IN_GAMMAL_R:
1199 case BUILT_IN_LGAMMA_R:
1200 case BUILT_IN_LGAMMAF_R:
1201 case BUILT_IN_LGAMMAL_R:
1202 case BUILT_IN_MODF:
1203 case BUILT_IN_MODFF:
1204 case BUILT_IN_MODFL:
1205 case BUILT_IN_REMQUO:
1206 case BUILT_IN_REMQUOF:
1207 case BUILT_IN_REMQUOL:
1208 case BUILT_IN_SINCOS:
1209 case BUILT_IN_SINCOSF:
1210 case BUILT_IN_SINCOSL:
1211 return false;
1213 default:
1214 /* Fallthru to general call handling. */;
1217 /* Check if base is a global static variable that is not read
1218 by the function. */
1219 if (TREE_CODE (base) == VAR_DECL
1220 && TREE_STATIC (base))
1222 bitmap not_read;
1224 if (callee != NULL_TREE
1225 && (not_read
1226 = ipa_reference_get_not_read_global (cgraph_node (callee)))
1227 && bitmap_bit_p (not_read, DECL_UID (base)))
1228 goto process_args;
1231 /* Check if the base variable is call-used. */
1232 if (DECL_P (base))
1234 if (pt_solution_includes (gimple_call_use_set (call), base))
1235 return true;
1237 else if ((INDIRECT_REF_P (base)
1238 || TREE_CODE (base) == MEM_REF)
1239 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
1241 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0));
1242 if (!pi)
1243 return true;
1245 if (pt_solutions_intersect (gimple_call_use_set (call), &pi->pt))
1246 return true;
1248 else
1249 return true;
1251 /* Inspect call arguments for passed-by-value aliases. */
1252 process_args:
1253 for (i = 0; i < gimple_call_num_args (call); ++i)
1255 tree op = gimple_call_arg (call, i);
1256 int flags = gimple_call_arg_flags (call, i);
1258 if (flags & EAF_UNUSED)
1259 continue;
1261 if (TREE_CODE (op) == WITH_SIZE_EXPR)
1262 op = TREE_OPERAND (op, 0);
1264 if (TREE_CODE (op) != SSA_NAME
1265 && !is_gimple_min_invariant (op))
1267 ao_ref r;
1268 ao_ref_init (&r, op);
1269 if (refs_may_alias_p_1 (&r, ref, true))
1270 return true;
1274 return false;
1277 static bool
1278 ref_maybe_used_by_call_p (gimple call, tree ref)
1280 ao_ref r;
1281 bool res;
1282 ao_ref_init (&r, ref);
1283 res = ref_maybe_used_by_call_p_1 (call, &r);
1284 if (res)
1285 ++alias_stats.ref_maybe_used_by_call_p_may_alias;
1286 else
1287 ++alias_stats.ref_maybe_used_by_call_p_no_alias;
1288 return res;
1292 /* If the statement STMT may use the memory reference REF return
1293 true, otherwise return false. */
1295 bool
1296 ref_maybe_used_by_stmt_p (gimple stmt, tree ref)
1298 if (is_gimple_assign (stmt))
1300 tree rhs;
1302 /* All memory assign statements are single. */
1303 if (!gimple_assign_single_p (stmt))
1304 return false;
1306 rhs = gimple_assign_rhs1 (stmt);
1307 if (is_gimple_reg (rhs)
1308 || is_gimple_min_invariant (rhs)
1309 || gimple_assign_rhs_code (stmt) == CONSTRUCTOR)
1310 return false;
1312 return refs_may_alias_p (rhs, ref);
1314 else if (is_gimple_call (stmt))
1315 return ref_maybe_used_by_call_p (stmt, ref);
1317 return true;
1320 /* If the call in statement CALL may clobber the memory reference REF
1321 return true, otherwise return false. */
1323 static bool
1324 call_may_clobber_ref_p_1 (gimple call, ao_ref *ref)
1326 tree base;
1327 tree callee;
1329 /* If the call is pure or const it cannot clobber anything. */
1330 if (gimple_call_flags (call)
1331 & (ECF_PURE|ECF_CONST|ECF_LOOPING_CONST_OR_PURE|ECF_NOVOPS))
1332 return false;
1334 base = ao_ref_base (ref);
1335 if (!base)
1336 return true;
1338 if (TREE_CODE (base) == SSA_NAME
1339 || CONSTANT_CLASS_P (base))
1340 return false;
1342 /* If the reference is based on a decl that is not aliased the call
1343 cannot possibly clobber it. */
1344 if (DECL_P (base)
1345 && !may_be_aliased (base)
1346 /* But local non-readonly statics can be modified through recursion
1347 or the call may implement a threading barrier which we must
1348 treat as may-def. */
1349 && (TREE_READONLY (base)
1350 || !is_global_var (base)))
1351 return false;
1353 callee = gimple_call_fndecl (call);
1355 /* Handle those builtin functions explicitly that do not act as
1356 escape points. See tree-ssa-structalias.c:find_func_aliases
1357 for the list of builtins we might need to handle here. */
1358 if (callee != NULL_TREE
1359 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
1360 switch (DECL_FUNCTION_CODE (callee))
1362 /* All the following functions clobber memory pointed to by
1363 their first argument. */
1364 case BUILT_IN_STRCPY:
1365 case BUILT_IN_STRNCPY:
1366 case BUILT_IN_MEMCPY:
1367 case BUILT_IN_MEMMOVE:
1368 case BUILT_IN_MEMPCPY:
1369 case BUILT_IN_STPCPY:
1370 case BUILT_IN_STPNCPY:
1371 case BUILT_IN_STRCAT:
1372 case BUILT_IN_STRNCAT:
1373 case BUILT_IN_MEMSET:
1375 ao_ref dref;
1376 tree size = NULL_TREE;
1377 if (gimple_call_num_args (call) == 3)
1378 size = gimple_call_arg (call, 2);
1379 ao_ref_init_from_ptr_and_size (&dref,
1380 gimple_call_arg (call, 0),
1381 size);
1382 return refs_may_alias_p_1 (&dref, ref, false);
1384 case BUILT_IN_BCOPY:
1386 ao_ref dref;
1387 tree size = gimple_call_arg (call, 2);
1388 ao_ref_init_from_ptr_and_size (&dref,
1389 gimple_call_arg (call, 1),
1390 size);
1391 return refs_may_alias_p_1 (&dref, ref, false);
1393 /* Allocating memory does not have any side-effects apart from
1394 being the definition point for the pointer. */
1395 case BUILT_IN_MALLOC:
1396 case BUILT_IN_CALLOC:
1397 /* Unix98 specifies that errno is set on allocation failure.
1398 Until we properly can track the errno location assume it
1399 is not a local decl but external or anonymous storage in
1400 a different translation unit. Also assume it is of
1401 type int as required by the standard. */
1402 if (flag_errno_math
1403 && TREE_TYPE (base) == integer_type_node)
1405 struct ptr_info_def *pi;
1406 if (DECL_P (base)
1407 && !TREE_STATIC (base))
1408 return true;
1409 else if ((INDIRECT_REF_P (base)
1410 || TREE_CODE (base) == MEM_REF)
1411 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME
1412 && (pi = SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0))))
1413 return pi->pt.anything || pi->pt.nonlocal;
1415 return false;
1416 /* Freeing memory kills the pointed-to memory. More importantly
1417 the call has to serve as a barrier for moving loads and stores
1418 across it. */
1419 case BUILT_IN_FREE:
1421 tree ptr = gimple_call_arg (call, 0);
1422 return ptr_deref_may_alias_ref_p_1 (ptr, ref);
1424 case BUILT_IN_GAMMA_R:
1425 case BUILT_IN_GAMMAF_R:
1426 case BUILT_IN_GAMMAL_R:
1427 case BUILT_IN_LGAMMA_R:
1428 case BUILT_IN_LGAMMAF_R:
1429 case BUILT_IN_LGAMMAL_R:
1431 tree out = gimple_call_arg (call, 1);
1432 if (ptr_deref_may_alias_ref_p_1 (out, ref))
1433 return true;
1434 if (flag_errno_math)
1435 break;
1436 return false;
1438 case BUILT_IN_FREXP:
1439 case BUILT_IN_FREXPF:
1440 case BUILT_IN_FREXPL:
1441 case BUILT_IN_MODF:
1442 case BUILT_IN_MODFF:
1443 case BUILT_IN_MODFL:
1445 tree out = gimple_call_arg (call, 1);
1446 return ptr_deref_may_alias_ref_p_1 (out, ref);
1448 case BUILT_IN_REMQUO:
1449 case BUILT_IN_REMQUOF:
1450 case BUILT_IN_REMQUOL:
1452 tree out = gimple_call_arg (call, 2);
1453 if (ptr_deref_may_alias_ref_p_1 (out, ref))
1454 return true;
1455 if (flag_errno_math)
1456 break;
1457 return false;
1459 case BUILT_IN_SINCOS:
1460 case BUILT_IN_SINCOSF:
1461 case BUILT_IN_SINCOSL:
1463 tree sin = gimple_call_arg (call, 1);
1464 tree cos = gimple_call_arg (call, 2);
1465 return (ptr_deref_may_alias_ref_p_1 (sin, ref)
1466 || ptr_deref_may_alias_ref_p_1 (cos, ref));
1468 default:
1469 /* Fallthru to general call handling. */;
1472 /* Check if base is a global static variable that is not written
1473 by the function. */
1474 if (callee != NULL_TREE
1475 && TREE_CODE (base) == VAR_DECL
1476 && TREE_STATIC (base))
1478 bitmap not_written;
1480 if ((not_written
1481 = ipa_reference_get_not_written_global (cgraph_node (callee)))
1482 && bitmap_bit_p (not_written, DECL_UID (base)))
1483 return false;
1486 /* Check if the base variable is call-clobbered. */
1487 if (DECL_P (base))
1488 return pt_solution_includes (gimple_call_clobber_set (call), base);
1489 else if ((INDIRECT_REF_P (base)
1490 || TREE_CODE (base) == MEM_REF)
1491 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
1493 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0));
1494 if (!pi)
1495 return true;
1497 return pt_solutions_intersect (gimple_call_clobber_set (call), &pi->pt);
1500 return true;
1503 /* If the call in statement CALL may clobber the memory reference REF
1504 return true, otherwise return false. */
1506 bool
1507 call_may_clobber_ref_p (gimple call, tree ref)
1509 bool res;
1510 ao_ref r;
1511 ao_ref_init (&r, ref);
1512 res = call_may_clobber_ref_p_1 (call, &r);
1513 if (res)
1514 ++alias_stats.call_may_clobber_ref_p_may_alias;
1515 else
1516 ++alias_stats.call_may_clobber_ref_p_no_alias;
1517 return res;
1521 /* If the statement STMT may clobber the memory reference REF return true,
1522 otherwise return false. */
1524 bool
1525 stmt_may_clobber_ref_p_1 (gimple stmt, ao_ref *ref)
1527 if (is_gimple_call (stmt))
1529 tree lhs = gimple_call_lhs (stmt);
1530 if (lhs
1531 && !is_gimple_reg (lhs))
1533 ao_ref r;
1534 ao_ref_init (&r, lhs);
1535 if (refs_may_alias_p_1 (ref, &r, true))
1536 return true;
1539 return call_may_clobber_ref_p_1 (stmt, ref);
1541 else if (gimple_assign_single_p (stmt))
1543 tree lhs = gimple_assign_lhs (stmt);
1544 if (!is_gimple_reg (lhs))
1546 ao_ref r;
1547 ao_ref_init (&r, gimple_assign_lhs (stmt));
1548 return refs_may_alias_p_1 (ref, &r, true);
1551 else if (gimple_code (stmt) == GIMPLE_ASM)
1552 return true;
1554 return false;
1557 bool
1558 stmt_may_clobber_ref_p (gimple stmt, tree ref)
1560 ao_ref r;
1561 ao_ref_init (&r, ref);
1562 return stmt_may_clobber_ref_p_1 (stmt, &r);
1565 /* If STMT kills the memory reference REF return true, otherwise
1566 return false. */
1568 static bool
1569 stmt_kills_ref_p_1 (gimple stmt, ao_ref *ref)
1571 if (gimple_has_lhs (stmt)
1572 && TREE_CODE (gimple_get_lhs (stmt)) != SSA_NAME)
1574 tree base, lhs = gimple_get_lhs (stmt);
1575 HOST_WIDE_INT size, offset, max_size;
1576 ao_ref_base (ref);
1577 base = get_ref_base_and_extent (lhs, &offset, &size, &max_size);
1578 /* We can get MEM[symbol: sZ, index: D.8862_1] here,
1579 so base == ref->base does not always hold. */
1580 if (base == ref->base)
1582 /* For a must-alias check we need to be able to constrain
1583 the accesses properly. */
1584 if (size != -1 && size == max_size
1585 && ref->max_size != -1)
1587 if (offset <= ref->offset
1588 && offset + size >= ref->offset + ref->max_size)
1589 return true;
1593 return false;
1596 bool
1597 stmt_kills_ref_p (gimple stmt, tree ref)
1599 ao_ref r;
1600 ao_ref_init (&r, ref);
1601 return stmt_kills_ref_p_1 (stmt, &r);
1605 /* Walk the virtual use-def chain of VUSE until hitting the virtual operand
1606 TARGET or a statement clobbering the memory reference REF in which
1607 case false is returned. The walk starts with VUSE, one argument of PHI. */
1609 static bool
1610 maybe_skip_until (gimple phi, tree target, ao_ref *ref,
1611 tree vuse, bitmap *visited)
1613 if (!*visited)
1614 *visited = BITMAP_ALLOC (NULL);
1616 bitmap_set_bit (*visited, SSA_NAME_VERSION (PHI_RESULT (phi)));
1618 /* Walk until we hit the target. */
1619 while (vuse != target)
1621 gimple def_stmt = SSA_NAME_DEF_STMT (vuse);
1622 /* Recurse for PHI nodes. */
1623 if (gimple_code (def_stmt) == GIMPLE_PHI)
1625 /* An already visited PHI node ends the walk successfully. */
1626 if (bitmap_bit_p (*visited, SSA_NAME_VERSION (PHI_RESULT (def_stmt))))
1627 return true;
1628 vuse = get_continuation_for_phi (def_stmt, ref, visited);
1629 if (!vuse)
1630 return false;
1631 continue;
1633 /* A clobbering statement or the end of the IL ends it failing. */
1634 else if (gimple_nop_p (def_stmt)
1635 || stmt_may_clobber_ref_p_1 (def_stmt, ref))
1636 return false;
1637 vuse = gimple_vuse (def_stmt);
1639 return true;
1642 /* Starting from a PHI node for the virtual operand of the memory reference
1643 REF find a continuation virtual operand that allows to continue walking
1644 statements dominating PHI skipping only statements that cannot possibly
1645 clobber REF. Returns NULL_TREE if no suitable virtual operand can
1646 be found. */
1648 tree
1649 get_continuation_for_phi (gimple phi, ao_ref *ref, bitmap *visited)
1651 unsigned nargs = gimple_phi_num_args (phi);
1653 /* Through a single-argument PHI we can simply look through. */
1654 if (nargs == 1)
1655 return PHI_ARG_DEF (phi, 0);
1657 /* For two arguments try to skip non-aliasing code until we hit
1658 the phi argument definition that dominates the other one. */
1659 if (nargs == 2)
1661 tree arg0 = PHI_ARG_DEF (phi, 0);
1662 tree arg1 = PHI_ARG_DEF (phi, 1);
1663 gimple def0 = SSA_NAME_DEF_STMT (arg0);
1664 gimple def1 = SSA_NAME_DEF_STMT (arg1);
1665 tree common_vuse;
1667 if (arg0 == arg1)
1668 return arg0;
1669 else if (gimple_nop_p (def0)
1670 || (!gimple_nop_p (def1)
1671 && dominated_by_p (CDI_DOMINATORS,
1672 gimple_bb (def1), gimple_bb (def0))))
1674 if (maybe_skip_until (phi, arg0, ref, arg1, visited))
1675 return arg0;
1677 else if (gimple_nop_p (def1)
1678 || dominated_by_p (CDI_DOMINATORS,
1679 gimple_bb (def0), gimple_bb (def1)))
1681 if (maybe_skip_until (phi, arg1, ref, arg0, visited))
1682 return arg1;
1684 /* Special case of a diamond:
1685 MEM_1 = ...
1686 goto (cond) ? L1 : L2
1687 L1: store1 = ... #MEM_2 = vuse(MEM_1)
1688 goto L3
1689 L2: store2 = ... #MEM_3 = vuse(MEM_1)
1690 L3: MEM_4 = PHI<MEM_2, MEM_3>
1691 We were called with the PHI at L3, MEM_2 and MEM_3 don't
1692 dominate each other, but still we can easily skip this PHI node
1693 if we recognize that the vuse MEM operand is the same for both,
1694 and that we can skip both statements (they don't clobber us).
1695 This is still linear. Don't use maybe_skip_until, that might
1696 potentially be slow. */
1697 else if ((common_vuse = gimple_vuse (def0))
1698 && common_vuse == gimple_vuse (def1))
1700 if (!stmt_may_clobber_ref_p_1 (def0, ref)
1701 && !stmt_may_clobber_ref_p_1 (def1, ref))
1702 return common_vuse;
1706 return NULL_TREE;
1709 /* Based on the memory reference REF and its virtual use VUSE call
1710 WALKER for each virtual use that is equivalent to VUSE, including VUSE
1711 itself. That is, for each virtual use for which its defining statement
1712 does not clobber REF.
1714 WALKER is called with REF, the current virtual use and DATA. If
1715 WALKER returns non-NULL the walk stops and its result is returned.
1716 At the end of a non-successful walk NULL is returned.
1718 TRANSLATE if non-NULL is called with a pointer to REF, the virtual
1719 use which definition is a statement that may clobber REF and DATA.
1720 If TRANSLATE returns (void *)-1 the walk stops and NULL is returned.
1721 If TRANSLATE returns non-NULL the walk stops and its result is returned.
1722 If TRANSLATE returns NULL the walk continues and TRANSLATE is supposed
1723 to adjust REF and *DATA to make that valid.
1725 TODO: Cache the vector of equivalent vuses per ref, vuse pair. */
1727 void *
1728 walk_non_aliased_vuses (ao_ref *ref, tree vuse,
1729 void *(*walker)(ao_ref *, tree, void *),
1730 void *(*translate)(ao_ref *, tree, void *), void *data)
1732 bitmap visited = NULL;
1733 void *res;
1735 timevar_push (TV_ALIAS_STMT_WALK);
1739 gimple def_stmt;
1741 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
1742 res = (*walker) (ref, vuse, data);
1743 if (res)
1744 break;
1746 def_stmt = SSA_NAME_DEF_STMT (vuse);
1747 if (gimple_nop_p (def_stmt))
1748 break;
1749 else if (gimple_code (def_stmt) == GIMPLE_PHI)
1750 vuse = get_continuation_for_phi (def_stmt, ref, &visited);
1751 else
1753 if (stmt_may_clobber_ref_p_1 (def_stmt, ref))
1755 if (!translate)
1756 break;
1757 res = (*translate) (ref, vuse, data);
1758 /* Failed lookup and translation. */
1759 if (res == (void *)-1)
1761 res = NULL;
1762 break;
1764 /* Lookup succeeded. */
1765 else if (res != NULL)
1766 break;
1767 /* Translation succeeded, continue walking. */
1769 vuse = gimple_vuse (def_stmt);
1772 while (vuse);
1774 if (visited)
1775 BITMAP_FREE (visited);
1777 timevar_pop (TV_ALIAS_STMT_WALK);
1779 return res;
1783 /* Based on the memory reference REF call WALKER for each vdef which
1784 defining statement may clobber REF, starting with VDEF. If REF
1785 is NULL_TREE, each defining statement is visited.
1787 WALKER is called with REF, the current vdef and DATA. If WALKER
1788 returns true the walk is stopped, otherwise it continues.
1790 At PHI nodes walk_aliased_vdefs forks into one walk for reach
1791 PHI argument (but only one walk continues on merge points), the
1792 return value is true if any of the walks was successful.
1794 The function returns the number of statements walked. */
1796 static unsigned int
1797 walk_aliased_vdefs_1 (ao_ref *ref, tree vdef,
1798 bool (*walker)(ao_ref *, tree, void *), void *data,
1799 bitmap *visited, unsigned int cnt)
1803 gimple def_stmt = SSA_NAME_DEF_STMT (vdef);
1805 if (*visited
1806 && !bitmap_set_bit (*visited, SSA_NAME_VERSION (vdef)))
1807 return cnt;
1809 if (gimple_nop_p (def_stmt))
1810 return cnt;
1811 else if (gimple_code (def_stmt) == GIMPLE_PHI)
1813 unsigned i;
1814 if (!*visited)
1815 *visited = BITMAP_ALLOC (NULL);
1816 for (i = 0; i < gimple_phi_num_args (def_stmt); ++i)
1817 cnt += walk_aliased_vdefs_1 (ref, gimple_phi_arg_def (def_stmt, i),
1818 walker, data, visited, 0);
1819 return cnt;
1822 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
1823 cnt++;
1824 if ((!ref
1825 || stmt_may_clobber_ref_p_1 (def_stmt, ref))
1826 && (*walker) (ref, vdef, data))
1827 return cnt;
1829 vdef = gimple_vuse (def_stmt);
1831 while (1);
1834 unsigned int
1835 walk_aliased_vdefs (ao_ref *ref, tree vdef,
1836 bool (*walker)(ao_ref *, tree, void *), void *data,
1837 bitmap *visited)
1839 bitmap local_visited = NULL;
1840 unsigned int ret;
1842 timevar_push (TV_ALIAS_STMT_WALK);
1844 ret = walk_aliased_vdefs_1 (ref, vdef, walker, data,
1845 visited ? visited : &local_visited, 0);
1846 if (local_visited)
1847 BITMAP_FREE (local_visited);
1849 timevar_pop (TV_ALIAS_STMT_WALK);
1851 return ret;