re PR tree-optimization/50522 (C++ std::valarray vectorization missed optimization)
[gcc.git] / gcc / tree-ssa-alias.c
1 /* Alias analysis for trees.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
3 Free Software Foundation, Inc.
4 Contributed by Diego Novillo <dnovillo@redhat.com>
5
6 This file is part of GCC.
7
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.
12
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.
17
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/>. */
21
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 "target.h"
29 #include "basic-block.h"
30 #include "timevar.h"
31 #include "ggc.h"
32 #include "langhooks.h"
33 #include "flags.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 "vec.h"
44 #include "bitmap.h"
45 #include "vecprim.h"
46 #include "pointer-set.h"
47 #include "alloc-pool.h"
48 #include "tree-ssa-alias.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 /* If the decl can be used as a restrict tag and we have a restrict
223 pointer and that pointers points-to set doesn't contain this decl
224 then they can't alias. */
225 if (DECL_RESTRICTED_P (decl)
226 && pi->pt.vars_contains_restrict)
227 return bitmap_bit_p (pi->pt.vars, DECL_PT_UID (decl));
228
229 return pt_solution_includes (&pi->pt, decl);
230 }
231
232 /* Return true if dereferenced PTR1 and PTR2 may alias.
233 The caller is responsible for applying TBAA to see if accesses
234 through PTR1 and PTR2 may conflict at all. */
235
236 bool
237 ptr_derefs_may_alias_p (tree ptr1, tree ptr2)
238 {
239 struct ptr_info_def *pi1, *pi2;
240
241 /* Conversions are irrelevant for points-to information and
242 data-dependence analysis can feed us those. */
243 STRIP_NOPS (ptr1);
244 STRIP_NOPS (ptr2);
245
246 /* Anything we do not explicilty handle aliases. */
247 if ((TREE_CODE (ptr1) != SSA_NAME
248 && TREE_CODE (ptr1) != ADDR_EXPR
249 && TREE_CODE (ptr1) != POINTER_PLUS_EXPR)
250 || (TREE_CODE (ptr2) != SSA_NAME
251 && TREE_CODE (ptr2) != ADDR_EXPR
252 && TREE_CODE (ptr2) != POINTER_PLUS_EXPR)
253 || !POINTER_TYPE_P (TREE_TYPE (ptr1))
254 || !POINTER_TYPE_P (TREE_TYPE (ptr2)))
255 return true;
256
257 /* Disregard pointer offsetting. */
258 if (TREE_CODE (ptr1) == POINTER_PLUS_EXPR)
259 {
260 do
261 {
262 ptr1 = TREE_OPERAND (ptr1, 0);
263 }
264 while (TREE_CODE (ptr1) == POINTER_PLUS_EXPR);
265 return ptr_derefs_may_alias_p (ptr1, ptr2);
266 }
267 if (TREE_CODE (ptr2) == POINTER_PLUS_EXPR)
268 {
269 do
270 {
271 ptr2 = TREE_OPERAND (ptr2, 0);
272 }
273 while (TREE_CODE (ptr2) == POINTER_PLUS_EXPR);
274 return ptr_derefs_may_alias_p (ptr1, ptr2);
275 }
276
277 /* ADDR_EXPR pointers either just offset another pointer or directly
278 specify the pointed-to set. */
279 if (TREE_CODE (ptr1) == ADDR_EXPR)
280 {
281 tree base = get_base_address (TREE_OPERAND (ptr1, 0));
282 if (base
283 && (TREE_CODE (base) == MEM_REF
284 || TREE_CODE (base) == TARGET_MEM_REF))
285 ptr1 = TREE_OPERAND (base, 0);
286 else if (base
287 && DECL_P (base))
288 return ptr_deref_may_alias_decl_p (ptr2, base);
289 else
290 return true;
291 }
292 if (TREE_CODE (ptr2) == ADDR_EXPR)
293 {
294 tree base = get_base_address (TREE_OPERAND (ptr2, 0));
295 if (base
296 && (TREE_CODE (base) == MEM_REF
297 || TREE_CODE (base) == TARGET_MEM_REF))
298 ptr2 = TREE_OPERAND (base, 0);
299 else if (base
300 && DECL_P (base))
301 return ptr_deref_may_alias_decl_p (ptr1, base);
302 else
303 return true;
304 }
305
306 /* We may end up with two empty points-to solutions for two same pointers.
307 In this case we still want to say both pointers alias, so shortcut
308 that here. */
309 if (ptr1 == ptr2)
310 return true;
311
312 /* If we do not have useful points-to information for either pointer
313 we cannot disambiguate anything else. */
314 pi1 = SSA_NAME_PTR_INFO (ptr1);
315 pi2 = SSA_NAME_PTR_INFO (ptr2);
316 if (!pi1 || !pi2)
317 return true;
318
319 /* If both pointers are restrict-qualified try to disambiguate
320 with restrict information. */
321 if (!pt_solutions_same_restrict_base (&pi1->pt, &pi2->pt))
322 return false;
323
324 /* ??? This does not use TBAA to prune decls from the intersection
325 that not both pointers may access. */
326 return pt_solutions_intersect (&pi1->pt, &pi2->pt);
327 }
328
329 /* Return true if dereferencing PTR may alias *REF.
330 The caller is responsible for applying TBAA to see if PTR
331 may access *REF at all. */
332
333 static bool
334 ptr_deref_may_alias_ref_p_1 (tree ptr, ao_ref *ref)
335 {
336 tree base = ao_ref_base (ref);
337
338 if (TREE_CODE (base) == MEM_REF
339 || TREE_CODE (base) == TARGET_MEM_REF)
340 return ptr_derefs_may_alias_p (ptr, TREE_OPERAND (base, 0));
341 else if (DECL_P (base))
342 return ptr_deref_may_alias_decl_p (ptr, base);
343
344 return true;
345 }
346
347
348 /* Dump alias information on FILE. */
349
350 void
351 dump_alias_info (FILE *file)
352 {
353 size_t i;
354 const char *funcname
355 = lang_hooks.decl_printable_name (current_function_decl, 2);
356 referenced_var_iterator rvi;
357 tree var;
358
359 fprintf (file, "\n\nAlias information for %s\n\n", funcname);
360
361 fprintf (file, "Aliased symbols\n\n");
362
363 FOR_EACH_REFERENCED_VAR (cfun, var, rvi)
364 {
365 if (may_be_aliased (var))
366 dump_variable (file, var);
367 }
368
369 fprintf (file, "\nCall clobber information\n");
370
371 fprintf (file, "\nESCAPED");
372 dump_points_to_solution (file, &cfun->gimple_df->escaped);
373
374 fprintf (file, "\n\nFlow-insensitive points-to information\n\n");
375
376 for (i = 1; i < num_ssa_names; i++)
377 {
378 tree ptr = ssa_name (i);
379 struct ptr_info_def *pi;
380
381 if (ptr == NULL_TREE
382 || SSA_NAME_IN_FREE_LIST (ptr))
383 continue;
384
385 pi = SSA_NAME_PTR_INFO (ptr);
386 if (pi)
387 dump_points_to_info_for (file, ptr);
388 }
389
390 fprintf (file, "\n");
391 }
392
393
394 /* Dump alias information on stderr. */
395
396 DEBUG_FUNCTION void
397 debug_alias_info (void)
398 {
399 dump_alias_info (stderr);
400 }
401
402
403 /* Dump the points-to set *PT into FILE. */
404
405 void
406 dump_points_to_solution (FILE *file, struct pt_solution *pt)
407 {
408 if (pt->anything)
409 fprintf (file, ", points-to anything");
410
411 if (pt->nonlocal)
412 fprintf (file, ", points-to non-local");
413
414 if (pt->escaped)
415 fprintf (file, ", points-to escaped");
416
417 if (pt->ipa_escaped)
418 fprintf (file, ", points-to unit escaped");
419
420 if (pt->null)
421 fprintf (file, ", points-to NULL");
422
423 if (pt->vars)
424 {
425 fprintf (file, ", points-to vars: ");
426 dump_decl_set (file, pt->vars);
427 if (pt->vars_contains_global)
428 fprintf (file, " (includes global vars)");
429 if (pt->vars_contains_restrict)
430 fprintf (file, " (includes restrict tags)");
431 }
432 }
433
434 /* Dump points-to information for SSA_NAME PTR into FILE. */
435
436 void
437 dump_points_to_info_for (FILE *file, tree ptr)
438 {
439 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (ptr);
440
441 print_generic_expr (file, ptr, dump_flags);
442
443 if (pi)
444 dump_points_to_solution (file, &pi->pt);
445 else
446 fprintf (file, ", points-to anything");
447
448 fprintf (file, "\n");
449 }
450
451
452 /* Dump points-to information for VAR into stderr. */
453
454 DEBUG_FUNCTION void
455 debug_points_to_info_for (tree var)
456 {
457 dump_points_to_info_for (stderr, var);
458 }
459
460
461 /* Initializes the alias-oracle reference representation *R from REF. */
462
463 void
464 ao_ref_init (ao_ref *r, tree ref)
465 {
466 r->ref = ref;
467 r->base = NULL_TREE;
468 r->offset = 0;
469 r->size = -1;
470 r->max_size = -1;
471 r->ref_alias_set = -1;
472 r->base_alias_set = -1;
473 }
474
475 /* Returns the base object of the memory reference *REF. */
476
477 tree
478 ao_ref_base (ao_ref *ref)
479 {
480 if (ref->base)
481 return ref->base;
482 ref->base = get_ref_base_and_extent (ref->ref, &ref->offset, &ref->size,
483 &ref->max_size);
484 return ref->base;
485 }
486
487 /* Returns the base object alias set of the memory reference *REF. */
488
489 static alias_set_type
490 ao_ref_base_alias_set (ao_ref *ref)
491 {
492 tree base_ref;
493 if (ref->base_alias_set != -1)
494 return ref->base_alias_set;
495 if (!ref->ref)
496 return 0;
497 base_ref = ref->ref;
498 while (handled_component_p (base_ref))
499 base_ref = TREE_OPERAND (base_ref, 0);
500 ref->base_alias_set = get_alias_set (base_ref);
501 return ref->base_alias_set;
502 }
503
504 /* Returns the reference alias set of the memory reference *REF. */
505
506 alias_set_type
507 ao_ref_alias_set (ao_ref *ref)
508 {
509 if (ref->ref_alias_set != -1)
510 return ref->ref_alias_set;
511 ref->ref_alias_set = get_alias_set (ref->ref);
512 return ref->ref_alias_set;
513 }
514
515 /* Init an alias-oracle reference representation from a gimple pointer
516 PTR and a gimple size SIZE in bytes. If SIZE is NULL_TREE the the
517 size is assumed to be unknown. The access is assumed to be only
518 to or after of the pointer target, not before it. */
519
520 void
521 ao_ref_init_from_ptr_and_size (ao_ref *ref, tree ptr, tree size)
522 {
523 HOST_WIDE_INT t1, t2;
524 ref->ref = NULL_TREE;
525 if (TREE_CODE (ptr) == ADDR_EXPR)
526 ref->base = get_ref_base_and_extent (TREE_OPERAND (ptr, 0),
527 &ref->offset, &t1, &t2);
528 else
529 {
530 ref->base = build2 (MEM_REF, char_type_node,
531 ptr, null_pointer_node);
532 ref->offset = 0;
533 }
534 if (size
535 && host_integerp (size, 0)
536 && TREE_INT_CST_LOW (size) * 8 / 8 == TREE_INT_CST_LOW (size))
537 ref->max_size = ref->size = TREE_INT_CST_LOW (size) * 8;
538 else
539 ref->max_size = ref->size = -1;
540 ref->ref_alias_set = 0;
541 ref->base_alias_set = 0;
542 }
543
544 /* Return 1 if TYPE1 and TYPE2 are to be considered equivalent for the
545 purpose of TBAA. Return 0 if they are distinct and -1 if we cannot
546 decide. */
547
548 static inline int
549 same_type_for_tbaa (tree type1, tree type2)
550 {
551 type1 = TYPE_MAIN_VARIANT (type1);
552 type2 = TYPE_MAIN_VARIANT (type2);
553
554 /* If we would have to do structural comparison bail out. */
555 if (TYPE_STRUCTURAL_EQUALITY_P (type1)
556 || TYPE_STRUCTURAL_EQUALITY_P (type2))
557 return -1;
558
559 /* Compare the canonical types. */
560 if (TYPE_CANONICAL (type1) == TYPE_CANONICAL (type2))
561 return 1;
562
563 /* ??? Array types are not properly unified in all cases as we have
564 spurious changes in the index types for example. Removing this
565 causes all sorts of problems with the Fortran frontend. */
566 if (TREE_CODE (type1) == ARRAY_TYPE
567 && TREE_CODE (type2) == ARRAY_TYPE)
568 return -1;
569
570 /* ??? In Ada, an lvalue of an unconstrained type can be used to access an
571 object of one of its constrained subtypes, e.g. when a function with an
572 unconstrained parameter passed by reference is called on an object and
573 inlined. But, even in the case of a fixed size, type and subtypes are
574 not equivalent enough as to share the same TYPE_CANONICAL, since this
575 would mean that conversions between them are useless, whereas they are
576 not (e.g. type and subtypes can have different modes). So, in the end,
577 they are only guaranteed to have the same alias set. */
578 if (get_alias_set (type1) == get_alias_set (type2))
579 return -1;
580
581 /* The types are known to be not equal. */
582 return 0;
583 }
584
585 /* Determine if the two component references REF1 and REF2 which are
586 based on access types TYPE1 and TYPE2 and of which at least one is based
587 on an indirect reference may alias. REF2 is the only one that can
588 be a decl in which case REF2_IS_DECL is true.
589 REF1_ALIAS_SET, BASE1_ALIAS_SET, REF2_ALIAS_SET and BASE2_ALIAS_SET
590 are the respective alias sets. */
591
592 static bool
593 aliasing_component_refs_p (tree ref1,
594 alias_set_type ref1_alias_set,
595 alias_set_type base1_alias_set,
596 HOST_WIDE_INT offset1, HOST_WIDE_INT max_size1,
597 tree ref2,
598 alias_set_type ref2_alias_set,
599 alias_set_type base2_alias_set,
600 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2,
601 bool ref2_is_decl)
602 {
603 /* If one reference is a component references through pointers try to find a
604 common base and apply offset based disambiguation. This handles
605 for example
606 struct A { int i; int j; } *q;
607 struct B { struct A a; int k; } *p;
608 disambiguating q->i and p->a.j. */
609 tree base1, base2;
610 tree type1, type2;
611 tree *refp;
612 int same_p;
613
614 /* Choose bases and base types to search for. */
615 base1 = ref1;
616 while (handled_component_p (base1))
617 base1 = TREE_OPERAND (base1, 0);
618 type1 = TREE_TYPE (base1);
619 base2 = ref2;
620 while (handled_component_p (base2))
621 base2 = TREE_OPERAND (base2, 0);
622 type2 = TREE_TYPE (base2);
623
624 /* Now search for the type1 in the access path of ref2. This
625 would be a common base for doing offset based disambiguation on. */
626 refp = &ref2;
627 while (handled_component_p (*refp)
628 && same_type_for_tbaa (TREE_TYPE (*refp), type1) == 0)
629 refp = &TREE_OPERAND (*refp, 0);
630 same_p = same_type_for_tbaa (TREE_TYPE (*refp), type1);
631 /* If we couldn't compare types we have to bail out. */
632 if (same_p == -1)
633 return true;
634 else if (same_p == 1)
635 {
636 HOST_WIDE_INT offadj, sztmp, msztmp;
637 get_ref_base_and_extent (*refp, &offadj, &sztmp, &msztmp);
638 offset2 -= offadj;
639 get_ref_base_and_extent (base1, &offadj, &sztmp, &msztmp);
640 offset1 -= offadj;
641 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
642 }
643 /* If we didn't find a common base, try the other way around. */
644 refp = &ref1;
645 while (handled_component_p (*refp)
646 && same_type_for_tbaa (TREE_TYPE (*refp), type2) == 0)
647 refp = &TREE_OPERAND (*refp, 0);
648 same_p = same_type_for_tbaa (TREE_TYPE (*refp), type2);
649 /* If we couldn't compare types we have to bail out. */
650 if (same_p == -1)
651 return true;
652 else if (same_p == 1)
653 {
654 HOST_WIDE_INT offadj, sztmp, msztmp;
655 get_ref_base_and_extent (*refp, &offadj, &sztmp, &msztmp);
656 offset1 -= offadj;
657 get_ref_base_and_extent (base2, &offadj, &sztmp, &msztmp);
658 offset2 -= offadj;
659 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
660 }
661
662 /* If we have two type access paths B1.path1 and B2.path2 they may
663 only alias if either B1 is in B2.path2 or B2 is in B1.path1.
664 But we can still have a path that goes B1.path1...B2.path2 with
665 a part that we do not see. So we can only disambiguate now
666 if there is no B2 in the tail of path1 and no B1 on the
667 tail of path2. */
668 if (base1_alias_set == ref2_alias_set
669 || alias_set_subset_of (base1_alias_set, ref2_alias_set))
670 return true;
671 /* If this is ptr vs. decl then we know there is no ptr ... decl path. */
672 if (!ref2_is_decl)
673 return (base2_alias_set == ref1_alias_set
674 || alias_set_subset_of (base2_alias_set, ref1_alias_set));
675 return false;
676 }
677
678 /* Return true if two memory references based on the variables BASE1
679 and BASE2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
680 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. */
681
682 static bool
683 decl_refs_may_alias_p (tree base1,
684 HOST_WIDE_INT offset1, HOST_WIDE_INT max_size1,
685 tree base2,
686 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2)
687 {
688 gcc_checking_assert (DECL_P (base1) && DECL_P (base2));
689
690 /* If both references are based on different variables, they cannot alias. */
691 if (base1 != base2)
692 return false;
693
694 /* If both references are based on the same variable, they cannot alias if
695 the accesses do not overlap. */
696 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
697 }
698
699 /* Return true if an indirect reference based on *PTR1 constrained
700 to [OFFSET1, OFFSET1 + MAX_SIZE1) may alias a variable based on BASE2
701 constrained to [OFFSET2, OFFSET2 + MAX_SIZE2). *PTR1 and BASE2 have
702 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
703 in which case they are computed on-demand. REF1 and REF2
704 if non-NULL are the complete memory reference trees. */
705
706 static bool
707 indirect_ref_may_alias_decl_p (tree ref1 ATTRIBUTE_UNUSED, tree base1,
708 HOST_WIDE_INT offset1,
709 HOST_WIDE_INT max_size1 ATTRIBUTE_UNUSED,
710 alias_set_type ref1_alias_set,
711 alias_set_type base1_alias_set,
712 tree ref2 ATTRIBUTE_UNUSED, tree base2,
713 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2,
714 alias_set_type ref2_alias_set,
715 alias_set_type base2_alias_set, bool tbaa_p)
716 {
717 tree ptr1;
718 tree ptrtype1, dbase2;
719 HOST_WIDE_INT offset1p = offset1, offset2p = offset2;
720 HOST_WIDE_INT doffset1, doffset2;
721 double_int moff;
722
723 gcc_checking_assert ((TREE_CODE (base1) == MEM_REF
724 || TREE_CODE (base1) == TARGET_MEM_REF)
725 && DECL_P (base2));
726
727 ptr1 = TREE_OPERAND (base1, 0);
728
729 /* The offset embedded in MEM_REFs can be negative. Bias them
730 so that the resulting offset adjustment is positive. */
731 moff = mem_ref_offset (base1);
732 moff = double_int_lshift (moff,
733 BITS_PER_UNIT == 8
734 ? 3 : exact_log2 (BITS_PER_UNIT),
735 HOST_BITS_PER_DOUBLE_INT, true);
736 if (double_int_negative_p (moff))
737 offset2p += double_int_neg (moff).low;
738 else
739 offset1p += moff.low;
740
741 /* If only one reference is based on a variable, they cannot alias if
742 the pointer access is beyond the extent of the variable access.
743 (the pointer base cannot validly point to an offset less than zero
744 of the variable).
745 ??? IVOPTs creates bases that do not honor this restriction,
746 so do not apply this optimization for TARGET_MEM_REFs. */
747 if (TREE_CODE (base1) != TARGET_MEM_REF
748 && !ranges_overlap_p (MAX (0, offset1p), -1, offset2p, max_size2))
749 return false;
750 /* They also cannot alias if the pointer may not point to the decl. */
751 if (!ptr_deref_may_alias_decl_p (ptr1, base2))
752 return false;
753
754 /* Disambiguations that rely on strict aliasing rules follow. */
755 if (!flag_strict_aliasing || !tbaa_p)
756 return true;
757
758 ptrtype1 = TREE_TYPE (TREE_OPERAND (base1, 1));
759
760 /* If the alias set for a pointer access is zero all bets are off. */
761 if (base1_alias_set == -1)
762 base1_alias_set = get_deref_alias_set (ptrtype1);
763 if (base1_alias_set == 0)
764 return true;
765 if (base2_alias_set == -1)
766 base2_alias_set = get_alias_set (base2);
767
768 /* When we are trying to disambiguate an access with a pointer dereference
769 as base versus one with a decl as base we can use both the size
770 of the decl and its dynamic type for extra disambiguation.
771 ??? We do not know anything about the dynamic type of the decl
772 other than that its alias-set contains base2_alias_set as a subset
773 which does not help us here. */
774 /* As we know nothing useful about the dynamic type of the decl just
775 use the usual conflict check rather than a subset test.
776 ??? We could introduce -fvery-strict-aliasing when the language
777 does not allow decls to have a dynamic type that differs from their
778 static type. Then we can check
779 !alias_set_subset_of (base1_alias_set, base2_alias_set) instead. */
780 if (base1_alias_set != base2_alias_set
781 && !alias_sets_conflict_p (base1_alias_set, base2_alias_set))
782 return false;
783 /* If the size of the access relevant for TBAA through the pointer
784 is bigger than the size of the decl we can't possibly access the
785 decl via that pointer. */
786 if (DECL_SIZE (base2) && COMPLETE_TYPE_P (TREE_TYPE (ptrtype1))
787 && TREE_CODE (DECL_SIZE (base2)) == INTEGER_CST
788 && TREE_CODE (TYPE_SIZE (TREE_TYPE (ptrtype1))) == INTEGER_CST
789 /* ??? This in turn may run afoul when a decl of type T which is
790 a member of union type U is accessed through a pointer to
791 type U and sizeof T is smaller than sizeof U. */
792 && TREE_CODE (TREE_TYPE (ptrtype1)) != UNION_TYPE
793 && TREE_CODE (TREE_TYPE (ptrtype1)) != QUAL_UNION_TYPE
794 && tree_int_cst_lt (DECL_SIZE (base2), TYPE_SIZE (TREE_TYPE (ptrtype1))))
795 return false;
796
797 if (!ref2)
798 return true;
799
800 /* If the decl is accessed via a MEM_REF, reconstruct the base
801 we can use for TBAA and an appropriately adjusted offset. */
802 dbase2 = ref2;
803 while (handled_component_p (dbase2))
804 dbase2 = TREE_OPERAND (dbase2, 0);
805 doffset1 = offset1;
806 doffset2 = offset2;
807 if (TREE_CODE (dbase2) == MEM_REF
808 || TREE_CODE (dbase2) == TARGET_MEM_REF)
809 {
810 double_int moff = mem_ref_offset (dbase2);
811 moff = double_int_lshift (moff,
812 BITS_PER_UNIT == 8
813 ? 3 : exact_log2 (BITS_PER_UNIT),
814 HOST_BITS_PER_DOUBLE_INT, true);
815 if (double_int_negative_p (moff))
816 doffset1 -= double_int_neg (moff).low;
817 else
818 doffset2 -= moff.low;
819 }
820
821 /* If either reference is view-converted, give up now. */
822 if (same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) != 1
823 || same_type_for_tbaa (TREE_TYPE (dbase2),
824 TREE_TYPE (reference_alias_ptr_type (dbase2))) != 1)
825 return true;
826
827 /* If both references are through the same type, they do not alias
828 if the accesses do not overlap. This does extra disambiguation
829 for mixed/pointer accesses but requires strict aliasing.
830 For MEM_REFs we require that the component-ref offset we computed
831 is relative to the start of the type which we ensure by
832 comparing rvalue and access type and disregarding the constant
833 pointer offset. */
834 if ((TREE_CODE (base1) != TARGET_MEM_REF
835 || (!TMR_INDEX (base1) && !TMR_INDEX2 (base1)))
836 && same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (dbase2)) == 1)
837 return ranges_overlap_p (doffset1, max_size1, doffset2, max_size2);
838
839 /* Do access-path based disambiguation. */
840 if (ref1 && ref2
841 && (handled_component_p (ref1) || handled_component_p (ref2)))
842 return aliasing_component_refs_p (ref1,
843 ref1_alias_set, base1_alias_set,
844 offset1, max_size1,
845 ref2,
846 ref2_alias_set, base2_alias_set,
847 offset2, max_size2, true);
848
849 return true;
850 }
851
852 /* Return true if two indirect references based on *PTR1
853 and *PTR2 constrained to [OFFSET1, OFFSET1 + MAX_SIZE1) and
854 [OFFSET2, OFFSET2 + MAX_SIZE2) may alias. *PTR1 and *PTR2 have
855 the alias sets BASE1_ALIAS_SET and BASE2_ALIAS_SET which can be -1
856 in which case they are computed on-demand. REF1 and REF2
857 if non-NULL are the complete memory reference trees. */
858
859 static bool
860 indirect_refs_may_alias_p (tree ref1 ATTRIBUTE_UNUSED, tree base1,
861 HOST_WIDE_INT offset1, HOST_WIDE_INT max_size1,
862 alias_set_type ref1_alias_set,
863 alias_set_type base1_alias_set,
864 tree ref2 ATTRIBUTE_UNUSED, tree base2,
865 HOST_WIDE_INT offset2, HOST_WIDE_INT max_size2,
866 alias_set_type ref2_alias_set,
867 alias_set_type base2_alias_set, bool tbaa_p)
868 {
869 tree ptr1;
870 tree ptr2;
871 tree ptrtype1, ptrtype2;
872
873 gcc_checking_assert ((TREE_CODE (base1) == MEM_REF
874 || TREE_CODE (base1) == TARGET_MEM_REF)
875 && (TREE_CODE (base2) == MEM_REF
876 || TREE_CODE (base2) == TARGET_MEM_REF));
877
878 ptr1 = TREE_OPERAND (base1, 0);
879 ptr2 = TREE_OPERAND (base2, 0);
880
881 /* If both bases are based on pointers they cannot alias if they may not
882 point to the same memory object or if they point to the same object
883 and the accesses do not overlap. */
884 if ((!cfun || gimple_in_ssa_p (cfun))
885 && operand_equal_p (ptr1, ptr2, 0)
886 && (((TREE_CODE (base1) != TARGET_MEM_REF
887 || (!TMR_INDEX (base1) && !TMR_INDEX2 (base1)))
888 && (TREE_CODE (base2) != TARGET_MEM_REF
889 || (!TMR_INDEX (base2) && !TMR_INDEX2 (base2))))
890 || (TREE_CODE (base1) == TARGET_MEM_REF
891 && TREE_CODE (base2) == TARGET_MEM_REF
892 && (TMR_STEP (base1) == TMR_STEP (base2)
893 || (TMR_STEP (base1) && TMR_STEP (base2)
894 && operand_equal_p (TMR_STEP (base1),
895 TMR_STEP (base2), 0)))
896 && (TMR_INDEX (base1) == TMR_INDEX (base2)
897 || (TMR_INDEX (base1) && TMR_INDEX (base2)
898 && operand_equal_p (TMR_INDEX (base1),
899 TMR_INDEX (base2), 0)))
900 && (TMR_INDEX2 (base1) == TMR_INDEX2 (base2)
901 || (TMR_INDEX2 (base1) && TMR_INDEX2 (base2)
902 && operand_equal_p (TMR_INDEX2 (base1),
903 TMR_INDEX2 (base2), 0))))))
904 {
905 double_int moff;
906 /* The offset embedded in MEM_REFs can be negative. Bias them
907 so that the resulting offset adjustment is positive. */
908 moff = mem_ref_offset (base1);
909 moff = double_int_lshift (moff,
910 BITS_PER_UNIT == 8
911 ? 3 : exact_log2 (BITS_PER_UNIT),
912 HOST_BITS_PER_DOUBLE_INT, true);
913 if (double_int_negative_p (moff))
914 offset2 += double_int_neg (moff).low;
915 else
916 offset1 += moff.low;
917 moff = mem_ref_offset (base2);
918 moff = double_int_lshift (moff,
919 BITS_PER_UNIT == 8
920 ? 3 : exact_log2 (BITS_PER_UNIT),
921 HOST_BITS_PER_DOUBLE_INT, true);
922 if (double_int_negative_p (moff))
923 offset1 += double_int_neg (moff).low;
924 else
925 offset2 += moff.low;
926 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
927 }
928 if (!ptr_derefs_may_alias_p (ptr1, ptr2))
929 return false;
930
931 /* Disambiguations that rely on strict aliasing rules follow. */
932 if (!flag_strict_aliasing || !tbaa_p)
933 return true;
934
935 ptrtype1 = TREE_TYPE (TREE_OPERAND (base1, 1));
936 ptrtype2 = TREE_TYPE (TREE_OPERAND (base2, 1));
937
938 /* If the alias set for a pointer access is zero all bets are off. */
939 if (base1_alias_set == -1)
940 base1_alias_set = get_deref_alias_set (ptrtype1);
941 if (base1_alias_set == 0)
942 return true;
943 if (base2_alias_set == -1)
944 base2_alias_set = get_deref_alias_set (ptrtype2);
945 if (base2_alias_set == 0)
946 return true;
947
948 /* If both references are through the same type, they do not alias
949 if the accesses do not overlap. This does extra disambiguation
950 for mixed/pointer accesses but requires strict aliasing. */
951 if ((TREE_CODE (base1) != TARGET_MEM_REF
952 || (!TMR_INDEX (base1) && !TMR_INDEX2 (base1)))
953 && (TREE_CODE (base2) != TARGET_MEM_REF
954 || (!TMR_INDEX (base2) && !TMR_INDEX2 (base2)))
955 && same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) == 1
956 && same_type_for_tbaa (TREE_TYPE (base2), TREE_TYPE (ptrtype2)) == 1
957 && same_type_for_tbaa (TREE_TYPE (ptrtype1),
958 TREE_TYPE (ptrtype2)) == 1)
959 return ranges_overlap_p (offset1, max_size1, offset2, max_size2);
960
961 /* Do type-based disambiguation. */
962 if (base1_alias_set != base2_alias_set
963 && !alias_sets_conflict_p (base1_alias_set, base2_alias_set))
964 return false;
965
966 /* Do access-path based disambiguation. */
967 if (ref1 && ref2
968 && (handled_component_p (ref1) || handled_component_p (ref2))
969 && same_type_for_tbaa (TREE_TYPE (base1), TREE_TYPE (ptrtype1)) == 1
970 && same_type_for_tbaa (TREE_TYPE (base2), TREE_TYPE (ptrtype2)) == 1)
971 return aliasing_component_refs_p (ref1,
972 ref1_alias_set, base1_alias_set,
973 offset1, max_size1,
974 ref2,
975 ref2_alias_set, base2_alias_set,
976 offset2, max_size2, false);
977
978 return true;
979 }
980
981 /* Return true, if the two memory references REF1 and REF2 may alias. */
982
983 bool
984 refs_may_alias_p_1 (ao_ref *ref1, ao_ref *ref2, bool tbaa_p)
985 {
986 tree base1, base2;
987 HOST_WIDE_INT offset1 = 0, offset2 = 0;
988 HOST_WIDE_INT max_size1 = -1, max_size2 = -1;
989 bool var1_p, var2_p, ind1_p, ind2_p;
990
991 gcc_checking_assert ((!ref1->ref
992 || TREE_CODE (ref1->ref) == SSA_NAME
993 || DECL_P (ref1->ref)
994 || TREE_CODE (ref1->ref) == STRING_CST
995 || handled_component_p (ref1->ref)
996 || TREE_CODE (ref1->ref) == MEM_REF
997 || TREE_CODE (ref1->ref) == TARGET_MEM_REF)
998 && (!ref2->ref
999 || TREE_CODE (ref2->ref) == SSA_NAME
1000 || DECL_P (ref2->ref)
1001 || TREE_CODE (ref2->ref) == STRING_CST
1002 || handled_component_p (ref2->ref)
1003 || TREE_CODE (ref2->ref) == MEM_REF
1004 || TREE_CODE (ref2->ref) == TARGET_MEM_REF));
1005
1006 /* Decompose the references into their base objects and the access. */
1007 base1 = ao_ref_base (ref1);
1008 offset1 = ref1->offset;
1009 max_size1 = ref1->max_size;
1010 base2 = ao_ref_base (ref2);
1011 offset2 = ref2->offset;
1012 max_size2 = ref2->max_size;
1013
1014 /* We can end up with registers or constants as bases for example from
1015 *D.1663_44 = VIEW_CONVERT_EXPR<struct DB_LSN>(__tmp$B0F64_59);
1016 which is seen as a struct copy. */
1017 if (TREE_CODE (base1) == SSA_NAME
1018 || TREE_CODE (base1) == CONST_DECL
1019 || TREE_CODE (base1) == CONSTRUCTOR
1020 || TREE_CODE (base1) == ADDR_EXPR
1021 || CONSTANT_CLASS_P (base1)
1022 || TREE_CODE (base2) == SSA_NAME
1023 || TREE_CODE (base2) == CONST_DECL
1024 || TREE_CODE (base2) == CONSTRUCTOR
1025 || TREE_CODE (base2) == ADDR_EXPR
1026 || CONSTANT_CLASS_P (base2))
1027 return false;
1028
1029 /* We can end up refering to code via function and label decls.
1030 As we likely do not properly track code aliases conservatively
1031 bail out. */
1032 if (TREE_CODE (base1) == FUNCTION_DECL
1033 || TREE_CODE (base1) == LABEL_DECL
1034 || TREE_CODE (base2) == FUNCTION_DECL
1035 || TREE_CODE (base2) == LABEL_DECL)
1036 return true;
1037
1038 /* Defer to simple offset based disambiguation if we have
1039 references based on two decls. Do this before defering to
1040 TBAA to handle must-alias cases in conformance with the
1041 GCC extension of allowing type-punning through unions. */
1042 var1_p = DECL_P (base1);
1043 var2_p = DECL_P (base2);
1044 if (var1_p && var2_p)
1045 return decl_refs_may_alias_p (base1, offset1, max_size1,
1046 base2, offset2, max_size2);
1047
1048 ind1_p = (TREE_CODE (base1) == MEM_REF
1049 || TREE_CODE (base1) == TARGET_MEM_REF);
1050 ind2_p = (TREE_CODE (base2) == MEM_REF
1051 || TREE_CODE (base2) == TARGET_MEM_REF);
1052
1053 /* Canonicalize the pointer-vs-decl case. */
1054 if (ind1_p && var2_p)
1055 {
1056 HOST_WIDE_INT tmp1;
1057 tree tmp2;
1058 ao_ref *tmp3;
1059 tmp1 = offset1; offset1 = offset2; offset2 = tmp1;
1060 tmp1 = max_size1; max_size1 = max_size2; max_size2 = tmp1;
1061 tmp2 = base1; base1 = base2; base2 = tmp2;
1062 tmp3 = ref1; ref1 = ref2; ref2 = tmp3;
1063 var1_p = true;
1064 ind1_p = false;
1065 var2_p = false;
1066 ind2_p = true;
1067 }
1068
1069 /* First defer to TBAA if possible. */
1070 if (tbaa_p
1071 && flag_strict_aliasing
1072 && !alias_sets_conflict_p (ao_ref_alias_set (ref1),
1073 ao_ref_alias_set (ref2)))
1074 return false;
1075
1076 /* Dispatch to the pointer-vs-decl or pointer-vs-pointer disambiguators. */
1077 if (var1_p && ind2_p)
1078 return indirect_ref_may_alias_decl_p (ref2->ref, base2,
1079 offset2, max_size2,
1080 ao_ref_alias_set (ref2), -1,
1081 ref1->ref, base1,
1082 offset1, max_size1,
1083 ao_ref_alias_set (ref1),
1084 ao_ref_base_alias_set (ref1),
1085 tbaa_p);
1086 else if (ind1_p && ind2_p)
1087 return indirect_refs_may_alias_p (ref1->ref, base1,
1088 offset1, max_size1,
1089 ao_ref_alias_set (ref1), -1,
1090 ref2->ref, base2,
1091 offset2, max_size2,
1092 ao_ref_alias_set (ref2), -1,
1093 tbaa_p);
1094
1095 /* We really do not want to end up here, but returning true is safe. */
1096 #ifdef ENABLE_CHECKING
1097 gcc_unreachable ();
1098 #else
1099 return true;
1100 #endif
1101 }
1102
1103 bool
1104 refs_may_alias_p (tree ref1, tree ref2)
1105 {
1106 ao_ref r1, r2;
1107 bool res;
1108 ao_ref_init (&r1, ref1);
1109 ao_ref_init (&r2, ref2);
1110 res = refs_may_alias_p_1 (&r1, &r2, true);
1111 if (res)
1112 ++alias_stats.refs_may_alias_p_may_alias;
1113 else
1114 ++alias_stats.refs_may_alias_p_no_alias;
1115 return res;
1116 }
1117
1118 /* Returns true if there is a anti-dependence for the STORE that
1119 executes after the LOAD. */
1120
1121 bool
1122 refs_anti_dependent_p (tree load, tree store)
1123 {
1124 ao_ref r1, r2;
1125 ao_ref_init (&r1, load);
1126 ao_ref_init (&r2, store);
1127 return refs_may_alias_p_1 (&r1, &r2, false);
1128 }
1129
1130 /* Returns true if there is a output dependence for the stores
1131 STORE1 and STORE2. */
1132
1133 bool
1134 refs_output_dependent_p (tree store1, tree store2)
1135 {
1136 ao_ref r1, r2;
1137 ao_ref_init (&r1, store1);
1138 ao_ref_init (&r2, store2);
1139 return refs_may_alias_p_1 (&r1, &r2, false);
1140 }
1141
1142 /* If the call CALL may use the memory reference REF return true,
1143 otherwise return false. */
1144
1145 static bool
1146 ref_maybe_used_by_call_p_1 (gimple call, ao_ref *ref)
1147 {
1148 tree base, callee;
1149 unsigned i;
1150 int flags = gimple_call_flags (call);
1151
1152 /* Const functions without a static chain do not implicitly use memory. */
1153 if (!gimple_call_chain (call)
1154 && (flags & (ECF_CONST|ECF_NOVOPS)))
1155 goto process_args;
1156
1157 base = ao_ref_base (ref);
1158 if (!base)
1159 return true;
1160
1161 /* If the reference is based on a decl that is not aliased the call
1162 cannot possibly use it. */
1163 if (DECL_P (base)
1164 && !may_be_aliased (base)
1165 /* But local statics can be used through recursion. */
1166 && !is_global_var (base))
1167 goto process_args;
1168
1169 callee = gimple_call_fndecl (call);
1170
1171 /* Handle those builtin functions explicitly that do not act as
1172 escape points. See tree-ssa-structalias.c:find_func_aliases
1173 for the list of builtins we might need to handle here. */
1174 if (callee != NULL_TREE
1175 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
1176 switch (DECL_FUNCTION_CODE (callee))
1177 {
1178 /* All the following functions read memory pointed to by
1179 their second argument. strcat/strncat additionally
1180 reads memory pointed to by the first argument. */
1181 case BUILT_IN_STRCAT:
1182 case BUILT_IN_STRNCAT:
1183 {
1184 ao_ref dref;
1185 ao_ref_init_from_ptr_and_size (&dref,
1186 gimple_call_arg (call, 0),
1187 NULL_TREE);
1188 if (refs_may_alias_p_1 (&dref, ref, false))
1189 return true;
1190 }
1191 /* FALLTHRU */
1192 case BUILT_IN_STRCPY:
1193 case BUILT_IN_STRNCPY:
1194 case BUILT_IN_MEMCPY:
1195 case BUILT_IN_MEMMOVE:
1196 case BUILT_IN_MEMPCPY:
1197 case BUILT_IN_STPCPY:
1198 case BUILT_IN_STPNCPY:
1199 {
1200 ao_ref dref;
1201 tree size = NULL_TREE;
1202 if (gimple_call_num_args (call) == 3)
1203 size = gimple_call_arg (call, 2);
1204 ao_ref_init_from_ptr_and_size (&dref,
1205 gimple_call_arg (call, 1),
1206 size);
1207 return refs_may_alias_p_1 (&dref, ref, false);
1208 }
1209 case BUILT_IN_STRCAT_CHK:
1210 case BUILT_IN_STRNCAT_CHK:
1211 {
1212 ao_ref dref;
1213 ao_ref_init_from_ptr_and_size (&dref,
1214 gimple_call_arg (call, 0),
1215 NULL_TREE);
1216 if (refs_may_alias_p_1 (&dref, ref, false))
1217 return true;
1218 }
1219 /* FALLTHRU */
1220 case BUILT_IN_STRCPY_CHK:
1221 case BUILT_IN_STRNCPY_CHK:
1222 case BUILT_IN_MEMCPY_CHK:
1223 case BUILT_IN_MEMMOVE_CHK:
1224 case BUILT_IN_MEMPCPY_CHK:
1225 case BUILT_IN_STPCPY_CHK:
1226 {
1227 ao_ref dref;
1228 tree size = NULL_TREE;
1229 if (gimple_call_num_args (call) == 4)
1230 size = gimple_call_arg (call, 2);
1231 ao_ref_init_from_ptr_and_size (&dref,
1232 gimple_call_arg (call, 1),
1233 size);
1234 return refs_may_alias_p_1 (&dref, ref, false);
1235 }
1236 case BUILT_IN_BCOPY:
1237 {
1238 ao_ref dref;
1239 tree size = gimple_call_arg (call, 2);
1240 ao_ref_init_from_ptr_and_size (&dref,
1241 gimple_call_arg (call, 0),
1242 size);
1243 return refs_may_alias_p_1 (&dref, ref, false);
1244 }
1245 /* These read memory pointed to by the first argument. */
1246 case BUILT_IN_STRDUP:
1247 case BUILT_IN_STRNDUP:
1248 {
1249 ao_ref dref;
1250 tree size = NULL_TREE;
1251 if (gimple_call_num_args (call) == 2)
1252 size = gimple_call_arg (call, 1);
1253 ao_ref_init_from_ptr_and_size (&dref,
1254 gimple_call_arg (call, 0),
1255 size);
1256 return refs_may_alias_p_1 (&dref, ref, false);
1257 }
1258 /* The following builtins do not read from memory. */
1259 case BUILT_IN_FREE:
1260 case BUILT_IN_MALLOC:
1261 case BUILT_IN_CALLOC:
1262 case BUILT_IN_ALLOCA:
1263 case BUILT_IN_STACK_SAVE:
1264 case BUILT_IN_STACK_RESTORE:
1265 case BUILT_IN_MEMSET:
1266 case BUILT_IN_MEMSET_CHK:
1267 case BUILT_IN_FREXP:
1268 case BUILT_IN_FREXPF:
1269 case BUILT_IN_FREXPL:
1270 case BUILT_IN_GAMMA_R:
1271 case BUILT_IN_GAMMAF_R:
1272 case BUILT_IN_GAMMAL_R:
1273 case BUILT_IN_LGAMMA_R:
1274 case BUILT_IN_LGAMMAF_R:
1275 case BUILT_IN_LGAMMAL_R:
1276 case BUILT_IN_MODF:
1277 case BUILT_IN_MODFF:
1278 case BUILT_IN_MODFL:
1279 case BUILT_IN_REMQUO:
1280 case BUILT_IN_REMQUOF:
1281 case BUILT_IN_REMQUOL:
1282 case BUILT_IN_SINCOS:
1283 case BUILT_IN_SINCOSF:
1284 case BUILT_IN_SINCOSL:
1285 case BUILT_IN_ASSUME_ALIGNED:
1286 case BUILT_IN_VA_END:
1287 return false;
1288 /* __sync_* builtins and some OpenMP builtins act as threading
1289 barriers. */
1290 #undef DEF_SYNC_BUILTIN
1291 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) case ENUM:
1292 #include "sync-builtins.def"
1293 #undef DEF_SYNC_BUILTIN
1294 case BUILT_IN_GOMP_ATOMIC_START:
1295 case BUILT_IN_GOMP_ATOMIC_END:
1296 case BUILT_IN_GOMP_BARRIER:
1297 case BUILT_IN_GOMP_TASKWAIT:
1298 case BUILT_IN_GOMP_CRITICAL_START:
1299 case BUILT_IN_GOMP_CRITICAL_END:
1300 case BUILT_IN_GOMP_CRITICAL_NAME_START:
1301 case BUILT_IN_GOMP_CRITICAL_NAME_END:
1302 case BUILT_IN_GOMP_LOOP_END:
1303 case BUILT_IN_GOMP_ORDERED_START:
1304 case BUILT_IN_GOMP_ORDERED_END:
1305 case BUILT_IN_GOMP_PARALLEL_END:
1306 case BUILT_IN_GOMP_SECTIONS_END:
1307 case BUILT_IN_GOMP_SINGLE_COPY_START:
1308 case BUILT_IN_GOMP_SINGLE_COPY_END:
1309 return true;
1310
1311 default:
1312 /* Fallthru to general call handling. */;
1313 }
1314
1315 /* Check if base is a global static variable that is not read
1316 by the function. */
1317 if (callee != NULL_TREE
1318 && TREE_CODE (base) == VAR_DECL
1319 && TREE_STATIC (base))
1320 {
1321 struct cgraph_node *node = cgraph_get_node (callee);
1322 bitmap not_read;
1323
1324 /* FIXME: Callee can be an OMP builtin that does not have a call graph
1325 node yet. We should enforce that there are nodes for all decls in the
1326 IL and remove this check instead. */
1327 if (node
1328 && (not_read = ipa_reference_get_not_read_global (node))
1329 && bitmap_bit_p (not_read, DECL_UID (base)))
1330 goto process_args;
1331 }
1332
1333 /* Check if the base variable is call-used. */
1334 if (DECL_P (base))
1335 {
1336 if (pt_solution_includes (gimple_call_use_set (call), base))
1337 return true;
1338 }
1339 else if ((TREE_CODE (base) == MEM_REF
1340 || TREE_CODE (base) == TARGET_MEM_REF)
1341 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
1342 {
1343 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0));
1344 if (!pi)
1345 return true;
1346
1347 if (pt_solutions_intersect (gimple_call_use_set (call), &pi->pt))
1348 return true;
1349 }
1350 else
1351 return true;
1352
1353 /* Inspect call arguments for passed-by-value aliases. */
1354 process_args:
1355 for (i = 0; i < gimple_call_num_args (call); ++i)
1356 {
1357 tree op = gimple_call_arg (call, i);
1358 int flags = gimple_call_arg_flags (call, i);
1359
1360 if (flags & EAF_UNUSED)
1361 continue;
1362
1363 if (TREE_CODE (op) == WITH_SIZE_EXPR)
1364 op = TREE_OPERAND (op, 0);
1365
1366 if (TREE_CODE (op) != SSA_NAME
1367 && !is_gimple_min_invariant (op))
1368 {
1369 ao_ref r;
1370 ao_ref_init (&r, op);
1371 if (refs_may_alias_p_1 (&r, ref, true))
1372 return true;
1373 }
1374 }
1375
1376 return false;
1377 }
1378
1379 static bool
1380 ref_maybe_used_by_call_p (gimple call, tree ref)
1381 {
1382 ao_ref r;
1383 bool res;
1384 ao_ref_init (&r, ref);
1385 res = ref_maybe_used_by_call_p_1 (call, &r);
1386 if (res)
1387 ++alias_stats.ref_maybe_used_by_call_p_may_alias;
1388 else
1389 ++alias_stats.ref_maybe_used_by_call_p_no_alias;
1390 return res;
1391 }
1392
1393
1394 /* If the statement STMT may use the memory reference REF return
1395 true, otherwise return false. */
1396
1397 bool
1398 ref_maybe_used_by_stmt_p (gimple stmt, tree ref)
1399 {
1400 if (is_gimple_assign (stmt))
1401 {
1402 tree rhs;
1403
1404 /* All memory assign statements are single. */
1405 if (!gimple_assign_single_p (stmt))
1406 return false;
1407
1408 rhs = gimple_assign_rhs1 (stmt);
1409 if (is_gimple_reg (rhs)
1410 || is_gimple_min_invariant (rhs)
1411 || gimple_assign_rhs_code (stmt) == CONSTRUCTOR)
1412 return false;
1413
1414 return refs_may_alias_p (rhs, ref);
1415 }
1416 else if (is_gimple_call (stmt))
1417 return ref_maybe_used_by_call_p (stmt, ref);
1418 else if (gimple_code (stmt) == GIMPLE_RETURN)
1419 {
1420 tree retval = gimple_return_retval (stmt);
1421 tree base;
1422 if (retval
1423 && TREE_CODE (retval) != SSA_NAME
1424 && !is_gimple_min_invariant (retval)
1425 && refs_may_alias_p (retval, ref))
1426 return true;
1427 /* If ref escapes the function then the return acts as a use. */
1428 base = get_base_address (ref);
1429 if (!base)
1430 ;
1431 else if (DECL_P (base))
1432 return is_global_var (base);
1433 else if (TREE_CODE (base) == MEM_REF
1434 || TREE_CODE (base) == TARGET_MEM_REF)
1435 return ptr_deref_may_alias_global_p (TREE_OPERAND (base, 0));
1436 return false;
1437 }
1438
1439 return true;
1440 }
1441
1442 /* If the call in statement CALL may clobber the memory reference REF
1443 return true, otherwise return false. */
1444
1445 static bool
1446 call_may_clobber_ref_p_1 (gimple call, ao_ref *ref)
1447 {
1448 tree base;
1449 tree callee;
1450
1451 /* If the call is pure or const it cannot clobber anything. */
1452 if (gimple_call_flags (call)
1453 & (ECF_PURE|ECF_CONST|ECF_LOOPING_CONST_OR_PURE|ECF_NOVOPS))
1454 return false;
1455
1456 base = ao_ref_base (ref);
1457 if (!base)
1458 return true;
1459
1460 if (TREE_CODE (base) == SSA_NAME
1461 || CONSTANT_CLASS_P (base))
1462 return false;
1463
1464 /* If the reference is based on a decl that is not aliased the call
1465 cannot possibly clobber it. */
1466 if (DECL_P (base)
1467 && !may_be_aliased (base)
1468 /* But local non-readonly statics can be modified through recursion
1469 or the call may implement a threading barrier which we must
1470 treat as may-def. */
1471 && (TREE_READONLY (base)
1472 || !is_global_var (base)))
1473 return false;
1474
1475 callee = gimple_call_fndecl (call);
1476
1477 /* Handle those builtin functions explicitly that do not act as
1478 escape points. See tree-ssa-structalias.c:find_func_aliases
1479 for the list of builtins we might need to handle here. */
1480 if (callee != NULL_TREE
1481 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
1482 switch (DECL_FUNCTION_CODE (callee))
1483 {
1484 /* All the following functions clobber memory pointed to by
1485 their first argument. */
1486 case BUILT_IN_STRCPY:
1487 case BUILT_IN_STRNCPY:
1488 case BUILT_IN_MEMCPY:
1489 case BUILT_IN_MEMMOVE:
1490 case BUILT_IN_MEMPCPY:
1491 case BUILT_IN_STPCPY:
1492 case BUILT_IN_STPNCPY:
1493 case BUILT_IN_STRCAT:
1494 case BUILT_IN_STRNCAT:
1495 case BUILT_IN_MEMSET:
1496 {
1497 ao_ref dref;
1498 tree size = NULL_TREE;
1499 /* Don't pass in size for strncat, as the maximum size
1500 is strlen (dest) + n + 1 instead of n, resp.
1501 n + 1 at dest + strlen (dest), but strlen (dest) isn't
1502 known. */
1503 if (gimple_call_num_args (call) == 3
1504 && DECL_FUNCTION_CODE (callee) != BUILT_IN_STRNCAT)
1505 size = gimple_call_arg (call, 2);
1506 ao_ref_init_from_ptr_and_size (&dref,
1507 gimple_call_arg (call, 0),
1508 size);
1509 return refs_may_alias_p_1 (&dref, ref, false);
1510 }
1511 case BUILT_IN_STRCPY_CHK:
1512 case BUILT_IN_STRNCPY_CHK:
1513 case BUILT_IN_MEMCPY_CHK:
1514 case BUILT_IN_MEMMOVE_CHK:
1515 case BUILT_IN_MEMPCPY_CHK:
1516 case BUILT_IN_STPCPY_CHK:
1517 case BUILT_IN_STRCAT_CHK:
1518 case BUILT_IN_STRNCAT_CHK:
1519 case BUILT_IN_MEMSET_CHK:
1520 {
1521 ao_ref dref;
1522 tree size = NULL_TREE;
1523 /* Don't pass in size for __strncat_chk, as the maximum size
1524 is strlen (dest) + n + 1 instead of n, resp.
1525 n + 1 at dest + strlen (dest), but strlen (dest) isn't
1526 known. */
1527 if (gimple_call_num_args (call) == 4
1528 && DECL_FUNCTION_CODE (callee) != BUILT_IN_STRNCAT_CHK)
1529 size = gimple_call_arg (call, 2);
1530 ao_ref_init_from_ptr_and_size (&dref,
1531 gimple_call_arg (call, 0),
1532 size);
1533 return refs_may_alias_p_1 (&dref, ref, false);
1534 }
1535 case BUILT_IN_BCOPY:
1536 {
1537 ao_ref dref;
1538 tree size = gimple_call_arg (call, 2);
1539 ao_ref_init_from_ptr_and_size (&dref,
1540 gimple_call_arg (call, 1),
1541 size);
1542 return refs_may_alias_p_1 (&dref, ref, false);
1543 }
1544 /* Allocating memory does not have any side-effects apart from
1545 being the definition point for the pointer. */
1546 case BUILT_IN_MALLOC:
1547 case BUILT_IN_CALLOC:
1548 case BUILT_IN_STRDUP:
1549 case BUILT_IN_STRNDUP:
1550 /* Unix98 specifies that errno is set on allocation failure. */
1551 if (flag_errno_math
1552 && targetm.ref_may_alias_errno (ref))
1553 return true;
1554 return false;
1555 case BUILT_IN_STACK_SAVE:
1556 case BUILT_IN_ALLOCA:
1557 case BUILT_IN_ASSUME_ALIGNED:
1558 return false;
1559 /* Freeing memory kills the pointed-to memory. More importantly
1560 the call has to serve as a barrier for moving loads and stores
1561 across it. */
1562 case BUILT_IN_FREE:
1563 case BUILT_IN_VA_END:
1564 {
1565 tree ptr = gimple_call_arg (call, 0);
1566 return ptr_deref_may_alias_ref_p_1 (ptr, ref);
1567 }
1568 case BUILT_IN_GAMMA_R:
1569 case BUILT_IN_GAMMAF_R:
1570 case BUILT_IN_GAMMAL_R:
1571 case BUILT_IN_LGAMMA_R:
1572 case BUILT_IN_LGAMMAF_R:
1573 case BUILT_IN_LGAMMAL_R:
1574 {
1575 tree out = gimple_call_arg (call, 1);
1576 if (ptr_deref_may_alias_ref_p_1 (out, ref))
1577 return true;
1578 if (flag_errno_math)
1579 break;
1580 return false;
1581 }
1582 case BUILT_IN_FREXP:
1583 case BUILT_IN_FREXPF:
1584 case BUILT_IN_FREXPL:
1585 case BUILT_IN_MODF:
1586 case BUILT_IN_MODFF:
1587 case BUILT_IN_MODFL:
1588 {
1589 tree out = gimple_call_arg (call, 1);
1590 return ptr_deref_may_alias_ref_p_1 (out, ref);
1591 }
1592 case BUILT_IN_REMQUO:
1593 case BUILT_IN_REMQUOF:
1594 case BUILT_IN_REMQUOL:
1595 {
1596 tree out = gimple_call_arg (call, 2);
1597 if (ptr_deref_may_alias_ref_p_1 (out, ref))
1598 return true;
1599 if (flag_errno_math)
1600 break;
1601 return false;
1602 }
1603 case BUILT_IN_SINCOS:
1604 case BUILT_IN_SINCOSF:
1605 case BUILT_IN_SINCOSL:
1606 {
1607 tree sin = gimple_call_arg (call, 1);
1608 tree cos = gimple_call_arg (call, 2);
1609 return (ptr_deref_may_alias_ref_p_1 (sin, ref)
1610 || ptr_deref_may_alias_ref_p_1 (cos, ref));
1611 }
1612 /* __sync_* builtins and some OpenMP builtins act as threading
1613 barriers. */
1614 #undef DEF_SYNC_BUILTIN
1615 #define DEF_SYNC_BUILTIN(ENUM, NAME, TYPE, ATTRS) case ENUM:
1616 #include "sync-builtins.def"
1617 #undef DEF_SYNC_BUILTIN
1618 case BUILT_IN_GOMP_ATOMIC_START:
1619 case BUILT_IN_GOMP_ATOMIC_END:
1620 case BUILT_IN_GOMP_BARRIER:
1621 case BUILT_IN_GOMP_TASKWAIT:
1622 case BUILT_IN_GOMP_CRITICAL_START:
1623 case BUILT_IN_GOMP_CRITICAL_END:
1624 case BUILT_IN_GOMP_CRITICAL_NAME_START:
1625 case BUILT_IN_GOMP_CRITICAL_NAME_END:
1626 case BUILT_IN_GOMP_LOOP_END:
1627 case BUILT_IN_GOMP_ORDERED_START:
1628 case BUILT_IN_GOMP_ORDERED_END:
1629 case BUILT_IN_GOMP_PARALLEL_END:
1630 case BUILT_IN_GOMP_SECTIONS_END:
1631 case BUILT_IN_GOMP_SINGLE_COPY_START:
1632 case BUILT_IN_GOMP_SINGLE_COPY_END:
1633 return true;
1634 default:
1635 /* Fallthru to general call handling. */;
1636 }
1637
1638 /* Check if base is a global static variable that is not written
1639 by the function. */
1640 if (callee != NULL_TREE
1641 && TREE_CODE (base) == VAR_DECL
1642 && TREE_STATIC (base))
1643 {
1644 struct cgraph_node *node = cgraph_get_node (callee);
1645 bitmap not_written;
1646
1647 if (node
1648 && (not_written = ipa_reference_get_not_written_global (node))
1649 && bitmap_bit_p (not_written, DECL_UID (base)))
1650 return false;
1651 }
1652
1653 /* Check if the base variable is call-clobbered. */
1654 if (DECL_P (base))
1655 return pt_solution_includes (gimple_call_clobber_set (call), base);
1656 else if ((TREE_CODE (base) == MEM_REF
1657 || TREE_CODE (base) == TARGET_MEM_REF)
1658 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
1659 {
1660 struct ptr_info_def *pi = SSA_NAME_PTR_INFO (TREE_OPERAND (base, 0));
1661 if (!pi)
1662 return true;
1663
1664 return pt_solutions_intersect (gimple_call_clobber_set (call), &pi->pt);
1665 }
1666
1667 return true;
1668 }
1669
1670 /* If the call in statement CALL may clobber the memory reference REF
1671 return true, otherwise return false. */
1672
1673 bool
1674 call_may_clobber_ref_p (gimple call, tree ref)
1675 {
1676 bool res;
1677 ao_ref r;
1678 ao_ref_init (&r, ref);
1679 res = call_may_clobber_ref_p_1 (call, &r);
1680 if (res)
1681 ++alias_stats.call_may_clobber_ref_p_may_alias;
1682 else
1683 ++alias_stats.call_may_clobber_ref_p_no_alias;
1684 return res;
1685 }
1686
1687
1688 /* If the statement STMT may clobber the memory reference REF return true,
1689 otherwise return false. */
1690
1691 bool
1692 stmt_may_clobber_ref_p_1 (gimple stmt, ao_ref *ref)
1693 {
1694 if (is_gimple_call (stmt))
1695 {
1696 tree lhs = gimple_call_lhs (stmt);
1697 if (lhs
1698 && TREE_CODE (lhs) != SSA_NAME)
1699 {
1700 ao_ref r;
1701 ao_ref_init (&r, lhs);
1702 if (refs_may_alias_p_1 (ref, &r, true))
1703 return true;
1704 }
1705
1706 return call_may_clobber_ref_p_1 (stmt, ref);
1707 }
1708 else if (gimple_assign_single_p (stmt))
1709 {
1710 tree lhs = gimple_assign_lhs (stmt);
1711 if (TREE_CODE (lhs) != SSA_NAME)
1712 {
1713 ao_ref r;
1714 ao_ref_init (&r, lhs);
1715 return refs_may_alias_p_1 (ref, &r, true);
1716 }
1717 }
1718 else if (gimple_code (stmt) == GIMPLE_ASM)
1719 return true;
1720
1721 return false;
1722 }
1723
1724 bool
1725 stmt_may_clobber_ref_p (gimple stmt, tree ref)
1726 {
1727 ao_ref r;
1728 ao_ref_init (&r, ref);
1729 return stmt_may_clobber_ref_p_1 (stmt, &r);
1730 }
1731
1732 /* If STMT kills the memory reference REF return true, otherwise
1733 return false. */
1734
1735 static bool
1736 stmt_kills_ref_p_1 (gimple stmt, ao_ref *ref)
1737 {
1738 /* For a must-alias check we need to be able to constrain
1739 the access properly. */
1740 ao_ref_base (ref);
1741 if (ref->max_size == -1)
1742 return false;
1743
1744 if (gimple_has_lhs (stmt)
1745 && TREE_CODE (gimple_get_lhs (stmt)) != SSA_NAME
1746 /* The assignment is not necessarily carried out if it can throw
1747 and we can catch it in the current function where we could inspect
1748 the previous value.
1749 ??? We only need to care about the RHS throwing. For aggregate
1750 assignments or similar calls and non-call exceptions the LHS
1751 might throw as well. */
1752 && !stmt_can_throw_internal (stmt))
1753 {
1754 tree base, lhs = gimple_get_lhs (stmt);
1755 HOST_WIDE_INT size, offset, max_size;
1756 base = get_ref_base_and_extent (lhs, &offset, &size, &max_size);
1757 /* We can get MEM[symbol: sZ, index: D.8862_1] here,
1758 so base == ref->base does not always hold. */
1759 if (base == ref->base)
1760 {
1761 /* For a must-alias check we need to be able to constrain
1762 the access properly. */
1763 if (size != -1 && size == max_size)
1764 {
1765 if (offset <= ref->offset
1766 && offset + size >= ref->offset + ref->max_size)
1767 return true;
1768 }
1769 }
1770 }
1771
1772 if (is_gimple_call (stmt))
1773 {
1774 tree callee = gimple_call_fndecl (stmt);
1775 if (callee != NULL_TREE
1776 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
1777 switch (DECL_FUNCTION_CODE (callee))
1778 {
1779 case BUILT_IN_MEMCPY:
1780 case BUILT_IN_MEMPCPY:
1781 case BUILT_IN_MEMMOVE:
1782 case BUILT_IN_MEMSET:
1783 case BUILT_IN_MEMCPY_CHK:
1784 case BUILT_IN_MEMPCPY_CHK:
1785 case BUILT_IN_MEMMOVE_CHK:
1786 case BUILT_IN_MEMSET_CHK:
1787 {
1788 tree dest = gimple_call_arg (stmt, 0);
1789 tree len = gimple_call_arg (stmt, 2);
1790 tree base = NULL_TREE;
1791 HOST_WIDE_INT offset = 0;
1792 if (!host_integerp (len, 0))
1793 return false;
1794 if (TREE_CODE (dest) == ADDR_EXPR)
1795 base = get_addr_base_and_unit_offset (TREE_OPERAND (dest, 0),
1796 &offset);
1797 else if (TREE_CODE (dest) == SSA_NAME)
1798 base = dest;
1799 if (base
1800 && base == ao_ref_base (ref))
1801 {
1802 HOST_WIDE_INT size = TREE_INT_CST_LOW (len);
1803 if (offset <= ref->offset / BITS_PER_UNIT
1804 && (offset + size
1805 >= ((ref->offset + ref->max_size + BITS_PER_UNIT - 1)
1806 / BITS_PER_UNIT)))
1807 return true;
1808 }
1809 break;
1810 }
1811
1812 case BUILT_IN_VA_END:
1813 {
1814 tree ptr = gimple_call_arg (stmt, 0);
1815 if (TREE_CODE (ptr) == ADDR_EXPR)
1816 {
1817 tree base = ao_ref_base (ref);
1818 if (TREE_OPERAND (ptr, 0) == base)
1819 return true;
1820 }
1821 break;
1822 }
1823
1824 default:;
1825 }
1826 }
1827 return false;
1828 }
1829
1830 bool
1831 stmt_kills_ref_p (gimple stmt, tree ref)
1832 {
1833 ao_ref r;
1834 ao_ref_init (&r, ref);
1835 return stmt_kills_ref_p_1 (stmt, &r);
1836 }
1837
1838
1839 /* Walk the virtual use-def chain of VUSE until hitting the virtual operand
1840 TARGET or a statement clobbering the memory reference REF in which
1841 case false is returned. The walk starts with VUSE, one argument of PHI. */
1842
1843 static bool
1844 maybe_skip_until (gimple phi, tree target, ao_ref *ref,
1845 tree vuse, bitmap *visited)
1846 {
1847 if (!*visited)
1848 *visited = BITMAP_ALLOC (NULL);
1849
1850 bitmap_set_bit (*visited, SSA_NAME_VERSION (PHI_RESULT (phi)));
1851
1852 /* Walk until we hit the target. */
1853 while (vuse != target)
1854 {
1855 gimple def_stmt = SSA_NAME_DEF_STMT (vuse);
1856 /* Recurse for PHI nodes. */
1857 if (gimple_code (def_stmt) == GIMPLE_PHI)
1858 {
1859 /* An already visited PHI node ends the walk successfully. */
1860 if (bitmap_bit_p (*visited, SSA_NAME_VERSION (PHI_RESULT (def_stmt))))
1861 return true;
1862 vuse = get_continuation_for_phi (def_stmt, ref, visited);
1863 if (!vuse)
1864 return false;
1865 continue;
1866 }
1867 /* A clobbering statement or the end of the IL ends it failing. */
1868 else if (gimple_nop_p (def_stmt)
1869 || stmt_may_clobber_ref_p_1 (def_stmt, ref))
1870 return false;
1871 vuse = gimple_vuse (def_stmt);
1872 }
1873 return true;
1874 }
1875
1876 /* Starting from a PHI node for the virtual operand of the memory reference
1877 REF find a continuation virtual operand that allows to continue walking
1878 statements dominating PHI skipping only statements that cannot possibly
1879 clobber REF. Returns NULL_TREE if no suitable virtual operand can
1880 be found. */
1881
1882 tree
1883 get_continuation_for_phi (gimple phi, ao_ref *ref, bitmap *visited)
1884 {
1885 unsigned nargs = gimple_phi_num_args (phi);
1886
1887 /* Through a single-argument PHI we can simply look through. */
1888 if (nargs == 1)
1889 return PHI_ARG_DEF (phi, 0);
1890
1891 /* For two arguments try to skip non-aliasing code until we hit
1892 the phi argument definition that dominates the other one. */
1893 if (nargs == 2)
1894 {
1895 tree arg0 = PHI_ARG_DEF (phi, 0);
1896 tree arg1 = PHI_ARG_DEF (phi, 1);
1897 gimple def0 = SSA_NAME_DEF_STMT (arg0);
1898 gimple def1 = SSA_NAME_DEF_STMT (arg1);
1899 tree common_vuse;
1900
1901 if (arg0 == arg1)
1902 return arg0;
1903 else if (gimple_nop_p (def0)
1904 || (!gimple_nop_p (def1)
1905 && dominated_by_p (CDI_DOMINATORS,
1906 gimple_bb (def1), gimple_bb (def0))))
1907 {
1908 if (maybe_skip_until (phi, arg0, ref, arg1, visited))
1909 return arg0;
1910 }
1911 else if (gimple_nop_p (def1)
1912 || dominated_by_p (CDI_DOMINATORS,
1913 gimple_bb (def0), gimple_bb (def1)))
1914 {
1915 if (maybe_skip_until (phi, arg1, ref, arg0, visited))
1916 return arg1;
1917 }
1918 /* Special case of a diamond:
1919 MEM_1 = ...
1920 goto (cond) ? L1 : L2
1921 L1: store1 = ... #MEM_2 = vuse(MEM_1)
1922 goto L3
1923 L2: store2 = ... #MEM_3 = vuse(MEM_1)
1924 L3: MEM_4 = PHI<MEM_2, MEM_3>
1925 We were called with the PHI at L3, MEM_2 and MEM_3 don't
1926 dominate each other, but still we can easily skip this PHI node
1927 if we recognize that the vuse MEM operand is the same for both,
1928 and that we can skip both statements (they don't clobber us).
1929 This is still linear. Don't use maybe_skip_until, that might
1930 potentially be slow. */
1931 else if ((common_vuse = gimple_vuse (def0))
1932 && common_vuse == gimple_vuse (def1))
1933 {
1934 if (!stmt_may_clobber_ref_p_1 (def0, ref)
1935 && !stmt_may_clobber_ref_p_1 (def1, ref))
1936 return common_vuse;
1937 }
1938 }
1939
1940 return NULL_TREE;
1941 }
1942
1943 /* Based on the memory reference REF and its virtual use VUSE call
1944 WALKER for each virtual use that is equivalent to VUSE, including VUSE
1945 itself. That is, for each virtual use for which its defining statement
1946 does not clobber REF.
1947
1948 WALKER is called with REF, the current virtual use and DATA. If
1949 WALKER returns non-NULL the walk stops and its result is returned.
1950 At the end of a non-successful walk NULL is returned.
1951
1952 TRANSLATE if non-NULL is called with a pointer to REF, the virtual
1953 use which definition is a statement that may clobber REF and DATA.
1954 If TRANSLATE returns (void *)-1 the walk stops and NULL is returned.
1955 If TRANSLATE returns non-NULL the walk stops and its result is returned.
1956 If TRANSLATE returns NULL the walk continues and TRANSLATE is supposed
1957 to adjust REF and *DATA to make that valid.
1958
1959 TODO: Cache the vector of equivalent vuses per ref, vuse pair. */
1960
1961 void *
1962 walk_non_aliased_vuses (ao_ref *ref, tree vuse,
1963 void *(*walker)(ao_ref *, tree, void *),
1964 void *(*translate)(ao_ref *, tree, void *), void *data)
1965 {
1966 bitmap visited = NULL;
1967 void *res;
1968
1969 timevar_push (TV_ALIAS_STMT_WALK);
1970
1971 do
1972 {
1973 gimple def_stmt;
1974
1975 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
1976 res = (*walker) (ref, vuse, data);
1977 if (res)
1978 break;
1979
1980 def_stmt = SSA_NAME_DEF_STMT (vuse);
1981 if (gimple_nop_p (def_stmt))
1982 break;
1983 else if (gimple_code (def_stmt) == GIMPLE_PHI)
1984 vuse = get_continuation_for_phi (def_stmt, ref, &visited);
1985 else
1986 {
1987 if (stmt_may_clobber_ref_p_1 (def_stmt, ref))
1988 {
1989 if (!translate)
1990 break;
1991 res = (*translate) (ref, vuse, data);
1992 /* Failed lookup and translation. */
1993 if (res == (void *)-1)
1994 {
1995 res = NULL;
1996 break;
1997 }
1998 /* Lookup succeeded. */
1999 else if (res != NULL)
2000 break;
2001 /* Translation succeeded, continue walking. */
2002 }
2003 vuse = gimple_vuse (def_stmt);
2004 }
2005 }
2006 while (vuse);
2007
2008 if (visited)
2009 BITMAP_FREE (visited);
2010
2011 timevar_pop (TV_ALIAS_STMT_WALK);
2012
2013 return res;
2014 }
2015
2016
2017 /* Based on the memory reference REF call WALKER for each vdef which
2018 defining statement may clobber REF, starting with VDEF. If REF
2019 is NULL_TREE, each defining statement is visited.
2020
2021 WALKER is called with REF, the current vdef and DATA. If WALKER
2022 returns true the walk is stopped, otherwise it continues.
2023
2024 At PHI nodes walk_aliased_vdefs forks into one walk for reach
2025 PHI argument (but only one walk continues on merge points), the
2026 return value is true if any of the walks was successful.
2027
2028 The function returns the number of statements walked. */
2029
2030 static unsigned int
2031 walk_aliased_vdefs_1 (ao_ref *ref, tree vdef,
2032 bool (*walker)(ao_ref *, tree, void *), void *data,
2033 bitmap *visited, unsigned int cnt)
2034 {
2035 do
2036 {
2037 gimple def_stmt = SSA_NAME_DEF_STMT (vdef);
2038
2039 if (*visited
2040 && !bitmap_set_bit (*visited, SSA_NAME_VERSION (vdef)))
2041 return cnt;
2042
2043 if (gimple_nop_p (def_stmt))
2044 return cnt;
2045 else if (gimple_code (def_stmt) == GIMPLE_PHI)
2046 {
2047 unsigned i;
2048 if (!*visited)
2049 *visited = BITMAP_ALLOC (NULL);
2050 for (i = 0; i < gimple_phi_num_args (def_stmt); ++i)
2051 cnt += walk_aliased_vdefs_1 (ref, gimple_phi_arg_def (def_stmt, i),
2052 walker, data, visited, 0);
2053 return cnt;
2054 }
2055
2056 /* ??? Do we want to account this to TV_ALIAS_STMT_WALK? */
2057 cnt++;
2058 if ((!ref
2059 || stmt_may_clobber_ref_p_1 (def_stmt, ref))
2060 && (*walker) (ref, vdef, data))
2061 return cnt;
2062
2063 vdef = gimple_vuse (def_stmt);
2064 }
2065 while (1);
2066 }
2067
2068 unsigned int
2069 walk_aliased_vdefs (ao_ref *ref, tree vdef,
2070 bool (*walker)(ao_ref *, tree, void *), void *data,
2071 bitmap *visited)
2072 {
2073 bitmap local_visited = NULL;
2074 unsigned int ret;
2075
2076 timevar_push (TV_ALIAS_STMT_WALK);
2077
2078 ret = walk_aliased_vdefs_1 (ref, vdef, walker, data,
2079 visited ? visited : &local_visited, 0);
2080 if (local_visited)
2081 BITMAP_FREE (local_visited);
2082
2083 timevar_pop (TV_ALIAS_STMT_WALK);
2084
2085 return ret;
2086 }
2087