36#define DEBUG_TYPE "livedebugvalues"
42 cl::desc(
"Use instruction-ref based LiveDebugValues with "
43 "normal DBG_VALUE inputs"),
47 "experimental-debug-variable-locations",
48 cl::desc(
"Use experimental new value-tracking variable locations"));
53 "livedebugvalues-input-bb-limit",
54 cl::desc(
"Maximum input basic blocks before DBG_VALUE limit applies"),
57 "livedebugvalues-input-dbg-value-limit",
59 "Maximum input DBG_VALUE insts supported by debug range extension"),
70 LiveDebugValuesLegacy();
71 ~LiveDebugValuesLegacy()
override =
default;
85 ~LiveDebugValues() =
default;
89 std::unique_ptr<LDVImpl> InstrRefImpl;
90 std::unique_ptr<LDVImpl> VarLocImpl;
95char LiveDebugValuesLegacy::ID = 0;
105LiveDebugValues::LiveDebugValues() {
123 OS << MapClassName2PassName(
name());
124 if (ShouldEmitDebugEntryValues)
125 OS <<
"<emit-debug-entry-values>";
129 auto *TPC = &getAnalysis<TargetPassConfig>();
135 bool ShouldEmitDebugEntryValues) {
140 LDVImpl *TheImpl = &*VarLocImpl;
146 TheImpl = &*InstrRefImpl;
149 return TheImpl->
ExtendRanges(MF, DomTree, ShouldEmitDebugEntryValues,
static cl::opt< unsigned > InputBBLimit("livedebugvalues-input-bb-limit", cl::desc("Maximum input basic blocks before DBG_VALUE limit applies"), cl::init(10000), cl::Hidden)
static cl::opt< bool > ForceInstrRefLDV("force-instr-ref-livedebugvalues", cl::Hidden, cl::desc("Use instruction-ref based LiveDebugValues with " "normal DBG_VALUE inputs"), cl::init(false))
static cl::opt< unsigned > InputDbgValueLimit("livedebugvalues-input-dbg-value-limit", cl::desc("Maximum input DBG_VALUE insts supported by debug range extension"), cl::init(50000), cl::Hidden)
static cl::opt< cl::boolOrDefault > ValueTrackingVariableLocations("experimental-debug-variable-locations", cl::desc("Use experimental new value-tracking variable locations"))
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Target-Independent Code Generator Pass Configuration Options pass.
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
Represents analyses that only rely on functions' control flow.
void recalculate(ParentType &Func)
recalculate - compute a dominator tree for the given function
LLVM_ABI PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
LLVM_ABI void printPipeline(raw_ostream &OS, function_ref< StringRef(StringRef)> MapClassName2PassName)
DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to compute a normal dominat...
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.
bool useDebugInstrRef() const
Returns true if the function's variable locations are tracked with instruction referencing.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
virtual bool ExtendRanges(MachineFunction &MF, MachineDominatorTree *DomTree, bool ShouldEmitDebugEntryValues, unsigned InputBBLimit, unsigned InputDbgValLimit)=0
Represent a constant reference to a string, i.e.
Primary interface to the complete machine description for the target machine.
LLVM_ABI bool ShouldEmitDebugEntryValues() const
NOTE: There are targets that still do not support the debug entry values production.
Target-Independent Code Generator Pass Configuration Options.
Triple - Helper class for working with autoconf configuration names.
An efficient, type-erasing, non-owning reference to a callable.
This class implements an extremely fast bulk output stream that can only output to a stream.
initializer< Ty > init(const Ty &Val)
DXILDebugInfoMap run(Module &M)
This is an optimization pass for GlobalISel generic memory operations.
LDVImpl * makeInstrRefBasedLiveDebugValues()
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
LLVM_ABI char & LiveDebugValuesID
LiveDebugValues pass.
LLVM_ABI PreservedAnalyses getMachineFunctionPassPreservedAnalyses()
Returns the minimum set of Analyses that all machine function passes must preserve.
LDVImpl * makeVarLocBasedLiveDebugValues()
bool debuginfoShouldUseDebugInstrRef(const Triple &T)