]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/alias.c
* doc/md.texi: Document vec_shl_<mode> pattern.
[thirdparty/gcc.git] / gcc / alias.c
1 /* Alias analysis for GNU C
2 Copyright (C) 1997-2019 Free Software Foundation, Inc.
3 Contributed by John Carr (jfc@mit.edu).
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 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 "backend.h"
25 #include "target.h"
26 #include "rtl.h"
27 #include "tree.h"
28 #include "gimple.h"
29 #include "df.h"
30 #include "memmodel.h"
31 #include "tm_p.h"
32 #include "gimple-ssa.h"
33 #include "emit-rtl.h"
34 #include "alias.h"
35 #include "fold-const.h"
36 #include "varasm.h"
37 #include "cselib.h"
38 #include "langhooks.h"
39 #include "cfganal.h"
40 #include "rtl-iter.h"
41 #include "cgraph.h"
42 #include "ipa-utils.h"
43
44 /* The aliasing API provided here solves related but different problems:
45
46 Say there exists (in c)
47
48 struct X {
49 struct Y y1;
50 struct Z z2;
51 } x1, *px1, *px2;
52
53 struct Y y2, *py;
54 struct Z z2, *pz;
55
56
57 py = &x1.y1;
58 px2 = &x1;
59
60 Consider the four questions:
61
62 Can a store to x1 interfere with px2->y1?
63 Can a store to x1 interfere with px2->z2?
64 Can a store to x1 change the value pointed to by with py?
65 Can a store to x1 change the value pointed to by with pz?
66
67 The answer to these questions can be yes, yes, yes, and maybe.
68
69 The first two questions can be answered with a simple examination
70 of the type system. If structure X contains a field of type Y then
71 a store through a pointer to an X can overwrite any field that is
72 contained (recursively) in an X (unless we know that px1 != px2).
73
74 The last two questions can be solved in the same way as the first
75 two questions but this is too conservative. The observation is
76 that in some cases we can know which (if any) fields are addressed
77 and if those addresses are used in bad ways. This analysis may be
78 language specific. In C, arbitrary operations may be applied to
79 pointers. However, there is some indication that this may be too
80 conservative for some C++ types.
81
82 The pass ipa-type-escape does this analysis for the types whose
83 instances do not escape across the compilation boundary.
84
85 Historically in GCC, these two problems were combined and a single
86 data structure that was used to represent the solution to these
87 problems. We now have two similar but different data structures,
88 The data structure to solve the last two questions is similar to
89 the first, but does not contain the fields whose address are never
90 taken. For types that do escape the compilation unit, the data
91 structures will have identical information.
92 */
93
94 /* The alias sets assigned to MEMs assist the back-end in determining
95 which MEMs can alias which other MEMs. In general, two MEMs in
96 different alias sets cannot alias each other, with one important
97 exception. Consider something like:
98
99 struct S { int i; double d; };
100
101 a store to an `S' can alias something of either type `int' or type
102 `double'. (However, a store to an `int' cannot alias a `double'
103 and vice versa.) We indicate this via a tree structure that looks
104 like:
105 struct S
106 / \
107 / \
108 |/_ _\|
109 int double
110
111 (The arrows are directed and point downwards.)
112 In this situation we say the alias set for `struct S' is the
113 `superset' and that those for `int' and `double' are `subsets'.
114
115 To see whether two alias sets can point to the same memory, we must
116 see if either alias set is a subset of the other. We need not trace
117 past immediate descendants, however, since we propagate all
118 grandchildren up one level.
119
120 Alias set zero is implicitly a superset of all other alias sets.
121 However, this is no actual entry for alias set zero. It is an
122 error to attempt to explicitly construct a subset of zero. */
123
124 struct alias_set_hash : int_hash <int, INT_MIN, INT_MIN + 1> {};
125
126 struct GTY(()) alias_set_entry {
127 /* The alias set number, as stored in MEM_ALIAS_SET. */
128 alias_set_type alias_set;
129
130 /* Nonzero if would have a child of zero: this effectively makes this
131 alias set the same as alias set zero. */
132 bool has_zero_child;
133 /* Nonzero if alias set corresponds to pointer type itself (i.e. not to
134 aggregate contaiing pointer.
135 This is used for a special case where we need an universal pointer type
136 compatible with all other pointer types. */
137 bool is_pointer;
138 /* Nonzero if is_pointer or if one of childs have has_pointer set. */
139 bool has_pointer;
140
141 /* The children of the alias set. These are not just the immediate
142 children, but, in fact, all descendants. So, if we have:
143
144 struct T { struct S s; float f; }
145
146 continuing our example above, the children here will be all of
147 `int', `double', `float', and `struct S'. */
148 hash_map<alias_set_hash, int> *children;
149 };
150
151 static int rtx_equal_for_memref_p (const_rtx, const_rtx);
152 static void record_set (rtx, const_rtx, void *);
153 static int base_alias_check (rtx, rtx, rtx, rtx, machine_mode,
154 machine_mode);
155 static rtx find_base_value (rtx);
156 static int mems_in_disjoint_alias_sets_p (const_rtx, const_rtx);
157 static alias_set_entry *get_alias_set_entry (alias_set_type);
158 static tree decl_for_component_ref (tree);
159 static int write_dependence_p (const_rtx,
160 const_rtx, machine_mode, rtx,
161 bool, bool, bool);
162 static int compare_base_symbol_refs (const_rtx, const_rtx);
163
164 static void memory_modified_1 (rtx, const_rtx, void *);
165
166 /* Query statistics for the different low-level disambiguators.
167 A high-level query may trigger multiple of them. */
168
169 static struct {
170 unsigned long long num_alias_zero;
171 unsigned long long num_same_alias_set;
172 unsigned long long num_same_objects;
173 unsigned long long num_volatile;
174 unsigned long long num_dag;
175 unsigned long long num_universal;
176 unsigned long long num_disambiguated;
177 } alias_stats;
178
179
180 /* Set up all info needed to perform alias analysis on memory references. */
181
182 /* Returns the size in bytes of the mode of X. */
183 #define SIZE_FOR_MODE(X) (GET_MODE_SIZE (GET_MODE (X)))
184
185 /* Cap the number of passes we make over the insns propagating alias
186 information through set chains.
187 ??? 10 is a completely arbitrary choice. This should be based on the
188 maximum loop depth in the CFG, but we do not have this information
189 available (even if current_loops _is_ available). */
190 #define MAX_ALIAS_LOOP_PASSES 10
191
192 /* reg_base_value[N] gives an address to which register N is related.
193 If all sets after the first add or subtract to the current value
194 or otherwise modify it so it does not point to a different top level
195 object, reg_base_value[N] is equal to the address part of the source
196 of the first set.
197
198 A base address can be an ADDRESS, SYMBOL_REF, or LABEL_REF. ADDRESS
199 expressions represent three types of base:
200
201 1. incoming arguments. There is just one ADDRESS to represent all
202 arguments, since we do not know at this level whether accesses
203 based on different arguments can alias. The ADDRESS has id 0.
204
205 2. stack_pointer_rtx, frame_pointer_rtx, hard_frame_pointer_rtx
206 (if distinct from frame_pointer_rtx) and arg_pointer_rtx.
207 Each of these rtxes has a separate ADDRESS associated with it,
208 each with a negative id.
209
210 GCC is (and is required to be) precise in which register it
211 chooses to access a particular region of stack. We can therefore
212 assume that accesses based on one of these rtxes do not alias
213 accesses based on another of these rtxes.
214
215 3. bases that are derived from malloc()ed memory (REG_NOALIAS).
216 Each such piece of memory has a separate ADDRESS associated
217 with it, each with an id greater than 0.
218
219 Accesses based on one ADDRESS do not alias accesses based on other
220 ADDRESSes. Accesses based on ADDRESSes in groups (2) and (3) do not
221 alias globals either; the ADDRESSes have Pmode to indicate this.
222 The ADDRESS in group (1) _may_ alias globals; it has VOIDmode to
223 indicate this. */
224
225 static GTY(()) vec<rtx, va_gc> *reg_base_value;
226 static rtx *new_reg_base_value;
227
228 /* The single VOIDmode ADDRESS that represents all argument bases.
229 It has id 0. */
230 static GTY(()) rtx arg_base_value;
231
232 /* Used to allocate unique ids to each REG_NOALIAS ADDRESS. */
233 static int unique_id;
234
235 /* We preserve the copy of old array around to avoid amount of garbage
236 produced. About 8% of garbage produced were attributed to this
237 array. */
238 static GTY((deletable)) vec<rtx, va_gc> *old_reg_base_value;
239
240 /* Values of XINT (address, 0) of Pmode ADDRESS rtxes for special
241 registers. */
242 #define UNIQUE_BASE_VALUE_SP -1
243 #define UNIQUE_BASE_VALUE_ARGP -2
244 #define UNIQUE_BASE_VALUE_FP -3
245 #define UNIQUE_BASE_VALUE_HFP -4
246
247 #define static_reg_base_value \
248 (this_target_rtl->x_static_reg_base_value)
249
250 #define REG_BASE_VALUE(X) \
251 (REGNO (X) < vec_safe_length (reg_base_value) \
252 ? (*reg_base_value)[REGNO (X)] : 0)
253
254 /* Vector indexed by N giving the initial (unchanging) value known for
255 pseudo-register N. This vector is initialized in init_alias_analysis,
256 and does not change until end_alias_analysis is called. */
257 static GTY(()) vec<rtx, va_gc> *reg_known_value;
258
259 /* Vector recording for each reg_known_value whether it is due to a
260 REG_EQUIV note. Future passes (viz., reload) may replace the
261 pseudo with the equivalent expression and so we account for the
262 dependences that would be introduced if that happens.
263
264 The REG_EQUIV notes created in assign_parms may mention the arg
265 pointer, and there are explicit insns in the RTL that modify the
266 arg pointer. Thus we must ensure that such insns don't get
267 scheduled across each other because that would invalidate the
268 REG_EQUIV notes. One could argue that the REG_EQUIV notes are
269 wrong, but solving the problem in the scheduler will likely give
270 better code, so we do it here. */
271 static sbitmap reg_known_equiv_p;
272
273 /* True when scanning insns from the start of the rtl to the
274 NOTE_INSN_FUNCTION_BEG note. */
275 static bool copying_arguments;
276
277
278 /* The splay-tree used to store the various alias set entries. */
279 static GTY (()) vec<alias_set_entry *, va_gc> *alias_sets;
280 \f
281 /* Build a decomposed reference object for querying the alias-oracle
282 from the MEM rtx and store it in *REF.
283 Returns false if MEM is not suitable for the alias-oracle. */
284
285 static bool
286 ao_ref_from_mem (ao_ref *ref, const_rtx mem)
287 {
288 tree expr = MEM_EXPR (mem);
289 tree base;
290
291 if (!expr)
292 return false;
293
294 ao_ref_init (ref, expr);
295
296 /* Get the base of the reference and see if we have to reject or
297 adjust it. */
298 base = ao_ref_base (ref);
299 if (base == NULL_TREE)
300 return false;
301
302 /* The tree oracle doesn't like bases that are neither decls
303 nor indirect references of SSA names. */
304 if (!(DECL_P (base)
305 || (TREE_CODE (base) == MEM_REF
306 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
307 || (TREE_CODE (base) == TARGET_MEM_REF
308 && TREE_CODE (TMR_BASE (base)) == SSA_NAME)))
309 return false;
310
311 ref->ref_alias_set = MEM_ALIAS_SET (mem);
312
313 /* If MEM_OFFSET or MEM_SIZE are unknown what we got from MEM_EXPR
314 is conservative, so trust it. */
315 if (!MEM_OFFSET_KNOWN_P (mem)
316 || !MEM_SIZE_KNOWN_P (mem))
317 return true;
318
319 /* If MEM_OFFSET/MEM_SIZE get us outside of ref->offset/ref->max_size
320 drop ref->ref. */
321 if (maybe_lt (MEM_OFFSET (mem), 0)
322 || (ref->max_size_known_p ()
323 && maybe_gt ((MEM_OFFSET (mem) + MEM_SIZE (mem)) * BITS_PER_UNIT,
324 ref->max_size)))
325 ref->ref = NULL_TREE;
326
327 /* Refine size and offset we got from analyzing MEM_EXPR by using
328 MEM_SIZE and MEM_OFFSET. */
329
330 ref->offset += MEM_OFFSET (mem) * BITS_PER_UNIT;
331 ref->size = MEM_SIZE (mem) * BITS_PER_UNIT;
332
333 /* The MEM may extend into adjacent fields, so adjust max_size if
334 necessary. */
335 if (ref->max_size_known_p ())
336 ref->max_size = upper_bound (ref->max_size, ref->size);
337
338 /* If MEM_OFFSET and MEM_SIZE might get us outside of the base object of
339 the MEM_EXPR punt. This happens for STRICT_ALIGNMENT targets a lot. */
340 if (MEM_EXPR (mem) != get_spill_slot_decl (false)
341 && (maybe_lt (ref->offset, 0)
342 || (DECL_P (ref->base)
343 && (DECL_SIZE (ref->base) == NULL_TREE
344 || !poly_int_tree_p (DECL_SIZE (ref->base))
345 || maybe_lt (wi::to_poly_offset (DECL_SIZE (ref->base)),
346 ref->offset + ref->size)))))
347 return false;
348
349 return true;
350 }
351
352 /* Query the alias-oracle on whether the two memory rtx X and MEM may
353 alias. If TBAA_P is set also apply TBAA. Returns true if the
354 two rtxen may alias, false otherwise. */
355
356 static bool
357 rtx_refs_may_alias_p (const_rtx x, const_rtx mem, bool tbaa_p)
358 {
359 ao_ref ref1, ref2;
360
361 if (!ao_ref_from_mem (&ref1, x)
362 || !ao_ref_from_mem (&ref2, mem))
363 return true;
364
365 return refs_may_alias_p_1 (&ref1, &ref2,
366 tbaa_p
367 && MEM_ALIAS_SET (x) != 0
368 && MEM_ALIAS_SET (mem) != 0);
369 }
370
371 /* Returns a pointer to the alias set entry for ALIAS_SET, if there is
372 such an entry, or NULL otherwise. */
373
374 static inline alias_set_entry *
375 get_alias_set_entry (alias_set_type alias_set)
376 {
377 return (*alias_sets)[alias_set];
378 }
379
380 /* Returns nonzero if the alias sets for MEM1 and MEM2 are such that
381 the two MEMs cannot alias each other. */
382
383 static inline int
384 mems_in_disjoint_alias_sets_p (const_rtx mem1, const_rtx mem2)
385 {
386 return (flag_strict_aliasing
387 && ! alias_sets_conflict_p (MEM_ALIAS_SET (mem1),
388 MEM_ALIAS_SET (mem2)));
389 }
390
391 /* Return true if the first alias set is a subset of the second. */
392
393 bool
394 alias_set_subset_of (alias_set_type set1, alias_set_type set2)
395 {
396 alias_set_entry *ase2;
397
398 /* Disable TBAA oracle with !flag_strict_aliasing. */
399 if (!flag_strict_aliasing)
400 return true;
401
402 /* Everything is a subset of the "aliases everything" set. */
403 if (set2 == 0)
404 return true;
405
406 /* Check if set1 is a subset of set2. */
407 ase2 = get_alias_set_entry (set2);
408 if (ase2 != 0
409 && (ase2->has_zero_child
410 || (ase2->children && ase2->children->get (set1))))
411 return true;
412
413 /* As a special case we consider alias set of "void *" to be both subset
414 and superset of every alias set of a pointer. This extra symmetry does
415 not matter for alias_sets_conflict_p but it makes aliasing_component_refs_p
416 to return true on the following testcase:
417
418 void *ptr;
419 char **ptr2=(char **)&ptr;
420 *ptr2 = ...
421
422 Additionally if a set contains universal pointer, we consider every pointer
423 to be a subset of it, but we do not represent this explicitely - doing so
424 would require us to update transitive closure each time we introduce new
425 pointer type. This makes aliasing_component_refs_p to return true
426 on the following testcase:
427
428 struct a {void *ptr;}
429 char **ptr = (char **)&a.ptr;
430 ptr = ...
431
432 This makes void * truly universal pointer type. See pointer handling in
433 get_alias_set for more details. */
434 if (ase2 && ase2->has_pointer)
435 {
436 alias_set_entry *ase1 = get_alias_set_entry (set1);
437
438 if (ase1 && ase1->is_pointer)
439 {
440 alias_set_type voidptr_set = TYPE_ALIAS_SET (ptr_type_node);
441 /* If one is ptr_type_node and other is pointer, then we consider
442 them subset of each other. */
443 if (set1 == voidptr_set || set2 == voidptr_set)
444 return true;
445 /* If SET2 contains universal pointer's alias set, then we consdier
446 every (non-universal) pointer. */
447 if (ase2->children && set1 != voidptr_set
448 && ase2->children->get (voidptr_set))
449 return true;
450 }
451 }
452 return false;
453 }
454
455 /* Return 1 if the two specified alias sets may conflict. */
456
457 int
458 alias_sets_conflict_p (alias_set_type set1, alias_set_type set2)
459 {
460 alias_set_entry *ase1;
461 alias_set_entry *ase2;
462
463 /* The easy case. */
464 if (alias_sets_must_conflict_p (set1, set2))
465 return 1;
466
467 /* See if the first alias set is a subset of the second. */
468 ase1 = get_alias_set_entry (set1);
469 if (ase1 != 0
470 && ase1->children && ase1->children->get (set2))
471 {
472 ++alias_stats.num_dag;
473 return 1;
474 }
475
476 /* Now do the same, but with the alias sets reversed. */
477 ase2 = get_alias_set_entry (set2);
478 if (ase2 != 0
479 && ase2->children && ase2->children->get (set1))
480 {
481 ++alias_stats.num_dag;
482 return 1;
483 }
484
485 /* We want void * to be compatible with any other pointer without
486 really dropping it to alias set 0. Doing so would make it
487 compatible with all non-pointer types too.
488
489 This is not strictly necessary by the C/C++ language
490 standards, but avoids common type punning mistakes. In
491 addition to that, we need the existence of such universal
492 pointer to implement Fortran's C_PTR type (which is defined as
493 type compatible with all C pointers). */
494 if (ase1 && ase2 && ase1->has_pointer && ase2->has_pointer)
495 {
496 alias_set_type voidptr_set = TYPE_ALIAS_SET (ptr_type_node);
497
498 /* If one of the sets corresponds to universal pointer,
499 we consider it to conflict with anything that is
500 or contains pointer. */
501 if (set1 == voidptr_set || set2 == voidptr_set)
502 {
503 ++alias_stats.num_universal;
504 return true;
505 }
506 /* If one of sets is (non-universal) pointer and the other
507 contains universal pointer, we also get conflict. */
508 if (ase1->is_pointer && set2 != voidptr_set
509 && ase2->children && ase2->children->get (voidptr_set))
510 {
511 ++alias_stats.num_universal;
512 return true;
513 }
514 if (ase2->is_pointer && set1 != voidptr_set
515 && ase1->children && ase1->children->get (voidptr_set))
516 {
517 ++alias_stats.num_universal;
518 return true;
519 }
520 }
521
522 ++alias_stats.num_disambiguated;
523
524 /* The two alias sets are distinct and neither one is the
525 child of the other. Therefore, they cannot conflict. */
526 return 0;
527 }
528
529 /* Return 1 if the two specified alias sets will always conflict. */
530
531 int
532 alias_sets_must_conflict_p (alias_set_type set1, alias_set_type set2)
533 {
534 /* Disable TBAA oracle with !flag_strict_aliasing. */
535 if (!flag_strict_aliasing)
536 return 1;
537 if (set1 == 0 || set2 == 0)
538 {
539 ++alias_stats.num_alias_zero;
540 return 1;
541 }
542 if (set1 == set2)
543 {
544 ++alias_stats.num_same_alias_set;
545 return 1;
546 }
547
548 return 0;
549 }
550
551 /* Return 1 if any MEM object of type T1 will always conflict (using the
552 dependency routines in this file) with any MEM object of type T2.
553 This is used when allocating temporary storage. If T1 and/or T2 are
554 NULL_TREE, it means we know nothing about the storage. */
555
556 int
557 objects_must_conflict_p (tree t1, tree t2)
558 {
559 alias_set_type set1, set2;
560
561 /* If neither has a type specified, we don't know if they'll conflict
562 because we may be using them to store objects of various types, for
563 example the argument and local variables areas of inlined functions. */
564 if (t1 == 0 && t2 == 0)
565 return 0;
566
567 /* If they are the same type, they must conflict. */
568 if (t1 == t2)
569 {
570 ++alias_stats.num_same_objects;
571 return 1;
572 }
573 /* Likewise if both are volatile. */
574 if (t1 != 0 && TYPE_VOLATILE (t1) && t2 != 0 && TYPE_VOLATILE (t2))
575 {
576 ++alias_stats.num_volatile;
577 return 1;
578 }
579
580 set1 = t1 ? get_alias_set (t1) : 0;
581 set2 = t2 ? get_alias_set (t2) : 0;
582
583 /* We can't use alias_sets_conflict_p because we must make sure
584 that every subtype of t1 will conflict with every subtype of
585 t2 for which a pair of subobjects of these respective subtypes
586 overlaps on the stack. */
587 return alias_sets_must_conflict_p (set1, set2);
588 }
589 \f
590 /* Return the outermost parent of component present in the chain of
591 component references handled by get_inner_reference in T with the
592 following property:
593 - the component is non-addressable
594 or NULL_TREE if no such parent exists. In the former cases, the alias
595 set of this parent is the alias set that must be used for T itself. */
596
597 tree
598 component_uses_parent_alias_set_from (const_tree t)
599 {
600 const_tree found = NULL_TREE;
601
602 while (handled_component_p (t))
603 {
604 switch (TREE_CODE (t))
605 {
606 case COMPONENT_REF:
607 if (DECL_NONADDRESSABLE_P (TREE_OPERAND (t, 1)))
608 found = t;
609 /* Permit type-punning when accessing a union, provided the access
610 is directly through the union. For example, this code does not
611 permit taking the address of a union member and then storing
612 through it. Even the type-punning allowed here is a GCC
613 extension, albeit a common and useful one; the C standard says
614 that such accesses have implementation-defined behavior. */
615 else if (TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == UNION_TYPE)
616 found = t;
617 break;
618
619 case ARRAY_REF:
620 case ARRAY_RANGE_REF:
621 if (TYPE_NONALIASED_COMPONENT (TREE_TYPE (TREE_OPERAND (t, 0))))
622 found = t;
623 break;
624
625 case REALPART_EXPR:
626 case IMAGPART_EXPR:
627 break;
628
629 case BIT_FIELD_REF:
630 case VIEW_CONVERT_EXPR:
631 /* Bitfields and casts are never addressable. */
632 found = t;
633 break;
634
635 default:
636 gcc_unreachable ();
637 }
638
639 t = TREE_OPERAND (t, 0);
640 }
641
642 if (found)
643 return TREE_OPERAND (found, 0);
644
645 return NULL_TREE;
646 }
647
648
649 /* Return whether the pointer-type T effective for aliasing may
650 access everything and thus the reference has to be assigned
651 alias-set zero. */
652
653 static bool
654 ref_all_alias_ptr_type_p (const_tree t)
655 {
656 return (TREE_CODE (TREE_TYPE (t)) == VOID_TYPE
657 || TYPE_REF_CAN_ALIAS_ALL (t));
658 }
659
660 /* Return the alias set for the memory pointed to by T, which may be
661 either a type or an expression. Return -1 if there is nothing
662 special about dereferencing T. */
663
664 static alias_set_type
665 get_deref_alias_set_1 (tree t)
666 {
667 /* All we care about is the type. */
668 if (! TYPE_P (t))
669 t = TREE_TYPE (t);
670
671 /* If we have an INDIRECT_REF via a void pointer, we don't
672 know anything about what that might alias. Likewise if the
673 pointer is marked that way. */
674 if (ref_all_alias_ptr_type_p (t))
675 return 0;
676
677 return -1;
678 }
679
680 /* Return the alias set for the memory pointed to by T, which may be
681 either a type or an expression. */
682
683 alias_set_type
684 get_deref_alias_set (tree t)
685 {
686 /* If we're not doing any alias analysis, just assume everything
687 aliases everything else. */
688 if (!flag_strict_aliasing)
689 return 0;
690
691 alias_set_type set = get_deref_alias_set_1 (t);
692
693 /* Fall back to the alias-set of the pointed-to type. */
694 if (set == -1)
695 {
696 if (! TYPE_P (t))
697 t = TREE_TYPE (t);
698 set = get_alias_set (TREE_TYPE (t));
699 }
700
701 return set;
702 }
703
704 /* Return the pointer-type relevant for TBAA purposes from the
705 memory reference tree *T or NULL_TREE in which case *T is
706 adjusted to point to the outermost component reference that
707 can be used for assigning an alias set. */
708
709 static tree
710 reference_alias_ptr_type_1 (tree *t)
711 {
712 tree inner;
713
714 /* Get the base object of the reference. */
715 inner = *t;
716 while (handled_component_p (inner))
717 {
718 /* If there is a VIEW_CONVERT_EXPR in the chain we cannot use
719 the type of any component references that wrap it to
720 determine the alias-set. */
721 if (TREE_CODE (inner) == VIEW_CONVERT_EXPR)
722 *t = TREE_OPERAND (inner, 0);
723 inner = TREE_OPERAND (inner, 0);
724 }
725
726 /* Handle pointer dereferences here, they can override the
727 alias-set. */
728 if (INDIRECT_REF_P (inner)
729 && ref_all_alias_ptr_type_p (TREE_TYPE (TREE_OPERAND (inner, 0))))
730 return TREE_TYPE (TREE_OPERAND (inner, 0));
731 else if (TREE_CODE (inner) == TARGET_MEM_REF)
732 return TREE_TYPE (TMR_OFFSET (inner));
733 else if (TREE_CODE (inner) == MEM_REF
734 && ref_all_alias_ptr_type_p (TREE_TYPE (TREE_OPERAND (inner, 1))))
735 return TREE_TYPE (TREE_OPERAND (inner, 1));
736
737 /* If the innermost reference is a MEM_REF that has a
738 conversion embedded treat it like a VIEW_CONVERT_EXPR above,
739 using the memory access type for determining the alias-set. */
740 if (TREE_CODE (inner) == MEM_REF
741 && (TYPE_MAIN_VARIANT (TREE_TYPE (inner))
742 != TYPE_MAIN_VARIANT
743 (TREE_TYPE (TREE_TYPE (TREE_OPERAND (inner, 1))))))
744 return TREE_TYPE (TREE_OPERAND (inner, 1));
745
746 /* Otherwise, pick up the outermost object that we could have
747 a pointer to. */
748 tree tem = component_uses_parent_alias_set_from (*t);
749 if (tem)
750 *t = tem;
751
752 return NULL_TREE;
753 }
754
755 /* Return the pointer-type relevant for TBAA purposes from the
756 gimple memory reference tree T. This is the type to be used for
757 the offset operand of MEM_REF or TARGET_MEM_REF replacements of T
758 and guarantees that get_alias_set will return the same alias
759 set for T and the replacement. */
760
761 tree
762 reference_alias_ptr_type (tree t)
763 {
764 /* If the frontend assigns this alias-set zero, preserve that. */
765 if (lang_hooks.get_alias_set (t) == 0)
766 return ptr_type_node;
767
768 tree ptype = reference_alias_ptr_type_1 (&t);
769 /* If there is a given pointer type for aliasing purposes, return it. */
770 if (ptype != NULL_TREE)
771 return ptype;
772
773 /* Otherwise build one from the outermost component reference we
774 may use. */
775 if (TREE_CODE (t) == MEM_REF
776 || TREE_CODE (t) == TARGET_MEM_REF)
777 return TREE_TYPE (TREE_OPERAND (t, 1));
778 else
779 return build_pointer_type (TYPE_MAIN_VARIANT (TREE_TYPE (t)));
780 }
781
782 /* Return whether the pointer-types T1 and T2 used to determine
783 two alias sets of two references will yield the same answer
784 from get_deref_alias_set. */
785
786 bool
787 alias_ptr_types_compatible_p (tree t1, tree t2)
788 {
789 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
790 return true;
791
792 if (ref_all_alias_ptr_type_p (t1)
793 || ref_all_alias_ptr_type_p (t2))
794 return false;
795
796 return (TYPE_MAIN_VARIANT (TREE_TYPE (t1))
797 == TYPE_MAIN_VARIANT (TREE_TYPE (t2)));
798 }
799
800 /* Create emptry alias set entry. */
801
802 alias_set_entry *
803 init_alias_set_entry (alias_set_type set)
804 {
805 alias_set_entry *ase = ggc_alloc<alias_set_entry> ();
806 ase->alias_set = set;
807 ase->children = NULL;
808 ase->has_zero_child = false;
809 ase->is_pointer = false;
810 ase->has_pointer = false;
811 gcc_checking_assert (!get_alias_set_entry (set));
812 (*alias_sets)[set] = ase;
813 return ase;
814 }
815
816 /* Return the alias set for T, which may be either a type or an
817 expression. Call language-specific routine for help, if needed. */
818
819 alias_set_type
820 get_alias_set (tree t)
821 {
822 alias_set_type set;
823
824 /* We cannot give up with -fno-strict-aliasing because we need to build
825 proper type representation for possible functions which are build with
826 -fstrict-aliasing. */
827
828 /* return 0 if this or its type is an error. */
829 if (t == error_mark_node
830 || (! TYPE_P (t)
831 && (TREE_TYPE (t) == 0 || TREE_TYPE (t) == error_mark_node)))
832 return 0;
833
834 /* We can be passed either an expression or a type. This and the
835 language-specific routine may make mutually-recursive calls to each other
836 to figure out what to do. At each juncture, we see if this is a tree
837 that the language may need to handle specially. First handle things that
838 aren't types. */
839 if (! TYPE_P (t))
840 {
841 /* Give the language a chance to do something with this tree
842 before we look at it. */
843 STRIP_NOPS (t);
844 set = lang_hooks.get_alias_set (t);
845 if (set != -1)
846 return set;
847
848 /* Get the alias pointer-type to use or the outermost object
849 that we could have a pointer to. */
850 tree ptype = reference_alias_ptr_type_1 (&t);
851 if (ptype != NULL)
852 return get_deref_alias_set (ptype);
853
854 /* If we've already determined the alias set for a decl, just return
855 it. This is necessary for C++ anonymous unions, whose component
856 variables don't look like union members (boo!). */
857 if (VAR_P (t)
858 && DECL_RTL_SET_P (t) && MEM_P (DECL_RTL (t)))
859 return MEM_ALIAS_SET (DECL_RTL (t));
860
861 /* Now all we care about is the type. */
862 t = TREE_TYPE (t);
863 }
864
865 /* Variant qualifiers don't affect the alias set, so get the main
866 variant. */
867 t = TYPE_MAIN_VARIANT (t);
868
869 if (AGGREGATE_TYPE_P (t)
870 && TYPE_TYPELESS_STORAGE (t))
871 return 0;
872
873 /* Always use the canonical type as well. If this is a type that
874 requires structural comparisons to identify compatible types
875 use alias set zero. */
876 if (TYPE_STRUCTURAL_EQUALITY_P (t))
877 {
878 /* Allow the language to specify another alias set for this
879 type. */
880 set = lang_hooks.get_alias_set (t);
881 if (set != -1)
882 return set;
883 /* Handle structure type equality for pointer types, arrays and vectors.
884 This is easy to do, because the code bellow ignore canonical types on
885 these anyway. This is important for LTO, where TYPE_CANONICAL for
886 pointers cannot be meaningfuly computed by the frotnend. */
887 if (canonical_type_used_p (t))
888 {
889 /* In LTO we set canonical types for all types where it makes
890 sense to do so. Double check we did not miss some type. */
891 gcc_checking_assert (!in_lto_p || !type_with_alias_set_p (t));
892 return 0;
893 }
894 }
895 else
896 {
897 t = TYPE_CANONICAL (t);
898 gcc_checking_assert (!TYPE_STRUCTURAL_EQUALITY_P (t));
899 }
900
901 /* If this is a type with a known alias set, return it. */
902 gcc_checking_assert (t == TYPE_MAIN_VARIANT (t));
903 if (TYPE_ALIAS_SET_KNOWN_P (t))
904 return TYPE_ALIAS_SET (t);
905
906 /* We don't want to set TYPE_ALIAS_SET for incomplete types. */
907 if (!COMPLETE_TYPE_P (t))
908 {
909 /* For arrays with unknown size the conservative answer is the
910 alias set of the element type. */
911 if (TREE_CODE (t) == ARRAY_TYPE)
912 return get_alias_set (TREE_TYPE (t));
913
914 /* But return zero as a conservative answer for incomplete types. */
915 return 0;
916 }
917
918 /* See if the language has special handling for this type. */
919 set = lang_hooks.get_alias_set (t);
920 if (set != -1)
921 return set;
922
923 /* There are no objects of FUNCTION_TYPE, so there's no point in
924 using up an alias set for them. (There are, of course, pointers
925 and references to functions, but that's different.) */
926 else if (TREE_CODE (t) == FUNCTION_TYPE || TREE_CODE (t) == METHOD_TYPE)
927 set = 0;
928
929 /* Unless the language specifies otherwise, let vector types alias
930 their components. This avoids some nasty type punning issues in
931 normal usage. And indeed lets vectors be treated more like an
932 array slice. */
933 else if (TREE_CODE (t) == VECTOR_TYPE)
934 set = get_alias_set (TREE_TYPE (t));
935
936 /* Unless the language specifies otherwise, treat array types the
937 same as their components. This avoids the asymmetry we get
938 through recording the components. Consider accessing a
939 character(kind=1) through a reference to a character(kind=1)[1:1].
940 Or consider if we want to assign integer(kind=4)[0:D.1387] and
941 integer(kind=4)[4] the same alias set or not.
942 Just be pragmatic here and make sure the array and its element
943 type get the same alias set assigned. */
944 else if (TREE_CODE (t) == ARRAY_TYPE
945 && (!TYPE_NONALIASED_COMPONENT (t)
946 || TYPE_STRUCTURAL_EQUALITY_P (t)))
947 set = get_alias_set (TREE_TYPE (t));
948
949 /* From the former common C and C++ langhook implementation:
950
951 Unfortunately, there is no canonical form of a pointer type.
952 In particular, if we have `typedef int I', then `int *', and
953 `I *' are different types. So, we have to pick a canonical
954 representative. We do this below.
955
956 Technically, this approach is actually more conservative that
957 it needs to be. In particular, `const int *' and `int *'
958 should be in different alias sets, according to the C and C++
959 standard, since their types are not the same, and so,
960 technically, an `int **' and `const int **' cannot point at
961 the same thing.
962
963 But, the standard is wrong. In particular, this code is
964 legal C++:
965
966 int *ip;
967 int **ipp = &ip;
968 const int* const* cipp = ipp;
969 And, it doesn't make sense for that to be legal unless you
970 can dereference IPP and CIPP. So, we ignore cv-qualifiers on
971 the pointed-to types. This issue has been reported to the
972 C++ committee.
973
974 For this reason go to canonical type of the unqalified pointer type.
975 Until GCC 6 this code set all pointers sets to have alias set of
976 ptr_type_node but that is a bad idea, because it prevents disabiguations
977 in between pointers. For Firefox this accounts about 20% of all
978 disambiguations in the program. */
979 else if (POINTER_TYPE_P (t) && t != ptr_type_node)
980 {
981 tree p;
982 auto_vec <bool, 8> reference;
983
984 /* Unnest all pointers and references.
985 We also want to make pointer to array/vector equivalent to pointer to
986 its element (see the reasoning above). Skip all those types, too. */
987 for (p = t; POINTER_TYPE_P (p)
988 || (TREE_CODE (p) == ARRAY_TYPE
989 && (!TYPE_NONALIASED_COMPONENT (p)
990 || !COMPLETE_TYPE_P (p)
991 || TYPE_STRUCTURAL_EQUALITY_P (p)))
992 || TREE_CODE (p) == VECTOR_TYPE;
993 p = TREE_TYPE (p))
994 {
995 /* Ada supports recusive pointers. Instead of doing recrusion check
996 just give up once the preallocated space of 8 elements is up.
997 In this case just punt to void * alias set. */
998 if (reference.length () == 8)
999 {
1000 p = ptr_type_node;
1001 break;
1002 }
1003 if (TREE_CODE (p) == REFERENCE_TYPE)
1004 /* In LTO we want languages that use references to be compatible
1005 with languages that use pointers. */
1006 reference.safe_push (true && !in_lto_p);
1007 if (TREE_CODE (p) == POINTER_TYPE)
1008 reference.safe_push (false);
1009 }
1010 p = TYPE_MAIN_VARIANT (p);
1011
1012 /* In LTO for C++ programs we can turn in complete types to complete
1013 using ODR name lookup. */
1014 if (in_lto_p && TYPE_STRUCTURAL_EQUALITY_P (p) && odr_type_p (p))
1015 {
1016 p = prevailing_odr_type (p);
1017 gcc_checking_assert (TYPE_MAIN_VARIANT (p) == p);
1018 }
1019
1020 /* Make void * compatible with char * and also void **.
1021 Programs are commonly violating TBAA by this.
1022
1023 We also make void * to conflict with every pointer
1024 (see record_component_aliases) and thus it is safe it to use it for
1025 pointers to types with TYPE_STRUCTURAL_EQUALITY_P. */
1026 if (TREE_CODE (p) == VOID_TYPE || TYPE_STRUCTURAL_EQUALITY_P (p))
1027 set = get_alias_set (ptr_type_node);
1028 else
1029 {
1030 /* Rebuild pointer type starting from canonical types using
1031 unqualified pointers and references only. This way all such
1032 pointers will have the same alias set and will conflict with
1033 each other.
1034
1035 Most of time we already have pointers or references of a given type.
1036 If not we build new one just to be sure that if someone later
1037 (probably only middle-end can, as we should assign all alias
1038 classes only after finishing translation unit) builds the pointer
1039 type, the canonical type will match. */
1040 p = TYPE_CANONICAL (p);
1041 while (!reference.is_empty ())
1042 {
1043 if (reference.pop ())
1044 p = build_reference_type (p);
1045 else
1046 p = build_pointer_type (p);
1047 gcc_checking_assert (p == TYPE_MAIN_VARIANT (p));
1048 /* build_pointer_type should always return the canonical type.
1049 For LTO TYPE_CANOINCAL may be NULL, because we do not compute
1050 them. Be sure that frontends do not glob canonical types of
1051 pointers in unexpected way and that p == TYPE_CANONICAL (p)
1052 in all other cases. */
1053 gcc_checking_assert (!TYPE_CANONICAL (p)
1054 || p == TYPE_CANONICAL (p));
1055 }
1056
1057 /* Assign the alias set to both p and t.
1058 We cannot call get_alias_set (p) here as that would trigger
1059 infinite recursion when p == t. In other cases it would just
1060 trigger unnecesary legwork of rebuilding the pointer again. */
1061 gcc_checking_assert (p == TYPE_MAIN_VARIANT (p));
1062 if (TYPE_ALIAS_SET_KNOWN_P (p))
1063 set = TYPE_ALIAS_SET (p);
1064 else
1065 {
1066 set = new_alias_set ();
1067 TYPE_ALIAS_SET (p) = set;
1068 }
1069 }
1070 }
1071 /* Alias set of ptr_type_node is special and serve as universal pointer which
1072 is TBAA compatible with every other pointer type. Be sure we have the
1073 alias set built even for LTO which otherwise keeps all TYPE_CANONICAL
1074 of pointer types NULL. */
1075 else if (t == ptr_type_node)
1076 set = new_alias_set ();
1077
1078 /* Otherwise make a new alias set for this type. */
1079 else
1080 {
1081 /* Each canonical type gets its own alias set, so canonical types
1082 shouldn't form a tree. It doesn't really matter for types
1083 we handle specially above, so only check it where it possibly
1084 would result in a bogus alias set. */
1085 gcc_checking_assert (TYPE_CANONICAL (t) == t);
1086
1087 set = new_alias_set ();
1088 }
1089
1090 TYPE_ALIAS_SET (t) = set;
1091
1092 /* If this is an aggregate type or a complex type, we must record any
1093 component aliasing information. */
1094 if (AGGREGATE_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
1095 record_component_aliases (t);
1096
1097 /* We treat pointer types specially in alias_set_subset_of. */
1098 if (POINTER_TYPE_P (t) && set)
1099 {
1100 alias_set_entry *ase = get_alias_set_entry (set);
1101 if (!ase)
1102 ase = init_alias_set_entry (set);
1103 ase->is_pointer = true;
1104 ase->has_pointer = true;
1105 }
1106
1107 return set;
1108 }
1109
1110 /* Return a brand-new alias set. */
1111
1112 alias_set_type
1113 new_alias_set (void)
1114 {
1115 if (alias_sets == 0)
1116 vec_safe_push (alias_sets, (alias_set_entry *) NULL);
1117 vec_safe_push (alias_sets, (alias_set_entry *) NULL);
1118 return alias_sets->length () - 1;
1119 }
1120
1121 /* Indicate that things in SUBSET can alias things in SUPERSET, but that
1122 not everything that aliases SUPERSET also aliases SUBSET. For example,
1123 in C, a store to an `int' can alias a load of a structure containing an
1124 `int', and vice versa. But it can't alias a load of a 'double' member
1125 of the same structure. Here, the structure would be the SUPERSET and
1126 `int' the SUBSET. This relationship is also described in the comment at
1127 the beginning of this file.
1128
1129 This function should be called only once per SUPERSET/SUBSET pair.
1130
1131 It is illegal for SUPERSET to be zero; everything is implicitly a
1132 subset of alias set zero. */
1133
1134 void
1135 record_alias_subset (alias_set_type superset, alias_set_type subset)
1136 {
1137 alias_set_entry *superset_entry;
1138 alias_set_entry *subset_entry;
1139
1140 /* It is possible in complex type situations for both sets to be the same,
1141 in which case we can ignore this operation. */
1142 if (superset == subset)
1143 return;
1144
1145 gcc_assert (superset);
1146
1147 superset_entry = get_alias_set_entry (superset);
1148 if (superset_entry == 0)
1149 {
1150 /* Create an entry for the SUPERSET, so that we have a place to
1151 attach the SUBSET. */
1152 superset_entry = init_alias_set_entry (superset);
1153 }
1154
1155 if (subset == 0)
1156 superset_entry->has_zero_child = 1;
1157 else
1158 {
1159 subset_entry = get_alias_set_entry (subset);
1160 if (!superset_entry->children)
1161 superset_entry->children
1162 = hash_map<alias_set_hash, int>::create_ggc (64);
1163 /* If there is an entry for the subset, enter all of its children
1164 (if they are not already present) as children of the SUPERSET. */
1165 if (subset_entry)
1166 {
1167 if (subset_entry->has_zero_child)
1168 superset_entry->has_zero_child = true;
1169 if (subset_entry->has_pointer)
1170 superset_entry->has_pointer = true;
1171
1172 if (subset_entry->children)
1173 {
1174 hash_map<alias_set_hash, int>::iterator iter
1175 = subset_entry->children->begin ();
1176 for (; iter != subset_entry->children->end (); ++iter)
1177 superset_entry->children->put ((*iter).first, (*iter).second);
1178 }
1179 }
1180
1181 /* Enter the SUBSET itself as a child of the SUPERSET. */
1182 superset_entry->children->put (subset, 0);
1183 }
1184 }
1185
1186 /* Record that component types of TYPE, if any, are part of that type for
1187 aliasing purposes. For record types, we only record component types
1188 for fields that are not marked non-addressable. For array types, we
1189 only record the component type if it is not marked non-aliased. */
1190
1191 void
1192 record_component_aliases (tree type)
1193 {
1194 alias_set_type superset = get_alias_set (type);
1195 tree field;
1196
1197 if (superset == 0)
1198 return;
1199
1200 switch (TREE_CODE (type))
1201 {
1202 case RECORD_TYPE:
1203 case UNION_TYPE:
1204 case QUAL_UNION_TYPE:
1205 for (field = TYPE_FIELDS (type); field != 0; field = DECL_CHAIN (field))
1206 if (TREE_CODE (field) == FIELD_DECL && !DECL_NONADDRESSABLE_P (field))
1207 {
1208 /* LTO type merging does not make any difference between
1209 component pointer types. We may have
1210
1211 struct foo {int *a;};
1212
1213 as TYPE_CANONICAL of
1214
1215 struct bar {float *a;};
1216
1217 Because accesses to int * and float * do not alias, we would get
1218 false negative when accessing the same memory location by
1219 float ** and bar *. We thus record the canonical type as:
1220
1221 struct {void *a;};
1222
1223 void * is special cased and works as a universal pointer type.
1224 Accesses to it conflicts with accesses to any other pointer
1225 type. */
1226 tree t = TREE_TYPE (field);
1227 if (in_lto_p)
1228 {
1229 /* VECTOR_TYPE and ARRAY_TYPE share the alias set with their
1230 element type and that type has to be normalized to void *,
1231 too, in the case it is a pointer. */
1232 while (!canonical_type_used_p (t) && !POINTER_TYPE_P (t))
1233 {
1234 gcc_checking_assert (TYPE_STRUCTURAL_EQUALITY_P (t));
1235 t = TREE_TYPE (t);
1236 }
1237 if (POINTER_TYPE_P (t))
1238 t = ptr_type_node;
1239 else if (flag_checking)
1240 gcc_checking_assert (get_alias_set (t)
1241 == get_alias_set (TREE_TYPE (field)));
1242 }
1243
1244 record_alias_subset (superset, get_alias_set (t));
1245 }
1246 break;
1247
1248 case COMPLEX_TYPE:
1249 record_alias_subset (superset, get_alias_set (TREE_TYPE (type)));
1250 break;
1251
1252 /* VECTOR_TYPE and ARRAY_TYPE share the alias set with their
1253 element type. */
1254
1255 default:
1256 break;
1257 }
1258 }
1259
1260 /* Allocate an alias set for use in storing and reading from the varargs
1261 spill area. */
1262
1263 static GTY(()) alias_set_type varargs_set = -1;
1264
1265 alias_set_type
1266 get_varargs_alias_set (void)
1267 {
1268 #if 1
1269 /* We now lower VA_ARG_EXPR, and there's currently no way to attach the
1270 varargs alias set to an INDIRECT_REF (FIXME!), so we can't
1271 consistently use the varargs alias set for loads from the varargs
1272 area. So don't use it anywhere. */
1273 return 0;
1274 #else
1275 if (varargs_set == -1)
1276 varargs_set = new_alias_set ();
1277
1278 return varargs_set;
1279 #endif
1280 }
1281
1282 /* Likewise, but used for the fixed portions of the frame, e.g., register
1283 save areas. */
1284
1285 static GTY(()) alias_set_type frame_set = -1;
1286
1287 alias_set_type
1288 get_frame_alias_set (void)
1289 {
1290 if (frame_set == -1)
1291 frame_set = new_alias_set ();
1292
1293 return frame_set;
1294 }
1295
1296 /* Create a new, unique base with id ID. */
1297
1298 static rtx
1299 unique_base_value (HOST_WIDE_INT id)
1300 {
1301 return gen_rtx_ADDRESS (Pmode, id);
1302 }
1303
1304 /* Return true if accesses based on any other base value cannot alias
1305 those based on X. */
1306
1307 static bool
1308 unique_base_value_p (rtx x)
1309 {
1310 return GET_CODE (x) == ADDRESS && GET_MODE (x) == Pmode;
1311 }
1312
1313 /* Return true if X is known to be a base value. */
1314
1315 static bool
1316 known_base_value_p (rtx x)
1317 {
1318 switch (GET_CODE (x))
1319 {
1320 case LABEL_REF:
1321 case SYMBOL_REF:
1322 return true;
1323
1324 case ADDRESS:
1325 /* Arguments may or may not be bases; we don't know for sure. */
1326 return GET_MODE (x) != VOIDmode;
1327
1328 default:
1329 return false;
1330 }
1331 }
1332
1333 /* Inside SRC, the source of a SET, find a base address. */
1334
1335 static rtx
1336 find_base_value (rtx src)
1337 {
1338 unsigned int regno;
1339 scalar_int_mode int_mode;
1340
1341 #if defined (FIND_BASE_TERM)
1342 /* Try machine-dependent ways to find the base term. */
1343 src = FIND_BASE_TERM (src);
1344 #endif
1345
1346 switch (GET_CODE (src))
1347 {
1348 case SYMBOL_REF:
1349 case LABEL_REF:
1350 return src;
1351
1352 case REG:
1353 regno = REGNO (src);
1354 /* At the start of a function, argument registers have known base
1355 values which may be lost later. Returning an ADDRESS
1356 expression here allows optimization based on argument values
1357 even when the argument registers are used for other purposes. */
1358 if (regno < FIRST_PSEUDO_REGISTER && copying_arguments)
1359 return new_reg_base_value[regno];
1360
1361 /* If a pseudo has a known base value, return it. Do not do this
1362 for non-fixed hard regs since it can result in a circular
1363 dependency chain for registers which have values at function entry.
1364
1365 The test above is not sufficient because the scheduler may move
1366 a copy out of an arg reg past the NOTE_INSN_FUNCTION_BEGIN. */
1367 if ((regno >= FIRST_PSEUDO_REGISTER || fixed_regs[regno])
1368 && regno < vec_safe_length (reg_base_value))
1369 {
1370 /* If we're inside init_alias_analysis, use new_reg_base_value
1371 to reduce the number of relaxation iterations. */
1372 if (new_reg_base_value && new_reg_base_value[regno]
1373 && DF_REG_DEF_COUNT (regno) == 1)
1374 return new_reg_base_value[regno];
1375
1376 if ((*reg_base_value)[regno])
1377 return (*reg_base_value)[regno];
1378 }
1379
1380 return 0;
1381
1382 case MEM:
1383 /* Check for an argument passed in memory. Only record in the
1384 copying-arguments block; it is too hard to track changes
1385 otherwise. */
1386 if (copying_arguments
1387 && (XEXP (src, 0) == arg_pointer_rtx
1388 || (GET_CODE (XEXP (src, 0)) == PLUS
1389 && XEXP (XEXP (src, 0), 0) == arg_pointer_rtx)))
1390 return arg_base_value;
1391 return 0;
1392
1393 case CONST:
1394 src = XEXP (src, 0);
1395 if (GET_CODE (src) != PLUS && GET_CODE (src) != MINUS)
1396 break;
1397
1398 /* fall through */
1399
1400 case PLUS:
1401 case MINUS:
1402 {
1403 rtx temp, src_0 = XEXP (src, 0), src_1 = XEXP (src, 1);
1404
1405 /* If either operand is a REG that is a known pointer, then it
1406 is the base. */
1407 if (REG_P (src_0) && REG_POINTER (src_0))
1408 return find_base_value (src_0);
1409 if (REG_P (src_1) && REG_POINTER (src_1))
1410 return find_base_value (src_1);
1411
1412 /* If either operand is a REG, then see if we already have
1413 a known value for it. */
1414 if (REG_P (src_0))
1415 {
1416 temp = find_base_value (src_0);
1417 if (temp != 0)
1418 src_0 = temp;
1419 }
1420
1421 if (REG_P (src_1))
1422 {
1423 temp = find_base_value (src_1);
1424 if (temp!= 0)
1425 src_1 = temp;
1426 }
1427
1428 /* If either base is named object or a special address
1429 (like an argument or stack reference), then use it for the
1430 base term. */
1431 if (src_0 != 0 && known_base_value_p (src_0))
1432 return src_0;
1433
1434 if (src_1 != 0 && known_base_value_p (src_1))
1435 return src_1;
1436
1437 /* Guess which operand is the base address:
1438 If either operand is a symbol, then it is the base. If
1439 either operand is a CONST_INT, then the other is the base. */
1440 if (CONST_INT_P (src_1) || CONSTANT_P (src_0))
1441 return find_base_value (src_0);
1442 else if (CONST_INT_P (src_0) || CONSTANT_P (src_1))
1443 return find_base_value (src_1);
1444
1445 return 0;
1446 }
1447
1448 case LO_SUM:
1449 /* The standard form is (lo_sum reg sym) so look only at the
1450 second operand. */
1451 return find_base_value (XEXP (src, 1));
1452
1453 case AND:
1454 /* If the second operand is constant set the base
1455 address to the first operand. */
1456 if (CONST_INT_P (XEXP (src, 1)) && INTVAL (XEXP (src, 1)) != 0)
1457 return find_base_value (XEXP (src, 0));
1458 return 0;
1459
1460 case TRUNCATE:
1461 /* As we do not know which address space the pointer is referring to, we can
1462 handle this only if the target does not support different pointer or
1463 address modes depending on the address space. */
1464 if (!target_default_pointer_address_modes_p ())
1465 break;
1466 if (!is_a <scalar_int_mode> (GET_MODE (src), &int_mode)
1467 || GET_MODE_PRECISION (int_mode) < GET_MODE_PRECISION (Pmode))
1468 break;
1469 /* Fall through. */
1470 case HIGH:
1471 case PRE_INC:
1472 case PRE_DEC:
1473 case POST_INC:
1474 case POST_DEC:
1475 case PRE_MODIFY:
1476 case POST_MODIFY:
1477 return find_base_value (XEXP (src, 0));
1478
1479 case ZERO_EXTEND:
1480 case SIGN_EXTEND: /* used for NT/Alpha pointers */
1481 /* As we do not know which address space the pointer is referring to, we can
1482 handle this only if the target does not support different pointer or
1483 address modes depending on the address space. */
1484 if (!target_default_pointer_address_modes_p ())
1485 break;
1486
1487 {
1488 rtx temp = find_base_value (XEXP (src, 0));
1489
1490 if (temp != 0 && CONSTANT_P (temp))
1491 temp = convert_memory_address (Pmode, temp);
1492
1493 return temp;
1494 }
1495
1496 default:
1497 break;
1498 }
1499
1500 return 0;
1501 }
1502
1503 /* Called from init_alias_analysis indirectly through note_stores,
1504 or directly if DEST is a register with a REG_NOALIAS note attached.
1505 SET is null in the latter case. */
1506
1507 /* While scanning insns to find base values, reg_seen[N] is nonzero if
1508 register N has been set in this function. */
1509 static sbitmap reg_seen;
1510
1511 static void
1512 record_set (rtx dest, const_rtx set, void *data ATTRIBUTE_UNUSED)
1513 {
1514 unsigned regno;
1515 rtx src;
1516 int n;
1517
1518 if (!REG_P (dest))
1519 return;
1520
1521 regno = REGNO (dest);
1522
1523 gcc_checking_assert (regno < reg_base_value->length ());
1524
1525 n = REG_NREGS (dest);
1526 if (n != 1)
1527 {
1528 while (--n >= 0)
1529 {
1530 bitmap_set_bit (reg_seen, regno + n);
1531 new_reg_base_value[regno + n] = 0;
1532 }
1533 return;
1534 }
1535
1536 if (set)
1537 {
1538 /* A CLOBBER wipes out any old value but does not prevent a previously
1539 unset register from acquiring a base address (i.e. reg_seen is not
1540 set). */
1541 if (GET_CODE (set) == CLOBBER)
1542 {
1543 new_reg_base_value[regno] = 0;
1544 return;
1545 }
1546 /* A CLOBBER_HIGH only wipes out the old value if the mode of the old
1547 value is greater than that of the clobber. */
1548 else if (GET_CODE (set) == CLOBBER_HIGH)
1549 {
1550 if (new_reg_base_value[regno] != 0
1551 && reg_is_clobbered_by_clobber_high (
1552 regno, GET_MODE (new_reg_base_value[regno]), XEXP (set, 0)))
1553 new_reg_base_value[regno] = 0;
1554 return;
1555 }
1556
1557 src = SET_SRC (set);
1558 }
1559 else
1560 {
1561 /* There's a REG_NOALIAS note against DEST. */
1562 if (bitmap_bit_p (reg_seen, regno))
1563 {
1564 new_reg_base_value[regno] = 0;
1565 return;
1566 }
1567 bitmap_set_bit (reg_seen, regno);
1568 new_reg_base_value[regno] = unique_base_value (unique_id++);
1569 return;
1570 }
1571
1572 /* If this is not the first set of REGNO, see whether the new value
1573 is related to the old one. There are two cases of interest:
1574
1575 (1) The register might be assigned an entirely new value
1576 that has the same base term as the original set.
1577
1578 (2) The set might be a simple self-modification that
1579 cannot change REGNO's base value.
1580
1581 If neither case holds, reject the original base value as invalid.
1582 Note that the following situation is not detected:
1583
1584 extern int x, y; int *p = &x; p += (&y-&x);
1585
1586 ANSI C does not allow computing the difference of addresses
1587 of distinct top level objects. */
1588 if (new_reg_base_value[regno] != 0
1589 && find_base_value (src) != new_reg_base_value[regno])
1590 switch (GET_CODE (src))
1591 {
1592 case LO_SUM:
1593 case MINUS:
1594 if (XEXP (src, 0) != dest && XEXP (src, 1) != dest)
1595 new_reg_base_value[regno] = 0;
1596 break;
1597 case PLUS:
1598 /* If the value we add in the PLUS is also a valid base value,
1599 this might be the actual base value, and the original value
1600 an index. */
1601 {
1602 rtx other = NULL_RTX;
1603
1604 if (XEXP (src, 0) == dest)
1605 other = XEXP (src, 1);
1606 else if (XEXP (src, 1) == dest)
1607 other = XEXP (src, 0);
1608
1609 if (! other || find_base_value (other))
1610 new_reg_base_value[regno] = 0;
1611 break;
1612 }
1613 case AND:
1614 if (XEXP (src, 0) != dest || !CONST_INT_P (XEXP (src, 1)))
1615 new_reg_base_value[regno] = 0;
1616 break;
1617 default:
1618 new_reg_base_value[regno] = 0;
1619 break;
1620 }
1621 /* If this is the first set of a register, record the value. */
1622 else if ((regno >= FIRST_PSEUDO_REGISTER || ! fixed_regs[regno])
1623 && ! bitmap_bit_p (reg_seen, regno) && new_reg_base_value[regno] == 0)
1624 new_reg_base_value[regno] = find_base_value (src);
1625
1626 bitmap_set_bit (reg_seen, regno);
1627 }
1628
1629 /* Return REG_BASE_VALUE for REGNO. Selective scheduler uses this to avoid
1630 using hard registers with non-null REG_BASE_VALUE for renaming. */
1631 rtx
1632 get_reg_base_value (unsigned int regno)
1633 {
1634 return (*reg_base_value)[regno];
1635 }
1636
1637 /* If a value is known for REGNO, return it. */
1638
1639 rtx
1640 get_reg_known_value (unsigned int regno)
1641 {
1642 if (regno >= FIRST_PSEUDO_REGISTER)
1643 {
1644 regno -= FIRST_PSEUDO_REGISTER;
1645 if (regno < vec_safe_length (reg_known_value))
1646 return (*reg_known_value)[regno];
1647 }
1648 return NULL;
1649 }
1650
1651 /* Set it. */
1652
1653 static void
1654 set_reg_known_value (unsigned int regno, rtx val)
1655 {
1656 if (regno >= FIRST_PSEUDO_REGISTER)
1657 {
1658 regno -= FIRST_PSEUDO_REGISTER;
1659 if (regno < vec_safe_length (reg_known_value))
1660 (*reg_known_value)[regno] = val;
1661 }
1662 }
1663
1664 /* Similarly for reg_known_equiv_p. */
1665
1666 bool
1667 get_reg_known_equiv_p (unsigned int regno)
1668 {
1669 if (regno >= FIRST_PSEUDO_REGISTER)
1670 {
1671 regno -= FIRST_PSEUDO_REGISTER;
1672 if (regno < vec_safe_length (reg_known_value))
1673 return bitmap_bit_p (reg_known_equiv_p, regno);
1674 }
1675 return false;
1676 }
1677
1678 static void
1679 set_reg_known_equiv_p (unsigned int regno, bool val)
1680 {
1681 if (regno >= FIRST_PSEUDO_REGISTER)
1682 {
1683 regno -= FIRST_PSEUDO_REGISTER;
1684 if (regno < vec_safe_length (reg_known_value))
1685 {
1686 if (val)
1687 bitmap_set_bit (reg_known_equiv_p, regno);
1688 else
1689 bitmap_clear_bit (reg_known_equiv_p, regno);
1690 }
1691 }
1692 }
1693
1694
1695 /* Returns a canonical version of X, from the point of view alias
1696 analysis. (For example, if X is a MEM whose address is a register,
1697 and the register has a known value (say a SYMBOL_REF), then a MEM
1698 whose address is the SYMBOL_REF is returned.) */
1699
1700 rtx
1701 canon_rtx (rtx x)
1702 {
1703 /* Recursively look for equivalences. */
1704 if (REG_P (x) && REGNO (x) >= FIRST_PSEUDO_REGISTER)
1705 {
1706 rtx t = get_reg_known_value (REGNO (x));
1707 if (t == x)
1708 return x;
1709 if (t)
1710 return canon_rtx (t);
1711 }
1712
1713 if (GET_CODE (x) == PLUS)
1714 {
1715 rtx x0 = canon_rtx (XEXP (x, 0));
1716 rtx x1 = canon_rtx (XEXP (x, 1));
1717
1718 if (x0 != XEXP (x, 0) || x1 != XEXP (x, 1))
1719 return simplify_gen_binary (PLUS, GET_MODE (x), x0, x1);
1720 }
1721
1722 /* This gives us much better alias analysis when called from
1723 the loop optimizer. Note we want to leave the original
1724 MEM alone, but need to return the canonicalized MEM with
1725 all the flags with their original values. */
1726 else if (MEM_P (x))
1727 x = replace_equiv_address_nv (x, canon_rtx (XEXP (x, 0)));
1728
1729 return x;
1730 }
1731
1732 /* Return 1 if X and Y are identical-looking rtx's.
1733 Expect that X and Y has been already canonicalized.
1734
1735 We use the data in reg_known_value above to see if two registers with
1736 different numbers are, in fact, equivalent. */
1737
1738 static int
1739 rtx_equal_for_memref_p (const_rtx x, const_rtx y)
1740 {
1741 int i;
1742 int j;
1743 enum rtx_code code;
1744 const char *fmt;
1745
1746 if (x == 0 && y == 0)
1747 return 1;
1748 if (x == 0 || y == 0)
1749 return 0;
1750
1751 if (x == y)
1752 return 1;
1753
1754 code = GET_CODE (x);
1755 /* Rtx's of different codes cannot be equal. */
1756 if (code != GET_CODE (y))
1757 return 0;
1758
1759 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.
1760 (REG:SI x) and (REG:HI x) are NOT equivalent. */
1761
1762 if (GET_MODE (x) != GET_MODE (y))
1763 return 0;
1764
1765 /* Some RTL can be compared without a recursive examination. */
1766 switch (code)
1767 {
1768 case REG:
1769 return REGNO (x) == REGNO (y);
1770
1771 case LABEL_REF:
1772 return label_ref_label (x) == label_ref_label (y);
1773
1774 case SYMBOL_REF:
1775 return compare_base_symbol_refs (x, y) == 1;
1776
1777 case ENTRY_VALUE:
1778 /* This is magic, don't go through canonicalization et al. */
1779 return rtx_equal_p (ENTRY_VALUE_EXP (x), ENTRY_VALUE_EXP (y));
1780
1781 case VALUE:
1782 CASE_CONST_UNIQUE:
1783 /* Pointer equality guarantees equality for these nodes. */
1784 return 0;
1785
1786 default:
1787 break;
1788 }
1789
1790 /* canon_rtx knows how to handle plus. No need to canonicalize. */
1791 if (code == PLUS)
1792 return ((rtx_equal_for_memref_p (XEXP (x, 0), XEXP (y, 0))
1793 && rtx_equal_for_memref_p (XEXP (x, 1), XEXP (y, 1)))
1794 || (rtx_equal_for_memref_p (XEXP (x, 0), XEXP (y, 1))
1795 && rtx_equal_for_memref_p (XEXP (x, 1), XEXP (y, 0))));
1796 /* For commutative operations, the RTX match if the operand match in any
1797 order. Also handle the simple binary and unary cases without a loop. */
1798 if (COMMUTATIVE_P (x))
1799 {
1800 rtx xop0 = canon_rtx (XEXP (x, 0));
1801 rtx yop0 = canon_rtx (XEXP (y, 0));
1802 rtx yop1 = canon_rtx (XEXP (y, 1));
1803
1804 return ((rtx_equal_for_memref_p (xop0, yop0)
1805 && rtx_equal_for_memref_p (canon_rtx (XEXP (x, 1)), yop1))
1806 || (rtx_equal_for_memref_p (xop0, yop1)
1807 && rtx_equal_for_memref_p (canon_rtx (XEXP (x, 1)), yop0)));
1808 }
1809 else if (NON_COMMUTATIVE_P (x))
1810 {
1811 return (rtx_equal_for_memref_p (canon_rtx (XEXP (x, 0)),
1812 canon_rtx (XEXP (y, 0)))
1813 && rtx_equal_for_memref_p (canon_rtx (XEXP (x, 1)),
1814 canon_rtx (XEXP (y, 1))));
1815 }
1816 else if (UNARY_P (x))
1817 return rtx_equal_for_memref_p (canon_rtx (XEXP (x, 0)),
1818 canon_rtx (XEXP (y, 0)));
1819
1820 /* Compare the elements. If any pair of corresponding elements
1821 fail to match, return 0 for the whole things.
1822
1823 Limit cases to types which actually appear in addresses. */
1824
1825 fmt = GET_RTX_FORMAT (code);
1826 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1827 {
1828 switch (fmt[i])
1829 {
1830 case 'i':
1831 if (XINT (x, i) != XINT (y, i))
1832 return 0;
1833 break;
1834
1835 case 'p':
1836 if (maybe_ne (SUBREG_BYTE (x), SUBREG_BYTE (y)))
1837 return 0;
1838 break;
1839
1840 case 'E':
1841 /* Two vectors must have the same length. */
1842 if (XVECLEN (x, i) != XVECLEN (y, i))
1843 return 0;
1844
1845 /* And the corresponding elements must match. */
1846 for (j = 0; j < XVECLEN (x, i); j++)
1847 if (rtx_equal_for_memref_p (canon_rtx (XVECEXP (x, i, j)),
1848 canon_rtx (XVECEXP (y, i, j))) == 0)
1849 return 0;
1850 break;
1851
1852 case 'e':
1853 if (rtx_equal_for_memref_p (canon_rtx (XEXP (x, i)),
1854 canon_rtx (XEXP (y, i))) == 0)
1855 return 0;
1856 break;
1857
1858 /* This can happen for asm operands. */
1859 case 's':
1860 if (strcmp (XSTR (x, i), XSTR (y, i)))
1861 return 0;
1862 break;
1863
1864 /* This can happen for an asm which clobbers memory. */
1865 case '0':
1866 break;
1867
1868 /* It is believed that rtx's at this level will never
1869 contain anything but integers and other rtx's,
1870 except for within LABEL_REFs and SYMBOL_REFs. */
1871 default:
1872 gcc_unreachable ();
1873 }
1874 }
1875 return 1;
1876 }
1877
1878 static rtx
1879 find_base_term (rtx x, vec<std::pair<cselib_val *,
1880 struct elt_loc_list *> > &visited_vals)
1881 {
1882 cselib_val *val;
1883 struct elt_loc_list *l, *f;
1884 rtx ret;
1885 scalar_int_mode int_mode;
1886
1887 #if defined (FIND_BASE_TERM)
1888 /* Try machine-dependent ways to find the base term. */
1889 x = FIND_BASE_TERM (x);
1890 #endif
1891
1892 switch (GET_CODE (x))
1893 {
1894 case REG:
1895 return REG_BASE_VALUE (x);
1896
1897 case TRUNCATE:
1898 /* As we do not know which address space the pointer is referring to, we can
1899 handle this only if the target does not support different pointer or
1900 address modes depending on the address space. */
1901 if (!target_default_pointer_address_modes_p ())
1902 return 0;
1903 if (!is_a <scalar_int_mode> (GET_MODE (x), &int_mode)
1904 || GET_MODE_PRECISION (int_mode) < GET_MODE_PRECISION (Pmode))
1905 return 0;
1906 /* Fall through. */
1907 case HIGH:
1908 case PRE_INC:
1909 case PRE_DEC:
1910 case POST_INC:
1911 case POST_DEC:
1912 case PRE_MODIFY:
1913 case POST_MODIFY:
1914 return find_base_term (XEXP (x, 0), visited_vals);
1915
1916 case ZERO_EXTEND:
1917 case SIGN_EXTEND: /* Used for Alpha/NT pointers */
1918 /* As we do not know which address space the pointer is referring to, we can
1919 handle this only if the target does not support different pointer or
1920 address modes depending on the address space. */
1921 if (!target_default_pointer_address_modes_p ())
1922 return 0;
1923
1924 {
1925 rtx temp = find_base_term (XEXP (x, 0), visited_vals);
1926
1927 if (temp != 0 && CONSTANT_P (temp))
1928 temp = convert_memory_address (Pmode, temp);
1929
1930 return temp;
1931 }
1932
1933 case VALUE:
1934 val = CSELIB_VAL_PTR (x);
1935 ret = NULL_RTX;
1936
1937 if (!val)
1938 return ret;
1939
1940 if (cselib_sp_based_value_p (val))
1941 return static_reg_base_value[STACK_POINTER_REGNUM];
1942
1943 f = val->locs;
1944 /* Reset val->locs to avoid infinite recursion. */
1945 if (f)
1946 visited_vals.safe_push (std::make_pair (val, f));
1947 val->locs = NULL;
1948
1949 for (l = f; l; l = l->next)
1950 if (GET_CODE (l->loc) == VALUE
1951 && CSELIB_VAL_PTR (l->loc)->locs
1952 && !CSELIB_VAL_PTR (l->loc)->locs->next
1953 && CSELIB_VAL_PTR (l->loc)->locs->loc == x)
1954 continue;
1955 else if ((ret = find_base_term (l->loc, visited_vals)) != 0)
1956 break;
1957
1958 return ret;
1959
1960 case LO_SUM:
1961 /* The standard form is (lo_sum reg sym) so look only at the
1962 second operand. */
1963 return find_base_term (XEXP (x, 1), visited_vals);
1964
1965 case CONST:
1966 x = XEXP (x, 0);
1967 if (GET_CODE (x) != PLUS && GET_CODE (x) != MINUS)
1968 return 0;
1969 /* Fall through. */
1970 case PLUS:
1971 case MINUS:
1972 {
1973 rtx tmp1 = XEXP (x, 0);
1974 rtx tmp2 = XEXP (x, 1);
1975
1976 /* This is a little bit tricky since we have to determine which of
1977 the two operands represents the real base address. Otherwise this
1978 routine may return the index register instead of the base register.
1979
1980 That may cause us to believe no aliasing was possible, when in
1981 fact aliasing is possible.
1982
1983 We use a few simple tests to guess the base register. Additional
1984 tests can certainly be added. For example, if one of the operands
1985 is a shift or multiply, then it must be the index register and the
1986 other operand is the base register. */
1987
1988 if (tmp1 == pic_offset_table_rtx && CONSTANT_P (tmp2))
1989 return find_base_term (tmp2, visited_vals);
1990
1991 /* If either operand is known to be a pointer, then prefer it
1992 to determine the base term. */
1993 if (REG_P (tmp1) && REG_POINTER (tmp1))
1994 ;
1995 else if (REG_P (tmp2) && REG_POINTER (tmp2))
1996 std::swap (tmp1, tmp2);
1997 /* If second argument is constant which has base term, prefer it
1998 over variable tmp1. See PR64025. */
1999 else if (CONSTANT_P (tmp2) && !CONST_INT_P (tmp2))
2000 std::swap (tmp1, tmp2);
2001
2002 /* Go ahead and find the base term for both operands. If either base
2003 term is from a pointer or is a named object or a special address
2004 (like an argument or stack reference), then use it for the
2005 base term. */
2006 rtx base = find_base_term (tmp1, visited_vals);
2007 if (base != NULL_RTX
2008 && ((REG_P (tmp1) && REG_POINTER (tmp1))
2009 || known_base_value_p (base)))
2010 return base;
2011 base = find_base_term (tmp2, visited_vals);
2012 if (base != NULL_RTX
2013 && ((REG_P (tmp2) && REG_POINTER (tmp2))
2014 || known_base_value_p (base)))
2015 return base;
2016
2017 /* We could not determine which of the two operands was the
2018 base register and which was the index. So we can determine
2019 nothing from the base alias check. */
2020 return 0;
2021 }
2022
2023 case AND:
2024 if (CONST_INT_P (XEXP (x, 1)) && INTVAL (XEXP (x, 1)) != 0)
2025 return find_base_term (XEXP (x, 0), visited_vals);
2026 return 0;
2027
2028 case SYMBOL_REF:
2029 case LABEL_REF:
2030 return x;
2031
2032 default:
2033 return 0;
2034 }
2035 }
2036
2037 /* Wrapper around the worker above which removes locs from visited VALUEs
2038 to avoid visiting them multiple times. We unwind that changes here. */
2039
2040 static rtx
2041 find_base_term (rtx x)
2042 {
2043 auto_vec<std::pair<cselib_val *, struct elt_loc_list *>, 32> visited_vals;
2044 rtx res = find_base_term (x, visited_vals);
2045 for (unsigned i = 0; i < visited_vals.length (); ++i)
2046 visited_vals[i].first->locs = visited_vals[i].second;
2047 return res;
2048 }
2049
2050 /* Return true if accesses to address X may alias accesses based
2051 on the stack pointer. */
2052
2053 bool
2054 may_be_sp_based_p (rtx x)
2055 {
2056 rtx base = find_base_term (x);
2057 return !base || base == static_reg_base_value[STACK_POINTER_REGNUM];
2058 }
2059
2060 /* BASE1 and BASE2 are decls. Return 1 if they refer to same object, 0
2061 if they refer to different objects and -1 if we cannot decide. */
2062
2063 int
2064 compare_base_decls (tree base1, tree base2)
2065 {
2066 int ret;
2067 gcc_checking_assert (DECL_P (base1) && DECL_P (base2));
2068 if (base1 == base2)
2069 return 1;
2070
2071 /* If we have two register decls with register specification we
2072 cannot decide unless their assembler names are the same. */
2073 if (DECL_REGISTER (base1)
2074 && DECL_REGISTER (base2)
2075 && HAS_DECL_ASSEMBLER_NAME_P (base1)
2076 && HAS_DECL_ASSEMBLER_NAME_P (base2)
2077 && DECL_ASSEMBLER_NAME_SET_P (base1)
2078 && DECL_ASSEMBLER_NAME_SET_P (base2))
2079 {
2080 if (DECL_ASSEMBLER_NAME_RAW (base1) == DECL_ASSEMBLER_NAME_RAW (base2))
2081 return 1;
2082 return -1;
2083 }
2084
2085 /* Declarations of non-automatic variables may have aliases. All other
2086 decls are unique. */
2087 if (!decl_in_symtab_p (base1)
2088 || !decl_in_symtab_p (base2))
2089 return 0;
2090
2091 /* Don't cause symbols to be inserted by the act of checking. */
2092 symtab_node *node1 = symtab_node::get (base1);
2093 if (!node1)
2094 return 0;
2095 symtab_node *node2 = symtab_node::get (base2);
2096 if (!node2)
2097 return 0;
2098
2099 ret = node1->equal_address_to (node2, true);
2100 return ret;
2101 }
2102
2103 /* Same as compare_base_decls but for SYMBOL_REF. */
2104
2105 static int
2106 compare_base_symbol_refs (const_rtx x_base, const_rtx y_base)
2107 {
2108 tree x_decl = SYMBOL_REF_DECL (x_base);
2109 tree y_decl = SYMBOL_REF_DECL (y_base);
2110 bool binds_def = true;
2111
2112 if (XSTR (x_base, 0) == XSTR (y_base, 0))
2113 return 1;
2114 if (x_decl && y_decl)
2115 return compare_base_decls (x_decl, y_decl);
2116 if (x_decl || y_decl)
2117 {
2118 if (!x_decl)
2119 {
2120 std::swap (x_decl, y_decl);
2121 std::swap (x_base, y_base);
2122 }
2123 /* We handle specially only section anchors and assume that other
2124 labels may overlap with user variables in an arbitrary way. */
2125 if (!SYMBOL_REF_HAS_BLOCK_INFO_P (y_base))
2126 return -1;
2127 /* Anchors contains static VAR_DECLs and CONST_DECLs. We are safe
2128 to ignore CONST_DECLs because they are readonly. */
2129 if (!VAR_P (x_decl)
2130 || (!TREE_STATIC (x_decl) && !TREE_PUBLIC (x_decl)))
2131 return 0;
2132
2133 symtab_node *x_node = symtab_node::get_create (x_decl)
2134 ->ultimate_alias_target ();
2135 /* External variable cannot be in section anchor. */
2136 if (!x_node->definition)
2137 return 0;
2138 x_base = XEXP (DECL_RTL (x_node->decl), 0);
2139 /* If not in anchor, we can disambiguate. */
2140 if (!SYMBOL_REF_HAS_BLOCK_INFO_P (x_base))
2141 return 0;
2142
2143 /* We have an alias of anchored variable. If it can be interposed;
2144 we must assume it may or may not alias its anchor. */
2145 binds_def = decl_binds_to_current_def_p (x_decl);
2146 }
2147 /* If we have variable in section anchor, we can compare by offset. */
2148 if (SYMBOL_REF_HAS_BLOCK_INFO_P (x_base)
2149 && SYMBOL_REF_HAS_BLOCK_INFO_P (y_base))
2150 {
2151 if (SYMBOL_REF_BLOCK (x_base) != SYMBOL_REF_BLOCK (y_base))
2152 return 0;
2153 if (SYMBOL_REF_BLOCK_OFFSET (x_base) == SYMBOL_REF_BLOCK_OFFSET (y_base))
2154 return binds_def ? 1 : -1;
2155 if (SYMBOL_REF_ANCHOR_P (x_base) != SYMBOL_REF_ANCHOR_P (y_base))
2156 return -1;
2157 return 0;
2158 }
2159 /* In general we assume that memory locations pointed to by different labels
2160 may overlap in undefined ways. */
2161 return -1;
2162 }
2163
2164 /* Return 0 if the addresses X and Y are known to point to different
2165 objects, 1 if they might be pointers to the same object. */
2166
2167 static int
2168 base_alias_check (rtx x, rtx x_base, rtx y, rtx y_base,
2169 machine_mode x_mode, machine_mode y_mode)
2170 {
2171 /* If the address itself has no known base see if a known equivalent
2172 value has one. If either address still has no known base, nothing
2173 is known about aliasing. */
2174 if (x_base == 0)
2175 {
2176 rtx x_c;
2177
2178 if (! flag_expensive_optimizations || (x_c = canon_rtx (x)) == x)
2179 return 1;
2180
2181 x_base = find_base_term (x_c);
2182 if (x_base == 0)
2183 return 1;
2184 }
2185
2186 if (y_base == 0)
2187 {
2188 rtx y_c;
2189 if (! flag_expensive_optimizations || (y_c = canon_rtx (y)) == y)
2190 return 1;
2191
2192 y_base = find_base_term (y_c);
2193 if (y_base == 0)
2194 return 1;
2195 }
2196
2197 /* If the base addresses are equal nothing is known about aliasing. */
2198 if (rtx_equal_p (x_base, y_base))
2199 return 1;
2200
2201 /* The base addresses are different expressions. If they are not accessed
2202 via AND, there is no conflict. We can bring knowledge of object
2203 alignment into play here. For example, on alpha, "char a, b;" can
2204 alias one another, though "char a; long b;" cannot. AND addresses may
2205 implicitly alias surrounding objects; i.e. unaligned access in DImode
2206 via AND address can alias all surrounding object types except those
2207 with aligment 8 or higher. */
2208 if (GET_CODE (x) == AND && GET_CODE (y) == AND)
2209 return 1;
2210 if (GET_CODE (x) == AND
2211 && (!CONST_INT_P (XEXP (x, 1))
2212 || (int) GET_MODE_UNIT_SIZE (y_mode) < -INTVAL (XEXP (x, 1))))
2213 return 1;
2214 if (GET_CODE (y) == AND
2215 && (!CONST_INT_P (XEXP (y, 1))
2216 || (int) GET_MODE_UNIT_SIZE (x_mode) < -INTVAL (XEXP (y, 1))))
2217 return 1;
2218
2219 /* Differing symbols not accessed via AND never alias. */
2220 if (GET_CODE (x_base) == SYMBOL_REF && GET_CODE (y_base) == SYMBOL_REF)
2221 return compare_base_symbol_refs (x_base, y_base) != 0;
2222
2223 if (GET_CODE (x_base) != ADDRESS && GET_CODE (y_base) != ADDRESS)
2224 return 0;
2225
2226 if (unique_base_value_p (x_base) || unique_base_value_p (y_base))
2227 return 0;
2228
2229 return 1;
2230 }
2231
2232 /* Return TRUE if EXPR refers to a VALUE whose uid is greater than
2233 (or equal to) that of V. */
2234
2235 static bool
2236 refs_newer_value_p (const_rtx expr, rtx v)
2237 {
2238 int minuid = CSELIB_VAL_PTR (v)->uid;
2239 subrtx_iterator::array_type array;
2240 FOR_EACH_SUBRTX (iter, array, expr, NONCONST)
2241 if (GET_CODE (*iter) == VALUE && CSELIB_VAL_PTR (*iter)->uid >= minuid)
2242 return true;
2243 return false;
2244 }
2245
2246 /* Convert the address X into something we can use. This is done by returning
2247 it unchanged unless it is a VALUE or VALUE +/- constant; for VALUE
2248 we call cselib to get a more useful rtx. */
2249
2250 rtx
2251 get_addr (rtx x)
2252 {
2253 cselib_val *v;
2254 struct elt_loc_list *l;
2255
2256 if (GET_CODE (x) != VALUE)
2257 {
2258 if ((GET_CODE (x) == PLUS || GET_CODE (x) == MINUS)
2259 && GET_CODE (XEXP (x, 0)) == VALUE
2260 && CONST_SCALAR_INT_P (XEXP (x, 1)))
2261 {
2262 rtx op0 = get_addr (XEXP (x, 0));
2263 if (op0 != XEXP (x, 0))
2264 {
2265 poly_int64 c;
2266 if (GET_CODE (x) == PLUS
2267 && poly_int_rtx_p (XEXP (x, 1), &c))
2268 return plus_constant (GET_MODE (x), op0, c);
2269 return simplify_gen_binary (GET_CODE (x), GET_MODE (x),
2270 op0, XEXP (x, 1));
2271 }
2272 }
2273 return x;
2274 }
2275 v = CSELIB_VAL_PTR (x);
2276 if (v)
2277 {
2278 bool have_equivs = cselib_have_permanent_equivalences ();
2279 if (have_equivs)
2280 v = canonical_cselib_val (v);
2281 for (l = v->locs; l; l = l->next)
2282 if (CONSTANT_P (l->loc))
2283 return l->loc;
2284 for (l = v->locs; l; l = l->next)
2285 if (!REG_P (l->loc) && !MEM_P (l->loc)
2286 /* Avoid infinite recursion when potentially dealing with
2287 var-tracking artificial equivalences, by skipping the
2288 equivalences themselves, and not choosing expressions
2289 that refer to newer VALUEs. */
2290 && (!have_equivs
2291 || (GET_CODE (l->loc) != VALUE
2292 && !refs_newer_value_p (l->loc, x))))
2293 return l->loc;
2294 if (have_equivs)
2295 {
2296 for (l = v->locs; l; l = l->next)
2297 if (REG_P (l->loc)
2298 || (GET_CODE (l->loc) != VALUE
2299 && !refs_newer_value_p (l->loc, x)))
2300 return l->loc;
2301 /* Return the canonical value. */
2302 return v->val_rtx;
2303 }
2304 if (v->locs)
2305 return v->locs->loc;
2306 }
2307 return x;
2308 }
2309
2310 /* Return the address of the (N_REFS + 1)th memory reference to ADDR
2311 where SIZE is the size in bytes of the memory reference. If ADDR
2312 is not modified by the memory reference then ADDR is returned. */
2313
2314 static rtx
2315 addr_side_effect_eval (rtx addr, poly_int64 size, int n_refs)
2316 {
2317 poly_int64 offset = 0;
2318
2319 switch (GET_CODE (addr))
2320 {
2321 case PRE_INC:
2322 offset = (n_refs + 1) * size;
2323 break;
2324 case PRE_DEC:
2325 offset = -(n_refs + 1) * size;
2326 break;
2327 case POST_INC:
2328 offset = n_refs * size;
2329 break;
2330 case POST_DEC:
2331 offset = -n_refs * size;
2332 break;
2333
2334 default:
2335 return addr;
2336 }
2337
2338 addr = plus_constant (GET_MODE (addr), XEXP (addr, 0), offset);
2339 addr = canon_rtx (addr);
2340
2341 return addr;
2342 }
2343
2344 /* Return TRUE if an object X sized at XSIZE bytes and another object
2345 Y sized at YSIZE bytes, starting C bytes after X, may overlap. If
2346 any of the sizes is zero, assume an overlap, otherwise use the
2347 absolute value of the sizes as the actual sizes. */
2348
2349 static inline bool
2350 offset_overlap_p (poly_int64 c, poly_int64 xsize, poly_int64 ysize)
2351 {
2352 if (known_eq (xsize, 0) || known_eq (ysize, 0))
2353 return true;
2354
2355 if (maybe_ge (c, 0))
2356 return maybe_gt (maybe_lt (xsize, 0) ? -xsize : xsize, c);
2357 else
2358 return maybe_gt (maybe_lt (ysize, 0) ? -ysize : ysize, -c);
2359 }
2360
2361 /* Return one if X and Y (memory addresses) reference the
2362 same location in memory or if the references overlap.
2363 Return zero if they do not overlap, else return
2364 minus one in which case they still might reference the same location.
2365
2366 C is an offset accumulator. When
2367 C is nonzero, we are testing aliases between X and Y + C.
2368 XSIZE is the size in bytes of the X reference,
2369 similarly YSIZE is the size in bytes for Y.
2370 Expect that canon_rtx has been already called for X and Y.
2371
2372 If XSIZE or YSIZE is zero, we do not know the amount of memory being
2373 referenced (the reference was BLKmode), so make the most pessimistic
2374 assumptions.
2375
2376 If XSIZE or YSIZE is negative, we may access memory outside the object
2377 being referenced as a side effect. This can happen when using AND to
2378 align memory references, as is done on the Alpha.
2379
2380 Nice to notice that varying addresses cannot conflict with fp if no
2381 local variables had their addresses taken, but that's too hard now.
2382
2383 ??? Contrary to the tree alias oracle this does not return
2384 one for X + non-constant and Y + non-constant when X and Y are equal.
2385 If that is fixed the TBAA hack for union type-punning can be removed. */
2386
2387 static int
2388 memrefs_conflict_p (poly_int64 xsize, rtx x, poly_int64 ysize, rtx y,
2389 poly_int64 c)
2390 {
2391 if (GET_CODE (x) == VALUE)
2392 {
2393 if (REG_P (y))
2394 {
2395 struct elt_loc_list *l = NULL;
2396 if (CSELIB_VAL_PTR (x))
2397 for (l = canonical_cselib_val (CSELIB_VAL_PTR (x))->locs;
2398 l; l = l->next)
2399 if (REG_P (l->loc) && rtx_equal_for_memref_p (l->loc, y))
2400 break;
2401 if (l)
2402 x = y;
2403 else
2404 x = get_addr (x);
2405 }
2406 /* Don't call get_addr if y is the same VALUE. */
2407 else if (x != y)
2408 x = get_addr (x);
2409 }
2410 if (GET_CODE (y) == VALUE)
2411 {
2412 if (REG_P (x))
2413 {
2414 struct elt_loc_list *l = NULL;
2415 if (CSELIB_VAL_PTR (y))
2416 for (l = canonical_cselib_val (CSELIB_VAL_PTR (y))->locs;
2417 l; l = l->next)
2418 if (REG_P (l->loc) && rtx_equal_for_memref_p (l->loc, x))
2419 break;
2420 if (l)
2421 y = x;
2422 else
2423 y = get_addr (y);
2424 }
2425 /* Don't call get_addr if x is the same VALUE. */
2426 else if (y != x)
2427 y = get_addr (y);
2428 }
2429 if (GET_CODE (x) == HIGH)
2430 x = XEXP (x, 0);
2431 else if (GET_CODE (x) == LO_SUM)
2432 x = XEXP (x, 1);
2433 else
2434 x = addr_side_effect_eval (x, maybe_lt (xsize, 0) ? -xsize : xsize, 0);
2435 if (GET_CODE (y) == HIGH)
2436 y = XEXP (y, 0);
2437 else if (GET_CODE (y) == LO_SUM)
2438 y = XEXP (y, 1);
2439 else
2440 y = addr_side_effect_eval (y, maybe_lt (ysize, 0) ? -ysize : ysize, 0);
2441
2442 if (GET_CODE (x) == SYMBOL_REF && GET_CODE (y) == SYMBOL_REF)
2443 {
2444 int cmp = compare_base_symbol_refs (x,y);
2445
2446 /* If both decls are the same, decide by offsets. */
2447 if (cmp == 1)
2448 return offset_overlap_p (c, xsize, ysize);
2449 /* Assume a potential overlap for symbolic addresses that went
2450 through alignment adjustments (i.e., that have negative
2451 sizes), because we can't know how far they are from each
2452 other. */
2453 if (maybe_lt (xsize, 0) || maybe_lt (ysize, 0))
2454 return -1;
2455 /* If decls are different or we know by offsets that there is no overlap,
2456 we win. */
2457 if (!cmp || !offset_overlap_p (c, xsize, ysize))
2458 return 0;
2459 /* Decls may or may not be different and offsets overlap....*/
2460 return -1;
2461 }
2462 else if (rtx_equal_for_memref_p (x, y))
2463 {
2464 return offset_overlap_p (c, xsize, ysize);
2465 }
2466
2467 /* This code used to check for conflicts involving stack references and
2468 globals but the base address alias code now handles these cases. */
2469
2470 if (GET_CODE (x) == PLUS)
2471 {
2472 /* The fact that X is canonicalized means that this
2473 PLUS rtx is canonicalized. */
2474 rtx x0 = XEXP (x, 0);
2475 rtx x1 = XEXP (x, 1);
2476
2477 /* However, VALUEs might end up in different positions even in
2478 canonical PLUSes. Comparing their addresses is enough. */
2479 if (x0 == y)
2480 return memrefs_conflict_p (xsize, x1, ysize, const0_rtx, c);
2481 else if (x1 == y)
2482 return memrefs_conflict_p (xsize, x0, ysize, const0_rtx, c);
2483
2484 poly_int64 cx1, cy1;
2485 if (GET_CODE (y) == PLUS)
2486 {
2487 /* The fact that Y is canonicalized means that this
2488 PLUS rtx is canonicalized. */
2489 rtx y0 = XEXP (y, 0);
2490 rtx y1 = XEXP (y, 1);
2491
2492 if (x0 == y1)
2493 return memrefs_conflict_p (xsize, x1, ysize, y0, c);
2494 if (x1 == y0)
2495 return memrefs_conflict_p (xsize, x0, ysize, y1, c);
2496
2497 if (rtx_equal_for_memref_p (x1, y1))
2498 return memrefs_conflict_p (xsize, x0, ysize, y0, c);
2499 if (rtx_equal_for_memref_p (x0, y0))
2500 return memrefs_conflict_p (xsize, x1, ysize, y1, c);
2501 if (poly_int_rtx_p (x1, &cx1))
2502 {
2503 if (poly_int_rtx_p (y1, &cy1))
2504 return memrefs_conflict_p (xsize, x0, ysize, y0,
2505 c - cx1 + cy1);
2506 else
2507 return memrefs_conflict_p (xsize, x0, ysize, y, c - cx1);
2508 }
2509 else if (poly_int_rtx_p (y1, &cy1))
2510 return memrefs_conflict_p (xsize, x, ysize, y0, c + cy1);
2511
2512 return -1;
2513 }
2514 else if (poly_int_rtx_p (x1, &cx1))
2515 return memrefs_conflict_p (xsize, x0, ysize, y, c - cx1);
2516 }
2517 else if (GET_CODE (y) == PLUS)
2518 {
2519 /* The fact that Y is canonicalized means that this
2520 PLUS rtx is canonicalized. */
2521 rtx y0 = XEXP (y, 0);
2522 rtx y1 = XEXP (y, 1);
2523
2524 if (x == y0)
2525 return memrefs_conflict_p (xsize, const0_rtx, ysize, y1, c);
2526 if (x == y1)
2527 return memrefs_conflict_p (xsize, const0_rtx, ysize, y0, c);
2528
2529 poly_int64 cy1;
2530 if (poly_int_rtx_p (y1, &cy1))
2531 return memrefs_conflict_p (xsize, x, ysize, y0, c + cy1);
2532 else
2533 return -1;
2534 }
2535
2536 if (GET_CODE (x) == GET_CODE (y))
2537 switch (GET_CODE (x))
2538 {
2539 case MULT:
2540 {
2541 /* Handle cases where we expect the second operands to be the
2542 same, and check only whether the first operand would conflict
2543 or not. */
2544 rtx x0, y0;
2545 rtx x1 = canon_rtx (XEXP (x, 1));
2546 rtx y1 = canon_rtx (XEXP (y, 1));
2547 if (! rtx_equal_for_memref_p (x1, y1))
2548 return -1;
2549 x0 = canon_rtx (XEXP (x, 0));
2550 y0 = canon_rtx (XEXP (y, 0));
2551 if (rtx_equal_for_memref_p (x0, y0))
2552 return offset_overlap_p (c, xsize, ysize);
2553
2554 /* Can't properly adjust our sizes. */
2555 poly_int64 c1;
2556 if (!poly_int_rtx_p (x1, &c1)
2557 || !can_div_trunc_p (xsize, c1, &xsize)
2558 || !can_div_trunc_p (ysize, c1, &ysize)
2559 || !can_div_trunc_p (c, c1, &c))
2560 return -1;
2561 return memrefs_conflict_p (xsize, x0, ysize, y0, c);
2562 }
2563
2564 default:
2565 break;
2566 }
2567
2568 /* Deal with alignment ANDs by adjusting offset and size so as to
2569 cover the maximum range, without taking any previously known
2570 alignment into account. Make a size negative after such an
2571 adjustments, so that, if we end up with e.g. two SYMBOL_REFs, we
2572 assume a potential overlap, because they may end up in contiguous
2573 memory locations and the stricter-alignment access may span over
2574 part of both. */
2575 if (GET_CODE (x) == AND && CONST_INT_P (XEXP (x, 1)))
2576 {
2577 HOST_WIDE_INT sc = INTVAL (XEXP (x, 1));
2578 unsigned HOST_WIDE_INT uc = sc;
2579 if (sc < 0 && pow2_or_zerop (-uc))
2580 {
2581 if (maybe_gt (xsize, 0))
2582 xsize = -xsize;
2583 if (maybe_ne (xsize, 0))
2584 xsize += sc + 1;
2585 c -= sc + 1;
2586 return memrefs_conflict_p (xsize, canon_rtx (XEXP (x, 0)),
2587 ysize, y, c);
2588 }
2589 }
2590 if (GET_CODE (y) == AND && CONST_INT_P (XEXP (y, 1)))
2591 {
2592 HOST_WIDE_INT sc = INTVAL (XEXP (y, 1));
2593 unsigned HOST_WIDE_INT uc = sc;
2594 if (sc < 0 && pow2_or_zerop (-uc))
2595 {
2596 if (maybe_gt (ysize, 0))
2597 ysize = -ysize;
2598 if (maybe_ne (ysize, 0))
2599 ysize += sc + 1;
2600 c += sc + 1;
2601 return memrefs_conflict_p (xsize, x,
2602 ysize, canon_rtx (XEXP (y, 0)), c);
2603 }
2604 }
2605
2606 if (CONSTANT_P (x))
2607 {
2608 poly_int64 cx, cy;
2609 if (poly_int_rtx_p (x, &cx) && poly_int_rtx_p (y, &cy))
2610 {
2611 c += cy - cx;
2612 return offset_overlap_p (c, xsize, ysize);
2613 }
2614
2615 if (GET_CODE (x) == CONST)
2616 {
2617 if (GET_CODE (y) == CONST)
2618 return memrefs_conflict_p (xsize, canon_rtx (XEXP (x, 0)),
2619 ysize, canon_rtx (XEXP (y, 0)), c);
2620 else
2621 return memrefs_conflict_p (xsize, canon_rtx (XEXP (x, 0)),
2622 ysize, y, c);
2623 }
2624 if (GET_CODE (y) == CONST)
2625 return memrefs_conflict_p (xsize, x, ysize,
2626 canon_rtx (XEXP (y, 0)), c);
2627
2628 /* Assume a potential overlap for symbolic addresses that went
2629 through alignment adjustments (i.e., that have negative
2630 sizes), because we can't know how far they are from each
2631 other. */
2632 if (CONSTANT_P (y))
2633 return (maybe_lt (xsize, 0)
2634 || maybe_lt (ysize, 0)
2635 || offset_overlap_p (c, xsize, ysize));
2636
2637 return -1;
2638 }
2639
2640 return -1;
2641 }
2642
2643 /* Functions to compute memory dependencies.
2644
2645 Since we process the insns in execution order, we can build tables
2646 to keep track of what registers are fixed (and not aliased), what registers
2647 are varying in known ways, and what registers are varying in unknown
2648 ways.
2649
2650 If both memory references are volatile, then there must always be a
2651 dependence between the two references, since their order cannot be
2652 changed. A volatile and non-volatile reference can be interchanged
2653 though.
2654
2655 We also must allow AND addresses, because they may generate accesses
2656 outside the object being referenced. This is used to generate aligned
2657 addresses from unaligned addresses, for instance, the alpha
2658 storeqi_unaligned pattern. */
2659
2660 /* Read dependence: X is read after read in MEM takes place. There can
2661 only be a dependence here if both reads are volatile, or if either is
2662 an explicit barrier. */
2663
2664 int
2665 read_dependence (const_rtx mem, const_rtx x)
2666 {
2667 if (MEM_VOLATILE_P (x) && MEM_VOLATILE_P (mem))
2668 return true;
2669 if (MEM_ALIAS_SET (x) == ALIAS_SET_MEMORY_BARRIER
2670 || MEM_ALIAS_SET (mem) == ALIAS_SET_MEMORY_BARRIER)
2671 return true;
2672 return false;
2673 }
2674
2675 /* Look at the bottom of the COMPONENT_REF list for a DECL, and return it. */
2676
2677 static tree
2678 decl_for_component_ref (tree x)
2679 {
2680 do
2681 {
2682 x = TREE_OPERAND (x, 0);
2683 }
2684 while (x && TREE_CODE (x) == COMPONENT_REF);
2685
2686 return x && DECL_P (x) ? x : NULL_TREE;
2687 }
2688
2689 /* Walk up the COMPONENT_REF list in X and adjust *OFFSET to compensate
2690 for the offset of the field reference. *KNOWN_P says whether the
2691 offset is known. */
2692
2693 static void
2694 adjust_offset_for_component_ref (tree x, bool *known_p,
2695 poly_int64 *offset)
2696 {
2697 if (!*known_p)
2698 return;
2699 do
2700 {
2701 tree xoffset = component_ref_field_offset (x);
2702 tree field = TREE_OPERAND (x, 1);
2703 if (!poly_int_tree_p (xoffset))
2704 {
2705 *known_p = false;
2706 return;
2707 }
2708
2709 poly_offset_int woffset
2710 = (wi::to_poly_offset (xoffset)
2711 + (wi::to_offset (DECL_FIELD_BIT_OFFSET (field))
2712 >> LOG2_BITS_PER_UNIT)
2713 + *offset);
2714 if (!woffset.to_shwi (offset))
2715 {
2716 *known_p = false;
2717 return;
2718 }
2719
2720 x = TREE_OPERAND (x, 0);
2721 }
2722 while (x && TREE_CODE (x) == COMPONENT_REF);
2723 }
2724
2725 /* Return nonzero if we can determine the exprs corresponding to memrefs
2726 X and Y and they do not overlap.
2727 If LOOP_VARIANT is set, skip offset-based disambiguation */
2728
2729 int
2730 nonoverlapping_memrefs_p (const_rtx x, const_rtx y, bool loop_invariant)
2731 {
2732 tree exprx = MEM_EXPR (x), expry = MEM_EXPR (y);
2733 rtx rtlx, rtly;
2734 rtx basex, basey;
2735 bool moffsetx_known_p, moffsety_known_p;
2736 poly_int64 moffsetx = 0, moffsety = 0;
2737 poly_int64 offsetx = 0, offsety = 0, sizex, sizey;
2738
2739 /* Unless both have exprs, we can't tell anything. */
2740 if (exprx == 0 || expry == 0)
2741 return 0;
2742
2743 /* For spill-slot accesses make sure we have valid offsets. */
2744 if ((exprx == get_spill_slot_decl (false)
2745 && ! MEM_OFFSET_KNOWN_P (x))
2746 || (expry == get_spill_slot_decl (false)
2747 && ! MEM_OFFSET_KNOWN_P (y)))
2748 return 0;
2749
2750 /* If the field reference test failed, look at the DECLs involved. */
2751 moffsetx_known_p = MEM_OFFSET_KNOWN_P (x);
2752 if (moffsetx_known_p)
2753 moffsetx = MEM_OFFSET (x);
2754 if (TREE_CODE (exprx) == COMPONENT_REF)
2755 {
2756 tree t = decl_for_component_ref (exprx);
2757 if (! t)
2758 return 0;
2759 adjust_offset_for_component_ref (exprx, &moffsetx_known_p, &moffsetx);
2760 exprx = t;
2761 }
2762
2763 moffsety_known_p = MEM_OFFSET_KNOWN_P (y);
2764 if (moffsety_known_p)
2765 moffsety = MEM_OFFSET (y);
2766 if (TREE_CODE (expry) == COMPONENT_REF)
2767 {
2768 tree t = decl_for_component_ref (expry);
2769 if (! t)
2770 return 0;
2771 adjust_offset_for_component_ref (expry, &moffsety_known_p, &moffsety);
2772 expry = t;
2773 }
2774
2775 if (! DECL_P (exprx) || ! DECL_P (expry))
2776 return 0;
2777
2778 /* If we refer to different gimple registers, or one gimple register
2779 and one non-gimple-register, we know they can't overlap. First,
2780 gimple registers don't have their addresses taken. Now, there
2781 could be more than one stack slot for (different versions of) the
2782 same gimple register, but we can presumably tell they don't
2783 overlap based on offsets from stack base addresses elsewhere.
2784 It's important that we don't proceed to DECL_RTL, because gimple
2785 registers may not pass DECL_RTL_SET_P, and make_decl_rtl won't be
2786 able to do anything about them since no SSA information will have
2787 remained to guide it. */
2788 if (is_gimple_reg (exprx) || is_gimple_reg (expry))
2789 return exprx != expry
2790 || (moffsetx_known_p && moffsety_known_p
2791 && MEM_SIZE_KNOWN_P (x) && MEM_SIZE_KNOWN_P (y)
2792 && !offset_overlap_p (moffsety - moffsetx,
2793 MEM_SIZE (x), MEM_SIZE (y)));
2794
2795 /* With invalid code we can end up storing into the constant pool.
2796 Bail out to avoid ICEing when creating RTL for this.
2797 See gfortran.dg/lto/20091028-2_0.f90. */
2798 if (TREE_CODE (exprx) == CONST_DECL
2799 || TREE_CODE (expry) == CONST_DECL)
2800 return 1;
2801
2802 /* If one decl is known to be a function or label in a function and
2803 the other is some kind of data, they can't overlap. */
2804 if ((TREE_CODE (exprx) == FUNCTION_DECL
2805 || TREE_CODE (exprx) == LABEL_DECL)
2806 != (TREE_CODE (expry) == FUNCTION_DECL
2807 || TREE_CODE (expry) == LABEL_DECL))
2808 return 1;
2809
2810 /* If either of the decls doesn't have DECL_RTL set (e.g. marked as
2811 living in multiple places), we can't tell anything. Exception
2812 are FUNCTION_DECLs for which we can create DECL_RTL on demand. */
2813 if ((!DECL_RTL_SET_P (exprx) && TREE_CODE (exprx) != FUNCTION_DECL)
2814 || (!DECL_RTL_SET_P (expry) && TREE_CODE (expry) != FUNCTION_DECL))
2815 return 0;
2816
2817 rtlx = DECL_RTL (exprx);
2818 rtly = DECL_RTL (expry);
2819
2820 /* If either RTL is not a MEM, it must be a REG or CONCAT, meaning they
2821 can't overlap unless they are the same because we never reuse that part
2822 of the stack frame used for locals for spilled pseudos. */
2823 if ((!MEM_P (rtlx) || !MEM_P (rtly))
2824 && ! rtx_equal_p (rtlx, rtly))
2825 return 1;
2826
2827 /* If we have MEMs referring to different address spaces (which can
2828 potentially overlap), we cannot easily tell from the addresses
2829 whether the references overlap. */
2830 if (MEM_P (rtlx) && MEM_P (rtly)
2831 && MEM_ADDR_SPACE (rtlx) != MEM_ADDR_SPACE (rtly))
2832 return 0;
2833
2834 /* Get the base and offsets of both decls. If either is a register, we
2835 know both are and are the same, so use that as the base. The only
2836 we can avoid overlap is if we can deduce that they are nonoverlapping
2837 pieces of that decl, which is very rare. */
2838 basex = MEM_P (rtlx) ? XEXP (rtlx, 0) : rtlx;
2839 basex = strip_offset_and_add (basex, &offsetx);
2840
2841 basey = MEM_P (rtly) ? XEXP (rtly, 0) : rtly;
2842 basey = strip_offset_and_add (basey, &offsety);
2843
2844 /* If the bases are different, we know they do not overlap if both
2845 are constants or if one is a constant and the other a pointer into the
2846 stack frame. Otherwise a different base means we can't tell if they
2847 overlap or not. */
2848 if (compare_base_decls (exprx, expry) == 0)
2849 return ((CONSTANT_P (basex) && CONSTANT_P (basey))
2850 || (CONSTANT_P (basex) && REG_P (basey)
2851 && REGNO_PTR_FRAME_P (REGNO (basey)))
2852 || (CONSTANT_P (basey) && REG_P (basex)
2853 && REGNO_PTR_FRAME_P (REGNO (basex))));
2854
2855 /* Offset based disambiguation not appropriate for loop invariant */
2856 if (loop_invariant)
2857 return 0;
2858
2859 /* Offset based disambiguation is OK even if we do not know that the
2860 declarations are necessarily different
2861 (i.e. compare_base_decls (exprx, expry) == -1) */
2862
2863 sizex = (!MEM_P (rtlx) ? poly_int64 (GET_MODE_SIZE (GET_MODE (rtlx)))
2864 : MEM_SIZE_KNOWN_P (rtlx) ? MEM_SIZE (rtlx)
2865 : -1);
2866 sizey = (!MEM_P (rtly) ? poly_int64 (GET_MODE_SIZE (GET_MODE (rtly)))
2867 : MEM_SIZE_KNOWN_P (rtly) ? MEM_SIZE (rtly)
2868 : -1);
2869
2870 /* If we have an offset for either memref, it can update the values computed
2871 above. */
2872 if (moffsetx_known_p)
2873 offsetx += moffsetx, sizex -= moffsetx;
2874 if (moffsety_known_p)
2875 offsety += moffsety, sizey -= moffsety;
2876
2877 /* If a memref has both a size and an offset, we can use the smaller size.
2878 We can't do this if the offset isn't known because we must view this
2879 memref as being anywhere inside the DECL's MEM. */
2880 if (MEM_SIZE_KNOWN_P (x) && moffsetx_known_p)
2881 sizex = MEM_SIZE (x);
2882 if (MEM_SIZE_KNOWN_P (y) && moffsety_known_p)
2883 sizey = MEM_SIZE (y);
2884
2885 return !ranges_maybe_overlap_p (offsetx, sizex, offsety, sizey);
2886 }
2887
2888 /* Helper for true_dependence and canon_true_dependence.
2889 Checks for true dependence: X is read after store in MEM takes place.
2890
2891 If MEM_CANONICALIZED is FALSE, then X_ADDR and MEM_ADDR should be
2892 NULL_RTX, and the canonical addresses of MEM and X are both computed
2893 here. If MEM_CANONICALIZED, then MEM must be already canonicalized.
2894
2895 If X_ADDR is non-NULL, it is used in preference of XEXP (x, 0).
2896
2897 Returns 1 if there is a true dependence, 0 otherwise. */
2898
2899 static int
2900 true_dependence_1 (const_rtx mem, machine_mode mem_mode, rtx mem_addr,
2901 const_rtx x, rtx x_addr, bool mem_canonicalized)
2902 {
2903 rtx true_mem_addr;
2904 rtx base;
2905 int ret;
2906
2907 gcc_checking_assert (mem_canonicalized ? (mem_addr != NULL_RTX)
2908 : (mem_addr == NULL_RTX && x_addr == NULL_RTX));
2909
2910 if (MEM_VOLATILE_P (x) && MEM_VOLATILE_P (mem))
2911 return 1;
2912
2913 /* (mem:BLK (scratch)) is a special mechanism to conflict with everything.
2914 This is used in epilogue deallocation functions, and in cselib. */
2915 if (GET_MODE (x) == BLKmode && GET_CODE (XEXP (x, 0)) == SCRATCH)
2916 return 1;
2917 if (GET_MODE (mem) == BLKmode && GET_CODE (XEXP (mem, 0)) == SCRATCH)
2918 return 1;
2919 if (MEM_ALIAS_SET (x) == ALIAS_SET_MEMORY_BARRIER
2920 || MEM_ALIAS_SET (mem) == ALIAS_SET_MEMORY_BARRIER)
2921 return 1;
2922
2923 if (! x_addr)
2924 x_addr = XEXP (x, 0);
2925 x_addr = get_addr (x_addr);
2926
2927 if (! mem_addr)
2928 {
2929 mem_addr = XEXP (mem, 0);
2930 if (mem_mode == VOIDmode)
2931 mem_mode = GET_MODE (mem);
2932 }
2933 true_mem_addr = get_addr (mem_addr);
2934
2935 /* Read-only memory is by definition never modified, and therefore can't
2936 conflict with anything. However, don't assume anything when AND
2937 addresses are involved and leave to the code below to determine
2938 dependence. We don't expect to find read-only set on MEM, but
2939 stupid user tricks can produce them, so don't die. */
2940 if (MEM_READONLY_P (x)
2941 && GET_CODE (x_addr) != AND
2942 && GET_CODE (true_mem_addr) != AND)
2943 return 0;
2944
2945 /* If we have MEMs referring to different address spaces (which can
2946 potentially overlap), we cannot easily tell from the addresses
2947 whether the references overlap. */
2948 if (MEM_ADDR_SPACE (mem) != MEM_ADDR_SPACE (x))
2949 return 1;
2950
2951 base = find_base_term (x_addr);
2952 if (base && (GET_CODE (base) == LABEL_REF
2953 || (GET_CODE (base) == SYMBOL_REF
2954 && CONSTANT_POOL_ADDRESS_P (base))))
2955 return 0;
2956
2957 rtx mem_base = find_base_term (true_mem_addr);
2958 if (! base_alias_check (x_addr, base, true_mem_addr, mem_base,
2959 GET_MODE (x), mem_mode))
2960 return 0;
2961
2962 x_addr = canon_rtx (x_addr);
2963 if (!mem_canonicalized)
2964 mem_addr = canon_rtx (true_mem_addr);
2965
2966 if ((ret = memrefs_conflict_p (GET_MODE_SIZE (mem_mode), mem_addr,
2967 SIZE_FOR_MODE (x), x_addr, 0)) != -1)
2968 return ret;
2969
2970 if (mems_in_disjoint_alias_sets_p (x, mem))
2971 return 0;
2972
2973 if (nonoverlapping_memrefs_p (mem, x, false))
2974 return 0;
2975
2976 return rtx_refs_may_alias_p (x, mem, true);
2977 }
2978
2979 /* True dependence: X is read after store in MEM takes place. */
2980
2981 int
2982 true_dependence (const_rtx mem, machine_mode mem_mode, const_rtx x)
2983 {
2984 return true_dependence_1 (mem, mem_mode, NULL_RTX,
2985 x, NULL_RTX, /*mem_canonicalized=*/false);
2986 }
2987
2988 /* Canonical true dependence: X is read after store in MEM takes place.
2989 Variant of true_dependence which assumes MEM has already been
2990 canonicalized (hence we no longer do that here).
2991 The mem_addr argument has been added, since true_dependence_1 computed
2992 this value prior to canonicalizing. */
2993
2994 int
2995 canon_true_dependence (const_rtx mem, machine_mode mem_mode, rtx mem_addr,
2996 const_rtx x, rtx x_addr)
2997 {
2998 return true_dependence_1 (mem, mem_mode, mem_addr,
2999 x, x_addr, /*mem_canonicalized=*/true);
3000 }
3001
3002 /* Returns nonzero if a write to X might alias a previous read from
3003 (or, if WRITEP is true, a write to) MEM.
3004 If X_CANONCALIZED is true, then X_ADDR is the canonicalized address of X,
3005 and X_MODE the mode for that access.
3006 If MEM_CANONICALIZED is true, MEM is canonicalized. */
3007
3008 static int
3009 write_dependence_p (const_rtx mem,
3010 const_rtx x, machine_mode x_mode, rtx x_addr,
3011 bool mem_canonicalized, bool x_canonicalized, bool writep)
3012 {
3013 rtx mem_addr;
3014 rtx true_mem_addr, true_x_addr;
3015 rtx base;
3016 int ret;
3017
3018 gcc_checking_assert (x_canonicalized
3019 ? (x_addr != NULL_RTX
3020 && (x_mode != VOIDmode || GET_MODE (x) == VOIDmode))
3021 : (x_addr == NULL_RTX && x_mode == VOIDmode));
3022
3023 if (MEM_VOLATILE_P (x) && MEM_VOLATILE_P (mem))
3024 return 1;
3025
3026 /* (mem:BLK (scratch)) is a special mechanism to conflict with everything.
3027 This is used in epilogue deallocation functions. */
3028 if (GET_MODE (x) == BLKmode && GET_CODE (XEXP (x, 0)) == SCRATCH)
3029 return 1;
3030 if (GET_MODE (mem) == BLKmode && GET_CODE (XEXP (mem, 0)) == SCRATCH)
3031 return 1;
3032 if (MEM_ALIAS_SET (x) == ALIAS_SET_MEMORY_BARRIER
3033 || MEM_ALIAS_SET (mem) == ALIAS_SET_MEMORY_BARRIER)
3034 return 1;
3035
3036 if (!x_addr)
3037 x_addr = XEXP (x, 0);
3038 true_x_addr = get_addr (x_addr);
3039
3040 mem_addr = XEXP (mem, 0);
3041 true_mem_addr = get_addr (mem_addr);
3042
3043 /* A read from read-only memory can't conflict with read-write memory.
3044 Don't assume anything when AND addresses are involved and leave to
3045 the code below to determine dependence. */
3046 if (!writep
3047 && MEM_READONLY_P (mem)
3048 && GET_CODE (true_x_addr) != AND
3049 && GET_CODE (true_mem_addr) != AND)
3050 return 0;
3051
3052 /* If we have MEMs referring to different address spaces (which can
3053 potentially overlap), we cannot easily tell from the addresses
3054 whether the references overlap. */
3055 if (MEM_ADDR_SPACE (mem) != MEM_ADDR_SPACE (x))
3056 return 1;
3057
3058 base = find_base_term (true_mem_addr);
3059 if (! writep
3060 && base
3061 && (GET_CODE (base) == LABEL_REF
3062 || (GET_CODE (base) == SYMBOL_REF
3063 && CONSTANT_POOL_ADDRESS_P (base))))
3064 return 0;
3065
3066 rtx x_base = find_base_term (true_x_addr);
3067 if (! base_alias_check (true_x_addr, x_base, true_mem_addr, base,
3068 GET_MODE (x), GET_MODE (mem)))
3069 return 0;
3070
3071 if (!x_canonicalized)
3072 {
3073 x_addr = canon_rtx (true_x_addr);
3074 x_mode = GET_MODE (x);
3075 }
3076 if (!mem_canonicalized)
3077 mem_addr = canon_rtx (true_mem_addr);
3078
3079 if ((ret = memrefs_conflict_p (SIZE_FOR_MODE (mem), mem_addr,
3080 GET_MODE_SIZE (x_mode), x_addr, 0)) != -1)
3081 return ret;
3082
3083 if (nonoverlapping_memrefs_p (x, mem, false))
3084 return 0;
3085
3086 return rtx_refs_may_alias_p (x, mem, false);
3087 }
3088
3089 /* Anti dependence: X is written after read in MEM takes place. */
3090
3091 int
3092 anti_dependence (const_rtx mem, const_rtx x)
3093 {
3094 return write_dependence_p (mem, x, VOIDmode, NULL_RTX,
3095 /*mem_canonicalized=*/false,
3096 /*x_canonicalized*/false, /*writep=*/false);
3097 }
3098
3099 /* Likewise, but we already have a canonicalized MEM, and X_ADDR for X.
3100 Also, consider X in X_MODE (which might be from an enclosing
3101 STRICT_LOW_PART / ZERO_EXTRACT).
3102 If MEM_CANONICALIZED is true, MEM is canonicalized. */
3103
3104 int
3105 canon_anti_dependence (const_rtx mem, bool mem_canonicalized,
3106 const_rtx x, machine_mode x_mode, rtx x_addr)
3107 {
3108 return write_dependence_p (mem, x, x_mode, x_addr,
3109 mem_canonicalized, /*x_canonicalized=*/true,
3110 /*writep=*/false);
3111 }
3112
3113 /* Output dependence: X is written after store in MEM takes place. */
3114
3115 int
3116 output_dependence (const_rtx mem, const_rtx x)
3117 {
3118 return write_dependence_p (mem, x, VOIDmode, NULL_RTX,
3119 /*mem_canonicalized=*/false,
3120 /*x_canonicalized*/false, /*writep=*/true);
3121 }
3122
3123 /* Likewise, but we already have a canonicalized MEM, and X_ADDR for X.
3124 Also, consider X in X_MODE (which might be from an enclosing
3125 STRICT_LOW_PART / ZERO_EXTRACT).
3126 If MEM_CANONICALIZED is true, MEM is canonicalized. */
3127
3128 int
3129 canon_output_dependence (const_rtx mem, bool mem_canonicalized,
3130 const_rtx x, machine_mode x_mode, rtx x_addr)
3131 {
3132 return write_dependence_p (mem, x, x_mode, x_addr,
3133 mem_canonicalized, /*x_canonicalized=*/true,
3134 /*writep=*/true);
3135 }
3136 \f
3137
3138
3139 /* Check whether X may be aliased with MEM. Don't do offset-based
3140 memory disambiguation & TBAA. */
3141 int
3142 may_alias_p (const_rtx mem, const_rtx x)
3143 {
3144 rtx x_addr, mem_addr;
3145
3146 if (MEM_VOLATILE_P (x) && MEM_VOLATILE_P (mem))
3147 return 1;
3148
3149 /* (mem:BLK (scratch)) is a special mechanism to conflict with everything.
3150 This is used in epilogue deallocation functions. */
3151 if (GET_MODE (x) == BLKmode && GET_CODE (XEXP (x, 0)) == SCRATCH)
3152 return 1;
3153 if (GET_MODE (mem) == BLKmode && GET_CODE (XEXP (mem, 0)) == SCRATCH)
3154 return 1;
3155 if (MEM_ALIAS_SET (x) == ALIAS_SET_MEMORY_BARRIER
3156 || MEM_ALIAS_SET (mem) == ALIAS_SET_MEMORY_BARRIER)
3157 return 1;
3158
3159 x_addr = XEXP (x, 0);
3160 x_addr = get_addr (x_addr);
3161
3162 mem_addr = XEXP (mem, 0);
3163 mem_addr = get_addr (mem_addr);
3164
3165 /* Read-only memory is by definition never modified, and therefore can't
3166 conflict with anything. However, don't assume anything when AND
3167 addresses are involved and leave to the code below to determine
3168 dependence. We don't expect to find read-only set on MEM, but
3169 stupid user tricks can produce them, so don't die. */
3170 if (MEM_READONLY_P (x)
3171 && GET_CODE (x_addr) != AND
3172 && GET_CODE (mem_addr) != AND)
3173 return 0;
3174
3175 /* If we have MEMs referring to different address spaces (which can
3176 potentially overlap), we cannot easily tell from the addresses
3177 whether the references overlap. */
3178 if (MEM_ADDR_SPACE (mem) != MEM_ADDR_SPACE (x))
3179 return 1;
3180
3181 rtx x_base = find_base_term (x_addr);
3182 rtx mem_base = find_base_term (mem_addr);
3183 if (! base_alias_check (x_addr, x_base, mem_addr, mem_base,
3184 GET_MODE (x), GET_MODE (mem_addr)))
3185 return 0;
3186
3187 if (nonoverlapping_memrefs_p (mem, x, true))
3188 return 0;
3189
3190 /* TBAA not valid for loop_invarint */
3191 return rtx_refs_may_alias_p (x, mem, false);
3192 }
3193
3194 void
3195 init_alias_target (void)
3196 {
3197 int i;
3198
3199 if (!arg_base_value)
3200 arg_base_value = gen_rtx_ADDRESS (VOIDmode, 0);
3201
3202 memset (static_reg_base_value, 0, sizeof static_reg_base_value);
3203
3204 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3205 /* Check whether this register can hold an incoming pointer
3206 argument. FUNCTION_ARG_REGNO_P tests outgoing register
3207 numbers, so translate if necessary due to register windows. */
3208 if (FUNCTION_ARG_REGNO_P (OUTGOING_REGNO (i))
3209 && targetm.hard_regno_mode_ok (i, Pmode))
3210 static_reg_base_value[i] = arg_base_value;
3211
3212 /* RTL code is required to be consistent about whether it uses the
3213 stack pointer, the frame pointer or the argument pointer to
3214 access a given area of the frame. We can therefore use the
3215 base address to distinguish between the different areas. */
3216 static_reg_base_value[STACK_POINTER_REGNUM]
3217 = unique_base_value (UNIQUE_BASE_VALUE_SP);
3218 static_reg_base_value[ARG_POINTER_REGNUM]
3219 = unique_base_value (UNIQUE_BASE_VALUE_ARGP);
3220 static_reg_base_value[FRAME_POINTER_REGNUM]
3221 = unique_base_value (UNIQUE_BASE_VALUE_FP);
3222
3223 /* The above rules extend post-reload, with eliminations applying
3224 consistently to each of the three pointers. Cope with cases in
3225 which the frame pointer is eliminated to the hard frame pointer
3226 rather than the stack pointer. */
3227 if (!HARD_FRAME_POINTER_IS_FRAME_POINTER)
3228 static_reg_base_value[HARD_FRAME_POINTER_REGNUM]
3229 = unique_base_value (UNIQUE_BASE_VALUE_HFP);
3230 }
3231
3232 /* Set MEMORY_MODIFIED when X modifies DATA (that is assumed
3233 to be memory reference. */
3234 static bool memory_modified;
3235 static void
3236 memory_modified_1 (rtx x, const_rtx pat ATTRIBUTE_UNUSED, void *data)
3237 {
3238 if (MEM_P (x))
3239 {
3240 if (anti_dependence (x, (const_rtx)data) || output_dependence (x, (const_rtx)data))
3241 memory_modified = true;
3242 }
3243 }
3244
3245
3246 /* Return true when INSN possibly modify memory contents of MEM
3247 (i.e. address can be modified). */
3248 bool
3249 memory_modified_in_insn_p (const_rtx mem, const_rtx insn)
3250 {
3251 if (!INSN_P (insn))
3252 return false;
3253 /* Conservatively assume all non-readonly MEMs might be modified in
3254 calls. */
3255 if (CALL_P (insn))
3256 return true;
3257 memory_modified = false;
3258 note_stores (PATTERN (insn), memory_modified_1, CONST_CAST_RTX(mem));
3259 return memory_modified;
3260 }
3261
3262 /* Initialize the aliasing machinery. Initialize the REG_KNOWN_VALUE
3263 array. */
3264
3265 void
3266 init_alias_analysis (void)
3267 {
3268 unsigned int maxreg = max_reg_num ();
3269 int changed, pass;
3270 int i;
3271 unsigned int ui;
3272 rtx_insn *insn;
3273 rtx val;
3274 int rpo_cnt;
3275 int *rpo;
3276
3277 timevar_push (TV_ALIAS_ANALYSIS);
3278
3279 vec_safe_grow_cleared (reg_known_value, maxreg - FIRST_PSEUDO_REGISTER);
3280 reg_known_equiv_p = sbitmap_alloc (maxreg - FIRST_PSEUDO_REGISTER);
3281 bitmap_clear (reg_known_equiv_p);
3282
3283 /* If we have memory allocated from the previous run, use it. */
3284 if (old_reg_base_value)
3285 reg_base_value = old_reg_base_value;
3286
3287 if (reg_base_value)
3288 reg_base_value->truncate (0);
3289
3290 vec_safe_grow_cleared (reg_base_value, maxreg);
3291
3292 new_reg_base_value = XNEWVEC (rtx, maxreg);
3293 reg_seen = sbitmap_alloc (maxreg);
3294
3295 /* The basic idea is that each pass through this loop will use the
3296 "constant" information from the previous pass to propagate alias
3297 information through another level of assignments.
3298
3299 The propagation is done on the CFG in reverse post-order, to propagate
3300 things forward as far as possible in each iteration.
3301
3302 This could get expensive if the assignment chains are long. Maybe
3303 we should throttle the number of iterations, possibly based on
3304 the optimization level or flag_expensive_optimizations.
3305
3306 We could propagate more information in the first pass by making use
3307 of DF_REG_DEF_COUNT to determine immediately that the alias information
3308 for a pseudo is "constant".
3309
3310 A program with an uninitialized variable can cause an infinite loop
3311 here. Instead of doing a full dataflow analysis to detect such problems
3312 we just cap the number of iterations for the loop.
3313
3314 The state of the arrays for the set chain in question does not matter
3315 since the program has undefined behavior. */
3316
3317 rpo = XNEWVEC (int, n_basic_blocks_for_fn (cfun));
3318 rpo_cnt = pre_and_rev_post_order_compute (NULL, rpo, false);
3319
3320 /* The prologue/epilogue insns are not threaded onto the
3321 insn chain until after reload has completed. Thus,
3322 there is no sense wasting time checking if INSN is in
3323 the prologue/epilogue until after reload has completed. */
3324 bool could_be_prologue_epilogue = ((targetm.have_prologue ()
3325 || targetm.have_epilogue ())
3326 && reload_completed);
3327
3328 pass = 0;
3329 do
3330 {
3331 /* Assume nothing will change this iteration of the loop. */
3332 changed = 0;
3333
3334 /* We want to assign the same IDs each iteration of this loop, so
3335 start counting from one each iteration of the loop. */
3336 unique_id = 1;
3337
3338 /* We're at the start of the function each iteration through the
3339 loop, so we're copying arguments. */
3340 copying_arguments = true;
3341
3342 /* Wipe the potential alias information clean for this pass. */
3343 memset (new_reg_base_value, 0, maxreg * sizeof (rtx));
3344
3345 /* Wipe the reg_seen array clean. */
3346 bitmap_clear (reg_seen);
3347
3348 /* Initialize the alias information for this pass. */
3349 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3350 if (static_reg_base_value[i]
3351 /* Don't treat the hard frame pointer as special if we
3352 eliminated the frame pointer to the stack pointer instead. */
3353 && !(i == HARD_FRAME_POINTER_REGNUM
3354 && reload_completed
3355 && !frame_pointer_needed
3356 && targetm.can_eliminate (FRAME_POINTER_REGNUM,
3357 STACK_POINTER_REGNUM)))
3358 {
3359 new_reg_base_value[i] = static_reg_base_value[i];
3360 bitmap_set_bit (reg_seen, i);
3361 }
3362
3363 /* Walk the insns adding values to the new_reg_base_value array. */
3364 for (i = 0; i < rpo_cnt; i++)
3365 {
3366 basic_block bb = BASIC_BLOCK_FOR_FN (cfun, rpo[i]);
3367 FOR_BB_INSNS (bb, insn)
3368 {
3369 if (NONDEBUG_INSN_P (insn))
3370 {
3371 rtx note, set;
3372
3373 if (could_be_prologue_epilogue
3374 && prologue_epilogue_contains (insn))
3375 continue;
3376
3377 /* If this insn has a noalias note, process it, Otherwise,
3378 scan for sets. A simple set will have no side effects
3379 which could change the base value of any other register. */
3380
3381 if (GET_CODE (PATTERN (insn)) == SET
3382 && REG_NOTES (insn) != 0
3383 && find_reg_note (insn, REG_NOALIAS, NULL_RTX))
3384 record_set (SET_DEST (PATTERN (insn)), NULL_RTX, NULL);
3385 else
3386 note_stores (PATTERN (insn), record_set, NULL);
3387
3388 set = single_set (insn);
3389
3390 if (set != 0
3391 && REG_P (SET_DEST (set))
3392 && REGNO (SET_DEST (set)) >= FIRST_PSEUDO_REGISTER)
3393 {
3394 unsigned int regno = REGNO (SET_DEST (set));
3395 rtx src = SET_SRC (set);
3396 rtx t;
3397
3398 note = find_reg_equal_equiv_note (insn);
3399 if (note && REG_NOTE_KIND (note) == REG_EQUAL
3400 && DF_REG_DEF_COUNT (regno) != 1)
3401 note = NULL_RTX;
3402
3403 poly_int64 offset;
3404 if (note != NULL_RTX
3405 && GET_CODE (XEXP (note, 0)) != EXPR_LIST
3406 && ! rtx_varies_p (XEXP (note, 0), 1)
3407 && ! reg_overlap_mentioned_p (SET_DEST (set),
3408 XEXP (note, 0)))
3409 {
3410 set_reg_known_value (regno, XEXP (note, 0));
3411 set_reg_known_equiv_p (regno,
3412 REG_NOTE_KIND (note) == REG_EQUIV);
3413 }
3414 else if (DF_REG_DEF_COUNT (regno) == 1
3415 && GET_CODE (src) == PLUS
3416 && REG_P (XEXP (src, 0))
3417 && (t = get_reg_known_value (REGNO (XEXP (src, 0))))
3418 && poly_int_rtx_p (XEXP (src, 1), &offset))
3419 {
3420 t = plus_constant (GET_MODE (src), t, offset);
3421 set_reg_known_value (regno, t);
3422 set_reg_known_equiv_p (regno, false);
3423 }
3424 else if (DF_REG_DEF_COUNT (regno) == 1
3425 && ! rtx_varies_p (src, 1))
3426 {
3427 set_reg_known_value (regno, src);
3428 set_reg_known_equiv_p (regno, false);
3429 }
3430 }
3431 }
3432 else if (NOTE_P (insn)
3433 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
3434 copying_arguments = false;
3435 }
3436 }
3437
3438 /* Now propagate values from new_reg_base_value to reg_base_value. */
3439 gcc_assert (maxreg == (unsigned int) max_reg_num ());
3440
3441 for (ui = 0; ui < maxreg; ui++)
3442 {
3443 if (new_reg_base_value[ui]
3444 && new_reg_base_value[ui] != (*reg_base_value)[ui]
3445 && ! rtx_equal_p (new_reg_base_value[ui], (*reg_base_value)[ui]))
3446 {
3447 (*reg_base_value)[ui] = new_reg_base_value[ui];
3448 changed = 1;
3449 }
3450 }
3451 }
3452 while (changed && ++pass < MAX_ALIAS_LOOP_PASSES);
3453 XDELETEVEC (rpo);
3454
3455 /* Fill in the remaining entries. */
3456 FOR_EACH_VEC_ELT (*reg_known_value, i, val)
3457 {
3458 int regno = i + FIRST_PSEUDO_REGISTER;
3459 if (! val)
3460 set_reg_known_value (regno, regno_reg_rtx[regno]);
3461 }
3462
3463 /* Clean up. */
3464 free (new_reg_base_value);
3465 new_reg_base_value = 0;
3466 sbitmap_free (reg_seen);
3467 reg_seen = 0;
3468 timevar_pop (TV_ALIAS_ANALYSIS);
3469 }
3470
3471 /* Equate REG_BASE_VALUE (reg1) to REG_BASE_VALUE (reg2).
3472 Special API for var-tracking pass purposes. */
3473
3474 void
3475 vt_equate_reg_base_value (const_rtx reg1, const_rtx reg2)
3476 {
3477 (*reg_base_value)[REGNO (reg1)] = REG_BASE_VALUE (reg2);
3478 }
3479
3480 void
3481 end_alias_analysis (void)
3482 {
3483 old_reg_base_value = reg_base_value;
3484 vec_free (reg_known_value);
3485 sbitmap_free (reg_known_equiv_p);
3486 }
3487
3488 void
3489 dump_alias_stats_in_alias_c (FILE *s)
3490 {
3491 fprintf (s, " TBAA oracle: %llu disambiguations %llu queries\n"
3492 " %llu are in alias set 0\n"
3493 " %llu queries asked about the same object\n"
3494 " %llu queries asked about the same alias set\n"
3495 " %llu access volatile\n"
3496 " %llu are dependent in the DAG\n"
3497 " %llu are aritificially in conflict with void *\n",
3498 alias_stats.num_disambiguated,
3499 alias_stats.num_alias_zero + alias_stats.num_same_alias_set
3500 + alias_stats.num_same_objects + alias_stats.num_volatile
3501 + alias_stats.num_dag + alias_stats.num_disambiguated
3502 + alias_stats.num_universal,
3503 alias_stats.num_alias_zero, alias_stats.num_same_alias_set,
3504 alias_stats.num_same_objects, alias_stats.num_volatile,
3505 alias_stats.num_dag, alias_stats.num_universal);
3506 }
3507 #include "gt-alias.h"