aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@arm.com>2024-08-27 09:48:28 +0100
committerRichard Sandiford <richard.sandiford@arm.com>2024-08-27 09:48:28 +0100
commit708ee71808ea61758e73d0e36274b4194b28576a (patch)
tree4264f4519f950fba8e3af54697d495bb0f232245
parent9db997e5ac4a206b9428eb2447fcdc90e37725f4 (diff)
downloadgcc-708ee71808ea61758e73d0e36274b4194b28576a.zip
gcc-708ee71808ea61758e73d0e36274b4194b28576a.tar.gz
gcc-708ee71808ea61758e73d0e36274b4194b28576a.tar.bz2
Handle arithmetic on eliminated address indices [PR116413]
This patch fixes gcc.c-torture/compile/opout.c for m68k with LRA enabled. The test has: ... z (a, b) { return (int) &a + (int) &b + (int) x + (int) z; } so it adds the address of two incoming arguments. This ends up being treated as an LEA in which the "index" is the incoming argument pointer, which the LEA multiplies by 2. The incoming argument pointer is then eliminated, leading to: (plus:SI (plus:SI (ashift:SI (plus:SI (reg/f:SI 24 %argptr) (const_int -4 [0xfffffffffffffffc])) (const_int 1 [0x1])) (reg/f:SI 41 [ _6 ])) (const_int 20 [0x14])) In the address_info scheme, the innermost plus has to be treated as the index "term", since that's the thing that's subject to index_reg_class. gcc/ PR middle-end/116413 * rtl.h (address_info): Update commentary. * rtlanal.cc (valid_base_or_index_term_p): New function, split out from... (get_base_term, get_index_term): ...here. Handle elimination PLUSes.
-rw-r--r--gcc/rtl.h14
-rw-r--r--gcc/rtlanal.cc29
2 files changed, 33 insertions, 10 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 2370d60..1ef6432 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -2225,11 +2225,21 @@ struct address_info {
reloading.
- *BASE is a variable expression representing a base address.
- It contains exactly one REG, SUBREG or MEM, pointed to by BASE_TERM.
+ It contains exactly one "term", pointed to by BASE_TERM.
+ This term can be one of the following:
+
+ (1) a REG, or a SUBREG of a REG
+ (2) an eliminated REG (a PLUS of (1) and a constant)
+ (3) a MEM, or a SUBREG of a MEM
+ (4) a SCRATCH
+
+ This term is the one that base_reg_class constrains.
- *INDEX is a variable expression representing an index value.
It may be a scaled expression, such as a MULT. It has exactly
- one REG, SUBREG or MEM, pointed to by INDEX_TERM.
+ one "term", pointed to by INDEX_TERM. The possible terms are
+ the same as for BASE. This term is the one that index_reg_class
+ constrains.
- *DISP is a constant, possibly mutated. DISP_TERM points to the
unmutated RTX_CONST_OBJ. */
diff --git a/gcc/rtlanal.cc b/gcc/rtlanal.cc
index 71207ee..8afbb32 100644
--- a/gcc/rtlanal.cc
+++ b/gcc/rtlanal.cc
@@ -6494,6 +6494,25 @@ binary_scale_code_p (enum rtx_code code)
|| code == ROTATERT);
}
+/* Return true if X appears to be a valid base or index term. */
+static bool
+valid_base_or_index_term_p (rtx x)
+{
+ if (GET_CODE (x) == SCRATCH)
+ return true;
+ /* Handle what appear to be eliminated forms of a register. If we reach
+ here, the elimination occurs outside of the outermost PLUS tree,
+ and so the elimination offset cannot be treated as a displacement
+ of the main address. Instead, we need to treat the whole PLUS as
+ the base or index term. The address can only be made legitimate by
+ reloading the PLUS. */
+ if (GET_CODE (x) == PLUS && CONST_SCALAR_INT_P (XEXP (x, 1)))
+ x = XEXP (x, 0);
+ if (GET_CODE (x) == SUBREG)
+ x = SUBREG_REG (x);
+ return REG_P (x) || MEM_P (x);
+}
+
/* If *INNER can be interpreted as a base, return a pointer to the inner term
(see address_info). Return null otherwise. */
@@ -6502,10 +6521,7 @@ get_base_term (rtx *inner)
{
if (GET_CODE (*inner) == LO_SUM)
inner = strip_address_mutations (&XEXP (*inner, 0));
- if (REG_P (*inner)
- || MEM_P (*inner)
- || GET_CODE (*inner) == SUBREG
- || GET_CODE (*inner) == SCRATCH)
+ if (valid_base_or_index_term_p (*inner))
return inner;
return 0;
}
@@ -6519,10 +6535,7 @@ get_index_term (rtx *inner)
/* At present, only constant scales are allowed. */
if (binary_scale_code_p (GET_CODE (*inner)) && CONSTANT_P (XEXP (*inner, 1)))
inner = strip_address_mutations (&XEXP (*inner, 0));
- if (REG_P (*inner)
- || MEM_P (*inner)
- || GET_CODE (*inner) == SUBREG
- || GET_CODE (*inner) == SCRATCH)
+ if (valid_base_or_index_term_p (*inner))
return inner;
return 0;
}