]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/tree-ssa-alias.c
a8be8181bd77f47b8692764a88992ee821f59705
[thirdparty/gcc.git] / gcc / tree-ssa-alias.c
1 /* Alias analysis for trees.
2 Copyright (C) 2004-2013 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "tm_p.h"
27 #include "target.h"
28 #include "basic-block.h"
29 #include "timevar.h" /* for TV_ALIAS_STMT_WALK */
30 #include "ggc.h"
31 #include "langhooks.h"
32 #include "flags.h"
33 #include "function.h"
34 #include "tree-pretty-print.h"
35 #include "dumpfile.h"
36 #include "gimple.h"
37 #include "gimple-ssa.h"
38 #include "stringpool.h"
39 #include "tree-ssanames.h"
40 #include "expr.h"
41 #include "tree-dfa.h"
42 #include "tree-inline.h"
43 #include "params.h"
44 #include "vec.h"
45 #include "pointer-set.h"
46 #include "alloc-pool.h"
47 #include "tree-ssa-alias.h"
48 #include "ipa-reference.h"
49
50 /* Broad overview of how alias analysis on gimple works:
51
52 Statements clobbering or using memory are linked through the
53 virtual operand factored use-def chain. The virtual operand
54 is unique per function, its symbol is accessible via gimple_vop (cfun).
55 Virtual operands are used for efficiently walking memory statements
56 in the gimple IL and are useful for things like value-numbering as
57 a generation count for memory references.
58
59 SSA_NAME pointers may have associated points-to information
60 accessible via the SSA_NAME_PTR_INFO macro. Flow-insensitive
61 points-to information is (re-)computed by the TODO_rebuild_alias
62 pass manager todo. Points-to information is also used for more
63 precise tracking of call-clobbered and call-used variables and
64 related disambiguations.
65
66 This file contains functions for disambiguating memory references,
67 the so called alias-oracle and tools for walking of the gimple IL.
68
69 The main alias-oracle entry-points are
70
71 bool stmt_may_clobber_ref_p (gimple, tree)
72
73 This function queries if a statement may invalidate (parts of)
74 the memory designated by the reference tree argument.
75
76 bool ref_maybe_used_by_stmt_p (gimple, tree)
77
78 This function queries if a statement may need (parts of) the
79 memory designated by the reference tree argument.
80
81 There are variants of these functions that only handle the call
82 part of a statement, call_may_clobber_ref_p and ref_maybe_used_by_call_p.
83 Note that these do not disambiguate against a possible call lhs.
84
85 bool refs_may_alias_p (tree, tree)
86
87 This function tries to disambiguate two reference trees.
88
89 bool ptr_deref_may_alias_global_p (tree)
90
91 This function queries if dereferencing a pointer variable may
92 alias global memory.
93
94 More low-level disambiguators are available and documented in
95 this file. Low-level disambiguators dealing with points-to
96 information are in tree-ssa-structalias.c. */
97
98
99 /* Query statistics for the different low-level disambiguators.
100 A high-level query may trigger multiple of them. */
101
102 static struct {
103 unsigned HOST_WIDE_INT refs_may_alias_p_may_alias;
104 unsigned HOST_WIDE_INT refs_may_alias_p_no_alias;
105 unsigned HOST_WIDE_INT ref_maybe_used_by_call_p_may_alias;
106 unsigned HOST_WIDE_INT ref_maybe_used_by_call_p_no_alias;
107 unsigned HOST_WIDE_INT call_may_clobber_ref_p_may_alias;
108 unsigned HOST_WIDE_INT call_may_clobber_ref_p_no_alias;
109 } alias_stats;
110
111 void
112 dump_alias_stats (FILE *s)
113 {
114 fprintf (s, "\nAlias oracle query stats:\n");
115 fprintf (s, " refs_may_alias_p: "
116 HOST_WIDE_INT_PRINT_DEC" disambiguations, "
117 HOST_WIDE_INT_PRINT_DEC" queries\n",
118 alias_stats.refs_may_alias_p_no_alias,
119 alias_stats.refs_may_alias_p_no_alias
120 + alias_stats.refs_may_alias_p_may_alias);
121 fprintf (s, " ref_maybe_used_by_call_p: "
122 HOST_WIDE_INT_PRINT_DEC" disambiguations, "
123 HOST_WIDE_INT_PRINT_DEC" queries\n",
124 alias_stats.ref_maybe_used_by_call_p_no_alias,
125 alias_stats.refs_may_alias_p_no_alias
126 + alias_stats.ref_maybe_used_by_call_p_may_alias);
127 fprintf (s, " call_may_clobber_ref_p: "
128 HOST_WIDE_INT_PRINT_DEC" disambiguations, "
129 HOST_WIDE_INT_PRINT_DEC" queries\n",
130 alias_stats.call_may_clobber_ref_p_no_alias,
131 alias_stats.call_may_clobber_ref_p_no_alias
132 + alias_stats.call_may_clobber_ref_p_may_alias);
133 }
134
135
136 /* Return true, if dereferencing PTR may alias with a global variable. */
137
138 bool
139 ptr_deref_may_alias_global_p (tree ptr)
140 {
141 struct ptr_info_def *pi;
142
143 /* If we end up with a pointer constant here that may point
144 to global memory. */
145 if (TREE_CODE (ptr) != SSA_NAME)
146 return true;
147
148 pi = SSA_NAME_PTR_INFO (ptr);
149
150 /* If we do not have points-to information for this variable,
151 we have to punt. */
152 if (!pi)
153 return true;
154
155 /* ??? This does not use TBAA to prune globals ptr may not access. */
156 return pt_solution_includes_global (&pi->pt);
157 }
158
159 /* Return true if dereferencing PTR may alias DECL.
160 The caller is responsible for applying TBAA to see if PTR
161 may access DECL at all. */
162
163 static bool
164 ptr_deref_may_alias_decl_p (tree ptr, tree decl)
165 {
166 struct ptr_info_def *pi;
167
168 /* Conversions are irrelevant for points-to information and
169 data-dependence analysis can feed us those. */
170 STRIP_NOPS (ptr);
171
172 /* Anything we do not explicilty handle aliases. */
173 if ((TREE_CODE (ptr) != SSA_NAME
174 && TREE_CODE (ptr) != ADDR_EXPR
175 && TREE_CODE (ptr) != POINTER_PLUS_EXPR)
176 || !POINTER_TYPE_P (TREE_TYPE (ptr))
177 || (TREE_CODE (decl) != VAR_DECL
178 && TREE_CODE (decl) != PARM_DECL
179 && TREE_CODE (decl) != RESULT_DECL))
180 return true;
181
182 /* Disregard pointer offsetting. */
183 if (TREE_CODE (ptr) == POINTER_PLUS_EXPR)
184 {
185 do
186 {
187 ptr = TREE_OPERAND (ptr, 0);
188 }
189 while (TREE_CODE (ptr) == POINTER_PLUS_EXPR);
190 return ptr_deref_may_alias_decl_p (ptr, decl);
191 }
192
193 /* ADDR_EXPR pointers either just offset another pointer or directly
194 specify the pointed-to set. */
195 if (TREE_CODE (ptr) == ADDR_EXPR)
196 {
197 tree base = get_base_address (TREE_OPERAND (ptr, 0));
198 if (base
199 && (TREE_CODE (base) == MEM_REF
200 || TREE_CODE (base) == TARGET_MEM_REF))
201 ptr = TREE_OPERAND (base, 0);
202 else if (base
203 && DECL_P (base))
204 return base == decl;
205 else if (base
206 && CONSTANT_CLASS_P (base))
207 return false;
208 else
209 return true;
210 }
211
212 /* Non-aliased variables can not be pointed to. */
213 if (!may_be_aliased (decl))
214 return false;
215
216 /* If we do not have useful points-to information for this pointer
217 we cannot disambiguate anything else. */
218 pi = SSA_NAME_PTR_INFO (ptr);
219 if (!pi)
220 return true;
221
222 return pt_solution_includes (&pi->pt, decl);
223 }
224
225 /* Return true if dereferenced PTR1 and PTR2 may alias.
226 The caller is responsible for applying TBAA to see if accesses
227 through PTR1 and PTR2 may conflict at all. */
228
229 bool
230 ptr_derefs_may_alias_p (tree ptr1, tree ptr2)
231 {
232 struct ptr_info_def *pi1, *pi2;
233
234 /* Conversions are irrelevant for points-to information and
235 data-dependence analysis can feed us those. */
236 STRIP_NOPS (ptr1);
237 STRIP_NOPS (ptr2);
238
239 /* Disregard pointer offsetting. */
240 if (TREE_CODE (ptr1) == POINTER_PLUS_EXPR)
241 {
242 do
243 {
244 ptr1 = TREE_OPERAND (ptr1, 0);
245 }
246 while (TREE_CODE (ptr1) == POINTER_PLUS_EXPR);
247 return ptr_derefs_may_alias_p (ptr1, ptr2);
248 }
249 if (TREE_CODE (ptr2) == POINTER_PLUS_EXPR)
250 {
251 do
252 {
253 ptr2 = TREE_OPERAND (ptr2, 0);
254 }
255 while (TREE_CODE (ptr2) == POINTER_PLUS_EXPR);
256 return ptr_derefs_may_alias_p (ptr1, ptr2);
257 }
258
259 /* ADDR_EXPR pointers either just offset another pointer or directly
260 specify the pointed-to set. */
261 if (TREE_CODE (ptr1) == ADDR_EXPR)
262 {
263 tree base = get_base_address (TREE_OPERAND (ptr1, 0));
264 if (base
265 && (TREE_CODE (base) == MEM_REF
266 || TREE_CODE (base) == TARGET_MEM_REF))
267 return ptr_derefs_may_alias_p (TREE_OPERAND (base, 0), ptr2);
268 else if (base
269 && DECL_P (base))
270 return ptr_deref_may_alias_decl_p (ptr2, base);
271 else
272 return true;
273 }
274 if (TREE_CODE (ptr2) == ADDR_EXPR)
275 {
276 tree base = get_base_address (TREE_OPERAND (ptr2, 0));
277 if (base
278 && (TREE_CODE (base) == MEM_REF
279 || TREE_CODE (base) == TARGET_MEM_REF))
280 return ptr_derefs_may_alias_p (ptr1, TREE_OPERAND (base, 0));
281 else if (base
282 && DECL_P (base))
283 return ptr_deref_may_alias_decl_p (ptr1, base);
284 else
285 return true;
286 }
287
288 /* From here we require SSA name pointers. Anything else aliases. */
289 if (TREE_CODE (ptr1) != SSA_NAME
290 || TREE_CODE (ptr2) != SSA_NAME
291 || !POINTER_TYPE_P (TREE_TYPE (ptr1))
292 || !POINTER_TYPE_P (TREE_TYPE (ptr2)))
293 return true;
294
295 /* We may end up with two empty points-to solutions for two same pointers.
296 In this case we still want to say both pointers alias, so shortcut
297 that here. */
298 if (ptr1 == ptr2)
299 return true;
300
301 /* If we do not have useful points-to information for either pointer
302 we cannot disambiguate anything else. */
303 pi1 = SSA_NAME_PTR_INFO (ptr1);
304 pi2 = SSA_NAME_PTR_INFO (ptr2);
305 if (!pi1 || !pi2)
306 return true;
307
308 /* ??? This does not use TBAA to prune decls from the intersection
309 that not both pointers may access. */
310 return pt_solutions_intersect (&pi1->pt, &pi2->pt);
311 }
312
313 /* Return true if dereferencing PTR may alias *REF.
314 The caller is responsible for applying TBAA to see if PTR
315 may access *REF at all. */
316
317 static bool
318 ptr_deref_may_alias_ref_p_1 (tree ptr, ao_ref *ref)
319 {
320 tree base = ao_ref_base (ref);
321
322 if (TREE_CODE (base) == MEM_REF
323 || TREE_CODE (base) == TARGET_MEM_REF)
324 return ptr_derefs_may_alias_p (ptr, TREE_OPERAND (base, 0));
325 else if (DECL_P (base))
326 return ptr_deref_may_alias_decl_p (ptr, base);
327
328 return true;
329 }
330
331 /* Return true whether REF may refer to global memory. */
332
333 bool
334 ref_may_alias_global_p (tree ref)
335 {
336 tree base = get_base_address (ref);
337 if (DECL_P (base))
338 return is_global_var (base);
339 else if (TREE_CODE (base) == MEM_REF
340 || TREE_CODE (base) == TARGET_MEM_REF)
341 return ptr_deref_may_alias_global_p (TREE_OPERAND (base, 0));
342 return true;
343 }
344
345 /* Return true whether STMT may clobber global memory. */
346
347 bool
348 stmt_may_clobber_global_p (gimple stmt)
349 {
350 tree lhs;
351
352 if (!gimple_vdef (stmt))
353 return false;
354
355 /* ??? We can ask the oracle whether an artificial pointer
356 dereference with a pointer with points-to information covering
357 all global memory (what about non-address taken memory?) maybe
358 clobbered by this call. As there is at the moment no convenient
359 way of doing that without generating garbage do some manual
360 checking instead.
361 ??? We could make a NULL ao_ref argument to the various
362 predicates special, meaning any global memory. */
363
364 switch (gimple_code (stmt))
365 {
366 case GIMPLE_ASSIGN:
367 lhs = gimple_assign_lhs (stmt);
368 return (TREE_CODE (lhs) != SSA_NAME
369 && ref_may_alias_global_p (lhs));
370 case GIMPLE_CALL:
371 return true;
372 default:
373 return true;
374 }
375 }
376
377
378 /* Dump alias information on FILE. */
379
380 void
381 dump_alias_info (FILE *file)
382 {
383 unsigned i;
384 const char *funcname
385 = lang_hooks.decl_printable_name (current_function_decl, 2);
386 tree var;
387
388 fprintf (file, "\n\nAlias information for %s\n\n", funcname);
389
390 fprintf (file, "Aliased symbols\n\n");
391
392 FOR_EACH_LOCAL_DECL (cfun, i, var)
393 {
394 if (may_be_aliased (var))
395 dump_variable (file, var);
396 }
397
398 fprintf (file, "\nCall clobber information\n");
399
400 fprintf (file, "\nESCAPED");
401 dump_points_to_solution (file, &cfun->gimple_df->escaped);
402
403 fprintf (file, "\n\nFlow-insensitive points-to information\n\n");
404
405 for (i = 1; i < num_ssa_names; i++)
406 {
407 tree ptr = ssa_name (i);
408 struct ptr_info_def *pi;
409
410 if (ptr == NULL_TREE
411 || !POINTER_TYPE_P (TREE_TYPE (ptr))
412 || SSA_NAME_IN_FREE_LIST (ptr))
413 continue;
414
415 pi = SSA_NAME_PTR_INFO (ptr);
416 if (pi)
417 dump_points_to_info_for (file, ptr);
418 }
419
420 fprintf (file, "\n");
421 }
422
423
424 /* Dump alias information on stderr. */
425
426 DEBUG_FUNCTION void
427 debug_alias_info (void)
428 {
429 dump_alias_info (stderr);
430 }
431
432
433 /* Dump the points-to set *PT into FILE. */
434
435 void
436 dump_points_to_solution (FILE *file, struct pt_solution *pt)
437 {
438 if (pt->anything)
439 fprintf (file, ", points-to anything");
440
441 if (pt->nonlocal)
442 fprintf (file, ", points-to non-local");
443
444 if (pt->escaped)
445 fprintf (file, ", points-to escaped");
446
447 if (pt->ipa_escaped)
448 fprintf (file, ", points-to unit escaped");
449
450 if (pt->null)
451 fprintf (file, ", points-to NULL");
452
453 if (pt->vars)
454 {
455 fprintf (file, ", points-to vars: ");
456 dump_decl_set (file, pt->vars);
457 if (pt->vars_contains_nonlocal
458 && pt->vars_contains_escaped_heap)
459 fprintf (file, " (nonlocal, escaped heap)");
460 else if (pt->vars_contains_nonlocal
461 && pt->vars_contains_escaped)
462 fprintf (file, " (nonlocal, escaped)");
463 else if (pt->vars_contains_nonlocal)
464 fprintf (file, " (nonlocal)");
465 else if (pt->vars_contains_escaped_heap)
466 fprintf (file, " (escaped heap)");
467 else if (pt->vars_contains_escaped)
468 fprintf (file, " (escaped)");
469 }
470 }
471
472
473 /* Unified dump function for pt_solution. */
474
475 DEBUG_FUNCTION void
476 debug (pt_solution &ref)
477 {
478 dump_points_to_solution (stderr, &ref);
479 }
480
481 DEBUG_FUNCTION void
482 debug (pt_solution *ptr)
483 {
484 if (ptr)
485 debug (*ptr);
486 else
487 fprintf (stderr, "<nil>\n");
488 }
489
490
491 /* Dump points-to information for SSA_NAME PTR into FILE. */
492
493 void
494 dump_points_to_info_for (FILE *file, tree ptr)
495 {
496 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (ptr);
497
498 print_generic_expr (file, ptr, dump_flags);
499
500 if (pi)
501 dump_points_to_solution (file, &pi->pt);
502 else
503 fprintf (file, ", points-to anything");
504
505 fprintf (file, "\n");
506 }
507
508
509 /* Dump points-to information for VAR into stderr. */
510
511 DEBUG_FUNCTION void
512 debug_points_to_info_for (tree var)
513 {
514 dump_points_to_info_for (stderr, var);
515 }
516
517
518 /* Initializes the alias-oracle reference representation *R from REF. */
519
520 void
521 ao_ref_init (ao_ref *r, tree ref)
522 {
523 r->ref = ref;
524 r->base = NULL_TREE;
525 r->offset = 0;
526 r->size = -1;
527 r->max_size = -1;
528 r->ref_alias_set = -1;
529 r->base_alias_set = -1;
530 r->volatile_p = ref ? TREE_THIS_VOLATILE (ref) : false;
531 }
532
533 /* Returns the base object of the memory reference *REF. */
534
535 tree
536 ao_ref_base (ao_ref *ref)
537 {
538 if (ref->base)
539 return ref->base;
540 ref->base = get_ref_base_and_extent (ref->ref, &ref->offset, &ref->size,
541 &ref->max_size);
542 return ref->base;
543 }
544
545 /* Returns the base object alias set of the memory reference *REF. */
546
547 static alias_set_type
548 ao_ref_base_alias_set (ao_ref *ref)
549 {
550 tree base_ref;
551 if (ref->base_alias_set != -1)
552 return ref->base_alias_set;
553 if (!ref->ref)
554 return 0;
555 base_ref = ref->ref;
556 while (handled_component_p (base_ref))
557 base_ref = TREE_OPERAND (base_ref, 0);
558 ref->base_alias_set = get_alias_set (base_ref);
559 return ref->base_alias_set;
560 }
561
562 /* Returns the reference alias set of the memory reference *REF. */
563
564 alias_set_type
565 ao_ref_alias_set (ao_ref *ref)
566 {
567 if (ref->ref_alias_set != -1)
568 return ref->ref_alias_set;
569 ref->ref_alias_set = get_alias_set (ref->ref);
570 return ref->ref_alias_set;
571 }
572
573 /* Init an alias-oracle reference representation from a gimple pointer
574 PTR and a gimple size SIZE in bytes. If SIZE is NULL_TREE then the
575 size is assumed to be unknown. The access is assumed to be only
576 to or after of the pointer target, not before it. */
577
578 void
579 ao_ref_init_from_ptr_and_size (ao_ref *ref, tree ptr, tree size)
580 {
581 HOST_WIDE_INT t, size_hwi, extra_offset = 0;
582 ref->ref = NULL_TREE;
583 if (TREE_CODE (ptr) == SSA_NAME)
584 {
585 gimple stmt = SSA_NAME_DEF_STMT (ptr);
586 if (gimple_assign_single_p (stmt)
587 && gimple_assign_rhs_code (stmt) == ADDR_EXPR)
588 ptr = gimple_assign_rhs1 (stmt);
589 else if (is_gimple_assign (stmt)
590 && gimple_assign_rhs_code (stmt) == POINTER_PLUS_EXPR
591 && TREE_CODE (gimple_assign_rhs2 (stmt)) == INTEGER_CST)
592 {
593 ptr = gimple_assign_rhs1 (stmt);
594 extra_offset = BITS_PER_UNIT
595 * int_cst_value (gimple_assign_rhs2 (stmt));
596 }
597 }
598
599 if (TREE_CODE (ptr) == ADDR_EXPR)
600 {
601 ref->base = get_addr_base_and_unit_offset (TREE_OPERAND (ptr, 0), &t);
602 if (ref->base)
603 ref->offset = BITS_PER_UNIT * t;
604 else
605 {
606 size = NULL_TREE;
607 ref->offset = 0;
608 ref->base = get_base_address (TREE_OPERAND (ptr, 0));
609 }
610 }
611 else
612 {
613 ref->base = build2 (MEM_REF, char_type_node,
614 ptr, null_pointer_node);
615 ref->offset = 0;
616 }
617 ref->offset += extra_offset;
618 if (size
619 && tree_fits_shwi_p (size)
620 && (size_hwi = tree_to_shwi (size)) <= HOST_WIDE_INT_MAX / BITS_PER_UNIT)
621 ref->max_size = ref->size = size_hwi * BITS_PER_UNIT;
622 else
623 ref->max_size = ref->size = -1;
624 ref->ref_alias_set = 0;
625 ref->base_alias_set = 0;
626 ref->volatile_p = false;
627 }
628
629 /* Return 1 if TYPE1 and TYPE2 are to be considered equivalent for the
630 purpose of TBAA. Return 0 if they are distinct and -1 if we cannot
631 decide. */
632
633 static inline int
634 same_type_for_tbaa (tree type1, tree type2)
635 {
636 type1 = TYPE_MAIN_VARIANT (type1);
637 type2 = TYPE_MAIN_VARIANT (type2);
638
639 /* If we would have to do structural comparison bail out. */
640 if (TYPE_STRUCTURAL_EQUALITY_P (type1)
641 || TYPE_STRUCTURAL_EQUALITY_P (type2))
642 return -1;
643
644 /* Compare the canonical types. */
645 if (TYPE_CANONICAL (type1) == TYPE_CANONICAL (type2))
646 return 1;
647
648 /* ??? Array types are not properly unified in all cases as we have
649 spurious changes in the index types for example. Removing this
650 causes all sorts of problems with the Fortran frontend. */
651 if (TREE_CODE (type1) == ARRAY_TYPE
652 && TREE_CODE (type2) == ARRAY_TYPE)
653 return -1;
654
655 /* ??? In Ada, an lvalue of an unconstrained type can be used to access an
656 object of one of its constrained subtypes, e.g. when a function with an
657 unconstrained parameter passed by reference is called on an object and
658 inlined. But, even in the case of a fixed size, type and subtypes are
659 not equivalent enough as to share the same TYPE_CANONICAL, since this
660 would mean that conversions between them are useless, whereas they are
661 not (e.g. type and subtypes can have different modes). So, in the end,
662 they are only guaranteed to have the same alias set. */
663 if (get_alias_set (type1) == get_alias_set (type2))
664 return -1;
665
666 /* The types are known to be not equal. */
667 return 0;
668 }
669
670 /* Determine if the two component references REF1 and REF2 which are
671 based on access types TYPE1 and TYPE2 and of which at least one is based
672 on an indirect reference may alias. REF2 is the only one that can
673 be a decl in which case REF2_IS_DECL is true.
674 REF1_ALIAS_SET, BASE1_ALIAS_SET, REF2_ALIAS_SET and BASE2_ALIAS_SET
675 are the respective alias sets. */
676
677 static bool
678 aliasing_component_refs_p (tree ref1,
679 alias_set_type ref1_alias_set,
680 alias_set_type base1_alias_set,
681 HOST_WIDE_INT offset1, HOST_WIDE_INT max_size1,
682 tree ref2,
683 alias_set_type ref2_alias_set,
684 alias_set_type base2_alias_set,
685 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2,
686 bool ref2_is_decl)
687 {
688 /* If one reference is a component references through pointers try to find a
689 common base and apply offset based disambiguation. This handles
690 for example
691 struct A { int i; int j; } *q;
692 struct B { struct A a; int k; } *p;
693 disambiguating q->i and p->a.j. */
694 tree base1, base2;
695 tree type1, type2;
696 tree *refp;
697 int same_p;
698
699 /* Choose bases and base types to search for. */
700 base1 = ref1;
701 while (handled_component_p (base1))
702 base1 = TREE_OPERAND (base1, 0);
703 type1 = TREE_TYPE (base1);
704 base2 = ref2;
705 while (handled_component_p (base2))
706 base2 = TREE_OPERAND (base2, 0);
707 type2 = TREE_TYPE (base2);
708
709 /* Now search for the type1 in the access path of ref2. This
710 would be a common base for doing offset based disambiguation on. */
711 refp = &ref2;
712 while (handled_component_p (*refp)
713 && same_type_for_tbaa (TREE_TYPE (*refp), type1) == 0)
714 refp = &TREE_OPERAND (*refp, 0);
715 same_p = same_type_for_tbaa (TREE_TYPE (*refp), type1);
716 /* If we couldn't compare types we have to bail out. */
717 if (same_p == -1)
718 return true;
719 else if (same_p == 1)
720 {
721 HOST_WIDE_INT offadj, sztmp, msztmp;
722 get_ref_base_and_extent (*refp, &offadj, &sztmp, &msztmp);
723 offset2 -= offadj;
724 get_ref_base_and_extent (base1, &offadj, &sztmp, &msztmp);
725 offset1 -= offadj;
726 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
727 }
728 /* If we didn't find a common base, try the other way around. */
729 refp = &ref1;
730 while (handled_component_p (*refp)
731 && same_type_for_tbaa (TREE_TYPE (*refp), type2) == 0)
732 refp = &TREE_OPERAND (*refp, 0);
733 same_p = same_type_for_tbaa (TREE_TYPE (*refp), type2);
734 /* If we couldn't compare types we have to bail out. */
735 if (same_p == -1)
736 return true;
737 else if (same_p == 1)
738 {
739 HOST_WIDE_INT offadj, sztmp, msztmp;
740 get_ref_base_and_extent (*refp, &offadj, &sztmp, &msztmp);
741 offset1 -= offadj;
742 get_ref_base_and_extent (base2, &offadj, &sztmp, &msztmp);
743 offset2 -= offadj;
744 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
745 }
746
747 /* If we have two type access paths B1.path1 and B2.path2 they may
748 only alias if either B1 is in B2.path2 or B2 is in B1.path1.
749 But we can still have a path that goes B1.path1...B2.path2 with
750 a part that we do not see. So we can only disambiguate now
751 if there is no B2 in the tail of path1 and no B1 on the
752 tail of path2. */
753 if (base1_alias_set == ref2_alias_set
754 || alias_set_subset_of (base1_alias_set, ref2_alias_set))
755 return true;
756 /* If this is ptr vs. decl then we know there is no ptr ... decl path. */
757 if (!ref2_is_decl)
758 return (base2_alias_set == ref1_alias_set
759 || alias_set_subset_of (base2_alias_set, ref1_alias_set));
760 return false;
761 }
762
763 /* Return true if we can determine that component references REF1 and REF2,
764 that are within a common DECL, cannot overlap. */
765
766 static bool
767 nonoverlapping_component_refs_of_decl_p (tree ref1, tree ref2)
768 {
769 stack_vec<tree, 16> component_refs1;
770 stack_vec<tree, 16> component_refs2;
771
772 /* Create the stack of handled components for REF1. */
773 while (handled_component_p (ref1))
774 {
775 component_refs1.safe_push (ref1);
776 ref1 = TREE_OPERAND (ref1, 0);
777 }
778 if (TREE_CODE (ref1) == MEM_REF)
779 {
780 if (!integer_zerop (TREE_OPERAND (ref1, 1)))
781 goto may_overlap;
782 ref1 = TREE_OPERAND (TREE_OPERAND (ref1, 0), 0);
783 }
784
785 /* Create the stack of handled components for REF2. */
786 while (handled_component_p (ref2))
787 {
788 component_refs2.safe_push (ref2);
789 ref2 = TREE_OPERAND (ref2, 0);
790 }
791 if (TREE_CODE (ref2) == MEM_REF)
792 {
793 if (!integer_zerop (TREE_OPERAND (ref2, 1)))
794 goto may_overlap;
795 ref2 = TREE_OPERAND (TREE_OPERAND (ref2, 0), 0);
796 }
797
798 /* We must have the same base DECL. */
799 gcc_assert (ref1 == ref2);
800
801 /* Pop the stacks in parallel and examine the COMPONENT_REFs of the same
802 rank. This is sufficient because we start from the same DECL and you
803 cannot reference several fields at a time with COMPONENT_REFs (unlike
804 with ARRAY_RANGE_REFs for arrays) so you always need the same number
805 of them to access a sub-component, unless you're in a union, in which
806 case the return value will precisely be false. */
807 while (true)
808 {
809 do
810 {
811 if (component_refs1.is_empty ())
812 goto may_overlap;
813 ref1 = component_refs1.pop ();
814 }
815 while (!RECORD_OR_UNION_TYPE_P (TREE_TYPE (TREE_OPERAND (ref1, 0))));
816
817 do
818 {
819 if (component_refs2.is_empty ())
820 goto may_overlap;
821 ref2 = component_refs2.pop ();
822 }
823 while (!RECORD_OR_UNION_TYPE_P (TREE_TYPE (TREE_OPERAND (ref2, 0))));
824
825 /* Beware of BIT_FIELD_REF. */
826 if (TREE_CODE (ref1) != COMPONENT_REF
827 || TREE_CODE (ref2) != COMPONENT_REF)
828 goto may_overlap;
829
830 tree field1 = TREE_OPERAND (ref1, 1);
831 tree field2 = TREE_OPERAND (ref2, 1);
832
833 /* ??? We cannot simply use the type of operand #0 of the refs here
834 as the Fortran compiler smuggles type punning into COMPONENT_REFs
835 for common blocks instead of using unions like everyone else. */
836 tree type1 = TYPE_MAIN_VARIANT (DECL_CONTEXT (field1));
837 tree type2 = TYPE_MAIN_VARIANT (DECL_CONTEXT (field2));
838
839 /* We cannot disambiguate fields in a union or qualified union. */
840 if (type1 != type2 || TREE_CODE (type1) != RECORD_TYPE)
841 goto may_overlap;
842
843 /* Different fields of the same record type cannot overlap.
844 ??? Bitfields can overlap at RTL level so punt on them. */
845 if (field1 != field2)
846 {
847 component_refs1.release ();
848 component_refs2.release ();
849 return !(DECL_BIT_FIELD (field1) && DECL_BIT_FIELD (field2));
850 }
851 }
852
853 may_overlap:
854 component_refs1.release ();
855 component_refs2.release ();
856 return false;
857 }
858
859 /* Return true if two memory references based on the variables BASE1
860 and BASE2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
861 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. REF1 and REF2
862 if non-NULL are the complete memory reference trees. */
863
864 static bool
865 decl_refs_may_alias_p (tree ref1, tree base1,
866 HOST_WIDE_INT offset1, HOST_WIDE_INT max_size1,
867 tree ref2, tree base2,
868 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2)
869 {
870 gcc_checking_assert (DECL_P (base1) && DECL_P (base2));
871
872 /* If both references are based on different variables, they cannot alias. */
873 if (base1 != base2)
874 return false;
875
876 /* If both references are based on the same variable, they cannot alias if
877 the accesses do not overlap. */
878 if (!ranges_overlap_p (offset1, max_size1, offset2, max_size2))
879 return false;
880
881 /* For components with variable position, the above test isn't sufficient,
882 so we disambiguate component references manually. */
883 if (ref1 && ref2
884 && handled_component_p (ref1) && handled_component_p (ref2)
885 && nonoverlapping_component_refs_of_decl_p (ref1, ref2))
886 return false;
887
888 return true;
889 }
890
891 /* Return true if an indirect reference based on *PTR1 constrained
892 to [OFFSET1, OFFSET1 + MAX_SIZE1) may alias a variable based on BASE2
893 constrained to [OFFSET2, OFFSET2 + MAX_SIZE2). *PTR1 and BASE2 have
894 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
895 in which case they are computed on-demand. REF1 and REF2
896 if non-NULL are the complete memory reference trees. */
897
898 static bool
899 indirect_ref_may_alias_decl_p (tree ref1 ATTRIBUTE_UNUSED, tree base1,
900 HOST_WIDE_INT offset1,
901 HOST_WIDE_INT max_size1 ATTRIBUTE_UNUSED,
902 alias_set_type ref1_alias_set,
903 alias_set_type base1_alias_set,
904 tree ref2 ATTRIBUTE_UNUSED, tree base2,
905 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2,
906 alias_set_type ref2_alias_set,
907 alias_set_type base2_alias_set, bool tbaa_p)
908 {
909 tree ptr1;
910 tree ptrtype1, dbase2;
911 HOST_WIDE_INT offset1p = offset1, offset2p = offset2;
912 HOST_WIDE_INT doffset1, doffset2;
913 double_int moff;
914
915 gcc_checking_assert ((TREE_CODE (base1) == MEM_REF
916 || TREE_CODE (base1) == TARGET_MEM_REF)
917 && DECL_P (base2));
918
919 ptr1 = TREE_OPERAND (base1, 0);
920
921 /* The offset embedded in MEM_REFs can be negative. Bias them
922 so that the resulting offset adjustment is positive. */
923 moff = mem_ref_offset (base1);
924 moff = moff.lshift (BITS_PER_UNIT == 8 ? 3 : exact_log2 (BITS_PER_UNIT));
925 if (moff.is_negative ())
926 offset2p += (-moff).low;
927 else
928 offset1p += moff.low;
929
930 /* If only one reference is based on a variable, they cannot alias if
931 the pointer access is beyond the extent of the variable access.
932 (the pointer base cannot validly point to an offset less than zero
933 of the variable).
934 ??? IVOPTs creates bases that do not honor this restriction,
935 so do not apply this optimization for TARGET_MEM_REFs. */
936 if (TREE_CODE (base1) != TARGET_MEM_REF
937 && !ranges_overlap_p (MAX (0, offset1p), -1, offset2p, max_size2))
938 return false;
939 /* They also cannot alias if the pointer may not point to the decl. */
940 if (!ptr_deref_may_alias_decl_p (ptr1, base2))
941 return false;
942
943 /* Disambiguations that rely on strict aliasing rules follow. */
944 if (!flag_strict_aliasing || !tbaa_p)
945 return true;
946
947 ptrtype1 = TREE_TYPE (TREE_OPERAND (base1, 1));
948
949 /* If the alias set for a pointer access is zero all bets are off. */
950 if (base1_alias_set == -1)
951 base1_alias_set = get_deref_alias_set (ptrtype1);
952 if (base1_alias_set == 0)
953 return true;
954 if (base2_alias_set == -1)
955 base2_alias_set = get_alias_set (base2);
956
957 /* When we are trying to disambiguate an access with a pointer dereference
958 as base versus one with a decl as base we can use both the size
959 of the decl and its dynamic type for extra disambiguation.
960 ??? We do not know anything about the dynamic type of the decl
961 other than that its alias-set contains base2_alias_set as a subset
962 which does not help us here. */
963 /* As we know nothing useful about the dynamic type of the decl just
964 use the usual conflict check rather than a subset test.
965 ??? We could introduce -fvery-strict-aliasing when the language
966 does not allow decls to have a dynamic type that differs from their
967 static type. Then we can check
968 !alias_set_subset_of (base1_alias_set, base2_alias_set) instead. */
969 if (base1_alias_set != base2_alias_set
970 && !alias_sets_conflict_p (base1_alias_set, base2_alias_set))
971 return false;
972 /* If the size of the access relevant for TBAA through the pointer
973 is bigger than the size of the decl we can't possibly access the
974 decl via that pointer. */
975 if (DECL_SIZE (base2) && COMPLETE_TYPE_P (TREE_TYPE (ptrtype1))
976 && TREE_CODE (DECL_SIZE (base2)) == INTEGER_CST
977 && TREE_CODE (TYPE_SIZE (TREE_TYPE (ptrtype1))) == INTEGER_CST
978 /* ??? This in turn may run afoul when a decl of type T which is
979 a member of union type U is accessed through a pointer to
980 type U and sizeof T is smaller than sizeof U. */
981 && TREE_CODE (TREE_TYPE (ptrtype1)) != UNION_TYPE
982 && TREE_CODE (TREE_TYPE (ptrtype1)) != QUAL_UNION_TYPE
983 && tree_int_cst_lt (DECL_SIZE (base2), TYPE_SIZE (TREE_TYPE (ptrtype1))))
984 return false;
985
986 if (!ref2)
987 return true;
988
989 /* If the decl is accessed via a MEM_REF, reconstruct the base
990 we can use for TBAA and an appropriately adjusted offset. */
991 dbase2 = ref2;
992 while (handled_component_p (dbase2))
993 dbase2 = TREE_OPERAND (dbase2, 0);
994 doffset1 = offset1;
995 doffset2 = offset2;
996 if (TREE_CODE (dbase2) == MEM_REF
997 || TREE_CODE (dbase2) == TARGET_MEM_REF)
998 {
999 double_int moff = mem_ref_offset (dbase2);
1000 moff = moff.lshift (BITS_PER_UNIT == 8 ? 3 : exact_log2 (BITS_PER_UNIT));
1001 if (moff.is_negative ())
1002 doffset1 -= (-moff).low;
1003 else
1004 doffset2 -= moff.low;
1005 }
1006
1007 /* If either reference is view-converted, give up now. */
1008 if (same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) != 1
1009 || same_type_for_tbaa (TREE_TYPE (dbase2), TREE_TYPE (base2)) != 1)
1010 return true;
1011
1012 /* If both references are through the same type, they do not alias
1013 if the accesses do not overlap. This does extra disambiguation
1014 for mixed/pointer accesses but requires strict aliasing.
1015 For MEM_REFs we require that the component-ref offset we computed
1016 is relative to the start of the type which we ensure by
1017 comparing rvalue and access type and disregarding the constant
1018 pointer offset. */
1019 if ((TREE_CODE (base1) != TARGET_MEM_REF
1020 || (!TMR_INDEX (base1) && !TMR_INDEX2 (base1)))
1021 && same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (dbase2)) == 1)
1022 return ranges_overlap_p (doffset1, max_size1, doffset2, max_size2);
1023
1024 /* Do access-path based disambiguation. */
1025 if (ref1 && ref2
1026 && (handled_component_p (ref1) || handled_component_p (ref2)))
1027 return aliasing_component_refs_p (ref1,
1028 ref1_alias_set, base1_alias_set,
1029 offset1, max_size1,
1030 ref2,
1031 ref2_alias_set, base2_alias_set,
1032 offset2, max_size2, true);
1033
1034 return true;
1035 }
1036
1037 /* Return true if two indirect references based on *PTR1
1038 and *PTR2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
1039 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. *PTR1 and *PTR2 have
1040 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
1041 in which case they are computed on-demand. REF1 and REF2
1042 if non-NULL are the complete memory reference trees. */
1043
1044 static bool
1045 indirect_refs_may_alias_p (tree ref1 ATTRIBUTE_UNUSED, tree base1,
1046 HOST_WIDE_INT offset1, HOST_WIDE_INT max_size1,
1047 alias_set_type ref1_alias_set,
1048 alias_set_type base1_alias_set,
1049 tree ref2 ATTRIBUTE_UNUSED, tree base2,
1050 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2,
1051 alias_set_type ref2_alias_set,
1052 alias_set_type base2_alias_set, bool tbaa_p)
1053 {
1054 tree ptr1;
1055 tree ptr2;
1056 tree ptrtype1, ptrtype2;
1057
1058 gcc_checking_assert ((TREE_CODE (base1) == MEM_REF
1059 || TREE_CODE (base1) == TARGET_MEM_REF)
1060 && (TREE_CODE (base2) == MEM_REF
1061 || TREE_CODE (base2) == TARGET_MEM_REF));
1062
1063 ptr1 = TREE_OPERAND (base1, 0);
1064 ptr2 = TREE_OPERAND (base2, 0);
1065
1066 /* If both bases are based on pointers they cannot alias if they may not
1067 point to the same memory object or if they point to the same object
1068 and the accesses do not overlap. */
1069 if ((!cfun || gimple_in_ssa_p (cfun))
1070 && operand_equal_p (ptr1, ptr2, 0)
1071 && (((TREE_CODE (base1) != TARGET_MEM_REF
1072 || (!TMR_INDEX (base1) && !TMR_INDEX2 (base1)))
1073 && (TREE_CODE (base2) != TARGET_MEM_REF
1074 || (!TMR_INDEX (base2) && !TMR_INDEX2 (base2))))
1075 || (TREE_CODE (base1) == TARGET_MEM_REF
1076 && TREE_CODE (base2) == TARGET_MEM_REF
1077 && (TMR_STEP (base1) == TMR_STEP (base2)
1078 || (TMR_STEP (base1) && TMR_STEP (base2)
1079 && operand_equal_p (TMR_STEP (base1),
1080 TMR_STEP (base2), 0)))
1081 && (TMR_INDEX (base1) == TMR_INDEX (base2)
1082 || (TMR_INDEX (base1) && TMR_INDEX (base2)
1083 && operand_equal_p (TMR_INDEX (base1),
1084 TMR_INDEX (base2), 0)))
1085 && (TMR_INDEX2 (base1) == TMR_INDEX2 (base2)
1086 || (TMR_INDEX2 (base1) && TMR_INDEX2 (base2)
1087 && operand_equal_p (TMR_INDEX2 (base1),
1088 TMR_INDEX2 (base2), 0))))))
1089 {
1090 double_int moff;
1091 /* The offset embedded in MEM_REFs can be negative. Bias them
1092 so that the resulting offset adjustment is positive. */
1093 moff = mem_ref_offset (base1);
1094 moff = moff.lshift (BITS_PER_UNIT == 8 ? 3 : exact_log2 (BITS_PER_UNIT));
1095 if (moff.is_negative ())
1096 offset2 += (-moff).low;
1097 else
1098 offset1 += moff.low;
1099 moff = mem_ref_offset (base2);
1100 moff = moff.lshift (BITS_PER_UNIT == 8 ? 3 : exact_log2 (BITS_PER_UNIT));
1101 if (moff.is_negative ())
1102 offset1 += (-moff).low;
1103 else
1104 offset2 += moff.low;
1105 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
1106 }
1107 if (!ptr_derefs_may_alias_p (ptr1, ptr2))
1108 return false;
1109
1110 /* Disambiguations that rely on strict aliasing rules follow. */
1111 if (!flag_strict_aliasing || !tbaa_p)
1112 return true;
1113
1114 ptrtype1 = TREE_TYPE (TREE_OPERAND (base1, 1));
1115 ptrtype2 = TREE_TYPE (TREE_OPERAND (base2, 1));
1116
1117 /* If the alias set for a pointer access is zero all bets are off. */
1118 if (base1_alias_set == -1)
1119 base1_alias_set = get_deref_alias_set (ptrtype1);
1120 if (base1_alias_set == 0)
1121 return true;
1122 if (base2_alias_set == -1)
1123 base2_alias_set = get_deref_alias_set (ptrtype2);
1124 if (base2_alias_set == 0)
1125 return true;
1126
1127 /* If both references are through the same type, they do not alias
1128 if the accesses do not overlap. This does extra disambiguation
1129 for mixed/pointer accesses but requires strict aliasing. */
1130 if ((TREE_CODE (base1) != TARGET_MEM_REF
1131 || (!TMR_INDEX (base1) && !TMR_INDEX2 (base1)))
1132 && (TREE_CODE (base2) != TARGET_MEM_REF
1133 || (!TMR_INDEX (base2) && !TMR_INDEX2 (base2)))
1134 && same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) == 1
1135 && same_type_for_tbaa (TREE_TYPE (base2), TREE_TYPE (ptrtype2)) == 1
1136 && same_type_for_tbaa (TREE_TYPE (ptrtype1),
1137 TREE_TYPE (ptrtype2)) == 1)
1138 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
1139
1140 /* Do type-based disambiguation. */
1141 if (base1_alias_set != base2_alias_set
1142 && !alias_sets_conflict_p (base1_alias_set, base2_alias_set))
1143 return false;
1144
1145 /* Do access-path based disambiguation. */
1146 if (ref1 && ref2
1147 && (handled_component_p (ref1) || handled_component_p (ref2))
1148 && same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) == 1
1149 && same_type_for_tbaa (TREE_TYPE (base2), TREE_TYPE (ptrtype2)) == 1)
1150 return aliasing_component_refs_p (ref1,
1151 ref1_alias_set, base1_alias_set,
1152 offset1, max_size1,
1153 ref2,
1154 ref2_alias_set, base2_alias_set,
1155 offset2, max_size2, false);
1156
1157 return true;
1158 }
1159
1160 /* Return true, if the two memory references REF1 and REF2 may alias. */
1161
1162 bool
1163 refs_may_alias_p_1 (ao_ref *ref1, ao_ref *ref2, bool tbaa_p)
1164 {
1165 tree base1, base2;
1166 HOST_WIDE_INT offset1 = 0, offset2 = 0;
1167 HOST_WIDE_INT max_size1 = -1, max_size2 = -1;
1168 bool var1_p, var2_p, ind1_p, ind2_p;
1169
1170 gcc_checking_assert ((!ref1->ref
1171 || TREE_CODE (ref1->ref) == SSA_NAME
1172 || DECL_P (ref1->ref)
1173 || TREE_CODE (ref1->ref) == STRING_CST
1174 || handled_component_p (ref1->ref)
1175 || TREE_CODE (ref1->ref) == MEM_REF
1176 || TREE_CODE (ref1->ref) == TARGET_MEM_REF)
1177 && (!ref2->ref
1178 || TREE_CODE (ref2->ref) == SSA_NAME
1179 || DECL_P (ref2->ref)
1180 || TREE_CODE (ref2->ref) == STRING_CST
1181 || handled_component_p (ref2->ref)
1182 || TREE_CODE (ref2->ref) == MEM_REF
1183 || TREE_CODE (ref2->ref) == TARGET_MEM_REF));
1184
1185 /* Decompose the references into their base objects and the access. */
1186 base1 = ao_ref_base (ref1);
1187 offset1 = ref1->offset;
1188 max_size1 = ref1->max_size;
1189 base2 = ao_ref_base (ref2);
1190 offset2 = ref2->offset;
1191 max_size2 = ref2->max_size;
1192
1193 /* We can end up with registers or constants as bases for example from
1194 *D.1663_44 = VIEW_CONVERT_EXPR<struct DB_LSN>(__tmp$B0F64_59);
1195 which is seen as a struct copy. */
1196 if (TREE_CODE (base1) == SSA_NAME
1197 || TREE_CODE (base1) == CONST_DECL
1198 || TREE_CODE (base1) == CONSTRUCTOR
1199 || TREE_CODE (base1) == ADDR_EXPR
1200 || CONSTANT_CLASS_P (base1)
1201 || TREE_CODE (base2) == SSA_NAME
1202 || TREE_CODE (base2) == CONST_DECL
1203 || TREE_CODE (base2) == CONSTRUCTOR
1204 || TREE_CODE (base2) == ADDR_EXPR
1205 || CONSTANT_CLASS_P (base2))
1206 return false;
1207
1208 /* We can end up referring to code via function and label decls.
1209 As we likely do not properly track code aliases conservatively
1210 bail out. */
1211 if (TREE_CODE (base1) == FUNCTION_DECL
1212 || TREE_CODE (base1) == LABEL_DECL
1213 || TREE_CODE (base2) == FUNCTION_DECL
1214 || TREE_CODE (base2) == LABEL_DECL)
1215 return true;
1216
1217 /* Two volatile accesses always conflict. */
1218 if (ref1->volatile_p
1219 && ref2->volatile_p)
1220 return true;
1221
1222 /* Defer to simple offset based disambiguation if we have
1223 references based on two decls. Do this before defering to
1224 TBAA to handle must-alias cases in conformance with the
1225 GCC extension of allowing type-punning through unions. */
1226 var1_p = DECL_P (base1);
1227 var2_p = DECL_P (base2);
1228 if (var1_p && var2_p)
1229 return decl_refs_may_alias_p (ref1->ref, base1, offset1, max_size1,
1230 ref2->ref, base2, offset2, max_size2);
1231
1232 ind1_p = (TREE_CODE (base1) == MEM_REF
1233 || TREE_CODE (base1) == TARGET_MEM_REF);
1234 ind2_p = (TREE_CODE (base2) == MEM_REF
1235 || TREE_CODE (base2) == TARGET_MEM_REF);
1236
1237 /* Canonicalize the pointer-vs-decl case. */
1238 if (ind1_p && var2_p)
1239 {
1240 HOST_WIDE_INT tmp1;
1241 tree tmp2;
1242 ao_ref *tmp3;
1243 tmp1 = offset1; offset1 = offset2; offset2 = tmp1;
1244 tmp1 = max_size1; max_size1 = max_size2; max_size2 = tmp1;
1245 tmp2 = base1; base1 = base2; base2 = tmp2;
1246 tmp3 = ref1; ref1 = ref2; ref2 = tmp3;
1247 var1_p = true;
1248 ind1_p = false;
1249 var2_p = false;
1250 ind2_p = true;
1251 }
1252
1253 /* First defer to TBAA if possible. */
1254 if (tbaa_p
1255 && flag_strict_aliasing
1256 && !alias_sets_conflict_p (ao_ref_alias_set (ref1),
1257 ao_ref_alias_set (ref2)))
1258 return false;
1259
1260 /* Dispatch to the pointer-vs-decl or pointer-vs-pointer disambiguators. */
1261 if (var1_p && ind2_p)
1262 return indirect_ref_may_alias_decl_p (ref2->ref, base2,
1263 offset2, max_size2,
1264 ao_ref_alias_set (ref2), -1,
1265 ref1->ref, base1,
1266 offset1, max_size1,
1267 ao_ref_alias_set (ref1),
1268 ao_ref_base_alias_set (ref1),
1269 tbaa_p);
1270 else if (ind1_p && ind2_p)
1271 return indirect_refs_may_alias_p (ref1->ref, base1,
1272 offset1, max_size1,
1273 ao_ref_alias_set (ref1), -1,
1274 ref2->ref, base2,
1275 offset2, max_size2,
1276 ao_ref_alias_set (ref2), -1,
1277 tbaa_p);
1278
1279 /* We really do not want to end up here, but returning true is safe. */
1280 #ifdef ENABLE_CHECKING
1281 gcc_unreachable ();
1282 #else
1283 return true;
1284 #endif
1285 }
1286
1287 bool
1288 refs_may_alias_p (tree ref1, tree ref2)
1289 {
1290 ao_ref r1, r2;
1291 bool res;
1292 ao_ref_init (&r1, ref1);
1293 ao_ref_init (&r2, ref2);
1294 res = refs_may_alias_p_1 (&r1, &r2, true);
1295 if (res)
1296 ++alias_stats.refs_may_alias_p_may_alias;
1297 else
1298 ++alias_stats.refs_may_alias_p_no_alias;
1299 return res;
1300 }
1301
1302 /* Returns true if there is a anti-dependence for the STORE that
1303 executes after the LOAD. */
1304
1305 bool
1306 refs_anti_dependent_p (tree load, tree store)
1307 {
1308 ao_ref r1, r2;
1309 ao_ref_init (&r1, load);
1310 ao_ref_init (&r2, store);
1311 return refs_may_alias_p_1 (&r1, &r2, false);
1312 }
1313
1314 /* Returns true if there is a output dependence for the stores
1315 STORE1 and STORE2. */
1316
1317 bool
1318 refs_output_dependent_p (tree store1, tree store2)
1319 {
1320 ao_ref r1, r2;
1321 ao_ref_init (&r1, store1);
1322 ao_ref_init (&r2, store2);
1323 return refs_may_alias_p_1 (&r1, &r2, false);
1324 }
1325
1326 /* If the call CALL may use the memory reference REF return true,
1327 otherwise return false. */
1328
1329 static bool
1330 ref_maybe_used_by_call_p_1 (gimple call, ao_ref *ref)
1331 {
1332 tree base, callee;
1333 unsigned i;
1334 int flags = gimple_call_flags (call);
1335
1336 /* Const functions without a static chain do not implicitly use memory. */
1337 if (!gimple_call_chain (call)
1338 && (flags & (ECF_CONST|ECF_NOVOPS)))
1339 goto process_args;
1340
1341 base = ao_ref_base (ref);
1342 if (!base)
1343 return true;
1344
1345 /* A call that is not without side-effects might involve volatile
1346 accesses and thus conflicts with all other volatile accesses. */
1347 if (ref->volatile_p)
1348 return true;
1349
1350 /* If the reference is based on a decl that is not aliased the call
1351 cannot possibly use it. */
1352 if (DECL_P (base)
1353 && !may_be_aliased (base)
1354 /* But local statics can be used through recursion. */
1355 && !is_global_var (base))
1356 goto process_args;
1357
1358 callee = gimple_call_fndecl (call);
1359
1360 /* Handle those builtin functions explicitly that do not act as
1361 escape points. See tree-ssa-structalias.c:find_func_aliases
1362 for the list of builtins we might need to handle here. */
1363 if (callee != NULL_TREE
1364 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
1365 switch (DECL_FUNCTION_CODE (callee))
1366 {
1367 /* All the following functions read memory pointed to by
1368 their second argument. strcat/strncat additionally
1369 reads memory pointed to by the first argument. */
1370 case BUILT_IN_STRCAT:
1371 case BUILT_IN_STRNCAT:
1372 {
1373 ao_ref dref;
1374 ao_ref_init_from_ptr_and_size (&dref,
1375 gimple_call_arg (call, 0),
1376 NULL_TREE);
1377 if (refs_may_alias_p_1 (&dref, ref, false))
1378 return true;
1379 }
1380 /* FALLTHRU */
1381 case BUILT_IN_STRCPY:
1382 case BUILT_IN_STRNCPY:
1383 case BUILT_IN_MEMCPY:
1384 case BUILT_IN_MEMMOVE:
1385 case BUILT_IN_MEMPCPY:
1386 case BUILT_IN_STPCPY:
1387 case BUILT_IN_STPNCPY:
1388 case BUILT_IN_TM_MEMCPY:
1389 case BUILT_IN_TM_MEMMOVE:
1390 {
1391 ao_ref dref;
1392 tree size = NULL_TREE;
1393 if (gimple_call_num_args (call) == 3)
1394 size = gimple_call_arg (call, 2);
1395 ao_ref_init_from_ptr_and_size (&dref,
1396 gimple_call_arg (call, 1),
1397 size);
1398 return refs_may_alias_p_1 (&dref, ref, false);
1399 }
1400 case BUILT_IN_STRCAT_CHK:
1401 case BUILT_IN_STRNCAT_CHK:
1402 {
1403 ao_ref dref;
1404 ao_ref_init_from_ptr_and_size (&dref,
1405 gimple_call_arg (call, 0),
1406 NULL_TREE);
1407 if (refs_may_alias_p_1 (&dref, ref, false))
1408 return true;
1409 }
1410 /* FALLTHRU */
1411 case BUILT_IN_STRCPY_CHK:
1412 case BUILT_IN_STRNCPY_CHK:
1413 case BUILT_IN_MEMCPY_CHK:
1414 case BUILT_IN_MEMMOVE_CHK:
1415 case BUILT_IN_MEMPCPY_CHK:
1416 case BUILT_IN_STPCPY_CHK:
1417 case BUILT_IN_STPNCPY_CHK:
1418 {
1419 ao_ref dref;
1420 tree size = NULL_TREE;
1421 if (gimple_call_num_args (call) == 4)
1422 size = gimple_call_arg (call, 2);
1423 ao_ref_init_from_ptr_and_size (&dref,
1424 gimple_call_arg (call, 1),
1425 size);
1426 return refs_may_alias_p_1 (&dref, ref, false);
1427 }
1428 case BUILT_IN_BCOPY:
1429 {
1430 ao_ref dref;
1431 tree size = gimple_call_arg (call, 2);
1432 ao_ref_init_from_ptr_and_size (&dref,
1433 gimple_call_arg (call, 0),
1434 size);
1435 return refs_may_alias_p_1 (&dref, ref, false);
1436 }
1437
1438 /* The following functions read memory pointed to by their
1439 first argument. */
1440 CASE_BUILT_IN_TM_LOAD (1):
1441 CASE_BUILT_IN_TM_LOAD (2):
1442 CASE_BUILT_IN_TM_LOAD (4):
1443 CASE_BUILT_IN_TM_LOAD (8):
1444 CASE_BUILT_IN_TM_LOAD (FLOAT):
1445 CASE_BUILT_IN_TM_LOAD (DOUBLE):
1446 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
1447 CASE_BUILT_IN_TM_LOAD (M64):
1448 CASE_BUILT_IN_TM_LOAD (M128):
1449 CASE_BUILT_IN_TM_LOAD (M256):
1450 case BUILT_IN_TM_LOG:
1451 case BUILT_IN_TM_LOG_1:
1452 case BUILT_IN_TM_LOG_2:
1453 case BUILT_IN_TM_LOG_4:
1454 case BUILT_IN_TM_LOG_8:
1455 case BUILT_IN_TM_LOG_FLOAT:
1456 case BUILT_IN_TM_LOG_DOUBLE:
1457 case BUILT_IN_TM_LOG_LDOUBLE:
1458 case BUILT_IN_TM_LOG_M64:
1459 case BUILT_IN_TM_LOG_M128:
1460 case BUILT_IN_TM_LOG_M256:
1461 return ptr_deref_may_alias_ref_p_1 (gimple_call_arg (call, 0), ref);
1462
1463 /* These read memory pointed to by the first argument. */
1464 case BUILT_IN_STRDUP:
1465 case BUILT_IN_STRNDUP:
1466 {
1467 ao_ref dref;
1468 tree size = NULL_TREE;
1469 if (gimple_call_num_args (call) == 2)
1470 size = gimple_call_arg (call, 1);
1471 ao_ref_init_from_ptr_and_size (&dref,
1472 gimple_call_arg (call, 0),
1473 size);
1474 return refs_may_alias_p_1 (&dref, ref, false);
1475 }
1476 /* These read memory pointed to by the first argument. */
1477 case BUILT_IN_INDEX:
1478 case BUILT_IN_STRCHR:
1479 case BUILT_IN_STRRCHR:
1480 {
1481 ao_ref dref;
1482 ao_ref_init_from_ptr_and_size (&dref,
1483 gimple_call_arg (call, 0),
1484 NULL_TREE);
1485 return refs_may_alias_p_1 (&dref, ref, false);
1486 }
1487 /* These read memory pointed to by the first argument with size
1488 in the third argument. */
1489 case BUILT_IN_MEMCHR:
1490 {
1491 ao_ref dref;
1492 ao_ref_init_from_ptr_and_size (&dref,
1493 gimple_call_arg (call, 0),
1494 gimple_call_arg (call, 2));
1495 return refs_may_alias_p_1 (&dref, ref, false);
1496 }
1497 /* These read memory pointed to by the first and second arguments. */
1498 case BUILT_IN_STRSTR:
1499 case BUILT_IN_STRPBRK:
1500 {
1501 ao_ref dref;
1502 ao_ref_init_from_ptr_and_size (&dref,
1503 gimple_call_arg (call, 0),
1504 NULL_TREE);
1505 if (refs_may_alias_p_1 (&dref, ref, false))
1506 return true;
1507 ao_ref_init_from_ptr_and_size (&dref,
1508 gimple_call_arg (call, 1),
1509 NULL_TREE);
1510 return refs_may_alias_p_1 (&dref, ref, false);
1511 }
1512
1513 /* The following builtins do not read from memory. */
1514 case BUILT_IN_FREE:
1515 case BUILT_IN_MALLOC:
1516 case BUILT_IN_CALLOC:
1517 case BUILT_IN_ALLOCA:
1518 case BUILT_IN_ALLOCA_WITH_ALIGN:
1519 case BUILT_IN_STACK_SAVE:
1520 case BUILT_IN_STACK_RESTORE:
1521 case BUILT_IN_MEMSET:
1522 case BUILT_IN_TM_MEMSET:
1523 case BUILT_IN_MEMSET_CHK:
1524 case BUILT_IN_FREXP:
1525 case BUILT_IN_FREXPF:
1526 case BUILT_IN_FREXPL:
1527 case BUILT_IN_GAMMA_R:
1528 case BUILT_IN_GAMMAF_R:
1529 case BUILT_IN_GAMMAL_R:
1530 case BUILT_IN_LGAMMA_R:
1531 case BUILT_IN_LGAMMAF_R:
1532 case BUILT_IN_LGAMMAL_R:
1533 case BUILT_IN_MODF:
1534 case BUILT_IN_MODFF:
1535 case BUILT_IN_MODFL:
1536 case BUILT_IN_REMQUO:
1537 case BUILT_IN_REMQUOF:
1538 case BUILT_IN_REMQUOL:
1539 case BUILT_IN_SINCOS:
1540 case BUILT_IN_SINCOSF:
1541 case BUILT_IN_SINCOSL:
1542 case BUILT_IN_ASSUME_ALIGNED:
1543 case BUILT_IN_VA_END:
1544 return false;
1545 /* __sync_* builtins and some OpenMP builtins act as threading
1546 barriers. */
1547 #undef DEF_SYNC_BUILTIN
1548 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) case ENUM:
1549 #include "sync-builtins.def"
1550 #undef DEF_SYNC_BUILTIN
1551 case BUILT_IN_GOMP_ATOMIC_START:
1552 case BUILT_IN_GOMP_ATOMIC_END:
1553 case BUILT_IN_GOMP_BARRIER:
1554 case BUILT_IN_GOMP_BARRIER_CANCEL:
1555 case BUILT_IN_GOMP_TASKWAIT:
1556 case BUILT_IN_GOMP_TASKGROUP_END:
1557 case BUILT_IN_GOMP_CRITICAL_START:
1558 case BUILT_IN_GOMP_CRITICAL_END:
1559 case BUILT_IN_GOMP_CRITICAL_NAME_START:
1560 case BUILT_IN_GOMP_CRITICAL_NAME_END:
1561 case BUILT_IN_GOMP_LOOP_END:
1562 case BUILT_IN_GOMP_LOOP_END_CANCEL:
1563 case BUILT_IN_GOMP_ORDERED_START:
1564 case BUILT_IN_GOMP_ORDERED_END:
1565 case BUILT_IN_GOMP_SECTIONS_END:
1566 case BUILT_IN_GOMP_SECTIONS_END_CANCEL:
1567 case BUILT_IN_GOMP_SINGLE_COPY_START:
1568 case BUILT_IN_GOMP_SINGLE_COPY_END:
1569 return true;
1570
1571 default:
1572 /* Fallthru to general call handling. */;
1573 }
1574
1575 /* Check if base is a global static variable that is not read
1576 by the function. */
1577 if (callee != NULL_TREE
1578 && TREE_CODE (base) == VAR_DECL
1579 && TREE_STATIC (base))
1580 {
1581 struct cgraph_node *node = cgraph_get_node (callee);
1582 bitmap not_read;
1583
1584 /* FIXME: Callee can be an OMP builtin that does not have a call graph
1585 node yet. We should enforce that there are nodes for all decls in the
1586 IL and remove this check instead. */
1587 if (node
1588 && (not_read = ipa_reference_get_not_read_global (node))
1589 && bitmap_bit_p (not_read, DECL_UID (base)))
1590 goto process_args;
1591 }
1592
1593 /* Check if the base variable is call-used. */
1594 if (DECL_P (base))
1595 {
1596 if (pt_solution_includes (gimple_call_use_set (call), base))
1597 return true;
1598 }
1599 else if ((TREE_CODE (base) == MEM_REF
1600 || TREE_CODE (base) == TARGET_MEM_REF)
1601 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
1602 {
1603 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0));
1604 if (!pi)
1605 return true;
1606
1607 if (pt_solutions_intersect (gimple_call_use_set (call), &pi->pt))
1608 return true;
1609 }
1610 else
1611 return true;
1612
1613 /* Inspect call arguments for passed-by-value aliases. */
1614 process_args:
1615 for (i = 0; i < gimple_call_num_args (call); ++i)
1616 {
1617 tree op = gimple_call_arg (call, i);
1618 int flags = gimple_call_arg_flags (call, i);
1619
1620 if (flags & EAF_UNUSED)
1621 continue;
1622
1623 if (TREE_CODE (op) == WITH_SIZE_EXPR)
1624 op = TREE_OPERAND (op, 0);
1625
1626 if (TREE_CODE (op) != SSA_NAME
1627 && !is_gimple_min_invariant (op))
1628 {
1629 ao_ref r;
1630 ao_ref_init (&r, op);
1631 if (refs_may_alias_p_1 (&r, ref, true))
1632 return true;
1633 }
1634 }
1635
1636 return false;
1637 }
1638
1639 static bool
1640 ref_maybe_used_by_call_p (gimple call, tree ref)
1641 {
1642 ao_ref r;
1643 bool res;
1644 ao_ref_init (&r, ref);
1645 res = ref_maybe_used_by_call_p_1 (call, &r);
1646 if (res)
1647 ++alias_stats.ref_maybe_used_by_call_p_may_alias;
1648 else
1649 ++alias_stats.ref_maybe_used_by_call_p_no_alias;
1650 return res;
1651 }
1652
1653
1654 /* If the statement STMT may use the memory reference REF return
1655 true, otherwise return false. */
1656
1657 bool
1658 ref_maybe_used_by_stmt_p (gimple stmt, tree ref)
1659 {
1660 if (is_gimple_assign (stmt))
1661 {
1662 tree rhs;
1663
1664 /* All memory assign statements are single. */
1665 if (!gimple_assign_single_p (stmt))
1666 return false;
1667
1668 rhs = gimple_assign_rhs1 (stmt);
1669 if (is_gimple_reg (rhs)
1670 || is_gimple_min_invariant (rhs)
1671 || gimple_assign_rhs_code (stmt) == CONSTRUCTOR)
1672 return false;
1673
1674 return refs_may_alias_p (rhs, ref);
1675 }
1676 else if (is_gimple_call (stmt))
1677 return ref_maybe_used_by_call_p (stmt, ref);
1678 else if (gimple_code (stmt) == GIMPLE_RETURN)
1679 {
1680 tree retval = gimple_return_retval (stmt);
1681 tree base;
1682 if (retval
1683 && TREE_CODE (retval) != SSA_NAME
1684 && !is_gimple_min_invariant (retval)
1685 && refs_may_alias_p (retval, ref))
1686 return true;
1687 /* If ref escapes the function then the return acts as a use. */
1688 base = get_base_address (ref);
1689 if (!base)
1690 ;
1691 else if (DECL_P (base))
1692 return is_global_var (base);
1693 else if (TREE_CODE (base) == MEM_REF
1694 || TREE_CODE (base) == TARGET_MEM_REF)
1695 return ptr_deref_may_alias_global_p (TREE_OPERAND (base, 0));
1696 return false;
1697 }
1698
1699 return true;
1700 }
1701
1702 /* If the call in statement CALL may clobber the memory reference REF
1703 return true, otherwise return false. */
1704
1705 static bool
1706 call_may_clobber_ref_p_1 (gimple call, ao_ref *ref)
1707 {
1708 tree base;
1709 tree callee;
1710
1711 /* If the call is pure or const it cannot clobber anything. */
1712 if (gimple_call_flags (call)
1713 & (ECF_PURE|ECF_CONST|ECF_LOOPING_CONST_OR_PURE|ECF_NOVOPS))
1714 return false;
1715
1716 base = ao_ref_base (ref);
1717 if (!base)
1718 return true;
1719
1720 if (TREE_CODE (base) == SSA_NAME
1721 || CONSTANT_CLASS_P (base))
1722 return false;
1723
1724 /* A call that is not without side-effects might involve volatile
1725 accesses and thus conflicts with all other volatile accesses. */
1726 if (ref->volatile_p)
1727 return true;
1728
1729 /* If the reference is based on a decl that is not aliased the call
1730 cannot possibly clobber it. */
1731 if (DECL_P (base)
1732 && !may_be_aliased (base)
1733 /* But local non-readonly statics can be modified through recursion
1734 or the call may implement a threading barrier which we must
1735 treat as may-def. */
1736 && (TREE_READONLY (base)
1737 || !is_global_var (base)))
1738 return false;
1739
1740 callee = gimple_call_fndecl (call);
1741
1742 /* Handle those builtin functions explicitly that do not act as
1743 escape points. See tree-ssa-structalias.c:find_func_aliases
1744 for the list of builtins we might need to handle here. */
1745 if (callee != NULL_TREE
1746 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
1747 switch (DECL_FUNCTION_CODE (callee))
1748 {
1749 /* All the following functions clobber memory pointed to by
1750 their first argument. */
1751 case BUILT_IN_STRCPY:
1752 case BUILT_IN_STRNCPY:
1753 case BUILT_IN_MEMCPY:
1754 case BUILT_IN_MEMMOVE:
1755 case BUILT_IN_MEMPCPY:
1756 case BUILT_IN_STPCPY:
1757 case BUILT_IN_STPNCPY:
1758 case BUILT_IN_STRCAT:
1759 case BUILT_IN_STRNCAT:
1760 case BUILT_IN_MEMSET:
1761 case BUILT_IN_TM_MEMSET:
1762 CASE_BUILT_IN_TM_STORE (1):
1763 CASE_BUILT_IN_TM_STORE (2):
1764 CASE_BUILT_IN_TM_STORE (4):
1765 CASE_BUILT_IN_TM_STORE (8):
1766 CASE_BUILT_IN_TM_STORE (FLOAT):
1767 CASE_BUILT_IN_TM_STORE (DOUBLE):
1768 CASE_BUILT_IN_TM_STORE (LDOUBLE):
1769 CASE_BUILT_IN_TM_STORE (M64):
1770 CASE_BUILT_IN_TM_STORE (M128):
1771 CASE_BUILT_IN_TM_STORE (M256):
1772 case BUILT_IN_TM_MEMCPY:
1773 case BUILT_IN_TM_MEMMOVE:
1774 {
1775 ao_ref dref;
1776 tree size = NULL_TREE;
1777 /* Don't pass in size for strncat, as the maximum size
1778 is strlen (dest) + n + 1 instead of n, resp.
1779 n + 1 at dest + strlen (dest), but strlen (dest) isn't
1780 known. */
1781 if (gimple_call_num_args (call) == 3
1782 && DECL_FUNCTION_CODE (callee) != BUILT_IN_STRNCAT)
1783 size = gimple_call_arg (call, 2);
1784 ao_ref_init_from_ptr_and_size (&dref,
1785 gimple_call_arg (call, 0),
1786 size);
1787 return refs_may_alias_p_1 (&dref, ref, false);
1788 }
1789 case BUILT_IN_STRCPY_CHK:
1790 case BUILT_IN_STRNCPY_CHK:
1791 case BUILT_IN_MEMCPY_CHK:
1792 case BUILT_IN_MEMMOVE_CHK:
1793 case BUILT_IN_MEMPCPY_CHK:
1794 case BUILT_IN_STPCPY_CHK:
1795 case BUILT_IN_STPNCPY_CHK:
1796 case BUILT_IN_STRCAT_CHK:
1797 case BUILT_IN_STRNCAT_CHK:
1798 case BUILT_IN_MEMSET_CHK:
1799 {
1800 ao_ref dref;
1801 tree size = NULL_TREE;
1802 /* Don't pass in size for __strncat_chk, as the maximum size
1803 is strlen (dest) + n + 1 instead of n, resp.
1804 n + 1 at dest + strlen (dest), but strlen (dest) isn't
1805 known. */
1806 if (gimple_call_num_args (call) == 4
1807 && DECL_FUNCTION_CODE (callee) != BUILT_IN_STRNCAT_CHK)
1808 size = gimple_call_arg (call, 2);
1809 ao_ref_init_from_ptr_and_size (&dref,
1810 gimple_call_arg (call, 0),
1811 size);
1812 return refs_may_alias_p_1 (&dref, ref, false);
1813 }
1814 case BUILT_IN_BCOPY:
1815 {
1816 ao_ref dref;
1817 tree size = gimple_call_arg (call, 2);
1818 ao_ref_init_from_ptr_and_size (&dref,
1819 gimple_call_arg (call, 1),
1820 size);
1821 return refs_may_alias_p_1 (&dref, ref, false);
1822 }
1823 /* Allocating memory does not have any side-effects apart from
1824 being the definition point for the pointer. */
1825 case BUILT_IN_MALLOC:
1826 case BUILT_IN_CALLOC:
1827 case BUILT_IN_STRDUP:
1828 case BUILT_IN_STRNDUP:
1829 /* Unix98 specifies that errno is set on allocation failure. */
1830 if (flag_errno_math
1831 && targetm.ref_may_alias_errno (ref))
1832 return true;
1833 return false;
1834 case BUILT_IN_STACK_SAVE:
1835 case BUILT_IN_ALLOCA:
1836 case BUILT_IN_ALLOCA_WITH_ALIGN:
1837 case BUILT_IN_ASSUME_ALIGNED:
1838 return false;
1839 /* Freeing memory kills the pointed-to memory. More importantly
1840 the call has to serve as a barrier for moving loads and stores
1841 across it. */
1842 case BUILT_IN_FREE:
1843 case BUILT_IN_VA_END:
1844 {
1845 tree ptr = gimple_call_arg (call, 0);
1846 return ptr_deref_may_alias_ref_p_1 (ptr, ref);
1847 }
1848 case BUILT_IN_GAMMA_R:
1849 case BUILT_IN_GAMMAF_R:
1850 case BUILT_IN_GAMMAL_R:
1851 case BUILT_IN_LGAMMA_R:
1852 case BUILT_IN_LGAMMAF_R:
1853 case BUILT_IN_LGAMMAL_R:
1854 {
1855 tree out = gimple_call_arg (call, 1);
1856 if (ptr_deref_may_alias_ref_p_1 (out, ref))
1857 return true;
1858 if (flag_errno_math)
1859 break;
1860 return false;
1861 }
1862 case BUILT_IN_FREXP:
1863 case BUILT_IN_FREXPF:
1864 case BUILT_IN_FREXPL:
1865 case BUILT_IN_MODF:
1866 case BUILT_IN_MODFF:
1867 case BUILT_IN_MODFL:
1868 {
1869 tree out = gimple_call_arg (call, 1);
1870 return ptr_deref_may_alias_ref_p_1 (out, ref);
1871 }
1872 case BUILT_IN_REMQUO:
1873 case BUILT_IN_REMQUOF:
1874 case BUILT_IN_REMQUOL:
1875 {
1876 tree out = gimple_call_arg (call, 2);
1877 if (ptr_deref_may_alias_ref_p_1 (out, ref))
1878 return true;
1879 if (flag_errno_math)
1880 break;
1881 return false;
1882 }
1883 case BUILT_IN_SINCOS:
1884 case BUILT_IN_SINCOSF:
1885 case BUILT_IN_SINCOSL:
1886 {
1887 tree sin = gimple_call_arg (call, 1);
1888 tree cos = gimple_call_arg (call, 2);
1889 return (ptr_deref_may_alias_ref_p_1 (sin, ref)
1890 || ptr_deref_may_alias_ref_p_1 (cos, ref));
1891 }
1892 /* __sync_* builtins and some OpenMP builtins act as threading
1893 barriers. */
1894 #undef DEF_SYNC_BUILTIN
1895 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) case ENUM:
1896 #include "sync-builtins.def"
1897 #undef DEF_SYNC_BUILTIN
1898 case BUILT_IN_GOMP_ATOMIC_START:
1899 case BUILT_IN_GOMP_ATOMIC_END:
1900 case BUILT_IN_GOMP_BARRIER:
1901 case BUILT_IN_GOMP_BARRIER_CANCEL:
1902 case BUILT_IN_GOMP_TASKWAIT:
1903 case BUILT_IN_GOMP_TASKGROUP_END:
1904 case BUILT_IN_GOMP_CRITICAL_START:
1905 case BUILT_IN_GOMP_CRITICAL_END:
1906 case BUILT_IN_GOMP_CRITICAL_NAME_START:
1907 case BUILT_IN_GOMP_CRITICAL_NAME_END:
1908 case BUILT_IN_GOMP_LOOP_END:
1909 case BUILT_IN_GOMP_LOOP_END_CANCEL:
1910 case BUILT_IN_GOMP_ORDERED_START:
1911 case BUILT_IN_GOMP_ORDERED_END:
1912 case BUILT_IN_GOMP_SECTIONS_END:
1913 case BUILT_IN_GOMP_SECTIONS_END_CANCEL:
1914 case BUILT_IN_GOMP_SINGLE_COPY_START:
1915 case BUILT_IN_GOMP_SINGLE_COPY_END:
1916 return true;
1917 default:
1918 /* Fallthru to general call handling. */;
1919 }
1920
1921 /* Check if base is a global static variable that is not written
1922 by the function. */
1923 if (callee != NULL_TREE
1924 && TREE_CODE (base) == VAR_DECL
1925 && TREE_STATIC (base))
1926 {
1927 struct cgraph_node *node = cgraph_get_node (callee);
1928 bitmap not_written;
1929
1930 if (node
1931 && (not_written = ipa_reference_get_not_written_global (node))
1932 && bitmap_bit_p (not_written, DECL_UID (base)))
1933 return false;
1934 }
1935
1936 /* Check if the base variable is call-clobbered. */
1937 if (DECL_P (base))
1938 return pt_solution_includes (gimple_call_clobber_set (call), base);
1939 else if ((TREE_CODE (base) == MEM_REF
1940 || TREE_CODE (base) == TARGET_MEM_REF)
1941 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
1942 {
1943 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0));
1944 if (!pi)
1945 return true;
1946
1947 return pt_solutions_intersect (gimple_call_clobber_set (call), &pi->pt);
1948 }
1949
1950 return true;
1951 }
1952
1953 /* If the call in statement CALL may clobber the memory reference REF
1954 return true, otherwise return false. */
1955
1956 bool
1957 call_may_clobber_ref_p (gimple call, tree ref)
1958 {
1959 bool res;
1960 ao_ref r;
1961 ao_ref_init (&r, ref);
1962 res = call_may_clobber_ref_p_1 (call, &r);
1963 if (res)
1964 ++alias_stats.call_may_clobber_ref_p_may_alias;
1965 else
1966 ++alias_stats.call_may_clobber_ref_p_no_alias;
1967 return res;
1968 }
1969
1970
1971 /* If the statement STMT may clobber the memory reference REF return true,
1972 otherwise return false. */
1973
1974 bool
1975 stmt_may_clobber_ref_p_1 (gimple stmt, ao_ref *ref)
1976 {
1977 if (is_gimple_call (stmt))
1978 {
1979 tree lhs = gimple_call_lhs (stmt);
1980 if (lhs
1981 && TREE_CODE (lhs) != SSA_NAME)
1982 {
1983 ao_ref r;
1984 ao_ref_init (&r, lhs);
1985 if (refs_may_alias_p_1 (ref, &r, true))
1986 return true;
1987 }
1988
1989 return call_may_clobber_ref_p_1 (stmt, ref);
1990 }
1991 else if (gimple_assign_single_p (stmt))
1992 {
1993 tree lhs = gimple_assign_lhs (stmt);
1994 if (TREE_CODE (lhs) != SSA_NAME)
1995 {
1996 ao_ref r;
1997 ao_ref_init (&r, lhs);
1998 return refs_may_alias_p_1 (ref, &r, true);
1999 }
2000 }
2001 else if (gimple_code (stmt) == GIMPLE_ASM)
2002 return true;
2003
2004 return false;
2005 }
2006
2007 bool
2008 stmt_may_clobber_ref_p (gimple stmt, tree ref)
2009 {
2010 ao_ref r;
2011 ao_ref_init (&r, ref);
2012 return stmt_may_clobber_ref_p_1 (stmt, &r);
2013 }
2014
2015 /* If STMT kills the memory reference REF return true, otherwise
2016 return false. */
2017
2018 static bool
2019 stmt_kills_ref_p_1 (gimple stmt, ao_ref *ref)
2020 {
2021 /* For a must-alias check we need to be able to constrain
2022 the access properly.
2023 FIXME: except for BUILTIN_FREE. */
2024 if (!ao_ref_base (ref)
2025 || ref->max_size == -1)
2026 return false;
2027
2028 if (gimple_has_lhs (stmt)
2029 && TREE_CODE (gimple_get_lhs (stmt)) != SSA_NAME
2030 /* The assignment is not necessarily carried out if it can throw
2031 and we can catch it in the current function where we could inspect
2032 the previous value.
2033 ??? We only need to care about the RHS throwing. For aggregate
2034 assignments or similar calls and non-call exceptions the LHS
2035 might throw as well. */
2036 && !stmt_can_throw_internal (stmt))
2037 {
2038 tree base, lhs = gimple_get_lhs (stmt);
2039 HOST_WIDE_INT size, offset, max_size, ref_offset = ref->offset;
2040 base = get_ref_base_and_extent (lhs, &offset, &size, &max_size);
2041 /* We can get MEM[symbol: sZ, index: D.8862_1] here,
2042 so base == ref->base does not always hold. */
2043 if (base != ref->base)
2044 {
2045 /* If both base and ref->base are MEM_REFs, only compare the
2046 first operand, and if the second operand isn't equal constant,
2047 try to add the offsets into offset and ref_offset. */
2048 if (TREE_CODE (base) == MEM_REF && TREE_CODE (ref->base) == MEM_REF
2049 && TREE_OPERAND (base, 0) == TREE_OPERAND (ref->base, 0))
2050 {
2051 if (!tree_int_cst_equal (TREE_OPERAND (base, 1),
2052 TREE_OPERAND (ref->base, 1)))
2053 {
2054 double_int off1 = mem_ref_offset (base);
2055 off1 = off1.lshift (BITS_PER_UNIT == 8
2056 ? 3 : exact_log2 (BITS_PER_UNIT));
2057 off1 = off1 + double_int::from_shwi (offset);
2058 double_int off2 = mem_ref_offset (ref->base);
2059 off2 = off2.lshift (BITS_PER_UNIT == 8
2060 ? 3 : exact_log2 (BITS_PER_UNIT));
2061 off2 = off2 + double_int::from_shwi (ref_offset);
2062 if (off1.fits_shwi () && off2.fits_shwi ())
2063 {
2064 offset = off1.to_shwi ();
2065 ref_offset = off2.to_shwi ();
2066 }
2067 else
2068 size = -1;
2069 }
2070 }
2071 else
2072 size = -1;
2073 }
2074 /* For a must-alias check we need to be able to constrain
2075 the access properly. */
2076 if (size != -1 && size == max_size)
2077 {
2078 if (offset <= ref_offset
2079 && offset + size >= ref_offset + ref->max_size)
2080 return true;
2081 }
2082 }
2083
2084 if (is_gimple_call (stmt))
2085 {
2086 tree callee = gimple_call_fndecl (stmt);
2087 if (callee != NULL_TREE
2088 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
2089 switch (DECL_FUNCTION_CODE (callee))
2090 {
2091 case BUILT_IN_FREE:
2092 {
2093 tree ptr = gimple_call_arg (stmt, 0);
2094 tree base = ao_ref_base (ref);
2095 if (base && TREE_CODE (base) == MEM_REF
2096 && TREE_OPERAND (base, 0) == ptr)
2097 return true;
2098 break;
2099 }
2100
2101 case BUILT_IN_MEMCPY:
2102 case BUILT_IN_MEMPCPY:
2103 case BUILT_IN_MEMMOVE:
2104 case BUILT_IN_MEMSET:
2105 case BUILT_IN_MEMCPY_CHK:
2106 case BUILT_IN_MEMPCPY_CHK:
2107 case BUILT_IN_MEMMOVE_CHK:
2108 case BUILT_IN_MEMSET_CHK:
2109 {
2110 tree dest = gimple_call_arg (stmt, 0);
2111 tree len = gimple_call_arg (stmt, 2);
2112 if (!tree_fits_shwi_p (len))
2113 return false;
2114 tree rbase = ref->base;
2115 double_int roffset = double_int::from_shwi (ref->offset);
2116 ao_ref dref;
2117 ao_ref_init_from_ptr_and_size (&dref, dest, len);
2118 tree base = ao_ref_base (&dref);
2119 double_int offset = double_int::from_shwi (dref.offset);
2120 double_int bpu = double_int::from_uhwi (BITS_PER_UNIT);
2121 if (!base || dref.size == -1)
2122 return false;
2123 if (TREE_CODE (base) == MEM_REF)
2124 {
2125 if (TREE_CODE (rbase) != MEM_REF)
2126 return false;
2127 // Compare pointers.
2128 offset += bpu * mem_ref_offset (base);
2129 roffset += bpu * mem_ref_offset (rbase);
2130 base = TREE_OPERAND (base, 0);
2131 rbase = TREE_OPERAND (rbase, 0);
2132 }
2133 if (base == rbase)
2134 {
2135 double_int size = bpu * tree_to_double_int (len);
2136 double_int rsize = double_int::from_uhwi (ref->max_size);
2137 if (offset.sle (roffset)
2138 && (roffset + rsize).sle (offset + size))
2139 return true;
2140 }
2141 break;
2142 }
2143
2144 case BUILT_IN_VA_END:
2145 {
2146 tree ptr = gimple_call_arg (stmt, 0);
2147 if (TREE_CODE (ptr) == ADDR_EXPR)
2148 {
2149 tree base = ao_ref_base (ref);
2150 if (TREE_OPERAND (ptr, 0) == base)
2151 return true;
2152 }
2153 break;
2154 }
2155
2156 default:;
2157 }
2158 }
2159 return false;
2160 }
2161
2162 bool
2163 stmt_kills_ref_p (gimple stmt, tree ref)
2164 {
2165 ao_ref r;
2166 ao_ref_init (&r, ref);
2167 return stmt_kills_ref_p_1 (stmt, &r);
2168 }
2169
2170
2171 /* Walk the virtual use-def chain of VUSE until hitting the virtual operand
2172 TARGET or a statement clobbering the memory reference REF in which
2173 case false is returned. The walk starts with VUSE, one argument of PHI. */
2174
2175 static bool
2176 maybe_skip_until (gimple phi, tree target, ao_ref *ref,
2177 tree vuse, unsigned int *cnt, bitmap *visited,
2178 bool abort_on_visited)
2179 {
2180 basic_block bb = gimple_bb (phi);
2181
2182 if (!*visited)
2183 *visited = BITMAP_ALLOC (NULL);
2184
2185 bitmap_set_bit (*visited, SSA_NAME_VERSION (PHI_RESULT (phi)));
2186
2187 /* Walk until we hit the target. */
2188 while (vuse != target)
2189 {
2190 gimple def_stmt = SSA_NAME_DEF_STMT (vuse);
2191 /* Recurse for PHI nodes. */
2192 if (gimple_code (def_stmt) == GIMPLE_PHI)
2193 {
2194 /* An already visited PHI node ends the walk successfully. */
2195 if (bitmap_bit_p (*visited, SSA_NAME_VERSION (PHI_RESULT (def_stmt))))
2196 return !abort_on_visited;
2197 vuse = get_continuation_for_phi (def_stmt, ref, cnt,
2198 visited, abort_on_visited);
2199 if (!vuse)
2200 return false;
2201 continue;
2202 }
2203 else if (gimple_nop_p (def_stmt))
2204 return false;
2205 else
2206 {
2207 /* A clobbering statement or the end of the IL ends it failing. */
2208 ++*cnt;
2209 if (stmt_may_clobber_ref_p_1 (def_stmt, ref))
2210 return false;
2211 }
2212 /* If we reach a new basic-block see if we already skipped it
2213 in a previous walk that ended successfully. */
2214 if (gimple_bb (def_stmt) != bb)
2215 {
2216 if (!bitmap_set_bit (*visited, SSA_NAME_VERSION (vuse)))
2217 return !abort_on_visited;
2218 bb = gimple_bb (def_stmt);
2219 }
2220 vuse = gimple_vuse (def_stmt);
2221 }
2222 return true;
2223 }
2224
2225 /* For two PHI arguments ARG0 and ARG1 try to skip non-aliasing code
2226 until we hit the phi argument definition that dominates the other one.
2227 Return that, or NULL_TREE if there is no such definition. */
2228
2229 static tree
2230 get_continuation_for_phi_1 (gimple phi, tree arg0, tree arg1,
2231 ao_ref *ref, unsigned int *cnt,
2232 bitmap *visited, bool abort_on_visited)
2233 {
2234 gimple def0 = SSA_NAME_DEF_STMT (arg0);
2235 gimple def1 = SSA_NAME_DEF_STMT (arg1);
2236 tree common_vuse;
2237
2238 if (arg0 == arg1)
2239 return arg0;
2240 else if (gimple_nop_p (def0)
2241 || (!gimple_nop_p (def1)
2242 && dominated_by_p (CDI_DOMINATORS,
2243 gimple_bb (def1), gimple_bb (def0))))
2244 {
2245 if (maybe_skip_until (phi, arg0, ref, arg1, cnt,
2246 visited, abort_on_visited))
2247 return arg0;
2248 }
2249 else if (gimple_nop_p (def1)
2250 || dominated_by_p (CDI_DOMINATORS,
2251 gimple_bb (def0), gimple_bb (def1)))
2252 {
2253 if (maybe_skip_until (phi, arg1, ref, arg0, cnt,
2254 visited, abort_on_visited))
2255 return arg1;
2256 }
2257 /* Special case of a diamond:
2258 MEM_1 = ...
2259 goto (cond) ? L1 : L2
2260 L1: store1 = ... #MEM_2 = vuse(MEM_1)
2261 goto L3
2262 L2: store2 = ... #MEM_3 = vuse(MEM_1)
2263 L3: MEM_4 = PHI<MEM_2, MEM_3>
2264 We were called with the PHI at L3, MEM_2 and MEM_3 don't
2265 dominate each other, but still we can easily skip this PHI node
2266 if we recognize that the vuse MEM operand is the same for both,
2267 and that we can skip both statements (they don't clobber us).
2268 This is still linear. Don't use maybe_skip_until, that might
2269 potentially be slow. */
2270 else if ((common_vuse = gimple_vuse (def0))
2271 && common_vuse == gimple_vuse (def1))
2272 {
2273 *cnt += 2;
2274 if (!stmt_may_clobber_ref_p_1 (def0, ref)
2275 && !stmt_may_clobber_ref_p_1 (def1, ref))
2276 return common_vuse;
2277 }
2278
2279 return NULL_TREE;
2280 }
2281
2282
2283 /* Starting from a PHI node for the virtual operand of the memory reference
2284 REF find a continuation virtual operand that allows to continue walking
2285 statements dominating PHI skipping only statements that cannot possibly
2286 clobber REF. Increments *CNT for each alias disambiguation done.
2287 Returns NULL_TREE if no suitable virtual operand can be found. */
2288
2289 tree
2290 get_continuation_for_phi (gimple phi, ao_ref *ref,
2291 unsigned int *cnt, bitmap *visited,
2292 bool abort_on_visited)
2293 {
2294 unsigned nargs = gimple_phi_num_args (phi);
2295
2296 /* Through a single-argument PHI we can simply look through. */
2297 if (nargs == 1)
2298 return PHI_ARG_DEF (phi, 0);
2299
2300 /* For two or more arguments try to pairwise skip non-aliasing code
2301 until we hit the phi argument definition that dominates the other one. */
2302 else if (nargs >= 2)
2303 {
2304 tree arg0, arg1;
2305 unsigned i;
2306
2307 /* Find a candidate for the virtual operand which definition
2308 dominates those of all others. */
2309 arg0 = PHI_ARG_DEF (phi, 0);
2310 if (!SSA_NAME_IS_DEFAULT_DEF (arg0))
2311 for (i = 1; i < nargs; ++i)
2312 {
2313 arg1 = PHI_ARG_DEF (phi, i);
2314 if (SSA_NAME_IS_DEFAULT_DEF (arg1))
2315 {
2316 arg0 = arg1;
2317 break;
2318 }
2319 if (dominated_by_p (CDI_DOMINATORS,
2320 gimple_bb (SSA_NAME_DEF_STMT (arg0)),
2321 gimple_bb (SSA_NAME_DEF_STMT (arg1))))
2322 arg0 = arg1;
2323 }
2324
2325 /* Then pairwise reduce against the found candidate. */
2326 for (i = 0; i < nargs; ++i)
2327 {
2328 arg1 = PHI_ARG_DEF (phi, i);
2329 arg0 = get_continuation_for_phi_1 (phi, arg0, arg1, ref,
2330 cnt, visited, abort_on_visited);
2331 if (!arg0)
2332 return NULL_TREE;
2333 }
2334
2335 return arg0;
2336 }
2337
2338 return NULL_TREE;
2339 }
2340
2341 /* Based on the memory reference REF and its virtual use VUSE call
2342 WALKER for each virtual use that is equivalent to VUSE, including VUSE
2343 itself. That is, for each virtual use for which its defining statement
2344 does not clobber REF.
2345
2346 WALKER is called with REF, the current virtual use and DATA. If
2347 WALKER returns non-NULL the walk stops and its result is returned.
2348 At the end of a non-successful walk NULL is returned.
2349
2350 TRANSLATE if non-NULL is called with a pointer to REF, the virtual
2351 use which definition is a statement that may clobber REF and DATA.
2352 If TRANSLATE returns (void *)-1 the walk stops and NULL is returned.
2353 If TRANSLATE returns non-NULL the walk stops and its result is returned.
2354 If TRANSLATE returns NULL the walk continues and TRANSLATE is supposed
2355 to adjust REF and *DATA to make that valid.
2356
2357 TODO: Cache the vector of equivalent vuses per ref, vuse pair. */
2358
2359 void *
2360 walk_non_aliased_vuses (ao_ref *ref, tree vuse,
2361 void *(*walker)(ao_ref *, tree, unsigned int, void *),
2362 void *(*translate)(ao_ref *, tree, void *), void *data)
2363 {
2364 bitmap visited = NULL;
2365 void *res;
2366 unsigned int cnt = 0;
2367 bool translated = false;
2368
2369 timevar_push (TV_ALIAS_STMT_WALK);
2370
2371 do
2372 {
2373 gimple def_stmt;
2374
2375 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
2376 res = (*walker) (ref, vuse, cnt, data);
2377 /* Abort walk. */
2378 if (res == (void *)-1)
2379 {
2380 res = NULL;
2381 break;
2382 }
2383 /* Lookup succeeded. */
2384 else if (res != NULL)
2385 break;
2386
2387 def_stmt = SSA_NAME_DEF_STMT (vuse);
2388 if (gimple_nop_p (def_stmt))
2389 break;
2390 else if (gimple_code (def_stmt) == GIMPLE_PHI)
2391 vuse = get_continuation_for_phi (def_stmt, ref, &cnt,
2392 &visited, translated);
2393 else
2394 {
2395 cnt++;
2396 if (stmt_may_clobber_ref_p_1 (def_stmt, ref))
2397 {
2398 if (!translate)
2399 break;
2400 res = (*translate) (ref, vuse, data);
2401 /* Failed lookup and translation. */
2402 if (res == (void *)-1)
2403 {
2404 res = NULL;
2405 break;
2406 }
2407 /* Lookup succeeded. */
2408 else if (res != NULL)
2409 break;
2410 /* Translation succeeded, continue walking. */
2411 translated = true;
2412 }
2413 vuse = gimple_vuse (def_stmt);
2414 }
2415 }
2416 while (vuse);
2417
2418 if (visited)
2419 BITMAP_FREE (visited);
2420
2421 timevar_pop (TV_ALIAS_STMT_WALK);
2422
2423 return res;
2424 }
2425
2426
2427 /* Based on the memory reference REF call WALKER for each vdef which
2428 defining statement may clobber REF, starting with VDEF. If REF
2429 is NULL_TREE, each defining statement is visited.
2430
2431 WALKER is called with REF, the current vdef and DATA. If WALKER
2432 returns true the walk is stopped, otherwise it continues.
2433
2434 At PHI nodes walk_aliased_vdefs forks into one walk for reach
2435 PHI argument (but only one walk continues on merge points), the
2436 return value is true if any of the walks was successful.
2437
2438 The function returns the number of statements walked. */
2439
2440 static unsigned int
2441 walk_aliased_vdefs_1 (ao_ref *ref, tree vdef,
2442 bool (*walker)(ao_ref *, tree, void *), void *data,
2443 bitmap *visited, unsigned int cnt)
2444 {
2445 do
2446 {
2447 gimple def_stmt = SSA_NAME_DEF_STMT (vdef);
2448
2449 if (*visited
2450 && !bitmap_set_bit (*visited, SSA_NAME_VERSION (vdef)))
2451 return cnt;
2452
2453 if (gimple_nop_p (def_stmt))
2454 return cnt;
2455 else if (gimple_code (def_stmt) == GIMPLE_PHI)
2456 {
2457 unsigned i;
2458 if (!*visited)
2459 *visited = BITMAP_ALLOC (NULL);
2460 for (i = 0; i < gimple_phi_num_args (def_stmt); ++i)
2461 cnt += walk_aliased_vdefs_1 (ref, gimple_phi_arg_def (def_stmt, i),
2462 walker, data, visited, 0);
2463 return cnt;
2464 }
2465
2466 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
2467 cnt++;
2468 if ((!ref
2469 || stmt_may_clobber_ref_p_1 (def_stmt, ref))
2470 && (*walker) (ref, vdef, data))
2471 return cnt;
2472
2473 vdef = gimple_vuse (def_stmt);
2474 }
2475 while (1);
2476 }
2477
2478 unsigned int
2479 walk_aliased_vdefs (ao_ref *ref, tree vdef,
2480 bool (*walker)(ao_ref *, tree, void *), void *data,
2481 bitmap *visited)
2482 {
2483 bitmap local_visited = NULL;
2484 unsigned int ret;
2485
2486 timevar_push (TV_ALIAS_STMT_WALK);
2487
2488 ret = walk_aliased_vdefs_1 (ref, vdef, walker, data,
2489 visited ? visited : &local_visited, 0);
2490 if (local_visited)
2491 BITMAP_FREE (local_visited);
2492
2493 timevar_pop (TV_ALIAS_STMT_WALK);
2494
2495 return ret;
2496 }
2497