1 //===- IndirectCallPromotion.cpp - Optimizations based on value profiling -===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file implements the transformation that promotes indirect calls to
10 // conditional direct calls when the indirect-call value profile metadata is
13 //===----------------------------------------------------------------------===//
15 #include "llvm/ADT/ArrayRef.h"
16 #include "llvm/ADT/STLExtras.h"
17 #include "llvm/ADT/SmallVector.h"
18 #include "llvm/ADT/Statistic.h"
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/Analysis/IndirectCallPromotionAnalysis.h"
21 #include "llvm/Analysis/IndirectCallVisitor.h"
22 #include "llvm/Analysis/OptimizationRemarkEmitter.h"
23 #include "llvm/Analysis/ProfileSummaryInfo.h"
24 #include "llvm/IR/Attributes.h"
25 #include "llvm/IR/BasicBlock.h"
26 #include "llvm/IR/CallSite.h"
27 #include "llvm/IR/DerivedTypes.h"
28 #include "llvm/IR/DiagnosticInfo.h"
29 #include "llvm/IR/Function.h"
30 #include "llvm/IR/IRBuilder.h"
31 #include "llvm/IR/InstrTypes.h"
32 #include "llvm/IR/Instruction.h"
33 #include "llvm/IR/Instructions.h"
34 #include "llvm/IR/LLVMContext.h"
35 #include "llvm/IR/MDBuilder.h"
36 #include "llvm/IR/PassManager.h"
37 #include "llvm/IR/Type.h"
38 #include "llvm/IR/Value.h"
39 #include "llvm/Pass.h"
40 #include "llvm/ProfileData/InstrProf.h"
41 #include "llvm/Support/Casting.h"
42 #include "llvm/Support/CommandLine.h"
43 #include "llvm/Support/Debug.h"
44 #include "llvm/Support/Error.h"
45 #include "llvm/Support/raw_ostream.h"
46 #include "llvm/Transforms/Instrumentation.h"
47 #include "llvm/Transforms/Instrumentation/PGOInstrumentation.h"
48 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
49 #include "llvm/Transforms/Utils/CallPromotionUtils.h"
59 #define DEBUG_TYPE "pgo-icall-prom"
61 STATISTIC(NumOfPGOICallPromotion
, "Number of indirect call promotions.");
62 STATISTIC(NumOfPGOICallsites
, "Number of indirect call candidate sites.");
64 // Command line option to disable indirect-call promotion with the default as
65 // false. This is for debug purpose.
66 static cl::opt
<bool> DisableICP("disable-icp", cl::init(false), cl::Hidden
,
67 cl::desc("Disable indirect call promotion"));
69 // Set the cutoff value for the promotion. If the value is other than 0, we
70 // stop the transformation once the total number of promotions equals the cutoff
72 // For debug use only.
73 static cl::opt
<unsigned>
74 ICPCutOff("icp-cutoff", cl::init(0), cl::Hidden
, cl::ZeroOrMore
,
75 cl::desc("Max number of promotions for this compilation"));
77 // If ICPCSSkip is non zero, the first ICPCSSkip callsites will be skipped.
78 // For debug use only.
79 static cl::opt
<unsigned>
80 ICPCSSkip("icp-csskip", cl::init(0), cl::Hidden
, cl::ZeroOrMore
,
81 cl::desc("Skip Callsite up to this number for this compilation"));
83 // Set if the pass is called in LTO optimization. The difference for LTO mode
84 // is the pass won't prefix the source module name to the internal linkage
86 static cl::opt
<bool> ICPLTOMode("icp-lto", cl::init(false), cl::Hidden
,
87 cl::desc("Run indirect-call promotion in LTO "
90 // Set if the pass is called in SamplePGO mode. The difference for SamplePGO
91 // mode is it will add prof metadatato the created direct call.
93 ICPSamplePGOMode("icp-samplepgo", cl::init(false), cl::Hidden
,
94 cl::desc("Run indirect-call promotion in SamplePGO mode"));
96 // If the option is set to true, only call instructions will be considered for
97 // transformation -- invoke instructions will be ignored.
99 ICPCallOnly("icp-call-only", cl::init(false), cl::Hidden
,
100 cl::desc("Run indirect-call promotion for call instructions "
103 // If the option is set to true, only invoke instructions will be considered for
104 // transformation -- call instructions will be ignored.
105 static cl::opt
<bool> ICPInvokeOnly("icp-invoke-only", cl::init(false),
107 cl::desc("Run indirect-call promotion for "
108 "invoke instruction only"));
110 // Dump the function level IR if the transformation happened in this
111 // function. For debug use only.
113 ICPDUMPAFTER("icp-dumpafter", cl::init(false), cl::Hidden
,
114 cl::desc("Dump IR after transformation happens"));
118 class PGOIndirectCallPromotionLegacyPass
: public ModulePass
{
122 PGOIndirectCallPromotionLegacyPass(bool InLTO
= false, bool SamplePGO
= false)
123 : ModulePass(ID
), InLTO(InLTO
), SamplePGO(SamplePGO
) {
124 initializePGOIndirectCallPromotionLegacyPassPass(
125 *PassRegistry::getPassRegistry());
128 void getAnalysisUsage(AnalysisUsage
&AU
) const override
{
129 AU
.addRequired
<ProfileSummaryInfoWrapperPass
>();
132 StringRef
getPassName() const override
{ return "PGOIndirectCallPromotion"; }
135 bool runOnModule(Module
&M
) override
;
137 // If this pass is called in LTO. We need to special handling the PGOFuncName
138 // for the static variables due to LTO's internalization.
141 // If this pass is called in SamplePGO. We need to add the prof metadata to
142 // the promoted direct call.
146 } // end anonymous namespace
148 char PGOIndirectCallPromotionLegacyPass::ID
= 0;
150 INITIALIZE_PASS_BEGIN(PGOIndirectCallPromotionLegacyPass
, "pgo-icall-prom",
151 "Use PGO instrumentation profile to promote indirect "
152 "calls to direct calls.",
154 INITIALIZE_PASS_DEPENDENCY(ProfileSummaryInfoWrapperPass
)
155 INITIALIZE_PASS_END(PGOIndirectCallPromotionLegacyPass
, "pgo-icall-prom",
156 "Use PGO instrumentation profile to promote indirect "
157 "calls to direct calls.",
160 ModulePass
*llvm::createPGOIndirectCallPromotionLegacyPass(bool InLTO
,
162 return new PGOIndirectCallPromotionLegacyPass(InLTO
, SamplePGO
);
167 // The class for main data structure to promote indirect calls to conditional
169 class ICallPromotionFunc
{
174 // Symtab that maps indirect call profile values to function names and
176 InstrProfSymtab
*Symtab
;
180 OptimizationRemarkEmitter
&ORE
;
182 // A struct that records the direct target and it's call count.
183 struct PromotionCandidate
{
184 Function
*TargetFunction
;
187 PromotionCandidate(Function
*F
, uint64_t C
) : TargetFunction(F
), Count(C
) {}
190 // Check if the indirect-call call site should be promoted. Return the number
191 // of promotions. Inst is the candidate indirect call, ValueDataRef
192 // contains the array of value profile data for profiled targets,
193 // TotalCount is the total profiled count of call executions, and
194 // NumCandidates is the number of candidate entries in ValueDataRef.
195 std::vector
<PromotionCandidate
> getPromotionCandidatesForCallSite(
196 Instruction
*Inst
, const ArrayRef
<InstrProfValueData
> &ValueDataRef
,
197 uint64_t TotalCount
, uint32_t NumCandidates
);
199 // Promote a list of targets for one indirect-call callsite. Return
200 // the number of promotions.
201 uint32_t tryToPromote(Instruction
*Inst
,
202 const std::vector
<PromotionCandidate
> &Candidates
,
203 uint64_t &TotalCount
);
206 ICallPromotionFunc(Function
&Func
, Module
*Modu
, InstrProfSymtab
*Symtab
,
207 bool SamplePGO
, OptimizationRemarkEmitter
&ORE
)
208 : F(Func
), M(Modu
), Symtab(Symtab
), SamplePGO(SamplePGO
), ORE(ORE
) {}
209 ICallPromotionFunc(const ICallPromotionFunc
&) = delete;
210 ICallPromotionFunc
&operator=(const ICallPromotionFunc
&) = delete;
212 bool processFunction(ProfileSummaryInfo
*PSI
);
215 } // end anonymous namespace
217 // Indirect-call promotion heuristic. The direct targets are sorted based on
218 // the count. Stop at the first target that is not promoted.
219 std::vector
<ICallPromotionFunc::PromotionCandidate
>
220 ICallPromotionFunc::getPromotionCandidatesForCallSite(
221 Instruction
*Inst
, const ArrayRef
<InstrProfValueData
> &ValueDataRef
,
222 uint64_t TotalCount
, uint32_t NumCandidates
) {
223 std::vector
<PromotionCandidate
> Ret
;
225 LLVM_DEBUG(dbgs() << " \nWork on callsite #" << NumOfPGOICallsites
<< *Inst
226 << " Num_targets: " << ValueDataRef
.size()
227 << " Num_candidates: " << NumCandidates
<< "\n");
228 NumOfPGOICallsites
++;
229 if (ICPCSSkip
!= 0 && NumOfPGOICallsites
<= ICPCSSkip
) {
230 LLVM_DEBUG(dbgs() << " Skip: User options.\n");
234 for (uint32_t I
= 0; I
< NumCandidates
; I
++) {
235 uint64_t Count
= ValueDataRef
[I
].Count
;
236 assert(Count
<= TotalCount
);
237 uint64_t Target
= ValueDataRef
[I
].Value
;
238 LLVM_DEBUG(dbgs() << " Candidate " << I
<< " Count=" << Count
239 << " Target_func: " << Target
<< "\n");
241 if (ICPInvokeOnly
&& isa
<CallInst
>(Inst
)) {
242 LLVM_DEBUG(dbgs() << " Not promote: User options.\n");
244 return OptimizationRemarkMissed(DEBUG_TYPE
, "UserOptions", Inst
)
245 << " Not promote: User options";
249 if (ICPCallOnly
&& isa
<InvokeInst
>(Inst
)) {
250 LLVM_DEBUG(dbgs() << " Not promote: User option.\n");
252 return OptimizationRemarkMissed(DEBUG_TYPE
, "UserOptions", Inst
)
253 << " Not promote: User options";
257 if (ICPCutOff
!= 0 && NumOfPGOICallPromotion
>= ICPCutOff
) {
258 LLVM_DEBUG(dbgs() << " Not promote: Cutoff reached.\n");
260 return OptimizationRemarkMissed(DEBUG_TYPE
, "CutOffReached", Inst
)
261 << " Not promote: Cutoff reached";
266 Function
*TargetFunction
= Symtab
->getFunction(Target
);
267 if (TargetFunction
== nullptr) {
268 LLVM_DEBUG(dbgs() << " Not promote: Cannot find the target\n");
270 return OptimizationRemarkMissed(DEBUG_TYPE
, "UnableToFindTarget", Inst
)
271 << "Cannot promote indirect call: target with md5sum "
272 << ore::NV("target md5sum", Target
) << " not found";
277 const char *Reason
= nullptr;
278 if (!isLegalToPromote(CallSite(Inst
), TargetFunction
, &Reason
)) {
282 return OptimizationRemarkMissed(DEBUG_TYPE
, "UnableToPromote", Inst
)
283 << "Cannot promote indirect call to "
284 << NV("TargetFunction", TargetFunction
) << " with count of "
285 << NV("Count", Count
) << ": " << Reason
;
290 Ret
.push_back(PromotionCandidate(TargetFunction
, Count
));
296 Instruction
*llvm::pgo::promoteIndirectCall(Instruction
*Inst
,
297 Function
*DirectCallee
,
298 uint64_t Count
, uint64_t TotalCount
,
299 bool AttachProfToDirectCall
,
300 OptimizationRemarkEmitter
*ORE
) {
302 uint64_t ElseCount
= TotalCount
- Count
;
303 uint64_t MaxCount
= (Count
>= ElseCount
? Count
: ElseCount
);
304 uint64_t Scale
= calculateCountScale(MaxCount
);
305 MDBuilder
MDB(Inst
->getContext());
306 MDNode
*BranchWeights
= MDB
.createBranchWeights(
307 scaleBranchCount(Count
, Scale
), scaleBranchCount(ElseCount
, Scale
));
309 Instruction
*NewInst
=
310 promoteCallWithIfThenElse(CallSite(Inst
), DirectCallee
, BranchWeights
);
312 if (AttachProfToDirectCall
) {
313 MDBuilder
MDB(NewInst
->getContext());
314 NewInst
->setMetadata(
315 LLVMContext::MD_prof
,
316 MDB
.createBranchWeights({static_cast<uint32_t>(Count
)}));
323 return OptimizationRemark(DEBUG_TYPE
, "Promoted", Inst
)
324 << "Promote indirect call to " << NV("DirectCallee", DirectCallee
)
325 << " with count " << NV("Count", Count
) << " out of "
326 << NV("TotalCount", TotalCount
);
331 // Promote indirect-call to conditional direct-call for one callsite.
332 uint32_t ICallPromotionFunc::tryToPromote(
333 Instruction
*Inst
, const std::vector
<PromotionCandidate
> &Candidates
,
334 uint64_t &TotalCount
) {
335 uint32_t NumPromoted
= 0;
337 for (auto &C
: Candidates
) {
338 uint64_t Count
= C
.Count
;
339 pgo::promoteIndirectCall(Inst
, C
.TargetFunction
, Count
, TotalCount
,
341 assert(TotalCount
>= Count
);
343 NumOfPGOICallPromotion
++;
349 // Traverse all the indirect-call callsite and get the value profile
350 // annotation to perform indirect-call promotion.
351 bool ICallPromotionFunc::processFunction(ProfileSummaryInfo
*PSI
) {
352 bool Changed
= false;
353 ICallPromotionAnalysis ICallAnalysis
;
354 for (auto &I
: findIndirectCalls(F
)) {
355 uint32_t NumVals
, NumCandidates
;
357 auto ICallProfDataRef
= ICallAnalysis
.getPromotionCandidatesForInstruction(
358 I
, NumVals
, TotalCount
, NumCandidates
);
359 if (!NumCandidates
||
360 (PSI
&& PSI
->hasProfileSummary() && !PSI
->isHotCount(TotalCount
)))
362 auto PromotionCandidates
= getPromotionCandidatesForCallSite(
363 I
, ICallProfDataRef
, TotalCount
, NumCandidates
);
364 uint32_t NumPromoted
= tryToPromote(I
, PromotionCandidates
, TotalCount
);
365 if (NumPromoted
== 0)
369 // Adjust the MD.prof metadata. First delete the old one.
370 I
->setMetadata(LLVMContext::MD_prof
, nullptr);
371 // If all promoted, we don't need the MD.prof metadata.
372 if (TotalCount
== 0 || NumPromoted
== NumVals
)
374 // Otherwise we need update with the un-promoted records back.
375 annotateValueSite(*M
, *I
, ICallProfDataRef
.slice(NumPromoted
), TotalCount
,
376 IPVK_IndirectCallTarget
, NumCandidates
);
381 // A wrapper function that does the actual work.
382 static bool promoteIndirectCalls(Module
&M
, ProfileSummaryInfo
*PSI
,
383 bool InLTO
, bool SamplePGO
,
384 ModuleAnalysisManager
*AM
= nullptr) {
387 InstrProfSymtab Symtab
;
388 if (Error E
= Symtab
.create(M
, InLTO
)) {
389 std::string SymtabFailure
= toString(std::move(E
));
390 LLVM_DEBUG(dbgs() << "Failed to create symtab: " << SymtabFailure
<< "\n");
394 bool Changed
= false;
396 if (F
.isDeclaration() || F
.hasOptNone())
399 std::unique_ptr
<OptimizationRemarkEmitter
> OwnedORE
;
400 OptimizationRemarkEmitter
*ORE
;
403 AM
->getResult
<FunctionAnalysisManagerModuleProxy
>(M
).getManager();
404 ORE
= &FAM
.getResult
<OptimizationRemarkEmitterAnalysis
>(F
);
406 OwnedORE
= std::make_unique
<OptimizationRemarkEmitter
>(&F
);
407 ORE
= OwnedORE
.get();
410 ICallPromotionFunc
ICallPromotion(F
, &M
, &Symtab
, SamplePGO
, *ORE
);
411 bool FuncChanged
= ICallPromotion
.processFunction(PSI
);
412 if (ICPDUMPAFTER
&& FuncChanged
) {
413 LLVM_DEBUG(dbgs() << "\n== IR Dump After =="; F
.print(dbgs()));
414 LLVM_DEBUG(dbgs() << "\n");
416 Changed
|= FuncChanged
;
417 if (ICPCutOff
!= 0 && NumOfPGOICallPromotion
>= ICPCutOff
) {
418 LLVM_DEBUG(dbgs() << " Stop: Cutoff reached.\n");
425 bool PGOIndirectCallPromotionLegacyPass::runOnModule(Module
&M
) {
426 ProfileSummaryInfo
*PSI
=
427 &getAnalysis
<ProfileSummaryInfoWrapperPass
>().getPSI();
429 // Command-line option has the priority for InLTO.
430 return promoteIndirectCalls(M
, PSI
, InLTO
| ICPLTOMode
,
431 SamplePGO
| ICPSamplePGOMode
);
434 PreservedAnalyses
PGOIndirectCallPromotion::run(Module
&M
,
435 ModuleAnalysisManager
&AM
) {
436 ProfileSummaryInfo
*PSI
= &AM
.getResult
<ProfileSummaryAnalysis
>(M
);
438 if (!promoteIndirectCalls(M
, PSI
, InLTO
| ICPLTOMode
,
439 SamplePGO
| ICPSamplePGOMode
, &AM
))
440 return PreservedAnalyses::all();
442 return PreservedAnalyses::none();