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.cpp360 assert(CurMI == nullptr); in beginInstruction()
361 CurMI = MI; in beginInstruction()
386 assert(CurMI != nullptr); in endInstruction()
389 if (!CurMI->isMetaInstruction()) { in endInstruction()
391 PrevInstBB = CurMI->getParent(); in endInstruction()
395 LabelsAfterInsn.find(CurMI); in endInstruction()
399 CurMI = nullptr; in endInstruction()
407 if (CurMI->getParent()->isEndSection() && CurMI->getNextNode() == nullptr) { in endInstruction()
408 PrevLabel = CurMI->getParent()->getEndSymbol(); in endInstruction()
414 CurMI = nullptr; in endInstruction()
H A DDwarfDebug.cpp651 static void interpretValues(const MachineInstr *CurMI, in interpretValues() argument
656 const MachineFunction *MF = CurMI->getMF(); in interpretValues()
706 getForwardingRegsDefinedByMI(*CurMI, FwdRegDefs); in interpretValues()
725 if (auto ParamValue = TII.describeLoadedValue(*CurMI, ParamFwdReg)) { in interpretValues()
769 static bool interpretNextInstr(const MachineInstr *CurMI, in interpretNextInstr() argument
774 if (CurMI->isBundle()) in interpretNextInstr()
780 if (CurMI->isCall()) in interpretNextInstr()
787 if (CurMI->getNumOperands() == 0) in interpretNextInstr()
790 interpretValues(CurMI, ForwardedRegWorklist, Params, ClobberedRegUnits); in interpretNextInstr()
1408 assert(CurMI == nullptr); in endModule()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombiner.cpp158 for (MachineInstr &CurMI : in combineMachineInstrs()
161 if (isTriviallyDead(CurMI, MRI)) { in combineMachineInstrs()
162 LLVM_DEBUG(dbgs() << CurMI << "Is dead; erasing.\n"); in combineMachineInstrs()
163 llvm::salvageDebugInfo(MRI, CurMI); in combineMachineInstrs()
164 CurMI.eraseFromParent(); in combineMachineInstrs()
167 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.h83 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.cpp1366 if (!CurMI) // no debug info in beginInstruction()