26#define DEBUG_TYPE "pseudo-probe-inserter"
37 StringRef getPassName()
const override {
return "Pseudo Probe Inserter"; }
44 bool doInitialization(
Module &M)
override {
61 auto Value =
DL->getDiscriminator();
90 auto MII =
MBB.rbegin();
91 while (MII !=
MBB.rend()) {
97 if (Cur->getOpcode() != TargetOpcode::PSEUDO_PROBE)
100 auto *ProbeInstr = &*Cur;
101 MBB.remove(ProbeInstr);
102 MBB.insert(FirstInstr, ProbeInstr);
114 if (
MI.isPseudoProbe())
118 for (
auto *
MI : ToBeRemoved)
119 MI->eraseFromParent();
130 auto Name =
DL->getSubprogramLinkageName();
138 bool ShouldRun =
false;
142char PseudoProbeInserter::ID = 0;
144 "Insert pseudo probe annotations for value profiling",
148 "Insert pseudo probe annotations for value profiling",
152 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.
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.
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)