forked from OSchip/llvm-project
Retire the llvm.dbg.mir hack after r311594.
llvm-svn: 311610
This commit is contained in:
parent
850b983455
commit
7db6b5e2b3
|
@ -447,12 +447,9 @@ void LiveDebugValues::transferSpillInst(MachineInstr &MI,
|
|||
// iterator in our caller.
|
||||
unsigned SpillBase;
|
||||
int SpillOffset = extractSpillBaseRegAndOffset(MI, SpillBase);
|
||||
const Module *M = MF->getMMI().getModule();
|
||||
const MachineInstr *DMI = &VarLocIDs[ID].MI;
|
||||
auto *SpillExpr = DIExpression::prepend(
|
||||
DMI->getDebugExpression(), DIExpression::NoDeref, SpillOffset);
|
||||
// Add the expression to the metadata graph so isn't lost in MIR dumps.
|
||||
M->getNamedMetadata("llvm.dbg.mir")->addOperand(SpillExpr);
|
||||
MachineInstr *SpDMI =
|
||||
BuildMI(*MF, DMI->getDebugLoc(), DMI->getDesc(), true, SpillBase,
|
||||
DMI->getDebugVariable(), SpillExpr);
|
||||
|
|
|
@ -210,8 +210,6 @@ bool MachineModuleInfo::doInitialization(Module &M) {
|
|||
DbgInfoAvailable = UsesVAFloatArgument = UsesMorestackAddr = false;
|
||||
AddrLabelSymbols = nullptr;
|
||||
TheModule = &M;
|
||||
if (getDebugMetadataVersionFromModule(M))
|
||||
M.getOrInsertNamedMetadata("llvm.dbg.mir");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -1086,9 +1086,6 @@ void PEI::replaceFrameIndices(MachineBasicBlock *BB, MachineFunction &Fn,
|
|||
auto *DIExpr = DIExpression::prepend(MI.getDebugExpression(),
|
||||
DIExpression::NoDeref, Offset);
|
||||
MI.getOperand(3).setMetadata(DIExpr);
|
||||
const Module *M = Fn.getMMI().getModule();
|
||||
// Add the expression to the metadata graph so isn't lost in MIR dumps.
|
||||
M->getNamedMetadata("llvm.dbg.mir")->addOperand(DIExpr);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
@ -848,10 +848,6 @@ static void transferDbgValues(SelectionDAG &DAG, DIBuilder &DIB, SDValue From,
|
|||
Dbg->getDebugLoc(), Dbg->getOrder());
|
||||
Dbg->setIsInvalidated();
|
||||
ClonedDVs.push_back(Clone);
|
||||
|
||||
// Add the expression to the metadata graph so isn't lost in MIR dumps.
|
||||
const Module *M = DAG.getMachineFunction().getMMI().getModule();
|
||||
M->getNamedMetadata("llvm.dbg.mir")->addOperand(Fragment);
|
||||
}
|
||||
|
||||
for (SDDbgValue *Dbg : ClonedDVs)
|
||||
|
|
|
@ -736,7 +736,7 @@ void Verifier::visitNamedMDNode(const NamedMDNode &NMD) {
|
|||
// There used to be various other llvm.dbg.* nodes, but we don't support
|
||||
// upgrading them and we want to reserve the namespace for future uses.
|
||||
if (NMD.getName().startswith("llvm.dbg."))
|
||||
AssertDI(NMD.getName() == "llvm.dbg.cu" || NMD.getName() == "llvm.dbg.mir",
|
||||
AssertDI(NMD.getName() == "llvm.dbg.cu",
|
||||
"unrecognized named metadata node in the llvm.dbg namespace",
|
||||
&NMD);
|
||||
for (const MDNode *MD : NMD.operands()) {
|
||||
|
|
Loading…
Reference in New Issue