Home
last modified time | relevance | path

Searched refs:EntryMBB (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyArgumentMove.cpp76 MachineBasicBlock &EntryMBB = MF.front(); in runOnMachineFunction() local
77 MachineBasicBlock::iterator InsertPt = EntryMBB.end(); in runOnMachineFunction()
80 for (MachineInstr &MI : EntryMBB) { in runOnMachineFunction()
89 for (MachineInstr &MI : llvm::make_range(InsertPt, EntryMBB.end())) { in runOnMachineFunction()
91 EntryMBB.insert(InsertPt, MI.removeFromParent()); in runOnMachineFunction()
H A DWebAssemblyRegNumbering.cpp73 MachineBasicBlock &EntryMBB = MF.front(); in runOnMachineFunction() local
74 for (MachineInstr &MI : EntryMBB) { in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp479 MachineRegisterInfo::EmitLiveInCopies(MachineBasicBlock *EntryMBB, in EmitLiveInCopies() argument
495 BuildMI(*EntryMBB, EntryMBB->begin(), DebugLoc(), in EmitLiveInCopies()
500 EntryMBB->addLiveIn(LiveIns[i].first); in EmitLiveInCopies()
504 EntryMBB->addLiveIn(LiveIns[i].first); in EmitLiveInCopies()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DUtils.cpp908 MachineBasicBlock &EntryMBB = MF.front(); in getFunctionLiveInPhysReg() local
915 assert(Def->getParent() == &EntryMBB && "live-in copy not in entry block"); in getFunctionLiveInPhysReg()
929 BuildMI(EntryMBB, EntryMBB.begin(), DL, TII.get(TargetOpcode::COPY), LiveIn) in getFunctionLiveInPhysReg()
931 if (!EntryMBB.isLiveIn(PhysReg)) in getFunctionLiveInPhysReg()
932 EntryMBB.addLiveIn(PhysReg); in getFunctionLiveInPhysReg()
H A DIRTranslator.cpp2442 MachineBasicBlock &EntryMBB = MF->front(); in translateKnownIntrinsic() local
2462 EntryMBB.insert(EntryMBB.begin(), LocalEscape); in translateKnownIntrinsic()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp626 MachineBasicBlock *EntryMBB = &MF->front(); in runOnMachineFunction() local
629 TLI->initializeSplitCSR(EntryMBB); in runOnMachineFunction()
674 RegInfo->EmitLiveInCopies(EntryMBB, TRI, *TII); in runOnMachineFunction()
690 TLI->insertCopiesSplitCSR(EntryMBB, Returns); in runOnMachineFunction()
708 EntryMBB->insert(EntryMBB->begin(), MI); in runOnMachineFunction()
743 BuildMI(*EntryMBB, ++InsertPos, DL, TII->get(TargetOpcode::DBG_VALUE), in runOnMachineFunction()
753 if (UseMI.isCopy() && !CopyUseMI && UseMI.getParent() == EntryMBB) { in runOnMachineFunction()
770 EntryMBB->insertAfter(Pos, NewMI); in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNHazardRecognizer.cpp2903 MachineBasicBlock &EntryMBB = MF->front(); in ensureEntrySetPrio() local
2904 if (EntryMBB.begin() != EntryMBB.end()) { in ensureEntrySetPrio()
2905 auto &EntryMI = *EntryMBB.begin(); in ensureEntrySetPrio()
2911 BuildMI(EntryMBB, EntryMBB.begin(), DebugLoc(), TII.get(AMDGPU::S_SETPRIO)) in ensureEntrySetPrio()
H A DR600MachineCFGStructurizer.cpp806 MachineBasicBlock *EntryMBB = in run() local
808 if (EntryMBB->succ_empty()) { in run()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h1021 void EmitLiveInCopies(MachineBasicBlock *EntryMBB,