]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/alias.c
libgcc2.c (__divdi3, __moddi3): Use unary minus operator instead of __negdi2 directly.
[thirdparty/gcc.git] / gcc / alias.c
CommitLineData
9ae8ffe7 1/* Alias analysis for GNU C
6e24b709 2 Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
9ae8ffe7
JL
3 Contributed by John Carr (jfc@mit.edu).
4
1322177d 5This file is part of GCC.
9ae8ffe7 6
1322177d
LB
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 2, or (at your option) any later
10version.
9ae8ffe7 11
1322177d
LB
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
9ae8ffe7
JL
16
17You should have received a copy of the GNU General Public License
1322177d
LB
18along with GCC; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
9ae8ffe7
JL
21
22#include "config.h"
670ee920 23#include "system.h"
9ae8ffe7 24#include "rtl.h"
7790df19 25#include "tree.h"
6baf1cc8 26#include "tm_p.h"
49ad7cfa 27#include "function.h"
9ae8ffe7
JL
28#include "expr.h"
29#include "regs.h"
30#include "hard-reg-set.h"
e004f2f7 31#include "basic-block.h"
9ae8ffe7 32#include "flags.h"
264fac34 33#include "output.h"
2e107e9e 34#include "toplev.h"
eab5c70a 35#include "cselib.h"
3932261a 36#include "splay-tree.h"
ac606739 37#include "ggc.h"
d23c55c2 38#include "langhooks.h"
ab780373 39#include "target.h"
3932261a
MM
40
41/* The alias sets assigned to MEMs assist the back-end in determining
42 which MEMs can alias which other MEMs. In general, two MEMs in
ac3d9668
RK
43 different alias sets cannot alias each other, with one important
44 exception. Consider something like:
3932261a
MM
45
46 struct S {int i; double d; };
47
48 a store to an `S' can alias something of either type `int' or type
49 `double'. (However, a store to an `int' cannot alias a `double'
50 and vice versa.) We indicate this via a tree structure that looks
51 like:
52 struct S
53 / \
54 / \
55 |/_ _\|
56 int double
57
ac3d9668
RK
58 (The arrows are directed and point downwards.)
59 In this situation we say the alias set for `struct S' is the
60 `superset' and that those for `int' and `double' are `subsets'.
61
3bdf5ad1
RK
62 To see whether two alias sets can point to the same memory, we must
63 see if either alias set is a subset of the other. We need not trace
e3aafbad 64 past immediate descendents, however, since we propagate all
3bdf5ad1 65 grandchildren up one level.
3932261a
MM
66
67 Alias set zero is implicitly a superset of all other alias sets.
68 However, this is no actual entry for alias set zero. It is an
69 error to attempt to explicitly construct a subset of zero. */
70
d4b60170
RK
71typedef struct alias_set_entry
72{
3932261a 73 /* The alias set number, as stored in MEM_ALIAS_SET. */
3bdf5ad1 74 HOST_WIDE_INT alias_set;
3932261a
MM
75
76 /* The children of the alias set. These are not just the immediate
e3aafbad 77 children, but, in fact, all descendents. So, if we have:
3932261a 78
ca7fd9cd 79 struct T { struct S s; float f; }
3932261a
MM
80
81 continuing our example above, the children here will be all of
82 `int', `double', `float', and `struct S'. */
83 splay_tree children;
2bf105ab
RK
84
85 /* Nonzero if would have a child of zero: this effectively makes this
86 alias set the same as alias set zero. */
87 int has_zero_child;
d4b60170 88} *alias_set_entry;
9ae8ffe7 89
3d994c6b
KG
90static int rtx_equal_for_memref_p PARAMS ((rtx, rtx));
91static rtx find_symbolic_term PARAMS ((rtx));
a13d4ebf 92rtx get_addr PARAMS ((rtx));
3d994c6b
KG
93static int memrefs_conflict_p PARAMS ((int, rtx, int, rtx,
94 HOST_WIDE_INT));
95static void record_set PARAMS ((rtx, rtx, void *));
96static rtx find_base_term PARAMS ((rtx));
97static int base_alias_check PARAMS ((rtx, rtx, enum machine_mode,
98 enum machine_mode));
99static rtx find_base_value PARAMS ((rtx));
100static int mems_in_disjoint_alias_sets_p PARAMS ((rtx, rtx));
101static int insert_subset_children PARAMS ((splay_tree_node, void*));
738cc472 102static tree find_base_decl PARAMS ((tree));
3bdf5ad1 103static alias_set_entry get_alias_set_entry PARAMS ((HOST_WIDE_INT));
eab5c70a 104static rtx fixed_scalar_and_varying_struct_p PARAMS ((rtx, rtx, rtx, rtx,
e38fe8e0 105 int (*) (rtx, int)));
3d994c6b 106static int aliases_everything_p PARAMS ((rtx));
998d7deb
RH
107static bool nonoverlapping_component_refs_p PARAMS ((tree, tree));
108static tree decl_for_component_ref PARAMS ((tree));
109static rtx adjust_offset_for_component_ref PARAMS ((tree, rtx));
a4311dfe 110static int nonoverlapping_memrefs_p PARAMS ((rtx, rtx));
3d994c6b 111static int write_dependence_p PARAMS ((rtx, rtx, int));
c14b9960
JW
112
113static int nonlocal_mentioned_p_1 PARAMS ((rtx *, void *));
bf6d9fd7 114static int nonlocal_mentioned_p PARAMS ((rtx));
c14b9960
JW
115static int nonlocal_referenced_p_1 PARAMS ((rtx *, void *));
116static int nonlocal_referenced_p PARAMS ((rtx));
117static int nonlocal_set_p_1 PARAMS ((rtx *, void *));
118static int nonlocal_set_p PARAMS ((rtx));
9ae8ffe7
JL
119
120/* Set up all info needed to perform alias analysis on memory references. */
121
d4b60170 122/* Returns the size in bytes of the mode of X. */
9ae8ffe7
JL
123#define SIZE_FOR_MODE(X) (GET_MODE_SIZE (GET_MODE (X)))
124
41472af8 125/* Returns nonzero if MEM1 and MEM2 do not alias because they are in
264fac34
MM
126 different alias sets. We ignore alias sets in functions making use
127 of variable arguments because the va_arg macros on some systems are
128 not legal ANSI C. */
129#define DIFFERENT_ALIAS_SETS_P(MEM1, MEM2) \
3932261a 130 mems_in_disjoint_alias_sets_p (MEM1, MEM2)
41472af8 131
ea64ef27 132/* Cap the number of passes we make over the insns propagating alias
ac3d9668 133 information through set chains. 10 is a completely arbitrary choice. */
ea64ef27 134#define MAX_ALIAS_LOOP_PASSES 10
ca7fd9cd 135
9ae8ffe7
JL
136/* reg_base_value[N] gives an address to which register N is related.
137 If all sets after the first add or subtract to the current value
138 or otherwise modify it so it does not point to a different top level
139 object, reg_base_value[N] is equal to the address part of the source
2a2c8203
JC
140 of the first set.
141
142 A base address can be an ADDRESS, SYMBOL_REF, or LABEL_REF. ADDRESS
143 expressions represent certain special values: function arguments and
ca7fd9cd 144 the stack, frame, and argument pointers.
b3b5ad95
JL
145
146 The contents of an ADDRESS is not normally used, the mode of the
147 ADDRESS determines whether the ADDRESS is a function argument or some
148 other special value. Pointer equality, not rtx_equal_p, determines whether
149 two ADDRESS expressions refer to the same base address.
150
151 The only use of the contents of an ADDRESS is for determining if the
152 current function performs nonlocal memory memory references for the
153 purposes of marking the function as a constant function. */
2a2c8203 154
e2500fed 155static GTY((length ("reg_base_value_size"))) rtx *reg_base_value;
ac606739 156static rtx *new_reg_base_value;
d4b60170
RK
157static unsigned int reg_base_value_size; /* size of reg_base_value array */
158
bf1660a6
JL
159/* Static hunks of RTL used by the aliasing code; these are initialized
160 once per function to avoid unnecessary RTL allocations. */
161static GTY (()) rtx static_reg_base_value[FIRST_PSEUDO_REGISTER];
162
9ae8ffe7 163#define REG_BASE_VALUE(X) \
fb6754f0
BS
164 (REGNO (X) < reg_base_value_size \
165 ? reg_base_value[REGNO (X)] : 0)
9ae8ffe7 166
de12be17
JC
167/* Vector of known invariant relationships between registers. Set in
168 loop unrolling. Indexed by register number, if nonzero the value
169 is an expression describing this register in terms of another.
170
171 The length of this array is REG_BASE_VALUE_SIZE.
172
173 Because this array contains only pseudo registers it has no effect
174 after reload. */
175static rtx *alias_invariant;
176
c13e8210
MM
177/* Vector indexed by N giving the initial (unchanging) value known for
178 pseudo-register N. This array is initialized in
179 init_alias_analysis, and does not change until end_alias_analysis
180 is called. */
9ae8ffe7
JL
181rtx *reg_known_value;
182
183/* Indicates number of valid entries in reg_known_value. */
770ae6cc 184static unsigned int reg_known_value_size;
9ae8ffe7
JL
185
186/* Vector recording for each reg_known_value whether it is due to a
187 REG_EQUIV note. Future passes (viz., reload) may replace the
188 pseudo with the equivalent expression and so we account for the
ac3d9668
RK
189 dependences that would be introduced if that happens.
190
191 The REG_EQUIV notes created in assign_parms may mention the arg
192 pointer, and there are explicit insns in the RTL that modify the
193 arg pointer. Thus we must ensure that such insns don't get
194 scheduled across each other because that would invalidate the
195 REG_EQUIV notes. One could argue that the REG_EQUIV notes are
196 wrong, but solving the problem in the scheduler will likely give
197 better code, so we do it here. */
9ae8ffe7
JL
198char *reg_known_equiv_p;
199
2a2c8203
JC
200/* True when scanning insns from the start of the rtl to the
201 NOTE_INSN_FUNCTION_BEG note. */
9ae8ffe7
JL
202static int copying_arguments;
203
3932261a 204/* The splay-tree used to store the various alias set entries. */
3932261a 205static splay_tree alias_sets;
ac3d9668 206\f
3932261a
MM
207/* Returns a pointer to the alias set entry for ALIAS_SET, if there is
208 such an entry, or NULL otherwise. */
209
210static alias_set_entry
211get_alias_set_entry (alias_set)
3bdf5ad1 212 HOST_WIDE_INT alias_set;
3932261a 213{
d4b60170
RK
214 splay_tree_node sn
215 = splay_tree_lookup (alias_sets, (splay_tree_key) alias_set);
3932261a 216
d4b60170 217 return sn != 0 ? ((alias_set_entry) sn->value) : 0;
3932261a
MM
218}
219
ac3d9668
RK
220/* Returns nonzero if the alias sets for MEM1 and MEM2 are such that
221 the two MEMs cannot alias each other. */
3932261a 222
ca7fd9cd 223static int
3932261a
MM
224mems_in_disjoint_alias_sets_p (mem1, mem2)
225 rtx mem1;
226 rtx mem2;
227{
ca7fd9cd 228#ifdef ENABLE_CHECKING
3932261a
MM
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. */
d4b60170
RK
236 if (! flag_strict_aliasing
237 && (MEM_ALIAS_SET (mem1) != 0 || MEM_ALIAS_SET (mem2) != 0))
3932261a
MM
238 abort ();
239#endif
240
1da68f56
RK
241 return ! alias_sets_conflict_p (MEM_ALIAS_SET (mem1), MEM_ALIAS_SET (mem2));
242}
3932261a 243
1da68f56
RK
244/* Insert the NODE into the splay tree given by DATA. Used by
245 record_alias_subset via splay_tree_foreach. */
246
247static int
248insert_subset_children (node, data)
249 splay_tree_node node;
250 void *data;
251{
252 splay_tree_insert ((splay_tree) data, node->key, node->value);
253
254 return 0;
255}
256
257/* Return 1 if the two specified alias sets may conflict. */
258
259int
260alias_sets_conflict_p (set1, set2)
261 HOST_WIDE_INT set1, set2;
262{
263 alias_set_entry ase;
264
265 /* If have no alias set information for one of the operands, we have
266 to assume it can alias anything. */
267 if (set1 == 0 || set2 == 0
268 /* If the two alias sets are the same, they may alias. */
269 || set1 == set2)
270 return 1;
3932261a 271
3bdf5ad1 272 /* See if the first alias set is a subset of the second. */
1da68f56 273 ase = get_alias_set_entry (set1);
2bf105ab
RK
274 if (ase != 0
275 && (ase->has_zero_child
276 || splay_tree_lookup (ase->children,
1da68f56
RK
277 (splay_tree_key) set2)))
278 return 1;
3932261a
MM
279
280 /* Now do the same, but with the alias sets reversed. */
1da68f56 281 ase = get_alias_set_entry (set2);
2bf105ab
RK
282 if (ase != 0
283 && (ase->has_zero_child
284 || splay_tree_lookup (ase->children,
1da68f56
RK
285 (splay_tree_key) set1)))
286 return 1;
3932261a 287
1da68f56 288 /* The two alias sets are distinct and neither one is the
3932261a 289 child of the other. Therefore, they cannot alias. */
1da68f56 290 return 0;
3932261a 291}
1da68f56
RK
292\f
293/* Return 1 if TYPE is a RECORD_TYPE, UNION_TYPE, or QUAL_UNION_TYPE and has
294 has any readonly fields. If any of the fields have types that
295 contain readonly fields, return true as well. */
3932261a 296
1da68f56
RK
297int
298readonly_fields_p (type)
299 tree type;
3932261a 300{
1da68f56
RK
301 tree field;
302
303 if (TREE_CODE (type) != RECORD_TYPE && TREE_CODE (type) != UNION_TYPE
304 && TREE_CODE (type) != QUAL_UNION_TYPE)
305 return 0;
306
307 for (field = TYPE_FIELDS (type); field != 0; field = TREE_CHAIN (field))
308 if (TREE_CODE (field) == FIELD_DECL
309 && (TREE_READONLY (field)
310 || readonly_fields_p (TREE_TYPE (field))))
311 return 1;
3932261a
MM
312
313 return 0;
314}
3bdf5ad1 315\f
1da68f56
RK
316/* Return 1 if any MEM object of type T1 will always conflict (using the
317 dependency routines in this file) with any MEM object of type T2.
318 This is used when allocating temporary storage. If T1 and/or T2 are
319 NULL_TREE, it means we know nothing about the storage. */
320
321int
322objects_must_conflict_p (t1, t2)
323 tree t1, t2;
324{
e8ea2809
RK
325 /* If neither has a type specified, we don't know if they'll conflict
326 because we may be using them to store objects of various types, for
327 example the argument and local variables areas of inlined functions. */
981a4c34 328 if (t1 == 0 && t2 == 0)
e8ea2809
RK
329 return 0;
330
66cce54d
RH
331 /* If one or the other has readonly fields or is readonly,
332 then they may not conflict. */
333 if ((t1 != 0 && readonly_fields_p (t1))
334 || (t2 != 0 && readonly_fields_p (t2))
335 || (t1 != 0 && TYPE_READONLY (t1))
336 || (t2 != 0 && TYPE_READONLY (t2)))
337 return 0;
338
1da68f56
RK
339 /* If they are the same type, they must conflict. */
340 if (t1 == t2
341 /* Likewise if both are volatile. */
342 || (t1 != 0 && TYPE_VOLATILE (t1) && t2 != 0 && TYPE_VOLATILE (t2)))
343 return 1;
344
66cce54d
RH
345 /* If one is aggregate and the other is scalar then they may not
346 conflict. */
347 if ((t1 != 0 && AGGREGATE_TYPE_P (t1))
348 != (t2 != 0 && AGGREGATE_TYPE_P (t2)))
1da68f56
RK
349 return 0;
350
ec5c56db 351 /* Otherwise they conflict only if the alias sets conflict. */
1da68f56
RK
352 return alias_sets_conflict_p (t1 ? get_alias_set (t1) : 0,
353 t2 ? get_alias_set (t2) : 0);
354}
355\f
3bdf5ad1
RK
356/* T is an expression with pointer type. Find the DECL on which this
357 expression is based. (For example, in `a[i]' this would be `a'.)
358 If there is no such DECL, or a unique decl cannot be determined,
f5143c46 359 NULL_TREE is returned. */
3bdf5ad1
RK
360
361static tree
362find_base_decl (t)
363 tree t;
364{
365 tree d0, d1, d2;
366
367 if (t == 0 || t == error_mark_node || ! POINTER_TYPE_P (TREE_TYPE (t)))
368 return 0;
369
370 /* If this is a declaration, return it. */
371 if (TREE_CODE_CLASS (TREE_CODE (t)) == 'd')
372 return t;
373
374 /* Handle general expressions. It would be nice to deal with
375 COMPONENT_REFs here. If we could tell that `a' and `b' were the
376 same, then `a->f' and `b->f' are also the same. */
377 switch (TREE_CODE_CLASS (TREE_CODE (t)))
378 {
379 case '1':
380 return find_base_decl (TREE_OPERAND (t, 0));
381
382 case '2':
383 /* Return 0 if found in neither or both are the same. */
384 d0 = find_base_decl (TREE_OPERAND (t, 0));
385 d1 = find_base_decl (TREE_OPERAND (t, 1));
386 if (d0 == d1)
387 return d0;
388 else if (d0 == 0)
389 return d1;
390 else if (d1 == 0)
391 return d0;
392 else
393 return 0;
394
395 case '3':
396 d0 = find_base_decl (TREE_OPERAND (t, 0));
397 d1 = find_base_decl (TREE_OPERAND (t, 1));
3bdf5ad1
RK
398 d2 = find_base_decl (TREE_OPERAND (t, 2));
399
400 /* Set any nonzero values from the last, then from the first. */
401 if (d1 == 0) d1 = d2;
402 if (d0 == 0) d0 = d1;
403 if (d1 == 0) d1 = d0;
404 if (d2 == 0) d2 = d1;
405
406 /* At this point all are nonzero or all are zero. If all three are the
407 same, return it. Otherwise, return zero. */
408 return (d0 == d1 && d1 == d2) ? d0 : 0;
409
410 default:
411 return 0;
412 }
413}
414
6e24b709
RK
415/* Return 1 if all the nested component references handled by
416 get_inner_reference in T are such that we can address the object in T. */
417
10b76d73 418int
6e24b709
RK
419can_address_p (t)
420 tree t;
421{
422 /* If we're at the end, it is vacuously addressable. */
423 if (! handled_component_p (t))
424 return 1;
425
426 /* Bitfields are never addressable. */
427 else if (TREE_CODE (t) == BIT_FIELD_REF)
428 return 0;
429
8ac61af7
RK
430 /* Fields are addressable unless they are marked as nonaddressable or
431 the containing type has alias set 0. */
6e24b709
RK
432 else if (TREE_CODE (t) == COMPONENT_REF
433 && ! DECL_NONADDRESSABLE_P (TREE_OPERAND (t, 1))
8ac61af7 434 && get_alias_set (TREE_TYPE (TREE_OPERAND (t, 0))) != 0
6e24b709
RK
435 && can_address_p (TREE_OPERAND (t, 0)))
436 return 1;
437
8ac61af7 438 /* Likewise for arrays. */
b4e3fabb 439 else if ((TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
6e24b709 440 && ! TYPE_NONALIASED_COMPONENT (TREE_TYPE (TREE_OPERAND (t, 0)))
8ac61af7 441 && get_alias_set (TREE_TYPE (TREE_OPERAND (t, 0))) != 0
6e24b709
RK
442 && can_address_p (TREE_OPERAND (t, 0)))
443 return 1;
444
445 return 0;
446}
447
3bdf5ad1
RK
448/* Return the alias set for T, which may be either a type or an
449 expression. Call language-specific routine for help, if needed. */
450
451HOST_WIDE_INT
452get_alias_set (t)
453 tree t;
454{
455 HOST_WIDE_INT set;
3bdf5ad1
RK
456
457 /* If we're not doing any alias analysis, just assume everything
458 aliases everything else. Also return 0 if this or its type is
459 an error. */
460 if (! flag_strict_aliasing || t == error_mark_node
461 || (! TYPE_P (t)
462 && (TREE_TYPE (t) == 0 || TREE_TYPE (t) == error_mark_node)))
463 return 0;
464
465 /* We can be passed either an expression or a type. This and the
f47e9b4e
RK
466 language-specific routine may make mutually-recursive calls to each other
467 to figure out what to do. At each juncture, we see if this is a tree
468 that the language may need to handle specially. First handle things that
738cc472 469 aren't types. */
f824e5c3 470 if (! TYPE_P (t))
3bdf5ad1 471 {
738cc472
RK
472 tree inner = t;
473 tree placeholder_ptr = 0;
474
8ac61af7
RK
475 /* Remove any nops, then give the language a chance to do
476 something with this tree before we look at it. */
477 STRIP_NOPS (t);
478 set = (*lang_hooks.get_alias_set) (t);
479 if (set != -1)
480 return set;
481
738cc472 482 /* First see if the actual object referenced is an INDIRECT_REF from a
8ac61af7 483 restrict-qualified pointer or a "void *". Replace
738cc472 484 PLACEHOLDER_EXPRs. */
8ac61af7 485 while (TREE_CODE (inner) == PLACEHOLDER_EXPR
738cc472
RK
486 || handled_component_p (inner))
487 {
488 if (TREE_CODE (inner) == PLACEHOLDER_EXPR)
489 inner = find_placeholder (inner, &placeholder_ptr);
490 else
491 inner = TREE_OPERAND (inner, 0);
8ac61af7
RK
492
493 STRIP_NOPS (inner);
738cc472
RK
494 }
495
496 /* Check for accesses through restrict-qualified pointers. */
497 if (TREE_CODE (inner) == INDIRECT_REF)
498 {
499 tree decl = find_base_decl (TREE_OPERAND (inner, 0));
500
501 if (decl && DECL_POINTER_ALIAS_SET_KNOWN_P (decl))
502 {
e5837c07 503 /* If we haven't computed the actual alias set, do it now. */
738cc472
RK
504 if (DECL_POINTER_ALIAS_SET (decl) == -2)
505 {
506 /* No two restricted pointers can point at the same thing.
507 However, a restricted pointer can point at the same thing
508 as an unrestricted pointer, if that unrestricted pointer
509 is based on the restricted pointer. So, we make the
510 alias set for the restricted pointer a subset of the
511 alias set for the type pointed to by the type of the
512 decl. */
513 HOST_WIDE_INT pointed_to_alias_set
514 = get_alias_set (TREE_TYPE (TREE_TYPE (decl)));
515
516 if (pointed_to_alias_set == 0)
517 /* It's not legal to make a subset of alias set zero. */
518 ;
519 else
520 {
521 DECL_POINTER_ALIAS_SET (decl) = new_alias_set ();
ca7fd9cd
KH
522 record_alias_subset (pointed_to_alias_set,
523 DECL_POINTER_ALIAS_SET (decl));
738cc472
RK
524 }
525 }
526
527 /* We use the alias set indicated in the declaration. */
528 return DECL_POINTER_ALIAS_SET (decl);
529 }
530
531 /* If we have an INDIRECT_REF via a void pointer, we don't
532 know anything about what that might alias. */
533 else if (TREE_CODE (TREE_TYPE (inner)) == VOID_TYPE)
534 return 0;
535 }
536
537 /* Otherwise, pick up the outermost object that we could have a pointer
538 to, processing conversion and PLACEHOLDER_EXPR as above. */
539 placeholder_ptr = 0;
8ac61af7 540 while (TREE_CODE (t) == PLACEHOLDER_EXPR
f47e9b4e
RK
541 || (handled_component_p (t) && ! can_address_p (t)))
542 {
f47e9b4e 543 if (TREE_CODE (t) == PLACEHOLDER_EXPR)
738cc472 544 t = find_placeholder (t, &placeholder_ptr);
f47e9b4e
RK
545 else
546 t = TREE_OPERAND (t, 0);
f824e5c3 547
8ac61af7
RK
548 STRIP_NOPS (t);
549 }
f824e5c3 550
738cc472
RK
551 /* If we've already determined the alias set for a decl, just return
552 it. This is necessary for C++ anonymous unions, whose component
553 variables don't look like union members (boo!). */
5755cd38
JM
554 if (TREE_CODE (t) == VAR_DECL
555 && DECL_RTL_SET_P (t) && GET_CODE (DECL_RTL (t)) == MEM)
556 return MEM_ALIAS_SET (DECL_RTL (t));
557
f824e5c3
RK
558 /* Now all we care about is the type. */
559 t = TREE_TYPE (t);
3bdf5ad1
RK
560 }
561
3bdf5ad1
RK
562 /* Variant qualifiers don't affect the alias set, so get the main
563 variant. If this is a type with a known alias set, return it. */
564 t = TYPE_MAIN_VARIANT (t);
738cc472 565 if (TYPE_ALIAS_SET_KNOWN_P (t))
3bdf5ad1
RK
566 return TYPE_ALIAS_SET (t);
567
568 /* See if the language has special handling for this type. */
8ac61af7
RK
569 set = (*lang_hooks.get_alias_set) (t);
570 if (set != -1)
738cc472 571 return set;
2bf105ab 572
3bdf5ad1
RK
573 /* There are no objects of FUNCTION_TYPE, so there's no point in
574 using up an alias set for them. (There are, of course, pointers
575 and references to functions, but that's different.) */
576 else if (TREE_CODE (t) == FUNCTION_TYPE)
577 set = 0;
74d86f4f
RH
578
579 /* Unless the language specifies otherwise, let vector types alias
580 their components. This avoids some nasty type punning issues in
581 normal usage. And indeed lets vectors be treated more like an
582 array slice. */
583 else if (TREE_CODE (t) == VECTOR_TYPE)
584 set = get_alias_set (TREE_TYPE (t));
585
3bdf5ad1
RK
586 else
587 /* Otherwise make a new alias set for this type. */
588 set = new_alias_set ();
589
590 TYPE_ALIAS_SET (t) = set;
2bf105ab
RK
591
592 /* If this is an aggregate type, we must record any component aliasing
593 information. */
1d79fd2c 594 if (AGGREGATE_TYPE_P (t) || TREE_CODE (t) == COMPLEX_TYPE)
2bf105ab
RK
595 record_component_aliases (t);
596
3bdf5ad1
RK
597 return set;
598}
599
600/* Return a brand-new alias set. */
601
602HOST_WIDE_INT
603new_alias_set ()
604{
605 static HOST_WIDE_INT last_alias_set;
606
607 if (flag_strict_aliasing)
608 return ++last_alias_set;
609 else
610 return 0;
611}
3932261a
MM
612
613/* Indicate that things in SUBSET can alias things in SUPERSET, but
614 not vice versa. For example, in C, a store to an `int' can alias a
615 structure containing an `int', but not vice versa. Here, the
616 structure would be the SUPERSET and `int' the SUBSET. This
ca7fd9cd 617 function should be called only once per SUPERSET/SUBSET pair.
3932261a
MM
618
619 It is illegal for SUPERSET to be zero; everything is implicitly a
620 subset of alias set zero. */
621
622void
623record_alias_subset (superset, subset)
3bdf5ad1
RK
624 HOST_WIDE_INT superset;
625 HOST_WIDE_INT subset;
3932261a
MM
626{
627 alias_set_entry superset_entry;
628 alias_set_entry subset_entry;
629
f47e9b4e
RK
630 /* It is possible in complex type situations for both sets to be the same,
631 in which case we can ignore this operation. */
632 if (superset == subset)
633 return;
634
3932261a
MM
635 if (superset == 0)
636 abort ();
637
638 superset_entry = get_alias_set_entry (superset);
ca7fd9cd 639 if (superset_entry == 0)
3932261a
MM
640 {
641 /* Create an entry for the SUPERSET, so that we have a place to
642 attach the SUBSET. */
d4b60170
RK
643 superset_entry
644 = (alias_set_entry) xmalloc (sizeof (struct alias_set_entry));
3932261a 645 superset_entry->alias_set = superset;
ca7fd9cd 646 superset_entry->children
30f72379 647 = splay_tree_new (splay_tree_compare_ints, 0, 0);
570eb5c8 648 superset_entry->has_zero_child = 0;
d4b60170 649 splay_tree_insert (alias_sets, (splay_tree_key) superset,
3932261a 650 (splay_tree_value) superset_entry);
3932261a
MM
651 }
652
2bf105ab
RK
653 if (subset == 0)
654 superset_entry->has_zero_child = 1;
655 else
656 {
657 subset_entry = get_alias_set_entry (subset);
658 /* If there is an entry for the subset, enter all of its children
659 (if they are not already present) as children of the SUPERSET. */
ca7fd9cd 660 if (subset_entry)
2bf105ab
RK
661 {
662 if (subset_entry->has_zero_child)
663 superset_entry->has_zero_child = 1;
d4b60170 664
2bf105ab
RK
665 splay_tree_foreach (subset_entry->children, insert_subset_children,
666 superset_entry->children);
667 }
3932261a 668
2bf105ab 669 /* Enter the SUBSET itself as a child of the SUPERSET. */
ca7fd9cd 670 splay_tree_insert (superset_entry->children,
2bf105ab
RK
671 (splay_tree_key) subset, 0);
672 }
3932261a
MM
673}
674
a0c33338
RK
675/* Record that component types of TYPE, if any, are part of that type for
676 aliasing purposes. For record types, we only record component types
677 for fields that are marked addressable. For array types, we always
678 record the component types, so the front end should not call this
679 function if the individual component aren't addressable. */
680
681void
682record_component_aliases (type)
683 tree type;
684{
3bdf5ad1 685 HOST_WIDE_INT superset = get_alias_set (type);
a0c33338
RK
686 tree field;
687
688 if (superset == 0)
689 return;
690
691 switch (TREE_CODE (type))
692 {
693 case ARRAY_TYPE:
2bf105ab
RK
694 if (! TYPE_NONALIASED_COMPONENT (type))
695 record_alias_subset (superset, get_alias_set (TREE_TYPE (type)));
a0c33338
RK
696 break;
697
698 case RECORD_TYPE:
699 case UNION_TYPE:
700 case QUAL_UNION_TYPE:
61eece67
DN
701 /* Recursively record aliases for the base classes, if there are any */
702 if (TYPE_BINFO (type) != NULL && TYPE_BINFO_BASETYPES (type) != NULL)
ca7fd9cd
KH
703 {
704 int i;
705 for (i = 0; i < TREE_VEC_LENGTH (TYPE_BINFO_BASETYPES (type)); i++)
706 {
707 tree binfo = TREE_VEC_ELT (TYPE_BINFO_BASETYPES (type), i);
708 record_alias_subset (superset,
61eece67 709 get_alias_set (BINFO_TYPE (binfo)));
ca7fd9cd
KH
710 }
711 }
a0c33338 712 for (field = TYPE_FIELDS (type); field != 0; field = TREE_CHAIN (field))
b16a49a1 713 if (TREE_CODE (field) == FIELD_DECL && ! DECL_NONADDRESSABLE_P (field))
2bf105ab 714 record_alias_subset (superset, get_alias_set (TREE_TYPE (field)));
a0c33338
RK
715 break;
716
1d79fd2c
JW
717 case COMPLEX_TYPE:
718 record_alias_subset (superset, get_alias_set (TREE_TYPE (type)));
719 break;
720
a0c33338
RK
721 default:
722 break;
723 }
724}
725
3bdf5ad1
RK
726/* Allocate an alias set for use in storing and reading from the varargs
727 spill area. */
728
729HOST_WIDE_INT
730get_varargs_alias_set ()
731{
732 static HOST_WIDE_INT set = -1;
733
734 if (set == -1)
735 set = new_alias_set ();
736
737 return set;
738}
739
740/* Likewise, but used for the fixed portions of the frame, e.g., register
741 save areas. */
742
743HOST_WIDE_INT
744get_frame_alias_set ()
745{
746 static HOST_WIDE_INT set = -1;
747
748 if (set == -1)
749 set = new_alias_set ();
750
751 return set;
752}
753
2a2c8203
JC
754/* Inside SRC, the source of a SET, find a base address. */
755
9ae8ffe7
JL
756static rtx
757find_base_value (src)
b3694847 758 rtx src;
9ae8ffe7 759{
713f41f9 760 unsigned int regno;
0aacc8ed 761
9ae8ffe7
JL
762 switch (GET_CODE (src))
763 {
764 case SYMBOL_REF:
765 case LABEL_REF:
766 return src;
767
768 case REG:
fb6754f0 769 regno = REGNO (src);
d4b60170 770 /* At the start of a function, argument registers have known base
2a2c8203
JC
771 values which may be lost later. Returning an ADDRESS
772 expression here allows optimization based on argument values
773 even when the argument registers are used for other purposes. */
713f41f9
BS
774 if (regno < FIRST_PSEUDO_REGISTER && copying_arguments)
775 return new_reg_base_value[regno];
73774bc7 776
eaf407a5 777 /* If a pseudo has a known base value, return it. Do not do this
9b462c42
RH
778 for non-fixed hard regs since it can result in a circular
779 dependency chain for registers which have values at function entry.
eaf407a5
JL
780
781 The test above is not sufficient because the scheduler may move
782 a copy out of an arg reg past the NOTE_INSN_FUNCTION_BEGIN. */
9b462c42 783 if ((regno >= FIRST_PSEUDO_REGISTER || fixed_regs[regno])
713f41f9
BS
784 && regno < reg_base_value_size
785 && reg_base_value[regno])
786 return reg_base_value[regno];
73774bc7 787
9ae8ffe7
JL
788 return src;
789
790 case MEM:
791 /* Check for an argument passed in memory. Only record in the
792 copying-arguments block; it is too hard to track changes
793 otherwise. */
794 if (copying_arguments
795 && (XEXP (src, 0) == arg_pointer_rtx
796 || (GET_CODE (XEXP (src, 0)) == PLUS
797 && XEXP (XEXP (src, 0), 0) == arg_pointer_rtx)))
38a448ca 798 return gen_rtx_ADDRESS (VOIDmode, src);
9ae8ffe7
JL
799 return 0;
800
801 case CONST:
802 src = XEXP (src, 0);
803 if (GET_CODE (src) != PLUS && GET_CODE (src) != MINUS)
804 break;
d4b60170 805
ec5c56db 806 /* ... fall through ... */
2a2c8203 807
9ae8ffe7
JL
808 case PLUS:
809 case MINUS:
2a2c8203 810 {
ec907dd8
JL
811 rtx temp, src_0 = XEXP (src, 0), src_1 = XEXP (src, 1);
812
0134bf2d
DE
813 /* If either operand is a REG that is a known pointer, then it
814 is the base. */
815 if (REG_P (src_0) && REG_POINTER (src_0))
816 return find_base_value (src_0);
817 if (REG_P (src_1) && REG_POINTER (src_1))
818 return find_base_value (src_1);
819
ec907dd8
JL
820 /* If either operand is a REG, then see if we already have
821 a known value for it. */
0134bf2d 822 if (REG_P (src_0))
ec907dd8
JL
823 {
824 temp = find_base_value (src_0);
d4b60170 825 if (temp != 0)
ec907dd8
JL
826 src_0 = temp;
827 }
828
0134bf2d 829 if (REG_P (src_1))
ec907dd8
JL
830 {
831 temp = find_base_value (src_1);
d4b60170 832 if (temp!= 0)
ec907dd8
JL
833 src_1 = temp;
834 }
2a2c8203 835
0134bf2d
DE
836 /* If either base is named object or a special address
837 (like an argument or stack reference), then use it for the
838 base term. */
839 if (src_0 != 0
840 && (GET_CODE (src_0) == SYMBOL_REF
841 || GET_CODE (src_0) == LABEL_REF
842 || (GET_CODE (src_0) == ADDRESS
843 && GET_MODE (src_0) != VOIDmode)))
844 return src_0;
845
846 if (src_1 != 0
847 && (GET_CODE (src_1) == SYMBOL_REF
848 || GET_CODE (src_1) == LABEL_REF
849 || (GET_CODE (src_1) == ADDRESS
850 && GET_MODE (src_1) != VOIDmode)))
851 return src_1;
852
d4b60170 853 /* Guess which operand is the base address:
ec907dd8
JL
854 If either operand is a symbol, then it is the base. If
855 either operand is a CONST_INT, then the other is the base. */
d4b60170 856 if (GET_CODE (src_1) == CONST_INT || CONSTANT_P (src_0))
2a2c8203 857 return find_base_value (src_0);
d4b60170 858 else if (GET_CODE (src_0) == CONST_INT || CONSTANT_P (src_1))
ec907dd8
JL
859 return find_base_value (src_1);
860
9ae8ffe7 861 return 0;
2a2c8203
JC
862 }
863
864 case LO_SUM:
865 /* The standard form is (lo_sum reg sym) so look only at the
866 second operand. */
867 return find_base_value (XEXP (src, 1));
9ae8ffe7
JL
868
869 case AND:
870 /* If the second operand is constant set the base
ec5c56db 871 address to the first operand. */
2a2c8203
JC
872 if (GET_CODE (XEXP (src, 1)) == CONST_INT && INTVAL (XEXP (src, 1)) != 0)
873 return find_base_value (XEXP (src, 0));
9ae8ffe7
JL
874 return 0;
875
61f0131c
R
876 case TRUNCATE:
877 if (GET_MODE_SIZE (GET_MODE (src)) < GET_MODE_SIZE (Pmode))
878 break;
879 /* Fall through. */
9ae8ffe7 880 case HIGH:
d288e53d
DE
881 case PRE_INC:
882 case PRE_DEC:
883 case POST_INC:
884 case POST_DEC:
885 case PRE_MODIFY:
886 case POST_MODIFY:
2a2c8203 887 return find_base_value (XEXP (src, 0));
1d300e19 888
0aacc8ed
RK
889 case ZERO_EXTEND:
890 case SIGN_EXTEND: /* used for NT/Alpha pointers */
891 {
892 rtx temp = find_base_value (XEXP (src, 0));
893
894#ifdef POINTERS_EXTEND_UNSIGNED
895 if (temp != 0 && CONSTANT_P (temp) && GET_MODE (temp) != Pmode)
896 temp = convert_memory_address (Pmode, temp);
897#endif
898
899 return temp;
900 }
901
1d300e19
KG
902 default:
903 break;
9ae8ffe7
JL
904 }
905
906 return 0;
907}
908
909/* Called from init_alias_analysis indirectly through note_stores. */
910
d4b60170 911/* While scanning insns to find base values, reg_seen[N] is nonzero if
9ae8ffe7
JL
912 register N has been set in this function. */
913static char *reg_seen;
914
13309a5f
JC
915/* Addresses which are known not to alias anything else are identified
916 by a unique integer. */
ec907dd8
JL
917static int unique_id;
918
2a2c8203 919static void
84832317 920record_set (dest, set, data)
9ae8ffe7 921 rtx dest, set;
84832317 922 void *data ATTRIBUTE_UNUSED;
9ae8ffe7 923{
b3694847 924 unsigned regno;
9ae8ffe7
JL
925 rtx src;
926
927 if (GET_CODE (dest) != REG)
928 return;
929
fb6754f0 930 regno = REGNO (dest);
9ae8ffe7 931
ac606739
GS
932 if (regno >= reg_base_value_size)
933 abort ();
934
9ae8ffe7
JL
935 if (set)
936 {
937 /* A CLOBBER wipes out any old value but does not prevent a previously
938 unset register from acquiring a base address (i.e. reg_seen is not
939 set). */
940 if (GET_CODE (set) == CLOBBER)
941 {
ec907dd8 942 new_reg_base_value[regno] = 0;
9ae8ffe7
JL
943 return;
944 }
945 src = SET_SRC (set);
946 }
947 else
948 {
9ae8ffe7
JL
949 if (reg_seen[regno])
950 {
ec907dd8 951 new_reg_base_value[regno] = 0;
9ae8ffe7
JL
952 return;
953 }
954 reg_seen[regno] = 1;
38a448ca
RH
955 new_reg_base_value[regno] = gen_rtx_ADDRESS (Pmode,
956 GEN_INT (unique_id++));
9ae8ffe7
JL
957 return;
958 }
959
960 /* This is not the first set. If the new value is not related to the
961 old value, forget the base value. Note that the following code is
962 not detected:
963 extern int x, y; int *p = &x; p += (&y-&x);
964 ANSI C does not allow computing the difference of addresses
965 of distinct top level objects. */
ec907dd8 966 if (new_reg_base_value[regno])
9ae8ffe7
JL
967 switch (GET_CODE (src))
968 {
2a2c8203 969 case LO_SUM:
9ae8ffe7
JL
970 case MINUS:
971 if (XEXP (src, 0) != dest && XEXP (src, 1) != dest)
ec907dd8 972 new_reg_base_value[regno] = 0;
9ae8ffe7 973 break;
61f0131c
R
974 case PLUS:
975 /* If the value we add in the PLUS is also a valid base value,
976 this might be the actual base value, and the original value
977 an index. */
978 {
979 rtx other = NULL_RTX;
980
981 if (XEXP (src, 0) == dest)
982 other = XEXP (src, 1);
983 else if (XEXP (src, 1) == dest)
984 other = XEXP (src, 0);
985
986 if (! other || find_base_value (other))
987 new_reg_base_value[regno] = 0;
988 break;
989 }
9ae8ffe7
JL
990 case AND:
991 if (XEXP (src, 0) != dest || GET_CODE (XEXP (src, 1)) != CONST_INT)
ec907dd8 992 new_reg_base_value[regno] = 0;
9ae8ffe7 993 break;
9ae8ffe7 994 default:
ec907dd8 995 new_reg_base_value[regno] = 0;
9ae8ffe7
JL
996 break;
997 }
998 /* If this is the first set of a register, record the value. */
999 else if ((regno >= FIRST_PSEUDO_REGISTER || ! fixed_regs[regno])
ec907dd8
JL
1000 && ! reg_seen[regno] && new_reg_base_value[regno] == 0)
1001 new_reg_base_value[regno] = find_base_value (src);
9ae8ffe7
JL
1002
1003 reg_seen[regno] = 1;
1004}
1005
ac3d9668
RK
1006/* Called from loop optimization when a new pseudo-register is
1007 created. It indicates that REGNO is being set to VAL. f INVARIANT
1008 is true then this value also describes an invariant relationship
1009 which can be used to deduce that two registers with unknown values
1010 are different. */
d4b60170 1011
9ae8ffe7 1012void
de12be17 1013record_base_value (regno, val, invariant)
ac3d9668 1014 unsigned int regno;
9ae8ffe7 1015 rtx val;
de12be17 1016 int invariant;
9ae8ffe7 1017{
ac3d9668 1018 if (regno >= reg_base_value_size)
9ae8ffe7 1019 return;
de12be17 1020
de12be17
JC
1021 if (invariant && alias_invariant)
1022 alias_invariant[regno] = val;
1023
9ae8ffe7
JL
1024 if (GET_CODE (val) == REG)
1025 {
fb6754f0
BS
1026 if (REGNO (val) < reg_base_value_size)
1027 reg_base_value[regno] = reg_base_value[REGNO (val)];
d4b60170 1028
9ae8ffe7
JL
1029 return;
1030 }
d4b60170 1031
9ae8ffe7
JL
1032 reg_base_value[regno] = find_base_value (val);
1033}
1034
43fe47ca
JW
1035/* Clear alias info for a register. This is used if an RTL transformation
1036 changes the value of a register. This is used in flow by AUTO_INC_DEC
1037 optimizations. We don't need to clear reg_base_value, since flow only
1038 changes the offset. */
1039
1040void
5197bd50
RK
1041clear_reg_alias_info (reg)
1042 rtx reg;
43fe47ca 1043{
4e1a4144
JW
1044 unsigned int regno = REGNO (reg);
1045
1046 if (regno < reg_known_value_size && regno >= FIRST_PSEUDO_REGISTER)
1047 reg_known_value[regno] = reg;
43fe47ca
JW
1048}
1049
db048faf
MM
1050/* Returns a canonical version of X, from the point of view alias
1051 analysis. (For example, if X is a MEM whose address is a register,
1052 and the register has a known value (say a SYMBOL_REF), then a MEM
1053 whose address is the SYMBOL_REF is returned.) */
1054
1055rtx
9ae8ffe7
JL
1056canon_rtx (x)
1057 rtx x;
1058{
1059 /* Recursively look for equivalences. */
fb6754f0
BS
1060 if (GET_CODE (x) == REG && REGNO (x) >= FIRST_PSEUDO_REGISTER
1061 && REGNO (x) < reg_known_value_size)
1062 return reg_known_value[REGNO (x)] == x
1063 ? x : canon_rtx (reg_known_value[REGNO (x)]);
9ae8ffe7
JL
1064 else if (GET_CODE (x) == PLUS)
1065 {
1066 rtx x0 = canon_rtx (XEXP (x, 0));
1067 rtx x1 = canon_rtx (XEXP (x, 1));
1068
1069 if (x0 != XEXP (x, 0) || x1 != XEXP (x, 1))
1070 {
9ae8ffe7 1071 if (GET_CODE (x0) == CONST_INT)
ed8908e7 1072 return plus_constant (x1, INTVAL (x0));
9ae8ffe7 1073 else if (GET_CODE (x1) == CONST_INT)
ed8908e7 1074 return plus_constant (x0, INTVAL (x1));
38a448ca 1075 return gen_rtx_PLUS (GET_MODE (x), x0, x1);
9ae8ffe7
JL
1076 }
1077 }
d4b60170 1078
9ae8ffe7
JL
1079 /* This gives us much better alias analysis when called from
1080 the loop optimizer. Note we want to leave the original
1081 MEM alone, but need to return the canonicalized MEM with
1082 all the flags with their original values. */
1083 else if (GET_CODE (x) == MEM)
f1ec5147 1084 x = replace_equiv_address_nv (x, canon_rtx (XEXP (x, 0)));
d4b60170 1085
9ae8ffe7
JL
1086 return x;
1087}
1088
1089/* Return 1 if X and Y are identical-looking rtx's.
1090
1091 We use the data in reg_known_value above to see if two registers with
1092 different numbers are, in fact, equivalent. */
1093
1094static int
1095rtx_equal_for_memref_p (x, y)
1096 rtx x, y;
1097{
b3694847
SS
1098 int i;
1099 int j;
1100 enum rtx_code code;
1101 const char *fmt;
9ae8ffe7
JL
1102
1103 if (x == 0 && y == 0)
1104 return 1;
1105 if (x == 0 || y == 0)
1106 return 0;
d4b60170 1107
9ae8ffe7
JL
1108 x = canon_rtx (x);
1109 y = canon_rtx (y);
1110
1111 if (x == y)
1112 return 1;
1113
1114 code = GET_CODE (x);
1115 /* Rtx's of different codes cannot be equal. */
1116 if (code != GET_CODE (y))
1117 return 0;
1118
1119 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.
1120 (REG:SI x) and (REG:HI x) are NOT equivalent. */
1121
1122 if (GET_MODE (x) != GET_MODE (y))
1123 return 0;
1124
db048faf
MM
1125 /* Some RTL can be compared without a recursive examination. */
1126 switch (code)
1127 {
ab59db3c
BS
1128 case VALUE:
1129 return CSELIB_VAL_PTR (x) == CSELIB_VAL_PTR (y);
1130
db048faf
MM
1131 case REG:
1132 return REGNO (x) == REGNO (y);
1133
1134 case LABEL_REF:
1135 return XEXP (x, 0) == XEXP (y, 0);
ca7fd9cd 1136
db048faf
MM
1137 case SYMBOL_REF:
1138 return XSTR (x, 0) == XSTR (y, 0);
1139
1140 case CONST_INT:
1141 case CONST_DOUBLE:
1142 /* There's no need to compare the contents of CONST_DOUBLEs or
1143 CONST_INTs because pointer equality is a good enough
1144 comparison for these nodes. */
1145 return 0;
1146
1147 case ADDRESSOF:
831ecbd4
RK
1148 return (XINT (x, 1) == XINT (y, 1)
1149 && rtx_equal_for_memref_p (XEXP (x, 0), XEXP (y, 0)));
db048faf
MM
1150
1151 default:
1152 break;
1153 }
9ae8ffe7
JL
1154
1155 /* For commutative operations, the RTX match if the operand match in any
1156 order. Also handle the simple binary and unary cases without a loop. */
1157 if (code == EQ || code == NE || GET_RTX_CLASS (code) == 'c')
1158 return ((rtx_equal_for_memref_p (XEXP (x, 0), XEXP (y, 0))
1159 && rtx_equal_for_memref_p (XEXP (x, 1), XEXP (y, 1)))
1160 || (rtx_equal_for_memref_p (XEXP (x, 0), XEXP (y, 1))
1161 && rtx_equal_for_memref_p (XEXP (x, 1), XEXP (y, 0))));
1162 else if (GET_RTX_CLASS (code) == '<' || GET_RTX_CLASS (code) == '2')
1163 return (rtx_equal_for_memref_p (XEXP (x, 0), XEXP (y, 0))
1164 && rtx_equal_for_memref_p (XEXP (x, 1), XEXP (y, 1)));
1165 else if (GET_RTX_CLASS (code) == '1')
1166 return rtx_equal_for_memref_p (XEXP (x, 0), XEXP (y, 0));
1167
1168 /* Compare the elements. If any pair of corresponding elements
de12be17
JC
1169 fail to match, return 0 for the whole things.
1170
1171 Limit cases to types which actually appear in addresses. */
9ae8ffe7
JL
1172
1173 fmt = GET_RTX_FORMAT (code);
1174 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1175 {
1176 switch (fmt[i])
1177 {
9ae8ffe7
JL
1178 case 'i':
1179 if (XINT (x, i) != XINT (y, i))
1180 return 0;
1181 break;
1182
9ae8ffe7
JL
1183 case 'E':
1184 /* Two vectors must have the same length. */
1185 if (XVECLEN (x, i) != XVECLEN (y, i))
1186 return 0;
1187
1188 /* And the corresponding elements must match. */
1189 for (j = 0; j < XVECLEN (x, i); j++)
d4b60170
RK
1190 if (rtx_equal_for_memref_p (XVECEXP (x, i, j),
1191 XVECEXP (y, i, j)) == 0)
9ae8ffe7
JL
1192 return 0;
1193 break;
1194
1195 case 'e':
1196 if (rtx_equal_for_memref_p (XEXP (x, i), XEXP (y, i)) == 0)
1197 return 0;
1198 break;
1199
3237ac18
AH
1200 /* This can happen for asm operands. */
1201 case 's':
1202 if (strcmp (XSTR (x, i), XSTR (y, i)))
1203 return 0;
1204 break;
1205
aee21ba9
JL
1206 /* This can happen for an asm which clobbers memory. */
1207 case '0':
1208 break;
1209
9ae8ffe7
JL
1210 /* It is believed that rtx's at this level will never
1211 contain anything but integers and other rtx's,
1212 except for within LABEL_REFs and SYMBOL_REFs. */
1213 default:
1214 abort ();
1215 }
1216 }
1217 return 1;
1218}
1219
1220/* Given an rtx X, find a SYMBOL_REF or LABEL_REF within
1221 X and return it, or return 0 if none found. */
1222
1223static rtx
1224find_symbolic_term (x)
1225 rtx x;
1226{
b3694847
SS
1227 int i;
1228 enum rtx_code code;
1229 const char *fmt;
9ae8ffe7
JL
1230
1231 code = GET_CODE (x);
1232 if (code == SYMBOL_REF || code == LABEL_REF)
1233 return x;
1234 if (GET_RTX_CLASS (code) == 'o')
1235 return 0;
1236
1237 fmt = GET_RTX_FORMAT (code);
1238 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1239 {
1240 rtx t;
1241
1242 if (fmt[i] == 'e')
1243 {
1244 t = find_symbolic_term (XEXP (x, i));
1245 if (t != 0)
1246 return t;
1247 }
1248 else if (fmt[i] == 'E')
1249 break;
1250 }
1251 return 0;
1252}
1253
1254static rtx
1255find_base_term (x)
b3694847 1256 rtx x;
9ae8ffe7 1257{
eab5c70a
BS
1258 cselib_val *val;
1259 struct elt_loc_list *l;
1260
b949ea8b
JW
1261#if defined (FIND_BASE_TERM)
1262 /* Try machine-dependent ways to find the base term. */
1263 x = FIND_BASE_TERM (x);
1264#endif
1265
9ae8ffe7
JL
1266 switch (GET_CODE (x))
1267 {
1268 case REG:
1269 return REG_BASE_VALUE (x);
1270
d288e53d
DE
1271 case TRUNCATE:
1272 if (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (Pmode))
ca7fd9cd 1273 return 0;
d288e53d 1274 /* Fall through. */
9ae8ffe7 1275 case HIGH:
6d849a2a
JL
1276 case PRE_INC:
1277 case PRE_DEC:
1278 case POST_INC:
1279 case POST_DEC:
d288e53d
DE
1280 case PRE_MODIFY:
1281 case POST_MODIFY:
6d849a2a
JL
1282 return find_base_term (XEXP (x, 0));
1283
1abade85
RK
1284 case ZERO_EXTEND:
1285 case SIGN_EXTEND: /* Used for Alpha/NT pointers */
1286 {
1287 rtx temp = find_base_term (XEXP (x, 0));
1288
1289#ifdef POINTERS_EXTEND_UNSIGNED
1290 if (temp != 0 && CONSTANT_P (temp) && GET_MODE (temp) != Pmode)
1291 temp = convert_memory_address (Pmode, temp);
1292#endif
1293
1294 return temp;
1295 }
1296
eab5c70a
BS
1297 case VALUE:
1298 val = CSELIB_VAL_PTR (x);
1299 for (l = val->locs; l; l = l->next)
1300 if ((x = find_base_term (l->loc)) != 0)
1301 return x;
1302 return 0;
1303
9ae8ffe7
JL
1304 case CONST:
1305 x = XEXP (x, 0);
1306 if (GET_CODE (x) != PLUS && GET_CODE (x) != MINUS)
1307 return 0;
1308 /* fall through */
1309 case LO_SUM:
1310 case PLUS:
1311 case MINUS:
1312 {
3c567fae
JL
1313 rtx tmp1 = XEXP (x, 0);
1314 rtx tmp2 = XEXP (x, 1);
1315
f5143c46 1316 /* This is a little bit tricky since we have to determine which of
3c567fae
JL
1317 the two operands represents the real base address. Otherwise this
1318 routine may return the index register instead of the base register.
1319
1320 That may cause us to believe no aliasing was possible, when in
1321 fact aliasing is possible.
1322
1323 We use a few simple tests to guess the base register. Additional
1324 tests can certainly be added. For example, if one of the operands
1325 is a shift or multiply, then it must be the index register and the
1326 other operand is the base register. */
ca7fd9cd 1327
b949ea8b
JW
1328 if (tmp1 == pic_offset_table_rtx && CONSTANT_P (tmp2))
1329 return find_base_term (tmp2);
1330
3c567fae
JL
1331 /* If either operand is known to be a pointer, then use it
1332 to determine the base term. */
3502dc9c 1333 if (REG_P (tmp1) && REG_POINTER (tmp1))
3c567fae
JL
1334 return find_base_term (tmp1);
1335
3502dc9c 1336 if (REG_P (tmp2) && REG_POINTER (tmp2))
3c567fae
JL
1337 return find_base_term (tmp2);
1338
1339 /* Neither operand was known to be a pointer. Go ahead and find the
1340 base term for both operands. */
1341 tmp1 = find_base_term (tmp1);
1342 tmp2 = find_base_term (tmp2);
1343
1344 /* If either base term is named object or a special address
1345 (like an argument or stack reference), then use it for the
1346 base term. */
d4b60170 1347 if (tmp1 != 0
3c567fae
JL
1348 && (GET_CODE (tmp1) == SYMBOL_REF
1349 || GET_CODE (tmp1) == LABEL_REF
1350 || (GET_CODE (tmp1) == ADDRESS
1351 && GET_MODE (tmp1) != VOIDmode)))
1352 return tmp1;
1353
d4b60170 1354 if (tmp2 != 0
3c567fae
JL
1355 && (GET_CODE (tmp2) == SYMBOL_REF
1356 || GET_CODE (tmp2) == LABEL_REF
1357 || (GET_CODE (tmp2) == ADDRESS
1358 && GET_MODE (tmp2) != VOIDmode)))
1359 return tmp2;
1360
1361 /* We could not determine which of the two operands was the
1362 base register and which was the index. So we can determine
1363 nothing from the base alias check. */
1364 return 0;
9ae8ffe7
JL
1365 }
1366
1367 case AND:
d288e53d
DE
1368 if (GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) != 0)
1369 return find_base_term (XEXP (x, 0));
9ae8ffe7
JL
1370 return 0;
1371
1372 case SYMBOL_REF:
1373 case LABEL_REF:
1374 return x;
1375
d982e46e 1376 case ADDRESSOF:
bb07060a 1377 return REG_BASE_VALUE (frame_pointer_rtx);
d982e46e 1378
9ae8ffe7
JL
1379 default:
1380 return 0;
1381 }
1382}
1383
1384/* Return 0 if the addresses X and Y are known to point to different
1385 objects, 1 if they might be pointers to the same object. */
1386
1387static int
56ee9281 1388base_alias_check (x, y, x_mode, y_mode)
9ae8ffe7 1389 rtx x, y;
56ee9281 1390 enum machine_mode x_mode, y_mode;
9ae8ffe7
JL
1391{
1392 rtx x_base = find_base_term (x);
1393 rtx y_base = find_base_term (y);
1394
1c72c7f6
JC
1395 /* If the address itself has no known base see if a known equivalent
1396 value has one. If either address still has no known base, nothing
1397 is known about aliasing. */
1398 if (x_base == 0)
1399 {
1400 rtx x_c;
d4b60170 1401
1c72c7f6
JC
1402 if (! flag_expensive_optimizations || (x_c = canon_rtx (x)) == x)
1403 return 1;
d4b60170 1404
1c72c7f6
JC
1405 x_base = find_base_term (x_c);
1406 if (x_base == 0)
1407 return 1;
1408 }
9ae8ffe7 1409
1c72c7f6
JC
1410 if (y_base == 0)
1411 {
1412 rtx y_c;
1413 if (! flag_expensive_optimizations || (y_c = canon_rtx (y)) == y)
1414 return 1;
d4b60170 1415
1c72c7f6
JC
1416 y_base = find_base_term (y_c);
1417 if (y_base == 0)
1418 return 1;
1419 }
1420
1421 /* If the base addresses are equal nothing is known about aliasing. */
1422 if (rtx_equal_p (x_base, y_base))
9ae8ffe7
JL
1423 return 1;
1424
ca7fd9cd 1425 /* The base addresses of the read and write are different expressions.
56ee9281
RH
1426 If they are both symbols and they are not accessed via AND, there is
1427 no conflict. We can bring knowledge of object alignment into play
1428 here. For example, on alpha, "char a, b;" can alias one another,
1429 though "char a; long b;" cannot. */
9ae8ffe7 1430 if (GET_CODE (x_base) != ADDRESS && GET_CODE (y_base) != ADDRESS)
c02f035f 1431 {
56ee9281
RH
1432 if (GET_CODE (x) == AND && GET_CODE (y) == AND)
1433 return 1;
1434 if (GET_CODE (x) == AND
1435 && (GET_CODE (XEXP (x, 1)) != CONST_INT
8fa2140d 1436 || (int) GET_MODE_UNIT_SIZE (y_mode) < -INTVAL (XEXP (x, 1))))
56ee9281
RH
1437 return 1;
1438 if (GET_CODE (y) == AND
1439 && (GET_CODE (XEXP (y, 1)) != CONST_INT
8fa2140d 1440 || (int) GET_MODE_UNIT_SIZE (x_mode) < -INTVAL (XEXP (y, 1))))
56ee9281 1441 return 1;
b2972551
JL
1442 /* Differing symbols never alias. */
1443 return 0;
c02f035f 1444 }
9ae8ffe7
JL
1445
1446 /* If one address is a stack reference there can be no alias:
1447 stack references using different base registers do not alias,
1448 a stack reference can not alias a parameter, and a stack reference
1449 can not alias a global. */
1450 if ((GET_CODE (x_base) == ADDRESS && GET_MODE (x_base) == Pmode)
1451 || (GET_CODE (y_base) == ADDRESS && GET_MODE (y_base) == Pmode))
1452 return 0;
1453
1454 if (! flag_argument_noalias)
1455 return 1;
1456
1457 if (flag_argument_noalias > 1)
1458 return 0;
1459
ec5c56db 1460 /* Weak noalias assertion (arguments are distinct, but may match globals). */
9ae8ffe7
JL
1461 return ! (GET_MODE (x_base) == VOIDmode && GET_MODE (y_base) == VOIDmode);
1462}
1463
eab5c70a
BS
1464/* Convert the address X into something we can use. This is done by returning
1465 it unchanged unless it is a value; in the latter case we call cselib to get
1466 a more useful rtx. */
3bdf5ad1 1467
a13d4ebf 1468rtx
eab5c70a
BS
1469get_addr (x)
1470 rtx x;
1471{
1472 cselib_val *v;
1473 struct elt_loc_list *l;
1474
1475 if (GET_CODE (x) != VALUE)
1476 return x;
1477 v = CSELIB_VAL_PTR (x);
1478 for (l = v->locs; l; l = l->next)
1479 if (CONSTANT_P (l->loc))
1480 return l->loc;
1481 for (l = v->locs; l; l = l->next)
1482 if (GET_CODE (l->loc) != REG && GET_CODE (l->loc) != MEM)
1483 return l->loc;
1484 if (v->locs)
1485 return v->locs->loc;
1486 return x;
1487}
1488
39cec1ac
MH
1489/* Return the address of the (N_REFS + 1)th memory reference to ADDR
1490 where SIZE is the size in bytes of the memory reference. If ADDR
1491 is not modified by the memory reference then ADDR is returned. */
1492
1493rtx
1494addr_side_effect_eval (addr, size, n_refs)
1495 rtx addr;
1496 int size;
1497 int n_refs;
1498{
1499 int offset = 0;
ca7fd9cd 1500
39cec1ac
MH
1501 switch (GET_CODE (addr))
1502 {
1503 case PRE_INC:
1504 offset = (n_refs + 1) * size;
1505 break;
1506 case PRE_DEC:
1507 offset = -(n_refs + 1) * size;
1508 break;
1509 case POST_INC:
1510 offset = n_refs * size;
1511 break;
1512 case POST_DEC:
1513 offset = -n_refs * size;
1514 break;
1515
1516 default:
1517 return addr;
1518 }
ca7fd9cd 1519
39cec1ac
MH
1520 if (offset)
1521 addr = gen_rtx_PLUS (GET_MODE (addr), XEXP (addr, 0), GEN_INT (offset));
1522 else
1523 addr = XEXP (addr, 0);
1524
1525 return addr;
1526}
1527
9ae8ffe7
JL
1528/* Return nonzero if X and Y (memory addresses) could reference the
1529 same location in memory. C is an offset accumulator. When
1530 C is nonzero, we are testing aliases between X and Y + C.
1531 XSIZE is the size in bytes of the X reference,
1532 similarly YSIZE is the size in bytes for Y.
1533
1534 If XSIZE or YSIZE is zero, we do not know the amount of memory being
1535 referenced (the reference was BLKmode), so make the most pessimistic
1536 assumptions.
1537
c02f035f
RH
1538 If XSIZE or YSIZE is negative, we may access memory outside the object
1539 being referenced as a side effect. This can happen when using AND to
1540 align memory references, as is done on the Alpha.
1541
9ae8ffe7 1542 Nice to notice that varying addresses cannot conflict with fp if no
0211b6ab 1543 local variables had their addresses taken, but that's too hard now. */
9ae8ffe7 1544
9ae8ffe7
JL
1545static int
1546memrefs_conflict_p (xsize, x, ysize, y, c)
b3694847 1547 rtx x, y;
9ae8ffe7
JL
1548 int xsize, ysize;
1549 HOST_WIDE_INT c;
1550{
eab5c70a
BS
1551 if (GET_CODE (x) == VALUE)
1552 x = get_addr (x);
1553 if (GET_CODE (y) == VALUE)
1554 y = get_addr (y);
9ae8ffe7
JL
1555 if (GET_CODE (x) == HIGH)
1556 x = XEXP (x, 0);
1557 else if (GET_CODE (x) == LO_SUM)
1558 x = XEXP (x, 1);
1559 else
39cec1ac 1560 x = canon_rtx (addr_side_effect_eval (x, xsize, 0));
9ae8ffe7
JL
1561 if (GET_CODE (y) == HIGH)
1562 y = XEXP (y, 0);
1563 else if (GET_CODE (y) == LO_SUM)
1564 y = XEXP (y, 1);
1565 else
39cec1ac 1566 y = canon_rtx (addr_side_effect_eval (y, ysize, 0));
9ae8ffe7
JL
1567
1568 if (rtx_equal_for_memref_p (x, y))
1569 {
c02f035f 1570 if (xsize <= 0 || ysize <= 0)
9ae8ffe7
JL
1571 return 1;
1572 if (c >= 0 && xsize > c)
1573 return 1;
1574 if (c < 0 && ysize+c > 0)
1575 return 1;
1576 return 0;
1577 }
1578
6e73e666
JC
1579 /* This code used to check for conflicts involving stack references and
1580 globals but the base address alias code now handles these cases. */
9ae8ffe7
JL
1581
1582 if (GET_CODE (x) == PLUS)
1583 {
1584 /* The fact that X is canonicalized means that this
1585 PLUS rtx is canonicalized. */
1586 rtx x0 = XEXP (x, 0);
1587 rtx x1 = XEXP (x, 1);
1588
1589 if (GET_CODE (y) == PLUS)
1590 {
1591 /* The fact that Y is canonicalized means that this
1592 PLUS rtx is canonicalized. */
1593 rtx y0 = XEXP (y, 0);
1594 rtx y1 = XEXP (y, 1);
1595
1596 if (rtx_equal_for_memref_p (x1, y1))
1597 return memrefs_conflict_p (xsize, x0, ysize, y0, c);
1598 if (rtx_equal_for_memref_p (x0, y0))
1599 return memrefs_conflict_p (xsize, x1, ysize, y1, c);
1600 if (GET_CODE (x1) == CONST_INT)
63be02db
JM
1601 {
1602 if (GET_CODE (y1) == CONST_INT)
1603 return memrefs_conflict_p (xsize, x0, ysize, y0,
1604 c - INTVAL (x1) + INTVAL (y1));
1605 else
1606 return memrefs_conflict_p (xsize, x0, ysize, y,
1607 c - INTVAL (x1));
1608 }
9ae8ffe7
JL
1609 else if (GET_CODE (y1) == CONST_INT)
1610 return memrefs_conflict_p (xsize, x, ysize, y0, c + INTVAL (y1));
1611
6e73e666 1612 return 1;
9ae8ffe7
JL
1613 }
1614 else if (GET_CODE (x1) == CONST_INT)
1615 return memrefs_conflict_p (xsize, x0, ysize, y, c - INTVAL (x1));
1616 }
1617 else if (GET_CODE (y) == PLUS)
1618 {
1619 /* The fact that Y is canonicalized means that this
1620 PLUS rtx is canonicalized. */
1621 rtx y0 = XEXP (y, 0);
1622 rtx y1 = XEXP (y, 1);
1623
1624 if (GET_CODE (y1) == CONST_INT)
1625 return memrefs_conflict_p (xsize, x, ysize, y0, c + INTVAL (y1));
1626 else
1627 return 1;
1628 }
1629
1630 if (GET_CODE (x) == GET_CODE (y))
1631 switch (GET_CODE (x))
1632 {
1633 case MULT:
1634 {
1635 /* Handle cases where we expect the second operands to be the
1636 same, and check only whether the first operand would conflict
1637 or not. */
1638 rtx x0, y0;
1639 rtx x1 = canon_rtx (XEXP (x, 1));
1640 rtx y1 = canon_rtx (XEXP (y, 1));
1641 if (! rtx_equal_for_memref_p (x1, y1))
1642 return 1;
1643 x0 = canon_rtx (XEXP (x, 0));
1644 y0 = canon_rtx (XEXP (y, 0));
1645 if (rtx_equal_for_memref_p (x0, y0))
1646 return (xsize == 0 || ysize == 0
1647 || (c >= 0 && xsize > c) || (c < 0 && ysize+c > 0));
1648
1649 /* Can't properly adjust our sizes. */
1650 if (GET_CODE (x1) != CONST_INT)
1651 return 1;
1652 xsize /= INTVAL (x1);
1653 ysize /= INTVAL (x1);
1654 c /= INTVAL (x1);
1655 return memrefs_conflict_p (xsize, x0, ysize, y0, c);
1656 }
1d300e19 1657
de12be17
JC
1658 case REG:
1659 /* Are these registers known not to be equal? */
1660 if (alias_invariant)
1661 {
e51712db 1662 unsigned int r_x = REGNO (x), r_y = REGNO (y);
de12be17
JC
1663 rtx i_x, i_y; /* invariant relationships of X and Y */
1664
1665 i_x = r_x >= reg_base_value_size ? 0 : alias_invariant[r_x];
1666 i_y = r_y >= reg_base_value_size ? 0 : alias_invariant[r_y];
1667
1668 if (i_x == 0 && i_y == 0)
1669 break;
1670
1671 if (! memrefs_conflict_p (xsize, i_x ? i_x : x,
1672 ysize, i_y ? i_y : y, c))
1673 return 0;
1674 }
1675 break;
1676
1d300e19
KG
1677 default:
1678 break;
9ae8ffe7
JL
1679 }
1680
1681 /* Treat an access through an AND (e.g. a subword access on an Alpha)
ca7fd9cd 1682 as an access with indeterminate size. Assume that references
56ee9281
RH
1683 besides AND are aligned, so if the size of the other reference is
1684 at least as large as the alignment, assume no other overlap. */
9ae8ffe7 1685 if (GET_CODE (x) == AND && GET_CODE (XEXP (x, 1)) == CONST_INT)
56ee9281 1686 {
02e3377d 1687 if (GET_CODE (y) == AND || ysize < -INTVAL (XEXP (x, 1)))
56ee9281
RH
1688 xsize = -1;
1689 return memrefs_conflict_p (xsize, XEXP (x, 0), ysize, y, c);
1690 }
9ae8ffe7 1691 if (GET_CODE (y) == AND && GET_CODE (XEXP (y, 1)) == CONST_INT)
c02f035f 1692 {
56ee9281 1693 /* ??? If we are indexing far enough into the array/structure, we
ca7fd9cd 1694 may yet be able to determine that we can not overlap. But we
c02f035f 1695 also need to that we are far enough from the end not to overlap
56ee9281 1696 a following reference, so we do nothing with that for now. */
02e3377d 1697 if (GET_CODE (x) == AND || xsize < -INTVAL (XEXP (y, 1)))
56ee9281
RH
1698 ysize = -1;
1699 return memrefs_conflict_p (xsize, x, ysize, XEXP (y, 0), c);
c02f035f 1700 }
9ae8ffe7 1701
b24ea077
JW
1702 if (GET_CODE (x) == ADDRESSOF)
1703 {
1704 if (y == frame_pointer_rtx
1705 || GET_CODE (y) == ADDRESSOF)
1706 return xsize <= 0 || ysize <= 0;
1707 }
1708 if (GET_CODE (y) == ADDRESSOF)
1709 {
1710 if (x == frame_pointer_rtx)
1711 return xsize <= 0 || ysize <= 0;
1712 }
d982e46e 1713
9ae8ffe7
JL
1714 if (CONSTANT_P (x))
1715 {
1716 if (GET_CODE (x) == CONST_INT && GET_CODE (y) == CONST_INT)
1717 {
1718 c += (INTVAL (y) - INTVAL (x));
c02f035f 1719 return (xsize <= 0 || ysize <= 0
9ae8ffe7
JL
1720 || (c >= 0 && xsize > c) || (c < 0 && ysize+c > 0));
1721 }
1722
1723 if (GET_CODE (x) == CONST)
1724 {
1725 if (GET_CODE (y) == CONST)
1726 return memrefs_conflict_p (xsize, canon_rtx (XEXP (x, 0)),
1727 ysize, canon_rtx (XEXP (y, 0)), c);
1728 else
1729 return memrefs_conflict_p (xsize, canon_rtx (XEXP (x, 0)),
1730 ysize, y, c);
1731 }
1732 if (GET_CODE (y) == CONST)
1733 return memrefs_conflict_p (xsize, x, ysize,
1734 canon_rtx (XEXP (y, 0)), c);
1735
1736 if (CONSTANT_P (y))
b949ea8b 1737 return (xsize <= 0 || ysize <= 0
c02f035f 1738 || (rtx_equal_for_memref_p (x, y)
b949ea8b 1739 && ((c >= 0 && xsize > c) || (c < 0 && ysize+c > 0))));
9ae8ffe7
JL
1740
1741 return 1;
1742 }
1743 return 1;
1744}
1745
1746/* Functions to compute memory dependencies.
1747
1748 Since we process the insns in execution order, we can build tables
1749 to keep track of what registers are fixed (and not aliased), what registers
1750 are varying in known ways, and what registers are varying in unknown
1751 ways.
1752
1753 If both memory references are volatile, then there must always be a
1754 dependence between the two references, since their order can not be
1755 changed. A volatile and non-volatile reference can be interchanged
ca7fd9cd 1756 though.
9ae8ffe7 1757
dc1618bc
RK
1758 A MEM_IN_STRUCT reference at a non-AND varying address can never
1759 conflict with a non-MEM_IN_STRUCT reference at a fixed address. We
1760 also must allow AND addresses, because they may generate accesses
1761 outside the object being referenced. This is used to generate
1762 aligned addresses from unaligned addresses, for instance, the alpha
1763 storeqi_unaligned pattern. */
9ae8ffe7
JL
1764
1765/* Read dependence: X is read after read in MEM takes place. There can
1766 only be a dependence here if both reads are volatile. */
1767
1768int
1769read_dependence (mem, x)
1770 rtx mem;
1771 rtx x;
1772{
1773 return MEM_VOLATILE_P (x) && MEM_VOLATILE_P (mem);
1774}
1775
c6df88cb
MM
1776/* Returns MEM1 if and only if MEM1 is a scalar at a fixed address and
1777 MEM2 is a reference to a structure at a varying address, or returns
1778 MEM2 if vice versa. Otherwise, returns NULL_RTX. If a non-NULL
1779 value is returned MEM1 and MEM2 can never alias. VARIES_P is used
1780 to decide whether or not an address may vary; it should return
eab5c70a
BS
1781 nonzero whenever variation is possible.
1782 MEM1_ADDR and MEM2_ADDR are the addresses of MEM1 and MEM2. */
ca7fd9cd 1783
2c72b78f 1784static rtx
eab5c70a
BS
1785fixed_scalar_and_varying_struct_p (mem1, mem2, mem1_addr, mem2_addr, varies_p)
1786 rtx mem1, mem2;
1787 rtx mem1_addr, mem2_addr;
e38fe8e0 1788 int (*varies_p) PARAMS ((rtx, int));
ca7fd9cd 1789{
3e0abe15
GK
1790 if (! flag_strict_aliasing)
1791 return NULL_RTX;
1792
ca7fd9cd 1793 if (MEM_SCALAR_P (mem1) && MEM_IN_STRUCT_P (mem2)
e38fe8e0 1794 && !varies_p (mem1_addr, 1) && varies_p (mem2_addr, 1))
c6df88cb
MM
1795 /* MEM1 is a scalar at a fixed address; MEM2 is a struct at a
1796 varying address. */
1797 return mem1;
1798
ca7fd9cd 1799 if (MEM_IN_STRUCT_P (mem1) && MEM_SCALAR_P (mem2)
e38fe8e0 1800 && varies_p (mem1_addr, 1) && !varies_p (mem2_addr, 1))
c6df88cb
MM
1801 /* MEM2 is a scalar at a fixed address; MEM1 is a struct at a
1802 varying address. */
1803 return mem2;
1804
1805 return NULL_RTX;
1806}
1807
1808/* Returns nonzero if something about the mode or address format MEM1
1809 indicates that it might well alias *anything*. */
1810
2c72b78f 1811static int
c6df88cb
MM
1812aliases_everything_p (mem)
1813 rtx mem;
1814{
c6df88cb
MM
1815 if (GET_CODE (XEXP (mem, 0)) == AND)
1816 /* If the address is an AND, its very hard to know at what it is
1817 actually pointing. */
1818 return 1;
ca7fd9cd 1819
c6df88cb
MM
1820 return 0;
1821}
1822
998d7deb
RH
1823/* Return true if we can determine that the fields referenced cannot
1824 overlap for any pair of objects. */
1825
1826static bool
1827nonoverlapping_component_refs_p (x, y)
1828 tree x, y;
1829{
1830 tree fieldx, fieldy, typex, typey, orig_y;
1831
1832 do
1833 {
1834 /* The comparison has to be done at a common type, since we don't
d6a7951f 1835 know how the inheritance hierarchy works. */
998d7deb
RH
1836 orig_y = y;
1837 do
1838 {
1839 fieldx = TREE_OPERAND (x, 1);
1840 typex = DECL_FIELD_CONTEXT (fieldx);
1841
1842 y = orig_y;
1843 do
1844 {
1845 fieldy = TREE_OPERAND (y, 1);
1846 typey = DECL_FIELD_CONTEXT (fieldy);
1847
1848 if (typex == typey)
1849 goto found;
1850
1851 y = TREE_OPERAND (y, 0);
1852 }
1853 while (y && TREE_CODE (y) == COMPONENT_REF);
1854
1855 x = TREE_OPERAND (x, 0);
1856 }
1857 while (x && TREE_CODE (x) == COMPONENT_REF);
1858
1859 /* Never found a common type. */
1860 return false;
1861
1862 found:
1863 /* If we're left with accessing different fields of a structure,
1864 then no overlap. */
1865 if (TREE_CODE (typex) == RECORD_TYPE
1866 && fieldx != fieldy)
1867 return true;
1868
1869 /* The comparison on the current field failed. If we're accessing
1870 a very nested structure, look at the next outer level. */
1871 x = TREE_OPERAND (x, 0);
1872 y = TREE_OPERAND (y, 0);
1873 }
1874 while (x && y
1875 && TREE_CODE (x) == COMPONENT_REF
1876 && TREE_CODE (y) == COMPONENT_REF);
ca7fd9cd 1877
998d7deb
RH
1878 return false;
1879}
1880
1881/* Look at the bottom of the COMPONENT_REF list for a DECL, and return it. */
1882
1883static tree
1884decl_for_component_ref (x)
1885 tree x;
1886{
1887 do
1888 {
1889 x = TREE_OPERAND (x, 0);
1890 }
1891 while (x && TREE_CODE (x) == COMPONENT_REF);
1892
1893 return x && DECL_P (x) ? x : NULL_TREE;
1894}
1895
1896/* Walk up the COMPONENT_REF list and adjust OFFSET to compensate for the
1897 offset of the field reference. */
1898
1899static rtx
1900adjust_offset_for_component_ref (x, offset)
1901 tree x;
1902 rtx offset;
1903{
1904 HOST_WIDE_INT ioffset;
1905
1906 if (! offset)
1907 return NULL_RTX;
1908
1909 ioffset = INTVAL (offset);
ca7fd9cd 1910 do
998d7deb
RH
1911 {
1912 tree field = TREE_OPERAND (x, 1);
1913
1914 if (! host_integerp (DECL_FIELD_OFFSET (field), 1))
1915 return NULL_RTX;
1916 ioffset += (tree_low_cst (DECL_FIELD_OFFSET (field), 1)
1917 + (tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 1)
1918 / BITS_PER_UNIT));
1919
1920 x = TREE_OPERAND (x, 0);
1921 }
1922 while (x && TREE_CODE (x) == COMPONENT_REF);
1923
1924 return GEN_INT (ioffset);
1925}
1926
1927/* Return nonzero if we can deterimine the exprs corresponding to memrefs
a4311dfe
RK
1928 X and Y and they do not overlap. */
1929
1930static int
1931nonoverlapping_memrefs_p (x, y)
1932 rtx x, y;
1933{
998d7deb 1934 tree exprx = MEM_EXPR (x), expry = MEM_EXPR (y);
a4311dfe
RK
1935 rtx rtlx, rtly;
1936 rtx basex, basey;
998d7deb 1937 rtx moffsetx, moffsety;
a4311dfe
RK
1938 HOST_WIDE_INT offsetx = 0, offsety = 0, sizex, sizey, tem;
1939
998d7deb
RH
1940 /* Unless both have exprs, we can't tell anything. */
1941 if (exprx == 0 || expry == 0)
1942 return 0;
1943
1944 /* If both are field references, we may be able to determine something. */
1945 if (TREE_CODE (exprx) == COMPONENT_REF
1946 && TREE_CODE (expry) == COMPONENT_REF
1947 && nonoverlapping_component_refs_p (exprx, expry))
1948 return 1;
1949
1950 /* If the field reference test failed, look at the DECLs involved. */
1951 moffsetx = MEM_OFFSET (x);
1952 if (TREE_CODE (exprx) == COMPONENT_REF)
1953 {
1954 tree t = decl_for_component_ref (exprx);
1955 if (! t)
1956 return 0;
1957 moffsetx = adjust_offset_for_component_ref (exprx, moffsetx);
1958 exprx = t;
1959 }
1960 moffsety = MEM_OFFSET (y);
1961 if (TREE_CODE (expry) == COMPONENT_REF)
1962 {
1963 tree t = decl_for_component_ref (expry);
1964 if (! t)
1965 return 0;
1966 moffsety = adjust_offset_for_component_ref (expry, moffsety);
1967 expry = t;
1968 }
1969
1970 if (! DECL_P (exprx) || ! DECL_P (expry))
a4311dfe
RK
1971 return 0;
1972
998d7deb
RH
1973 rtlx = DECL_RTL (exprx);
1974 rtly = DECL_RTL (expry);
a4311dfe 1975
1edcd60b
RK
1976 /* If either RTL is not a MEM, it must be a REG or CONCAT, meaning they
1977 can't overlap unless they are the same because we never reuse that part
1978 of the stack frame used for locals for spilled pseudos. */
1979 if ((GET_CODE (rtlx) != MEM || GET_CODE (rtly) != MEM)
1980 && ! rtx_equal_p (rtlx, rtly))
a4311dfe
RK
1981 return 1;
1982
1983 /* Get the base and offsets of both decls. If either is a register, we
1984 know both are and are the same, so use that as the base. The only
1985 we can avoid overlap is if we can deduce that they are nonoverlapping
1986 pieces of that decl, which is very rare. */
1edcd60b 1987 basex = GET_CODE (rtlx) == MEM ? XEXP (rtlx, 0) : rtlx;
a4311dfe
RK
1988 if (GET_CODE (basex) == PLUS && GET_CODE (XEXP (basex, 1)) == CONST_INT)
1989 offsetx = INTVAL (XEXP (basex, 1)), basex = XEXP (basex, 0);
1990
1edcd60b 1991 basey = GET_CODE (rtly) == MEM ? XEXP (rtly, 0) : rtly;
a4311dfe
RK
1992 if (GET_CODE (basey) == PLUS && GET_CODE (XEXP (basey, 1)) == CONST_INT)
1993 offsety = INTVAL (XEXP (basey, 1)), basey = XEXP (basey, 0);
1994
d746694a 1995 /* If the bases are different, we know they do not overlap if both
ca7fd9cd 1996 are constants or if one is a constant and the other a pointer into the
d746694a
RK
1997 stack frame. Otherwise a different base means we can't tell if they
1998 overlap or not. */
1999 if (! rtx_equal_p (basex, basey))
ca7fd9cd
KH
2000 return ((CONSTANT_P (basex) && CONSTANT_P (basey))
2001 || (CONSTANT_P (basex) && REG_P (basey)
2002 && REGNO_PTR_FRAME_P (REGNO (basey)))
2003 || (CONSTANT_P (basey) && REG_P (basex)
2004 && REGNO_PTR_FRAME_P (REGNO (basex))));
a4311dfe 2005
998d7deb 2006 sizex = (GET_CODE (rtlx) != MEM ? (int) GET_MODE_SIZE (GET_MODE (rtlx))
a4311dfe
RK
2007 : MEM_SIZE (rtlx) ? INTVAL (MEM_SIZE (rtlx))
2008 : -1);
998d7deb 2009 sizey = (GET_CODE (rtly) != MEM ? (int) GET_MODE_SIZE (GET_MODE (rtly))
a4311dfe
RK
2010 : MEM_SIZE (rtly) ? INTVAL (MEM_SIZE (rtly)) :
2011 -1);
2012
0af5bc3e
RK
2013 /* If we have an offset for either memref, it can update the values computed
2014 above. */
998d7deb
RH
2015 if (moffsetx)
2016 offsetx += INTVAL (moffsetx), sizex -= INTVAL (moffsetx);
2017 if (moffsety)
2018 offsety += INTVAL (moffsety), sizey -= INTVAL (moffsety);
a4311dfe 2019
0af5bc3e 2020 /* If a memref has both a size and an offset, we can use the smaller size.
efc981bb 2021 We can't do this if the offset isn't known because we must view this
0af5bc3e 2022 memref as being anywhere inside the DECL's MEM. */
998d7deb 2023 if (MEM_SIZE (x) && moffsetx)
a4311dfe 2024 sizex = INTVAL (MEM_SIZE (x));
998d7deb 2025 if (MEM_SIZE (y) && moffsety)
a4311dfe
RK
2026 sizey = INTVAL (MEM_SIZE (y));
2027
2028 /* Put the values of the memref with the lower offset in X's values. */
2029 if (offsetx > offsety)
2030 {
2031 tem = offsetx, offsetx = offsety, offsety = tem;
2032 tem = sizex, sizex = sizey, sizey = tem;
2033 }
2034
2035 /* If we don't know the size of the lower-offset value, we can't tell
2036 if they conflict. Otherwise, we do the test. */
a6f7c915 2037 return sizex >= 0 && offsety >= offsetx + sizex;
a4311dfe
RK
2038}
2039
9ae8ffe7
JL
2040/* True dependence: X is read after store in MEM takes place. */
2041
2042int
2043true_dependence (mem, mem_mode, x, varies)
2044 rtx mem;
2045 enum machine_mode mem_mode;
2046 rtx x;
e38fe8e0 2047 int (*varies) PARAMS ((rtx, int));
9ae8ffe7 2048{
b3694847 2049 rtx x_addr, mem_addr;
49982682 2050 rtx base;
9ae8ffe7
JL
2051
2052 if (MEM_VOLATILE_P (x) && MEM_VOLATILE_P (mem))
2053 return 1;
2054
c4484b8f
RH
2055 /* (mem:BLK (scratch)) is a special mechanism to conflict with everything.
2056 This is used in epilogue deallocation functions. */
2057 if (GET_MODE (x) == BLKmode && GET_CODE (XEXP (x, 0)) == SCRATCH)
2058 return 1;
2059 if (GET_MODE (mem) == BLKmode && GET_CODE (XEXP (mem, 0)) == SCRATCH)
2060 return 1;
2061
41472af8
MM
2062 if (DIFFERENT_ALIAS_SETS_P (x, mem))
2063 return 0;
2064
b949ea8b
JW
2065 /* Unchanging memory can't conflict with non-unchanging memory.
2066 A non-unchanging read can conflict with a non-unchanging write.
2067 An unchanging read can conflict with an unchanging write since
2068 there may be a single store to this address to initialize it.
ec569656
RK
2069 Note that an unchanging store can conflict with a non-unchanging read
2070 since we have to make conservative assumptions when we have a
2071 record with readonly fields and we are copying the whole thing.
b949ea8b
JW
2072 Just fall through to the code below to resolve potential conflicts.
2073 This won't handle all cases optimally, but the possible performance
2074 loss should be negligible. */
ec569656 2075 if (RTX_UNCHANGING_P (x) && ! RTX_UNCHANGING_P (mem))
9ae8ffe7
JL
2076 return 0;
2077
a4311dfe
RK
2078 if (nonoverlapping_memrefs_p (mem, x))
2079 return 0;
2080
56ee9281
RH
2081 if (mem_mode == VOIDmode)
2082 mem_mode = GET_MODE (mem);
2083
eab5c70a
BS
2084 x_addr = get_addr (XEXP (x, 0));
2085 mem_addr = get_addr (XEXP (mem, 0));
2086
55efb413
JW
2087 base = find_base_term (x_addr);
2088 if (base && (GET_CODE (base) == LABEL_REF
2089 || (GET_CODE (base) == SYMBOL_REF
2090 && CONSTANT_POOL_ADDRESS_P (base))))
2091 return 0;
2092
eab5c70a 2093 if (! base_alias_check (x_addr, mem_addr, GET_MODE (x), mem_mode))
1c72c7f6
JC
2094 return 0;
2095
eab5c70a
BS
2096 x_addr = canon_rtx (x_addr);
2097 mem_addr = canon_rtx (mem_addr);
6e73e666 2098
0211b6ab
JW
2099 if (! memrefs_conflict_p (GET_MODE_SIZE (mem_mode), mem_addr,
2100 SIZE_FOR_MODE (x), x_addr, 0))
2101 return 0;
2102
c6df88cb 2103 if (aliases_everything_p (x))
0211b6ab
JW
2104 return 1;
2105
f5143c46 2106 /* We cannot use aliases_everything_p to test MEM, since we must look
c6df88cb
MM
2107 at MEM_MODE, rather than GET_MODE (MEM). */
2108 if (mem_mode == QImode || GET_CODE (mem_addr) == AND)
a13d4ebf
AM
2109 return 1;
2110
2111 /* In true_dependence we also allow BLKmode to alias anything. Why
2112 don't we do this in anti_dependence and output_dependence? */
2113 if (mem_mode == BLKmode || GET_MODE (x) == BLKmode)
2114 return 1;
2115
2116 return ! fixed_scalar_and_varying_struct_p (mem, x, mem_addr, x_addr,
2117 varies);
2118}
2119
2120/* Canonical true dependence: X is read after store in MEM takes place.
ca7fd9cd
KH
2121 Variant of true_dependence which assumes MEM has already been
2122 canonicalized (hence we no longer do that here).
2123 The mem_addr argument has been added, since true_dependence computed
a13d4ebf
AM
2124 this value prior to canonicalizing. */
2125
2126int
2127canon_true_dependence (mem, mem_mode, mem_addr, x, varies)
2128 rtx mem, mem_addr, x;
2129 enum machine_mode mem_mode;
2130 int (*varies) PARAMS ((rtx, int));
2131{
b3694847 2132 rtx x_addr;
a13d4ebf
AM
2133
2134 if (MEM_VOLATILE_P (x) && MEM_VOLATILE_P (mem))
2135 return 1;
2136
0fe854a7
RH
2137 /* (mem:BLK (scratch)) is a special mechanism to conflict with everything.
2138 This is used in epilogue deallocation functions. */
2139 if (GET_MODE (x) == BLKmode && GET_CODE (XEXP (x, 0)) == SCRATCH)
2140 return 1;
2141 if (GET_MODE (mem) == BLKmode && GET_CODE (XEXP (mem, 0)) == SCRATCH)
2142 return 1;
2143
a13d4ebf
AM
2144 if (DIFFERENT_ALIAS_SETS_P (x, mem))
2145 return 0;
2146
2147 /* If X is an unchanging read, then it can't possibly conflict with any
2148 non-unchanging store. It may conflict with an unchanging write though,
2149 because there may be a single store to this address to initialize it.
2150 Just fall through to the code below to resolve the case where we have
2151 both an unchanging read and an unchanging write. This won't handle all
2152 cases optimally, but the possible performance loss should be
2153 negligible. */
2154 if (RTX_UNCHANGING_P (x) && ! RTX_UNCHANGING_P (mem))
2155 return 0;
2156
a4311dfe
RK
2157 if (nonoverlapping_memrefs_p (x, mem))
2158 return 0;
2159
a13d4ebf
AM
2160 x_addr = get_addr (XEXP (x, 0));
2161
2162 if (! base_alias_check (x_addr, mem_addr, GET_MODE (x), mem_mode))
2163 return 0;
2164
2165 x_addr = canon_rtx (x_addr);
2166 if (! memrefs_conflict_p (GET_MODE_SIZE (mem_mode), mem_addr,
2167 SIZE_FOR_MODE (x), x_addr, 0))
2168 return 0;
2169
2170 if (aliases_everything_p (x))
2171 return 1;
2172
f5143c46 2173 /* We cannot use aliases_everything_p to test MEM, since we must look
a13d4ebf
AM
2174 at MEM_MODE, rather than GET_MODE (MEM). */
2175 if (mem_mode == QImode || GET_CODE (mem_addr) == AND)
c6df88cb 2176 return 1;
0211b6ab 2177
c6df88cb
MM
2178 /* In true_dependence we also allow BLKmode to alias anything. Why
2179 don't we do this in anti_dependence and output_dependence? */
2180 if (mem_mode == BLKmode || GET_MODE (x) == BLKmode)
2181 return 1;
0211b6ab 2182
eab5c70a
BS
2183 return ! fixed_scalar_and_varying_struct_p (mem, x, mem_addr, x_addr,
2184 varies);
9ae8ffe7
JL
2185}
2186
c6df88cb
MM
2187/* Returns non-zero if a write to X might alias a previous read from
2188 (or, if WRITEP is non-zero, a write to) MEM. */
9ae8ffe7 2189
2c72b78f 2190static int
c6df88cb 2191write_dependence_p (mem, x, writep)
9ae8ffe7
JL
2192 rtx mem;
2193 rtx x;
c6df88cb 2194 int writep;
9ae8ffe7 2195{
6e73e666 2196 rtx x_addr, mem_addr;
c6df88cb 2197 rtx fixed_scalar;
49982682 2198 rtx base;
6e73e666 2199
9ae8ffe7
JL
2200 if (MEM_VOLATILE_P (x) && MEM_VOLATILE_P (mem))
2201 return 1;
2202
c4484b8f
RH
2203 /* (mem:BLK (scratch)) is a special mechanism to conflict with everything.
2204 This is used in epilogue deallocation functions. */
2205 if (GET_MODE (x) == BLKmode && GET_CODE (XEXP (x, 0)) == SCRATCH)
2206 return 1;
2207 if (GET_MODE (mem) == BLKmode && GET_CODE (XEXP (mem, 0)) == SCRATCH)
2208 return 1;
2209
eab5c70a
BS
2210 if (DIFFERENT_ALIAS_SETS_P (x, mem))
2211 return 0;
2212
b949ea8b
JW
2213 /* Unchanging memory can't conflict with non-unchanging memory. */
2214 if (RTX_UNCHANGING_P (x) != RTX_UNCHANGING_P (mem))
2215 return 0;
2216
9ae8ffe7
JL
2217 /* If MEM is an unchanging read, then it can't possibly conflict with
2218 the store to X, because there is at most one store to MEM, and it must
2219 have occurred somewhere before MEM. */
55efb413
JW
2220 if (! writep && RTX_UNCHANGING_P (mem))
2221 return 0;
2222
a4311dfe
RK
2223 if (nonoverlapping_memrefs_p (x, mem))
2224 return 0;
2225
55efb413
JW
2226 x_addr = get_addr (XEXP (x, 0));
2227 mem_addr = get_addr (XEXP (mem, 0));
2228
49982682
JW
2229 if (! writep)
2230 {
55efb413 2231 base = find_base_term (mem_addr);
49982682
JW
2232 if (base && (GET_CODE (base) == LABEL_REF
2233 || (GET_CODE (base) == SYMBOL_REF
2234 && CONSTANT_POOL_ADDRESS_P (base))))
2235 return 0;
2236 }
2237
eab5c70a
BS
2238 if (! base_alias_check (x_addr, mem_addr, GET_MODE (x),
2239 GET_MODE (mem)))
41472af8
MM
2240 return 0;
2241
eab5c70a
BS
2242 x_addr = canon_rtx (x_addr);
2243 mem_addr = canon_rtx (mem_addr);
6e73e666 2244
c6df88cb
MM
2245 if (!memrefs_conflict_p (SIZE_FOR_MODE (mem), mem_addr,
2246 SIZE_FOR_MODE (x), x_addr, 0))
2247 return 0;
2248
ca7fd9cd 2249 fixed_scalar
eab5c70a
BS
2250 = fixed_scalar_and_varying_struct_p (mem, x, mem_addr, x_addr,
2251 rtx_addr_varies_p);
2252
c6df88cb
MM
2253 return (!(fixed_scalar == mem && !aliases_everything_p (x))
2254 && !(fixed_scalar == x && !aliases_everything_p (mem)));
2255}
2256
2257/* Anti dependence: X is written after read in MEM takes place. */
2258
2259int
2260anti_dependence (mem, x)
2261 rtx mem;
2262 rtx x;
2263{
2264 return write_dependence_p (mem, x, /*writep=*/0);
9ae8ffe7
JL
2265}
2266
2267/* Output dependence: X is written after store in MEM takes place. */
2268
2269int
2270output_dependence (mem, x)
b3694847
SS
2271 rtx mem;
2272 rtx x;
9ae8ffe7 2273{
c6df88cb 2274 return write_dependence_p (mem, x, /*writep=*/1);
9ae8ffe7 2275}
c14b9960
JW
2276\f
2277/* A subroutine of nonlocal_mentioned_p, returns 1 if *LOC mentions
2278 something which is not local to the function and is not constant. */
7790df19
JW
2279
2280static int
c14b9960
JW
2281nonlocal_mentioned_p_1 (loc, data)
2282 rtx *loc;
2283 void *data ATTRIBUTE_UNUSED;
7790df19 2284{
c14b9960 2285 rtx x = *loc;
7790df19 2286 rtx base;
7790df19
JW
2287 int regno;
2288
c14b9960
JW
2289 if (! x)
2290 return 0;
7790df19 2291
c14b9960 2292 switch (GET_CODE (x))
7790df19
JW
2293 {
2294 case SUBREG:
2295 if (GET_CODE (SUBREG_REG (x)) == REG)
2296 {
2297 /* Global registers are not local. */
2298 if (REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER
ddef6bc7 2299 && global_regs[subreg_regno (x)])
7790df19
JW
2300 return 1;
2301 return 0;
2302 }
2303 break;
2304
2305 case REG:
2306 regno = REGNO (x);
2307 /* Global registers are not local. */
2308 if (regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
2309 return 1;
2310 return 0;
2311
2312 case SCRATCH:
2313 case PC:
2314 case CC0:
2315 case CONST_INT:
2316 case CONST_DOUBLE:
69ef87e2 2317 case CONST_VECTOR:
7790df19
JW
2318 case CONST:
2319 case LABEL_REF:
2320 return 0;
2321
2322 case SYMBOL_REF:
2323 /* Constants in the function's constants pool are constant. */
2324 if (CONSTANT_POOL_ADDRESS_P (x))
2325 return 0;
2326 return 1;
2327
2328 case CALL:
bf6d9fd7 2329 /* Non-constant calls and recursion are not local. */
7790df19
JW
2330 return 1;
2331
2332 case MEM:
2333 /* Be overly conservative and consider any volatile memory
2334 reference as not local. */
2335 if (MEM_VOLATILE_P (x))
2336 return 1;
2337 base = find_base_term (XEXP (x, 0));
2338 if (base)
2339 {
b3b5ad95
JL
2340 /* A Pmode ADDRESS could be a reference via the structure value
2341 address or static chain. Such memory references are nonlocal.
2342
2343 Thus, we have to examine the contents of the ADDRESS to find
2344 out if this is a local reference or not. */
2345 if (GET_CODE (base) == ADDRESS
2346 && GET_MODE (base) == Pmode
2347 && (XEXP (base, 0) == stack_pointer_rtx
2348 || XEXP (base, 0) == arg_pointer_rtx
2349#if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
2350 || XEXP (base, 0) == hard_frame_pointer_rtx
2351#endif
2352 || XEXP (base, 0) == frame_pointer_rtx))
7790df19
JW
2353 return 0;
2354 /* Constants in the function's constant pool are constant. */
2355 if (GET_CODE (base) == SYMBOL_REF && CONSTANT_POOL_ADDRESS_P (base))
2356 return 0;
2357 }
2358 return 1;
2359
bf6d9fd7 2360 case UNSPEC_VOLATILE:
7790df19 2361 case ASM_INPUT:
7790df19
JW
2362 return 1;
2363
bf6d9fd7
JW
2364 case ASM_OPERANDS:
2365 if (MEM_VOLATILE_P (x))
2366 return 1;
2367
2368 /* FALLTHROUGH */
2369
7790df19
JW
2370 default:
2371 break;
2372 }
2373
c14b9960
JW
2374 return 0;
2375}
2376
2377/* Returns non-zero if X might mention something which is not
2378 local to the function and is not constant. */
7790df19 2379
c14b9960
JW
2380static int
2381nonlocal_mentioned_p (x)
2382 rtx x;
2383{
2384
2385 if (INSN_P (x))
2386 {
2387 if (GET_CODE (x) == CALL_INSN)
2388 {
2389 if (! CONST_OR_PURE_CALL_P (x))
2390 return 1;
2391 x = CALL_INSN_FUNCTION_USAGE (x);
2392 if (x == 0)
2393 return 0;
ca7fd9cd 2394 }
c14b9960 2395 else
ca7fd9cd 2396 x = PATTERN (x);
c14b9960
JW
2397 }
2398
2399 return for_each_rtx (&x, nonlocal_mentioned_p_1, NULL);
2400}
2401
2402/* A subroutine of nonlocal_referenced_p, returns 1 if *LOC references
2403 something which is not local to the function and is not constant. */
2404
2405static int
2406nonlocal_referenced_p_1 (loc, data)
2407 rtx *loc;
2408 void *data ATTRIBUTE_UNUSED;
2409{
2410 rtx x = *loc;
2411
2412 if (! x)
2413 return 0;
2414
2415 switch (GET_CODE (x))
2416 {
2417 case MEM:
2418 case REG:
2419 case SYMBOL_REF:
2420 case SUBREG:
2421 return nonlocal_mentioned_p (x);
2422
2423 case CALL:
2424 /* Non-constant calls and recursion are not local. */
2425 return 1;
2426
2427 case SET:
2428 if (nonlocal_mentioned_p (SET_SRC (x)))
2429 return 1;
2430
2431 if (GET_CODE (SET_DEST (x)) == MEM)
2432 return nonlocal_mentioned_p (XEXP (SET_DEST (x), 0));
2433
2434 /* If the destination is anything other than a CC0, PC,
2435 MEM, REG, or a SUBREG of a REG that occupies all of
2436 the REG, then X references nonlocal memory if it is
2437 mentioned in the destination. */
2438 if (GET_CODE (SET_DEST (x)) != CC0
2439 && GET_CODE (SET_DEST (x)) != PC
2440 && GET_CODE (SET_DEST (x)) != REG
2441 && ! (GET_CODE (SET_DEST (x)) == SUBREG
2442 && GET_CODE (SUBREG_REG (SET_DEST (x))) == REG
2443 && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (x))))
2444 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
2445 == ((GET_MODE_SIZE (GET_MODE (SET_DEST (x)))
2446 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))))
2447 return nonlocal_mentioned_p (SET_DEST (x));
2448 return 0;
2449
2450 case CLOBBER:
2451 if (GET_CODE (XEXP (x, 0)) == MEM)
2452 return nonlocal_mentioned_p (XEXP (XEXP (x, 0), 0));
2453 return 0;
2454
2455 case USE:
2456 return nonlocal_mentioned_p (XEXP (x, 0));
2457
2458 case ASM_INPUT:
2459 case UNSPEC_VOLATILE:
2460 return 1;
2461
2462 case ASM_OPERANDS:
2463 if (MEM_VOLATILE_P (x))
2464 return 1;
2465
2466 /* FALLTHROUGH */
2467
2468 default:
2469 break;
2470 }
2471
2472 return 0;
2473}
2474
2475/* Returns non-zero if X might reference something which is not
2476 local to the function and is not constant. */
2477
2478static int
2479nonlocal_referenced_p (x)
2480 rtx x;
2481{
2482
2483 if (INSN_P (x))
2484 {
2485 if (GET_CODE (x) == CALL_INSN)
2486 {
2487 if (! CONST_OR_PURE_CALL_P (x))
2488 return 1;
2489 x = CALL_INSN_FUNCTION_USAGE (x);
2490 if (x == 0)
2491 return 0;
ca7fd9cd 2492 }
c14b9960 2493 else
ca7fd9cd 2494 x = PATTERN (x);
c14b9960
JW
2495 }
2496
2497 return for_each_rtx (&x, nonlocal_referenced_p_1, NULL);
2498}
2499
2500/* A subroutine of nonlocal_set_p, returns 1 if *LOC sets
2501 something which is not local to the function and is not constant. */
2502
2503static int
2504nonlocal_set_p_1 (loc, data)
2505 rtx *loc;
2506 void *data ATTRIBUTE_UNUSED;
2507{
2508 rtx x = *loc;
2509
2510 if (! x)
2511 return 0;
2512
2513 switch (GET_CODE (x))
2514 {
2515 case CALL:
2516 /* Non-constant calls and recursion are not local. */
2517 return 1;
2518
2519 case PRE_INC:
2520 case PRE_DEC:
2521 case POST_INC:
2522 case POST_DEC:
2523 case PRE_MODIFY:
2524 case POST_MODIFY:
2525 return nonlocal_mentioned_p (XEXP (x, 0));
2526
2527 case SET:
2528 if (nonlocal_mentioned_p (SET_DEST (x)))
2529 return 1;
2530 return nonlocal_set_p (SET_SRC (x));
2531
2532 case CLOBBER:
2533 return nonlocal_mentioned_p (XEXP (x, 0));
2534
2535 case USE:
2536 return 0;
2537
2538 case ASM_INPUT:
2539 case UNSPEC_VOLATILE:
2540 return 1;
2541
2542 case ASM_OPERANDS:
2543 if (MEM_VOLATILE_P (x))
2544 return 1;
2545
2546 /* FALLTHROUGH */
2547
2548 default:
2549 break;
2550 }
7790df19
JW
2551
2552 return 0;
2553}
2554
c14b9960
JW
2555/* Returns non-zero if X might set something which is not
2556 local to the function and is not constant. */
2557
2558static int
2559nonlocal_set_p (x)
2560 rtx x;
2561{
2562
2563 if (INSN_P (x))
2564 {
2565 if (GET_CODE (x) == CALL_INSN)
2566 {
2567 if (! CONST_OR_PURE_CALL_P (x))
2568 return 1;
2569 x = CALL_INSN_FUNCTION_USAGE (x);
2570 if (x == 0)
2571 return 0;
ca7fd9cd 2572 }
c14b9960 2573 else
ca7fd9cd 2574 x = PATTERN (x);
c14b9960
JW
2575 }
2576
2577 return for_each_rtx (&x, nonlocal_set_p_1, NULL);
2578}
2579
7790df19
JW
2580/* Mark the function if it is constant. */
2581
2582void
2583mark_constant_function ()
2584{
2585 rtx insn;
c14b9960 2586 int nonlocal_memory_referenced;
7790df19 2587
ab780373 2588 if (TREE_READONLY (current_function_decl)
bf6d9fd7 2589 || DECL_IS_PURE (current_function_decl)
7790df19 2590 || TREE_THIS_VOLATILE (current_function_decl)
c14b9960 2591 || TYPE_MODE (TREE_TYPE (current_function_decl)) == VOIDmode
ab780373
RH
2592 || current_function_has_nonlocal_goto
2593 || !(*targetm.binds_local_p) (current_function_decl))
7790df19
JW
2594 return;
2595
e004f2f7 2596 /* A loop might not return which counts as a side effect. */
0ecf09f9 2597 if (mark_dfs_back_edges ())
e004f2f7
JW
2598 return;
2599
c14b9960 2600 nonlocal_memory_referenced = 0;
bf6d9fd7
JW
2601
2602 init_alias_analysis ();
2603
c14b9960 2604 /* Determine if this is a constant or pure function. */
7790df19
JW
2605
2606 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
c14b9960
JW
2607 {
2608 if (! INSN_P (insn))
2609 continue;
bf6d9fd7 2610
c14b9960
JW
2611 if (nonlocal_set_p (insn) || global_reg_mentioned_p (insn)
2612 || volatile_refs_p (PATTERN (insn)))
ca7fd9cd 2613 break;
7790df19 2614
c14b9960
JW
2615 if (! nonlocal_memory_referenced)
2616 nonlocal_memory_referenced = nonlocal_referenced_p (insn);
2617 }
ca7fd9cd 2618
c14b9960 2619 end_alias_analysis ();
ca7fd9cd 2620
7790df19 2621 /* Mark the function. */
ca7fd9cd 2622
c14b9960
JW
2623 if (insn)
2624 ;
2625 else if (nonlocal_memory_referenced)
2626 DECL_IS_PURE (current_function_decl) = 1;
2627 else
bf6d9fd7 2628 TREE_READONLY (current_function_decl) = 1;
7790df19 2629}
c14b9960 2630\f
6e73e666 2631
6e73e666
JC
2632void
2633init_alias_once ()
2634{
b3694847 2635 int i;
6e73e666
JC
2636
2637#ifndef OUTGOING_REGNO
2638#define OUTGOING_REGNO(N) N
2639#endif
2640 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
2641 /* Check whether this register can hold an incoming pointer
2642 argument. FUNCTION_ARG_REGNO_P tests outgoing register
ec5c56db 2643 numbers, so translate if necessary due to register windows. */
6e73e666
JC
2644 if (FUNCTION_ARG_REGNO_P (OUTGOING_REGNO (i))
2645 && HARD_REGNO_MODE_OK (i, Pmode))
bf1660a6
JL
2646 static_reg_base_value[i]
2647 = gen_rtx_ADDRESS (VOIDmode, gen_rtx_REG (Pmode, i));
2648
bf1660a6
JL
2649 static_reg_base_value[STACK_POINTER_REGNUM]
2650 = gen_rtx_ADDRESS (Pmode, stack_pointer_rtx);
2651 static_reg_base_value[ARG_POINTER_REGNUM]
2652 = gen_rtx_ADDRESS (Pmode, arg_pointer_rtx);
2653 static_reg_base_value[FRAME_POINTER_REGNUM]
2654 = gen_rtx_ADDRESS (Pmode, frame_pointer_rtx);
2655#if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
2656 static_reg_base_value[HARD_FRAME_POINTER_REGNUM]
2657 = gen_rtx_ADDRESS (Pmode, hard_frame_pointer_rtx);
2658#endif
7f243674
JL
2659
2660 alias_sets = splay_tree_new (splay_tree_compare_ints, 0, 0);
bf1660a6
JL
2661}
2662
c13e8210
MM
2663/* Initialize the aliasing machinery. Initialize the REG_KNOWN_VALUE
2664 array. */
2665
9ae8ffe7
JL
2666void
2667init_alias_analysis ()
2668{
2669 int maxreg = max_reg_num ();
ea64ef27 2670 int changed, pass;
b3694847
SS
2671 int i;
2672 unsigned int ui;
2673 rtx insn;
9ae8ffe7
JL
2674
2675 reg_known_value_size = maxreg;
2676
ca7fd9cd 2677 reg_known_value
e05e2395
MM
2678 = (rtx *) xcalloc ((maxreg - FIRST_PSEUDO_REGISTER), sizeof (rtx))
2679 - FIRST_PSEUDO_REGISTER;
ca7fd9cd 2680 reg_known_equiv_p
e05e2395 2681 = (char*) xcalloc ((maxreg - FIRST_PSEUDO_REGISTER), sizeof (char))
9ae8ffe7 2682 - FIRST_PSEUDO_REGISTER;
9ae8ffe7 2683
6e73e666
JC
2684 /* Overallocate reg_base_value to allow some growth during loop
2685 optimization. Loop unrolling can create a large number of
2686 registers. */
2687 reg_base_value_size = maxreg * 2;
e2500fed
GK
2688 reg_base_value = (rtx *) ggc_alloc_cleared (reg_base_value_size
2689 * sizeof (rtx));
ac606739 2690
e05e2395
MM
2691 new_reg_base_value = (rtx *) xmalloc (reg_base_value_size * sizeof (rtx));
2692 reg_seen = (char *) xmalloc (reg_base_value_size);
de12be17
JC
2693 if (! reload_completed && flag_unroll_loops)
2694 {
ac606739 2695 /* ??? Why are we realloc'ing if we're just going to zero it? */
de12be17
JC
2696 alias_invariant = (rtx *)xrealloc (alias_invariant,
2697 reg_base_value_size * sizeof (rtx));
961192e1 2698 memset ((char *)alias_invariant, 0, reg_base_value_size * sizeof (rtx));
de12be17 2699 }
ec907dd8
JL
2700
2701 /* The basic idea is that each pass through this loop will use the
2702 "constant" information from the previous pass to propagate alias
2703 information through another level of assignments.
2704
2705 This could get expensive if the assignment chains are long. Maybe
2706 we should throttle the number of iterations, possibly based on
6e73e666 2707 the optimization level or flag_expensive_optimizations.
ec907dd8
JL
2708
2709 We could propagate more information in the first pass by making use
2710 of REG_N_SETS to determine immediately that the alias information
ea64ef27
JL
2711 for a pseudo is "constant".
2712
2713 A program with an uninitialized variable can cause an infinite loop
2714 here. Instead of doing a full dataflow analysis to detect such problems
2715 we just cap the number of iterations for the loop.
2716
2717 The state of the arrays for the set chain in question does not matter
2718 since the program has undefined behavior. */
6e73e666 2719
ea64ef27 2720 pass = 0;
6e73e666 2721 do
ec907dd8
JL
2722 {
2723 /* Assume nothing will change this iteration of the loop. */
2724 changed = 0;
2725
ec907dd8
JL
2726 /* We want to assign the same IDs each iteration of this loop, so
2727 start counting from zero each iteration of the loop. */
2728 unique_id = 0;
2729
f5143c46 2730 /* We're at the start of the function each iteration through the
ec907dd8
JL
2731 loop, so we're copying arguments. */
2732 copying_arguments = 1;
9ae8ffe7 2733
6e73e666 2734 /* Wipe the potential alias information clean for this pass. */
961192e1 2735 memset ((char *) new_reg_base_value, 0, reg_base_value_size * sizeof (rtx));
8072f69c 2736
6e73e666 2737 /* Wipe the reg_seen array clean. */
961192e1 2738 memset ((char *) reg_seen, 0, reg_base_value_size);
9ae8ffe7 2739
6e73e666
JC
2740 /* Mark all hard registers which may contain an address.
2741 The stack, frame and argument pointers may contain an address.
2742 An argument register which can hold a Pmode value may contain
2743 an address even if it is not in BASE_REGS.
8072f69c 2744
6e73e666
JC
2745 The address expression is VOIDmode for an argument and
2746 Pmode for other registers. */
2747
7f243674
JL
2748 memcpy (new_reg_base_value, static_reg_base_value,
2749 FIRST_PSEUDO_REGISTER * sizeof (rtx));
6e73e666 2750
ec907dd8
JL
2751 /* Walk the insns adding values to the new_reg_base_value array. */
2752 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
9ae8ffe7 2753 {
2c3c49de 2754 if (INSN_P (insn))
ec907dd8 2755 {
6e73e666 2756 rtx note, set;
efc9bd41
RK
2757
2758#if defined (HAVE_prologue) || defined (HAVE_epilogue)
f5143c46 2759 /* The prologue/epilogue insns are not threaded onto the
657959ca
JL
2760 insn chain until after reload has completed. Thus,
2761 there is no sense wasting time checking if INSN is in
2762 the prologue/epilogue until after reload has completed. */
2763 if (reload_completed
2764 && prologue_epilogue_contains (insn))
efc9bd41
RK
2765 continue;
2766#endif
2767
ec907dd8
JL
2768 /* If this insn has a noalias note, process it, Otherwise,
2769 scan for sets. A simple set will have no side effects
ec5c56db 2770 which could change the base value of any other register. */
6e73e666 2771
ec907dd8 2772 if (GET_CODE (PATTERN (insn)) == SET
efc9bd41
RK
2773 && REG_NOTES (insn) != 0
2774 && find_reg_note (insn, REG_NOALIAS, NULL_RTX))
84832317 2775 record_set (SET_DEST (PATTERN (insn)), NULL_RTX, NULL);
ec907dd8 2776 else
84832317 2777 note_stores (PATTERN (insn), record_set, NULL);
6e73e666
JC
2778
2779 set = single_set (insn);
2780
2781 if (set != 0
2782 && GET_CODE (SET_DEST (set)) == REG
fb6754f0 2783 && REGNO (SET_DEST (set)) >= FIRST_PSEUDO_REGISTER)
6e73e666 2784 {
fb6754f0 2785 unsigned int regno = REGNO (SET_DEST (set));
713f41f9
BS
2786 rtx src = SET_SRC (set);
2787
2788 if (REG_NOTES (insn) != 0
2789 && (((note = find_reg_note (insn, REG_EQUAL, 0)) != 0
2790 && REG_N_SETS (regno) == 1)
2791 || (note = find_reg_note (insn, REG_EQUIV, NULL_RTX)) != 0)
2792 && GET_CODE (XEXP (note, 0)) != EXPR_LIST
bb2cf916 2793 && ! rtx_varies_p (XEXP (note, 0), 1)
713f41f9
BS
2794 && ! reg_overlap_mentioned_p (SET_DEST (set), XEXP (note, 0)))
2795 {
2796 reg_known_value[regno] = XEXP (note, 0);
2797 reg_known_equiv_p[regno] = REG_NOTE_KIND (note) == REG_EQUIV;
2798 }
2799 else if (REG_N_SETS (regno) == 1
2800 && GET_CODE (src) == PLUS
2801 && GET_CODE (XEXP (src, 0)) == REG
fb6754f0
BS
2802 && REGNO (XEXP (src, 0)) >= FIRST_PSEUDO_REGISTER
2803 && (reg_known_value[REGNO (XEXP (src, 0))])
713f41f9
BS
2804 && GET_CODE (XEXP (src, 1)) == CONST_INT)
2805 {
2806 rtx op0 = XEXP (src, 0);
bb2cf916 2807 op0 = reg_known_value[REGNO (op0)];
713f41f9 2808 reg_known_value[regno]
ed8908e7 2809 = plus_constant (op0, INTVAL (XEXP (src, 1)));
713f41f9
BS
2810 reg_known_equiv_p[regno] = 0;
2811 }
2812 else if (REG_N_SETS (regno) == 1
2813 && ! rtx_varies_p (src, 1))
2814 {
2815 reg_known_value[regno] = src;
2816 reg_known_equiv_p[regno] = 0;
2817 }
6e73e666 2818 }
ec907dd8
JL
2819 }
2820 else if (GET_CODE (insn) == NOTE
2821 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_BEG)
2822 copying_arguments = 0;
6e73e666 2823 }
ec907dd8 2824
6e73e666 2825 /* Now propagate values from new_reg_base_value to reg_base_value. */
e51712db 2826 for (ui = 0; ui < reg_base_value_size; ui++)
6e73e666 2827 {
e51712db
KG
2828 if (new_reg_base_value[ui]
2829 && new_reg_base_value[ui] != reg_base_value[ui]
2830 && ! rtx_equal_p (new_reg_base_value[ui], reg_base_value[ui]))
ec907dd8 2831 {
e51712db 2832 reg_base_value[ui] = new_reg_base_value[ui];
6e73e666 2833 changed = 1;
ec907dd8 2834 }
9ae8ffe7 2835 }
9ae8ffe7 2836 }
6e73e666 2837 while (changed && ++pass < MAX_ALIAS_LOOP_PASSES);
9ae8ffe7
JL
2838
2839 /* Fill in the remaining entries. */
2840 for (i = FIRST_PSEUDO_REGISTER; i < maxreg; i++)
2841 if (reg_known_value[i] == 0)
2842 reg_known_value[i] = regno_reg_rtx[i];
2843
9ae8ffe7
JL
2844 /* Simplify the reg_base_value array so that no register refers to
2845 another register, except to special registers indirectly through
2846 ADDRESS expressions.
2847
2848 In theory this loop can take as long as O(registers^2), but unless
2849 there are very long dependency chains it will run in close to linear
ea64ef27
JL
2850 time.
2851
2852 This loop may not be needed any longer now that the main loop does
2853 a better job at propagating alias information. */
2854 pass = 0;
9ae8ffe7
JL
2855 do
2856 {
2857 changed = 0;
ea64ef27 2858 pass++;
e51712db 2859 for (ui = 0; ui < reg_base_value_size; ui++)
9ae8ffe7 2860 {
e51712db 2861 rtx base = reg_base_value[ui];
9ae8ffe7
JL
2862 if (base && GET_CODE (base) == REG)
2863 {
fb6754f0 2864 unsigned int base_regno = REGNO (base);
e51712db
KG
2865 if (base_regno == ui) /* register set from itself */
2866 reg_base_value[ui] = 0;
9ae8ffe7 2867 else
e51712db 2868 reg_base_value[ui] = reg_base_value[base_regno];
9ae8ffe7
JL
2869 changed = 1;
2870 }
2871 }
2872 }
ea64ef27 2873 while (changed && pass < MAX_ALIAS_LOOP_PASSES);
9ae8ffe7 2874
e05e2395
MM
2875 /* Clean up. */
2876 free (new_reg_base_value);
ec907dd8 2877 new_reg_base_value = 0;
e05e2395 2878 free (reg_seen);
9ae8ffe7
JL
2879 reg_seen = 0;
2880}
2881
2882void
2883end_alias_analysis ()
2884{
e05e2395 2885 free (reg_known_value + FIRST_PSEUDO_REGISTER);
9ae8ffe7 2886 reg_known_value = 0;
ac606739 2887 reg_known_value_size = 0;
e05e2395
MM
2888 free (reg_known_equiv_p + FIRST_PSEUDO_REGISTER);
2889 reg_known_equiv_p = 0;
e2500fed 2890 reg_base_value = 0;
9ae8ffe7 2891 reg_base_value_size = 0;
de12be17
JC
2892 if (alias_invariant)
2893 {
ac606739 2894 free (alias_invariant);
de12be17
JC
2895 alias_invariant = 0;
2896 }
9ae8ffe7 2897}
e2500fed
GK
2898
2899#include "gt-alias.h"