mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 22:11:30 +08:00
re PR c/10083 (alpha: ICE while building swi-prolog-packages)
PR c/10083 * config/alpha/alpha.md (umuldi3_highpart): Change to expander; don't zero_extend const inputs. * gcc.c-torture/compile/20030330-1.c: New. From-SVN: r65047
This commit is contained in:
parent
438f63a80d
commit
5bf92e2091
@ -1,3 +1,9 @@
|
||||
2003-03-30 Richard Henderson <rth@redhat.com>
|
||||
|
||||
PR c/10083
|
||||
* config/alpha/alpha.md (umuldi3_highpart): Change to expander;
|
||||
don't zero_extend const inputs.
|
||||
|
||||
2003-03-30 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* reload1.c (reload_cse_move2add): Fix a comment typo.
|
||||
|
@ -750,17 +750,31 @@ fadd,fmul,fcpys,fdiv,fsqrt,misc,mvi,ftoi,itof,multi,none"
|
||||
"mulqv %r1,%2,%0"
|
||||
[(set_attr "type" "imul")])
|
||||
|
||||
(define_insn "umuldi3_highpart"
|
||||
(define_expand "umuldi3_highpart"
|
||||
[(set (match_operand:DI 0 "register_operand" "")
|
||||
(truncate:DI
|
||||
(lshiftrt:TI
|
||||
(mult:TI (zero_extend:TI
|
||||
(match_operand:DI 1 "register_operand" ""))
|
||||
(match_operand:DI 2 "reg_or_8bit_operand" ""))
|
||||
(const_int 64))))]
|
||||
""
|
||||
{
|
||||
if (REG_P (operands[2]))
|
||||
operands[2] = gen_rtx_ZERO_EXTEND (TImode, operands[2]);
|
||||
})
|
||||
|
||||
(define_insn "*umuldi3_highpart_reg"
|
||||
[(set (match_operand:DI 0 "register_operand" "=r")
|
||||
(truncate:DI
|
||||
(lshiftrt:TI
|
||||
(mult:TI (zero_extend:TI
|
||||
(match_operand:DI 1 "reg_or_0_operand" "%rJ"))
|
||||
(match_operand:DI 1 "register_operand" "r"))
|
||||
(zero_extend:TI
|
||||
(match_operand:DI 2 "reg_or_8bit_operand" "rI")))
|
||||
(match_operand:DI 2 "register_operand" "r")))
|
||||
(const_int 64))))]
|
||||
""
|
||||
"umulh %r1,%2,%0"
|
||||
"umulh %1,%2,%0"
|
||||
[(set_attr "type" "imul")
|
||||
(set_attr "opsize" "udi")])
|
||||
|
||||
|
7
gcc/testsuite/gcc.c-torture/compile/20030330-1.c
Normal file
7
gcc/testsuite/gcc.c-torture/compile/20030330-1.c
Normal file
@ -0,0 +1,7 @@
|
||||
/* PR c/10083 */
|
||||
/* This will result in a very small constant for umul_highpart, which
|
||||
uncovered a bug in the Alpha machine description. */
|
||||
|
||||
unsigned long f(unsigned long x) {
|
||||
return x % 0x3fffffffffffffff;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user