[llvm] c8dd852 - [RISCV][TTI] Use early return to simplify costShuffleViaVRegSplitting [nfc]
Philip Reames via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 4 12:28:08 PST 2025
Author: Philip Reames
Date: 2025-03-04T12:27:37-08:00
New Revision: c8dd8522faff572b5823304d66cdb625b6b8b6bc
URL: https://github.com/llvm/llvm-project/commit/c8dd8522faff572b5823304d66cdb625b6b8b6bc
DIFF: https://github.com/llvm/llvm-project/commit/c8dd8522faff572b5823304d66cdb625b6b8b6bc.diff
LOG: [RISCV][TTI] Use early return to simplify costShuffleViaVRegSplitting [nfc]
Added:
Modified:
llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp b/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
index 4f9f09addb3ed..70c8bd2f86c39 100644
--- a/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
+++ b/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
@@ -395,17 +395,17 @@ costShuffleViaVRegSplitting(RISCVTTIImpl &TTI, MVT LegalVT,
std::optional<unsigned> VLen, VectorType *Tp,
ArrayRef<int> Mask, TTI::TargetCostKind CostKind) {
assert(LegalVT.isFixedLengthVector());
- InstructionCost NumOfDests = InstructionCost::getInvalid();
- if (VLen && !Mask.empty()) {
- MVT ElemVT = LegalVT.getVectorElementType();
- unsigned ElemsPerVReg = *VLen / ElemVT.getFixedSizeInBits();
- LegalVT = TTI.getTypeLegalizationCost(
- FixedVectorType::get(Tp->getElementType(), ElemsPerVReg))
- .second;
- // Number of destination vectors after legalization:
- NumOfDests = divideCeil(Mask.size(), LegalVT.getVectorNumElements());
- }
- if (!NumOfDests.isValid() || NumOfDests <= 1 ||
+ if (!VLen || Mask.empty())
+ return InstructionCost::getInvalid();
+ MVT ElemVT = LegalVT.getVectorElementType();
+ unsigned ElemsPerVReg = *VLen / ElemVT.getFixedSizeInBits();
+ LegalVT = TTI.getTypeLegalizationCost(
+ FixedVectorType::get(Tp->getElementType(), ElemsPerVReg))
+ .second;
+ // Number of destination vectors after legalization:
+ InstructionCost NumOfDests =
+ divideCeil(Mask.size(), LegalVT.getVectorNumElements());
+ if (NumOfDests <= 1 ||
LegalVT.getVectorElementType().getSizeInBits() !=
Tp->getElementType()->getPrimitiveSizeInBits() ||
LegalVT.getVectorNumElements() >= Tp->getElementCount().getFixedValue())
More information about the llvm-commits
mailing list