Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DBranchFolding.cpp1354 MachineFunction::iterator FallThrough = MBB->getIterator(); in OptimizeBlock()
1355 ++FallThrough; in OptimizeBlock()
1359 if (!EHScopeMembership.empty() && FallThrough != MF.end()) { in OptimizeBlock()
1362 auto FallThroughEHScope = EHScopeMembership.find(&*FallThrough); in OptimizeBlock()
1384 if (FallThrough == MF.end()) { in OptimizeBlock()
1386 } else if (FallThrough->isEHPad()) { in OptimizeBlock()
1391 } else if (MBB->isSuccessor(&*FallThrough)) { in OptimizeBlock()
1396 Pred->ReplaceUsesOfBlockWith(MBB, &*FallThrough); in OptimizeBlock()
1402 if (*SI != &*FallThrough && !FallThrough->isSuccessor(*SI)) { in OptimizeBlock()
1404 FallThrough->copySuccessor(MBB, SI); in OptimizeBlock()
[all …]
H A DIfConversion.cpp2217 MachineBasicBlock *FallThrough = FromBBI.HasFallThrough ? NBB : nullptr; in CopyAndPredicateBlock() local
2221 if (Succ == FallThrough) in CopyAndPredicateBlock()
2275 MachineBasicBlock *FallThrough = FromBBI.HasFallThrough ? NBB : nullptr; in MergeBlocks() local
2288 if (Succ == FallThrough) { in MergeBlocks()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILowerControlFlow.cpp728 MachineBasicBlock *FallThrough = nullptr; in removeMBBifRedundant() local
733 FallThrough = P; in removeMBBifRedundant()
752 if (FallThrough && !FallThrough->isLayoutSuccessor(Succ)) { in removeMBBifRedundant()
755 MachineInstr *BranchMI = BuildMI(*FallThrough, FallThrough->end(), in removeMBBifRedundant()
756 FallThrough->findBranchDebugLoc(), TII->get(AMDGPU::S_BRANCH)) in removeMBBifRedundant()
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp2360 MachineBasicBlock *FallThrough = MBB->getFallThrough(); in EmitInstrWithCustomInserter() local
2365 if (FallThrough != nullptr) { in EmitInstrWithCustomInserter()
2366 BuildMI(MBB, dl, TII.get(AVR::RJMPk)).addMBB(FallThrough); in EmitInstrWithCustomInserter()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td1845 def FallThrough : StmtAttr {