[PGO] Simplify coverage mapping lowering
[oota-llvm.git] / lib / Transforms / Instrumentation / InstrProfiling.cpp
1 //===-- InstrProfiling.cpp - Frontend instrumentation based profiling -----===//
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 pass lowers instrprof_* intrinsics emitted by a frontend for profiling.
11 // It also builds the data structures and initialization code needed for
12 // updating execution counts and emitting the profile at runtime.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "llvm/ADT/Triple.h"
17 #include "llvm/IR/IRBuilder.h"
18 #include "llvm/IR/IntrinsicInst.h"
19 #include "llvm/IR/Module.h"
20 #include "llvm/ProfileData/InstrProf.h"
21 #include "llvm/Transforms/Instrumentation.h"
22 #include "llvm/Transforms/Utils/ModuleUtils.h"
23
24 using namespace llvm;
25
26 #define DEBUG_TYPE "instrprof"
27
28 namespace {
29
30 class InstrProfiling : public ModulePass {
31 public:
32   static char ID;
33
34   InstrProfiling() : ModulePass(ID) {}
35
36   InstrProfiling(const InstrProfOptions &Options)
37       : ModulePass(ID), Options(Options) {}
38
39   const char *getPassName() const override {
40     return "Frontend instrumentation-based coverage lowering";
41   }
42
43   bool runOnModule(Module &M) override;
44
45   void getAnalysisUsage(AnalysisUsage &AU) const override {
46     AU.setPreservesCFG();
47   }
48
49 private:
50   InstrProfOptions Options;
51   Module *M;
52   typedef struct PerFunctionProfileData {
53     uint32_t NumValueSites[IPVK_Last+1];
54     GlobalVariable* RegionCounters;
55     GlobalVariable* DataVar;
56     PerFunctionProfileData() : RegionCounters(nullptr), DataVar(nullptr) {
57       memset(NumValueSites, 0, sizeof(uint32_t) * (IPVK_Last+1));
58     }
59   } PerFunctionProfileData;
60   DenseMap<GlobalVariable *, PerFunctionProfileData> ProfileDataMap;
61   std::vector<Value *> UsedVars;
62
63   bool isMachO() const {
64     return Triple(M->getTargetTriple()).isOSBinFormatMachO();
65   }
66
67   /// Get the section name for the counter variables.
68   StringRef getCountersSection() const {
69     return getInstrProfCountersSectionName(isMachO());
70   }
71
72   /// Get the section name for the name variables.
73   StringRef getNameSection() const {
74     return getInstrProfNameSectionName(isMachO());
75   }
76
77   /// Get the section name for the profile data variables.
78   StringRef getDataSection() const {
79     return getInstrProfDataSectionName(isMachO());
80   }
81
82   /// Get the section name for the coverage mapping data.
83   StringRef getCoverageSection() const {
84     return getInstrProfCoverageSectionName(isMachO());
85   }
86
87   /// Count the number of instrumented value sites for the function.
88   void computeNumValueSiteCounts(InstrProfValueProfileInst *Ins);
89
90   /// Replace instrprof_value_profile with a call to runtime library.
91   void lowerValueProfileInst(InstrProfValueProfileInst *Ins);
92
93   /// Replace instrprof_increment with an increment of the appropriate value.
94   void lowerIncrement(InstrProfIncrementInst *Inc);
95
96   /// Force emitting of name vars for unused functions.
97   void lowerCoverageData(GlobalVariable *CoverageNamesVar);
98
99   /// Get the region counters for an increment, creating them if necessary.
100   ///
101   /// If the counter array doesn't yet exist, the profile data variables
102   /// referring to them will also be created.
103   GlobalVariable *getOrCreateRegionCounters(InstrProfIncrementInst *Inc);
104
105   /// Emit runtime registration functions for each profile data variable.
106   void emitRegistration();
107
108   /// Emit the necessary plumbing to pull in the runtime initialization.
109   void emitRuntimeHook();
110
111   /// Add uses of our data variables and runtime hook.
112   void emitUses();
113
114   /// Create a static initializer for our data, on platforms that need it,
115   /// and for any profile output file that was specified.
116   void emitInitialization();
117 };
118
119 } // anonymous namespace
120
121 char InstrProfiling::ID = 0;
122 INITIALIZE_PASS(InstrProfiling, "instrprof",
123                 "Frontend instrumentation-based coverage lowering.", false,
124                 false)
125
126 ModulePass *llvm::createInstrProfilingPass(const InstrProfOptions &Options) {
127   return new InstrProfiling(Options);
128 }
129
130 bool InstrProfiling::runOnModule(Module &M) {
131   bool MadeChange = false;
132
133   this->M = &M;
134   ProfileDataMap.clear();
135   UsedVars.clear();
136
137   // We did not know how many value sites there would be inside
138   // the instrumented function. This is counting the number of instrumented
139   // target value sites to enter it as field in the profile data variable.
140   for (Function &F : M)
141     for (BasicBlock &BB : F)
142       for (auto I = BB.begin(), E = BB.end(); I != E;)
143         if (auto *Ind = dyn_cast<InstrProfValueProfileInst>(I++))
144           computeNumValueSiteCounts(Ind);
145
146   for (Function &F : M)
147     for (BasicBlock &BB : F)
148       for (auto I = BB.begin(), E = BB.end(); I != E;) {
149         auto Instr = I++;
150         if (auto *Inc = dyn_cast<InstrProfIncrementInst>(Instr)) {
151           lowerIncrement(Inc);
152           MadeChange = true;
153         } else if (auto *Ind = dyn_cast<InstrProfValueProfileInst>(Instr)) {
154           lowerValueProfileInst(Ind);
155           MadeChange = true;
156         }
157       }
158
159   if (GlobalVariable *CoverageNamesVar =
160           M.getNamedGlobal(getCoverageNamesVarName())) {
161     lowerCoverageData(CoverageNamesVar);
162     MadeChange = true;
163   }
164
165   if (!MadeChange)
166     return false;
167
168   emitRegistration();
169   emitRuntimeHook();
170   emitUses();
171   emitInitialization();
172   return true;
173 }
174
175 static Constant *getOrInsertValueProfilingCall(Module &M) {
176   LLVMContext &Ctx = M.getContext();
177   auto *ReturnTy = Type::getVoidTy(M.getContext());
178   Type *ParamTypes[] = {
179 #define VALUE_PROF_FUNC_PARAM(ParamType, ParamName, ParamLLVMType) ParamLLVMType
180 #include "llvm/ProfileData/InstrProfData.inc"
181   };
182   auto *ValueProfilingCallTy =
183       FunctionType::get(ReturnTy, makeArrayRef(ParamTypes), false);
184   return M.getOrInsertFunction(getInstrProfValueProfFuncName(),
185                                ValueProfilingCallTy);
186 }
187
188 void InstrProfiling::computeNumValueSiteCounts(InstrProfValueProfileInst *Ind) {
189
190   GlobalVariable *Name = Ind->getName();
191   uint64_t ValueKind = Ind->getValueKind()->getZExtValue();
192   uint64_t Index = Ind->getIndex()->getZExtValue();
193   auto It = ProfileDataMap.find(Name);
194   if (It == ProfileDataMap.end()) {
195     PerFunctionProfileData PD;
196     PD.NumValueSites[ValueKind] = Index + 1;
197     ProfileDataMap[Name] = PD;
198   } else if (It->second.NumValueSites[ValueKind] <= Index)
199     It->second.NumValueSites[ValueKind] = Index + 1;
200 }
201
202 void InstrProfiling::lowerValueProfileInst(InstrProfValueProfileInst *Ind) {
203
204   GlobalVariable *Name = Ind->getName();
205   auto It = ProfileDataMap.find(Name);
206   assert(It != ProfileDataMap.end() && It->second.DataVar &&
207     "value profiling detected in function with no counter incerement");
208
209   GlobalVariable *DataVar = It->second.DataVar;
210   uint64_t ValueKind = Ind->getValueKind()->getZExtValue();
211   uint64_t Index = Ind->getIndex()->getZExtValue();
212   for (uint32_t Kind = IPVK_First; Kind < ValueKind; ++Kind)
213     Index += It->second.NumValueSites[Kind];
214
215   IRBuilder<> Builder(Ind);
216   Value* Args[3] = {Ind->getTargetValue(),
217       Builder.CreateBitCast(DataVar, Builder.getInt8PtrTy()),
218       Builder.getInt32(Index)};
219   Ind->replaceAllUsesWith(
220       Builder.CreateCall(getOrInsertValueProfilingCall(*M), Args));
221   Ind->eraseFromParent();
222 }
223
224 void InstrProfiling::lowerIncrement(InstrProfIncrementInst *Inc) {
225   GlobalVariable *Counters = getOrCreateRegionCounters(Inc);
226
227   IRBuilder<> Builder(Inc);
228   uint64_t Index = Inc->getIndex()->getZExtValue();
229   Value *Addr = Builder.CreateConstInBoundsGEP2_64(Counters, 0, Index);
230   Value *Count = Builder.CreateLoad(Addr, "pgocount");
231   Count = Builder.CreateAdd(Count, Builder.getInt64(1));
232   Inc->replaceAllUsesWith(Builder.CreateStore(Count, Addr));
233   Inc->eraseFromParent();
234 }
235
236 void InstrProfiling::lowerCoverageData(GlobalVariable *CoverageNamesVar) {
237
238   ConstantArray *Names =
239       cast<ConstantArray>(CoverageNamesVar->getInitializer());
240   for (unsigned I = 0, E = Names->getNumOperands(); I < E; ++I) {
241     Constant *NC = Names->getOperand(I);
242     Value *V = NC->stripPointerCasts();
243     assert(isa<GlobalVariable>(V) && "Missing reference to function name");
244     GlobalVariable *Name = cast<GlobalVariable>(V);
245
246     // Move the name variable to the right section.
247     Name->setSection(getNameSection());
248     Name->setAlignment(1);
249   }
250 }
251
252 /// Get the name of a profiling variable for a particular function.
253 static std::string getVarName(InstrProfIncrementInst *Inc, StringRef Prefix) {
254   StringRef NamePrefix = getInstrProfNameVarPrefix();
255   StringRef Name = Inc->getName()->getName().substr(NamePrefix.size());
256   return (Prefix + Name).str();
257 }
258
259 static inline bool shouldRecordFunctionAddr(Function *F) {
260   // Check the linkage
261   if (!F->hasLinkOnceLinkage() && !F->hasLocalLinkage() &&
262       !F->hasAvailableExternallyLinkage())
263     return true;
264   // Check uses of this function for other than direct calls or invokes to it.
265   return F->hasAddressTaken();
266 }
267
268 static inline Comdat *getOrCreateProfileComdat(Module &M,
269                                                InstrProfIncrementInst *Inc) {
270   // COFF format requires a COMDAT section to have a key symbol with the same
271   // name. The linker targeting COFF also requires that the COMDAT section
272   // a section is associated to must precede the associating section. For this
273   // reason, we must choose the name var's name as the name of the comdat.
274   StringRef ComdatPrefix = (Triple(M.getTargetTriple()).isOSBinFormatCOFF()
275                                 ? getInstrProfNameVarPrefix()
276                                 : getInstrProfComdatPrefix());
277   return M.getOrInsertComdat(StringRef(getVarName(Inc, ComdatPrefix)));
278 }
279
280 GlobalVariable *
281 InstrProfiling::getOrCreateRegionCounters(InstrProfIncrementInst *Inc) {
282   GlobalVariable *NamePtr = Inc->getName();
283   auto It = ProfileDataMap.find(NamePtr);
284   PerFunctionProfileData PD;
285   if (It != ProfileDataMap.end()) {
286     if (It->second.RegionCounters)
287       return It->second.RegionCounters;
288     PD = It->second;
289   }
290
291   // Move the name variable to the right section. Place them in a COMDAT group
292   // if the associated function is a COMDAT. This will make sure that
293   // only one copy of counters of the COMDAT function will be emitted after
294   // linking.
295   Function *Fn = Inc->getParent()->getParent();
296   Comdat *ProfileVarsComdat = nullptr;
297   if (Fn->hasComdat())
298     ProfileVarsComdat = getOrCreateProfileComdat(*M, Inc);
299   NamePtr->setSection(getNameSection());
300   NamePtr->setAlignment(1);
301   NamePtr->setComdat(ProfileVarsComdat);
302
303   uint64_t NumCounters = Inc->getNumCounters()->getZExtValue();
304   LLVMContext &Ctx = M->getContext();
305   ArrayType *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters);
306
307   // Create the counters variable.
308   auto *CounterPtr =
309       new GlobalVariable(*M, CounterTy, false, NamePtr->getLinkage(),
310                          Constant::getNullValue(CounterTy),
311                          getVarName(Inc, getInstrProfCountersVarPrefix()));
312   CounterPtr->setVisibility(NamePtr->getVisibility());
313   CounterPtr->setSection(getCountersSection());
314   CounterPtr->setAlignment(8);
315   CounterPtr->setComdat(ProfileVarsComdat);
316
317   // Create data variable.
318   auto *Int8PtrTy = Type::getInt8PtrTy(Ctx);
319   auto *Int16Ty = Type::getInt16Ty(Ctx);
320   auto *Int16ArrayTy = ArrayType::get(Int16Ty, IPVK_Last+1);
321   Type *DataTypes[] = {
322     #define INSTR_PROF_DATA(Type, LLVMType, Name, Init) LLVMType,
323     #include "llvm/ProfileData/InstrProfData.inc"
324   };
325   auto *DataTy = StructType::get(Ctx, makeArrayRef(DataTypes));
326
327   Constant *FunctionAddr = shouldRecordFunctionAddr(Fn) ?
328                            ConstantExpr::getBitCast(Fn, Int8PtrTy) :
329                            ConstantPointerNull::get(Int8PtrTy);
330
331   Constant *Int16ArrayVals[IPVK_Last+1];
332   for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind)
333     Int16ArrayVals[Kind] = ConstantInt::get(Int16Ty, PD.NumValueSites[Kind]);
334
335   Constant *DataVals[] = {
336     #define INSTR_PROF_DATA(Type, LLVMType, Name, Init) Init,
337     #include "llvm/ProfileData/InstrProfData.inc"
338   };
339   auto *Data = new GlobalVariable(*M, DataTy, false, NamePtr->getLinkage(),
340                                   ConstantStruct::get(DataTy, DataVals),
341                                   getVarName(Inc, getInstrProfDataVarPrefix()));
342   Data->setVisibility(NamePtr->getVisibility());
343   Data->setSection(getDataSection());
344   Data->setAlignment(INSTR_PROF_DATA_ALIGNMENT);
345   Data->setComdat(ProfileVarsComdat);
346
347   PD.RegionCounters = CounterPtr;
348   PD.DataVar = Data;
349   ProfileDataMap[NamePtr] = PD;
350
351   // Mark the data variable as used so that it isn't stripped out.
352   UsedVars.push_back(Data);
353
354   return CounterPtr;
355 }
356
357 void InstrProfiling::emitRegistration() {
358   // Don't do this for Darwin.  compiler-rt uses linker magic.
359   if (Triple(M->getTargetTriple()).isOSDarwin())
360     return;
361
362   // Use linker script magic to get data/cnts/name start/end.
363   if (Triple(M->getTargetTriple()).isOSLinux() ||
364       Triple(M->getTargetTriple()).isOSFreeBSD())
365     return;
366
367   // Construct the function.
368   auto *VoidTy = Type::getVoidTy(M->getContext());
369   auto *VoidPtrTy = Type::getInt8PtrTy(M->getContext());
370   auto *RegisterFTy = FunctionType::get(VoidTy, false);
371   auto *RegisterF = Function::Create(RegisterFTy, GlobalValue::InternalLinkage,
372                                      getInstrProfRegFuncsName(), M);
373   RegisterF->setUnnamedAddr(true);
374   if (Options.NoRedZone) RegisterF->addFnAttr(Attribute::NoRedZone);
375
376   auto *RuntimeRegisterTy = FunctionType::get(VoidTy, VoidPtrTy, false);
377   auto *RuntimeRegisterF =
378       Function::Create(RuntimeRegisterTy, GlobalVariable::ExternalLinkage,
379                        getInstrProfRegFuncName(), M);
380
381   IRBuilder<> IRB(BasicBlock::Create(M->getContext(), "", RegisterF));
382   for (Value *Data : UsedVars)
383     IRB.CreateCall(RuntimeRegisterF, IRB.CreateBitCast(Data, VoidPtrTy));
384   IRB.CreateRetVoid();
385 }
386
387 void InstrProfiling::emitRuntimeHook() {
388
389   // We expect the linker to be invoked with -u<hook_var> flag for linux,
390   // for which case there is no need to emit the user function.
391   if (Triple(M->getTargetTriple()).isOSLinux())
392     return;
393
394   // If the module's provided its own runtime, we don't need to do anything.
395   if (M->getGlobalVariable(getInstrProfRuntimeHookVarName())) return;
396
397   // Declare an external variable that will pull in the runtime initialization.
398   auto *Int32Ty = Type::getInt32Ty(M->getContext());
399   auto *Var =
400       new GlobalVariable(*M, Int32Ty, false, GlobalValue::ExternalLinkage,
401                          nullptr, getInstrProfRuntimeHookVarName());
402
403   // Make a function that uses it.
404   auto *User = Function::Create(FunctionType::get(Int32Ty, false),
405                                 GlobalValue::LinkOnceODRLinkage,
406                                 getInstrProfRuntimeHookVarUseFuncName(), M);
407   User->addFnAttr(Attribute::NoInline);
408   if (Options.NoRedZone) User->addFnAttr(Attribute::NoRedZone);
409   User->setVisibility(GlobalValue::HiddenVisibility);
410
411   IRBuilder<> IRB(BasicBlock::Create(M->getContext(), "", User));
412   auto *Load = IRB.CreateLoad(Var);
413   IRB.CreateRet(Load);
414
415   // Mark the user variable as used so that it isn't stripped out.
416   UsedVars.push_back(User);
417 }
418
419 void InstrProfiling::emitUses() {
420   if (UsedVars.empty())
421     return;
422
423   GlobalVariable *LLVMUsed = M->getGlobalVariable("llvm.used");
424   std::vector<Constant *> MergedVars;
425   if (LLVMUsed) {
426     // Collect the existing members of llvm.used.
427     ConstantArray *Inits = cast<ConstantArray>(LLVMUsed->getInitializer());
428     for (unsigned I = 0, E = Inits->getNumOperands(); I != E; ++I)
429       MergedVars.push_back(Inits->getOperand(I));
430     LLVMUsed->eraseFromParent();
431   }
432
433   Type *i8PTy = Type::getInt8PtrTy(M->getContext());
434   // Add uses for our data.
435   for (auto *Value : UsedVars)
436     MergedVars.push_back(
437         ConstantExpr::getBitCast(cast<Constant>(Value), i8PTy));
438
439   // Recreate llvm.used.
440   ArrayType *ATy = ArrayType::get(i8PTy, MergedVars.size());
441   LLVMUsed =
442       new GlobalVariable(*M, ATy, false, GlobalValue::AppendingLinkage,
443                          ConstantArray::get(ATy, MergedVars), "llvm.used");
444   LLVMUsed->setSection("llvm.metadata");
445 }
446
447 void InstrProfiling::emitInitialization() {
448   std::string InstrProfileOutput = Options.InstrProfileOutput;
449
450   Constant *RegisterF = M->getFunction(getInstrProfRegFuncsName());
451   if (!RegisterF && InstrProfileOutput.empty()) return;
452
453   // Create the initialization function.
454   auto *VoidTy = Type::getVoidTy(M->getContext());
455   auto *F = Function::Create(FunctionType::get(VoidTy, false),
456                              GlobalValue::InternalLinkage,
457                              getInstrProfInitFuncName(), M);
458   F->setUnnamedAddr(true);
459   F->addFnAttr(Attribute::NoInline);
460   if (Options.NoRedZone) F->addFnAttr(Attribute::NoRedZone);
461
462   // Add the basic block and the necessary calls.
463   IRBuilder<> IRB(BasicBlock::Create(M->getContext(), "", F));
464   if (RegisterF)
465     IRB.CreateCall(RegisterF, {});
466   if (!InstrProfileOutput.empty()) {
467     auto *Int8PtrTy = Type::getInt8PtrTy(M->getContext());
468     auto *SetNameTy = FunctionType::get(VoidTy, Int8PtrTy, false);
469     auto *SetNameF = Function::Create(SetNameTy, GlobalValue::ExternalLinkage,
470                                       getInstrProfFileOverriderFuncName(), M);
471
472     // Create variable for profile name.
473     Constant *ProfileNameConst =
474         ConstantDataArray::getString(M->getContext(), InstrProfileOutput, true);
475     GlobalVariable *ProfileName =
476         new GlobalVariable(*M, ProfileNameConst->getType(), true,
477                            GlobalValue::PrivateLinkage, ProfileNameConst);
478
479     IRB.CreateCall(SetNameF, IRB.CreatePointerCast(ProfileName, Int8PtrTy));
480   }
481   IRB.CreateRetVoid();
482
483   appendToGlobalCtors(*M, F, 0);
484 }