blob: 3d55bf20bb4021a40f593dce4daa4f0a722fa89f [file] [log] [blame]
Nadav Rotem6bed58e2012-11-02 21:48:17 +00001//===- CostModel.cpp ------ Cost Model Analysis ---------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the cost model analysis. It provides a very basic cost
Nadav Rotem99b7a992012-12-24 05:51:12 +000011// estimation for LLVM-IR. This analysis uses the services of the codegen
12// to approximate the cost of any IR instruction when lowered to machine
13// instructions. The cost results are unit-less and the cost number represents
14// the throughput of the machine assuming that all loads hit the cache, all
15// branches are predicted, etc. The cost numbers can be added in order to
16// compare two or more transformation alternatives.
Nadav Rotem6bed58e2012-11-02 21:48:17 +000017//
18//===----------------------------------------------------------------------===//
19
Arnold Schwaighofer65457b62013-09-17 18:06:50 +000020#include "llvm/ADT/STLExtras.h"
Nadav Rotem6bed58e2012-11-02 21:48:17 +000021#include "llvm/Analysis/Passes.h"
Chandler Carruthbe049292013-01-07 03:08:10 +000022#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000023#include "llvm/IR/Function.h"
Nadav Rotem6bed58e2012-11-02 21:48:17 +000024#include "llvm/Pass.h"
Arnold Schwaighofer65457b62013-09-17 18:06:50 +000025#include "llvm/Support/CommandLine.h"
Nadav Rotem6bed58e2012-11-02 21:48:17 +000026#include "llvm/Support/Debug.h"
27#include "llvm/Support/raw_ostream.h"
28using namespace llvm;
Guozhi Wei19969b82017-09-08 22:29:17 +000029
30static cl::opt<TargetTransformInfo::TargetCostKind> CostKind(
31 "cost-kind", cl::desc("Target cost kind"),
32 cl::init(TargetTransformInfo::TCK_RecipThroughput),
33 cl::values(clEnumValN(TargetTransformInfo::TCK_RecipThroughput,
34 "throughput", "Reciprocal throughput"),
35 clEnumValN(TargetTransformInfo::TCK_Latency,
36 "latency", "Instruction latency"),
37 clEnumValN(TargetTransformInfo::TCK_CodeSize,
38 "code-size", "Code size")));
Nadav Rotem6bed58e2012-11-02 21:48:17 +000039
Chandler Carruth4da25372014-04-22 02:48:03 +000040#define CM_NAME "cost-model"
41#define DEBUG_TYPE CM_NAME
42
Nadav Rotem6bed58e2012-11-02 21:48:17 +000043namespace {
44 class CostModelAnalysis : public FunctionPass {
45
46 public:
47 static char ID; // Class identification, replacement for typeinfo
Craig Topper570e52c2014-04-15 04:59:12 +000048 CostModelAnalysis() : FunctionPass(ID), F(nullptr), TTI(nullptr) {
Nadav Rotem6bed58e2012-11-02 21:48:17 +000049 initializeCostModelAnalysisPass(
50 *PassRegistry::getPassRegistry());
51 }
52
53 /// Returns the expected cost of the instruction.
54 /// Returns -1 if the cost is unknown.
55 /// Note, this method does not cache the cost calculation and it
56 /// can be expensive in some cases.
Guozhi Wei19969b82017-09-08 22:29:17 +000057 unsigned getInstructionCost(const Instruction *I) const {
58 return TTI->getInstructionCost(I, TargetTransformInfo::TCK_RecipThroughput);
59 }
Nadav Rotem6bed58e2012-11-02 21:48:17 +000060
61 private:
Craig Topperc37e6c02014-03-05 07:30:04 +000062 void getAnalysisUsage(AnalysisUsage &AU) const override;
63 bool runOnFunction(Function &F) override;
64 void print(raw_ostream &OS, const Module*) const override;
Nadav Rotem6bed58e2012-11-02 21:48:17 +000065
66 /// The function that we analyze.
67 Function *F;
Chandler Carruth194bd712013-01-05 10:09:33 +000068 /// Target information.
69 const TargetTransformInfo *TTI;
Nadav Rotem6bed58e2012-11-02 21:48:17 +000070 };
71} // End of anonymous namespace
72
73// Register this pass.
74char CostModelAnalysis::ID = 0;
75static const char cm_name[] = "Cost Model Analysis";
76INITIALIZE_PASS_BEGIN(CostModelAnalysis, CM_NAME, cm_name, false, true)
77INITIALIZE_PASS_END (CostModelAnalysis, CM_NAME, cm_name, false, true)
78
79FunctionPass *llvm::createCostModelAnalysisPass() {
80 return new CostModelAnalysis();
81}
82
83void
84CostModelAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
85 AU.setPreservesAll();
86}
87
88bool
89CostModelAnalysis::runOnFunction(Function &F) {
90 this->F = &F;
Chandler Carrutha6a87b52015-01-31 03:43:40 +000091 auto *TTIWP = getAnalysisIfAvailable<TargetTransformInfoWrapperPass>();
Chandler Carruthbaceda72015-02-01 12:01:35 +000092 TTI = TTIWP ? &TTIWP->getTTI(F) : nullptr;
Nadav Rotem6bed58e2012-11-02 21:48:17 +000093
94 return false;
95}
96
Nadav Rotem6bed58e2012-11-02 21:48:17 +000097void CostModelAnalysis::print(raw_ostream &OS, const Module*) const {
98 if (!F)
99 return;
100
Benjamin Kramer8d0d2b62016-06-26 17:27:42 +0000101 for (BasicBlock &B : *F) {
102 for (Instruction &Inst : B) {
Guozhi Wei19969b82017-09-08 22:29:17 +0000103 unsigned Cost = TTI->getInstructionCost(&Inst, CostKind);
Nadav Rotem6bed58e2012-11-02 21:48:17 +0000104 if (Cost != (unsigned)-1)
105 OS << "Cost Model: Found an estimated cost of " << Cost;
106 else
107 OS << "Cost Model: Unknown cost";
108
Benjamin Kramer8d0d2b62016-06-26 17:27:42 +0000109 OS << " for instruction: " << Inst << "\n";
Nadav Rotem6bed58e2012-11-02 21:48:17 +0000110 }
111 }
112}