From: Vitaly Buka Date: Tue, 2 Aug 2022 02:53:09 +0000 (-0700) Subject: [NFC][Inliner] Simplify clamping in addCost X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26dd42705c2af0b8f6e5d6cdb32c9bd5ed9524eb;p=platform%2Fupstream%2Fllvm.git [NFC][Inliner] Simplify clamping in addCost --- diff --git a/llvm/lib/Analysis/InlineCost.cpp b/llvm/lib/Analysis/InlineCost.cpp index d0a33dd..ee0cb7f 100644 --- a/llvm/lib/Analysis/InlineCost.cpp +++ b/llvm/lib/Analysis/InlineCost.cpp @@ -42,6 +42,7 @@ #include "llvm/Support/Debug.h" #include "llvm/Support/FormattedStream.h" #include "llvm/Support/raw_ostream.h" +#include #include using namespace llvm; @@ -502,7 +503,6 @@ int64_t getExpectedNumberOfCompare(int NumCaseCluster) { /// FIXME: if it is necessary to derive from InlineCostCallAnalyzer, note /// the FIXME in onLoweredCall, when instantiating an InlineCostCallAnalyzer class InlineCostCallAnalyzer final : public CallAnalyzer { - const int CostUpperBound = INT_MAX - InlineConstants::InstrCost - 1; const bool ComputeFullInlineCost; int LoadEliminationCost = 0; /// Bonus to be applied when percentage of vector instructions in callee is @@ -579,9 +579,9 @@ class InlineCostCallAnalyzer final : public CallAnalyzer { BlockFrequencyInfo *CallerBFI); /// Handle a capped 'int' increment for Cost. - void addCost(int64_t Inc, int64_t UpperBound = INT_MAX) { - assert(UpperBound > 0 && UpperBound <= INT_MAX && "invalid upper bound"); - Cost = std::min(UpperBound, Cost + Inc); + void addCost(int64_t Inc) { + Inc = std::max(std::min(INT_MAX, Inc), INT_MIN); + Cost = std::max(std::min(INT_MAX, Inc + Cost), INT_MIN); } void onDisableSROA(AllocaInst *Arg) override { @@ -662,7 +662,7 @@ class InlineCostCallAnalyzer final : public CallAnalyzer { static_cast(JumpTableSize) * InlineConstants::InstrCost + 4 * InlineConstants::InstrCost; - addCost(JTCost, static_cast(CostUpperBound)); + addCost(JTCost); return; } @@ -677,7 +677,7 @@ class InlineCostCallAnalyzer final : public CallAnalyzer { int64_t SwitchCost = ExpectedNumberOfCompare * 2 * InlineConstants::InstrCost; - addCost(SwitchCost, static_cast(CostUpperBound)); + addCost(SwitchCost); } void onMissedSimplification() override { addCost(InlineConstants::InstrCost);