Home
last modified time | relevance | path

Searched refs:CurMI (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugHandlerBase.cpp364 assert(CurMI == nullptr); in beginInstruction()
365 CurMI = MI; in beginInstruction()
390 assert(CurMI != nullptr); in endInstruction()
393 if (!CurMI->isMetaInstruction()) { in endInstruction()
395 PrevInstBB = CurMI->getParent(); in endInstruction()
399 LabelsAfterInsn.find(CurMI); in endInstruction()
403 CurMI = nullptr; in endInstruction()
411 if (CurMI->getParent()->isEndSection() && CurMI->getNextNode() == nullptr) { in endInstruction()
412 PrevLabel = CurMI->getParent()->getEndSymbol(); in endInstruction()
418 CurMI = nullptr; in endInstruction()
H A DDwarfDebug.cpp660 static void interpretValues(const MachineInstr *CurMI, in interpretValues() argument
665 const MachineFunction *MF = CurMI->getMF(); in interpretValues()
714 getForwardingRegsDefinedByMI(*CurMI, FwdRegDefs); in interpretValues()
732 if (auto ParamValue = TII.describeLoadedValue(*CurMI, ParamFwdReg)) { in interpretValues()
775 static bool interpretNextInstr(const MachineInstr *CurMI, in interpretNextInstr() argument
780 if (CurMI->isBundle()) in interpretNextInstr()
786 if (CurMI->isCall()) in interpretNextInstr()
793 if (CurMI->getNumOperands() == 0) in interpretNextInstr()
796 interpretValues(CurMI, ForwardedRegWorklist, Params, ClobberedRegUnits); in interpretNextInstr()
1418 assert(CurMI == nullptr); in endModule()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombiner.cpp298 for (MachineInstr &CurMI : in combineMachineInstrs()
301 if (EnableDCE && tryDCE(CurMI, MRI)) in combineMachineInstrs()
303 WorkList.deferred_insert(&CurMI); in combineMachineInstrs()
H A DRegBankSelect.cpp223 MachineInstr *CurMI; in repairReg() local
225 CurMI = MI; in repairReg()
227 CurMI = MIRBuilder.getMF().CloneMachineInstr(MI); in repairReg()
228 InsertPt->insert(*CurMI); in repairReg()
229 NewInstrs[Idx++] = CurMI; in repairReg()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDebugHandlerBase.h79 const MachineInstr *CurMI = nullptr; variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRCanonicalizerPass.cpp132 for (const auto &CurMI : *MI.getParent()) { in rescheduleCanonically()
133 if (&CurMI == &MI) in rescheduleCanonically()
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp1485 if (!CurMI) // no debug info in beginInstruction()