Home
last modified time | relevance | path

Searched refs:CurrCycleInstr (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNHazardRecognizer.cpp60 : IsHazardRecognizerMode(false), CurrCycleInstr(nullptr), MF(MF), in GCNHazardRecognizer()
77 CurrCycleInstr = MI; in EmitInstruction()
263 MachineBasicBlock::instr_iterator MI = std::next(CurrCycleInstr->getIterator()); in processBundle()
264 MachineBasicBlock::instr_iterator E = CurrCycleInstr->getParent()->instr_end(); in processBundle()
267 CurrCycleInstr = &*MI; in processBundle()
268 unsigned WaitStates = PreEmitNoopsCommon(CurrCycleInstr); in processBundle()
271 fixHazards(CurrCycleInstr); in processBundle()
273 insertNoopsInBundle(CurrCycleInstr, TII, WaitStates); in processBundle()
282 EmittedInstrs.push_front(CurrCycleInstr); in processBundle()
285 CurrCycleInstr = nullptr; in processBundle()
[all …]
H A DGCNHazardRecognizer.h43 MachineInstr *CurrCycleInstr; variable