blob: 8f483dfefc41eda9126ec631e7f6a90896c8d120 [file] [log] [blame]
Teresa Johnson1e44b5d2016-07-12 21:13:44 +00001//===-- IndirectCallPromotionAnalysis.cpp - Find promotion candidates ===//
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// Helper methods for identifying profitable indirect call promotion
11// candidates for an instruction when the indirect-call value profile metadata
12// is available.
13//
14//===----------------------------------------------------------------------===//
15
16#include "llvm/Analysis/IndirectCallPromotionAnalysis.h"
17#include "llvm/ADT/STLExtras.h"
18#include "llvm/Analysis/IndirectCallSiteVisitor.h"
19#include "llvm/IR/CallSite.h"
20#include "llvm/IR/DiagnosticInfo.h"
21#include "llvm/IR/InstIterator.h"
22#include "llvm/IR/InstVisitor.h"
23#include "llvm/IR/Instructions.h"
24#include "llvm/IR/IntrinsicInst.h"
25#include "llvm/ProfileData/InstrProf.h"
26#include "llvm/Support/Debug.h"
27#include <string>
28#include <utility>
29#include <vector>
30
31using namespace llvm;
32
33#define DEBUG_TYPE "pgo-icall-prom-analysis"
34
Teresa Johnson1e44b5d2016-07-12 21:13:44 +000035// The percent threshold for the direct-call target (this call site vs the
Dehao Chenf4240b52017-07-28 01:02:54 +000036// remaining call count) for it to be considered as the promotion target.
37static cl::opt<unsigned> ICPRemainingPercentThreshold(
38 "icp-remaining-percent-threshold", cl::init(30), cl::Hidden, cl::ZeroOrMore,
39 cl::desc("The percentage threshold against remaining unpromoted indirect "
40 "call count for the promotion"));
41
42// The percent threshold for the direct-call target (this call site vs the
Teresa Johnson1e44b5d2016-07-12 21:13:44 +000043// total call count) for it to be considered as the promotion target.
44static cl::opt<unsigned>
Dehao Chenf4240b52017-07-28 01:02:54 +000045 ICPTotalPercentThreshold("icp-total-percent-threshold", cl::init(5),
46 cl::Hidden, cl::ZeroOrMore,
47 cl::desc("The percentage threshold against total "
48 "count for the promotion"));
Teresa Johnson1e44b5d2016-07-12 21:13:44 +000049
50// Set the maximum number of targets to promote for a single indirect-call
51// callsite.
52static cl::opt<unsigned>
Dehao Chene70a4722017-07-28 01:03:10 +000053 MaxNumPromotions("icp-max-prom", cl::init(3), cl::Hidden, cl::ZeroOrMore,
Teresa Johnson1e44b5d2016-07-12 21:13:44 +000054 cl::desc("Max number of promotions for a single indirect "
55 "call callsite"));
56
57ICallPromotionAnalysis::ICallPromotionAnalysis() {
58 ValueDataArray = llvm::make_unique<InstrProfValueData[]>(MaxNumPromotions);
59}
60
61bool ICallPromotionAnalysis::isPromotionProfitable(uint64_t Count,
Dehao Chenf4240b52017-07-28 01:02:54 +000062 uint64_t TotalCount,
63 uint64_t RemainingCount) {
Dehao Chen34cfcb22017-08-08 20:57:33 +000064 return Count * 100 >= ICPRemainingPercentThreshold * RemainingCount &&
Dehao Chenf4240b52017-07-28 01:02:54 +000065 Count * 100 >= ICPTotalPercentThreshold * TotalCount;
Teresa Johnson1e44b5d2016-07-12 21:13:44 +000066}
67
68// Indirect-call promotion heuristic. The direct targets are sorted based on
69// the count. Stop at the first target that is not promoted. Returns the
70// number of candidates deemed profitable.
71uint32_t ICallPromotionAnalysis::getProfitablePromotionCandidates(
72 const Instruction *Inst, uint32_t NumVals, uint64_t TotalCount) {
73 ArrayRef<InstrProfValueData> ValueDataRef(ValueDataArray.get(), NumVals);
74
75 DEBUG(dbgs() << " \nWork on callsite " << *Inst << " Num_targets: " << NumVals
76 << "\n");
77
78 uint32_t I = 0;
Dehao Chenf4240b52017-07-28 01:02:54 +000079 uint64_t RemainingCount = TotalCount;
Teresa Johnson1e44b5d2016-07-12 21:13:44 +000080 for (; I < MaxNumPromotions && I < NumVals; I++) {
81 uint64_t Count = ValueDataRef[I].Count;
Dehao Chenf4240b52017-07-28 01:02:54 +000082 assert(Count <= RemainingCount);
Teresa Johnson1e44b5d2016-07-12 21:13:44 +000083 DEBUG(dbgs() << " Candidate " << I << " Count=" << Count
Teresa Johnson835df562016-07-12 23:49:17 +000084 << " Target_func: " << ValueDataRef[I].Value << "\n");
Teresa Johnson1e44b5d2016-07-12 21:13:44 +000085
Dehao Chenf4240b52017-07-28 01:02:54 +000086 if (!isPromotionProfitable(Count, TotalCount, RemainingCount)) {
Teresa Johnson1e44b5d2016-07-12 21:13:44 +000087 DEBUG(dbgs() << " Not promote: Cold target.\n");
88 return I;
89 }
Dehao Chenf4240b52017-07-28 01:02:54 +000090 RemainingCount -= Count;
Teresa Johnson1e44b5d2016-07-12 21:13:44 +000091 }
92 return I;
93}
94
95ArrayRef<InstrProfValueData>
96ICallPromotionAnalysis::getPromotionCandidatesForInstruction(
97 const Instruction *I, uint32_t &NumVals, uint64_t &TotalCount,
98 uint32_t &NumCandidates) {
99 bool Res =
100 getValueProfDataFromInst(*I, IPVK_IndirectCallTarget, MaxNumPromotions,
101 ValueDataArray.get(), NumVals, TotalCount);
102 if (!Res) {
103 NumCandidates = 0;
104 return ArrayRef<InstrProfValueData>();
105 }
106 NumCandidates = getProfitablePromotionCandidates(I, NumVals, TotalCount);
107 return ArrayRef<InstrProfValueData>(ValueDataArray.get(), NumVals);
108}