Commit 1e7e480e by Richard Henderson Committed by Richard Henderson

* config/alpha/alpha.c (some_small_symbolic_mem_operand) Use

        for_each_rtx instead of assuming we're already looking at the MEM.
        (split_small_symbolic_mem_operand): Likewise.
        * config/alpha/alpha.h (PREDICATE_CODES): Update.
        * config/alpha/alpha.md (small symbolic memory splitters): Update.

	* gcc.dg/20020122-4.c: New.

From-SVN: r49111
parent 2e271932
<<<<<<< ChangeLog 2002-01-22 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.c (some_small_symbolic_mem_operand) Use
for_each_rtx instead of assuming we're already looking at the MEM.
(split_small_symbolic_mem_operand): Likewise.
* config/alpha/alpha.h (PREDICATE_CODES): Update.
* config/alpha/alpha.md (small symbolic memory splitters): Update.
2002-01-22 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.md (divmodsi_internal_er): Generate lituse * config/alpha/alpha.md (divmodsi_internal_er): Generate lituse
sequence number for the literal. sequence number for the literal.
......
...@@ -116,6 +116,10 @@ int alpha_this_gpdisp_sequence_number; ...@@ -116,6 +116,10 @@ int alpha_this_gpdisp_sequence_number;
/* Declarations of static functions. */ /* Declarations of static functions. */
static bool decl_in_text_section static bool decl_in_text_section
PARAMS ((tree)); PARAMS ((tree));
static int some_small_symbolic_mem_operand_1
PARAMS ((rtx *, void *));
static int split_small_symbolic_mem_operand_1
PARAMS ((rtx *, void *));
static bool local_symbol_p static bool local_symbol_p
PARAMS ((rtx)); PARAMS ((rtx));
static void alpha_set_memflags_1 static void alpha_set_memflags_1
...@@ -1874,51 +1878,57 @@ some_small_symbolic_mem_operand (x, mode) ...@@ -1874,51 +1878,57 @@ some_small_symbolic_mem_operand (x, mode)
rtx x; rtx x;
enum machine_mode mode ATTRIBUTE_UNUSED; enum machine_mode mode ATTRIBUTE_UNUSED;
{ {
/* Get rid of SIGN_EXTEND, etc. */ return for_each_rtx (&x, some_small_symbolic_mem_operand_1, NULL);
while (GET_RTX_CLASS (GET_CODE (x)) == '1') }
x = XEXP (x, 0);
static int
some_small_symbolic_mem_operand_1 (px, data)
rtx *px;
void *data ATTRIBUTE_UNUSED;
{
rtx x = *px;
if (GET_CODE (x) != MEM) if (GET_CODE (x) != MEM)
return 0; return 0;
x = XEXP (x, 0); x = XEXP (x, 0);
/* If this is an ldq_u type address, discard the outer AND. */ /* If this is an ldq_u type address, discard the outer AND. */
if (GET_CODE (x) == AND && GET_MODE (x) == DImode if (GET_CODE (x) == AND)
&& GET_CODE (XEXP (x, 1)) == CONST_INT
&& INTVAL (XEXP (x, 1)) == -8)
x = XEXP (x, 0); x = XEXP (x, 0);
return small_symbolic_operand (x, Pmode);
return small_symbolic_operand (x, Pmode) ? 1 : -1;
} }
rtx rtx
split_small_symbolic_mem_operand (x) split_small_symbolic_mem_operand (x)
rtx x; rtx x;
{ {
rtx *p; x = copy_rtx (x);
for_each_rtx (&x, split_small_symbolic_mem_operand_1, NULL);
return x;
}
if (GET_CODE (x) == MEM) static int
{ split_small_symbolic_mem_operand_1 (px, data)
rtx tmp = XEXP (x, 0); rtx *px;
void *data ATTRIBUTE_UNUSED;
{
rtx x = *px;
if (GET_CODE (tmp) == AND && GET_MODE (tmp) == DImode if (GET_CODE (x) != MEM)
&& GET_CODE (XEXP (tmp, 1)) == CONST_INT return 0;
&& INTVAL (XEXP (tmp, 1)) == -8)
{
tmp = gen_rtx_LO_SUM (DImode, pic_offset_table_rtx, XEXP (tmp, 0));
tmp = gen_rtx_AND (DImode, tmp, GEN_INT (-8));
}
else
tmp = gen_rtx_LO_SUM (DImode, pic_offset_table_rtx, tmp);
return replace_equiv_address (x, tmp);
}
x = copy_rtx (x); px = &XEXP (x, 0), x = *px;
p = &x; if (GET_CODE (x) == AND)
while (GET_RTX_CLASS (GET_CODE (*p)) == '1') px = &XEXP (x, 0), x = *px;
p = &XEXP (*p, 0);
*p = split_small_symbolic_mem_operand (*p); if (small_symbolic_operand (x, Pmode))
return x; {
x = gen_rtx_LO_SUM (Pmode, pic_offset_table_rtx, x);
*px = x;
}
return -1;
} }
/* Try a machine-dependent way of reloading an illegitimate address /* Try a machine-dependent way of reloading an illegitimate address
......
...@@ -2079,8 +2079,7 @@ do { \ ...@@ -2079,8 +2079,7 @@ do { \
{"reg_no_subreg_operand", {REG}}, \ {"reg_no_subreg_operand", {REG}}, \
{"addition_operation", {PLUS}}, \ {"addition_operation", {PLUS}}, \
{"symbolic_operand", {SYMBOL_REF, LABEL_REF, CONST}}, \ {"symbolic_operand", {SYMBOL_REF, LABEL_REF, CONST}}, \
{"some_small_symbolic_mem_operand", {MEM, SIGN_EXTEND, ZERO_EXTEND, \ {"some_small_symbolic_mem_operand", {SET, PARALLEL}},
FLOAT_EXTEND}},
/* Define the `__builtin_va_list' type for the ABI. */ /* Define the `__builtin_va_list' type for the ABI. */
#define BUILD_VA_LIST_TYPE(VALIST) \ #define BUILD_VA_LIST_TYPE(VALIST) \
......
...@@ -5501,19 +5501,11 @@ fadd,fmul,fcpys,fdiv,fsqrt,misc,mvi,ftoi,itof,multi" ...@@ -5501,19 +5501,11 @@ fadd,fmul,fcpys,fdiv,fsqrt,misc,mvi,ftoi,itof,multi"
"operands[2] = pic_offset_table_rtx;") "operands[2] = pic_offset_table_rtx;")
(define_split (define_split
[(set (match_operand 0 "some_small_symbolic_mem_operand" "") [(match_operand 0 "some_small_symbolic_mem_operand" "")]
(match_operand 1 "" ""))]
"TARGET_EXPLICIT_RELOCS && reload_completed" "TARGET_EXPLICIT_RELOCS && reload_completed"
[(set (match_dup 0) (match_dup 1))] [(match_dup 0)]
"operands[0] = split_small_symbolic_mem_operand (operands[0]);") "operands[0] = split_small_symbolic_mem_operand (operands[0]);")
(define_split
[(set (match_operand 0 "" "")
(match_operand 1 "some_small_symbolic_mem_operand" ""))]
"TARGET_EXPLICIT_RELOCS && reload_completed"
[(set (match_dup 0) (match_dup 1))]
"operands[1] = split_small_symbolic_mem_operand (operands[1]);")
(define_insn "movdi_er_high_g" (define_insn "movdi_er_high_g"
[(set (match_operand:DI 0 "register_operand" "=r") [(set (match_operand:DI 0 "register_operand" "=r")
(unspec:DI [(match_operand:DI 1 "register_operand" "r") (unspec:DI [(match_operand:DI 1 "register_operand" "r")
......
2002-01-22 Richard Henderson <rth@redhat.com>
* gcc.dg/20020122-4.c: New.
2002-01-22 H.J. Lu <hjl@gnu.org> 2002-01-22 H.J. Lu <hjl@gnu.org>
* g++.dg/special/ecos.exp: Append .exe instead of a.out as the * g++.dg/special/ecos.exp: Append .exe instead of a.out as the
......
/* Alpha -msmall-data didn't transform (mem (symbol_ref)) to
(mem (lo_sum pic (symbol_ref))) within an asm at the right time. */
/* { dg-do compile } */
/* { dg-options "-O2 -fpic" } */
void foo()
{
static int test;
asm volatile ("" : "=m"(test) : "m"(test));
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment