This replaces the `-prefer-intrinsic-cost` and `type-based-intrinsic-cost` flags with a single `-intrinsic-cost-strategy=<strategy>` flag. The possible strategies are: * `instruction-cost` - Use TargetTransformInfo::getInstructionCost() * `intrinsic-cost` - Use TargetTransformInfo::getIntrinsicInstrCost() * `type-based-intrinsic-cost` - Calculate the intrinsic cost based only on argument types
98 lines
4.0 KiB
C++
98 lines
4.0 KiB
C++
//===- CostModel.cpp ------ Cost Model Analysis ---------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines the cost model analysis. It provides a very basic cost
|
|
// estimation for LLVM-IR. This analysis uses the services of the codegen
|
|
// to approximate the cost of any IR instruction when lowered to machine
|
|
// instructions. The cost results are unit-less and the cost number represents
|
|
// the throughput of the machine assuming that all loads hit the cache, all
|
|
// branches are predicted, etc. The cost numbers can be added in order to
|
|
// compare two or more transformation alternatives.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Analysis/CostModel.h"
|
|
#include "llvm/Analysis/TargetLibraryInfo.h"
|
|
#include "llvm/Analysis/TargetTransformInfo.h"
|
|
#include "llvm/IR/Function.h"
|
|
#include "llvm/IR/IntrinsicInst.h"
|
|
#include "llvm/IR/PassManager.h"
|
|
#include "llvm/Pass.h"
|
|
#include "llvm/Support/CommandLine.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace llvm;
|
|
|
|
static cl::opt<TargetTransformInfo::TargetCostKind> CostKind(
|
|
"cost-kind", cl::desc("Target cost kind"),
|
|
cl::init(TargetTransformInfo::TCK_RecipThroughput),
|
|
cl::values(clEnumValN(TargetTransformInfo::TCK_RecipThroughput,
|
|
"throughput", "Reciprocal throughput"),
|
|
clEnumValN(TargetTransformInfo::TCK_Latency,
|
|
"latency", "Instruction latency"),
|
|
clEnumValN(TargetTransformInfo::TCK_CodeSize,
|
|
"code-size", "Code size"),
|
|
clEnumValN(TargetTransformInfo::TCK_SizeAndLatency,
|
|
"size-latency", "Code size and latency")));
|
|
|
|
enum class IntrinsicCostStrategy {
|
|
InstructionCost,
|
|
IntrinsicCost,
|
|
TypeBasedIntrinsicCost,
|
|
};
|
|
|
|
static cl::opt<IntrinsicCostStrategy> IntrinsicCost(
|
|
"intrinsic-cost-strategy",
|
|
cl::desc("Costing strategy for intrinsic instructions"),
|
|
cl::init(IntrinsicCostStrategy::InstructionCost),
|
|
cl::values(
|
|
clEnumValN(IntrinsicCostStrategy::InstructionCost, "instruction-cost",
|
|
"Use TargetTransformInfo::getInstructionCost"),
|
|
clEnumValN(IntrinsicCostStrategy::IntrinsicCost, "intrinsic-cost",
|
|
"Use TargetTransformInfo::getIntrinsicInstrCost"),
|
|
clEnumValN(
|
|
IntrinsicCostStrategy::TypeBasedIntrinsicCost,
|
|
"type-based-intrinsic-cost",
|
|
"Calculate the intrinsic cost based only on argument types")));
|
|
|
|
#define CM_NAME "cost-model"
|
|
#define DEBUG_TYPE CM_NAME
|
|
|
|
PreservedAnalyses CostModelPrinterPass::run(Function &F,
|
|
FunctionAnalysisManager &AM) {
|
|
auto &TTI = AM.getResult<TargetIRAnalysis>(F);
|
|
auto &TLI = AM.getResult<TargetLibraryAnalysis>(F);
|
|
OS << "Printing analysis 'Cost Model Analysis' for function '" << F.getName() << "':\n";
|
|
for (BasicBlock &B : F) {
|
|
for (Instruction &Inst : B) {
|
|
// TODO: Use a pass parameter instead of cl::opt CostKind to determine
|
|
// which cost kind to print.
|
|
InstructionCost Cost;
|
|
auto *II = dyn_cast<IntrinsicInst>(&Inst);
|
|
if (II && IntrinsicCost != IntrinsicCostStrategy::InstructionCost) {
|
|
IntrinsicCostAttributes ICA(
|
|
II->getIntrinsicID(), *II, InstructionCost::getInvalid(),
|
|
/*TypeBasedOnly=*/IntrinsicCost ==
|
|
IntrinsicCostStrategy::TypeBasedIntrinsicCost,
|
|
&TLI);
|
|
Cost = TTI.getIntrinsicInstrCost(ICA, CostKind);
|
|
} else {
|
|
Cost = TTI.getInstructionCost(&Inst, CostKind);
|
|
}
|
|
|
|
if (auto CostVal = Cost.getValue())
|
|
OS << "Cost Model: Found an estimated cost of " << *CostVal;
|
|
else
|
|
OS << "Cost Model: Invalid cost";
|
|
|
|
OS << " for instruction: " << Inst << "\n";
|
|
}
|
|
}
|
|
return PreservedAnalyses::all();
|
|
}
|