1 /* Alias analysis for GNU C
2 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
3 Free Software Foundation, Inc.
4 Contributed by John Carr (jfc@mit.edu).
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 #include "coretypes.h"
33 #include "hard-reg-set.h"
34 #include "basic-block.h"
39 #include "splay-tree.h"
41 #include "langhooks.h"
46 /* The alias sets assigned to MEMs assist the back-end in determining
47 which MEMs can alias which other MEMs. In general, two MEMs in
48 different alias sets cannot alias each other, with one important
49 exception. Consider something like:
51 struct S { int i; double d; };
53 a store to an `S' can alias something of either type `int' or type
54 `double'. (However, a store to an `int' cannot alias a `double'
55 and vice versa.) We indicate this via a tree structure that looks
63 (The arrows are directed and point downwards.)
64 In this situation we say the alias set for `struct S' is the
65 `superset' and that those for `int' and `double' are `subsets'.
67 To see whether two alias sets can point to the same memory, we must
68 see if either alias set is a subset of the other. We need not trace
69 past immediate descendants, however, since we propagate all
70 grandchildren up one level.
72 Alias set zero is implicitly a superset of all other alias sets.
73 However, this is no actual entry for alias set zero. It is an
74 error to attempt to explicitly construct a subset of zero. */
76 typedef struct alias_set_entry
78 /* The alias set number, as stored in MEM_ALIAS_SET. */
79 HOST_WIDE_INT alias_set
;
81 /* The children of the alias set. These are not just the immediate
82 children, but, in fact, all descendants. So, if we have:
84 struct T { struct S s; float f; }
86 continuing our example above, the children here will be all of
87 `int', `double', `float', and `struct S'. */
90 /* Nonzero if would have a child of zero: this effectively makes this
91 alias set the same as alias set zero. */
95 static int rtx_equal_for_memref_p (rtx
, rtx
);
96 static rtx
find_symbolic_term (rtx
);
97 static int memrefs_conflict_p (int, rtx
, int, rtx
, HOST_WIDE_INT
);
98 static void record_set (rtx
, rtx
, void *);
99 static int base_alias_check (rtx
, rtx
, enum machine_mode
,
101 static rtx
find_base_value (rtx
);
102 static int mems_in_disjoint_alias_sets_p (rtx
, rtx
);
103 static int insert_subset_children (splay_tree_node
, void*);
104 static tree
find_base_decl (tree
);
105 static alias_set_entry
get_alias_set_entry (HOST_WIDE_INT
);
106 static rtx
fixed_scalar_and_varying_struct_p (rtx
, rtx
, rtx
, rtx
,
108 static int aliases_everything_p (rtx
);
109 static bool nonoverlapping_component_refs_p (tree
, tree
);
110 static tree
decl_for_component_ref (tree
);
111 static rtx
adjust_offset_for_component_ref (tree
, rtx
);
112 static int nonoverlapping_memrefs_p (rtx
, rtx
);
113 static int write_dependence_p (rtx
, rtx
, int, int);
115 static int nonlocal_mentioned_p_1 (rtx
*, void *);
116 static int nonlocal_mentioned_p (rtx
);
117 static int nonlocal_referenced_p_1 (rtx
*, void *);
118 static int nonlocal_referenced_p (rtx
);
119 static int nonlocal_set_p_1 (rtx
*, void *);
120 static int nonlocal_set_p (rtx
);
121 static void memory_modified_1 (rtx
, rtx
, void *);
123 /* Set up all info needed to perform alias analysis on memory references. */
125 /* Returns the size in bytes of the mode of X. */
126 #define SIZE_FOR_MODE(X) (GET_MODE_SIZE (GET_MODE (X)))
128 /* Returns nonzero if MEM1 and MEM2 do not alias because they are in
129 different alias sets. We ignore alias sets in functions making use
130 of variable arguments because the va_arg macros on some systems are
132 #define DIFFERENT_ALIAS_SETS_P(MEM1, MEM2) \
133 mems_in_disjoint_alias_sets_p (MEM1, MEM2)
135 /* Cap the number of passes we make over the insns propagating alias
136 information through set chains. 10 is a completely arbitrary choice. */
137 #define MAX_ALIAS_LOOP_PASSES 10
139 /* reg_base_value[N] gives an address to which register N is related.
140 If all sets after the first add or subtract to the current value
141 or otherwise modify it so it does not point to a different top level
142 object, reg_base_value[N] is equal to the address part of the source
145 A base address can be an ADDRESS, SYMBOL_REF, or LABEL_REF. ADDRESS
146 expressions represent certain special values: function arguments and
147 the stack, frame, and argument pointers.
149 The contents of an ADDRESS is not normally used, the mode of the
150 ADDRESS determines whether the ADDRESS is a function argument or some
151 other special value. Pointer equality, not rtx_equal_p, determines whether
152 two ADDRESS expressions refer to the same base address.
154 The only use of the contents of an ADDRESS is for determining if the
155 current function performs nonlocal memory memory references for the
156 purposes of marking the function as a constant function. */
158 static GTY((length ("reg_base_value_size"))) rtx
*reg_base_value
;
159 static rtx
*new_reg_base_value
;
160 static unsigned int reg_base_value_size
; /* size of reg_base_value array */
162 /* Static hunks of RTL used by the aliasing code; these are initialized
163 once per function to avoid unnecessary RTL allocations. */
164 static GTY (()) rtx static_reg_base_value
[FIRST_PSEUDO_REGISTER
];
166 #define REG_BASE_VALUE(X) \
167 (REGNO (X) < reg_base_value_size \
168 ? reg_base_value[REGNO (X)] : 0)
170 /* Vector of known invariant relationships between registers. Set in
171 loop unrolling. Indexed by register number, if nonzero the value
172 is an expression describing this register in terms of another.
174 The length of this array is REG_BASE_VALUE_SIZE.
176 Because this array contains only pseudo registers it has no effect
178 static rtx
*alias_invariant
;
180 /* Vector indexed by N giving the initial (unchanging) value known for
181 pseudo-register N. This array is initialized in
182 init_alias_analysis, and does not change until end_alias_analysis
184 rtx
*reg_known_value
;
186 /* Indicates number of valid entries in reg_known_value. */
187 static unsigned int reg_known_value_size
;
189 /* Vector recording for each reg_known_value whether it is due to a
190 REG_EQUIV note. Future passes (viz., reload) may replace the
191 pseudo with the equivalent expression and so we account for the
192 dependences that would be introduced if that happens.
194 The REG_EQUIV notes created in assign_parms may mention the arg
195 pointer, and there are explicit insns in the RTL that modify the
196 arg pointer. Thus we must ensure that such insns don't get
197 scheduled across each other because that would invalidate the
198 REG_EQUIV notes. One could argue that the REG_EQUIV notes are
199 wrong, but solving the problem in the scheduler will likely give
200 better code, so we do it here. */
201 char *reg_known_equiv_p
;
203 /* True when scanning insns from the start of the rtl to the
204 NOTE_INSN_FUNCTION_BEG note. */
205 static bool copying_arguments
;
207 /* The splay-tree used to store the various alias set entries. */
208 static splay_tree alias_sets
;
210 /* Returns a pointer to the alias set entry for ALIAS_SET, if there is
211 such an entry, or NULL otherwise. */
213 static alias_set_entry
214 get_alias_set_entry (HOST_WIDE_INT alias_set
)
217 = splay_tree_lookup (alias_sets
, (splay_tree_key
) alias_set
);
219 return sn
!= 0 ? ((alias_set_entry
) sn
->value
) : 0;
222 /* Returns nonzero if the alias sets for MEM1 and MEM2 are such that
223 the two MEMs cannot alias each other. */
226 mems_in_disjoint_alias_sets_p (rtx mem1
, rtx mem2
)
228 #ifdef ENABLE_CHECKING
229 /* Perform a basic sanity check. Namely, that there are no alias sets
230 if we're not using strict aliasing. This helps to catch bugs
231 whereby someone uses PUT_CODE, but doesn't clear MEM_ALIAS_SET, or
232 where a MEM is allocated in some way other than by the use of
233 gen_rtx_MEM, and the MEM_ALIAS_SET is not cleared. If we begin to
234 use alias sets to indicate that spilled registers cannot alias each
235 other, we might need to remove this check. */
236 if (! flag_strict_aliasing
237 && (MEM_ALIAS_SET (mem1
) != 0 || MEM_ALIAS_SET (mem2
) != 0))
241 return ! alias_sets_conflict_p (MEM_ALIAS_SET (mem1
), MEM_ALIAS_SET (mem2
));
244 /* Insert the NODE into the splay tree given by DATA. Used by
245 record_alias_subset via splay_tree_foreach. */
248 insert_subset_children (splay_tree_node node
, void *data
)
250 splay_tree_insert ((splay_tree
) data
, node
->key
, node
->value
);
255 /* Return 1 if the two specified alias sets may conflict. */
258 alias_sets_conflict_p (HOST_WIDE_INT set1
, HOST_WIDE_INT set2
)
262 /* If have no alias set information for one of the operands, we have
263 to assume it can alias anything. */
264 if (set1
== 0 || set2
== 0
265 /* If the two alias sets are the same, they may alias. */
269 /* See if the first alias set is a subset of the second. */
270 ase
= get_alias_set_entry (set1
);
272 && (ase
->has_zero_child
273 || splay_tree_lookup (ase
->children
,
274 (splay_tree_key
) set2
)))
277 /* Now do the same, but with the alias sets reversed. */
278 ase
= get_alias_set_entry (set2
);
280 && (ase
->has_zero_child
281 || splay_tree_lookup (ase
->children
,
282 (splay_tree_key
) set1
)))
285 /* The two alias sets are distinct and neither one is the
286 child of the other. Therefore, they cannot alias. */
290 /* Return 1 if TYPE is a RECORD_TYPE, UNION_TYPE, or QUAL_UNION_TYPE and has
291 has any readonly fields. If any of the fields have types that
292 contain readonly fields, return true as well. */
295 readonly_fields_p (tree type
)
299 if (TREE_CODE (type
) != RECORD_TYPE
&& TREE_CODE (type
) != UNION_TYPE
300 && TREE_CODE (type
) != QUAL_UNION_TYPE
)
303 for (field
= TYPE_FIELDS (type
); field
!= 0; field
= TREE_CHAIN (field
))
304 if (TREE_CODE (field
) == FIELD_DECL
305 && (TREE_READONLY (field
)
306 || readonly_fields_p (TREE_TYPE (field
))))
312 /* Return 1 if any MEM object of type T1 will always conflict (using the
313 dependency routines in this file) with any MEM object of type T2.
314 This is used when allocating temporary storage. If T1 and/or T2 are
315 NULL_TREE, it means we know nothing about the storage. */
318 objects_must_conflict_p (tree t1
, tree t2
)
320 HOST_WIDE_INT set1
, set2
;
322 /* If neither has a type specified, we don't know if they'll conflict
323 because we may be using them to store objects of various types, for
324 example the argument and local variables areas of inlined functions. */
325 if (t1
== 0 && t2
== 0)
328 /* If one or the other has readonly fields or is readonly,
329 then they may not conflict. */
330 if ((t1
!= 0 && readonly_fields_p (t1
))
331 || (t2
!= 0 && readonly_fields_p (t2
))
332 || (t1
!= 0 && lang_hooks
.honor_readonly
&& TYPE_READONLY (t1
))
333 || (t2
!= 0 && lang_hooks
.honor_readonly
&& TYPE_READONLY (t2
)))
336 /* If they are the same type, they must conflict. */
338 /* Likewise if both are volatile. */
339 || (t1
!= 0 && TYPE_VOLATILE (t1
) && t2
!= 0 && TYPE_VOLATILE (t2
)))
342 set1
= t1
? get_alias_set (t1
) : 0;
343 set2
= t2
? get_alias_set (t2
) : 0;
345 /* Otherwise they conflict if they have no alias set or the same. We
346 can't simply use alias_sets_conflict_p here, because we must make
347 sure that every subtype of t1 will conflict with every subtype of
348 t2 for which a pair of subobjects of these respective subtypes
349 overlaps on the stack. */
350 return set1
== 0 || set2
== 0 || set1
== set2
;
353 /* T is an expression with pointer type. Find the DECL on which this
354 expression is based. (For example, in `a[i]' this would be `a'.)
355 If there is no such DECL, or a unique decl cannot be determined,
356 NULL_TREE is returned. */
359 find_base_decl (tree t
)
363 if (t
== 0 || t
== error_mark_node
|| ! POINTER_TYPE_P (TREE_TYPE (t
)))
366 /* If this is a declaration, return it. */
367 if (TREE_CODE_CLASS (TREE_CODE (t
)) == 'd')
370 /* Handle general expressions. It would be nice to deal with
371 COMPONENT_REFs here. If we could tell that `a' and `b' were the
372 same, then `a->f' and `b->f' are also the same. */
373 switch (TREE_CODE_CLASS (TREE_CODE (t
)))
376 return find_base_decl (TREE_OPERAND (t
, 0));
379 /* Return 0 if found in neither or both are the same. */
380 d0
= find_base_decl (TREE_OPERAND (t
, 0));
381 d1
= find_base_decl (TREE_OPERAND (t
, 1));
392 d0
= find_base_decl (TREE_OPERAND (t
, 0));
393 d1
= find_base_decl (TREE_OPERAND (t
, 1));
394 d2
= find_base_decl (TREE_OPERAND (t
, 2));
396 /* Set any nonzero values from the last, then from the first. */
397 if (d1
== 0) d1
= d2
;
398 if (d0
== 0) d0
= d1
;
399 if (d1
== 0) d1
= d0
;
400 if (d2
== 0) d2
= d1
;
402 /* At this point all are nonzero or all are zero. If all three are the
403 same, return it. Otherwise, return zero. */
404 return (d0
== d1
&& d1
== d2
) ? d0
: 0;
411 /* Return 1 if all the nested component references handled by
412 get_inner_reference in T are such that we can address the object in T. */
415 can_address_p (tree t
)
417 /* If we're at the end, it is vacuously addressable. */
418 if (! handled_component_p (t
))
421 /* Bitfields are never addressable. */
422 else if (TREE_CODE (t
) == BIT_FIELD_REF
)
425 /* Fields are addressable unless they are marked as nonaddressable or
426 the containing type has alias set 0. */
427 else if (TREE_CODE (t
) == COMPONENT_REF
428 && ! DECL_NONADDRESSABLE_P (TREE_OPERAND (t
, 1))
429 && get_alias_set (TREE_TYPE (TREE_OPERAND (t
, 0))) != 0
430 && can_address_p (TREE_OPERAND (t
, 0)))
433 /* Likewise for arrays. */
434 else if ((TREE_CODE (t
) == ARRAY_REF
|| TREE_CODE (t
) == ARRAY_RANGE_REF
)
435 && ! TYPE_NONALIASED_COMPONENT (TREE_TYPE (TREE_OPERAND (t
, 0)))
436 && get_alias_set (TREE_TYPE (TREE_OPERAND (t
, 0))) != 0
437 && can_address_p (TREE_OPERAND (t
, 0)))
443 /* Return the alias set for T, which may be either a type or an
444 expression. Call language-specific routine for help, if needed. */
447 get_alias_set (tree t
)
451 /* If we're not doing any alias analysis, just assume everything
452 aliases everything else. Also return 0 if this or its type is
454 if (! flag_strict_aliasing
|| t
== error_mark_node
456 && (TREE_TYPE (t
) == 0 || TREE_TYPE (t
) == error_mark_node
)))
459 /* We can be passed either an expression or a type. This and the
460 language-specific routine may make mutually-recursive calls to each other
461 to figure out what to do. At each juncture, we see if this is a tree
462 that the language may need to handle specially. First handle things that
467 tree placeholder_ptr
= 0;
469 /* Remove any nops, then give the language a chance to do
470 something with this tree before we look at it. */
472 set
= (*lang_hooks
.get_alias_set
) (t
);
476 /* First see if the actual object referenced is an INDIRECT_REF from a
477 restrict-qualified pointer or a "void *". Replace
478 PLACEHOLDER_EXPRs. */
479 while (TREE_CODE (inner
) == PLACEHOLDER_EXPR
480 || handled_component_p (inner
))
482 if (TREE_CODE (inner
) == PLACEHOLDER_EXPR
)
483 inner
= find_placeholder (inner
, &placeholder_ptr
);
485 inner
= TREE_OPERAND (inner
, 0);
490 /* Check for accesses through restrict-qualified pointers. */
491 if (TREE_CODE (inner
) == INDIRECT_REF
)
493 tree decl
= find_base_decl (TREE_OPERAND (inner
, 0));
495 if (decl
&& DECL_POINTER_ALIAS_SET_KNOWN_P (decl
))
497 /* If we haven't computed the actual alias set, do it now. */
498 if (DECL_POINTER_ALIAS_SET (decl
) == -2)
500 /* No two restricted pointers can point at the same thing.
501 However, a restricted pointer can point at the same thing
502 as an unrestricted pointer, if that unrestricted pointer
503 is based on the restricted pointer. So, we make the
504 alias set for the restricted pointer a subset of the
505 alias set for the type pointed to by the type of the
507 HOST_WIDE_INT pointed_to_alias_set
508 = get_alias_set (TREE_TYPE (TREE_TYPE (decl
)));
510 if (pointed_to_alias_set
== 0)
511 /* It's not legal to make a subset of alias set zero. */
515 DECL_POINTER_ALIAS_SET (decl
) = new_alias_set ();
516 record_alias_subset (pointed_to_alias_set
,
517 DECL_POINTER_ALIAS_SET (decl
));
521 /* We use the alias set indicated in the declaration. */
522 return DECL_POINTER_ALIAS_SET (decl
);
525 /* If we have an INDIRECT_REF via a void pointer, we don't
526 know anything about what that might alias. */
527 else if (TREE_CODE (TREE_TYPE (inner
)) == VOID_TYPE
)
531 /* Otherwise, pick up the outermost object that we could have a pointer
532 to, processing conversion and PLACEHOLDER_EXPR as above. */
534 while (TREE_CODE (t
) == PLACEHOLDER_EXPR
535 || (handled_component_p (t
) && ! can_address_p (t
)))
537 if (TREE_CODE (t
) == PLACEHOLDER_EXPR
)
538 t
= find_placeholder (t
, &placeholder_ptr
);
540 t
= TREE_OPERAND (t
, 0);
545 /* If we've already determined the alias set for a decl, just return
546 it. This is necessary for C++ anonymous unions, whose component
547 variables don't look like union members (boo!). */
548 if (TREE_CODE (t
) == VAR_DECL
549 && DECL_RTL_SET_P (t
) && GET_CODE (DECL_RTL (t
)) == MEM
)
550 return MEM_ALIAS_SET (DECL_RTL (t
));
552 /* Now all we care about is the type. */
556 /* Variant qualifiers don't affect the alias set, so get the main
557 variant. If this is a type with a known alias set, return it. */
558 t
= TYPE_MAIN_VARIANT (t
);
559 if (TYPE_ALIAS_SET_KNOWN_P (t
))
560 return TYPE_ALIAS_SET (t
);
562 /* See if the language has special handling for this type. */
563 set
= (*lang_hooks
.get_alias_set
) (t
);
567 /* There are no objects of FUNCTION_TYPE, so there's no point in
568 using up an alias set for them. (There are, of course, pointers
569 and references to functions, but that's different.) */
570 else if (TREE_CODE (t
) == FUNCTION_TYPE
)
573 /* Unless the language specifies otherwise, let vector types alias
574 their components. This avoids some nasty type punning issues in
575 normal usage. And indeed lets vectors be treated more like an
577 else if (TREE_CODE (t
) == VECTOR_TYPE
)
578 set
= get_alias_set (TREE_TYPE (t
));
581 /* Otherwise make a new alias set for this type. */
582 set
= new_alias_set ();
584 TYPE_ALIAS_SET (t
) = set
;
586 /* If this is an aggregate type, we must record any component aliasing
588 if (AGGREGATE_TYPE_P (t
) || TREE_CODE (t
) == COMPLEX_TYPE
)
589 record_component_aliases (t
);
594 /* Return a brand-new alias set. */
599 static HOST_WIDE_INT last_alias_set
;
601 if (flag_strict_aliasing
)
602 return ++last_alias_set
;
607 /* Indicate that things in SUBSET can alias things in SUPERSET, but that
608 not everything that aliases SUPERSET also aliases SUBSET. For example,
609 in C, a store to an `int' can alias a load of a structure containing an
610 `int', and vice versa. But it can't alias a load of a 'double' member
611 of the same structure. Here, the structure would be the SUPERSET and
612 `int' the SUBSET. This relationship is also described in the comment at
613 the beginning of this file.
615 This function should be called only once per SUPERSET/SUBSET pair.
617 It is illegal for SUPERSET to be zero; everything is implicitly a
618 subset of alias set zero. */
621 record_alias_subset (HOST_WIDE_INT superset
, HOST_WIDE_INT subset
)
623 alias_set_entry superset_entry
;
624 alias_set_entry subset_entry
;
626 /* It is possible in complex type situations for both sets to be the same,
627 in which case we can ignore this operation. */
628 if (superset
== subset
)
634 superset_entry
= get_alias_set_entry (superset
);
635 if (superset_entry
== 0)
637 /* Create an entry for the SUPERSET, so that we have a place to
638 attach the SUBSET. */
639 superset_entry
= xmalloc (sizeof (struct alias_set_entry
));
640 superset_entry
->alias_set
= superset
;
641 superset_entry
->children
642 = splay_tree_new (splay_tree_compare_ints
, 0, 0);
643 superset_entry
->has_zero_child
= 0;
644 splay_tree_insert (alias_sets
, (splay_tree_key
) superset
,
645 (splay_tree_value
) superset_entry
);
649 superset_entry
->has_zero_child
= 1;
652 subset_entry
= get_alias_set_entry (subset
);
653 /* If there is an entry for the subset, enter all of its children
654 (if they are not already present) as children of the SUPERSET. */
657 if (subset_entry
->has_zero_child
)
658 superset_entry
->has_zero_child
= 1;
660 splay_tree_foreach (subset_entry
->children
, insert_subset_children
,
661 superset_entry
->children
);
664 /* Enter the SUBSET itself as a child of the SUPERSET. */
665 splay_tree_insert (superset_entry
->children
,
666 (splay_tree_key
) subset
, 0);
670 /* Record that component types of TYPE, if any, are part of that type for
671 aliasing purposes. For record types, we only record component types
672 for fields that are marked addressable. For array types, we always
673 record the component types, so the front end should not call this
674 function if the individual component aren't addressable. */
677 record_component_aliases (tree type
)
679 HOST_WIDE_INT superset
= get_alias_set (type
);
685 switch (TREE_CODE (type
))
688 if (! TYPE_NONALIASED_COMPONENT (type
))
689 record_alias_subset (superset
, get_alias_set (TREE_TYPE (type
)));
694 case QUAL_UNION_TYPE
:
695 /* Recursively record aliases for the base classes, if there are any. */
696 if (TYPE_BINFO (type
) != NULL
&& TYPE_BINFO_BASETYPES (type
) != NULL
)
699 for (i
= 0; i
< TREE_VEC_LENGTH (TYPE_BINFO_BASETYPES (type
)); i
++)
701 tree binfo
= TREE_VEC_ELT (TYPE_BINFO_BASETYPES (type
), i
);
702 record_alias_subset (superset
,
703 get_alias_set (BINFO_TYPE (binfo
)));
706 for (field
= TYPE_FIELDS (type
); field
!= 0; field
= TREE_CHAIN (field
))
707 if (TREE_CODE (field
) == FIELD_DECL
&& ! DECL_NONADDRESSABLE_P (field
))
708 record_alias_subset (superset
, get_alias_set (TREE_TYPE (field
)));
712 record_alias_subset (superset
, get_alias_set (TREE_TYPE (type
)));
720 /* Allocate an alias set for use in storing and reading from the varargs
724 get_varargs_alias_set (void)
726 static HOST_WIDE_INT set
= -1;
729 set
= new_alias_set ();
734 /* Likewise, but used for the fixed portions of the frame, e.g., register
738 get_frame_alias_set (void)
740 static HOST_WIDE_INT set
= -1;
743 set
= new_alias_set ();
748 /* Inside SRC, the source of a SET, find a base address. */
751 find_base_value (rtx src
)
755 switch (GET_CODE (src
))
763 /* At the start of a function, argument registers have known base
764 values which may be lost later. Returning an ADDRESS
765 expression here allows optimization based on argument values
766 even when the argument registers are used for other purposes. */
767 if (regno
< FIRST_PSEUDO_REGISTER
&& copying_arguments
)
768 return new_reg_base_value
[regno
];
770 /* If a pseudo has a known base value, return it. Do not do this
771 for non-fixed hard regs since it can result in a circular
772 dependency chain for registers which have values at function entry.
774 The test above is not sufficient because the scheduler may move
775 a copy out of an arg reg past the NOTE_INSN_FUNCTION_BEGIN. */
776 if ((regno
>= FIRST_PSEUDO_REGISTER
|| fixed_regs
[regno
])
777 && regno
< reg_base_value_size
)
779 /* If we're inside init_alias_analysis, use new_reg_base_value
780 to reduce the number of relaxation iterations. */
781 if (new_reg_base_value
&& new_reg_base_value
[regno
]
782 && REG_N_SETS (regno
) == 1)
783 return new_reg_base_value
[regno
];
785 if (reg_base_value
[regno
])
786 return reg_base_value
[regno
];
792 /* Check for an argument passed in memory. Only record in the
793 copying-arguments block; it is too hard to track changes
795 if (copying_arguments
796 && (XEXP (src
, 0) == arg_pointer_rtx
797 || (GET_CODE (XEXP (src
, 0)) == PLUS
798 && XEXP (XEXP (src
, 0), 0) == arg_pointer_rtx
)))
799 return gen_rtx_ADDRESS (VOIDmode
, src
);
804 if (GET_CODE (src
) != PLUS
&& GET_CODE (src
) != MINUS
)
807 /* ... fall through ... */
812 rtx temp
, src_0
= XEXP (src
, 0), src_1
= XEXP (src
, 1);
814 /* If either operand is a REG that is a known pointer, then it
816 if (REG_P (src_0
) && REG_POINTER (src_0
))
817 return find_base_value (src_0
);
818 if (REG_P (src_1
) && REG_POINTER (src_1
))
819 return find_base_value (src_1
);
821 /* If either operand is a REG, then see if we already have
822 a known value for it. */
825 temp
= find_base_value (src_0
);
832 temp
= find_base_value (src_1
);
837 /* If either base is named object or a special address
838 (like an argument or stack reference), then use it for the
841 && (GET_CODE (src_0
) == SYMBOL_REF
842 || GET_CODE (src_0
) == LABEL_REF
843 || (GET_CODE (src_0
) == ADDRESS
844 && GET_MODE (src_0
) != VOIDmode
)))
848 && (GET_CODE (src_1
) == SYMBOL_REF
849 || GET_CODE (src_1
) == LABEL_REF
850 || (GET_CODE (src_1
) == ADDRESS
851 && GET_MODE (src_1
) != VOIDmode
)))
854 /* Guess which operand is the base address:
855 If either operand is a symbol, then it is the base. If
856 either operand is a CONST_INT, then the other is the base. */
857 if (GET_CODE (src_1
) == CONST_INT
|| CONSTANT_P (src_0
))
858 return find_base_value (src_0
);
859 else if (GET_CODE (src_0
) == CONST_INT
|| CONSTANT_P (src_1
))
860 return find_base_value (src_1
);
866 /* The standard form is (lo_sum reg sym) so look only at the
868 return find_base_value (XEXP (src
, 1));
871 /* If the second operand is constant set the base
872 address to the first operand. */
873 if (GET_CODE (XEXP (src
, 1)) == CONST_INT
&& INTVAL (XEXP (src
, 1)) != 0)
874 return find_base_value (XEXP (src
, 0));
878 if (GET_MODE_SIZE (GET_MODE (src
)) < GET_MODE_SIZE (Pmode
))
888 return find_base_value (XEXP (src
, 0));
891 case SIGN_EXTEND
: /* used for NT/Alpha pointers */
893 rtx temp
= find_base_value (XEXP (src
, 0));
895 if (temp
!= 0 && CONSTANT_P (temp
))
896 temp
= convert_memory_address (Pmode
, temp
);
908 /* Called from init_alias_analysis indirectly through note_stores. */
910 /* While scanning insns to find base values, reg_seen[N] is nonzero if
911 register N has been set in this function. */
912 static char *reg_seen
;
914 /* Addresses which are known not to alias anything else are identified
915 by a unique integer. */
916 static int unique_id
;
919 record_set (rtx dest
, rtx set
, void *data ATTRIBUTE_UNUSED
)
925 if (GET_CODE (dest
) != REG
)
928 regno
= REGNO (dest
);
930 if (regno
>= reg_base_value_size
)
933 /* If this spans multiple hard registers, then we must indicate that every
934 register has an unusable value. */
935 if (regno
< FIRST_PSEUDO_REGISTER
)
936 n
= HARD_REGNO_NREGS (regno
, GET_MODE (dest
));
943 reg_seen
[regno
+ n
] = 1;
944 new_reg_base_value
[regno
+ n
] = 0;
951 /* A CLOBBER wipes out any old value but does not prevent a previously
952 unset register from acquiring a base address (i.e. reg_seen is not
954 if (GET_CODE (set
) == CLOBBER
)
956 new_reg_base_value
[regno
] = 0;
965 new_reg_base_value
[regno
] = 0;
969 new_reg_base_value
[regno
] = gen_rtx_ADDRESS (Pmode
,
970 GEN_INT (unique_id
++));
974 /* This is not the first set. If the new value is not related to the
975 old value, forget the base value. Note that the following code is
977 extern int x, y; int *p = &x; p += (&y-&x);
978 ANSI C does not allow computing the difference of addresses
979 of distinct top level objects. */
980 if (new_reg_base_value
[regno
])
981 switch (GET_CODE (src
))
985 if (XEXP (src
, 0) != dest
&& XEXP (src
, 1) != dest
)
986 new_reg_base_value
[regno
] = 0;
989 /* If the value we add in the PLUS is also a valid base value,
990 this might be the actual base value, and the original value
993 rtx other
= NULL_RTX
;
995 if (XEXP (src
, 0) == dest
)
996 other
= XEXP (src
, 1);
997 else if (XEXP (src
, 1) == dest
)
998 other
= XEXP (src
, 0);
1000 if (! other
|| find_base_value (other
))
1001 new_reg_base_value
[regno
] = 0;
1005 if (XEXP (src
, 0) != dest
|| GET_CODE (XEXP (src
, 1)) != CONST_INT
)
1006 new_reg_base_value
[regno
] = 0;
1009 new_reg_base_value
[regno
] = 0;
1012 /* If this is the first set of a register, record the value. */
1013 else if ((regno
>= FIRST_PSEUDO_REGISTER
|| ! fixed_regs
[regno
])
1014 && ! reg_seen
[regno
] && new_reg_base_value
[regno
] == 0)
1015 new_reg_base_value
[regno
] = find_base_value (src
);
1017 reg_seen
[regno
] = 1;
1020 /* Called from loop optimization when a new pseudo-register is
1021 created. It indicates that REGNO is being set to VAL. f INVARIANT
1022 is true then this value also describes an invariant relationship
1023 which can be used to deduce that two registers with unknown values
1027 record_base_value (unsigned int regno
, rtx val
, int invariant
)
1029 if (regno
>= reg_base_value_size
)
1032 if (invariant
&& alias_invariant
)
1033 alias_invariant
[regno
] = val
;
1035 if (GET_CODE (val
) == REG
)
1037 if (REGNO (val
) < reg_base_value_size
)
1038 reg_base_value
[regno
] = reg_base_value
[REGNO (val
)];
1043 reg_base_value
[regno
] = find_base_value (val
);
1046 /* Clear alias info for a register. This is used if an RTL transformation
1047 changes the value of a register. This is used in flow by AUTO_INC_DEC
1048 optimizations. We don't need to clear reg_base_value, since flow only
1049 changes the offset. */
1052 clear_reg_alias_info (rtx reg
)
1054 unsigned int regno
= REGNO (reg
);
1056 if (regno
< reg_known_value_size
&& regno
>= FIRST_PSEUDO_REGISTER
)
1057 reg_known_value
[regno
] = reg
;
1060 /* Returns a canonical version of X, from the point of view alias
1061 analysis. (For example, if X is a MEM whose address is a register,
1062 and the register has a known value (say a SYMBOL_REF), then a MEM
1063 whose address is the SYMBOL_REF is returned.) */
1068 /* Recursively look for equivalences. */
1069 if (GET_CODE (x
) == REG
&& REGNO (x
) >= FIRST_PSEUDO_REGISTER
1070 && REGNO (x
) < reg_known_value_size
)
1071 return reg_known_value
[REGNO (x
)] == x
1072 ? x
: canon_rtx (reg_known_value
[REGNO (x
)]);
1073 else if (GET_CODE (x
) == PLUS
)
1075 rtx x0
= canon_rtx (XEXP (x
, 0));
1076 rtx x1
= canon_rtx (XEXP (x
, 1));
1078 if (x0
!= XEXP (x
, 0) || x1
!= XEXP (x
, 1))
1080 if (GET_CODE (x0
) == CONST_INT
)
1081 return plus_constant (x1
, INTVAL (x0
));
1082 else if (GET_CODE (x1
) == CONST_INT
)
1083 return plus_constant (x0
, INTVAL (x1
));
1084 return gen_rtx_PLUS (GET_MODE (x
), x0
, x1
);
1088 /* This gives us much better alias analysis when called from
1089 the loop optimizer. Note we want to leave the original
1090 MEM alone, but need to return the canonicalized MEM with
1091 all the flags with their original values. */
1092 else if (GET_CODE (x
) == MEM
)
1093 x
= replace_equiv_address_nv (x
, canon_rtx (XEXP (x
, 0)));
1098 /* Return 1 if X and Y are identical-looking rtx's.
1099 Expect that X and Y has been already canonicalized.
1101 We use the data in reg_known_value above to see if two registers with
1102 different numbers are, in fact, equivalent. */
1105 rtx_equal_for_memref_p (rtx x
, rtx y
)
1112 if (x
== 0 && y
== 0)
1114 if (x
== 0 || y
== 0)
1120 code
= GET_CODE (x
);
1121 /* Rtx's of different codes cannot be equal. */
1122 if (code
!= GET_CODE (y
))
1125 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.
1126 (REG:SI x) and (REG:HI x) are NOT equivalent. */
1128 if (GET_MODE (x
) != GET_MODE (y
))
1131 /* Some RTL can be compared without a recursive examination. */
1135 return CSELIB_VAL_PTR (x
) == CSELIB_VAL_PTR (y
);
1138 return REGNO (x
) == REGNO (y
);
1141 return XEXP (x
, 0) == XEXP (y
, 0);
1144 return XSTR (x
, 0) == XSTR (y
, 0);
1148 /* There's no need to compare the contents of CONST_DOUBLEs or
1149 CONST_INTs because pointer equality is a good enough
1150 comparison for these nodes. */
1154 return (XINT (x
, 1) == XINT (y
, 1)
1155 && rtx_equal_for_memref_p (XEXP (x
, 0),
1162 /* canon_rtx knows how to handle plus. No need to canonicalize. */
1164 return ((rtx_equal_for_memref_p (XEXP (x
, 0), XEXP (y
, 0))
1165 && rtx_equal_for_memref_p (XEXP (x
, 1), XEXP (y
, 1)))
1166 || (rtx_equal_for_memref_p (XEXP (x
, 0), XEXP (y
, 1))
1167 && rtx_equal_for_memref_p (XEXP (x
, 1), XEXP (y
, 0))));
1168 /* For commutative operations, the RTX match if the operand match in any
1169 order. Also handle the simple binary and unary cases without a loop. */
1170 if (code
== EQ
|| code
== NE
|| GET_RTX_CLASS (code
) == 'c')
1172 rtx xop0
= canon_rtx (XEXP (x
, 0));
1173 rtx yop0
= canon_rtx (XEXP (y
, 0));
1174 rtx yop1
= canon_rtx (XEXP (y
, 1));
1176 return ((rtx_equal_for_memref_p (xop0
, yop0
)
1177 && rtx_equal_for_memref_p (canon_rtx (XEXP (x
, 1)), yop1
))
1178 || (rtx_equal_for_memref_p (xop0
, yop1
)
1179 && rtx_equal_for_memref_p (canon_rtx (XEXP (x
, 1)), yop0
)));
1181 else if (GET_RTX_CLASS (code
) == '<' || GET_RTX_CLASS (code
) == '2')
1183 return (rtx_equal_for_memref_p (canon_rtx (XEXP (x
, 0)),
1184 canon_rtx (XEXP (y
, 0)))
1185 && rtx_equal_for_memref_p (canon_rtx (XEXP (x
, 1)),
1186 canon_rtx (XEXP (y
, 1))));
1188 else if (GET_RTX_CLASS (code
) == '1')
1189 return rtx_equal_for_memref_p (canon_rtx (XEXP (x
, 0)),
1190 canon_rtx (XEXP (y
, 0)));
1192 /* Compare the elements. If any pair of corresponding elements
1193 fail to match, return 0 for the whole things.
1195 Limit cases to types which actually appear in addresses. */
1197 fmt
= GET_RTX_FORMAT (code
);
1198 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1203 if (XINT (x
, i
) != XINT (y
, i
))
1208 /* Two vectors must have the same length. */
1209 if (XVECLEN (x
, i
) != XVECLEN (y
, i
))
1212 /* And the corresponding elements must match. */
1213 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
1214 if (rtx_equal_for_memref_p (canon_rtx (XVECEXP (x
, i
, j
)),
1215 canon_rtx (XVECEXP (y
, i
, j
))) == 0)
1220 if (rtx_equal_for_memref_p (canon_rtx (XEXP (x
, i
)),
1221 canon_rtx (XEXP (y
, i
))) == 0)
1225 /* This can happen for asm operands. */
1227 if (strcmp (XSTR (x
, i
), XSTR (y
, i
)))
1231 /* This can happen for an asm which clobbers memory. */
1235 /* It is believed that rtx's at this level will never
1236 contain anything but integers and other rtx's,
1237 except for within LABEL_REFs and SYMBOL_REFs. */
1245 /* Given an rtx X, find a SYMBOL_REF or LABEL_REF within
1246 X and return it, or return 0 if none found. */
1249 find_symbolic_term (rtx x
)
1255 code
= GET_CODE (x
);
1256 if (code
== SYMBOL_REF
|| code
== LABEL_REF
)
1258 if (GET_RTX_CLASS (code
) == 'o')
1261 fmt
= GET_RTX_FORMAT (code
);
1262 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1268 t
= find_symbolic_term (XEXP (x
, i
));
1272 else if (fmt
[i
] == 'E')
1279 find_base_term (rtx x
)
1282 struct elt_loc_list
*l
;
1284 #if defined (FIND_BASE_TERM)
1285 /* Try machine-dependent ways to find the base term. */
1286 x
= FIND_BASE_TERM (x
);
1289 switch (GET_CODE (x
))
1292 return REG_BASE_VALUE (x
);
1295 if (GET_MODE_SIZE (GET_MODE (x
)) < GET_MODE_SIZE (Pmode
))
1305 return find_base_term (XEXP (x
, 0));
1308 case SIGN_EXTEND
: /* Used for Alpha/NT pointers */
1310 rtx temp
= find_base_term (XEXP (x
, 0));
1312 if (temp
!= 0 && CONSTANT_P (temp
))
1313 temp
= convert_memory_address (Pmode
, temp
);
1319 val
= CSELIB_VAL_PTR (x
);
1320 for (l
= val
->locs
; l
; l
= l
->next
)
1321 if ((x
= find_base_term (l
->loc
)) != 0)
1327 if (GET_CODE (x
) != PLUS
&& GET_CODE (x
) != MINUS
)
1334 rtx tmp1
= XEXP (x
, 0);
1335 rtx tmp2
= XEXP (x
, 1);
1337 /* This is a little bit tricky since we have to determine which of
1338 the two operands represents the real base address. Otherwise this
1339 routine may return the index register instead of the base register.
1341 That may cause us to believe no aliasing was possible, when in
1342 fact aliasing is possible.
1344 We use a few simple tests to guess the base register. Additional
1345 tests can certainly be added. For example, if one of the operands
1346 is a shift or multiply, then it must be the index register and the
1347 other operand is the base register. */
1349 if (tmp1
== pic_offset_table_rtx
&& CONSTANT_P (tmp2
))
1350 return find_base_term (tmp2
);
1352 /* If either operand is known to be a pointer, then use it
1353 to determine the base term. */
1354 if (REG_P (tmp1
) && REG_POINTER (tmp1
))
1355 return find_base_term (tmp1
);
1357 if (REG_P (tmp2
) && REG_POINTER (tmp2
))
1358 return find_base_term (tmp2
);
1360 /* Neither operand was known to be a pointer. Go ahead and find the
1361 base term for both operands. */
1362 tmp1
= find_base_term (tmp1
);
1363 tmp2
= find_base_term (tmp2
);
1365 /* If either base term is named object or a special address
1366 (like an argument or stack reference), then use it for the
1369 && (GET_CODE (tmp1
) == SYMBOL_REF
1370 || GET_CODE (tmp1
) == LABEL_REF
1371 || (GET_CODE (tmp1
) == ADDRESS
1372 && GET_MODE (tmp1
) != VOIDmode
)))
1376 && (GET_CODE (tmp2
) == SYMBOL_REF
1377 || GET_CODE (tmp2
) == LABEL_REF
1378 || (GET_CODE (tmp2
) == ADDRESS
1379 && GET_MODE (tmp2
) != VOIDmode
)))
1382 /* We could not determine which of the two operands was the
1383 base register and which was the index. So we can determine
1384 nothing from the base alias check. */
1389 if (GET_CODE (XEXP (x
, 1)) == CONST_INT
&& INTVAL (XEXP (x
, 1)) != 0)
1390 return find_base_term (XEXP (x
, 0));
1398 return REG_BASE_VALUE (frame_pointer_rtx
);
1405 /* Return 0 if the addresses X and Y are known to point to different
1406 objects, 1 if they might be pointers to the same object. */
1409 base_alias_check (rtx x
, rtx y
, enum machine_mode x_mode
,
1410 enum machine_mode y_mode
)
1412 rtx x_base
= find_base_term (x
);
1413 rtx y_base
= find_base_term (y
);
1415 /* If the address itself has no known base see if a known equivalent
1416 value has one. If either address still has no known base, nothing
1417 is known about aliasing. */
1422 if (! flag_expensive_optimizations
|| (x_c
= canon_rtx (x
)) == x
)
1425 x_base
= find_base_term (x_c
);
1433 if (! flag_expensive_optimizations
|| (y_c
= canon_rtx (y
)) == y
)
1436 y_base
= find_base_term (y_c
);
1441 /* If the base addresses are equal nothing is known about aliasing. */
1442 if (rtx_equal_p (x_base
, y_base
))
1445 /* The base addresses of the read and write are different expressions.
1446 If they are both symbols and they are not accessed via AND, there is
1447 no conflict. We can bring knowledge of object alignment into play
1448 here. For example, on alpha, "char a, b;" can alias one another,
1449 though "char a; long b;" cannot. */
1450 if (GET_CODE (x_base
) != ADDRESS
&& GET_CODE (y_base
) != ADDRESS
)
1452 if (GET_CODE (x
) == AND
&& GET_CODE (y
) == AND
)
1454 if (GET_CODE (x
) == AND
1455 && (GET_CODE (XEXP (x
, 1)) != CONST_INT
1456 || (int) GET_MODE_UNIT_SIZE (y_mode
) < -INTVAL (XEXP (x
, 1))))
1458 if (GET_CODE (y
) == AND
1459 && (GET_CODE (XEXP (y
, 1)) != CONST_INT
1460 || (int) GET_MODE_UNIT_SIZE (x_mode
) < -INTVAL (XEXP (y
, 1))))
1462 /* Differing symbols never alias. */
1466 /* If one address is a stack reference there can be no alias:
1467 stack references using different base registers do not alias,
1468 a stack reference can not alias a parameter, and a stack reference
1469 can not alias a global. */
1470 if ((GET_CODE (x_base
) == ADDRESS
&& GET_MODE (x_base
) == Pmode
)
1471 || (GET_CODE (y_base
) == ADDRESS
&& GET_MODE (y_base
) == Pmode
))
1474 if (! flag_argument_noalias
)
1477 if (flag_argument_noalias
> 1)
1480 /* Weak noalias assertion (arguments are distinct, but may match globals). */
1481 return ! (GET_MODE (x_base
) == VOIDmode
&& GET_MODE (y_base
) == VOIDmode
);
1484 /* Convert the address X into something we can use. This is done by returning
1485 it unchanged unless it is a value; in the latter case we call cselib to get
1486 a more useful rtx. */
1492 struct elt_loc_list
*l
;
1494 if (GET_CODE (x
) != VALUE
)
1496 v
= CSELIB_VAL_PTR (x
);
1497 for (l
= v
->locs
; l
; l
= l
->next
)
1498 if (CONSTANT_P (l
->loc
))
1500 for (l
= v
->locs
; l
; l
= l
->next
)
1501 if (GET_CODE (l
->loc
) != REG
&& GET_CODE (l
->loc
) != MEM
)
1504 return v
->locs
->loc
;
1508 /* Return the address of the (N_REFS + 1)th memory reference to ADDR
1509 where SIZE is the size in bytes of the memory reference. If ADDR
1510 is not modified by the memory reference then ADDR is returned. */
1513 addr_side_effect_eval (rtx addr
, int size
, int n_refs
)
1517 switch (GET_CODE (addr
))
1520 offset
= (n_refs
+ 1) * size
;
1523 offset
= -(n_refs
+ 1) * size
;
1526 offset
= n_refs
* size
;
1529 offset
= -n_refs
* size
;
1537 addr
= gen_rtx_PLUS (GET_MODE (addr
), XEXP (addr
, 0),
1540 addr
= XEXP (addr
, 0);
1541 addr
= canon_rtx (addr
);
1546 /* Return nonzero if X and Y (memory addresses) could reference the
1547 same location in memory. C is an offset accumulator. When
1548 C is nonzero, we are testing aliases between X and Y + C.
1549 XSIZE is the size in bytes of the X reference,
1550 similarly YSIZE is the size in bytes for Y.
1551 Expect that canon_rtx has been already called for X and Y.
1553 If XSIZE or YSIZE is zero, we do not know the amount of memory being
1554 referenced (the reference was BLKmode), so make the most pessimistic
1557 If XSIZE or YSIZE is negative, we may access memory outside the object
1558 being referenced as a side effect. This can happen when using AND to
1559 align memory references, as is done on the Alpha.
1561 Nice to notice that varying addresses cannot conflict with fp if no
1562 local variables had their addresses taken, but that's too hard now. */
1565 memrefs_conflict_p (int xsize
, rtx x
, int ysize
, rtx y
, HOST_WIDE_INT c
)
1567 if (GET_CODE (x
) == VALUE
)
1569 if (GET_CODE (y
) == VALUE
)
1571 if (GET_CODE (x
) == HIGH
)
1573 else if (GET_CODE (x
) == LO_SUM
)
1576 x
= addr_side_effect_eval (x
, xsize
, 0);
1577 if (GET_CODE (y
) == HIGH
)
1579 else if (GET_CODE (y
) == LO_SUM
)
1582 y
= addr_side_effect_eval (y
, ysize
, 0);
1584 if (rtx_equal_for_memref_p (x
, y
))
1586 if (xsize
<= 0 || ysize
<= 0)
1588 if (c
>= 0 && xsize
> c
)
1590 if (c
< 0 && ysize
+c
> 0)
1595 /* This code used to check for conflicts involving stack references and
1596 globals but the base address alias code now handles these cases. */
1598 if (GET_CODE (x
) == PLUS
)
1600 /* The fact that X is canonicalized means that this
1601 PLUS rtx is canonicalized. */
1602 rtx x0
= XEXP (x
, 0);
1603 rtx x1
= XEXP (x
, 1);
1605 if (GET_CODE (y
) == PLUS
)
1607 /* The fact that Y is canonicalized means that this
1608 PLUS rtx is canonicalized. */
1609 rtx y0
= XEXP (y
, 0);
1610 rtx y1
= XEXP (y
, 1);
1612 if (rtx_equal_for_memref_p (x1
, y1
))
1613 return memrefs_conflict_p (xsize
, x0
, ysize
, y0
, c
);
1614 if (rtx_equal_for_memref_p (x0
, y0
))
1615 return memrefs_conflict_p (xsize
, x1
, ysize
, y1
, c
);
1616 if (GET_CODE (x1
) == CONST_INT
)
1618 if (GET_CODE (y1
) == CONST_INT
)
1619 return memrefs_conflict_p (xsize
, x0
, ysize
, y0
,
1620 c
- INTVAL (x1
) + INTVAL (y1
));
1622 return memrefs_conflict_p (xsize
, x0
, ysize
, y
,
1625 else if (GET_CODE (y1
) == CONST_INT
)
1626 return memrefs_conflict_p (xsize
, x
, ysize
, y0
, c
+ INTVAL (y1
));
1630 else if (GET_CODE (x1
) == CONST_INT
)
1631 return memrefs_conflict_p (xsize
, x0
, ysize
, y
, c
- INTVAL (x1
));
1633 else if (GET_CODE (y
) == PLUS
)
1635 /* The fact that Y is canonicalized means that this
1636 PLUS rtx is canonicalized. */
1637 rtx y0
= XEXP (y
, 0);
1638 rtx y1
= XEXP (y
, 1);
1640 if (GET_CODE (y1
) == CONST_INT
)
1641 return memrefs_conflict_p (xsize
, x
, ysize
, y0
, c
+ INTVAL (y1
));
1646 if (GET_CODE (x
) == GET_CODE (y
))
1647 switch (GET_CODE (x
))
1651 /* Handle cases where we expect the second operands to be the
1652 same, and check only whether the first operand would conflict
1655 rtx x1
= canon_rtx (XEXP (x
, 1));
1656 rtx y1
= canon_rtx (XEXP (y
, 1));
1657 if (! rtx_equal_for_memref_p (x1
, y1
))
1659 x0
= canon_rtx (XEXP (x
, 0));
1660 y0
= canon_rtx (XEXP (y
, 0));
1661 if (rtx_equal_for_memref_p (x0
, y0
))
1662 return (xsize
== 0 || ysize
== 0
1663 || (c
>= 0 && xsize
> c
) || (c
< 0 && ysize
+c
> 0));
1665 /* Can't properly adjust our sizes. */
1666 if (GET_CODE (x1
) != CONST_INT
)
1668 xsize
/= INTVAL (x1
);
1669 ysize
/= INTVAL (x1
);
1671 return memrefs_conflict_p (xsize
, x0
, ysize
, y0
, c
);
1675 /* Are these registers known not to be equal? */
1676 if (alias_invariant
)
1678 unsigned int r_x
= REGNO (x
), r_y
= REGNO (y
);
1679 rtx i_x
, i_y
; /* invariant relationships of X and Y */
1681 i_x
= r_x
>= reg_base_value_size
? 0 : alias_invariant
[r_x
];
1682 i_y
= r_y
>= reg_base_value_size
? 0 : alias_invariant
[r_y
];
1684 if (i_x
== 0 && i_y
== 0)
1687 if (! memrefs_conflict_p (xsize
, i_x
? i_x
: x
,
1688 ysize
, i_y
? i_y
: y
, c
))
1697 /* Treat an access through an AND (e.g. a subword access on an Alpha)
1698 as an access with indeterminate size. Assume that references
1699 besides AND are aligned, so if the size of the other reference is
1700 at least as large as the alignment, assume no other overlap. */
1701 if (GET_CODE (x
) == AND
&& GET_CODE (XEXP (x
, 1)) == CONST_INT
)
1703 if (GET_CODE (y
) == AND
|| ysize
< -INTVAL (XEXP (x
, 1)))
1705 return memrefs_conflict_p (xsize
, canon_rtx (XEXP (x
, 0)), ysize
, y
, c
);
1707 if (GET_CODE (y
) == AND
&& GET_CODE (XEXP (y
, 1)) == CONST_INT
)
1709 /* ??? If we are indexing far enough into the array/structure, we
1710 may yet be able to determine that we can not overlap. But we
1711 also need to that we are far enough from the end not to overlap
1712 a following reference, so we do nothing with that for now. */
1713 if (GET_CODE (x
) == AND
|| xsize
< -INTVAL (XEXP (y
, 1)))
1715 return memrefs_conflict_p (xsize
, x
, ysize
, canon_rtx (XEXP (y
, 0)), c
);
1718 if (GET_CODE (x
) == ADDRESSOF
)
1720 if (y
== frame_pointer_rtx
1721 || GET_CODE (y
) == ADDRESSOF
)
1722 return xsize
<= 0 || ysize
<= 0;
1724 if (GET_CODE (y
) == ADDRESSOF
)
1726 if (x
== frame_pointer_rtx
)
1727 return xsize
<= 0 || ysize
<= 0;
1732 if (GET_CODE (x
) == CONST_INT
&& GET_CODE (y
) == CONST_INT
)
1734 c
+= (INTVAL (y
) - INTVAL (x
));
1735 return (xsize
<= 0 || ysize
<= 0
1736 || (c
>= 0 && xsize
> c
) || (c
< 0 && ysize
+c
> 0));
1739 if (GET_CODE (x
) == CONST
)
1741 if (GET_CODE (y
) == CONST
)
1742 return memrefs_conflict_p (xsize
, canon_rtx (XEXP (x
, 0)),
1743 ysize
, canon_rtx (XEXP (y
, 0)), c
);
1745 return memrefs_conflict_p (xsize
, canon_rtx (XEXP (x
, 0)),
1748 if (GET_CODE (y
) == CONST
)
1749 return memrefs_conflict_p (xsize
, x
, ysize
,
1750 canon_rtx (XEXP (y
, 0)), c
);
1753 return (xsize
<= 0 || ysize
<= 0
1754 || (rtx_equal_for_memref_p (x
, y
)
1755 && ((c
>= 0 && xsize
> c
) || (c
< 0 && ysize
+c
> 0))));
1762 /* Functions to compute memory dependencies.
1764 Since we process the insns in execution order, we can build tables
1765 to keep track of what registers are fixed (and not aliased), what registers
1766 are varying in known ways, and what registers are varying in unknown
1769 If both memory references are volatile, then there must always be a
1770 dependence between the two references, since their order can not be
1771 changed. A volatile and non-volatile reference can be interchanged
1774 A MEM_IN_STRUCT reference at a non-AND varying address can never
1775 conflict with a non-MEM_IN_STRUCT reference at a fixed address. We
1776 also must allow AND addresses, because they may generate accesses
1777 outside the object being referenced. This is used to generate
1778 aligned addresses from unaligned addresses, for instance, the alpha
1779 storeqi_unaligned pattern. */
1781 /* Read dependence: X is read after read in MEM takes place. There can
1782 only be a dependence here if both reads are volatile. */
1785 read_dependence (rtx mem
, rtx x
)
1787 return MEM_VOLATILE_P (x
) && MEM_VOLATILE_P (mem
);
1790 /* Returns MEM1 if and only if MEM1 is a scalar at a fixed address and
1791 MEM2 is a reference to a structure at a varying address, or returns
1792 MEM2 if vice versa. Otherwise, returns NULL_RTX. If a non-NULL
1793 value is returned MEM1 and MEM2 can never alias. VARIES_P is used
1794 to decide whether or not an address may vary; it should return
1795 nonzero whenever variation is possible.
1796 MEM1_ADDR and MEM2_ADDR are the addresses of MEM1 and MEM2. */
1799 fixed_scalar_and_varying_struct_p (rtx mem1
, rtx mem2
, rtx mem1_addr
,
1801 int (*varies_p
) (rtx
, int))
1803 if (! flag_strict_aliasing
)
1806 if (MEM_SCALAR_P (mem1
) && MEM_IN_STRUCT_P (mem2
)
1807 && !varies_p (mem1_addr
, 1) && varies_p (mem2_addr
, 1))
1808 /* MEM1 is a scalar at a fixed address; MEM2 is a struct at a
1812 if (MEM_IN_STRUCT_P (mem1
) && MEM_SCALAR_P (mem2
)
1813 && varies_p (mem1_addr
, 1) && !varies_p (mem2_addr
, 1))
1814 /* MEM2 is a scalar at a fixed address; MEM1 is a struct at a
1821 /* Returns nonzero if something about the mode or address format MEM1
1822 indicates that it might well alias *anything*. */
1825 aliases_everything_p (rtx mem
)
1827 if (GET_CODE (XEXP (mem
, 0)) == AND
)
1828 /* If the address is an AND, its very hard to know at what it is
1829 actually pointing. */
1835 /* Return true if we can determine that the fields referenced cannot
1836 overlap for any pair of objects. */
1839 nonoverlapping_component_refs_p (tree x
, tree y
)
1841 tree fieldx
, fieldy
, typex
, typey
, orig_y
;
1845 /* The comparison has to be done at a common type, since we don't
1846 know how the inheritance hierarchy works. */
1850 fieldx
= TREE_OPERAND (x
, 1);
1851 typex
= DECL_FIELD_CONTEXT (fieldx
);
1856 fieldy
= TREE_OPERAND (y
, 1);
1857 typey
= DECL_FIELD_CONTEXT (fieldy
);
1862 y
= TREE_OPERAND (y
, 0);
1864 while (y
&& TREE_CODE (y
) == COMPONENT_REF
);
1866 x
= TREE_OPERAND (x
, 0);
1868 while (x
&& TREE_CODE (x
) == COMPONENT_REF
);
1870 /* Never found a common type. */
1874 /* If we're left with accessing different fields of a structure,
1876 if (TREE_CODE (typex
) == RECORD_TYPE
1877 && fieldx
!= fieldy
)
1880 /* The comparison on the current field failed. If we're accessing
1881 a very nested structure, look at the next outer level. */
1882 x
= TREE_OPERAND (x
, 0);
1883 y
= TREE_OPERAND (y
, 0);
1886 && TREE_CODE (x
) == COMPONENT_REF
1887 && TREE_CODE (y
) == COMPONENT_REF
);
1892 /* Look at the bottom of the COMPONENT_REF list for a DECL, and return it. */
1895 decl_for_component_ref (tree x
)
1899 x
= TREE_OPERAND (x
, 0);
1901 while (x
&& TREE_CODE (x
) == COMPONENT_REF
);
1903 return x
&& DECL_P (x
) ? x
: NULL_TREE
;
1906 /* Walk up the COMPONENT_REF list and adjust OFFSET to compensate for the
1907 offset of the field reference. */
1910 adjust_offset_for_component_ref (tree x
, rtx offset
)
1912 HOST_WIDE_INT ioffset
;
1917 ioffset
= INTVAL (offset
);
1920 tree field
= TREE_OPERAND (x
, 1);
1922 if (! host_integerp (DECL_FIELD_OFFSET (field
), 1))
1924 ioffset
+= (tree_low_cst (DECL_FIELD_OFFSET (field
), 1)
1925 + (tree_low_cst (DECL_FIELD_BIT_OFFSET (field
), 1)
1928 x
= TREE_OPERAND (x
, 0);
1930 while (x
&& TREE_CODE (x
) == COMPONENT_REF
);
1932 return GEN_INT (ioffset
);
1935 /* Return nonzero if we can determine the exprs corresponding to memrefs
1936 X and Y and they do not overlap. */
1939 nonoverlapping_memrefs_p (rtx x
, rtx y
)
1941 tree exprx
= MEM_EXPR (x
), expry
= MEM_EXPR (y
);
1944 rtx moffsetx
, moffsety
;
1945 HOST_WIDE_INT offsetx
= 0, offsety
= 0, sizex
, sizey
, tem
;
1947 /* Unless both have exprs, we can't tell anything. */
1948 if (exprx
== 0 || expry
== 0)
1951 /* If both are field references, we may be able to determine something. */
1952 if (TREE_CODE (exprx
) == COMPONENT_REF
1953 && TREE_CODE (expry
) == COMPONENT_REF
1954 && nonoverlapping_component_refs_p (exprx
, expry
))
1957 /* If the field reference test failed, look at the DECLs involved. */
1958 moffsetx
= MEM_OFFSET (x
);
1959 if (TREE_CODE (exprx
) == COMPONENT_REF
)
1961 tree t
= decl_for_component_ref (exprx
);
1964 moffsetx
= adjust_offset_for_component_ref (exprx
, moffsetx
);
1967 else if (TREE_CODE (exprx
) == INDIRECT_REF
)
1969 exprx
= TREE_OPERAND (exprx
, 0);
1970 if (flag_argument_noalias
< 2
1971 || TREE_CODE (exprx
) != PARM_DECL
)
1975 moffsety
= MEM_OFFSET (y
);
1976 if (TREE_CODE (expry
) == COMPONENT_REF
)
1978 tree t
= decl_for_component_ref (expry
);
1981 moffsety
= adjust_offset_for_component_ref (expry
, moffsety
);
1984 else if (TREE_CODE (expry
) == INDIRECT_REF
)
1986 expry
= TREE_OPERAND (expry
, 0);
1987 if (flag_argument_noalias
< 2
1988 || TREE_CODE (expry
) != PARM_DECL
)
1992 if (! DECL_P (exprx
) || ! DECL_P (expry
))
1995 rtlx
= DECL_RTL (exprx
);
1996 rtly
= DECL_RTL (expry
);
1998 /* If either RTL is not a MEM, it must be a REG or CONCAT, meaning they
1999 can't overlap unless they are the same because we never reuse that part
2000 of the stack frame used for locals for spilled pseudos. */
2001 if ((GET_CODE (rtlx
) != MEM
|| GET_CODE (rtly
) != MEM
)
2002 && ! rtx_equal_p (rtlx
, rtly
))
2005 /* Get the base and offsets of both decls. If either is a register, we
2006 know both are and are the same, so use that as the base. The only
2007 we can avoid overlap is if we can deduce that they are nonoverlapping
2008 pieces of that decl, which is very rare. */
2009 basex
= GET_CODE (rtlx
) == MEM
? XEXP (rtlx
, 0) : rtlx
;
2010 if (GET_CODE (basex
) == PLUS
&& GET_CODE (XEXP (basex
, 1)) == CONST_INT
)
2011 offsetx
= INTVAL (XEXP (basex
, 1)), basex
= XEXP (basex
, 0);
2013 basey
= GET_CODE (rtly
) == MEM
? XEXP (rtly
, 0) : rtly
;
2014 if (GET_CODE (basey
) == PLUS
&& GET_CODE (XEXP (basey
, 1)) == CONST_INT
)
2015 offsety
= INTVAL (XEXP (basey
, 1)), basey
= XEXP (basey
, 0);
2017 /* If the bases are different, we know they do not overlap if both
2018 are constants or if one is a constant and the other a pointer into the
2019 stack frame. Otherwise a different base means we can't tell if they
2021 if (! rtx_equal_p (basex
, basey
))
2022 return ((CONSTANT_P (basex
) && CONSTANT_P (basey
))
2023 || (CONSTANT_P (basex
) && REG_P (basey
)
2024 && REGNO_PTR_FRAME_P (REGNO (basey
)))
2025 || (CONSTANT_P (basey
) && REG_P (basex
)
2026 && REGNO_PTR_FRAME_P (REGNO (basex
))));
2028 sizex
= (GET_CODE (rtlx
) != MEM
? (int) GET_MODE_SIZE (GET_MODE (rtlx
))
2029 : MEM_SIZE (rtlx
) ? INTVAL (MEM_SIZE (rtlx
))
2031 sizey
= (GET_CODE (rtly
) != MEM
? (int) GET_MODE_SIZE (GET_MODE (rtly
))
2032 : MEM_SIZE (rtly
) ? INTVAL (MEM_SIZE (rtly
)) :
2035 /* If we have an offset for either memref, it can update the values computed
2038 offsetx
+= INTVAL (moffsetx
), sizex
-= INTVAL (moffsetx
);
2040 offsety
+= INTVAL (moffsety
), sizey
-= INTVAL (moffsety
);
2042 /* If a memref has both a size and an offset, we can use the smaller size.
2043 We can't do this if the offset isn't known because we must view this
2044 memref as being anywhere inside the DECL's MEM. */
2045 if (MEM_SIZE (x
) && moffsetx
)
2046 sizex
= INTVAL (MEM_SIZE (x
));
2047 if (MEM_SIZE (y
) && moffsety
)
2048 sizey
= INTVAL (MEM_SIZE (y
));
2050 /* Put the values of the memref with the lower offset in X's values. */
2051 if (offsetx
> offsety
)
2053 tem
= offsetx
, offsetx
= offsety
, offsety
= tem
;
2054 tem
= sizex
, sizex
= sizey
, sizey
= tem
;
2057 /* If we don't know the size of the lower-offset value, we can't tell
2058 if they conflict. Otherwise, we do the test. */
2059 return sizex
>= 0 && offsety
>= offsetx
+ sizex
;
2062 /* True dependence: X is read after store in MEM takes place. */
2065 true_dependence (rtx mem
, enum machine_mode mem_mode
, rtx x
,
2066 int (*varies
) (rtx
, int))
2068 rtx x_addr
, mem_addr
;
2071 if (MEM_VOLATILE_P (x
) && MEM_VOLATILE_P (mem
))
2074 /* (mem:BLK (scratch)) is a special mechanism to conflict with everything.
2075 This is used in epilogue deallocation functions. */
2076 if (GET_MODE (x
) == BLKmode
&& GET_CODE (XEXP (x
, 0)) == SCRATCH
)
2078 if (GET_MODE (mem
) == BLKmode
&& GET_CODE (XEXP (mem
, 0)) == SCRATCH
)
2081 if (DIFFERENT_ALIAS_SETS_P (x
, mem
))
2084 /* Unchanging memory can't conflict with non-unchanging memory.
2085 A non-unchanging read can conflict with a non-unchanging write.
2086 An unchanging read can conflict with an unchanging write since
2087 there may be a single store to this address to initialize it.
2088 Note that an unchanging store can conflict with a non-unchanging read
2089 since we have to make conservative assumptions when we have a
2090 record with readonly fields and we are copying the whole thing.
2091 Just fall through to the code below to resolve potential conflicts.
2092 This won't handle all cases optimally, but the possible performance
2093 loss should be negligible. */
2094 if (RTX_UNCHANGING_P (x
) && ! RTX_UNCHANGING_P (mem
))
2097 if (nonoverlapping_memrefs_p (mem
, x
))
2100 if (mem_mode
== VOIDmode
)
2101 mem_mode
= GET_MODE (mem
);
2103 x_addr
= get_addr (XEXP (x
, 0));
2104 mem_addr
= get_addr (XEXP (mem
, 0));
2106 base
= find_base_term (x_addr
);
2107 if (base
&& (GET_CODE (base
) == LABEL_REF
2108 || (GET_CODE (base
) == SYMBOL_REF
2109 && CONSTANT_POOL_ADDRESS_P (base
))))
2112 if (! base_alias_check (x_addr
, mem_addr
, GET_MODE (x
), mem_mode
))
2115 x_addr
= canon_rtx (x_addr
);
2116 mem_addr
= canon_rtx (mem_addr
);
2118 if (! memrefs_conflict_p (GET_MODE_SIZE (mem_mode
), mem_addr
,
2119 SIZE_FOR_MODE (x
), x_addr
, 0))
2122 if (aliases_everything_p (x
))
2125 /* We cannot use aliases_everything_p to test MEM, since we must look
2126 at MEM_MODE, rather than GET_MODE (MEM). */
2127 if (mem_mode
== QImode
|| GET_CODE (mem_addr
) == AND
)
2130 /* In true_dependence we also allow BLKmode to alias anything. Why
2131 don't we do this in anti_dependence and output_dependence? */
2132 if (mem_mode
== BLKmode
|| GET_MODE (x
) == BLKmode
)
2135 return ! fixed_scalar_and_varying_struct_p (mem
, x
, mem_addr
, x_addr
,
2139 /* Canonical true dependence: X is read after store in MEM takes place.
2140 Variant of true_dependence which assumes MEM has already been
2141 canonicalized (hence we no longer do that here).
2142 The mem_addr argument has been added, since true_dependence computed
2143 this value prior to canonicalizing. */
2146 canon_true_dependence (rtx mem
, enum machine_mode mem_mode
, rtx mem_addr
,
2147 rtx x
, int (*varies
) (rtx
, int))
2151 if (MEM_VOLATILE_P (x
) && MEM_VOLATILE_P (mem
))
2154 /* (mem:BLK (scratch)) is a special mechanism to conflict with everything.
2155 This is used in epilogue deallocation functions. */
2156 if (GET_MODE (x
) == BLKmode
&& GET_CODE (XEXP (x
, 0)) == SCRATCH
)
2158 if (GET_MODE (mem
) == BLKmode
&& GET_CODE (XEXP (mem
, 0)) == SCRATCH
)
2161 if (DIFFERENT_ALIAS_SETS_P (x
, mem
))
2164 /* If X is an unchanging read, then it can't possibly conflict with any
2165 non-unchanging store. It may conflict with an unchanging write though,
2166 because there may be a single store to this address to initialize it.
2167 Just fall through to the code below to resolve the case where we have
2168 both an unchanging read and an unchanging write. This won't handle all
2169 cases optimally, but the possible performance loss should be
2171 if (RTX_UNCHANGING_P (x
) && ! RTX_UNCHANGING_P (mem
))
2174 if (nonoverlapping_memrefs_p (x
, mem
))
2177 x_addr
= get_addr (XEXP (x
, 0));
2179 if (! base_alias_check (x_addr
, mem_addr
, GET_MODE (x
), mem_mode
))
2182 x_addr
= canon_rtx (x_addr
);
2183 if (! memrefs_conflict_p (GET_MODE_SIZE (mem_mode
), mem_addr
,
2184 SIZE_FOR_MODE (x
), x_addr
, 0))
2187 if (aliases_everything_p (x
))
2190 /* We cannot use aliases_everything_p to test MEM, since we must look
2191 at MEM_MODE, rather than GET_MODE (MEM). */
2192 if (mem_mode
== QImode
|| GET_CODE (mem_addr
) == AND
)
2195 /* In true_dependence we also allow BLKmode to alias anything. Why
2196 don't we do this in anti_dependence and output_dependence? */
2197 if (mem_mode
== BLKmode
|| GET_MODE (x
) == BLKmode
)
2200 return ! fixed_scalar_and_varying_struct_p (mem
, x
, mem_addr
, x_addr
,
2204 /* Returns nonzero if a write to X might alias a previous read from
2205 (or, if WRITEP is nonzero, a write to) MEM. If CONSTP is nonzero,
2206 honor the RTX_UNCHANGING_P flags on X and MEM. */
2209 write_dependence_p (rtx mem
, rtx x
, int writep
, int constp
)
2211 rtx x_addr
, mem_addr
;
2215 if (MEM_VOLATILE_P (x
) && MEM_VOLATILE_P (mem
))
2218 /* (mem:BLK (scratch)) is a special mechanism to conflict with everything.
2219 This is used in epilogue deallocation functions. */
2220 if (GET_MODE (x
) == BLKmode
&& GET_CODE (XEXP (x
, 0)) == SCRATCH
)
2222 if (GET_MODE (mem
) == BLKmode
&& GET_CODE (XEXP (mem
, 0)) == SCRATCH
)
2225 if (DIFFERENT_ALIAS_SETS_P (x
, mem
))
2230 /* Unchanging memory can't conflict with non-unchanging memory. */
2231 if (RTX_UNCHANGING_P (x
) != RTX_UNCHANGING_P (mem
))
2234 /* If MEM is an unchanging read, then it can't possibly conflict with
2235 the store to X, because there is at most one store to MEM, and it
2236 must have occurred somewhere before MEM. */
2237 if (! writep
&& RTX_UNCHANGING_P (mem
))
2241 if (nonoverlapping_memrefs_p (x
, mem
))
2244 x_addr
= get_addr (XEXP (x
, 0));
2245 mem_addr
= get_addr (XEXP (mem
, 0));
2249 base
= find_base_term (mem_addr
);
2250 if (base
&& (GET_CODE (base
) == LABEL_REF
2251 || (GET_CODE (base
) == SYMBOL_REF
2252 && CONSTANT_POOL_ADDRESS_P (base
))))
2256 if (! base_alias_check (x_addr
, mem_addr
, GET_MODE (x
),
2260 x_addr
= canon_rtx (x_addr
);
2261 mem_addr
= canon_rtx (mem_addr
);
2263 if (!memrefs_conflict_p (SIZE_FOR_MODE (mem
), mem_addr
,
2264 SIZE_FOR_MODE (x
), x_addr
, 0))
2268 = fixed_scalar_and_varying_struct_p (mem
, x
, mem_addr
, x_addr
,
2271 return (!(fixed_scalar
== mem
&& !aliases_everything_p (x
))
2272 && !(fixed_scalar
== x
&& !aliases_everything_p (mem
)));
2275 /* Anti dependence: X is written after read in MEM takes place. */
2278 anti_dependence (rtx mem
, rtx x
)
2280 return write_dependence_p (mem
, x
, /*writep=*/0, /*constp*/1);
2283 /* Output dependence: X is written after store in MEM takes place. */
2286 output_dependence (rtx mem
, rtx x
)
2288 return write_dependence_p (mem
, x
, /*writep=*/1, /*constp*/1);
2291 /* Unchanging anti dependence: Like anti_dependence but ignores
2292 the UNCHANGING_RTX_P property on const variable references. */
2295 unchanging_anti_dependence (rtx mem
, rtx x
)
2297 return write_dependence_p (mem
, x
, /*writep=*/0, /*constp*/0);
2300 /* A subroutine of nonlocal_mentioned_p, returns 1 if *LOC mentions
2301 something which is not local to the function and is not constant. */
2304 nonlocal_mentioned_p_1 (rtx
*loc
, void *data ATTRIBUTE_UNUSED
)
2313 switch (GET_CODE (x
))
2316 if (GET_CODE (SUBREG_REG (x
)) == REG
)
2318 /* Global registers are not local. */
2319 if (REGNO (SUBREG_REG (x
)) < FIRST_PSEUDO_REGISTER
2320 && global_regs
[subreg_regno (x
)])
2328 /* Global registers are not local. */
2329 if (regno
< FIRST_PSEUDO_REGISTER
&& global_regs
[regno
])
2344 /* Constants in the function's constants pool are constant. */
2345 if (CONSTANT_POOL_ADDRESS_P (x
))
2350 /* Non-constant calls and recursion are not local. */
2354 /* Be overly conservative and consider any volatile memory
2355 reference as not local. */
2356 if (MEM_VOLATILE_P (x
))
2358 base
= find_base_term (XEXP (x
, 0));
2361 /* A Pmode ADDRESS could be a reference via the structure value
2362 address or static chain. Such memory references are nonlocal.
2364 Thus, we have to examine the contents of the ADDRESS to find
2365 out if this is a local reference or not. */
2366 if (GET_CODE (base
) == ADDRESS
2367 && GET_MODE (base
) == Pmode
2368 && (XEXP (base
, 0) == stack_pointer_rtx
2369 || XEXP (base
, 0) == arg_pointer_rtx
2370 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
2371 || XEXP (base
, 0) == hard_frame_pointer_rtx
2373 || XEXP (base
, 0) == frame_pointer_rtx
))
2375 /* Constants in the function's constant pool are constant. */
2376 if (GET_CODE (base
) == SYMBOL_REF
&& CONSTANT_POOL_ADDRESS_P (base
))
2381 case UNSPEC_VOLATILE
:
2386 if (MEM_VOLATILE_P (x
))
2398 /* Returns nonzero if X might mention something which is not
2399 local to the function and is not constant. */
2402 nonlocal_mentioned_p (rtx x
)
2406 if (GET_CODE (x
) == CALL_INSN
)
2408 if (! CONST_OR_PURE_CALL_P (x
))
2410 x
= CALL_INSN_FUNCTION_USAGE (x
);
2418 return for_each_rtx (&x
, nonlocal_mentioned_p_1
, NULL
);
2421 /* A subroutine of nonlocal_referenced_p, returns 1 if *LOC references
2422 something which is not local to the function and is not constant. */
2425 nonlocal_referenced_p_1 (rtx
*loc
, void *data ATTRIBUTE_UNUSED
)
2432 switch (GET_CODE (x
))
2438 return nonlocal_mentioned_p (x
);
2441 /* Non-constant calls and recursion are not local. */
2445 if (nonlocal_mentioned_p (SET_SRC (x
)))
2448 if (GET_CODE (SET_DEST (x
)) == MEM
)
2449 return nonlocal_mentioned_p (XEXP (SET_DEST (x
), 0));
2451 /* If the destination is anything other than a CC0, PC,
2452 MEM, REG, or a SUBREG of a REG that occupies all of
2453 the REG, then X references nonlocal memory if it is
2454 mentioned in the destination. */
2455 if (GET_CODE (SET_DEST (x
)) != CC0
2456 && GET_CODE (SET_DEST (x
)) != PC
2457 && GET_CODE (SET_DEST (x
)) != REG
2458 && ! (GET_CODE (SET_DEST (x
)) == SUBREG
2459 && GET_CODE (SUBREG_REG (SET_DEST (x
))) == REG
2460 && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (x
))))
2461 + (UNITS_PER_WORD
- 1)) / UNITS_PER_WORD
)
2462 == ((GET_MODE_SIZE (GET_MODE (SET_DEST (x
)))
2463 + (UNITS_PER_WORD
- 1)) / UNITS_PER_WORD
))))
2464 return nonlocal_mentioned_p (SET_DEST (x
));
2468 if (GET_CODE (XEXP (x
, 0)) == MEM
)
2469 return nonlocal_mentioned_p (XEXP (XEXP (x
, 0), 0));
2473 return nonlocal_mentioned_p (XEXP (x
, 0));
2476 case UNSPEC_VOLATILE
:
2480 if (MEM_VOLATILE_P (x
))
2492 /* Returns nonzero if X might reference something which is not
2493 local to the function and is not constant. */
2496 nonlocal_referenced_p (rtx x
)
2500 if (GET_CODE (x
) == CALL_INSN
)
2502 if (! CONST_OR_PURE_CALL_P (x
))
2504 x
= CALL_INSN_FUNCTION_USAGE (x
);
2512 return for_each_rtx (&x
, nonlocal_referenced_p_1
, NULL
);
2515 /* A subroutine of nonlocal_set_p, returns 1 if *LOC sets
2516 something which is not local to the function and is not constant. */
2519 nonlocal_set_p_1 (rtx
*loc
, void *data ATTRIBUTE_UNUSED
)
2526 switch (GET_CODE (x
))
2529 /* Non-constant calls and recursion are not local. */
2538 return nonlocal_mentioned_p (XEXP (x
, 0));
2541 if (nonlocal_mentioned_p (SET_DEST (x
)))
2543 return nonlocal_set_p (SET_SRC (x
));
2546 return nonlocal_mentioned_p (XEXP (x
, 0));
2552 case UNSPEC_VOLATILE
:
2556 if (MEM_VOLATILE_P (x
))
2568 /* Returns nonzero if X might set something which is not
2569 local to the function and is not constant. */
2572 nonlocal_set_p (rtx x
)
2576 if (GET_CODE (x
) == CALL_INSN
)
2578 if (! CONST_OR_PURE_CALL_P (x
))
2580 x
= CALL_INSN_FUNCTION_USAGE (x
);
2588 return for_each_rtx (&x
, nonlocal_set_p_1
, NULL
);
2591 /* Mark the function if it is pure or constant. */
2594 mark_constant_function (void)
2597 int nonlocal_memory_referenced
;
2599 if (TREE_READONLY (current_function_decl
)
2600 || DECL_IS_PURE (current_function_decl
)
2601 || TREE_THIS_VOLATILE (current_function_decl
)
2602 || current_function_has_nonlocal_goto
2603 || !(*targetm
.binds_local_p
) (current_function_decl
))
2606 /* A loop might not return which counts as a side effect. */
2607 if (mark_dfs_back_edges ())
2610 nonlocal_memory_referenced
= 0;
2612 init_alias_analysis ();
2614 /* Determine if this is a constant or pure function. */
2616 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
2618 if (! INSN_P (insn
))
2621 if (nonlocal_set_p (insn
) || global_reg_mentioned_p (insn
)
2622 || volatile_refs_p (PATTERN (insn
)))
2625 if (! nonlocal_memory_referenced
)
2626 nonlocal_memory_referenced
= nonlocal_referenced_p (insn
);
2629 end_alias_analysis ();
2631 /* Mark the function. */
2635 else if (nonlocal_memory_referenced
)
2637 cgraph_rtl_info (current_function_decl
)->pure_function
= 1;
2638 DECL_IS_PURE (current_function_decl
) = 1;
2642 cgraph_rtl_info (current_function_decl
)->const_function
= 1;
2643 TREE_READONLY (current_function_decl
) = 1;
2649 init_alias_once (void)
2653 #ifndef OUTGOING_REGNO
2654 #define OUTGOING_REGNO(N) N
2656 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
2657 /* Check whether this register can hold an incoming pointer
2658 argument. FUNCTION_ARG_REGNO_P tests outgoing register
2659 numbers, so translate if necessary due to register windows. */
2660 if (FUNCTION_ARG_REGNO_P (OUTGOING_REGNO (i
))
2661 && HARD_REGNO_MODE_OK (i
, Pmode
))
2662 static_reg_base_value
[i
]
2663 = gen_rtx_ADDRESS (VOIDmode
, gen_rtx_REG (Pmode
, i
));
2665 static_reg_base_value
[STACK_POINTER_REGNUM
]
2666 = gen_rtx_ADDRESS (Pmode
, stack_pointer_rtx
);
2667 static_reg_base_value
[ARG_POINTER_REGNUM
]
2668 = gen_rtx_ADDRESS (Pmode
, arg_pointer_rtx
);
2669 static_reg_base_value
[FRAME_POINTER_REGNUM
]
2670 = gen_rtx_ADDRESS (Pmode
, frame_pointer_rtx
);
2671 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
2672 static_reg_base_value
[HARD_FRAME_POINTER_REGNUM
]
2673 = gen_rtx_ADDRESS (Pmode
, hard_frame_pointer_rtx
);
2676 alias_sets
= splay_tree_new (splay_tree_compare_ints
, 0, 0);
2679 /* Set MEMORY_MODIFIED when X modifies DATA (that is assumed
2680 to be memory reference. */
2681 static bool memory_modified
;
2683 memory_modified_1 (rtx x
, rtx pat ATTRIBUTE_UNUSED
, void *data
)
2685 if (GET_CODE (x
) == MEM
)
2687 if (anti_dependence (x
, (rtx
)data
) || output_dependence (x
, (rtx
)data
))
2688 memory_modified
= true;
2693 /* Return true when INSN possibly modify memory contents of MEM
2694 (ie address can be modified). */
2696 memory_modified_in_insn_p (rtx mem
, rtx insn
)
2700 memory_modified
= false;
2701 note_stores (PATTERN (insn
), memory_modified_1
, mem
);
2702 return memory_modified
;
2705 /* Initialize the aliasing machinery. Initialize the REG_KNOWN_VALUE
2709 init_alias_analysis (void)
2711 int maxreg
= max_reg_num ();
2717 timevar_push (TV_ALIAS_ANALYSIS
);
2719 reg_known_value_size
= maxreg
;
2722 = (rtx
*) xcalloc ((maxreg
- FIRST_PSEUDO_REGISTER
), sizeof (rtx
))
2723 - FIRST_PSEUDO_REGISTER
;
2725 = (char*) xcalloc ((maxreg
- FIRST_PSEUDO_REGISTER
), sizeof (char))
2726 - FIRST_PSEUDO_REGISTER
;
2728 /* Overallocate reg_base_value to allow some growth during loop
2729 optimization. Loop unrolling can create a large number of
2731 reg_base_value_size
= maxreg
* 2;
2732 reg_base_value
= ggc_alloc_cleared (reg_base_value_size
* sizeof (rtx
));
2734 new_reg_base_value
= xmalloc (reg_base_value_size
* sizeof (rtx
));
2735 reg_seen
= xmalloc (reg_base_value_size
);
2736 if (! reload_completed
&& flag_old_unroll_loops
)
2738 /* ??? Why are we realloc'ing if we're just going to zero it? */
2739 alias_invariant
= xrealloc (alias_invariant
,
2740 reg_base_value_size
* sizeof (rtx
));
2741 memset (alias_invariant
, 0, reg_base_value_size
* sizeof (rtx
));
2744 /* The basic idea is that each pass through this loop will use the
2745 "constant" information from the previous pass to propagate alias
2746 information through another level of assignments.
2748 This could get expensive if the assignment chains are long. Maybe
2749 we should throttle the number of iterations, possibly based on
2750 the optimization level or flag_expensive_optimizations.
2752 We could propagate more information in the first pass by making use
2753 of REG_N_SETS to determine immediately that the alias information
2754 for a pseudo is "constant".
2756 A program with an uninitialized variable can cause an infinite loop
2757 here. Instead of doing a full dataflow analysis to detect such problems
2758 we just cap the number of iterations for the loop.
2760 The state of the arrays for the set chain in question does not matter
2761 since the program has undefined behavior. */
2766 /* Assume nothing will change this iteration of the loop. */
2769 /* We want to assign the same IDs each iteration of this loop, so
2770 start counting from zero each iteration of the loop. */
2773 /* We're at the start of the function each iteration through the
2774 loop, so we're copying arguments. */
2775 copying_arguments
= true;
2777 /* Wipe the potential alias information clean for this pass. */
2778 memset (new_reg_base_value
, 0, reg_base_value_size
* sizeof (rtx
));
2780 /* Wipe the reg_seen array clean. */
2781 memset (reg_seen
, 0, reg_base_value_size
);
2783 /* Mark all hard registers which may contain an address.
2784 The stack, frame and argument pointers may contain an address.
2785 An argument register which can hold a Pmode value may contain
2786 an address even if it is not in BASE_REGS.
2788 The address expression is VOIDmode for an argument and
2789 Pmode for other registers. */
2791 memcpy (new_reg_base_value
, static_reg_base_value
,
2792 FIRST_PSEUDO_REGISTER
* sizeof (rtx
));
2794 /* Walk the insns adding values to the new_reg_base_value array. */
2795 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
2801 #if defined (HAVE_prologue) || defined (HAVE_epilogue)
2802 /* The prologue/epilogue insns are not threaded onto the
2803 insn chain until after reload has completed. Thus,
2804 there is no sense wasting time checking if INSN is in
2805 the prologue/epilogue until after reload has completed. */
2806 if (reload_completed
2807 && prologue_epilogue_contains (insn
))
2811 /* If this insn has a noalias note, process it, Otherwise,
2812 scan for sets. A simple set will have no side effects
2813 which could change the base value of any other register. */
2815 if (GET_CODE (PATTERN (insn
)) == SET
2816 && REG_NOTES (insn
) != 0
2817 && find_reg_note (insn
, REG_NOALIAS
, NULL_RTX
))
2818 record_set (SET_DEST (PATTERN (insn
)), NULL_RTX
, NULL
);
2820 note_stores (PATTERN (insn
), record_set
, NULL
);
2822 set
= single_set (insn
);
2825 && GET_CODE (SET_DEST (set
)) == REG
2826 && REGNO (SET_DEST (set
)) >= FIRST_PSEUDO_REGISTER
)
2828 unsigned int regno
= REGNO (SET_DEST (set
));
2829 rtx src
= SET_SRC (set
);
2831 if (REG_NOTES (insn
) != 0
2832 && (((note
= find_reg_note (insn
, REG_EQUAL
, 0)) != 0
2833 && REG_N_SETS (regno
) == 1)
2834 || (note
= find_reg_note (insn
, REG_EQUIV
, NULL_RTX
)) != 0)
2835 && GET_CODE (XEXP (note
, 0)) != EXPR_LIST
2836 && ! rtx_varies_p (XEXP (note
, 0), 1)
2837 && ! reg_overlap_mentioned_p (SET_DEST (set
), XEXP (note
, 0)))
2839 reg_known_value
[regno
] = XEXP (note
, 0);
2840 reg_known_equiv_p
[regno
] = REG_NOTE_KIND (note
) == REG_EQUIV
;
2842 else if (REG_N_SETS (regno
) == 1
2843 && GET_CODE (src
) == PLUS
2844 && GET_CODE (XEXP (src
, 0)) == REG
2845 && REGNO (XEXP (src
, 0)) >= FIRST_PSEUDO_REGISTER
2846 && (reg_known_value
[REGNO (XEXP (src
, 0))])
2847 && GET_CODE (XEXP (src
, 1)) == CONST_INT
)
2849 rtx op0
= XEXP (src
, 0);
2850 op0
= reg_known_value
[REGNO (op0
)];
2851 reg_known_value
[regno
]
2852 = plus_constant (op0
, INTVAL (XEXP (src
, 1)));
2853 reg_known_equiv_p
[regno
] = 0;
2855 else if (REG_N_SETS (regno
) == 1
2856 && ! rtx_varies_p (src
, 1))
2858 reg_known_value
[regno
] = src
;
2859 reg_known_equiv_p
[regno
] = 0;
2863 else if (GET_CODE (insn
) == NOTE
2864 && NOTE_LINE_NUMBER (insn
) == NOTE_INSN_FUNCTION_BEG
)
2865 copying_arguments
= false;
2868 /* Now propagate values from new_reg_base_value to reg_base_value. */
2869 for (ui
= 0; ui
< reg_base_value_size
; ui
++)
2871 if (new_reg_base_value
[ui
]
2872 && new_reg_base_value
[ui
] != reg_base_value
[ui
]
2873 && ! rtx_equal_p (new_reg_base_value
[ui
], reg_base_value
[ui
]))
2875 reg_base_value
[ui
] = new_reg_base_value
[ui
];
2880 while (changed
&& ++pass
< MAX_ALIAS_LOOP_PASSES
);
2882 /* Fill in the remaining entries. */
2883 for (i
= FIRST_PSEUDO_REGISTER
; i
< maxreg
; i
++)
2884 if (reg_known_value
[i
] == 0)
2885 reg_known_value
[i
] = regno_reg_rtx
[i
];
2887 /* Simplify the reg_base_value array so that no register refers to
2888 another register, except to special registers indirectly through
2889 ADDRESS expressions.
2891 In theory this loop can take as long as O(registers^2), but unless
2892 there are very long dependency chains it will run in close to linear
2895 This loop may not be needed any longer now that the main loop does
2896 a better job at propagating alias information. */
2902 for (ui
= 0; ui
< reg_base_value_size
; ui
++)
2904 rtx base
= reg_base_value
[ui
];
2905 if (base
&& GET_CODE (base
) == REG
)
2907 unsigned int base_regno
= REGNO (base
);
2908 if (base_regno
== ui
) /* register set from itself */
2909 reg_base_value
[ui
] = 0;
2911 reg_base_value
[ui
] = reg_base_value
[base_regno
];
2916 while (changed
&& pass
< MAX_ALIAS_LOOP_PASSES
);
2919 free (new_reg_base_value
);
2920 new_reg_base_value
= 0;
2923 timevar_pop (TV_ALIAS_ANALYSIS
);
2927 end_alias_analysis (void)
2929 free (reg_known_value
+ FIRST_PSEUDO_REGISTER
);
2930 reg_known_value
= 0;
2931 reg_known_value_size
= 0;
2932 free (reg_known_equiv_p
+ FIRST_PSEUDO_REGISTER
);
2933 reg_known_equiv_p
= 0;
2935 reg_base_value_size
= 0;
2936 if (alias_invariant
)
2938 free (alias_invariant
);
2939 alias_invariant
= 0;
2943 #include "gt-alias.h"