[llvm] r347684 - [X86] Replace an APInt that is guaranteed to be 8-bits with just an 'unsigned'
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 27 10:24:56 PST 2018
Author: ctopper
Date: Tue Nov 27 10:24:56 2018
New Revision: 347684
URL: http://llvm.org/viewvc/llvm-project?rev=347684&view=rev
Log:
[X86] Replace an APInt that is guaranteed to be 8-bits with just an 'unsigned'
We're already mixing this APInt with other 'unsigned' variables. This allows us to use regular comparison operators instead of needing to use APInt::ult or APInt::uge. And it removes a later conversion from APInt to unsigned.
I might be adding another combine to this function and this will probably simplify the logic required for that.
Modified:
llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=347684&r1=347683&r2=347684&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Tue Nov 27 10:24:56 2018
@@ -35429,11 +35429,12 @@ static SDValue combineVectorShiftImm(SDN
unsigned NumBitsPerElt = VT.getScalarSizeInBits();
assert(VT == N0.getValueType() && (NumBitsPerElt % 8) == 0 &&
"Unexpected value type");
+ assert(N1.getValueType() == MVT::i8 && "Unexpected shift amount type");
// Out of range logical bit shifts are guaranteed to be zero.
// Out of range arithmetic bit shifts splat the sign bit.
- APInt ShiftVal = cast<ConstantSDNode>(N1)->getAPIntValue();
- if (ShiftVal.zextOrTrunc(8).uge(NumBitsPerElt)) {
+ unsigned ShiftVal = cast<ConstantSDNode>(N1)->getZExtValue();
+ if (ShiftVal >= NumBitsPerElt) {
if (LogicalShift)
return DAG.getConstant(0, SDLoc(N), VT);
else
@@ -35460,12 +35461,12 @@ static SDValue combineVectorShiftImm(SDN
N1 == N0.getOperand(1)) {
SDValue N00 = N0.getOperand(0);
unsigned NumSignBits = DAG.ComputeNumSignBits(N00);
- if (ShiftVal.ult(NumSignBits))
+ if (ShiftVal < NumSignBits)
return N00;
}
// We can decode 'whole byte' logical bit shifts as shuffles.
- if (LogicalShift && (ShiftVal.getZExtValue() % 8) == 0) {
+ if (LogicalShift && (ShiftVal % 8) == 0) {
SDValue Op(N, 0);
if (SDValue Res = combineX86ShufflesRecursively(
{Op}, 0, Op, {0}, {}, /*Depth*/ 1,
@@ -35480,14 +35481,13 @@ static SDValue combineVectorShiftImm(SDN
getTargetConstantBitsFromNode(N0, NumBitsPerElt, UndefElts, EltBits)) {
assert(EltBits.size() == VT.getVectorNumElements() &&
"Unexpected shift value type");
- unsigned ShiftImm = ShiftVal.getZExtValue();
for (APInt &Elt : EltBits) {
if (X86ISD::VSHLI == Opcode)
- Elt <<= ShiftImm;
+ Elt <<= ShiftVal;
else if (X86ISD::VSRAI == Opcode)
- Elt.ashrInPlace(ShiftImm);
+ Elt.ashrInPlace(ShiftVal);
else
- Elt.lshrInPlace(ShiftImm);
+ Elt.lshrInPlace(ShiftVal);
}
return getConstVector(EltBits, UndefElts, VT.getSimpleVT(), DAG, SDLoc(N));
}
More information about the llvm-commits
mailing list