From: Richard Henderson Date: Mon, 15 Dec 1997 17:55:10 +0000 (-0800) Subject: alpha.md (zero_extendqihi2, [...]): Use and 255 instead of zapnot 1, since it schedul... X-Git-Tag: releases/libf2c-0.5.21~353 X-Git-Url: https://gcc.gnu.org/git/?a=commitdiff_plain;h=5e21ac7a624b32a8cd3c6261368a0b5e5068a81d;p=gcc.git alpha.md (zero_extendqihi2, [...]): Use and 255 instead of zapnot 1, since it schedules better. * alpha.md (zero_extendqihi2, zero_extendqisi2, zero_extendqidi2): Use and 255 instead of zapnot 1, since it schedules better. From-SVN: r17103 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c9ea3e81d7d7..fd9ca7f9798c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Mon Dec 15 09:44:39 1997 Richard Henderson + + * alpha.md (zero_extendqihi2, zero_extendqisi2, zero_extendqidi2): + Use and 255 instead of zapnot 1, since it schedules better. + Mon Dec 15 08:48:24 1997 Jeffrey A Law (law@cygnus.com) * stmt.c (expand_asm_operands): If an ASM has no outputs, then treat diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index 6e24c31bb0b0..cfc98cd949ad 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -811,24 +811,24 @@ [(set (match_operand:HI 0 "register_operand" "=r") (zero_extend:HI (match_operand:QI 1 "register_operand" "r")))] "" - "zapnot %1,1,%0" - [(set_attr "type" "shift")]) + "and %1,255,%0" + [(set_attr "type" "ilog")]) (define_insn "" [(set (match_operand:SI 0 "register_operand" "=r,r") (zero_extend:SI (match_operand:QI 1 "nonimmediate_operand" "r,m")))] "TARGET_BWX" "@ - zapnot %1,1,%0 + and %1,255,%0 ldbu %0,%1" - [(set_attr "type" "shift,ld")]) + [(set_attr "type" "ilog,ld")]) (define_insn "" [(set (match_operand:SI 0 "register_operand" "=r") (zero_extend:SI (match_operand:QI 1 "register_operand" "r")))] "! TARGET_BWX" - "zapnot %1,1,%0" - [(set_attr "type" "shift")]) + "and %1,255,%0" + [(set_attr "type" "ilog")]) (define_expand "zero_extendqisi2" [(set (match_operand:SI 0 "register_operand" "") @@ -841,16 +841,16 @@ (zero_extend:DI (match_operand:QI 1 "nonimmediate_operand" "r,m")))] "TARGET_BWX" "@ - zapnot %1,1,%0 + and %1,255,%0 ldbu %0,%1" - [(set_attr "type" "shift,ld")]) + [(set_attr "type" "ilog,ld")]) (define_insn "" [(set (match_operand:DI 0 "register_operand" "=r") (zero_extend:DI (match_operand:QI 1 "register_operand" "r")))] "! TARGET_BWX" - "zapnot %1,1,%0" - [(set_attr "type" "shift")]) + "and %1,255,%0" + [(set_attr "type" "ilog")]) (define_expand "zero_extendqidi2" [(set (match_operand:DI 0 "register_operand" "")