mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
[SelectionDAG] Remove special methods for creating *_EXTEND_VECTOR_INREG nodes. Move asserts into getNode.
These methods were just wrappers around getNode with additional asserts (identical and repeated 3 times). But getNode already has a switch that can be used to hold these asserts that allows them to be shared for all 3 opcodes. This also enables checking on the places that create these nodes without using the wrappers. The rest of the patch is just changing all callers to use getNode directly. llvm-svn: 346087
This commit is contained in:
parent
664cca2986
commit
1b5acecad5
@ -786,24 +786,6 @@ public:
|
|||||||
/// value assuming it was the smaller SrcTy value.
|
/// value assuming it was the smaller SrcTy value.
|
||||||
SDValue getZeroExtendInReg(SDValue Op, const SDLoc &DL, EVT VT);
|
SDValue getZeroExtendInReg(SDValue Op, const SDLoc &DL, EVT VT);
|
||||||
|
|
||||||
/// Return an operation which will any-extend the low lanes of the operand
|
|
||||||
/// into the specified vector type. For example,
|
|
||||||
/// this can convert a v16i8 into a v4i32 by any-extending the low four
|
|
||||||
/// lanes of the operand from i8 to i32.
|
|
||||||
SDValue getAnyExtendVectorInReg(SDValue Op, const SDLoc &DL, EVT VT);
|
|
||||||
|
|
||||||
/// Return an operation which will sign extend the low lanes of the operand
|
|
||||||
/// into the specified vector type. For example,
|
|
||||||
/// this can convert a v16i8 into a v4i32 by sign extending the low four
|
|
||||||
/// lanes of the operand from i8 to i32.
|
|
||||||
SDValue getSignExtendVectorInReg(SDValue Op, const SDLoc &DL, EVT VT);
|
|
||||||
|
|
||||||
/// Return an operation which will zero extend the low lanes of the operand
|
|
||||||
/// into the specified vector type. For example,
|
|
||||||
/// this can convert a v16i8 into a v4i32 by zero extending the low four
|
|
||||||
/// lanes of the operand from i8 to i32.
|
|
||||||
SDValue getZeroExtendVectorInReg(SDValue Op, const SDLoc &DL, EVT VT);
|
|
||||||
|
|
||||||
/// Convert Op, which must be of integer type, to the integer type VT,
|
/// Convert Op, which must be of integer type, to the integer type VT,
|
||||||
/// by using an extension appropriate for the target's
|
/// by using an extension appropriate for the target's
|
||||||
/// BooleanContent for type OpVT or truncating it.
|
/// BooleanContent for type OpVT or truncating it.
|
||||||
|
@ -9402,7 +9402,8 @@ SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
|
|||||||
N0.getOperand(0).getScalarValueSizeInBits() == EVTBits) {
|
N0.getOperand(0).getScalarValueSizeInBits() == EVTBits) {
|
||||||
if (!LegalOperations ||
|
if (!LegalOperations ||
|
||||||
TLI.isOperationLegal(ISD::SIGN_EXTEND_VECTOR_INREG, VT))
|
TLI.isOperationLegal(ISD::SIGN_EXTEND_VECTOR_INREG, VT))
|
||||||
return DAG.getSignExtendVectorInReg(N0.getOperand(0), SDLoc(N), VT);
|
return DAG.getNode(ISD::SIGN_EXTEND_VECTOR_INREG, SDLoc(N), VT,
|
||||||
|
N0.getOperand(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
// fold (sext_in_reg (zext x)) -> (sext x)
|
// fold (sext_in_reg (zext x)) -> (sext x)
|
||||||
@ -17049,7 +17050,8 @@ static SDValue combineShuffleToVectorExtend(ShuffleVectorSDNode *SVN,
|
|||||||
if (!LegalOperations ||
|
if (!LegalOperations ||
|
||||||
TLI.isOperationLegalOrCustom(ISD::ANY_EXTEND_VECTOR_INREG, OutVT))
|
TLI.isOperationLegalOrCustom(ISD::ANY_EXTEND_VECTOR_INREG, OutVT))
|
||||||
return DAG.getBitcast(VT,
|
return DAG.getBitcast(VT,
|
||||||
DAG.getAnyExtendVectorInReg(N0, SDLoc(SVN), OutVT));
|
DAG.getNode(ISD::ANY_EXTEND_VECTOR_INREG,
|
||||||
|
SDLoc(SVN), OutVT, N0));
|
||||||
}
|
}
|
||||||
|
|
||||||
return SDValue();
|
return SDValue();
|
||||||
|
@ -872,7 +872,7 @@ SDValue VectorLegalizer::ExpandSIGN_EXTEND_VECTOR_INREG(SDValue Op) {
|
|||||||
|
|
||||||
// First build an any-extend node which can be legalized above when we
|
// First build an any-extend node which can be legalized above when we
|
||||||
// recurse through it.
|
// recurse through it.
|
||||||
Op = DAG.getAnyExtendVectorInReg(Src, DL, VT);
|
Op = DAG.getNode(ISD::ANY_EXTEND_VECTOR_INREG, DL, VT, Src);
|
||||||
|
|
||||||
// Now we need sign extend. Do this by shifting the elements. Even if these
|
// Now we need sign extend. Do this by shifting the elements. Even if these
|
||||||
// aren't legal operations, they have a better chance of being legalized
|
// aren't legal operations, they have a better chance of being legalized
|
||||||
|
@ -2811,9 +2811,9 @@ SDValue DAGTypeLegalizer::WidenVecRes_Convert(SDNode *N) {
|
|||||||
// operations should be done with SIGN/ZERO_EXTEND_VECTOR_INREG, which
|
// operations should be done with SIGN/ZERO_EXTEND_VECTOR_INREG, which
|
||||||
// accepts fewer elements in the result than in the input.
|
// accepts fewer elements in the result than in the input.
|
||||||
if (Opcode == ISD::SIGN_EXTEND)
|
if (Opcode == ISD::SIGN_EXTEND)
|
||||||
return DAG.getSignExtendVectorInReg(InOp, DL, WidenVT);
|
return DAG.getNode(ISD::SIGN_EXTEND_VECTOR_INREG, DL, WidenVT, InOp);
|
||||||
if (Opcode == ISD::ZERO_EXTEND)
|
if (Opcode == ISD::ZERO_EXTEND)
|
||||||
return DAG.getZeroExtendVectorInReg(InOp, DL, WidenVT);
|
return DAG.getNode(ISD::ZERO_EXTEND_VECTOR_INREG, DL, WidenVT, InOp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2883,11 +2883,9 @@ SDValue DAGTypeLegalizer::WidenVecRes_EXTEND_VECTOR_INREG(SDNode *N) {
|
|||||||
if (InVT.getSizeInBits() == WidenVT.getSizeInBits()) {
|
if (InVT.getSizeInBits() == WidenVT.getSizeInBits()) {
|
||||||
switch (Opcode) {
|
switch (Opcode) {
|
||||||
case ISD::ANY_EXTEND_VECTOR_INREG:
|
case ISD::ANY_EXTEND_VECTOR_INREG:
|
||||||
return DAG.getAnyExtendVectorInReg(InOp, DL, WidenVT);
|
|
||||||
case ISD::SIGN_EXTEND_VECTOR_INREG:
|
case ISD::SIGN_EXTEND_VECTOR_INREG:
|
||||||
return DAG.getSignExtendVectorInReg(InOp, DL, WidenVT);
|
|
||||||
case ISD::ZERO_EXTEND_VECTOR_INREG:
|
case ISD::ZERO_EXTEND_VECTOR_INREG:
|
||||||
return DAG.getZeroExtendVectorInReg(InOp, DL, WidenVT);
|
return DAG.getNode(Opcode, DL, WidenVT, InOp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -3722,11 +3720,11 @@ SDValue DAGTypeLegalizer::WidenVecOp_EXTEND(SDNode *N) {
|
|||||||
default:
|
default:
|
||||||
llvm_unreachable("Extend legalization on extend operation!");
|
llvm_unreachable("Extend legalization on extend operation!");
|
||||||
case ISD::ANY_EXTEND:
|
case ISD::ANY_EXTEND:
|
||||||
return DAG.getAnyExtendVectorInReg(InOp, DL, VT);
|
return DAG.getNode(ISD::ANY_EXTEND_VECTOR_INREG, DL, VT, InOp);
|
||||||
case ISD::SIGN_EXTEND:
|
case ISD::SIGN_EXTEND:
|
||||||
return DAG.getSignExtendVectorInReg(InOp, DL, VT);
|
return DAG.getNode(ISD::SIGN_EXTEND_VECTOR_INREG, DL, VT, InOp);
|
||||||
case ISD::ZERO_EXTEND:
|
case ISD::ZERO_EXTEND:
|
||||||
return DAG.getZeroExtendVectorInReg(InOp, DL, VT);
|
return DAG.getNode(ISD::ZERO_EXTEND_VECTOR_INREG, DL, VT, InOp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1118,39 +1118,6 @@ SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, const SDLoc &DL, EVT VT) {
|
|||||||
getConstant(Imm, DL, Op.getValueType()));
|
getConstant(Imm, DL, Op.getValueType()));
|
||||||
}
|
}
|
||||||
|
|
||||||
SDValue SelectionDAG::getAnyExtendVectorInReg(SDValue Op, const SDLoc &DL,
|
|
||||||
EVT VT) {
|
|
||||||
assert(VT.isVector() && "This DAG node is restricted to vector types.");
|
|
||||||
assert(VT.getSizeInBits() == Op.getValueSizeInBits() &&
|
|
||||||
"The sizes of the input and result must match in order to perform the "
|
|
||||||
"extend in-register.");
|
|
||||||
assert(VT.getVectorNumElements() < Op.getValueType().getVectorNumElements() &&
|
|
||||||
"The destination vector type must have fewer lanes than the input.");
|
|
||||||
return getNode(ISD::ANY_EXTEND_VECTOR_INREG, DL, VT, Op);
|
|
||||||
}
|
|
||||||
|
|
||||||
SDValue SelectionDAG::getSignExtendVectorInReg(SDValue Op, const SDLoc &DL,
|
|
||||||
EVT VT) {
|
|
||||||
assert(VT.isVector() && "This DAG node is restricted to vector types.");
|
|
||||||
assert(VT.getSizeInBits() == Op.getValueSizeInBits() &&
|
|
||||||
"The sizes of the input and result must match in order to perform the "
|
|
||||||
"extend in-register.");
|
|
||||||
assert(VT.getVectorNumElements() < Op.getValueType().getVectorNumElements() &&
|
|
||||||
"The destination vector type must have fewer lanes than the input.");
|
|
||||||
return getNode(ISD::SIGN_EXTEND_VECTOR_INREG, DL, VT, Op);
|
|
||||||
}
|
|
||||||
|
|
||||||
SDValue SelectionDAG::getZeroExtendVectorInReg(SDValue Op, const SDLoc &DL,
|
|
||||||
EVT VT) {
|
|
||||||
assert(VT.isVector() && "This DAG node is restricted to vector types.");
|
|
||||||
assert(VT.getSizeInBits() == Op.getValueSizeInBits() &&
|
|
||||||
"The sizes of the input and result must match in order to perform the "
|
|
||||||
"extend in-register.");
|
|
||||||
assert(VT.getVectorNumElements() < Op.getValueType().getVectorNumElements() &&
|
|
||||||
"The destination vector type must have fewer lanes than the input.");
|
|
||||||
return getNode(ISD::ZERO_EXTEND_VECTOR_INREG, DL, VT, Op);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// getNOT - Create a bitwise NOT operation as (XOR Val, -1).
|
/// getNOT - Create a bitwise NOT operation as (XOR Val, -1).
|
||||||
SDValue SelectionDAG::getNOT(const SDLoc &DL, SDValue Val, EVT VT) {
|
SDValue SelectionDAG::getNOT(const SDLoc &DL, SDValue Val, EVT VT) {
|
||||||
EVT EltVT = VT.getScalarType();
|
EVT EltVT = VT.getScalarType();
|
||||||
@ -4196,6 +4163,17 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
|
|||||||
if (OpOpcode == ISD::UNDEF)
|
if (OpOpcode == ISD::UNDEF)
|
||||||
return getUNDEF(VT);
|
return getUNDEF(VT);
|
||||||
break;
|
break;
|
||||||
|
case ISD::ANY_EXTEND_VECTOR_INREG:
|
||||||
|
case ISD::ZERO_EXTEND_VECTOR_INREG:
|
||||||
|
case ISD::SIGN_EXTEND_VECTOR_INREG:
|
||||||
|
assert(VT.isVector() && "This DAG node is restricted to vector types.");
|
||||||
|
assert(VT.getSizeInBits() == Operand.getValueSizeInBits() &&
|
||||||
|
"The sizes of the input and result must match in order to perform the "
|
||||||
|
"extend in-register.");
|
||||||
|
assert(VT.getVectorNumElements() <
|
||||||
|
Operand.getValueType().getVectorNumElements() &&
|
||||||
|
"The destination vector type must have fewer lanes than the input.");
|
||||||
|
break;
|
||||||
case ISD::ABS:
|
case ISD::ABS:
|
||||||
assert(VT.isInteger() && VT == Operand.getValueType() &&
|
assert(VT.isInteger() && VT == Operand.getValueType() &&
|
||||||
"Invalid ABS!");
|
"Invalid ABS!");
|
||||||
|
@ -1426,7 +1426,8 @@ SDValue
|
|||||||
HexagonTargetLowering::LowerHvxExtend(SDValue Op, SelectionDAG &DAG) const {
|
HexagonTargetLowering::LowerHvxExtend(SDValue Op, SelectionDAG &DAG) const {
|
||||||
// Sign- and zero-extends are legal.
|
// Sign- and zero-extends are legal.
|
||||||
assert(Op.getOpcode() == ISD::ANY_EXTEND_VECTOR_INREG);
|
assert(Op.getOpcode() == ISD::ANY_EXTEND_VECTOR_INREG);
|
||||||
return DAG.getZeroExtendVectorInReg(Op.getOperand(0), SDLoc(Op), ty(Op));
|
return DAG.getNode(ISD::ZERO_EXTEND_VECTOR_INREG, SDLoc(Op), ty(Op),
|
||||||
|
Op.getOperand(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
SDValue
|
SDValue
|
||||||
|
@ -5453,8 +5453,9 @@ static SDValue getExtendInVec(unsigned Opc, const SDLoc &DL, EVT VT, SDValue In,
|
|||||||
assert((X86ISD::VSEXT == Opc || X86ISD::VZEXT == Opc) && "Unexpected opcode");
|
assert((X86ISD::VSEXT == Opc || X86ISD::VZEXT == Opc) && "Unexpected opcode");
|
||||||
|
|
||||||
if (VT.is128BitVector() && InVT.is128BitVector())
|
if (VT.is128BitVector() && InVT.is128BitVector())
|
||||||
return X86ISD::VSEXT == Opc ? DAG.getSignExtendVectorInReg(In, DL, VT)
|
return DAG.getNode(X86ISD::VSEXT == Opc ? ISD::SIGN_EXTEND_VECTOR_INREG
|
||||||
: DAG.getZeroExtendVectorInReg(In, DL, VT);
|
: ISD::ZERO_EXTEND_VECTOR_INREG,
|
||||||
|
DL, VT, In);
|
||||||
|
|
||||||
// For 256-bit vectors, we only need the lower (128-bit) input half.
|
// For 256-bit vectors, we only need the lower (128-bit) input half.
|
||||||
// For 512-bit vectors, we only need the lower input half or quarter.
|
// For 512-bit vectors, we only need the lower input half or quarter.
|
||||||
@ -17459,7 +17460,7 @@ static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
|
|||||||
MVT HalfVT = MVT::getVectorVT(VT.getVectorElementType(),
|
MVT HalfVT = MVT::getVectorVT(VT.getVectorElementType(),
|
||||||
VT.getVectorNumElements() / 2);
|
VT.getVectorNumElements() / 2);
|
||||||
|
|
||||||
SDValue OpLo = DAG.getZeroExtendVectorInReg(In, dl, HalfVT);
|
SDValue OpLo = DAG.getNode(ISD::ZERO_EXTEND_VECTOR_INREG, dl, HalfVT, In);
|
||||||
|
|
||||||
SDValue ZeroVec = DAG.getConstant(0, dl, InVT);
|
SDValue ZeroVec = DAG.getConstant(0, dl, InVT);
|
||||||
SDValue Undef = DAG.getUNDEF(InVT);
|
SDValue Undef = DAG.getUNDEF(InVT);
|
||||||
@ -19884,7 +19885,7 @@ static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget &Subtarget,
|
|||||||
MVT HalfVT = MVT::getVectorVT(VT.getVectorElementType(),
|
MVT HalfVT = MVT::getVectorVT(VT.getVectorElementType(),
|
||||||
VT.getVectorNumElements() / 2);
|
VT.getVectorNumElements() / 2);
|
||||||
|
|
||||||
SDValue OpLo = DAG.getSignExtendVectorInReg(In, dl, HalfVT);
|
SDValue OpLo = DAG.getNode(ISD::SIGN_EXTEND_VECTOR_INREG, dl, HalfVT, In);
|
||||||
|
|
||||||
unsigned NumElems = InVT.getVectorNumElements();
|
unsigned NumElems = InVT.getVectorNumElements();
|
||||||
SmallVector<int,8> ShufMask(NumElems, -1);
|
SmallVector<int,8> ShufMask(NumElems, -1);
|
||||||
@ -19892,7 +19893,7 @@ static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget &Subtarget,
|
|||||||
ShufMask[i] = i + NumElems/2;
|
ShufMask[i] = i + NumElems/2;
|
||||||
|
|
||||||
SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, In, ShufMask);
|
SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, In, ShufMask);
|
||||||
OpHi = DAG.getSignExtendVectorInReg(OpHi, dl, HalfVT);
|
OpHi = DAG.getNode(ISD::SIGN_EXTEND_VECTOR_INREG, dl, HalfVT, OpHi);
|
||||||
|
|
||||||
return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
|
return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
|
||||||
}
|
}
|
||||||
@ -20138,7 +20139,8 @@ static SDValue LowerLoad(SDValue Op, const X86Subtarget &Subtarget,
|
|||||||
assert(TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND_VECTOR_INREG, RegVT) &&
|
assert(TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND_VECTOR_INREG, RegVT) &&
|
||||||
"We can't implement a sext load without SIGN_EXTEND_VECTOR_INREG!");
|
"We can't implement a sext load without SIGN_EXTEND_VECTOR_INREG!");
|
||||||
|
|
||||||
SDValue Shuff = DAG.getSignExtendVectorInReg(SlicedVec, dl, RegVT);
|
SDValue Shuff = DAG.getNode(ISD::SIGN_EXTEND_VECTOR_INREG, dl, RegVT,
|
||||||
|
SlicedVec);
|
||||||
return DAG.getMergeValues({Shuff, TF}, dl);
|
return DAG.getMergeValues({Shuff, TF}, dl);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -20823,7 +20825,8 @@ static SDValue getTargetVShiftNode(unsigned Opc, const SDLoc &dl, MVT VT,
|
|||||||
MVT AmtTy = ShAmt.getSimpleValueType() == MVT::i8 ? MVT::v16i8 : MVT::v8i16;
|
MVT AmtTy = ShAmt.getSimpleValueType() == MVT::i8 ? MVT::v16i8 : MVT::v8i16;
|
||||||
ShAmt = DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(ShAmt), AmtTy, ShAmt);
|
ShAmt = DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(ShAmt), AmtTy, ShAmt);
|
||||||
if (Subtarget.hasSSE41())
|
if (Subtarget.hasSSE41())
|
||||||
ShAmt = DAG.getZeroExtendVectorInReg(ShAmt, SDLoc(ShAmt), MVT::v2i64);
|
ShAmt = DAG.getNode(ISD::ZERO_EXTEND_VECTOR_INREG, SDLoc(ShAmt),
|
||||||
|
MVT::v2i64, ShAmt);
|
||||||
else {
|
else {
|
||||||
SDValue ByteShift = DAG.getConstant(
|
SDValue ByteShift = DAG.getConstant(
|
||||||
(128 - AmtTy.getScalarSizeInBits()) / 8, SDLoc(ShAmt), MVT::i8);
|
(128 - AmtTy.getScalarSizeInBits()) / 8, SDLoc(ShAmt), MVT::i8);
|
||||||
@ -20836,7 +20839,8 @@ static SDValue getTargetVShiftNode(unsigned Opc, const SDLoc &dl, MVT VT,
|
|||||||
} else if (Subtarget.hasSSE41() &&
|
} else if (Subtarget.hasSSE41() &&
|
||||||
ShAmt.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
|
ShAmt.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
|
||||||
ShAmt = DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(ShAmt), MVT::v4i32, ShAmt);
|
ShAmt = DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(ShAmt), MVT::v4i32, ShAmt);
|
||||||
ShAmt = DAG.getZeroExtendVectorInReg(ShAmt, SDLoc(ShAmt), MVT::v2i64);
|
ShAmt = DAG.getNode(ISD::ZERO_EXTEND_VECTOR_INREG, SDLoc(ShAmt),
|
||||||
|
MVT::v2i64, ShAmt);
|
||||||
} else {
|
} else {
|
||||||
SDValue ShOps[4] = {ShAmt, DAG.getConstant(0, dl, SVT), DAG.getUNDEF(SVT),
|
SDValue ShOps[4] = {ShAmt, DAG.getConstant(0, dl, SVT), DAG.getUNDEF(SVT),
|
||||||
DAG.getUNDEF(SVT)};
|
DAG.getUNDEF(SVT)};
|
||||||
@ -38349,9 +38353,9 @@ static SDValue combineToExtendVectorInReg(SDNode *N, SelectionDAG &DAG,
|
|||||||
(VT.is256BitVector() && Subtarget.hasAVX()) ||
|
(VT.is256BitVector() && Subtarget.hasAVX()) ||
|
||||||
(VT.is512BitVector() && Subtarget.useAVX512Regs())) {
|
(VT.is512BitVector() && Subtarget.useAVX512Regs())) {
|
||||||
SDValue ExOp = ExtendVecSize(DL, N0, VT.getSizeInBits());
|
SDValue ExOp = ExtendVecSize(DL, N0, VT.getSizeInBits());
|
||||||
return Opcode == ISD::SIGN_EXTEND
|
Opcode = Opcode == ISD::SIGN_EXTEND ? ISD::SIGN_EXTEND_VECTOR_INREG
|
||||||
? DAG.getSignExtendVectorInReg(ExOp, DL, VT)
|
: ISD::ZERO_EXTEND_VECTOR_INREG;
|
||||||
: DAG.getZeroExtendVectorInReg(ExOp, DL, VT);
|
return DAG.getNode(Opcode, DL, VT, ExOp);
|
||||||
}
|
}
|
||||||
|
|
||||||
auto SplitAndExtendInReg = [&](unsigned SplitSize) {
|
auto SplitAndExtendInReg = [&](unsigned SplitSize) {
|
||||||
@ -38360,14 +38364,15 @@ static SDValue combineToExtendVectorInReg(SDNode *N, SelectionDAG &DAG,
|
|||||||
EVT SubVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumSubElts);
|
EVT SubVT = EVT::getVectorVT(*DAG.getContext(), SVT, NumSubElts);
|
||||||
EVT InSubVT = EVT::getVectorVT(*DAG.getContext(), InSVT, NumSubElts);
|
EVT InSubVT = EVT::getVectorVT(*DAG.getContext(), InSVT, NumSubElts);
|
||||||
|
|
||||||
|
unsigned IROpc = Opcode == ISD::SIGN_EXTEND ? ISD::SIGN_EXTEND_VECTOR_INREG
|
||||||
|
: ISD::ZERO_EXTEND_VECTOR_INREG;
|
||||||
|
|
||||||
SmallVector<SDValue, 8> Opnds;
|
SmallVector<SDValue, 8> Opnds;
|
||||||
for (unsigned i = 0, Offset = 0; i != NumVecs; ++i, Offset += NumSubElts) {
|
for (unsigned i = 0, Offset = 0; i != NumVecs; ++i, Offset += NumSubElts) {
|
||||||
SDValue SrcVec = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InSubVT, N0,
|
SDValue SrcVec = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InSubVT, N0,
|
||||||
DAG.getIntPtrConstant(Offset, DL));
|
DAG.getIntPtrConstant(Offset, DL));
|
||||||
SrcVec = ExtendVecSize(DL, SrcVec, SplitSize);
|
SrcVec = ExtendVecSize(DL, SrcVec, SplitSize);
|
||||||
SrcVec = Opcode == ISD::SIGN_EXTEND
|
SrcVec = DAG.getNode(IROpc, DL, SubVT, SrcVec);
|
||||||
? DAG.getSignExtendVectorInReg(SrcVec, DL, SubVT)
|
|
||||||
: DAG.getZeroExtendVectorInReg(SrcVec, DL, SubVT);
|
|
||||||
Opnds.push_back(SrcVec);
|
Opnds.push_back(SrcVec);
|
||||||
}
|
}
|
||||||
return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Opnds);
|
return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, Opnds);
|
||||||
|
@ -86,7 +86,7 @@ TEST_F(AArch64SelectionDAGTest, computeKnownBits_ZERO_EXTEND_VECTOR_INREG) {
|
|||||||
auto InVecVT = EVT::getVectorVT(Context, Int8VT, 4);
|
auto InVecVT = EVT::getVectorVT(Context, Int8VT, 4);
|
||||||
auto OutVecVT = EVT::getVectorVT(Context, Int16VT, 2);
|
auto OutVecVT = EVT::getVectorVT(Context, Int16VT, 2);
|
||||||
auto InVec = DAG->getConstant(0, Loc, InVecVT);
|
auto InVec = DAG->getConstant(0, Loc, InVecVT);
|
||||||
auto Op = DAG->getZeroExtendVectorInReg(InVec, Loc, OutVecVT);
|
auto Op = DAG->getNode(ISD::ZERO_EXTEND_VECTOR_INREG, Loc, OutVecVT, InVec);
|
||||||
auto DemandedElts = APInt(4, 15);
|
auto DemandedElts = APInt(4, 15);
|
||||||
KnownBits Known;
|
KnownBits Known;
|
||||||
DAG->computeKnownBits(Op, Known, DemandedElts);
|
DAG->computeKnownBits(Op, Known, DemandedElts);
|
||||||
@ -118,7 +118,7 @@ TEST_F(AArch64SelectionDAGTest, ComputeNumSignBits_SIGN_EXTEND_VECTOR_INREG) {
|
|||||||
auto InVecVT = EVT::getVectorVT(Context, Int8VT, 4);
|
auto InVecVT = EVT::getVectorVT(Context, Int8VT, 4);
|
||||||
auto OutVecVT = EVT::getVectorVT(Context, Int16VT, 2);
|
auto OutVecVT = EVT::getVectorVT(Context, Int16VT, 2);
|
||||||
auto InVec = DAG->getConstant(1, Loc, InVecVT);
|
auto InVec = DAG->getConstant(1, Loc, InVecVT);
|
||||||
auto Op = DAG->getSignExtendVectorInReg(InVec, Loc, OutVecVT);
|
auto Op = DAG->getNode(ISD::SIGN_EXTEND_VECTOR_INREG, Loc, OutVecVT, InVec);
|
||||||
auto DemandedElts = APInt(4, 15);
|
auto DemandedElts = APInt(4, 15);
|
||||||
EXPECT_EQ(DAG->ComputeNumSignBits(Op, DemandedElts), 15u);
|
EXPECT_EQ(DAG->ComputeNumSignBits(Op, DemandedElts), 15u);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user