Home
last modified time | relevance | path

Searched refs:FallThrough (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILowerControlFlow.cpp747 MachineBasicBlock *FallThrough = nullptr; in removeMBBifRedundant() local
752 FallThrough = P; in removeMBBifRedundant()
762 if (FallThrough && !FallThrough->isLayoutSuccessor(Succ)) { in removeMBBifRedundant()
764 MachineFunction *MF = FallThrough->getParent(); in removeMBBifRedundant()
765 MachineFunction::iterator FallThroughPos(FallThrough); in removeMBBifRedundant()
768 BuildMI(*FallThrough, FallThrough->end(), in removeMBBifRedundant()
769 FallThrough->findBranchDebugLoc(), TII->get(AMDGPU::S_BRANCH)) in removeMBBifRedundant()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DBranchFolding.cpp1317 MachineFunction::iterator FallThrough = MBB->getIterator(); in OptimizeBlock()
1318 ++FallThrough; in OptimizeBlock()
1347 if (FallThrough == MF.end()) { in OptimizeBlock()
1349 } else if (FallThrough->isEHPad()) { in OptimizeBlock()
1354 } else if (MBB->isSuccessor(&*FallThrough)) { in OptimizeBlock()
1359 Pred->ReplaceUsesOfBlockWith(MBB, &*FallThrough); in OptimizeBlock()
1364 MJTI->ReplaceMBBInJumpTables(MBB, &*FallThrough); in OptimizeBlock()
1482 if (FallThrough == --MF.end() && in OptimizeBlock()
1736 if (FallThrough != MF.end() && in OptimizeBlock()
1737 !FallThrough->isEHPad() && in OptimizeBlock()
[all …]
H A DIfConversion.cpp2220 MachineBasicBlock *FallThrough = FromBBI.HasFallThrough ? NBB : nullptr; in CopyAndPredicateBlock() local
2224 if (Succ == FallThrough) in CopyAndPredicateBlock()
2269 MachineBasicBlock *FallThrough = FromBBI.HasFallThrough ? NBB : nullptr; in MergeBlocks() local
2282 if (Succ == FallThrough) { in MergeBlocks()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp1715 MachineBasicBlock *FallThrough = MBB->getFallThrough(); in EmitInstrWithCustomInserter() local
1720 if (FallThrough != nullptr) { in EmitInstrWithCustomInserter()
1721 BuildMI(MBB, dl, TII.get(AVR::RJMPk)).addMBB(FallThrough); in EmitInstrWithCustomInserter()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td1357 def FallThrough : StmtAttr {