[llvm] 832eb93 - [RISCV] Reduce some duplicate code in lowerBUILD_VECTOR. NFC
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 20 21:52:44 PDT 2023
Author: Craig Topper
Date: 2023-06-20T21:52:14-07:00
New Revision: 832eb93251f6d415e384c77907af7002b38f9f67
URL: https://github.com/llvm/llvm-project/commit/832eb93251f6d415e384c77907af7002b38f9f67
DIFF: https://github.com/llvm/llvm-project/commit/832eb93251f6d415e384c77907af7002b38f9f67.diff
LOG: [RISCV] Reduce some duplicate code in lowerBUILD_VECTOR. NFC
The code at the beginning of the loop body and after the loop are
identifical. Move it to the end of the loop body by making a few
adjustments.
Added:
Modified:
llvm/lib/Target/RISCV/RISCVISelLowering.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
index 8b5c8f4657dac..040fb6836cf90 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -2973,10 +2973,16 @@ static SDValue lowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG,
unsigned BitPos = 0, IntegerEltIdx = 0;
SDValue Vec = DAG.getUNDEF(IntegerViaVecVT);
- for (unsigned I = 0; I < NumElts; I++, BitPos++) {
- // Once we accumulate enough bits to fill our scalar type, insert into
- // our vector and clear our accumulated data.
- if (I != 0 && I % NumViaIntegerBits == 0) {
+ for (unsigned I = 0; I < NumElts;) {
+ SDValue V = Op.getOperand(I);
+ bool BitValue = !V.isUndef() && cast<ConstantSDNode>(V)->getZExtValue();
+ Bits |= ((uint64_t)BitValue << BitPos);
+ ++BitPos;
+ ++I;
+
+ // Once we accumulate enough bits to fill our scalar type or process the
+ // last element, insert into our vector and clear our accumulated data.
+ if (I % NumViaIntegerBits == 0 || I == NumElts) {
if (NumViaIntegerBits <= 32)
Bits = SignExtend64<32>(Bits);
SDValue Elt = DAG.getConstant(Bits, DL, XLenVT);
@@ -2986,19 +2992,8 @@ static SDValue lowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG,
BitPos = 0;
IntegerEltIdx++;
}
- SDValue V = Op.getOperand(I);
- bool BitValue = !V.isUndef() && cast<ConstantSDNode>(V)->getZExtValue();
- Bits |= ((uint64_t)BitValue << BitPos);
}
- // Insert the (remaining) scalar value into position in our integer
- // vector type.
- if (NumViaIntegerBits <= 32)
- Bits = SignExtend64<32>(Bits);
- SDValue Elt = DAG.getConstant(Bits, DL, XLenVT);
- Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, IntegerViaVecVT, Vec, Elt,
- DAG.getConstant(IntegerEltIdx, DL, XLenVT));
-
if (NumElts < NumViaIntegerBits) {
// If we're producing a smaller vector than our minimum legal integer
// type, bitcast to the equivalent (known-legal) mask type, and extract
More information about the llvm-commits
mailing list