2014-12-08 19:02:35 +01:00
|
|
|
//===-- InstrProfiling.cpp - Frontend instrumentation based profiling -----===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2015-11-18 19:14:55 +01:00
|
|
|
// This pass lowers instrprof_* intrinsics emitted by a frontend for profiling.
|
|
|
|
// It also builds the data structures and initialization code needed for
|
|
|
|
// updating execution counts and emitting the profile at runtime.
|
2014-12-08 19:02:35 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/ADT/Triple.h"
|
|
|
|
#include "llvm/IR/IRBuilder.h"
|
|
|
|
#include "llvm/IR/IntrinsicInst.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
2015-11-18 19:14:55 +01:00
|
|
|
#include "llvm/ProfileData/InstrProf.h"
|
2016-04-18 19:47:38 +02:00
|
|
|
#include "llvm/Transforms/InstrProfiling.h"
|
2014-12-08 19:02:35 +01:00
|
|
|
#include "llvm/Transforms/Utils/ModuleUtils.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "instrprof"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2016-02-08 19:13:49 +01:00
|
|
|
cl::opt<bool> DoNameCompression("enable-name-compression",
|
|
|
|
cl::desc("Enable name string compression"),
|
|
|
|
cl::init(true));
|
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
class InstrProfilingLegacyPass : public ModulePass {
|
|
|
|
InstrProfiling InstrProf;
|
|
|
|
|
2014-12-08 19:02:35 +01:00
|
|
|
public:
|
|
|
|
static char ID;
|
2016-04-18 19:47:38 +02:00
|
|
|
InstrProfilingLegacyPass() : ModulePass(ID), InstrProf() {}
|
|
|
|
InstrProfilingLegacyPass(const InstrProfOptions &Options)
|
|
|
|
: ModulePass(ID), InstrProf(Options) {}
|
2014-12-08 19:02:35 +01:00
|
|
|
const char *getPassName() const override {
|
|
|
|
return "Frontend instrumentation-based coverage lowering";
|
|
|
|
}
|
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
bool runOnModule(Module &M) override { return InstrProf.run(M); }
|
2014-12-08 19:02:35 +01:00
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
|
|
|
AU.setPreservesCFG();
|
|
|
|
}
|
2016-04-18 19:47:38 +02:00
|
|
|
};
|
2014-12-08 19:02:35 +01:00
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
} // anonymous namespace
|
2015-02-11 03:52:44 +01:00
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
PreservedAnalyses InstrProfiling::run(Module &M, AnalysisManager<Module> &AM) {
|
|
|
|
if (!run(M))
|
|
|
|
return PreservedAnalyses::all();
|
2014-12-08 19:02:35 +01:00
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
return PreservedAnalyses::none();
|
|
|
|
}
|
2016-02-08 19:13:49 +01:00
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
char InstrProfilingLegacyPass::ID = 0;
|
|
|
|
INITIALIZE_PASS(InstrProfilingLegacyPass, "instrprof",
|
|
|
|
"Frontend instrumentation-based coverage lowering.", false,
|
|
|
|
false)
|
2014-12-08 19:02:35 +01:00
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
ModulePass *llvm::createInstrProfilingLegacyPass(const InstrProfOptions &Options) {
|
|
|
|
return new InstrProfilingLegacyPass(Options);
|
|
|
|
}
|
2014-12-08 19:02:35 +01:00
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
bool InstrProfiling::isMachO() const {
|
|
|
|
return Triple(M->getTargetTriple()).isOSBinFormatMachO();
|
|
|
|
}
|
2014-12-08 19:02:35 +01:00
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
/// Get the section name for the counter variables.
|
|
|
|
StringRef InstrProfiling::getCountersSection() const {
|
|
|
|
return getInstrProfCountersSectionName(isMachO());
|
|
|
|
}
|
2014-12-08 19:02:35 +01:00
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
/// Get the section name for the name variables.
|
|
|
|
StringRef InstrProfiling::getNameSection() const {
|
|
|
|
return getInstrProfNameSectionName(isMachO());
|
|
|
|
}
|
2014-12-08 19:02:35 +01:00
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
/// Get the section name for the profile data variables.
|
|
|
|
StringRef InstrProfiling::getDataSection() const {
|
|
|
|
return getInstrProfDataSectionName(isMachO());
|
|
|
|
}
|
2014-12-08 19:02:35 +01:00
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
/// Get the section name for the coverage mapping data.
|
|
|
|
StringRef InstrProfiling::getCoverageSection() const {
|
|
|
|
return getInstrProfCoverageSectionName(isMachO());
|
2014-12-08 19:02:35 +01:00
|
|
|
}
|
|
|
|
|
2016-04-18 19:47:38 +02:00
|
|
|
bool InstrProfiling::run(Module &M) {
|
2014-12-08 19:02:35 +01:00
|
|
|
bool MadeChange = false;
|
|
|
|
|
|
|
|
this->M = &M;
|
2016-02-08 19:13:49 +01:00
|
|
|
NamesVar = nullptr;
|
|
|
|
NamesSize = 0;
|
2015-11-18 19:14:55 +01:00
|
|
|
ProfileDataMap.clear();
|
2014-12-08 19:02:35 +01:00
|
|
|
UsedVars.clear();
|
|
|
|
|
2015-11-18 19:14:55 +01:00
|
|
|
// We did not know how many value sites there would be inside
|
|
|
|
// the instrumented function. This is counting the number of instrumented
|
|
|
|
// target value sites to enter it as field in the profile data variable.
|
2016-01-19 19:29:54 +01:00
|
|
|
for (Function &F : M) {
|
|
|
|
InstrProfIncrementInst *FirstProfIncInst = nullptr;
|
2014-12-08 19:02:35 +01:00
|
|
|
for (BasicBlock &BB : F)
|
2016-01-19 19:29:54 +01:00
|
|
|
for (auto I = BB.begin(), E = BB.end(); I != E; I++)
|
|
|
|
if (auto *Ind = dyn_cast<InstrProfValueProfileInst>(I))
|
2015-11-18 19:14:55 +01:00
|
|
|
computeNumValueSiteCounts(Ind);
|
2016-01-19 19:29:54 +01:00
|
|
|
else if (FirstProfIncInst == nullptr)
|
|
|
|
FirstProfIncInst = dyn_cast<InstrProfIncrementInst>(I);
|
|
|
|
|
|
|
|
// Value profiling intrinsic lowering requires per-function profile data
|
|
|
|
// variable to be created first.
|
|
|
|
if (FirstProfIncInst != nullptr)
|
|
|
|
static_cast<void>(getOrCreateRegionCounters(FirstProfIncInst));
|
|
|
|
}
|
2015-11-18 19:14:55 +01:00
|
|
|
|
|
|
|
for (Function &F : M)
|
|
|
|
for (BasicBlock &BB : F)
|
|
|
|
for (auto I = BB.begin(), E = BB.end(); I != E;) {
|
|
|
|
auto Instr = I++;
|
|
|
|
if (auto *Inc = dyn_cast<InstrProfIncrementInst>(Instr)) {
|
2014-12-08 19:02:35 +01:00
|
|
|
lowerIncrement(Inc);
|
|
|
|
MadeChange = true;
|
2015-11-18 19:14:55 +01:00
|
|
|
} else if (auto *Ind = dyn_cast<InstrProfValueProfileInst>(Instr)) {
|
|
|
|
lowerValueProfileInst(Ind);
|
|
|
|
MadeChange = true;
|
2014-12-08 19:02:35 +01:00
|
|
|
}
|
2015-11-18 19:14:55 +01:00
|
|
|
}
|
|
|
|
|
2016-01-07 21:05:49 +01:00
|
|
|
if (GlobalVariable *CoverageNamesVar =
|
2016-01-20 01:24:36 +01:00
|
|
|
M.getNamedGlobal(getCoverageUnusedNamesVarName())) {
|
2016-01-07 21:05:49 +01:00
|
|
|
lowerCoverageData(CoverageNamesVar);
|
2015-02-11 03:52:44 +01:00
|
|
|
MadeChange = true;
|
|
|
|
}
|
2015-11-18 19:14:55 +01:00
|
|
|
|
2014-12-08 19:02:35 +01:00
|
|
|
if (!MadeChange)
|
|
|
|
return false;
|
|
|
|
|
2016-02-08 19:13:49 +01:00
|
|
|
emitNameData();
|
2014-12-08 19:02:35 +01:00
|
|
|
emitRegistration();
|
|
|
|
emitRuntimeHook();
|
|
|
|
emitUses();
|
|
|
|
emitInitialization();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-11-18 19:14:55 +01:00
|
|
|
static Constant *getOrInsertValueProfilingCall(Module &M) {
|
2015-11-22 01:22:07 +01:00
|
|
|
LLVMContext &Ctx = M.getContext();
|
|
|
|
auto *ReturnTy = Type::getVoidTy(M.getContext());
|
|
|
|
Type *ParamTypes[] = {
|
|
|
|
#define VALUE_PROF_FUNC_PARAM(ParamType, ParamName, ParamLLVMType) ParamLLVMType
|
|
|
|
#include "llvm/ProfileData/InstrProfData.inc"
|
|
|
|
};
|
2015-11-18 19:14:55 +01:00
|
|
|
auto *ValueProfilingCallTy =
|
2015-11-22 01:22:07 +01:00
|
|
|
FunctionType::get(ReturnTy, makeArrayRef(ParamTypes), false);
|
2015-11-22 06:42:31 +01:00
|
|
|
return M.getOrInsertFunction(getInstrProfValueProfFuncName(),
|
2015-11-18 19:14:55 +01:00
|
|
|
ValueProfilingCallTy);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstrProfiling::computeNumValueSiteCounts(InstrProfValueProfileInst *Ind) {
|
|
|
|
|
|
|
|
GlobalVariable *Name = Ind->getName();
|
|
|
|
uint64_t ValueKind = Ind->getValueKind()->getZExtValue();
|
|
|
|
uint64_t Index = Ind->getIndex()->getZExtValue();
|
|
|
|
auto It = ProfileDataMap.find(Name);
|
|
|
|
if (It == ProfileDataMap.end()) {
|
|
|
|
PerFunctionProfileData PD;
|
|
|
|
PD.NumValueSites[ValueKind] = Index + 1;
|
|
|
|
ProfileDataMap[Name] = PD;
|
|
|
|
} else if (It->second.NumValueSites[ValueKind] <= Index)
|
|
|
|
It->second.NumValueSites[ValueKind] = Index + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstrProfiling::lowerValueProfileInst(InstrProfValueProfileInst *Ind) {
|
|
|
|
|
|
|
|
GlobalVariable *Name = Ind->getName();
|
|
|
|
auto It = ProfileDataMap.find(Name);
|
|
|
|
assert(It != ProfileDataMap.end() && It->second.DataVar &&
|
|
|
|
"value profiling detected in function with no counter incerement");
|
|
|
|
|
|
|
|
GlobalVariable *DataVar = It->second.DataVar;
|
|
|
|
uint64_t ValueKind = Ind->getValueKind()->getZExtValue();
|
|
|
|
uint64_t Index = Ind->getIndex()->getZExtValue();
|
|
|
|
for (uint32_t Kind = IPVK_First; Kind < ValueKind; ++Kind)
|
|
|
|
Index += It->second.NumValueSites[Kind];
|
|
|
|
|
|
|
|
IRBuilder<> Builder(Ind);
|
|
|
|
Value* Args[3] = {Ind->getTargetValue(),
|
|
|
|
Builder.CreateBitCast(DataVar, Builder.getInt8PtrTy()),
|
|
|
|
Builder.getInt32(Index)};
|
|
|
|
Ind->replaceAllUsesWith(
|
|
|
|
Builder.CreateCall(getOrInsertValueProfilingCall(*M), Args));
|
|
|
|
Ind->eraseFromParent();
|
|
|
|
}
|
|
|
|
|
2014-12-08 19:02:35 +01:00
|
|
|
void InstrProfiling::lowerIncrement(InstrProfIncrementInst *Inc) {
|
|
|
|
GlobalVariable *Counters = getOrCreateRegionCounters(Inc);
|
|
|
|
|
2015-10-13 19:39:10 +02:00
|
|
|
IRBuilder<> Builder(Inc);
|
2014-12-08 19:02:35 +01:00
|
|
|
uint64_t Index = Inc->getIndex()->getZExtValue();
|
2015-06-04 13:45:32 +02:00
|
|
|
Value *Addr = Builder.CreateConstInBoundsGEP2_64(Counters, 0, Index);
|
|
|
|
Value *Count = Builder.CreateLoad(Addr, "pgocount");
|
2014-12-08 19:02:35 +01:00
|
|
|
Count = Builder.CreateAdd(Count, Builder.getInt64(1));
|
|
|
|
Inc->replaceAllUsesWith(Builder.CreateStore(Count, Addr));
|
|
|
|
Inc->eraseFromParent();
|
|
|
|
}
|
|
|
|
|
2016-01-07 21:05:49 +01:00
|
|
|
void InstrProfiling::lowerCoverageData(GlobalVariable *CoverageNamesVar) {
|
2015-02-11 03:52:44 +01:00
|
|
|
|
2016-01-07 21:05:49 +01:00
|
|
|
ConstantArray *Names =
|
|
|
|
cast<ConstantArray>(CoverageNamesVar->getInitializer());
|
|
|
|
for (unsigned I = 0, E = Names->getNumOperands(); I < E; ++I) {
|
|
|
|
Constant *NC = Names->getOperand(I);
|
|
|
|
Value *V = NC->stripPointerCasts();
|
2015-02-11 03:52:44 +01:00
|
|
|
assert(isa<GlobalVariable>(V) && "Missing reference to function name");
|
|
|
|
GlobalVariable *Name = cast<GlobalVariable>(V);
|
|
|
|
|
2016-02-08 19:13:49 +01:00
|
|
|
Name->setLinkage(GlobalValue::PrivateLinkage);
|
|
|
|
ReferencedNames.push_back(Name);
|
2015-02-11 03:52:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-08 19:02:35 +01:00
|
|
|
/// Get the name of a profiling variable for a particular function.
|
2015-10-22 22:32:12 +02:00
|
|
|
static std::string getVarName(InstrProfIncrementInst *Inc, StringRef Prefix) {
|
2015-12-12 18:28:03 +01:00
|
|
|
StringRef NamePrefix = getInstrProfNameVarPrefix();
|
|
|
|
StringRef Name = Inc->getName()->getName().substr(NamePrefix.size());
|
2015-10-22 22:32:12 +02:00
|
|
|
return (Prefix + Name).str();
|
2014-12-08 19:02:35 +01:00
|
|
|
}
|
|
|
|
|
2015-11-18 19:14:55 +01:00
|
|
|
static inline bool shouldRecordFunctionAddr(Function *F) {
|
|
|
|
// Check the linkage
|
|
|
|
if (!F->hasLinkOnceLinkage() && !F->hasLocalLinkage() &&
|
|
|
|
!F->hasAvailableExternallyLinkage())
|
|
|
|
return true;
|
2016-04-27 23:17:30 +02:00
|
|
|
// Prohibit function address recording if the function is both internal and
|
|
|
|
// COMDAT. This avoids the profile data variable referencing internal symbols
|
|
|
|
// in COMDAT.
|
|
|
|
if (F->hasLocalLinkage() && F->hasComdat())
|
|
|
|
return false;
|
2015-11-18 19:14:55 +01:00
|
|
|
// Check uses of this function for other than direct calls or invokes to it.
|
|
|
|
return F->hasAddressTaken();
|
|
|
|
}
|
|
|
|
|
2016-02-28 00:11:30 +01:00
|
|
|
static inline bool needsComdatForCounter(Function &F, Module &M) {
|
|
|
|
|
|
|
|
if (F.hasComdat())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
Triple TT(M.getTargetTriple());
|
|
|
|
if (!TT.isOSBinFormatELF())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// See createPGOFuncNameVar for more details. To avoid link errors, profile
|
|
|
|
// counters for function with available_externally linkage needs to be changed
|
|
|
|
// to linkonce linkage. On ELF based systems, this leads to weak symbols to be
|
|
|
|
// created. Without using comdat, duplicate entries won't be removed by the
|
|
|
|
// linker leading to increased data segement size and raw profile size. Even
|
|
|
|
// worse, since the referenced counter from profile per-function data object
|
|
|
|
// will be resolved to the common strong definition, the profile counts for
|
|
|
|
// available_externally functions will end up being duplicated in raw profile
|
|
|
|
// data. This can result in distorted profile as the counts of those dups
|
|
|
|
// will be accumulated by the profile merger.
|
|
|
|
GlobalValue::LinkageTypes Linkage = F.getLinkage();
|
|
|
|
if (Linkage != GlobalValue::ExternalWeakLinkage &&
|
|
|
|
Linkage != GlobalValue::AvailableExternallyLinkage)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Comdat *getOrCreateProfileComdat(Module &M, Function &F,
|
2015-12-21 22:52:27 +01:00
|
|
|
InstrProfIncrementInst *Inc) {
|
2016-02-28 00:11:30 +01:00
|
|
|
if (!needsComdatForCounter(F, M))
|
|
|
|
return nullptr;
|
|
|
|
|
2015-12-21 22:52:27 +01:00
|
|
|
// COFF format requires a COMDAT section to have a key symbol with the same
|
2016-02-04 00:22:43 +01:00
|
|
|
// name. The linker targeting COFF also requires that the COMDAT
|
2015-12-22 01:11:15 +01:00
|
|
|
// a section is associated to must precede the associating section. For this
|
2016-02-08 19:13:49 +01:00
|
|
|
// reason, we must choose the counter var's name as the name of the comdat.
|
2015-12-21 22:52:27 +01:00
|
|
|
StringRef ComdatPrefix = (Triple(M.getTargetTriple()).isOSBinFormatCOFF()
|
2016-02-08 19:13:49 +01:00
|
|
|
? getInstrProfCountersVarPrefix()
|
2015-12-21 22:52:27 +01:00
|
|
|
: getInstrProfComdatPrefix());
|
|
|
|
return M.getOrInsertComdat(StringRef(getVarName(Inc, ComdatPrefix)));
|
|
|
|
}
|
|
|
|
|
2014-12-08 19:02:35 +01:00
|
|
|
GlobalVariable *
|
|
|
|
InstrProfiling::getOrCreateRegionCounters(InstrProfIncrementInst *Inc) {
|
2015-11-05 01:47:26 +01:00
|
|
|
GlobalVariable *NamePtr = Inc->getName();
|
2015-11-18 19:14:55 +01:00
|
|
|
auto It = ProfileDataMap.find(NamePtr);
|
|
|
|
PerFunctionProfileData PD;
|
|
|
|
if (It != ProfileDataMap.end()) {
|
|
|
|
if (It->second.RegionCounters)
|
|
|
|
return It->second.RegionCounters;
|
|
|
|
PD = It->second;
|
|
|
|
}
|
2014-12-08 19:02:35 +01:00
|
|
|
|
2015-09-24 00:40:45 +02:00
|
|
|
// Move the name variable to the right section. Place them in a COMDAT group
|
|
|
|
// if the associated function is a COMDAT. This will make sure that
|
|
|
|
// only one copy of counters of the COMDAT function will be emitted after
|
|
|
|
// linking.
|
2015-05-27 21:34:01 +02:00
|
|
|
Function *Fn = Inc->getParent()->getParent();
|
2015-09-24 00:40:45 +02:00
|
|
|
Comdat *ProfileVarsComdat = nullptr;
|
2016-02-28 00:11:30 +01:00
|
|
|
ProfileVarsComdat = getOrCreateProfileComdat(*M, *Fn, Inc);
|
2014-12-08 19:02:35 +01:00
|
|
|
|
|
|
|
uint64_t NumCounters = Inc->getNumCounters()->getZExtValue();
|
|
|
|
LLVMContext &Ctx = M->getContext();
|
|
|
|
ArrayType *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters);
|
|
|
|
|
|
|
|
// Create the counters variable.
|
2015-11-05 01:47:26 +01:00
|
|
|
auto *CounterPtr =
|
|
|
|
new GlobalVariable(*M, CounterTy, false, NamePtr->getLinkage(),
|
2015-10-22 22:32:12 +02:00
|
|
|
Constant::getNullValue(CounterTy),
|
|
|
|
getVarName(Inc, getInstrProfCountersVarPrefix()));
|
2015-11-05 01:47:26 +01:00
|
|
|
CounterPtr->setVisibility(NamePtr->getVisibility());
|
|
|
|
CounterPtr->setSection(getCountersSection());
|
|
|
|
CounterPtr->setAlignment(8);
|
|
|
|
CounterPtr->setComdat(ProfileVarsComdat);
|
2014-12-08 19:02:35 +01:00
|
|
|
|
|
|
|
// Create data variable.
|
2015-11-18 19:14:55 +01:00
|
|
|
auto *Int8PtrTy = Type::getInt8PtrTy(Ctx);
|
|
|
|
auto *Int16Ty = Type::getInt16Ty(Ctx);
|
|
|
|
auto *Int16ArrayTy = ArrayType::get(Int16Ty, IPVK_Last+1);
|
2015-11-05 01:47:26 +01:00
|
|
|
Type *DataTypes[] = {
|
|
|
|
#define INSTR_PROF_DATA(Type, LLVMType, Name, Init) LLVMType,
|
|
|
|
#include "llvm/ProfileData/InstrProfData.inc"
|
|
|
|
};
|
2014-12-08 19:02:35 +01:00
|
|
|
auto *DataTy = StructType::get(Ctx, makeArrayRef(DataTypes));
|
2015-11-05 01:47:26 +01:00
|
|
|
|
2015-11-18 19:14:55 +01:00
|
|
|
Constant *FunctionAddr = shouldRecordFunctionAddr(Fn) ?
|
|
|
|
ConstantExpr::getBitCast(Fn, Int8PtrTy) :
|
|
|
|
ConstantPointerNull::get(Int8PtrTy);
|
|
|
|
|
|
|
|
Constant *Int16ArrayVals[IPVK_Last+1];
|
|
|
|
for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind)
|
|
|
|
Int16ArrayVals[Kind] = ConstantInt::get(Int16Ty, PD.NumValueSites[Kind]);
|
|
|
|
|
2014-12-08 19:02:35 +01:00
|
|
|
Constant *DataVals[] = {
|
2015-11-05 01:47:26 +01:00
|
|
|
#define INSTR_PROF_DATA(Type, LLVMType, Name, Init) Init,
|
|
|
|
#include "llvm/ProfileData/InstrProfData.inc"
|
|
|
|
};
|
2015-11-18 19:14:55 +01:00
|
|
|
auto *Data = new GlobalVariable(*M, DataTy, false, NamePtr->getLinkage(),
|
2014-12-08 19:02:35 +01:00
|
|
|
ConstantStruct::get(DataTy, DataVals),
|
2015-10-22 22:32:12 +02:00
|
|
|
getVarName(Inc, getInstrProfDataVarPrefix()));
|
2015-11-05 01:47:26 +01:00
|
|
|
Data->setVisibility(NamePtr->getVisibility());
|
2014-12-08 19:02:35 +01:00
|
|
|
Data->setSection(getDataSection());
|
2015-11-23 19:02:59 +01:00
|
|
|
Data->setAlignment(INSTR_PROF_DATA_ALIGNMENT);
|
2015-09-24 00:40:45 +02:00
|
|
|
Data->setComdat(ProfileVarsComdat);
|
2014-12-08 19:02:35 +01:00
|
|
|
|
2015-11-18 19:14:55 +01:00
|
|
|
PD.RegionCounters = CounterPtr;
|
|
|
|
PD.DataVar = Data;
|
|
|
|
ProfileDataMap[NamePtr] = PD;
|
|
|
|
|
2014-12-08 19:02:35 +01:00
|
|
|
// Mark the data variable as used so that it isn't stripped out.
|
|
|
|
UsedVars.push_back(Data);
|
2016-02-08 19:13:49 +01:00
|
|
|
// Now that the linkage set by the FE has been passed to the data and counter
|
|
|
|
// variables, reset Name variable's linkage and visibility to private so that
|
|
|
|
// it can be removed later by the compiler.
|
|
|
|
NamePtr->setLinkage(GlobalValue::PrivateLinkage);
|
|
|
|
// Collect the referenced names to be used by emitNameData.
|
|
|
|
ReferencedNames.push_back(NamePtr);
|
2014-12-08 19:02:35 +01:00
|
|
|
|
2015-11-05 01:47:26 +01:00
|
|
|
return CounterPtr;
|
2014-12-08 19:02:35 +01:00
|
|
|
}
|
|
|
|
|
2016-02-08 19:13:49 +01:00
|
|
|
void InstrProfiling::emitNameData() {
|
|
|
|
std::string UncompressedData;
|
|
|
|
|
|
|
|
if (ReferencedNames.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::string CompressedNameStr;
|
|
|
|
collectPGOFuncNameStrings(ReferencedNames, CompressedNameStr,
|
|
|
|
DoNameCompression);
|
|
|
|
|
|
|
|
auto &Ctx = M->getContext();
|
|
|
|
auto *NamesVal = llvm::ConstantDataArray::getString(
|
|
|
|
Ctx, StringRef(CompressedNameStr), false);
|
|
|
|
NamesVar = new llvm::GlobalVariable(*M, NamesVal->getType(), true,
|
|
|
|
llvm::GlobalValue::PrivateLinkage,
|
|
|
|
NamesVal, getInstrProfNamesVarName());
|
|
|
|
NamesSize = CompressedNameStr.size();
|
|
|
|
NamesVar->setSection(getNameSection());
|
|
|
|
UsedVars.push_back(NamesVar);
|
|
|
|
}
|
|
|
|
|
2014-12-08 19:02:35 +01:00
|
|
|
void InstrProfiling::emitRegistration() {
|
|
|
|
// Don't do this for Darwin. compiler-rt uses linker magic.
|
|
|
|
if (Triple(M->getTargetTriple()).isOSDarwin())
|
|
|
|
return;
|
|
|
|
|
2015-10-13 20:39:48 +02:00
|
|
|
// Use linker script magic to get data/cnts/name start/end.
|
2015-10-19 06:17:10 +02:00
|
|
|
if (Triple(M->getTargetTriple()).isOSLinux() ||
|
2016-02-27 07:01:26 +01:00
|
|
|
Triple(M->getTargetTriple()).isOSFreeBSD() ||
|
|
|
|
Triple(M->getTargetTriple()).isPS4CPU())
|
2015-10-19 06:17:10 +02:00
|
|
|
return;
|
2015-10-13 20:39:48 +02:00
|
|
|
|
2014-12-08 19:02:35 +01:00
|
|
|
// Construct the function.
|
|
|
|
auto *VoidTy = Type::getVoidTy(M->getContext());
|
|
|
|
auto *VoidPtrTy = Type::getInt8PtrTy(M->getContext());
|
2016-02-08 19:13:49 +01:00
|
|
|
auto *Int64Ty = Type::getInt64Ty(M->getContext());
|
2014-12-08 19:02:35 +01:00
|
|
|
auto *RegisterFTy = FunctionType::get(VoidTy, false);
|
|
|
|
auto *RegisterF = Function::Create(RegisterFTy, GlobalValue::InternalLinkage,
|
2015-10-23 06:22:58 +02:00
|
|
|
getInstrProfRegFuncsName(), M);
|
2014-12-08 19:02:35 +01:00
|
|
|
RegisterF->setUnnamedAddr(true);
|
2015-10-23 06:22:58 +02:00
|
|
|
if (Options.NoRedZone) RegisterF->addFnAttr(Attribute::NoRedZone);
|
2014-12-08 19:02:35 +01:00
|
|
|
|
2015-06-04 13:45:32 +02:00
|
|
|
auto *RuntimeRegisterTy = FunctionType::get(VoidTy, VoidPtrTy, false);
|
2014-12-08 19:02:35 +01:00
|
|
|
auto *RuntimeRegisterF =
|
|
|
|
Function::Create(RuntimeRegisterTy, GlobalVariable::ExternalLinkage,
|
2015-10-23 06:22:58 +02:00
|
|
|
getInstrProfRegFuncName(), M);
|
2014-12-08 19:02:35 +01:00
|
|
|
|
|
|
|
IRBuilder<> IRB(BasicBlock::Create(M->getContext(), "", RegisterF));
|
|
|
|
for (Value *Data : UsedVars)
|
2016-02-08 19:13:49 +01:00
|
|
|
if (Data != NamesVar)
|
|
|
|
IRB.CreateCall(RuntimeRegisterF, IRB.CreateBitCast(Data, VoidPtrTy));
|
|
|
|
|
|
|
|
if (NamesVar) {
|
|
|
|
Type *ParamTypes[] = {VoidPtrTy, Int64Ty};
|
|
|
|
auto *NamesRegisterTy =
|
|
|
|
FunctionType::get(VoidTy, makeArrayRef(ParamTypes), false);
|
|
|
|
auto *NamesRegisterF =
|
|
|
|
Function::Create(NamesRegisterTy, GlobalVariable::ExternalLinkage,
|
|
|
|
getInstrProfNamesRegFuncName(), M);
|
|
|
|
IRB.CreateCall(NamesRegisterF, {IRB.CreateBitCast(NamesVar, VoidPtrTy),
|
|
|
|
IRB.getInt64(NamesSize)});
|
|
|
|
}
|
|
|
|
|
2014-12-08 19:02:35 +01:00
|
|
|
IRB.CreateRetVoid();
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstrProfiling::emitRuntimeHook() {
|
|
|
|
|
2015-10-29 05:08:31 +01:00
|
|
|
// We expect the linker to be invoked with -u<hook_var> flag for linux,
|
|
|
|
// for which case there is no need to emit the user function.
|
|
|
|
if (Triple(M->getTargetTriple()).isOSLinux())
|
|
|
|
return;
|
|
|
|
|
2014-12-08 19:02:35 +01:00
|
|
|
// If the module's provided its own runtime, we don't need to do anything.
|
2015-10-23 06:22:58 +02:00
|
|
|
if (M->getGlobalVariable(getInstrProfRuntimeHookVarName())) return;
|
2014-12-08 19:02:35 +01:00
|
|
|
|
|
|
|
// Declare an external variable that will pull in the runtime initialization.
|
|
|
|
auto *Int32Ty = Type::getInt32Ty(M->getContext());
|
|
|
|
auto *Var =
|
|
|
|
new GlobalVariable(*M, Int32Ty, false, GlobalValue::ExternalLinkage,
|
2015-10-23 06:22:58 +02:00
|
|
|
nullptr, getInstrProfRuntimeHookVarName());
|
2014-12-08 19:02:35 +01:00
|
|
|
|
|
|
|
// Make a function that uses it.
|
2015-10-23 06:22:58 +02:00
|
|
|
auto *User = Function::Create(FunctionType::get(Int32Ty, false),
|
|
|
|
GlobalValue::LinkOnceODRLinkage,
|
|
|
|
getInstrProfRuntimeHookVarUseFuncName(), M);
|
2014-12-08 19:02:35 +01:00
|
|
|
User->addFnAttr(Attribute::NoInline);
|
2015-10-23 06:22:58 +02:00
|
|
|
if (Options.NoRedZone) User->addFnAttr(Attribute::NoRedZone);
|
2015-02-25 23:52:20 +01:00
|
|
|
User->setVisibility(GlobalValue::HiddenVisibility);
|
2014-12-08 19:02:35 +01:00
|
|
|
|
|
|
|
IRBuilder<> IRB(BasicBlock::Create(M->getContext(), "", User));
|
|
|
|
auto *Load = IRB.CreateLoad(Var);
|
|
|
|
IRB.CreateRet(Load);
|
|
|
|
|
|
|
|
// Mark the user variable as used so that it isn't stripped out.
|
|
|
|
UsedVars.push_back(User);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstrProfiling::emitUses() {
|
|
|
|
if (UsedVars.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
GlobalVariable *LLVMUsed = M->getGlobalVariable("llvm.used");
|
2015-06-04 13:45:32 +02:00
|
|
|
std::vector<Constant *> MergedVars;
|
2014-12-08 19:02:35 +01:00
|
|
|
if (LLVMUsed) {
|
|
|
|
// Collect the existing members of llvm.used.
|
|
|
|
ConstantArray *Inits = cast<ConstantArray>(LLVMUsed->getInitializer());
|
|
|
|
for (unsigned I = 0, E = Inits->getNumOperands(); I != E; ++I)
|
|
|
|
MergedVars.push_back(Inits->getOperand(I));
|
|
|
|
LLVMUsed->eraseFromParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
Type *i8PTy = Type::getInt8PtrTy(M->getContext());
|
|
|
|
// Add uses for our data.
|
|
|
|
for (auto *Value : UsedVars)
|
|
|
|
MergedVars.push_back(
|
2015-06-04 13:45:32 +02:00
|
|
|
ConstantExpr::getBitCast(cast<Constant>(Value), i8PTy));
|
2014-12-08 19:02:35 +01:00
|
|
|
|
|
|
|
// Recreate llvm.used.
|
|
|
|
ArrayType *ATy = ArrayType::get(i8PTy, MergedVars.size());
|
2015-06-04 13:45:32 +02:00
|
|
|
LLVMUsed =
|
|
|
|
new GlobalVariable(*M, ATy, false, GlobalValue::AppendingLinkage,
|
|
|
|
ConstantArray::get(ATy, MergedVars), "llvm.used");
|
2014-12-08 19:02:35 +01:00
|
|
|
LLVMUsed->setSection("llvm.metadata");
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstrProfiling::emitInitialization() {
|
2015-05-01 01:49:23 +02:00
|
|
|
std::string InstrProfileOutput = Options.InstrProfileOutput;
|
|
|
|
|
2015-10-23 06:22:58 +02:00
|
|
|
Constant *RegisterF = M->getFunction(getInstrProfRegFuncsName());
|
|
|
|
if (!RegisterF && InstrProfileOutput.empty()) return;
|
2014-12-08 19:02:35 +01:00
|
|
|
|
|
|
|
// Create the initialization function.
|
|
|
|
auto *VoidTy = Type::getVoidTy(M->getContext());
|
2015-10-23 06:22:58 +02:00
|
|
|
auto *F = Function::Create(FunctionType::get(VoidTy, false),
|
|
|
|
GlobalValue::InternalLinkage,
|
|
|
|
getInstrProfInitFuncName(), M);
|
2014-12-08 19:02:35 +01:00
|
|
|
F->setUnnamedAddr(true);
|
|
|
|
F->addFnAttr(Attribute::NoInline);
|
2015-10-23 06:22:58 +02:00
|
|
|
if (Options.NoRedZone) F->addFnAttr(Attribute::NoRedZone);
|
2014-12-08 19:02:35 +01:00
|
|
|
|
|
|
|
// Add the basic block and the necessary calls.
|
|
|
|
IRBuilder<> IRB(BasicBlock::Create(M->getContext(), "", F));
|
2015-05-01 01:49:23 +02:00
|
|
|
if (RegisterF)
|
2015-05-19 00:13:54 +02:00
|
|
|
IRB.CreateCall(RegisterF, {});
|
2015-05-01 01:49:23 +02:00
|
|
|
if (!InstrProfileOutput.empty()) {
|
|
|
|
auto *Int8PtrTy = Type::getInt8PtrTy(M->getContext());
|
|
|
|
auto *SetNameTy = FunctionType::get(VoidTy, Int8PtrTy, false);
|
2015-10-23 06:22:58 +02:00
|
|
|
auto *SetNameF = Function::Create(SetNameTy, GlobalValue::ExternalLinkage,
|
|
|
|
getInstrProfFileOverriderFuncName(), M);
|
2015-05-01 01:49:23 +02:00
|
|
|
|
2015-06-29 22:03:46 +02:00
|
|
|
// Create variable for profile name.
|
2015-05-01 01:49:23 +02:00
|
|
|
Constant *ProfileNameConst =
|
|
|
|
ConstantDataArray::getString(M->getContext(), InstrProfileOutput, true);
|
|
|
|
GlobalVariable *ProfileName =
|
|
|
|
new GlobalVariable(*M, ProfileNameConst->getType(), true,
|
|
|
|
GlobalValue::PrivateLinkage, ProfileNameConst);
|
|
|
|
|
|
|
|
IRB.CreateCall(SetNameF, IRB.CreatePointerCast(ProfileName, Int8PtrTy));
|
|
|
|
}
|
2014-12-08 19:02:35 +01:00
|
|
|
IRB.CreateRetVoid();
|
|
|
|
|
|
|
|
appendToGlobalCtors(*M, F, 0);
|
|
|
|
}
|