Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSILowerControlFlow.cpp743 MachineBasicBlock *FallThrough = nullptr; in removeMBBifRedundant() local
748 FallThrough = P; in removeMBBifRedundant()
758 if (FallThrough && !FallThrough->isLayoutSuccessor(Succ)) { in removeMBBifRedundant()
760 MachineFunction *MF = FallThrough->getParent(); in removeMBBifRedundant()
761 MachineFunction::iterator FallThroughPos(FallThrough); in removeMBBifRedundant()
764 BuildMI(*FallThrough, FallThrough->end(), in removeMBBifRedundant()
765 FallThrough->findBranchDebugLoc(), TII->get(AMDGPU::S_BRANCH)) in removeMBBifRedundant()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DBranchFolding.cpp1327 MachineFunction::iterator FallThrough = MBB->getIterator(); in OptimizeBlock()
1328 ++FallThrough; in OptimizeBlock()
1332 if (!EHScopeMembership.empty() && FallThrough != MF.end()) { in OptimizeBlock()
1335 auto FallThroughEHScope = EHScopeMembership.find(&*FallThrough); in OptimizeBlock()
1357 if (FallThrough == MF.end()) { in OptimizeBlock()
1359 } else if (FallThrough->isEHPad()) { in OptimizeBlock()
1364 } else if (MBB->isSuccessor(&*FallThrough)) { in OptimizeBlock()
1369 Pred->ReplaceUsesOfBlockWith(MBB, &*FallThrough); in OptimizeBlock()
1374 MJTI->ReplaceMBBInJumpTables(MBB, &*FallThrough); in OptimizeBlock()
1483 MachineFunction::iterator(PriorTBB) == FallThrough && 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp1700 MachineBasicBlock *FallThrough = MBB->getFallThrough(); in EmitInstrWithCustomInserter() local
1705 if (FallThrough != nullptr) { in EmitInstrWithCustomInserter()
1706 BuildMI(MBB, dl, TII.get(AVR::RJMPk)).addMBB(FallThrough); in EmitInstrWithCustomInserter()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DAttr.td1351 def FallThrough : StmtAttr {