Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp823 MachineFunction::iterator Fallthrough = getIterator(); in getFallThrough() local
824 ++Fallthrough; in getFallThrough()
826 if (Fallthrough == getParent()->end()) in getFallThrough()
830 if (!isSuccessor(&*Fallthrough)) in getFallThrough()
844 ? &*Fallthrough in getFallThrough()
849 if (!TBB) return &*Fallthrough; in getFallThrough()
853 if (MachineFunction::iterator(TBB) == Fallthrough || in getFallThrough()
854 MachineFunction::iterator(FBB) == Fallthrough) in getFallThrough()
855 return &*Fallthrough; in getFallThrough()
863 return (FBB == nullptr) ? &*Fallthrough : nullptr; in getFallThrough()
/freebsd-12.1/stand/i386/boot2/
H A Dsio.S43 # Fallthrough
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCoroutine.cpp1288 StmtResult Fallthrough; in makeOnFallthrough() local
1314 Fallthrough = S.BuildCoreturnStmt(FD.getLocation(), nullptr, in makeOnFallthrough()
1316 Fallthrough = S.ActOnFinishFullStmt(Fallthrough.get()); in makeOnFallthrough()
1317 if (Fallthrough.isInvalid()) in makeOnFallthrough()
1321 this->OnFallthrough = Fallthrough.get(); in makeOnFallthrough()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp9982 MachineBasicBlock *Fallthrough; in lowerWorkItem() local
9985 Fallthrough = DefaultMBB; in lowerWorkItem()
9987 Fallthrough = CurMF->CreateMachineBasicBlock(CurMBB->getBasicBlock()); in lowerWorkItem()
9988 CurMF->insert(BBI, Fallthrough); in lowerWorkItem()
10022 addSuccessorWithProb(CurMBB, Fallthrough, FallthroughProb); in lowerWorkItem()
10029 JT->Default = Fallthrough; // FIXME: Move Default to JumpTableHeader. in lowerWorkItem()
10048 BTB->Default = Fallthrough; in lowerWorkItem()
10084 CaseBlock CB(CC, LHS, RHS, MHS, I->MBB, Fallthrough, CurMBB, in lowerWorkItem()
10095 CurMBB = Fallthrough; in lowerWorkItem()
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc839 // Fallthrough to REAL(memcmp) below.