[llvm] bd9dce8 - [CostModel] getUserCost for intrinsic throughput
Sam Parker via llvm-commits
llvm-commits at lists.llvm.org
Tue May 26 04:25:18 PDT 2020
Author: Sam Parker
Date: 2020-05-26T12:23:37+01:00
New Revision: bd9dce8f9acd710ed62bab44ad3563209503cd72
URL: https://github.com/llvm/llvm-project/commit/bd9dce8f9acd710ed62bab44ad3563209503cd72
DIFF: https://github.com/llvm/llvm-project/commit/bd9dce8f9acd710ed62bab44ad3563209503cd72.diff
LOG: [CostModel] getUserCost for intrinsic throughput
Last part of recommitting 'Unify Intrinsic Costs'
259eb619ff6dcd5b6111d1686e18559b9ca004d4. This patch now uses
getUserCost from getInstructionThroughput.
Differential Revision: https://reviews.llvm.org/D80012
Added:
Modified:
llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
llvm/lib/Analysis/TargetTransformInfo.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h b/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
index bd8d29cb22a1..f98b8bf7da2c 100644
--- a/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
+++ b/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
@@ -776,6 +776,14 @@ class TargetTransformInfoImplCRTPBase : public TargetTransformInfoImplBase {
TTI::TargetCostKind CostKind) {
auto *TargetTTI = static_cast<T *>(this);
+ // FIXME: We shouldn't have to special-case intrinsics here.
+ if (CostKind == TTI::TCK_RecipThroughput) {
+ if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(U)) {
+ IntrinsicCostAttributes CostAttrs(*II);
+ return TargetTTI->getIntrinsicInstrCost(CostAttrs, CostKind);
+ }
+ }
+
// FIXME: Unlikely to be true for anything but CodeSize.
if (const auto *CB = dyn_cast<CallBase>(U)) {
const Function *F = CB->getCalledFunction();
diff --git a/llvm/lib/Analysis/TargetTransformInfo.cpp b/llvm/lib/Analysis/TargetTransformInfo.cpp
index a14199515faf..9f319c40ae6a 100644
--- a/llvm/lib/Analysis/TargetTransformInfo.cpp
+++ b/llvm/lib/Analysis/TargetTransformInfo.cpp
@@ -260,7 +260,8 @@ int TargetTransformInfo::getUserCost(const User *U,
ArrayRef<const Value *> Operands,
enum TargetCostKind CostKind) const {
int Cost = TTIImpl->getUserCost(U, Operands, CostKind);
- assert(Cost >= 0 && "TTI should not produce negative costs!");
+ assert((CostKind == TTI::TCK_RecipThroughput || Cost >= 0) &&
+ "TTI should not produce negative costs!");
return Cost;
}
@@ -1419,11 +1420,7 @@ int TargetTransformInfo::getInstructionThroughput(const Instruction *I) const {
return TTIImpl->getShuffleCost(SK_PermuteTwoSrc, Ty, 0, nullptr);
}
case Instruction::Call:
- if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
- IntrinsicCostAttributes CostAttrs(*II);
- return getIntrinsicInstrCost(CostAttrs, CostKind);
- }
- return -1;
+ return getUserCost(I, CostKind);
default:
// We don't have any information on this instruction.
return -1;
More information about the llvm-commits
mailing list