1e8d8bef9SDimitry Andric //===- SampleProfileProbe.cpp - Pseudo probe Instrumentation -------------===// 2e8d8bef9SDimitry Andric // 3e8d8bef9SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4e8d8bef9SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 5e8d8bef9SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6e8d8bef9SDimitry Andric // 7e8d8bef9SDimitry Andric //===----------------------------------------------------------------------===// 8e8d8bef9SDimitry Andric // 9e8d8bef9SDimitry Andric // This file implements the SampleProfileProber transformation. 10e8d8bef9SDimitry Andric // 11e8d8bef9SDimitry Andric //===----------------------------------------------------------------------===// 12e8d8bef9SDimitry Andric 13e8d8bef9SDimitry Andric #include "llvm/Transforms/IPO/SampleProfileProbe.h" 14e8d8bef9SDimitry Andric #include "llvm/ADT/Statistic.h" 15d409305fSDimitry Andric #include "llvm/Analysis/BlockFrequencyInfo.h" 1681ad6265SDimitry Andric #include "llvm/Analysis/LoopInfo.h" 17e8d8bef9SDimitry Andric #include "llvm/IR/BasicBlock.h" 18e8d8bef9SDimitry Andric #include "llvm/IR/Constants.h" 19e8d8bef9SDimitry Andric #include "llvm/IR/DebugInfoMetadata.h" 20e8d8bef9SDimitry Andric #include "llvm/IR/IRBuilder.h" 21e8d8bef9SDimitry Andric #include "llvm/IR/Instruction.h" 221fd87a68SDimitry Andric #include "llvm/IR/IntrinsicInst.h" 23e8d8bef9SDimitry Andric #include "llvm/IR/MDBuilder.h" 2481ad6265SDimitry Andric #include "llvm/IR/PseudoProbe.h" 25e8d8bef9SDimitry Andric #include "llvm/ProfileData/SampleProf.h" 26e8d8bef9SDimitry Andric #include "llvm/Support/CRC.h" 27d409305fSDimitry Andric #include "llvm/Support/CommandLine.h" 2881ad6265SDimitry Andric #include "llvm/Target/TargetMachine.h" 29e8d8bef9SDimitry Andric #include "llvm/Transforms/Instrumentation.h" 30e8d8bef9SDimitry Andric #include "llvm/Transforms/Utils/ModuleUtils.h" 31d409305fSDimitry Andric #include <unordered_set> 32e8d8bef9SDimitry Andric #include <vector> 33e8d8bef9SDimitry Andric 34e8d8bef9SDimitry Andric using namespace llvm; 35e8d8bef9SDimitry Andric #define DEBUG_TYPE "sample-profile-probe" 36e8d8bef9SDimitry Andric 37e8d8bef9SDimitry Andric STATISTIC(ArtificialDbgLine, 38e8d8bef9SDimitry Andric "Number of probes that have an artificial debug line"); 39e8d8bef9SDimitry Andric 40d409305fSDimitry Andric static cl::opt<bool> 41d409305fSDimitry Andric VerifyPseudoProbe("verify-pseudo-probe", cl::init(false), cl::Hidden, 42d409305fSDimitry Andric cl::desc("Do pseudo probe verification")); 43d409305fSDimitry Andric 44d409305fSDimitry Andric static cl::list<std::string> VerifyPseudoProbeFuncList( 45d409305fSDimitry Andric "verify-pseudo-probe-funcs", cl::Hidden, 46d409305fSDimitry Andric cl::desc("The option to specify the name of the functions to verify.")); 47d409305fSDimitry Andric 48d409305fSDimitry Andric static cl::opt<bool> 49d409305fSDimitry Andric UpdatePseudoProbe("update-pseudo-probe", cl::init(true), cl::Hidden, 50d409305fSDimitry Andric cl::desc("Update pseudo probe distribution factor")); 51d409305fSDimitry Andric 52fe6060f1SDimitry Andric static uint64_t getCallStackHash(const DILocation *DIL) { 53fe6060f1SDimitry Andric uint64_t Hash = 0; 54fe6060f1SDimitry Andric const DILocation *InlinedAt = DIL ? DIL->getInlinedAt() : nullptr; 55fe6060f1SDimitry Andric while (InlinedAt) { 56fe6060f1SDimitry Andric Hash ^= MD5Hash(std::to_string(InlinedAt->getLine())); 57fe6060f1SDimitry Andric Hash ^= MD5Hash(std::to_string(InlinedAt->getColumn())); 58fe6060f1SDimitry Andric const DISubprogram *SP = InlinedAt->getScope()->getSubprogram(); 59fe6060f1SDimitry Andric // Use linkage name for C++ if possible. 60fe6060f1SDimitry Andric auto Name = SP->getLinkageName(); 61fe6060f1SDimitry Andric if (Name.empty()) 62fe6060f1SDimitry Andric Name = SP->getName(); 63fe6060f1SDimitry Andric Hash ^= MD5Hash(Name); 64fe6060f1SDimitry Andric InlinedAt = InlinedAt->getInlinedAt(); 65fe6060f1SDimitry Andric } 66fe6060f1SDimitry Andric return Hash; 67fe6060f1SDimitry Andric } 68fe6060f1SDimitry Andric 69fe6060f1SDimitry Andric static uint64_t computeCallStackHash(const Instruction &Inst) { 70fe6060f1SDimitry Andric return getCallStackHash(Inst.getDebugLoc()); 71fe6060f1SDimitry Andric } 72fe6060f1SDimitry Andric 73d409305fSDimitry Andric bool PseudoProbeVerifier::shouldVerifyFunction(const Function *F) { 74d409305fSDimitry Andric // Skip function declaration. 75d409305fSDimitry Andric if (F->isDeclaration()) 76d409305fSDimitry Andric return false; 77d409305fSDimitry Andric // Skip function that will not be emitted into object file. The prevailing 78d409305fSDimitry Andric // defintion will be verified instead. 79d409305fSDimitry Andric if (F->hasAvailableExternallyLinkage()) 80d409305fSDimitry Andric return false; 81d409305fSDimitry Andric // Do a name matching. 82d409305fSDimitry Andric static std::unordered_set<std::string> VerifyFuncNames( 83d409305fSDimitry Andric VerifyPseudoProbeFuncList.begin(), VerifyPseudoProbeFuncList.end()); 84d409305fSDimitry Andric return VerifyFuncNames.empty() || VerifyFuncNames.count(F->getName().str()); 85d409305fSDimitry Andric } 86d409305fSDimitry Andric 87d409305fSDimitry Andric void PseudoProbeVerifier::registerCallbacks(PassInstrumentationCallbacks &PIC) { 88d409305fSDimitry Andric if (VerifyPseudoProbe) { 89d409305fSDimitry Andric PIC.registerAfterPassCallback( 90d409305fSDimitry Andric [this](StringRef P, Any IR, const PreservedAnalyses &) { 91d409305fSDimitry Andric this->runAfterPass(P, IR); 92d409305fSDimitry Andric }); 93d409305fSDimitry Andric } 94d409305fSDimitry Andric } 95d409305fSDimitry Andric 96d409305fSDimitry Andric // Callback to run after each transformation for the new pass manager. 97d409305fSDimitry Andric void PseudoProbeVerifier::runAfterPass(StringRef PassID, Any IR) { 98d409305fSDimitry Andric std::string Banner = 99d409305fSDimitry Andric "\n*** Pseudo Probe Verification After " + PassID.str() + " ***\n"; 100d409305fSDimitry Andric dbgs() << Banner; 101*bdd1243dSDimitry Andric if (const auto **M = any_cast<const Module *>(&IR)) 102*bdd1243dSDimitry Andric runAfterPass(*M); 103*bdd1243dSDimitry Andric else if (const auto **F = any_cast<const Function *>(&IR)) 104*bdd1243dSDimitry Andric runAfterPass(*F); 105*bdd1243dSDimitry Andric else if (const auto **C = any_cast<const LazyCallGraph::SCC *>(&IR)) 106*bdd1243dSDimitry Andric runAfterPass(*C); 107*bdd1243dSDimitry Andric else if (const auto **L = any_cast<const Loop *>(&IR)) 108*bdd1243dSDimitry Andric runAfterPass(*L); 109d409305fSDimitry Andric else 110d409305fSDimitry Andric llvm_unreachable("Unknown IR unit"); 111d409305fSDimitry Andric } 112d409305fSDimitry Andric 113d409305fSDimitry Andric void PseudoProbeVerifier::runAfterPass(const Module *M) { 114d409305fSDimitry Andric for (const Function &F : *M) 115d409305fSDimitry Andric runAfterPass(&F); 116d409305fSDimitry Andric } 117d409305fSDimitry Andric 118d409305fSDimitry Andric void PseudoProbeVerifier::runAfterPass(const LazyCallGraph::SCC *C) { 119d409305fSDimitry Andric for (const LazyCallGraph::Node &N : *C) 120d409305fSDimitry Andric runAfterPass(&N.getFunction()); 121d409305fSDimitry Andric } 122d409305fSDimitry Andric 123d409305fSDimitry Andric void PseudoProbeVerifier::runAfterPass(const Function *F) { 124d409305fSDimitry Andric if (!shouldVerifyFunction(F)) 125d409305fSDimitry Andric return; 126d409305fSDimitry Andric ProbeFactorMap ProbeFactors; 127d409305fSDimitry Andric for (const auto &BB : *F) 128d409305fSDimitry Andric collectProbeFactors(&BB, ProbeFactors); 129d409305fSDimitry Andric verifyProbeFactors(F, ProbeFactors); 130d409305fSDimitry Andric } 131d409305fSDimitry Andric 132d409305fSDimitry Andric void PseudoProbeVerifier::runAfterPass(const Loop *L) { 133d409305fSDimitry Andric const Function *F = L->getHeader()->getParent(); 134d409305fSDimitry Andric runAfterPass(F); 135d409305fSDimitry Andric } 136d409305fSDimitry Andric 137d409305fSDimitry Andric void PseudoProbeVerifier::collectProbeFactors(const BasicBlock *Block, 138d409305fSDimitry Andric ProbeFactorMap &ProbeFactors) { 139d409305fSDimitry Andric for (const auto &I : *Block) { 140*bdd1243dSDimitry Andric if (std::optional<PseudoProbe> Probe = extractProbe(I)) { 141fe6060f1SDimitry Andric uint64_t Hash = computeCallStackHash(I); 142fe6060f1SDimitry Andric ProbeFactors[{Probe->Id, Hash}] += Probe->Factor; 143fe6060f1SDimitry Andric } 144d409305fSDimitry Andric } 145d409305fSDimitry Andric } 146d409305fSDimitry Andric 147d409305fSDimitry Andric void PseudoProbeVerifier::verifyProbeFactors( 148d409305fSDimitry Andric const Function *F, const ProbeFactorMap &ProbeFactors) { 149d409305fSDimitry Andric bool BannerPrinted = false; 150d409305fSDimitry Andric auto &PrevProbeFactors = FunctionProbeFactors[F->getName()]; 151d409305fSDimitry Andric for (const auto &I : ProbeFactors) { 152d409305fSDimitry Andric float CurProbeFactor = I.second; 153d409305fSDimitry Andric if (PrevProbeFactors.count(I.first)) { 154d409305fSDimitry Andric float PrevProbeFactor = PrevProbeFactors[I.first]; 155d409305fSDimitry Andric if (std::abs(CurProbeFactor - PrevProbeFactor) > 156d409305fSDimitry Andric DistributionFactorVariance) { 157d409305fSDimitry Andric if (!BannerPrinted) { 158d409305fSDimitry Andric dbgs() << "Function " << F->getName() << ":\n"; 159d409305fSDimitry Andric BannerPrinted = true; 160d409305fSDimitry Andric } 161fe6060f1SDimitry Andric dbgs() << "Probe " << I.first.first << "\tprevious factor " 162d409305fSDimitry Andric << format("%0.2f", PrevProbeFactor) << "\tcurrent factor " 163d409305fSDimitry Andric << format("%0.2f", CurProbeFactor) << "\n"; 164d409305fSDimitry Andric } 165d409305fSDimitry Andric } 166d409305fSDimitry Andric 167d409305fSDimitry Andric // Update 168d409305fSDimitry Andric PrevProbeFactors[I.first] = I.second; 169d409305fSDimitry Andric } 170d409305fSDimitry Andric } 171d409305fSDimitry Andric 172e8d8bef9SDimitry Andric PseudoProbeManager::PseudoProbeManager(const Module &M) { 173e8d8bef9SDimitry Andric if (NamedMDNode *FuncInfo = M.getNamedMetadata(PseudoProbeDescMetadataName)) { 174e8d8bef9SDimitry Andric for (const auto *Operand : FuncInfo->operands()) { 175e8d8bef9SDimitry Andric const auto *MD = cast<MDNode>(Operand); 176e8d8bef9SDimitry Andric auto GUID = 177e8d8bef9SDimitry Andric mdconst::dyn_extract<ConstantInt>(MD->getOperand(0))->getZExtValue(); 178e8d8bef9SDimitry Andric auto Hash = 179e8d8bef9SDimitry Andric mdconst::dyn_extract<ConstantInt>(MD->getOperand(1))->getZExtValue(); 180e8d8bef9SDimitry Andric GUIDToProbeDescMap.try_emplace(GUID, PseudoProbeDescriptor(GUID, Hash)); 181e8d8bef9SDimitry Andric } 182e8d8bef9SDimitry Andric } 183e8d8bef9SDimitry Andric } 184e8d8bef9SDimitry Andric 185e8d8bef9SDimitry Andric const PseudoProbeDescriptor * 186e8d8bef9SDimitry Andric PseudoProbeManager::getDesc(const Function &F) const { 187e8d8bef9SDimitry Andric auto I = GUIDToProbeDescMap.find( 188e8d8bef9SDimitry Andric Function::getGUID(FunctionSamples::getCanonicalFnName(F))); 189e8d8bef9SDimitry Andric return I == GUIDToProbeDescMap.end() ? nullptr : &I->second; 190e8d8bef9SDimitry Andric } 191e8d8bef9SDimitry Andric 192e8d8bef9SDimitry Andric bool PseudoProbeManager::moduleIsProbed(const Module &M) const { 193e8d8bef9SDimitry Andric return M.getNamedMetadata(PseudoProbeDescMetadataName); 194e8d8bef9SDimitry Andric } 195e8d8bef9SDimitry Andric 196e8d8bef9SDimitry Andric bool PseudoProbeManager::profileIsValid(const Function &F, 197e8d8bef9SDimitry Andric const FunctionSamples &Samples) const { 198e8d8bef9SDimitry Andric const auto *Desc = getDesc(F); 199e8d8bef9SDimitry Andric if (!Desc) { 200e8d8bef9SDimitry Andric LLVM_DEBUG(dbgs() << "Probe descriptor missing for Function " << F.getName() 201e8d8bef9SDimitry Andric << "\n"); 202e8d8bef9SDimitry Andric return false; 203e8d8bef9SDimitry Andric } else { 204e8d8bef9SDimitry Andric if (Desc->getFunctionHash() != Samples.getFunctionHash()) { 205e8d8bef9SDimitry Andric LLVM_DEBUG(dbgs() << "Hash mismatch for Function " << F.getName() 206e8d8bef9SDimitry Andric << "\n"); 207e8d8bef9SDimitry Andric return false; 208e8d8bef9SDimitry Andric } 209e8d8bef9SDimitry Andric } 210e8d8bef9SDimitry Andric return true; 211e8d8bef9SDimitry Andric } 212e8d8bef9SDimitry Andric 213e8d8bef9SDimitry Andric SampleProfileProber::SampleProfileProber(Function &Func, 214e8d8bef9SDimitry Andric const std::string &CurModuleUniqueId) 215e8d8bef9SDimitry Andric : F(&Func), CurModuleUniqueId(CurModuleUniqueId) { 216e8d8bef9SDimitry Andric BlockProbeIds.clear(); 217e8d8bef9SDimitry Andric CallProbeIds.clear(); 218e8d8bef9SDimitry Andric LastProbeId = (uint32_t)PseudoProbeReservedId::Last; 219e8d8bef9SDimitry Andric computeProbeIdForBlocks(); 220e8d8bef9SDimitry Andric computeProbeIdForCallsites(); 221e8d8bef9SDimitry Andric computeCFGHash(); 222e8d8bef9SDimitry Andric } 223e8d8bef9SDimitry Andric 224e8d8bef9SDimitry Andric // Compute Hash value for the CFG: the lower 32 bits are CRC32 of the index 225e8d8bef9SDimitry Andric // value of each BB in the CFG. The higher 32 bits record the number of edges 226e8d8bef9SDimitry Andric // preceded by the number of indirect calls. 227e8d8bef9SDimitry Andric // This is derived from FuncPGOInstrumentation<Edge, BBInfo>::computeCFGHash(). 228e8d8bef9SDimitry Andric void SampleProfileProber::computeCFGHash() { 229e8d8bef9SDimitry Andric std::vector<uint8_t> Indexes; 230e8d8bef9SDimitry Andric JamCRC JC; 231e8d8bef9SDimitry Andric for (auto &BB : *F) { 232e8d8bef9SDimitry Andric auto *TI = BB.getTerminator(); 233e8d8bef9SDimitry Andric for (unsigned I = 0, E = TI->getNumSuccessors(); I != E; ++I) { 234e8d8bef9SDimitry Andric auto *Succ = TI->getSuccessor(I); 235e8d8bef9SDimitry Andric auto Index = getBlockId(Succ); 236e8d8bef9SDimitry Andric for (int J = 0; J < 4; J++) 237e8d8bef9SDimitry Andric Indexes.push_back((uint8_t)(Index >> (J * 8))); 238e8d8bef9SDimitry Andric } 239e8d8bef9SDimitry Andric } 240e8d8bef9SDimitry Andric 241e8d8bef9SDimitry Andric JC.update(Indexes); 242e8d8bef9SDimitry Andric 243e8d8bef9SDimitry Andric FunctionHash = (uint64_t)CallProbeIds.size() << 48 | 244e8d8bef9SDimitry Andric (uint64_t)Indexes.size() << 32 | JC.getCRC(); 245e8d8bef9SDimitry Andric // Reserve bit 60-63 for other information purpose. 246e8d8bef9SDimitry Andric FunctionHash &= 0x0FFFFFFFFFFFFFFF; 247e8d8bef9SDimitry Andric assert(FunctionHash && "Function checksum should not be zero"); 248e8d8bef9SDimitry Andric LLVM_DEBUG(dbgs() << "\nFunction Hash Computation for " << F->getName() 249e8d8bef9SDimitry Andric << ":\n" 250e8d8bef9SDimitry Andric << " CRC = " << JC.getCRC() << ", Edges = " 251e8d8bef9SDimitry Andric << Indexes.size() << ", ICSites = " << CallProbeIds.size() 252e8d8bef9SDimitry Andric << ", Hash = " << FunctionHash << "\n"); 253e8d8bef9SDimitry Andric } 254e8d8bef9SDimitry Andric 255e8d8bef9SDimitry Andric void SampleProfileProber::computeProbeIdForBlocks() { 256e8d8bef9SDimitry Andric for (auto &BB : *F) { 257e8d8bef9SDimitry Andric BlockProbeIds[&BB] = ++LastProbeId; 258e8d8bef9SDimitry Andric } 259e8d8bef9SDimitry Andric } 260e8d8bef9SDimitry Andric 261e8d8bef9SDimitry Andric void SampleProfileProber::computeProbeIdForCallsites() { 262e8d8bef9SDimitry Andric for (auto &BB : *F) { 263e8d8bef9SDimitry Andric for (auto &I : BB) { 264e8d8bef9SDimitry Andric if (!isa<CallBase>(I)) 265e8d8bef9SDimitry Andric continue; 266e8d8bef9SDimitry Andric if (isa<IntrinsicInst>(&I)) 267e8d8bef9SDimitry Andric continue; 268e8d8bef9SDimitry Andric CallProbeIds[&I] = ++LastProbeId; 269e8d8bef9SDimitry Andric } 270e8d8bef9SDimitry Andric } 271e8d8bef9SDimitry Andric } 272e8d8bef9SDimitry Andric 273e8d8bef9SDimitry Andric uint32_t SampleProfileProber::getBlockId(const BasicBlock *BB) const { 274e8d8bef9SDimitry Andric auto I = BlockProbeIds.find(const_cast<BasicBlock *>(BB)); 275e8d8bef9SDimitry Andric return I == BlockProbeIds.end() ? 0 : I->second; 276e8d8bef9SDimitry Andric } 277e8d8bef9SDimitry Andric 278e8d8bef9SDimitry Andric uint32_t SampleProfileProber::getCallsiteId(const Instruction *Call) const { 279e8d8bef9SDimitry Andric auto Iter = CallProbeIds.find(const_cast<Instruction *>(Call)); 280e8d8bef9SDimitry Andric return Iter == CallProbeIds.end() ? 0 : Iter->second; 281e8d8bef9SDimitry Andric } 282e8d8bef9SDimitry Andric 283e8d8bef9SDimitry Andric void SampleProfileProber::instrumentOneFunc(Function &F, TargetMachine *TM) { 284e8d8bef9SDimitry Andric Module *M = F.getParent(); 285e8d8bef9SDimitry Andric MDBuilder MDB(F.getContext()); 286e8d8bef9SDimitry Andric // Compute a GUID without considering the function's linkage type. This is 287e8d8bef9SDimitry Andric // fine since function name is the only key in the profile database. 288e8d8bef9SDimitry Andric uint64_t Guid = Function::getGUID(F.getName()); 289e8d8bef9SDimitry Andric 290e8d8bef9SDimitry Andric // Assign an artificial debug line to a probe that doesn't come with a real 291e8d8bef9SDimitry Andric // line. A probe not having a debug line will get an incomplete inline 292e8d8bef9SDimitry Andric // context. This will cause samples collected on the probe to be counted 293e8d8bef9SDimitry Andric // into the base profile instead of a context profile. The line number 294e8d8bef9SDimitry Andric // itself is not important though. 295e8d8bef9SDimitry Andric auto AssignDebugLoc = [&](Instruction *I) { 296e8d8bef9SDimitry Andric assert((isa<PseudoProbeInst>(I) || isa<CallBase>(I)) && 297e8d8bef9SDimitry Andric "Expecting pseudo probe or call instructions"); 298e8d8bef9SDimitry Andric if (!I->getDebugLoc()) { 299e8d8bef9SDimitry Andric if (auto *SP = F.getSubprogram()) { 300e8d8bef9SDimitry Andric auto DIL = DILocation::get(SP->getContext(), 0, 0, SP); 301e8d8bef9SDimitry Andric I->setDebugLoc(DIL); 302e8d8bef9SDimitry Andric ArtificialDbgLine++; 303e8d8bef9SDimitry Andric LLVM_DEBUG({ 304e8d8bef9SDimitry Andric dbgs() << "\nIn Function " << F.getName() 305e8d8bef9SDimitry Andric << " Probe gets an artificial debug line\n"; 306e8d8bef9SDimitry Andric I->dump(); 307e8d8bef9SDimitry Andric }); 308e8d8bef9SDimitry Andric } 309e8d8bef9SDimitry Andric } 310e8d8bef9SDimitry Andric }; 311e8d8bef9SDimitry Andric 312e8d8bef9SDimitry Andric // Probe basic blocks. 313e8d8bef9SDimitry Andric for (auto &I : BlockProbeIds) { 314e8d8bef9SDimitry Andric BasicBlock *BB = I.first; 315e8d8bef9SDimitry Andric uint32_t Index = I.second; 316e8d8bef9SDimitry Andric // Insert a probe before an instruction with a valid debug line number which 317e8d8bef9SDimitry Andric // will be assigned to the probe. The line number will be used later to 318e8d8bef9SDimitry Andric // model the inline context when the probe is inlined into other functions. 319e8d8bef9SDimitry Andric // Debug instructions, phi nodes and lifetime markers do not have an valid 320e8d8bef9SDimitry Andric // line number. Real instructions generated by optimizations may not come 321e8d8bef9SDimitry Andric // with a line number either. 322e8d8bef9SDimitry Andric auto HasValidDbgLine = [](Instruction *J) { 323e8d8bef9SDimitry Andric return !isa<PHINode>(J) && !isa<DbgInfoIntrinsic>(J) && 324e8d8bef9SDimitry Andric !J->isLifetimeStartOrEnd() && J->getDebugLoc(); 325e8d8bef9SDimitry Andric }; 326e8d8bef9SDimitry Andric 327e8d8bef9SDimitry Andric Instruction *J = &*BB->getFirstInsertionPt(); 328e8d8bef9SDimitry Andric while (J != BB->getTerminator() && !HasValidDbgLine(J)) { 329e8d8bef9SDimitry Andric J = J->getNextNode(); 330e8d8bef9SDimitry Andric } 331e8d8bef9SDimitry Andric 332e8d8bef9SDimitry Andric IRBuilder<> Builder(J); 333e8d8bef9SDimitry Andric assert(Builder.GetInsertPoint() != BB->end() && 334e8d8bef9SDimitry Andric "Cannot get the probing point"); 335e8d8bef9SDimitry Andric Function *ProbeFn = 336e8d8bef9SDimitry Andric llvm::Intrinsic::getDeclaration(M, Intrinsic::pseudoprobe); 337e8d8bef9SDimitry Andric Value *Args[] = {Builder.getInt64(Guid), Builder.getInt64(Index), 338d409305fSDimitry Andric Builder.getInt32(0), 339d409305fSDimitry Andric Builder.getInt64(PseudoProbeFullDistributionFactor)}; 340e8d8bef9SDimitry Andric auto *Probe = Builder.CreateCall(ProbeFn, Args); 341e8d8bef9SDimitry Andric AssignDebugLoc(Probe); 342e8d8bef9SDimitry Andric } 343e8d8bef9SDimitry Andric 344e8d8bef9SDimitry Andric // Probe both direct calls and indirect calls. Direct calls are probed so that 345e8d8bef9SDimitry Andric // their probe ID can be used as an call site identifier to represent a 346e8d8bef9SDimitry Andric // calling context. 347e8d8bef9SDimitry Andric for (auto &I : CallProbeIds) { 348e8d8bef9SDimitry Andric auto *Call = I.first; 349e8d8bef9SDimitry Andric uint32_t Index = I.second; 350e8d8bef9SDimitry Andric uint32_t Type = cast<CallBase>(Call)->getCalledFunction() 351e8d8bef9SDimitry Andric ? (uint32_t)PseudoProbeType::DirectCall 352e8d8bef9SDimitry Andric : (uint32_t)PseudoProbeType::IndirectCall; 353e8d8bef9SDimitry Andric AssignDebugLoc(Call); 354e8d8bef9SDimitry Andric // Levarge the 32-bit discriminator field of debug data to store the ID and 355e8d8bef9SDimitry Andric // type of a callsite probe. This gets rid of the dependency on plumbing a 356e8d8bef9SDimitry Andric // customized metadata through the codegen pipeline. 357d409305fSDimitry Andric uint32_t V = PseudoProbeDwarfDiscriminator::packProbeData( 358d409305fSDimitry Andric Index, Type, 0, PseudoProbeDwarfDiscriminator::FullDistributionFactor); 359e8d8bef9SDimitry Andric if (auto DIL = Call->getDebugLoc()) { 360e8d8bef9SDimitry Andric DIL = DIL->cloneWithDiscriminator(V); 361e8d8bef9SDimitry Andric Call->setDebugLoc(DIL); 362e8d8bef9SDimitry Andric } 363e8d8bef9SDimitry Andric } 364e8d8bef9SDimitry Andric 365e8d8bef9SDimitry Andric // Create module-level metadata that contains function info necessary to 366e8d8bef9SDimitry Andric // synthesize probe-based sample counts, which are 367e8d8bef9SDimitry Andric // - FunctionGUID 368e8d8bef9SDimitry Andric // - FunctionHash. 369e8d8bef9SDimitry Andric // - FunctionName 370e8d8bef9SDimitry Andric auto Hash = getFunctionHash(); 371e8d8bef9SDimitry Andric auto *MD = MDB.createPseudoProbeDesc(Guid, Hash, &F); 372e8d8bef9SDimitry Andric auto *NMD = M->getNamedMetadata(PseudoProbeDescMetadataName); 373e8d8bef9SDimitry Andric assert(NMD && "llvm.pseudo_probe_desc should be pre-created"); 374e8d8bef9SDimitry Andric NMD->addOperand(MD); 375e8d8bef9SDimitry Andric 376e8d8bef9SDimitry Andric // Preserve a comdat group to hold all probes materialized later. This 377e8d8bef9SDimitry Andric // allows that when the function is considered dead and removed, the 378e8d8bef9SDimitry Andric // materialized probes are disposed too. 379e8d8bef9SDimitry Andric // Imported functions are defined in another module. They do not need 380e8d8bef9SDimitry Andric // the following handling since same care will be taken for them in their 381e8d8bef9SDimitry Andric // original module. The pseudo probes inserted into an imported functions 382e8d8bef9SDimitry Andric // above will naturally not be emitted since the imported function is free 383e8d8bef9SDimitry Andric // from object emission. However they will be emitted together with the 384e8d8bef9SDimitry Andric // inliner functions that the imported function is inlined into. We are not 385e8d8bef9SDimitry Andric // creating a comdat group for an import function since it's useless anyway. 386e8d8bef9SDimitry Andric if (!F.isDeclarationForLinker()) { 387e8d8bef9SDimitry Andric if (TM) { 388e8d8bef9SDimitry Andric auto Triple = TM->getTargetTriple(); 389fe6060f1SDimitry Andric if (Triple.supportsCOMDAT() && TM->getFunctionSections()) 390fe6060f1SDimitry Andric getOrCreateFunctionComdat(F, Triple); 391e8d8bef9SDimitry Andric } 392e8d8bef9SDimitry Andric } 393e8d8bef9SDimitry Andric } 394e8d8bef9SDimitry Andric 395e8d8bef9SDimitry Andric PreservedAnalyses SampleProfileProbePass::run(Module &M, 396e8d8bef9SDimitry Andric ModuleAnalysisManager &AM) { 397e8d8bef9SDimitry Andric auto ModuleId = getUniqueModuleId(&M); 398e8d8bef9SDimitry Andric // Create the pseudo probe desc metadata beforehand. 399e8d8bef9SDimitry Andric // Note that modules with only data but no functions will require this to 400e8d8bef9SDimitry Andric // be set up so that they will be known as probed later. 401e8d8bef9SDimitry Andric M.getOrInsertNamedMetadata(PseudoProbeDescMetadataName); 402e8d8bef9SDimitry Andric 403e8d8bef9SDimitry Andric for (auto &F : M) { 404e8d8bef9SDimitry Andric if (F.isDeclaration()) 405e8d8bef9SDimitry Andric continue; 406e8d8bef9SDimitry Andric SampleProfileProber ProbeManager(F, ModuleId); 407e8d8bef9SDimitry Andric ProbeManager.instrumentOneFunc(F, TM); 408e8d8bef9SDimitry Andric } 409e8d8bef9SDimitry Andric 410e8d8bef9SDimitry Andric return PreservedAnalyses::none(); 411e8d8bef9SDimitry Andric } 412d409305fSDimitry Andric 413d409305fSDimitry Andric void PseudoProbeUpdatePass::runOnFunction(Function &F, 414d409305fSDimitry Andric FunctionAnalysisManager &FAM) { 415d409305fSDimitry Andric BlockFrequencyInfo &BFI = FAM.getResult<BlockFrequencyAnalysis>(F); 416d409305fSDimitry Andric auto BBProfileCount = [&BFI](BasicBlock *BB) { 41781ad6265SDimitry Andric return BFI.getBlockProfileCount(BB).value_or(0); 418d409305fSDimitry Andric }; 419d409305fSDimitry Andric 420d409305fSDimitry Andric // Collect the sum of execution weight for each probe. 421d409305fSDimitry Andric ProbeFactorMap ProbeFactors; 422d409305fSDimitry Andric for (auto &Block : F) { 423d409305fSDimitry Andric for (auto &I : Block) { 424*bdd1243dSDimitry Andric if (std::optional<PseudoProbe> Probe = extractProbe(I)) { 425fe6060f1SDimitry Andric uint64_t Hash = computeCallStackHash(I); 426fe6060f1SDimitry Andric ProbeFactors[{Probe->Id, Hash}] += BBProfileCount(&Block); 427fe6060f1SDimitry Andric } 428d409305fSDimitry Andric } 429d409305fSDimitry Andric } 430d409305fSDimitry Andric 431d409305fSDimitry Andric // Fix up over-counted probes. 432d409305fSDimitry Andric for (auto &Block : F) { 433d409305fSDimitry Andric for (auto &I : Block) { 434*bdd1243dSDimitry Andric if (std::optional<PseudoProbe> Probe = extractProbe(I)) { 435fe6060f1SDimitry Andric uint64_t Hash = computeCallStackHash(I); 436fe6060f1SDimitry Andric float Sum = ProbeFactors[{Probe->Id, Hash}]; 437d409305fSDimitry Andric if (Sum != 0) 438d409305fSDimitry Andric setProbeDistributionFactor(I, BBProfileCount(&Block) / Sum); 439d409305fSDimitry Andric } 440d409305fSDimitry Andric } 441d409305fSDimitry Andric } 442d409305fSDimitry Andric } 443d409305fSDimitry Andric 444d409305fSDimitry Andric PreservedAnalyses PseudoProbeUpdatePass::run(Module &M, 445d409305fSDimitry Andric ModuleAnalysisManager &AM) { 446d409305fSDimitry Andric if (UpdatePseudoProbe) { 447d409305fSDimitry Andric for (auto &F : M) { 448d409305fSDimitry Andric if (F.isDeclaration()) 449d409305fSDimitry Andric continue; 450d409305fSDimitry Andric FunctionAnalysisManager &FAM = 451d409305fSDimitry Andric AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager(); 452d409305fSDimitry Andric runOnFunction(F, FAM); 453d409305fSDimitry Andric } 454d409305fSDimitry Andric } 455d409305fSDimitry Andric return PreservedAnalyses::none(); 456d409305fSDimitry Andric } 457