Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DBranchFolding.cpp1323 ++FallThrough; in OptimizeBlock()
1352 if (FallThrough == MF.end()) { in OptimizeBlock()
1354 } else if (FallThrough->isEHPad()) { in OptimizeBlock()
1359 } else if (MBB->isSuccessor(&*FallThrough)) { in OptimizeBlock()
1364 Pred->ReplaceUsesOfBlockWith(MBB, &*FallThrough); in OptimizeBlock()
1370 if (*SI != &*FallThrough && !FallThrough->isSuccessor(*SI)) { in OptimizeBlock()
1372 FallThrough->copySuccessor(MBB, SI); in OptimizeBlock()
1495 if (FallThrough == --MF.end() && in OptimizeBlock()
1759 if (FallThrough != MF.end() && in OptimizeBlock()
1760 !FallThrough->isEHPad() && in OptimizeBlock()
[all …]
H A DIfConversion.cpp2202 MachineBasicBlock *FallThrough = FromBBI.HasFallThrough ? NBB : nullptr; in CopyAndPredicateBlock() local
2206 if (Succ == FallThrough) in CopyAndPredicateBlock()
2260 MachineBasicBlock *FallThrough = FromBBI.HasFallThrough ? NBB : nullptr; in MergeBlocks() local
2273 if (Succ == FallThrough) { in MergeBlocks()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILowerControlFlow.cpp810 MachineBasicBlock *FallThrough = nullptr; in removeMBBifRedundant() local
815 FallThrough = P; in removeMBBifRedundant()
834 if (FallThrough && !FallThrough->isLayoutSuccessor(Succ)) { in removeMBBifRedundant()
837 MachineInstr *BranchMI = BuildMI(*FallThrough, FallThrough->end(), in removeMBBifRedundant()
838 FallThrough->findBranchDebugLoc(), TII->get(AMDGPU::S_BRANCH)) in removeMBBifRedundant()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp2422 MachineBasicBlock *FallThrough = MBB->getFallThrough(); in EmitInstrWithCustomInserter() local
2427 if (FallThrough != nullptr) { in EmitInstrWithCustomInserter()
2428 BuildMI(MBB, dl, TII.get(AVR::RJMPk)).addMBB(FallThrough); in EmitInstrWithCustomInserter()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td1545 def FallThrough : StmtAttr {