// 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);
DbgInfoAvailable = UsesVAFloatArgument = UsesMorestackAddr = false;
AddrLabelSymbols = nullptr;
TheModule = &M;
- if (getDebugMetadataVersionFromModule(M))
- M.getOrInsertNamedMetadata("llvm.dbg.mir");
return false;
}
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;
}
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)
// 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()) {