26#define DEBUG_TYPE "pseudo-probe-inserter"
39 StringRef getPassName()
const override {
return "Pseudo Probe Inserter"; }
46 bool doInitialization(
Module &M)
override {
63 auto Value =
DL->getDiscriminator();
92 auto MII =
MBB.rbegin();
93 while (MII !=
MBB.rend()) {
99 if (Cur->getOpcode() != TargetOpcode::PSEUDO_PROBE)
102 auto *ProbeInstr = &*Cur;
103 MBB.remove(ProbeInstr);
104 MBB.insert(FirstInstr, ProbeInstr);
116 if (
MI.isPseudoProbe())
120 for (
auto *
MI : ToBeRemoved)
121 MI->eraseFromParent();
132 auto Name =
DL->getSubprogramLinkageName();
140 bool ShouldRun =
false;
144char PseudoProbeInserter::ID = 0;
146 "Insert pseudo probe annotations for value profiling",
150 "Insert pseudo probe annotations for value profiling",
154 return new PseudoProbeInserter();
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
const HexagonInstrInfo * TII
Module.h This file contains the declarations for the Module class.
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Represent the analysis usage information of a pass.
void setPreservesAll()
Set by analyses that do not transform their input at all.
static bool isPseudoProbeDiscriminator(unsigned Discriminator)
FunctionPass class - This class is used to implement most global optimizations.
static LLVM_ABI GUID getGUIDAssumingExternalLinkage(StringRef GlobalName)
Return a 64-bit global unique ID constructed from the name of a global symbol.
Module * getParent()
Get the module that this global value is contained inside of...
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
Function & getFunction()
Return the LLVM function that this machine code represents.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
Representation of each machine instruction.
A Module instance is used to store all the information related to an LLVM module.
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
TargetInstrInfo - Interface to description of machine instruction set.
Target-Independent Code Generator Pass Configuration Options.
virtual const TargetInstrInfo * getInstrInfo() const
LLVM Value Representation.
static StringRef getCanonicalCoroFnName(StringRef FnName, StringRef Attr="selected")
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
This is an optimization pass for GlobalISel generic memory operations.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
LLVM_ABI FunctionPass * createPseudoProbeInserter()
This pass inserts pseudo probe annotation for callsite profiling.
LLVM_ABI void initializePseudoProbeInserterPass(PassRegistry &)
constexpr const char * PseudoProbeDescMetadataName
static uint32_t extractProbeIndex(uint32_t Value)
static uint32_t extractProbeAttributes(uint32_t Value)
static uint32_t extractProbeType(uint32_t Value)