1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Retire the llvm.dbg.mir hack after r311594.

llvm-svn: 311610
This commit is contained in:
Adrian Prantl 2017-08-23 22:02:36 +00:00
parent b0988e6b8f
commit 3dde2618a7
5 changed files with 1 additions and 13 deletions

View File

@ -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);

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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)

View File

@ -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()) {