Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DSILowerControlFlow.cpp799 MachineBasicBlock *FallThrough = nullptr; in removeMBBifRedundant() local
804 FallThrough = P; in removeMBBifRedundant()
823 if (FallThrough && !FallThrough->isLayoutSuccessor(Succ)) { in removeMBBifRedundant()
825 MachineFunction *MF = FallThrough->getParent(); in removeMBBifRedundant()
826 MachineFunction::iterator FallThroughPos(FallThrough); in removeMBBifRedundant()
829 BuildMI(*FallThrough, FallThrough->end(), in removeMBBifRedundant()
830 FallThrough->findBranchDebugLoc(), TII->get(AMDGPU::S_BRANCH)) in removeMBBifRedundant()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DBranchFolding.cpp1320 MachineFunction::iterator FallThrough = MBB->getIterator(); in OptimizeBlock()
1321 ++FallThrough; in OptimizeBlock()
1325 if (!EHScopeMembership.empty() && FallThrough != MF.end()) { in OptimizeBlock()
1328 auto FallThroughEHScope = EHScopeMembership.find(&*FallThrough); in OptimizeBlock()
1350 if (FallThrough == MF.end()) { in OptimizeBlock()
1352 } else if (FallThrough->isEHPad()) { in OptimizeBlock()
1357 } else if (MBB->isSuccessor(&*FallThrough)) { in OptimizeBlock()
1362 Pred->ReplaceUsesOfBlockWith(MBB, &*FallThrough); in OptimizeBlock()
1367 MJTI->ReplaceMBBInJumpTables(MBB, &*FallThrough); in OptimizeBlock()
1476 MachineFunction::iterator(PriorTBB) == FallThrough && in OptimizeBlock()
[all …]
H A DIfConversion.cpp2218 MachineBasicBlock *FallThrough = FromBBI.HasFallThrough ? NBB : nullptr; in CopyAndPredicateBlock() local
2222 if (Succ == FallThrough) in CopyAndPredicateBlock()
2276 MachineBasicBlock *FallThrough = FromBBI.HasFallThrough ? NBB : nullptr; in MergeBlocks() local
2289 if (Succ == FallThrough) { in MergeBlocks()
/openbsd-src/gnu/llvm/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp2362 MachineBasicBlock *FallThrough = MBB->getFallThrough(); in EmitInstrWithCustomInserter() local
2367 if (FallThrough != nullptr) { in EmitInstrWithCustomInserter()
2368 BuildMI(MBB, dl, TII.get(AVR::RJMPk)).addMBB(FallThrough); in EmitInstrWithCustomInserter()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DAttr.td1425 def FallThrough : StmtAttr {