* parse.y: Use VA_OPEN/VA_CLOSE/VA_FIXEDARG throughout.
[official-gcc.git] / gcc / alias.c
blob61c1d8fa2adaca8c16a77abc8f08e1bd60677a7d
1 /* Alias analysis for GNU C
2 Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
3 Contributed by John Carr (jfc@mit.edu).
5 This file is part of GCC.
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 2, or (at your option) any later
10 version.
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.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 #include "config.h"
23 #include "system.h"
24 #include "rtl.h"
25 #include "tree.h"
26 #include "tm_p.h"
27 #include "function.h"
28 #include "expr.h"
29 #include "regs.h"
30 #include "hard-reg-set.h"
31 #include "basic-block.h"
32 #include "flags.h"
33 #include "output.h"
34 #include "toplev.h"
35 #include "cselib.h"
36 #include "splay-tree.h"
37 #include "ggc.h"
39 /* The alias sets assigned to MEMs assist the back-end in determining
40 which MEMs can alias which other MEMs. In general, two MEMs in
41 different alias sets cannot alias each other, with one important
42 exception. Consider something like:
44 struct S {int i; double d; };
46 a store to an `S' can alias something of either type `int' or type
47 `double'. (However, a store to an `int' cannot alias a `double'
48 and vice versa.) We indicate this via a tree structure that looks
49 like:
50 struct S
51 / \
52 / \
53 |/_ _\|
54 int double
56 (The arrows are directed and point downwards.)
57 In this situation we say the alias set for `struct S' is the
58 `superset' and that those for `int' and `double' are `subsets'.
60 To see whether two alias sets can point to the same memory, we must
61 see if either alias set is a subset of the other. We need not trace
62 past immediate decendents, however, since we propagate all
63 grandchildren up one level.
65 Alias set zero is implicitly a superset of all other alias sets.
66 However, this is no actual entry for alias set zero. It is an
67 error to attempt to explicitly construct a subset of zero. */
69 typedef struct alias_set_entry
71 /* The alias set number, as stored in MEM_ALIAS_SET. */
72 HOST_WIDE_INT alias_set;
74 /* The children of the alias set. These are not just the immediate
75 children, but, in fact, all decendents. So, if we have:
77 struct T { struct S s; float f; }
79 continuing our example above, the children here will be all of
80 `int', `double', `float', and `struct S'. */
81 splay_tree children;
83 /* Nonzero if would have a child of zero: this effectively makes this
84 alias set the same as alias set zero. */
85 int has_zero_child;
86 } *alias_set_entry;
88 static int rtx_equal_for_memref_p PARAMS ((rtx, rtx));
89 static rtx find_symbolic_term PARAMS ((rtx));
90 rtx get_addr PARAMS ((rtx));
91 static int memrefs_conflict_p PARAMS ((int, rtx, int, rtx,
92 HOST_WIDE_INT));
93 static void record_set PARAMS ((rtx, rtx, void *));
94 static rtx find_base_term PARAMS ((rtx));
95 static int base_alias_check PARAMS ((rtx, rtx, enum machine_mode,
96 enum machine_mode));
97 static int handled_component_p PARAMS ((tree));
98 static int can_address_p PARAMS ((tree));
99 static rtx find_base_value PARAMS ((rtx));
100 static int mems_in_disjoint_alias_sets_p PARAMS ((rtx, rtx));
101 static int insert_subset_children PARAMS ((splay_tree_node, void*));
102 static tree find_base_decl PARAMS ((tree));
103 static alias_set_entry get_alias_set_entry PARAMS ((HOST_WIDE_INT));
104 static rtx fixed_scalar_and_varying_struct_p PARAMS ((rtx, rtx, rtx, rtx,
105 int (*) (rtx, int)));
106 static int aliases_everything_p PARAMS ((rtx));
107 static int write_dependence_p PARAMS ((rtx, rtx, int));
108 static int nonlocal_mentioned_p PARAMS ((rtx));
110 /* Set up all info needed to perform alias analysis on memory references. */
112 /* Returns the size in bytes of the mode of X. */
113 #define SIZE_FOR_MODE(X) (GET_MODE_SIZE (GET_MODE (X)))
115 /* Returns nonzero if MEM1 and MEM2 do not alias because they are in
116 different alias sets. We ignore alias sets in functions making use
117 of variable arguments because the va_arg macros on some systems are
118 not legal ANSI C. */
119 #define DIFFERENT_ALIAS_SETS_P(MEM1, MEM2) \
120 mems_in_disjoint_alias_sets_p (MEM1, MEM2)
122 /* Cap the number of passes we make over the insns propagating alias
123 information through set chains. 10 is a completely arbitrary choice. */
124 #define MAX_ALIAS_LOOP_PASSES 10
126 /* reg_base_value[N] gives an address to which register N is related.
127 If all sets after the first add or subtract to the current value
128 or otherwise modify it so it does not point to a different top level
129 object, reg_base_value[N] is equal to the address part of the source
130 of the first set.
132 A base address can be an ADDRESS, SYMBOL_REF, or LABEL_REF. ADDRESS
133 expressions represent certain special values: function arguments and
134 the stack, frame, and argument pointers.
136 The contents of an ADDRESS is not normally used, the mode of the
137 ADDRESS determines whether the ADDRESS is a function argument or some
138 other special value. Pointer equality, not rtx_equal_p, determines whether
139 two ADDRESS expressions refer to the same base address.
141 The only use of the contents of an ADDRESS is for determining if the
142 current function performs nonlocal memory memory references for the
143 purposes of marking the function as a constant function. */
145 static rtx *reg_base_value;
146 static rtx *new_reg_base_value;
147 static unsigned int reg_base_value_size; /* size of reg_base_value array */
149 #define REG_BASE_VALUE(X) \
150 (REGNO (X) < reg_base_value_size \
151 ? reg_base_value[REGNO (X)] : 0)
153 /* Vector of known invariant relationships between registers. Set in
154 loop unrolling. Indexed by register number, if nonzero the value
155 is an expression describing this register in terms of another.
157 The length of this array is REG_BASE_VALUE_SIZE.
159 Because this array contains only pseudo registers it has no effect
160 after reload. */
161 static rtx *alias_invariant;
163 /* Vector indexed by N giving the initial (unchanging) value known for
164 pseudo-register N. This array is initialized in
165 init_alias_analysis, and does not change until end_alias_analysis
166 is called. */
167 rtx *reg_known_value;
169 /* Indicates number of valid entries in reg_known_value. */
170 static unsigned int reg_known_value_size;
172 /* Vector recording for each reg_known_value whether it is due to a
173 REG_EQUIV note. Future passes (viz., reload) may replace the
174 pseudo with the equivalent expression and so we account for the
175 dependences that would be introduced if that happens.
177 The REG_EQUIV notes created in assign_parms may mention the arg
178 pointer, and there are explicit insns in the RTL that modify the
179 arg pointer. Thus we must ensure that such insns don't get
180 scheduled across each other because that would invalidate the
181 REG_EQUIV notes. One could argue that the REG_EQUIV notes are
182 wrong, but solving the problem in the scheduler will likely give
183 better code, so we do it here. */
184 char *reg_known_equiv_p;
186 /* True when scanning insns from the start of the rtl to the
187 NOTE_INSN_FUNCTION_BEG note. */
188 static int copying_arguments;
190 /* The splay-tree used to store the various alias set entries. */
191 static splay_tree alias_sets;
193 /* Returns a pointer to the alias set entry for ALIAS_SET, if there is
194 such an entry, or NULL otherwise. */
196 static alias_set_entry
197 get_alias_set_entry (alias_set)
198 HOST_WIDE_INT alias_set;
200 splay_tree_node sn
201 = splay_tree_lookup (alias_sets, (splay_tree_key) alias_set);
203 return sn != 0 ? ((alias_set_entry) sn->value) : 0;
206 /* Returns nonzero if the alias sets for MEM1 and MEM2 are such that
207 the two MEMs cannot alias each other. */
209 static int
210 mems_in_disjoint_alias_sets_p (mem1, mem2)
211 rtx mem1;
212 rtx mem2;
214 #ifdef ENABLE_CHECKING
215 /* Perform a basic sanity check. Namely, that there are no alias sets
216 if we're not using strict aliasing. This helps to catch bugs
217 whereby someone uses PUT_CODE, but doesn't clear MEM_ALIAS_SET, or
218 where a MEM is allocated in some way other than by the use of
219 gen_rtx_MEM, and the MEM_ALIAS_SET is not cleared. If we begin to
220 use alias sets to indicate that spilled registers cannot alias each
221 other, we might need to remove this check. */
222 if (! flag_strict_aliasing
223 && (MEM_ALIAS_SET (mem1) != 0 || MEM_ALIAS_SET (mem2) != 0))
224 abort ();
225 #endif
227 return ! alias_sets_conflict_p (MEM_ALIAS_SET (mem1), MEM_ALIAS_SET (mem2));
230 /* Insert the NODE into the splay tree given by DATA. Used by
231 record_alias_subset via splay_tree_foreach. */
233 static int
234 insert_subset_children (node, data)
235 splay_tree_node node;
236 void *data;
238 splay_tree_insert ((splay_tree) data, node->key, node->value);
240 return 0;
243 /* Return 1 if the two specified alias sets may conflict. */
246 alias_sets_conflict_p (set1, set2)
247 HOST_WIDE_INT set1, set2;
249 alias_set_entry ase;
251 /* If have no alias set information for one of the operands, we have
252 to assume it can alias anything. */
253 if (set1 == 0 || set2 == 0
254 /* If the two alias sets are the same, they may alias. */
255 || set1 == set2)
256 return 1;
258 /* See if the first alias set is a subset of the second. */
259 ase = get_alias_set_entry (set1);
260 if (ase != 0
261 && (ase->has_zero_child
262 || splay_tree_lookup (ase->children,
263 (splay_tree_key) set2)))
264 return 1;
266 /* Now do the same, but with the alias sets reversed. */
267 ase = get_alias_set_entry (set2);
268 if (ase != 0
269 && (ase->has_zero_child
270 || splay_tree_lookup (ase->children,
271 (splay_tree_key) set1)))
272 return 1;
274 /* The two alias sets are distinct and neither one is the
275 child of the other. Therefore, they cannot alias. */
276 return 0;
279 /* Set the alias set of MEM to SET. */
281 void
282 set_mem_alias_set (mem, set)
283 rtx mem;
284 HOST_WIDE_INT set;
286 /* We would like to do this test but can't yet since when converting a
287 REG to a MEM, the alias set field is undefined. */
288 #if 0
289 /* If the new and old alias sets don't conflict, something is wrong. */
290 if (!alias_sets_conflict_p (set, MEM_ALIAS_SET (mem)))
291 abort ();
292 #endif
294 MEM_ALIAS_SET (mem) = set;
297 /* Return 1 if TYPE is a RECORD_TYPE, UNION_TYPE, or QUAL_UNION_TYPE and has
298 has any readonly fields. If any of the fields have types that
299 contain readonly fields, return true as well. */
302 readonly_fields_p (type)
303 tree type;
305 tree field;
307 if (TREE_CODE (type) != RECORD_TYPE && TREE_CODE (type) != UNION_TYPE
308 && TREE_CODE (type) != QUAL_UNION_TYPE)
309 return 0;
311 for (field = TYPE_FIELDS (type); field != 0; field = TREE_CHAIN (field))
312 if (TREE_CODE (field) == FIELD_DECL
313 && (TREE_READONLY (field)
314 || readonly_fields_p (TREE_TYPE (field))))
315 return 1;
317 return 0;
320 /* Return 1 if any MEM object of type T1 will always conflict (using the
321 dependency routines in this file) with any MEM object of type T2.
322 This is used when allocating temporary storage. If T1 and/or T2 are
323 NULL_TREE, it means we know nothing about the storage. */
326 objects_must_conflict_p (t1, t2)
327 tree t1, t2;
329 /* If neither has a type specified, we don't know if they'll conflict
330 because we may be using them to store objects of various types, for
331 example the argument and local variables areas of inlined functions. */
332 if (t1 == 0 && t2 == 0)
333 return 0;
335 /* If one or the other has readonly fields or is readonly,
336 then they may not conflict. */
337 if ((t1 != 0 && readonly_fields_p (t1))
338 || (t2 != 0 && readonly_fields_p (t2))
339 || (t1 != 0 && TYPE_READONLY (t1))
340 || (t2 != 0 && TYPE_READONLY (t2)))
341 return 0;
343 /* If they are the same type, they must conflict. */
344 if (t1 == t2
345 /* Likewise if both are volatile. */
346 || (t1 != 0 && TYPE_VOLATILE (t1) && t2 != 0 && TYPE_VOLATILE (t2)))
347 return 1;
349 /* If one is aggregate and the other is scalar then they may not
350 conflict. */
351 if ((t1 != 0 && AGGREGATE_TYPE_P (t1))
352 != (t2 != 0 && AGGREGATE_TYPE_P (t2)))
353 return 0;
355 /* Otherwise they conflict only if the alias sets conflict. */
356 return alias_sets_conflict_p (t1 ? get_alias_set (t1) : 0,
357 t2 ? get_alias_set (t2) : 0);
360 /* T is an expression with pointer type. Find the DECL on which this
361 expression is based. (For example, in `a[i]' this would be `a'.)
362 If there is no such DECL, or a unique decl cannot be determined,
363 NULL_TREE is retured. */
365 static tree
366 find_base_decl (t)
367 tree t;
369 tree d0, d1, d2;
371 if (t == 0 || t == error_mark_node || ! POINTER_TYPE_P (TREE_TYPE (t)))
372 return 0;
374 /* If this is a declaration, return it. */
375 if (TREE_CODE_CLASS (TREE_CODE (t)) == 'd')
376 return t;
378 /* Handle general expressions. It would be nice to deal with
379 COMPONENT_REFs here. If we could tell that `a' and `b' were the
380 same, then `a->f' and `b->f' are also the same. */
381 switch (TREE_CODE_CLASS (TREE_CODE (t)))
383 case '1':
384 return find_base_decl (TREE_OPERAND (t, 0));
386 case '2':
387 /* Return 0 if found in neither or both are the same. */
388 d0 = find_base_decl (TREE_OPERAND (t, 0));
389 d1 = find_base_decl (TREE_OPERAND (t, 1));
390 if (d0 == d1)
391 return d0;
392 else if (d0 == 0)
393 return d1;
394 else if (d1 == 0)
395 return d0;
396 else
397 return 0;
399 case '3':
400 d0 = find_base_decl (TREE_OPERAND (t, 0));
401 d1 = find_base_decl (TREE_OPERAND (t, 1));
402 d2 = find_base_decl (TREE_OPERAND (t, 2));
404 /* Set any nonzero values from the last, then from the first. */
405 if (d1 == 0) d1 = d2;
406 if (d0 == 0) d0 = d1;
407 if (d1 == 0) d1 = d0;
408 if (d2 == 0) d2 = d1;
410 /* At this point all are nonzero or all are zero. If all three are the
411 same, return it. Otherwise, return zero. */
412 return (d0 == d1 && d1 == d2) ? d0 : 0;
414 default:
415 return 0;
419 /* Return 1 if T is an expression that get_inner_reference handles. */
421 static int
422 handled_component_p (t)
423 tree t;
425 switch (TREE_CODE (t))
427 case BIT_FIELD_REF:
428 case COMPONENT_REF:
429 case ARRAY_REF:
430 case ARRAY_RANGE_REF:
431 case NON_LVALUE_EXPR:
432 return 1;
434 case NOP_EXPR:
435 case CONVERT_EXPR:
436 return (TYPE_MODE (TREE_TYPE (t))
437 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (t, 0))));
439 default:
440 return 0;
444 /* Return 1 if all the nested component references handled by
445 get_inner_reference in T are such that we can address the object in T. */
447 static int
448 can_address_p (t)
449 tree t;
451 /* If we're at the end, it is vacuously addressable. */
452 if (! handled_component_p (t))
453 return 1;
455 /* Bitfields are never addressable. */
456 else if (TREE_CODE (t) == BIT_FIELD_REF)
457 return 0;
459 else if (TREE_CODE (t) == COMPONENT_REF
460 && ! DECL_NONADDRESSABLE_P (TREE_OPERAND (t, 1))
461 && can_address_p (TREE_OPERAND (t, 0)))
462 return 1;
464 else if ((TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
465 && ! TYPE_NONALIASED_COMPONENT (TREE_TYPE (TREE_OPERAND (t, 0)))
466 && can_address_p (TREE_OPERAND (t, 0)))
467 return 1;
469 return 0;
472 /* Return the alias set for T, which may be either a type or an
473 expression. Call language-specific routine for help, if needed. */
475 HOST_WIDE_INT
476 get_alias_set (t)
477 tree t;
479 tree orig_t;
480 HOST_WIDE_INT set;
482 /* If we're not doing any alias analysis, just assume everything
483 aliases everything else. Also return 0 if this or its type is
484 an error. */
485 if (! flag_strict_aliasing || t == error_mark_node
486 || (! TYPE_P (t)
487 && (TREE_TYPE (t) == 0 || TREE_TYPE (t) == error_mark_node)))
488 return 0;
490 /* We can be passed either an expression or a type. This and the
491 language-specific routine may make mutually-recursive calls to
492 each other to figure out what to do. At each juncture, we see if
493 this is a tree that the language may need to handle specially.
494 First handle things that aren't types and start by removing nops
495 since we care only about the actual object. */
496 if (! TYPE_P (t))
498 while (TREE_CODE (t) == NOP_EXPR || TREE_CODE (t) == CONVERT_EXPR
499 || TREE_CODE (t) == NON_LVALUE_EXPR)
500 t = TREE_OPERAND (t, 0);
502 /* Now give the language a chance to do something but record what we
503 gave it this time. */
504 orig_t = t;
505 if ((set = lang_get_alias_set (t)) != -1)
506 return set;
508 /* Now loop the same way as get_inner_reference and get the alias
509 set to use. Pick up the outermost object that we could have
510 a pointer to. */
511 while (handled_component_p (t) && ! can_address_p (t))
512 t = TREE_OPERAND (t, 0);
514 if (TREE_CODE (t) == INDIRECT_REF)
516 /* Check for accesses through restrict-qualified pointers. */
517 tree decl = find_base_decl (TREE_OPERAND (t, 0));
519 if (decl && DECL_POINTER_ALIAS_SET_KNOWN_P (decl))
520 /* We use the alias set indicated in the declaration. */
521 return DECL_POINTER_ALIAS_SET (decl);
523 /* If we have an INDIRECT_REF via a void pointer, we don't
524 know anything about what that might alias. */
525 if (TREE_CODE (TREE_TYPE (t)) == VOID_TYPE)
526 return 0;
529 /* If we've already determined the alias set for this decl, just
530 return it. This is necessary for C++ anonymous unions, whose
531 component variables don't look like union members (boo!). */
532 if (TREE_CODE (t) == VAR_DECL
533 && DECL_RTL_SET_P (t) && GET_CODE (DECL_RTL (t)) == MEM)
534 return MEM_ALIAS_SET (DECL_RTL (t));
536 /* Give the language another chance to do something special. */
537 if (orig_t != t
538 && (set = lang_get_alias_set (t)) != -1)
539 return set;
541 /* Now all we care about is the type. */
542 t = TREE_TYPE (t);
545 /* Variant qualifiers don't affect the alias set, so get the main
546 variant. If this is a type with a known alias set, return it. */
547 t = TYPE_MAIN_VARIANT (t);
548 if (TYPE_P (t) && TYPE_ALIAS_SET_KNOWN_P (t))
549 return TYPE_ALIAS_SET (t);
551 /* See if the language has special handling for this type. */
552 if ((set = lang_get_alias_set (t)) != -1)
554 /* If the alias set is now known, we are done. */
555 if (TYPE_ALIAS_SET_KNOWN_P (t))
556 return TYPE_ALIAS_SET (t);
559 /* There are no objects of FUNCTION_TYPE, so there's no point in
560 using up an alias set for them. (There are, of course, pointers
561 and references to functions, but that's different.) */
562 else if (TREE_CODE (t) == FUNCTION_TYPE)
563 set = 0;
564 else
565 /* Otherwise make a new alias set for this type. */
566 set = new_alias_set ();
568 TYPE_ALIAS_SET (t) = set;
570 /* If this is an aggregate type, we must record any component aliasing
571 information. */
572 if (AGGREGATE_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
573 record_component_aliases (t);
575 return set;
578 /* Return a brand-new alias set. */
580 HOST_WIDE_INT
581 new_alias_set ()
583 static HOST_WIDE_INT last_alias_set;
585 if (flag_strict_aliasing)
586 return ++last_alias_set;
587 else
588 return 0;
591 /* Indicate that things in SUBSET can alias things in SUPERSET, but
592 not vice versa. For example, in C, a store to an `int' can alias a
593 structure containing an `int', but not vice versa. Here, the
594 structure would be the SUPERSET and `int' the SUBSET. This
595 function should be called only once per SUPERSET/SUBSET pair.
597 It is illegal for SUPERSET to be zero; everything is implicitly a
598 subset of alias set zero. */
600 void
601 record_alias_subset (superset, subset)
602 HOST_WIDE_INT superset;
603 HOST_WIDE_INT subset;
605 alias_set_entry superset_entry;
606 alias_set_entry subset_entry;
608 if (superset == 0)
609 abort ();
611 superset_entry = get_alias_set_entry (superset);
612 if (superset_entry == 0)
614 /* Create an entry for the SUPERSET, so that we have a place to
615 attach the SUBSET. */
616 superset_entry
617 = (alias_set_entry) xmalloc (sizeof (struct alias_set_entry));
618 superset_entry->alias_set = superset;
619 superset_entry->children
620 = splay_tree_new (splay_tree_compare_ints, 0, 0);
621 superset_entry->has_zero_child = 0;
622 splay_tree_insert (alias_sets, (splay_tree_key) superset,
623 (splay_tree_value) superset_entry);
626 if (subset == 0)
627 superset_entry->has_zero_child = 1;
628 else
630 subset_entry = get_alias_set_entry (subset);
631 /* If there is an entry for the subset, enter all of its children
632 (if they are not already present) as children of the SUPERSET. */
633 if (subset_entry)
635 if (subset_entry->has_zero_child)
636 superset_entry->has_zero_child = 1;
638 splay_tree_foreach (subset_entry->children, insert_subset_children,
639 superset_entry->children);
642 /* Enter the SUBSET itself as a child of the SUPERSET. */
643 splay_tree_insert (superset_entry->children,
644 (splay_tree_key) subset, 0);
648 /* Record that component types of TYPE, if any, are part of that type for
649 aliasing purposes. For record types, we only record component types
650 for fields that are marked addressable. For array types, we always
651 record the component types, so the front end should not call this
652 function if the individual component aren't addressable. */
654 void
655 record_component_aliases (type)
656 tree type;
658 HOST_WIDE_INT superset = get_alias_set (type);
659 tree field;
661 if (superset == 0)
662 return;
664 switch (TREE_CODE (type))
666 case ARRAY_TYPE:
667 if (! TYPE_NONALIASED_COMPONENT (type))
668 record_alias_subset (superset, get_alias_set (TREE_TYPE (type)));
669 break;
671 case RECORD_TYPE:
672 case UNION_TYPE:
673 case QUAL_UNION_TYPE:
674 for (field = TYPE_FIELDS (type); field != 0; field = TREE_CHAIN (field))
675 if (TREE_CODE (field) == FIELD_DECL && ! DECL_NONADDRESSABLE_P (field))
676 record_alias_subset (superset, get_alias_set (TREE_TYPE (field)));
677 break;
679 case COMPLEX_TYPE:
680 record_alias_subset (superset, get_alias_set (TREE_TYPE (type)));
681 break;
683 default:
684 break;
688 /* Allocate an alias set for use in storing and reading from the varargs
689 spill area. */
691 HOST_WIDE_INT
692 get_varargs_alias_set ()
694 static HOST_WIDE_INT set = -1;
696 if (set == -1)
697 set = new_alias_set ();
699 return set;
702 /* Likewise, but used for the fixed portions of the frame, e.g., register
703 save areas. */
705 HOST_WIDE_INT
706 get_frame_alias_set ()
708 static HOST_WIDE_INT set = -1;
710 if (set == -1)
711 set = new_alias_set ();
713 return set;
716 /* Inside SRC, the source of a SET, find a base address. */
718 static rtx
719 find_base_value (src)
720 register rtx src;
722 unsigned int regno;
723 switch (GET_CODE (src))
725 case SYMBOL_REF:
726 case LABEL_REF:
727 return src;
729 case REG:
730 regno = REGNO (src);
731 /* At the start of a function, argument registers have known base
732 values which may be lost later. Returning an ADDRESS
733 expression here allows optimization based on argument values
734 even when the argument registers are used for other purposes. */
735 if (regno < FIRST_PSEUDO_REGISTER && copying_arguments)
736 return new_reg_base_value[regno];
738 /* If a pseudo has a known base value, return it. Do not do this
739 for hard regs since it can result in a circular dependency
740 chain for registers which have values at function entry.
742 The test above is not sufficient because the scheduler may move
743 a copy out of an arg reg past the NOTE_INSN_FUNCTION_BEGIN. */
744 if (regno >= FIRST_PSEUDO_REGISTER
745 && regno < reg_base_value_size
746 && reg_base_value[regno])
747 return reg_base_value[regno];
749 return src;
751 case MEM:
752 /* Check for an argument passed in memory. Only record in the
753 copying-arguments block; it is too hard to track changes
754 otherwise. */
755 if (copying_arguments
756 && (XEXP (src, 0) == arg_pointer_rtx
757 || (GET_CODE (XEXP (src, 0)) == PLUS
758 && XEXP (XEXP (src, 0), 0) == arg_pointer_rtx)))
759 return gen_rtx_ADDRESS (VOIDmode, src);
760 return 0;
762 case CONST:
763 src = XEXP (src, 0);
764 if (GET_CODE (src) != PLUS && GET_CODE (src) != MINUS)
765 break;
767 /* ... fall through ... */
769 case PLUS:
770 case MINUS:
772 rtx temp, src_0 = XEXP (src, 0), src_1 = XEXP (src, 1);
774 /* If either operand is a REG, then see if we already have
775 a known value for it. */
776 if (GET_CODE (src_0) == REG)
778 temp = find_base_value (src_0);
779 if (temp != 0)
780 src_0 = temp;
783 if (GET_CODE (src_1) == REG)
785 temp = find_base_value (src_1);
786 if (temp!= 0)
787 src_1 = temp;
790 /* Guess which operand is the base address:
791 If either operand is a symbol, then it is the base. If
792 either operand is a CONST_INT, then the other is the base. */
793 if (GET_CODE (src_1) == CONST_INT || CONSTANT_P (src_0))
794 return find_base_value (src_0);
795 else if (GET_CODE (src_0) == CONST_INT || CONSTANT_P (src_1))
796 return find_base_value (src_1);
798 /* This might not be necessary anymore:
799 If either operand is a REG that is a known pointer, then it
800 is the base. */
801 else if (GET_CODE (src_0) == REG && REG_POINTER (src_0))
802 return find_base_value (src_0);
803 else if (GET_CODE (src_1) == REG && REG_POINTER (src_1))
804 return find_base_value (src_1);
806 return 0;
809 case LO_SUM:
810 /* The standard form is (lo_sum reg sym) so look only at the
811 second operand. */
812 return find_base_value (XEXP (src, 1));
814 case AND:
815 /* If the second operand is constant set the base
816 address to the first operand. */
817 if (GET_CODE (XEXP (src, 1)) == CONST_INT && INTVAL (XEXP (src, 1)) != 0)
818 return find_base_value (XEXP (src, 0));
819 return 0;
821 case TRUNCATE:
822 if (GET_MODE_SIZE (GET_MODE (src)) < GET_MODE_SIZE (Pmode))
823 break;
824 /* Fall through. */
825 case ZERO_EXTEND:
826 case SIGN_EXTEND: /* used for NT/Alpha pointers */
827 case HIGH:
828 return find_base_value (XEXP (src, 0));
830 default:
831 break;
834 return 0;
837 /* Called from init_alias_analysis indirectly through note_stores. */
839 /* While scanning insns to find base values, reg_seen[N] is nonzero if
840 register N has been set in this function. */
841 static char *reg_seen;
843 /* Addresses which are known not to alias anything else are identified
844 by a unique integer. */
845 static int unique_id;
847 static void
848 record_set (dest, set, data)
849 rtx dest, set;
850 void *data ATTRIBUTE_UNUSED;
852 register unsigned regno;
853 rtx src;
855 if (GET_CODE (dest) != REG)
856 return;
858 regno = REGNO (dest);
860 if (regno >= reg_base_value_size)
861 abort ();
863 if (set)
865 /* A CLOBBER wipes out any old value but does not prevent a previously
866 unset register from acquiring a base address (i.e. reg_seen is not
867 set). */
868 if (GET_CODE (set) == CLOBBER)
870 new_reg_base_value[regno] = 0;
871 return;
873 src = SET_SRC (set);
875 else
877 if (reg_seen[regno])
879 new_reg_base_value[regno] = 0;
880 return;
882 reg_seen[regno] = 1;
883 new_reg_base_value[regno] = gen_rtx_ADDRESS (Pmode,
884 GEN_INT (unique_id++));
885 return;
888 /* This is not the first set. If the new value is not related to the
889 old value, forget the base value. Note that the following code is
890 not detected:
891 extern int x, y; int *p = &x; p += (&y-&x);
892 ANSI C does not allow computing the difference of addresses
893 of distinct top level objects. */
894 if (new_reg_base_value[regno])
895 switch (GET_CODE (src))
897 case LO_SUM:
898 case MINUS:
899 if (XEXP (src, 0) != dest && XEXP (src, 1) != dest)
900 new_reg_base_value[regno] = 0;
901 break;
902 case PLUS:
903 /* If the value we add in the PLUS is also a valid base value,
904 this might be the actual base value, and the original value
905 an index. */
907 rtx other = NULL_RTX;
909 if (XEXP (src, 0) == dest)
910 other = XEXP (src, 1);
911 else if (XEXP (src, 1) == dest)
912 other = XEXP (src, 0);
914 if (! other || find_base_value (other))
915 new_reg_base_value[regno] = 0;
916 break;
918 case AND:
919 if (XEXP (src, 0) != dest || GET_CODE (XEXP (src, 1)) != CONST_INT)
920 new_reg_base_value[regno] = 0;
921 break;
922 default:
923 new_reg_base_value[regno] = 0;
924 break;
926 /* If this is the first set of a register, record the value. */
927 else if ((regno >= FIRST_PSEUDO_REGISTER || ! fixed_regs[regno])
928 && ! reg_seen[regno] && new_reg_base_value[regno] == 0)
929 new_reg_base_value[regno] = find_base_value (src);
931 reg_seen[regno] = 1;
934 /* Called from loop optimization when a new pseudo-register is
935 created. It indicates that REGNO is being set to VAL. f INVARIANT
936 is true then this value also describes an invariant relationship
937 which can be used to deduce that two registers with unknown values
938 are different. */
940 void
941 record_base_value (regno, val, invariant)
942 unsigned int regno;
943 rtx val;
944 int invariant;
946 if (regno >= reg_base_value_size)
947 return;
949 if (invariant && alias_invariant)
950 alias_invariant[regno] = val;
952 if (GET_CODE (val) == REG)
954 if (REGNO (val) < reg_base_value_size)
955 reg_base_value[regno] = reg_base_value[REGNO (val)];
957 return;
960 reg_base_value[regno] = find_base_value (val);
963 /* Clear alias info for a register. This is used if an RTL transformation
964 changes the value of a register. This is used in flow by AUTO_INC_DEC
965 optimizations. We don't need to clear reg_base_value, since flow only
966 changes the offset. */
968 void
969 clear_reg_alias_info (reg)
970 rtx reg;
972 unsigned int regno = REGNO (reg);
974 if (regno < reg_known_value_size && regno >= FIRST_PSEUDO_REGISTER)
975 reg_known_value[regno] = reg;
978 /* Returns a canonical version of X, from the point of view alias
979 analysis. (For example, if X is a MEM whose address is a register,
980 and the register has a known value (say a SYMBOL_REF), then a MEM
981 whose address is the SYMBOL_REF is returned.) */
984 canon_rtx (x)
985 rtx x;
987 /* Recursively look for equivalences. */
988 if (GET_CODE (x) == REG && REGNO (x) >= FIRST_PSEUDO_REGISTER
989 && REGNO (x) < reg_known_value_size)
990 return reg_known_value[REGNO (x)] == x
991 ? x : canon_rtx (reg_known_value[REGNO (x)]);
992 else if (GET_CODE (x) == PLUS)
994 rtx x0 = canon_rtx (XEXP (x, 0));
995 rtx x1 = canon_rtx (XEXP (x, 1));
997 if (x0 != XEXP (x, 0) || x1 != XEXP (x, 1))
999 if (GET_CODE (x0) == CONST_INT)
1000 return plus_constant (x1, INTVAL (x0));
1001 else if (GET_CODE (x1) == CONST_INT)
1002 return plus_constant (x0, INTVAL (x1));
1003 return gen_rtx_PLUS (GET_MODE (x), x0, x1);
1007 /* This gives us much better alias analysis when called from
1008 the loop optimizer. Note we want to leave the original
1009 MEM alone, but need to return the canonicalized MEM with
1010 all the flags with their original values. */
1011 else if (GET_CODE (x) == MEM)
1012 x = replace_equiv_address_nv (x, canon_rtx (XEXP (x, 0)));
1014 return x;
1017 /* Return 1 if X and Y are identical-looking rtx's.
1019 We use the data in reg_known_value above to see if two registers with
1020 different numbers are, in fact, equivalent. */
1022 static int
1023 rtx_equal_for_memref_p (x, y)
1024 rtx x, y;
1026 register int i;
1027 register int j;
1028 register enum rtx_code code;
1029 register const char *fmt;
1031 if (x == 0 && y == 0)
1032 return 1;
1033 if (x == 0 || y == 0)
1034 return 0;
1036 x = canon_rtx (x);
1037 y = canon_rtx (y);
1039 if (x == y)
1040 return 1;
1042 code = GET_CODE (x);
1043 /* Rtx's of different codes cannot be equal. */
1044 if (code != GET_CODE (y))
1045 return 0;
1047 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.
1048 (REG:SI x) and (REG:HI x) are NOT equivalent. */
1050 if (GET_MODE (x) != GET_MODE (y))
1051 return 0;
1053 /* Some RTL can be compared without a recursive examination. */
1054 switch (code)
1056 case VALUE:
1057 return CSELIB_VAL_PTR (x) == CSELIB_VAL_PTR (y);
1059 case REG:
1060 return REGNO (x) == REGNO (y);
1062 case LABEL_REF:
1063 return XEXP (x, 0) == XEXP (y, 0);
1065 case SYMBOL_REF:
1066 return XSTR (x, 0) == XSTR (y, 0);
1068 case CONST_INT:
1069 case CONST_DOUBLE:
1070 /* There's no need to compare the contents of CONST_DOUBLEs or
1071 CONST_INTs because pointer equality is a good enough
1072 comparison for these nodes. */
1073 return 0;
1075 case ADDRESSOF:
1076 return (XINT (x, 1) == XINT (y, 1)
1077 && rtx_equal_for_memref_p (XEXP (x, 0), XEXP (y, 0)));
1079 default:
1080 break;
1083 /* For commutative operations, the RTX match if the operand match in any
1084 order. Also handle the simple binary and unary cases without a loop. */
1085 if (code == EQ || code == NE || GET_RTX_CLASS (code) == 'c')
1086 return ((rtx_equal_for_memref_p (XEXP (x, 0), XEXP (y, 0))
1087 && rtx_equal_for_memref_p (XEXP (x, 1), XEXP (y, 1)))
1088 || (rtx_equal_for_memref_p (XEXP (x, 0), XEXP (y, 1))
1089 && rtx_equal_for_memref_p (XEXP (x, 1), XEXP (y, 0))));
1090 else if (GET_RTX_CLASS (code) == '<' || GET_RTX_CLASS (code) == '2')
1091 return (rtx_equal_for_memref_p (XEXP (x, 0), XEXP (y, 0))
1092 && rtx_equal_for_memref_p (XEXP (x, 1), XEXP (y, 1)));
1093 else if (GET_RTX_CLASS (code) == '1')
1094 return rtx_equal_for_memref_p (XEXP (x, 0), XEXP (y, 0));
1096 /* Compare the elements. If any pair of corresponding elements
1097 fail to match, return 0 for the whole things.
1099 Limit cases to types which actually appear in addresses. */
1101 fmt = GET_RTX_FORMAT (code);
1102 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1104 switch (fmt[i])
1106 case 'i':
1107 if (XINT (x, i) != XINT (y, i))
1108 return 0;
1109 break;
1111 case 'E':
1112 /* Two vectors must have the same length. */
1113 if (XVECLEN (x, i) != XVECLEN (y, i))
1114 return 0;
1116 /* And the corresponding elements must match. */
1117 for (j = 0; j < XVECLEN (x, i); j++)
1118 if (rtx_equal_for_memref_p (XVECEXP (x, i, j),
1119 XVECEXP (y, i, j)) == 0)
1120 return 0;
1121 break;
1123 case 'e':
1124 if (rtx_equal_for_memref_p (XEXP (x, i), XEXP (y, i)) == 0)
1125 return 0;
1126 break;
1128 /* This can happen for asm operands. */
1129 case 's':
1130 if (strcmp (XSTR (x, i), XSTR (y, i)))
1131 return 0;
1132 break;
1134 /* This can happen for an asm which clobbers memory. */
1135 case '0':
1136 break;
1138 /* It is believed that rtx's at this level will never
1139 contain anything but integers and other rtx's,
1140 except for within LABEL_REFs and SYMBOL_REFs. */
1141 default:
1142 abort ();
1145 return 1;
1148 /* Given an rtx X, find a SYMBOL_REF or LABEL_REF within
1149 X and return it, or return 0 if none found. */
1151 static rtx
1152 find_symbolic_term (x)
1153 rtx x;
1155 register int i;
1156 register enum rtx_code code;
1157 register const char *fmt;
1159 code = GET_CODE (x);
1160 if (code == SYMBOL_REF || code == LABEL_REF)
1161 return x;
1162 if (GET_RTX_CLASS (code) == 'o')
1163 return 0;
1165 fmt = GET_RTX_FORMAT (code);
1166 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1168 rtx t;
1170 if (fmt[i] == 'e')
1172 t = find_symbolic_term (XEXP (x, i));
1173 if (t != 0)
1174 return t;
1176 else if (fmt[i] == 'E')
1177 break;
1179 return 0;
1182 static rtx
1183 find_base_term (x)
1184 register rtx x;
1186 cselib_val *val;
1187 struct elt_loc_list *l;
1189 #if defined (FIND_BASE_TERM)
1190 /* Try machine-dependent ways to find the base term. */
1191 x = FIND_BASE_TERM (x);
1192 #endif
1194 switch (GET_CODE (x))
1196 case REG:
1197 return REG_BASE_VALUE (x);
1199 case ZERO_EXTEND:
1200 case SIGN_EXTEND: /* Used for Alpha/NT pointers */
1201 case HIGH:
1202 case PRE_INC:
1203 case PRE_DEC:
1204 case POST_INC:
1205 case POST_DEC:
1206 return find_base_term (XEXP (x, 0));
1208 case VALUE:
1209 val = CSELIB_VAL_PTR (x);
1210 for (l = val->locs; l; l = l->next)
1211 if ((x = find_base_term (l->loc)) != 0)
1212 return x;
1213 return 0;
1215 case CONST:
1216 x = XEXP (x, 0);
1217 if (GET_CODE (x) != PLUS && GET_CODE (x) != MINUS)
1218 return 0;
1219 /* fall through */
1220 case LO_SUM:
1221 case PLUS:
1222 case MINUS:
1224 rtx tmp1 = XEXP (x, 0);
1225 rtx tmp2 = XEXP (x, 1);
1227 /* This is a litle bit tricky since we have to determine which of
1228 the two operands represents the real base address. Otherwise this
1229 routine may return the index register instead of the base register.
1231 That may cause us to believe no aliasing was possible, when in
1232 fact aliasing is possible.
1234 We use a few simple tests to guess the base register. Additional
1235 tests can certainly be added. For example, if one of the operands
1236 is a shift or multiply, then it must be the index register and the
1237 other operand is the base register. */
1239 if (tmp1 == pic_offset_table_rtx && CONSTANT_P (tmp2))
1240 return find_base_term (tmp2);
1242 /* If either operand is known to be a pointer, then use it
1243 to determine the base term. */
1244 if (REG_P (tmp1) && REG_POINTER (tmp1))
1245 return find_base_term (tmp1);
1247 if (REG_P (tmp2) && REG_POINTER (tmp2))
1248 return find_base_term (tmp2);
1250 /* Neither operand was known to be a pointer. Go ahead and find the
1251 base term for both operands. */
1252 tmp1 = find_base_term (tmp1);
1253 tmp2 = find_base_term (tmp2);
1255 /* If either base term is named object or a special address
1256 (like an argument or stack reference), then use it for the
1257 base term. */
1258 if (tmp1 != 0
1259 && (GET_CODE (tmp1) == SYMBOL_REF
1260 || GET_CODE (tmp1) == LABEL_REF
1261 || (GET_CODE (tmp1) == ADDRESS
1262 && GET_MODE (tmp1) != VOIDmode)))
1263 return tmp1;
1265 if (tmp2 != 0
1266 && (GET_CODE (tmp2) == SYMBOL_REF
1267 || GET_CODE (tmp2) == LABEL_REF
1268 || (GET_CODE (tmp2) == ADDRESS
1269 && GET_MODE (tmp2) != VOIDmode)))
1270 return tmp2;
1272 /* We could not determine which of the two operands was the
1273 base register and which was the index. So we can determine
1274 nothing from the base alias check. */
1275 return 0;
1278 case AND:
1279 if (GET_CODE (XEXP (x, 0)) == REG && GET_CODE (XEXP (x, 1)) == CONST_INT)
1280 return REG_BASE_VALUE (XEXP (x, 0));
1281 return 0;
1283 case SYMBOL_REF:
1284 case LABEL_REF:
1285 return x;
1287 case ADDRESSOF:
1288 return REG_BASE_VALUE (frame_pointer_rtx);
1290 default:
1291 return 0;
1295 /* Return 0 if the addresses X and Y are known to point to different
1296 objects, 1 if they might be pointers to the same object. */
1298 static int
1299 base_alias_check (x, y, x_mode, y_mode)
1300 rtx x, y;
1301 enum machine_mode x_mode, y_mode;
1303 rtx x_base = find_base_term (x);
1304 rtx y_base = find_base_term (y);
1306 /* If the address itself has no known base see if a known equivalent
1307 value has one. If either address still has no known base, nothing
1308 is known about aliasing. */
1309 if (x_base == 0)
1311 rtx x_c;
1313 if (! flag_expensive_optimizations || (x_c = canon_rtx (x)) == x)
1314 return 1;
1316 x_base = find_base_term (x_c);
1317 if (x_base == 0)
1318 return 1;
1321 if (y_base == 0)
1323 rtx y_c;
1324 if (! flag_expensive_optimizations || (y_c = canon_rtx (y)) == y)
1325 return 1;
1327 y_base = find_base_term (y_c);
1328 if (y_base == 0)
1329 return 1;
1332 /* If the base addresses are equal nothing is known about aliasing. */
1333 if (rtx_equal_p (x_base, y_base))
1334 return 1;
1336 /* The base addresses of the read and write are different expressions.
1337 If they are both symbols and they are not accessed via AND, there is
1338 no conflict. We can bring knowledge of object alignment into play
1339 here. For example, on alpha, "char a, b;" can alias one another,
1340 though "char a; long b;" cannot. */
1341 if (GET_CODE (x_base) != ADDRESS && GET_CODE (y_base) != ADDRESS)
1343 if (GET_CODE (x) == AND && GET_CODE (y) == AND)
1344 return 1;
1345 if (GET_CODE (x) == AND
1346 && (GET_CODE (XEXP (x, 1)) != CONST_INT
1347 || (int) GET_MODE_UNIT_SIZE (y_mode) < -INTVAL (XEXP (x, 1))))
1348 return 1;
1349 if (GET_CODE (y) == AND
1350 && (GET_CODE (XEXP (y, 1)) != CONST_INT
1351 || (int) GET_MODE_UNIT_SIZE (x_mode) < -INTVAL (XEXP (y, 1))))
1352 return 1;
1353 /* Differing symbols never alias. */
1354 return 0;
1357 /* If one address is a stack reference there can be no alias:
1358 stack references using different base registers do not alias,
1359 a stack reference can not alias a parameter, and a stack reference
1360 can not alias a global. */
1361 if ((GET_CODE (x_base) == ADDRESS && GET_MODE (x_base) == Pmode)
1362 || (GET_CODE (y_base) == ADDRESS && GET_MODE (y_base) == Pmode))
1363 return 0;
1365 if (! flag_argument_noalias)
1366 return 1;
1368 if (flag_argument_noalias > 1)
1369 return 0;
1371 /* Weak noalias assertion (arguments are distinct, but may match globals). */
1372 return ! (GET_MODE (x_base) == VOIDmode && GET_MODE (y_base) == VOIDmode);
1375 /* Convert the address X into something we can use. This is done by returning
1376 it unchanged unless it is a value; in the latter case we call cselib to get
1377 a more useful rtx. */
1380 get_addr (x)
1381 rtx x;
1383 cselib_val *v;
1384 struct elt_loc_list *l;
1386 if (GET_CODE (x) != VALUE)
1387 return x;
1388 v = CSELIB_VAL_PTR (x);
1389 for (l = v->locs; l; l = l->next)
1390 if (CONSTANT_P (l->loc))
1391 return l->loc;
1392 for (l = v->locs; l; l = l->next)
1393 if (GET_CODE (l->loc) != REG && GET_CODE (l->loc) != MEM)
1394 return l->loc;
1395 if (v->locs)
1396 return v->locs->loc;
1397 return x;
1400 /* Return the address of the (N_REFS + 1)th memory reference to ADDR
1401 where SIZE is the size in bytes of the memory reference. If ADDR
1402 is not modified by the memory reference then ADDR is returned. */
1405 addr_side_effect_eval (addr, size, n_refs)
1406 rtx addr;
1407 int size;
1408 int n_refs;
1410 int offset = 0;
1412 switch (GET_CODE (addr))
1414 case PRE_INC:
1415 offset = (n_refs + 1) * size;
1416 break;
1417 case PRE_DEC:
1418 offset = -(n_refs + 1) * size;
1419 break;
1420 case POST_INC:
1421 offset = n_refs * size;
1422 break;
1423 case POST_DEC:
1424 offset = -n_refs * size;
1425 break;
1427 default:
1428 return addr;
1431 if (offset)
1432 addr = gen_rtx_PLUS (GET_MODE (addr), XEXP (addr, 0), GEN_INT (offset));
1433 else
1434 addr = XEXP (addr, 0);
1436 return addr;
1439 /* Return nonzero if X and Y (memory addresses) could reference the
1440 same location in memory. C is an offset accumulator. When
1441 C is nonzero, we are testing aliases between X and Y + C.
1442 XSIZE is the size in bytes of the X reference,
1443 similarly YSIZE is the size in bytes for Y.
1445 If XSIZE or YSIZE is zero, we do not know the amount of memory being
1446 referenced (the reference was BLKmode), so make the most pessimistic
1447 assumptions.
1449 If XSIZE or YSIZE is negative, we may access memory outside the object
1450 being referenced as a side effect. This can happen when using AND to
1451 align memory references, as is done on the Alpha.
1453 Nice to notice that varying addresses cannot conflict with fp if no
1454 local variables had their addresses taken, but that's too hard now. */
1456 static int
1457 memrefs_conflict_p (xsize, x, ysize, y, c)
1458 register rtx x, y;
1459 int xsize, ysize;
1460 HOST_WIDE_INT c;
1462 if (GET_CODE (x) == VALUE)
1463 x = get_addr (x);
1464 if (GET_CODE (y) == VALUE)
1465 y = get_addr (y);
1466 if (GET_CODE (x) == HIGH)
1467 x = XEXP (x, 0);
1468 else if (GET_CODE (x) == LO_SUM)
1469 x = XEXP (x, 1);
1470 else
1471 x = canon_rtx (addr_side_effect_eval (x, xsize, 0));
1472 if (GET_CODE (y) == HIGH)
1473 y = XEXP (y, 0);
1474 else if (GET_CODE (y) == LO_SUM)
1475 y = XEXP (y, 1);
1476 else
1477 y = canon_rtx (addr_side_effect_eval (y, ysize, 0));
1479 if (rtx_equal_for_memref_p (x, y))
1481 if (xsize <= 0 || ysize <= 0)
1482 return 1;
1483 if (c >= 0 && xsize > c)
1484 return 1;
1485 if (c < 0 && ysize+c > 0)
1486 return 1;
1487 return 0;
1490 /* This code used to check for conflicts involving stack references and
1491 globals but the base address alias code now handles these cases. */
1493 if (GET_CODE (x) == PLUS)
1495 /* The fact that X is canonicalized means that this
1496 PLUS rtx is canonicalized. */
1497 rtx x0 = XEXP (x, 0);
1498 rtx x1 = XEXP (x, 1);
1500 if (GET_CODE (y) == PLUS)
1502 /* The fact that Y is canonicalized means that this
1503 PLUS rtx is canonicalized. */
1504 rtx y0 = XEXP (y, 0);
1505 rtx y1 = XEXP (y, 1);
1507 if (rtx_equal_for_memref_p (x1, y1))
1508 return memrefs_conflict_p (xsize, x0, ysize, y0, c);
1509 if (rtx_equal_for_memref_p (x0, y0))
1510 return memrefs_conflict_p (xsize, x1, ysize, y1, c);
1511 if (GET_CODE (x1) == CONST_INT)
1513 if (GET_CODE (y1) == CONST_INT)
1514 return memrefs_conflict_p (xsize, x0, ysize, y0,
1515 c - INTVAL (x1) + INTVAL (y1));
1516 else
1517 return memrefs_conflict_p (xsize, x0, ysize, y,
1518 c - INTVAL (x1));
1520 else if (GET_CODE (y1) == CONST_INT)
1521 return memrefs_conflict_p (xsize, x, ysize, y0, c + INTVAL (y1));
1523 return 1;
1525 else if (GET_CODE (x1) == CONST_INT)
1526 return memrefs_conflict_p (xsize, x0, ysize, y, c - INTVAL (x1));
1528 else if (GET_CODE (y) == PLUS)
1530 /* The fact that Y is canonicalized means that this
1531 PLUS rtx is canonicalized. */
1532 rtx y0 = XEXP (y, 0);
1533 rtx y1 = XEXP (y, 1);
1535 if (GET_CODE (y1) == CONST_INT)
1536 return memrefs_conflict_p (xsize, x, ysize, y0, c + INTVAL (y1));
1537 else
1538 return 1;
1541 if (GET_CODE (x) == GET_CODE (y))
1542 switch (GET_CODE (x))
1544 case MULT:
1546 /* Handle cases where we expect the second operands to be the
1547 same, and check only whether the first operand would conflict
1548 or not. */
1549 rtx x0, y0;
1550 rtx x1 = canon_rtx (XEXP (x, 1));
1551 rtx y1 = canon_rtx (XEXP (y, 1));
1552 if (! rtx_equal_for_memref_p (x1, y1))
1553 return 1;
1554 x0 = canon_rtx (XEXP (x, 0));
1555 y0 = canon_rtx (XEXP (y, 0));
1556 if (rtx_equal_for_memref_p (x0, y0))
1557 return (xsize == 0 || ysize == 0
1558 || (c >= 0 && xsize > c) || (c < 0 && ysize+c > 0));
1560 /* Can't properly adjust our sizes. */
1561 if (GET_CODE (x1) != CONST_INT)
1562 return 1;
1563 xsize /= INTVAL (x1);
1564 ysize /= INTVAL (x1);
1565 c /= INTVAL (x1);
1566 return memrefs_conflict_p (xsize, x0, ysize, y0, c);
1569 case REG:
1570 /* Are these registers known not to be equal? */
1571 if (alias_invariant)
1573 unsigned int r_x = REGNO (x), r_y = REGNO (y);
1574 rtx i_x, i_y; /* invariant relationships of X and Y */
1576 i_x = r_x >= reg_base_value_size ? 0 : alias_invariant[r_x];
1577 i_y = r_y >= reg_base_value_size ? 0 : alias_invariant[r_y];
1579 if (i_x == 0 && i_y == 0)
1580 break;
1582 if (! memrefs_conflict_p (xsize, i_x ? i_x : x,
1583 ysize, i_y ? i_y : y, c))
1584 return 0;
1586 break;
1588 default:
1589 break;
1592 /* Treat an access through an AND (e.g. a subword access on an Alpha)
1593 as an access with indeterminate size. Assume that references
1594 besides AND are aligned, so if the size of the other reference is
1595 at least as large as the alignment, assume no other overlap. */
1596 if (GET_CODE (x) == AND && GET_CODE (XEXP (x, 1)) == CONST_INT)
1598 if (GET_CODE (y) == AND || ysize < -INTVAL (XEXP (x, 1)))
1599 xsize = -1;
1600 return memrefs_conflict_p (xsize, XEXP (x, 0), ysize, y, c);
1602 if (GET_CODE (y) == AND && GET_CODE (XEXP (y, 1)) == CONST_INT)
1604 /* ??? If we are indexing far enough into the array/structure, we
1605 may yet be able to determine that we can not overlap. But we
1606 also need to that we are far enough from the end not to overlap
1607 a following reference, so we do nothing with that for now. */
1608 if (GET_CODE (x) == AND || xsize < -INTVAL (XEXP (y, 1)))
1609 ysize = -1;
1610 return memrefs_conflict_p (xsize, x, ysize, XEXP (y, 0), c);
1613 if (GET_CODE (x) == ADDRESSOF)
1615 if (y == frame_pointer_rtx
1616 || GET_CODE (y) == ADDRESSOF)
1617 return xsize <= 0 || ysize <= 0;
1619 if (GET_CODE (y) == ADDRESSOF)
1621 if (x == frame_pointer_rtx)
1622 return xsize <= 0 || ysize <= 0;
1625 if (CONSTANT_P (x))
1627 if (GET_CODE (x) == CONST_INT && GET_CODE (y) == CONST_INT)
1629 c += (INTVAL (y) - INTVAL (x));
1630 return (xsize <= 0 || ysize <= 0
1631 || (c >= 0 && xsize > c) || (c < 0 && ysize+c > 0));
1634 if (GET_CODE (x) == CONST)
1636 if (GET_CODE (y) == CONST)
1637 return memrefs_conflict_p (xsize, canon_rtx (XEXP (x, 0)),
1638 ysize, canon_rtx (XEXP (y, 0)), c);
1639 else
1640 return memrefs_conflict_p (xsize, canon_rtx (XEXP (x, 0)),
1641 ysize, y, c);
1643 if (GET_CODE (y) == CONST)
1644 return memrefs_conflict_p (xsize, x, ysize,
1645 canon_rtx (XEXP (y, 0)), c);
1647 if (CONSTANT_P (y))
1648 return (xsize <= 0 || ysize <= 0
1649 || (rtx_equal_for_memref_p (x, y)
1650 && ((c >= 0 && xsize > c) || (c < 0 && ysize+c > 0))));
1652 return 1;
1654 return 1;
1657 /* Functions to compute memory dependencies.
1659 Since we process the insns in execution order, we can build tables
1660 to keep track of what registers are fixed (and not aliased), what registers
1661 are varying in known ways, and what registers are varying in unknown
1662 ways.
1664 If both memory references are volatile, then there must always be a
1665 dependence between the two references, since their order can not be
1666 changed. A volatile and non-volatile reference can be interchanged
1667 though.
1669 A MEM_IN_STRUCT reference at a non-AND varying address can never
1670 conflict with a non-MEM_IN_STRUCT reference at a fixed address. We
1671 also must allow AND addresses, because they may generate accesses
1672 outside the object being referenced. This is used to generate
1673 aligned addresses from unaligned addresses, for instance, the alpha
1674 storeqi_unaligned pattern. */
1676 /* Read dependence: X is read after read in MEM takes place. There can
1677 only be a dependence here if both reads are volatile. */
1680 read_dependence (mem, x)
1681 rtx mem;
1682 rtx x;
1684 return MEM_VOLATILE_P (x) && MEM_VOLATILE_P (mem);
1687 /* Returns MEM1 if and only if MEM1 is a scalar at a fixed address and
1688 MEM2 is a reference to a structure at a varying address, or returns
1689 MEM2 if vice versa. Otherwise, returns NULL_RTX. If a non-NULL
1690 value is returned MEM1 and MEM2 can never alias. VARIES_P is used
1691 to decide whether or not an address may vary; it should return
1692 nonzero whenever variation is possible.
1693 MEM1_ADDR and MEM2_ADDR are the addresses of MEM1 and MEM2. */
1695 static rtx
1696 fixed_scalar_and_varying_struct_p (mem1, mem2, mem1_addr, mem2_addr, varies_p)
1697 rtx mem1, mem2;
1698 rtx mem1_addr, mem2_addr;
1699 int (*varies_p) PARAMS ((rtx, int));
1701 if (! flag_strict_aliasing)
1702 return NULL_RTX;
1704 if (MEM_SCALAR_P (mem1) && MEM_IN_STRUCT_P (mem2)
1705 && !varies_p (mem1_addr, 1) && varies_p (mem2_addr, 1))
1706 /* MEM1 is a scalar at a fixed address; MEM2 is a struct at a
1707 varying address. */
1708 return mem1;
1710 if (MEM_IN_STRUCT_P (mem1) && MEM_SCALAR_P (mem2)
1711 && varies_p (mem1_addr, 1) && !varies_p (mem2_addr, 1))
1712 /* MEM2 is a scalar at a fixed address; MEM1 is a struct at a
1713 varying address. */
1714 return mem2;
1716 return NULL_RTX;
1719 /* Returns nonzero if something about the mode or address format MEM1
1720 indicates that it might well alias *anything*. */
1722 static int
1723 aliases_everything_p (mem)
1724 rtx mem;
1726 if (GET_CODE (XEXP (mem, 0)) == AND)
1727 /* If the address is an AND, its very hard to know at what it is
1728 actually pointing. */
1729 return 1;
1731 return 0;
1734 /* True dependence: X is read after store in MEM takes place. */
1737 true_dependence (mem, mem_mode, x, varies)
1738 rtx mem;
1739 enum machine_mode mem_mode;
1740 rtx x;
1741 int (*varies) PARAMS ((rtx, int));
1743 register rtx x_addr, mem_addr;
1744 rtx base;
1746 if (MEM_VOLATILE_P (x) && MEM_VOLATILE_P (mem))
1747 return 1;
1749 if (DIFFERENT_ALIAS_SETS_P (x, mem))
1750 return 0;
1752 /* Unchanging memory can't conflict with non-unchanging memory.
1753 A non-unchanging read can conflict with a non-unchanging write.
1754 An unchanging read can conflict with an unchanging write since
1755 there may be a single store to this address to initialize it.
1756 Note that an unchanging store can conflict with a non-unchanging read
1757 since we have to make conservative assumptions when we have a
1758 record with readonly fields and we are copying the whole thing.
1759 Just fall through to the code below to resolve potential conflicts.
1760 This won't handle all cases optimally, but the possible performance
1761 loss should be negligible. */
1762 if (RTX_UNCHANGING_P (x) && ! RTX_UNCHANGING_P (mem))
1763 return 0;
1765 if (mem_mode == VOIDmode)
1766 mem_mode = GET_MODE (mem);
1768 x_addr = get_addr (XEXP (x, 0));
1769 mem_addr = get_addr (XEXP (mem, 0));
1771 base = find_base_term (x_addr);
1772 if (base && (GET_CODE (base) == LABEL_REF
1773 || (GET_CODE (base) == SYMBOL_REF
1774 && CONSTANT_POOL_ADDRESS_P (base))))
1775 return 0;
1777 if (! base_alias_check (x_addr, mem_addr, GET_MODE (x), mem_mode))
1778 return 0;
1780 x_addr = canon_rtx (x_addr);
1781 mem_addr = canon_rtx (mem_addr);
1783 if (! memrefs_conflict_p (GET_MODE_SIZE (mem_mode), mem_addr,
1784 SIZE_FOR_MODE (x), x_addr, 0))
1785 return 0;
1787 if (aliases_everything_p (x))
1788 return 1;
1790 /* We cannot use aliases_everyting_p to test MEM, since we must look
1791 at MEM_MODE, rather than GET_MODE (MEM). */
1792 if (mem_mode == QImode || GET_CODE (mem_addr) == AND)
1793 return 1;
1795 /* In true_dependence we also allow BLKmode to alias anything. Why
1796 don't we do this in anti_dependence and output_dependence? */
1797 if (mem_mode == BLKmode || GET_MODE (x) == BLKmode)
1798 return 1;
1800 return ! fixed_scalar_and_varying_struct_p (mem, x, mem_addr, x_addr,
1801 varies);
1804 /* Canonical true dependence: X is read after store in MEM takes place.
1805 Variant of true_dependece which assumes MEM has already been
1806 canonicalized (hence we no longer do that here).
1807 The mem_addr argument has been added, since true_dependence computed
1808 this value prior to canonicalizing. */
1811 canon_true_dependence (mem, mem_mode, mem_addr, x, varies)
1812 rtx mem, mem_addr, x;
1813 enum machine_mode mem_mode;
1814 int (*varies) PARAMS ((rtx, int));
1816 register rtx x_addr;
1818 if (MEM_VOLATILE_P (x) && MEM_VOLATILE_P (mem))
1819 return 1;
1821 if (DIFFERENT_ALIAS_SETS_P (x, mem))
1822 return 0;
1824 /* If X is an unchanging read, then it can't possibly conflict with any
1825 non-unchanging store. It may conflict with an unchanging write though,
1826 because there may be a single store to this address to initialize it.
1827 Just fall through to the code below to resolve the case where we have
1828 both an unchanging read and an unchanging write. This won't handle all
1829 cases optimally, but the possible performance loss should be
1830 negligible. */
1831 if (RTX_UNCHANGING_P (x) && ! RTX_UNCHANGING_P (mem))
1832 return 0;
1834 x_addr = get_addr (XEXP (x, 0));
1836 if (! base_alias_check (x_addr, mem_addr, GET_MODE (x), mem_mode))
1837 return 0;
1839 x_addr = canon_rtx (x_addr);
1840 if (! memrefs_conflict_p (GET_MODE_SIZE (mem_mode), mem_addr,
1841 SIZE_FOR_MODE (x), x_addr, 0))
1842 return 0;
1844 if (aliases_everything_p (x))
1845 return 1;
1847 /* We cannot use aliases_everyting_p to test MEM, since we must look
1848 at MEM_MODE, rather than GET_MODE (MEM). */
1849 if (mem_mode == QImode || GET_CODE (mem_addr) == AND)
1850 return 1;
1852 /* In true_dependence we also allow BLKmode to alias anything. Why
1853 don't we do this in anti_dependence and output_dependence? */
1854 if (mem_mode == BLKmode || GET_MODE (x) == BLKmode)
1855 return 1;
1857 return ! fixed_scalar_and_varying_struct_p (mem, x, mem_addr, x_addr,
1858 varies);
1861 /* Returns non-zero if a write to X might alias a previous read from
1862 (or, if WRITEP is non-zero, a write to) MEM. */
1864 static int
1865 write_dependence_p (mem, x, writep)
1866 rtx mem;
1867 rtx x;
1868 int writep;
1870 rtx x_addr, mem_addr;
1871 rtx fixed_scalar;
1872 rtx base;
1874 if (MEM_VOLATILE_P (x) && MEM_VOLATILE_P (mem))
1875 return 1;
1877 if (DIFFERENT_ALIAS_SETS_P (x, mem))
1878 return 0;
1880 /* Unchanging memory can't conflict with non-unchanging memory. */
1881 if (RTX_UNCHANGING_P (x) != RTX_UNCHANGING_P (mem))
1882 return 0;
1884 /* If MEM is an unchanging read, then it can't possibly conflict with
1885 the store to X, because there is at most one store to MEM, and it must
1886 have occurred somewhere before MEM. */
1887 if (! writep && RTX_UNCHANGING_P (mem))
1888 return 0;
1890 x_addr = get_addr (XEXP (x, 0));
1891 mem_addr = get_addr (XEXP (mem, 0));
1893 if (! writep)
1895 base = find_base_term (mem_addr);
1896 if (base && (GET_CODE (base) == LABEL_REF
1897 || (GET_CODE (base) == SYMBOL_REF
1898 && CONSTANT_POOL_ADDRESS_P (base))))
1899 return 0;
1902 if (! base_alias_check (x_addr, mem_addr, GET_MODE (x),
1903 GET_MODE (mem)))
1904 return 0;
1906 x_addr = canon_rtx (x_addr);
1907 mem_addr = canon_rtx (mem_addr);
1909 if (!memrefs_conflict_p (SIZE_FOR_MODE (mem), mem_addr,
1910 SIZE_FOR_MODE (x), x_addr, 0))
1911 return 0;
1913 fixed_scalar
1914 = fixed_scalar_and_varying_struct_p (mem, x, mem_addr, x_addr,
1915 rtx_addr_varies_p);
1917 return (!(fixed_scalar == mem && !aliases_everything_p (x))
1918 && !(fixed_scalar == x && !aliases_everything_p (mem)));
1921 /* Anti dependence: X is written after read in MEM takes place. */
1924 anti_dependence (mem, x)
1925 rtx mem;
1926 rtx x;
1928 return write_dependence_p (mem, x, /*writep=*/0);
1931 /* Output dependence: X is written after store in MEM takes place. */
1934 output_dependence (mem, x)
1935 register rtx mem;
1936 register rtx x;
1938 return write_dependence_p (mem, x, /*writep=*/1);
1941 /* Returns non-zero if X mentions something which is not
1942 local to the function and is not constant. */
1944 static int
1945 nonlocal_mentioned_p (x)
1946 rtx x;
1948 rtx base;
1949 register RTX_CODE code;
1950 int regno;
1952 code = GET_CODE (x);
1954 if (GET_RTX_CLASS (code) == 'i')
1956 /* Constant functions can be constant if they don't use
1957 scratch memory used to mark function w/o side effects. */
1958 if (code == CALL_INSN && CONST_OR_PURE_CALL_P (x))
1960 x = CALL_INSN_FUNCTION_USAGE (x);
1961 if (x == 0)
1962 return 0;
1964 else
1965 x = PATTERN (x);
1966 code = GET_CODE (x);
1969 switch (code)
1971 case SUBREG:
1972 if (GET_CODE (SUBREG_REG (x)) == REG)
1974 /* Global registers are not local. */
1975 if (REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER
1976 && global_regs[subreg_regno (x)])
1977 return 1;
1978 return 0;
1980 break;
1982 case REG:
1983 regno = REGNO (x);
1984 /* Global registers are not local. */
1985 if (regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
1986 return 1;
1987 return 0;
1989 case SCRATCH:
1990 case PC:
1991 case CC0:
1992 case CONST_INT:
1993 case CONST_DOUBLE:
1994 case CONST:
1995 case LABEL_REF:
1996 return 0;
1998 case SYMBOL_REF:
1999 /* Constants in the function's constants pool are constant. */
2000 if (CONSTANT_POOL_ADDRESS_P (x))
2001 return 0;
2002 return 1;
2004 case CALL:
2005 /* Non-constant calls and recursion are not local. */
2006 return 1;
2008 case MEM:
2009 /* Be overly conservative and consider any volatile memory
2010 reference as not local. */
2011 if (MEM_VOLATILE_P (x))
2012 return 1;
2013 base = find_base_term (XEXP (x, 0));
2014 if (base)
2016 /* A Pmode ADDRESS could be a reference via the structure value
2017 address or static chain. Such memory references are nonlocal.
2019 Thus, we have to examine the contents of the ADDRESS to find
2020 out if this is a local reference or not. */
2021 if (GET_CODE (base) == ADDRESS
2022 && GET_MODE (base) == Pmode
2023 && (XEXP (base, 0) == stack_pointer_rtx
2024 || XEXP (base, 0) == arg_pointer_rtx
2025 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
2026 || XEXP (base, 0) == hard_frame_pointer_rtx
2027 #endif
2028 || XEXP (base, 0) == frame_pointer_rtx))
2029 return 0;
2030 /* Constants in the function's constant pool are constant. */
2031 if (GET_CODE (base) == SYMBOL_REF && CONSTANT_POOL_ADDRESS_P (base))
2032 return 0;
2034 return 1;
2036 case UNSPEC_VOLATILE:
2037 case ASM_INPUT:
2038 return 1;
2040 case ASM_OPERANDS:
2041 if (MEM_VOLATILE_P (x))
2042 return 1;
2044 /* FALLTHROUGH */
2046 default:
2047 break;
2050 /* Recursively scan the operands of this expression. */
2053 register const char *fmt = GET_RTX_FORMAT (code);
2054 register int i;
2056 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2058 if (fmt[i] == 'e' && XEXP (x, i))
2060 if (nonlocal_mentioned_p (XEXP (x, i)))
2061 return 1;
2063 else if (fmt[i] == 'E')
2065 register int j;
2066 for (j = 0; j < XVECLEN (x, i); j++)
2067 if (nonlocal_mentioned_p (XVECEXP (x, i, j)))
2068 return 1;
2073 return 0;
2076 /* Mark the function if it is constant. */
2078 void
2079 mark_constant_function ()
2081 rtx insn;
2082 int nonlocal_mentioned;
2084 if (TREE_PUBLIC (current_function_decl)
2085 || TREE_READONLY (current_function_decl)
2086 || DECL_IS_PURE (current_function_decl)
2087 || TREE_THIS_VOLATILE (current_function_decl)
2088 || TYPE_MODE (TREE_TYPE (current_function_decl)) == VOIDmode)
2089 return;
2091 /* A loop might not return which counts as a side effect. */
2092 if (mark_dfs_back_edges ())
2093 return;
2095 nonlocal_mentioned = 0;
2097 init_alias_analysis ();
2099 /* Determine if this is a constant function. */
2101 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
2102 if (INSN_P (insn) && nonlocal_mentioned_p (insn))
2104 nonlocal_mentioned = 1;
2105 break;
2108 end_alias_analysis ();
2110 /* Mark the function. */
2112 if (! nonlocal_mentioned)
2113 TREE_READONLY (current_function_decl) = 1;
2117 static HARD_REG_SET argument_registers;
2119 void
2120 init_alias_once ()
2122 register int i;
2124 #ifndef OUTGOING_REGNO
2125 #define OUTGOING_REGNO(N) N
2126 #endif
2127 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
2128 /* Check whether this register can hold an incoming pointer
2129 argument. FUNCTION_ARG_REGNO_P tests outgoing register
2130 numbers, so translate if necessary due to register windows. */
2131 if (FUNCTION_ARG_REGNO_P (OUTGOING_REGNO (i))
2132 && HARD_REGNO_MODE_OK (i, Pmode))
2133 SET_HARD_REG_BIT (argument_registers, i);
2135 alias_sets = splay_tree_new (splay_tree_compare_ints, 0, 0);
2138 /* Initialize the aliasing machinery. Initialize the REG_KNOWN_VALUE
2139 array. */
2141 void
2142 init_alias_analysis ()
2144 int maxreg = max_reg_num ();
2145 int changed, pass;
2146 register int i;
2147 register unsigned int ui;
2148 register rtx insn;
2150 reg_known_value_size = maxreg;
2152 reg_known_value
2153 = (rtx *) xcalloc ((maxreg - FIRST_PSEUDO_REGISTER), sizeof (rtx))
2154 - FIRST_PSEUDO_REGISTER;
2155 reg_known_equiv_p
2156 = (char*) xcalloc ((maxreg - FIRST_PSEUDO_REGISTER), sizeof (char))
2157 - FIRST_PSEUDO_REGISTER;
2159 /* Overallocate reg_base_value to allow some growth during loop
2160 optimization. Loop unrolling can create a large number of
2161 registers. */
2162 reg_base_value_size = maxreg * 2;
2163 reg_base_value = (rtx *) xcalloc (reg_base_value_size, sizeof (rtx));
2164 ggc_add_rtx_root (reg_base_value, reg_base_value_size);
2166 new_reg_base_value = (rtx *) xmalloc (reg_base_value_size * sizeof (rtx));
2167 reg_seen = (char *) xmalloc (reg_base_value_size);
2168 if (! reload_completed && flag_unroll_loops)
2170 /* ??? Why are we realloc'ing if we're just going to zero it? */
2171 alias_invariant = (rtx *)xrealloc (alias_invariant,
2172 reg_base_value_size * sizeof (rtx));
2173 memset ((char *)alias_invariant, 0, reg_base_value_size * sizeof (rtx));
2176 /* The basic idea is that each pass through this loop will use the
2177 "constant" information from the previous pass to propagate alias
2178 information through another level of assignments.
2180 This could get expensive if the assignment chains are long. Maybe
2181 we should throttle the number of iterations, possibly based on
2182 the optimization level or flag_expensive_optimizations.
2184 We could propagate more information in the first pass by making use
2185 of REG_N_SETS to determine immediately that the alias information
2186 for a pseudo is "constant".
2188 A program with an uninitialized variable can cause an infinite loop
2189 here. Instead of doing a full dataflow analysis to detect such problems
2190 we just cap the number of iterations for the loop.
2192 The state of the arrays for the set chain in question does not matter
2193 since the program has undefined behavior. */
2195 pass = 0;
2198 /* Assume nothing will change this iteration of the loop. */
2199 changed = 0;
2201 /* We want to assign the same IDs each iteration of this loop, so
2202 start counting from zero each iteration of the loop. */
2203 unique_id = 0;
2205 /* We're at the start of the funtion each iteration through the
2206 loop, so we're copying arguments. */
2207 copying_arguments = 1;
2209 /* Wipe the potential alias information clean for this pass. */
2210 memset ((char *) new_reg_base_value, 0, reg_base_value_size * sizeof (rtx));
2212 /* Wipe the reg_seen array clean. */
2213 memset ((char *) reg_seen, 0, reg_base_value_size);
2215 /* Mark all hard registers which may contain an address.
2216 The stack, frame and argument pointers may contain an address.
2217 An argument register which can hold a Pmode value may contain
2218 an address even if it is not in BASE_REGS.
2220 The address expression is VOIDmode for an argument and
2221 Pmode for other registers. */
2223 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
2224 if (TEST_HARD_REG_BIT (argument_registers, i))
2225 new_reg_base_value[i] = gen_rtx_ADDRESS (VOIDmode,
2226 gen_rtx_REG (Pmode, i));
2228 new_reg_base_value[STACK_POINTER_REGNUM]
2229 = gen_rtx_ADDRESS (Pmode, stack_pointer_rtx);
2230 new_reg_base_value[ARG_POINTER_REGNUM]
2231 = gen_rtx_ADDRESS (Pmode, arg_pointer_rtx);
2232 new_reg_base_value[FRAME_POINTER_REGNUM]
2233 = gen_rtx_ADDRESS (Pmode, frame_pointer_rtx);
2234 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
2235 new_reg_base_value[HARD_FRAME_POINTER_REGNUM]
2236 = gen_rtx_ADDRESS (Pmode, hard_frame_pointer_rtx);
2237 #endif
2239 /* Walk the insns adding values to the new_reg_base_value array. */
2240 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
2242 if (INSN_P (insn))
2244 rtx note, set;
2246 #if defined (HAVE_prologue) || defined (HAVE_epilogue)
2247 /* The prologue/epilouge insns are not threaded onto the
2248 insn chain until after reload has completed. Thus,
2249 there is no sense wasting time checking if INSN is in
2250 the prologue/epilogue until after reload has completed. */
2251 if (reload_completed
2252 && prologue_epilogue_contains (insn))
2253 continue;
2254 #endif
2256 /* If this insn has a noalias note, process it, Otherwise,
2257 scan for sets. A simple set will have no side effects
2258 which could change the base value of any other register. */
2260 if (GET_CODE (PATTERN (insn)) == SET
2261 && REG_NOTES (insn) != 0
2262 && find_reg_note (insn, REG_NOALIAS, NULL_RTX))
2263 record_set (SET_DEST (PATTERN (insn)), NULL_RTX, NULL);
2264 else
2265 note_stores (PATTERN (insn), record_set, NULL);
2267 set = single_set (insn);
2269 if (set != 0
2270 && GET_CODE (SET_DEST (set)) == REG
2271 && REGNO (SET_DEST (set)) >= FIRST_PSEUDO_REGISTER)
2273 unsigned int regno = REGNO (SET_DEST (set));
2274 rtx src = SET_SRC (set);
2276 if (REG_NOTES (insn) != 0
2277 && (((note = find_reg_note (insn, REG_EQUAL, 0)) != 0
2278 && REG_N_SETS (regno) == 1)
2279 || (note = find_reg_note (insn, REG_EQUIV, NULL_RTX)) != 0)
2280 && GET_CODE (XEXP (note, 0)) != EXPR_LIST
2281 && ! rtx_varies_p (XEXP (note, 0), 1)
2282 && ! reg_overlap_mentioned_p (SET_DEST (set), XEXP (note, 0)))
2284 reg_known_value[regno] = XEXP (note, 0);
2285 reg_known_equiv_p[regno] = REG_NOTE_KIND (note) == REG_EQUIV;
2287 else if (REG_N_SETS (regno) == 1
2288 && GET_CODE (src) == PLUS
2289 && GET_CODE (XEXP (src, 0)) == REG
2290 && REGNO (XEXP (src, 0)) >= FIRST_PSEUDO_REGISTER
2291 && (reg_known_value[REGNO (XEXP (src, 0))])
2292 && GET_CODE (XEXP (src, 1)) == CONST_INT)
2294 rtx op0 = XEXP (src, 0);
2295 op0 = reg_known_value[REGNO (op0)];
2296 reg_known_value[regno]
2297 = plus_constant (op0, INTVAL (XEXP (src, 1)));
2298 reg_known_equiv_p[regno] = 0;
2300 else if (REG_N_SETS (regno) == 1
2301 && ! rtx_varies_p (src, 1))
2303 reg_known_value[regno] = src;
2304 reg_known_equiv_p[regno] = 0;
2308 else if (GET_CODE (insn) == NOTE
2309 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_BEG)
2310 copying_arguments = 0;
2313 /* Now propagate values from new_reg_base_value to reg_base_value. */
2314 for (ui = 0; ui < reg_base_value_size; ui++)
2316 if (new_reg_base_value[ui]
2317 && new_reg_base_value[ui] != reg_base_value[ui]
2318 && ! rtx_equal_p (new_reg_base_value[ui], reg_base_value[ui]))
2320 reg_base_value[ui] = new_reg_base_value[ui];
2321 changed = 1;
2325 while (changed && ++pass < MAX_ALIAS_LOOP_PASSES);
2327 /* Fill in the remaining entries. */
2328 for (i = FIRST_PSEUDO_REGISTER; i < maxreg; i++)
2329 if (reg_known_value[i] == 0)
2330 reg_known_value[i] = regno_reg_rtx[i];
2332 /* Simplify the reg_base_value array so that no register refers to
2333 another register, except to special registers indirectly through
2334 ADDRESS expressions.
2336 In theory this loop can take as long as O(registers^2), but unless
2337 there are very long dependency chains it will run in close to linear
2338 time.
2340 This loop may not be needed any longer now that the main loop does
2341 a better job at propagating alias information. */
2342 pass = 0;
2345 changed = 0;
2346 pass++;
2347 for (ui = 0; ui < reg_base_value_size; ui++)
2349 rtx base = reg_base_value[ui];
2350 if (base && GET_CODE (base) == REG)
2352 unsigned int base_regno = REGNO (base);
2353 if (base_regno == ui) /* register set from itself */
2354 reg_base_value[ui] = 0;
2355 else
2356 reg_base_value[ui] = reg_base_value[base_regno];
2357 changed = 1;
2361 while (changed && pass < MAX_ALIAS_LOOP_PASSES);
2363 /* Clean up. */
2364 free (new_reg_base_value);
2365 new_reg_base_value = 0;
2366 free (reg_seen);
2367 reg_seen = 0;
2370 void
2371 end_alias_analysis ()
2373 free (reg_known_value + FIRST_PSEUDO_REGISTER);
2374 reg_known_value = 0;
2375 reg_known_value_size = 0;
2376 free (reg_known_equiv_p + FIRST_PSEUDO_REGISTER);
2377 reg_known_equiv_p = 0;
2378 if (reg_base_value)
2380 ggc_del_root (reg_base_value);
2381 free (reg_base_value);
2382 reg_base_value = 0;
2384 reg_base_value_size = 0;
2385 if (alias_invariant)
2387 free (alias_invariant);
2388 alias_invariant = 0;