[llvm] e2d140e - [TTI] Add isExpensiveToSpeculativelyExecute wrapper
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Sat Sep 3 05:12:43 PDT 2022
Author: Simon Pilgrim
Date: 2022-09-03T13:12:22+01:00
New Revision: e2d140e9c33739032db40b18a019ece4fb3f687a
URL: https://github.com/llvm/llvm-project/commit/e2d140e9c33739032db40b18a019ece4fb3f687a
DIFF: https://github.com/llvm/llvm-project/commit/e2d140e9c33739032db40b18a019ece4fb3f687a.diff
LOG: [TTI] Add isExpensiveToSpeculativelyExecute wrapper
CGP uses a raw `getInstructionCost(I, TargetTransformInfo::TCK_SizeAndLatency) >= TCC_Expensive` check to see if its better to move an expensive instruction used in a select behind a branch instead.
This is causing issues with upcoming improvements to TCK_SizeAndLatency costs on X86 as we need to use TCK_SizeAndLatency as an uop count (so its compatible with various target-specific buffer sizes - see D132288), but we can have instructions that have a low TCK_SizeAndLatency value but should still be treated as 'expensive' (FDIV for example) - by adding a isExpensiveToSpeculativelyExecute wrapper we can keep the current behaviour but still add an x86 override in a future patch when the cost tables are updated to compensate.
Added:
Modified:
llvm/include/llvm/Analysis/TargetTransformInfo.h
llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
llvm/lib/Analysis/TargetTransformInfo.cpp
llvm/lib/CodeGen/CodeGenPrepare.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/Analysis/TargetTransformInfo.h b/llvm/include/llvm/Analysis/TargetTransformInfo.h
index 918433111b320..525b5db10e35c 100644
--- a/llvm/include/llvm/Analysis/TargetTransformInfo.h
+++ b/llvm/include/llvm/Analysis/TargetTransformInfo.h
@@ -832,6 +832,14 @@ class TargetTransformInfo {
/// Return true if the hardware has a fast square-root instruction.
bool haveFastSqrt(Type *Ty) const;
+ /// Return true if the cost of the instruction is too high to speculatively
+ /// execute and should be kept behind a branch.
+ /// This normally just wraps around a getInstructionCost() call, but some
+ /// targets might report a low TCK_SizeAndLatency value that is incompatible
+ /// with the fixed TCC_Expensive value.
+ /// NOTE: This assumes the instruction passes isSafeToSpeculativelyExecute().
+ bool isExpensiveToSpeculativelyExecute(const Instruction *I) const;
+
/// Return true if it is faster to check if a floating-point value is NaN
/// (or not-NaN) versus a comparison against a constant FP zero value.
/// Targets should override this if materializing a 0.0 for comparison is
@@ -1672,6 +1680,7 @@ class TargetTransformInfo::Concept {
bool *Fast) = 0;
virtual PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) = 0;
virtual bool haveFastSqrt(Type *Ty) = 0;
+ virtual bool isExpensiveToSpeculativelyExecute(const Instruction *I) = 0;
virtual bool isFCmpOrdCheaperThanFCmpZero(Type *Ty) = 0;
virtual InstructionCost getFPOpCost(Type *Ty) = 0;
virtual InstructionCost getIntImmCodeSizeCost(unsigned Opc, unsigned Idx,
@@ -2164,6 +2173,10 @@ class TargetTransformInfo::Model final : public TargetTransformInfo::Concept {
}
bool haveFastSqrt(Type *Ty) override { return Impl.haveFastSqrt(Ty); }
+ bool isExpensiveToSpeculativelyExecute(const Instruction* I) override {
+ return Impl.isExpensiveToSpeculativelyExecute(I);
+ }
+
bool isFCmpOrdCheaperThanFCmpZero(Type *Ty) override {
return Impl.isFCmpOrdCheaperThanFCmpZero(Ty);
}
diff --git a/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h b/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
index 080e85922a0da..8342a82197ea8 100644
--- a/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
+++ b/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
@@ -374,6 +374,8 @@ class TargetTransformInfoImplBase {
bool haveFastSqrt(Type *Ty) const { return false; }
+ bool isExpensiveToSpeculativelyExecute(const Instruction *I) { return true; }
+
bool isFCmpOrdCheaperThanFCmpZero(Type *Ty) const { return true; }
InstructionCost getFPOpCost(Type *Ty) const {
@@ -1270,6 +1272,14 @@ class TargetTransformInfoImplCRTPBase : public TargetTransformInfoImplBase {
// don't know the throughput cost.
return CostKind == TTI::TCK_RecipThroughput ? -1 : TTI::TCC_Basic;
}
+
+ bool isExpensiveToSpeculativelyExecute(const Instruction *I) {
+ auto *TargetTTI = static_cast<T *>(this);
+ SmallVector<const Value *, 4> Ops(I->operand_values());
+ InstructionCost Cost = TargetTTI->getInstructionCost(
+ I, Ops, TargetTransformInfo::TCK_SizeAndLatency);
+ return Cost >= TargetTransformInfo::TCC_Expensive;
+ }
};
} // namespace llvm
diff --git a/llvm/lib/Analysis/TargetTransformInfo.cpp b/llvm/lib/Analysis/TargetTransformInfo.cpp
index f7533fb79dcf9..d009f2fc0bdd0 100644
--- a/llvm/lib/Analysis/TargetTransformInfo.cpp
+++ b/llvm/lib/Analysis/TargetTransformInfo.cpp
@@ -572,6 +572,11 @@ bool TargetTransformInfo::haveFastSqrt(Type *Ty) const {
return TTIImpl->haveFastSqrt(Ty);
}
+bool TargetTransformInfo::isExpensiveToSpeculativelyExecute(
+ const Instruction *I) const {
+ return TTIImpl->isExpensiveToSpeculativelyExecute(I);
+}
+
bool TargetTransformInfo::isFCmpOrdCheaperThanFCmpZero(Type *Ty) const {
return TTIImpl->isFCmpOrdCheaperThanFCmpZero(Ty);
}
diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp
index 6786e901ba61e..cd6ee4e792c22 100644
--- a/llvm/lib/CodeGen/CodeGenPrepare.cpp
+++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp
@@ -6604,8 +6604,7 @@ static bool sinkSelectOperand(const TargetTransformInfo *TTI, Value *V) {
// If it's safe to speculatively execute, then it should not have side
// effects; therefore, it's safe to sink and possibly *not* execute.
return I && I->hasOneUse() && isSafeToSpeculativelyExecute(I) &&
- TTI->getInstructionCost(I, TargetTransformInfo::TCK_SizeAndLatency) >=
- TargetTransformInfo::TCC_Expensive;
+ TTI->isExpensiveToSpeculativelyExecute(I);
}
/// Returns true if a SelectInst should be turned into an explicit branch.
More information about the llvm-commits
mailing list