mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 22:20:37 +00:00
When tracking demanded bits, if any bits from the sext of an SRA are demanded,
then so is the input sign bit. This fixes mediabench/g721 on X86. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28166 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
17c275ff2c
commit
1b7371331f
@ -467,8 +467,14 @@ bool TargetLowering::SimplifyDemandedBits(SDOperand Op, uint64_t DemandedMask,
|
||||
HighBits <<= MVT::getSizeInBits(VT) - ShAmt;
|
||||
uint64_t TypeMask = MVT::getIntVTBitMask(VT);
|
||||
|
||||
if (SimplifyDemandedBits(Op.getOperand(0),
|
||||
(DemandedMask << ShAmt) & TypeMask,
|
||||
uint64_t InDemandedMask = (DemandedMask << ShAmt) & TypeMask;
|
||||
|
||||
// If any of the demanded bits are produced by the sign extension, we also
|
||||
// demand the input sign bit.
|
||||
if (HighBits & DemandedMask)
|
||||
InDemandedMask |= MVT::getIntVTSignBit(VT);
|
||||
|
||||
if (SimplifyDemandedBits(Op.getOperand(0), InDemandedMask,
|
||||
KnownZero, KnownOne, TLO, Depth+1))
|
||||
return true;
|
||||
assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
|
||||
|
Loading…
Reference in New Issue
Block a user