Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp918 MachineFunction::iterator Fallthrough = getIterator(); in getFallThrough() local
919 ++Fallthrough; in getFallThrough()
921 if (Fallthrough == getParent()->end()) in getFallThrough()
925 if (!isSuccessor(&*Fallthrough)) in getFallThrough()
939 ? &*Fallthrough in getFallThrough()
944 if (!TBB) return &*Fallthrough; in getFallThrough()
948 if (MachineFunction::iterator(TBB) == Fallthrough || in getFallThrough()
949 MachineFunction::iterator(FBB) == Fallthrough) in getFallThrough()
950 return &*Fallthrough; in getFallThrough()
958 return (FBB == nullptr) ? &*Fallthrough : nullptr; in getFallThrough()
H A DMachineBlockPlacement.cpp3162 MachineBasicBlock *Fallthrough = nullptr; in findDuplicateCandidates() local
3230 if (!Fallthrough && isBestSuccessor(BB, Pred, BlockFilter)) { in findDuplicateCandidates()
3231 Fallthrough = Pred; in findDuplicateCandidates()
3261 if (!Fallthrough) { in findDuplicateCandidates()
H A DModuloSchedule.cpp1943 MachineBasicBlock *Fallthrough = *Prolog->succ_begin(); in fixupBranches() local
1952 TII->insertBranch(*Prolog, Epilog, Fallthrough, Cond, DebugLoc()); in fixupBranches()
1957 Prolog->removeSuccessor(Fallthrough); in fixupBranches()
1958 for (MachineInstr &P : Fallthrough->phis()) { in fixupBranches()
H A DMachineVerifier.cpp725 bool Fallthrough = !TBB || (!Cond.empty() && !FBB); in visitMachineBasicBlockBefore() local
747 if (Fallthrough && SuccMBB == MBB->getNextNode()) in visitMachineBasicBlockBefore()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DIRTranslator.h365 MachineBasicBlock *Fallthrough, bool FallthroughUnreachable);
368 MachineBasicBlock *Fallthrough,
380 SwitchCG::CaseClusterIt I, MachineBasicBlock *Fallthrough,
/freebsd-13.1/stand/i386/boot2/
H A Dsio.S43 # Fallthrough
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp897 MachineBasicBlock *Fallthrough, in lowerJumpTableWorkItem() argument
944 addSuccessorWithProb(CurMBB, Fallthrough, FallthroughProb); in lowerJumpTableWorkItem()
951 JT->Default = Fallthrough; // FIXME: Move Default to JumpTableHeader. in lowerJumpTableWorkItem()
1109 SwitchCG::CaseClusterIt I, MachineBasicBlock *Fallthrough, in lowerBitTestWorkItem() argument
1121 BTB->Default = Fallthrough; in lowerBitTestWorkItem()
1191 MachineBasicBlock *Fallthrough; in lowerSwitchWorkItem() local
1194 Fallthrough = DefaultMBB; in lowerSwitchWorkItem()
1199 CurMF->insert(BBI, Fallthrough); in lowerSwitchWorkItem()
1216 UnhandledProbs, I, Fallthrough, in lowerSwitchWorkItem()
1224 if (!lowerSwitchRangeWorkItem(I, Cond, Fallthrough, in lowerSwitchWorkItem()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp1408 StmtResult Fallthrough; in makeOnFallthrough() local
1434 Fallthrough = S.BuildCoreturnStmt(FD.getLocation(), nullptr, in makeOnFallthrough()
1436 Fallthrough = S.ActOnFinishFullStmt(Fallthrough.get()); in makeOnFallthrough()
1437 if (Fallthrough.isInvalid()) in makeOnFallthrough()
1441 this->OnFallthrough = Fallthrough.get(); in makeOnFallthrough()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp2518 llvm::BasicBlock *Fallthrough = nullptr; in EmitAsmStmt() local
2534 Fallthrough = createBasicBlock("asm.fallthrough"); in EmitAsmStmt()
2621 Builder.CreateCallBr(IA, Fallthrough, Transfer, Args); in EmitAsmStmt()
2622 EmitBlock(Fallthrough); in EmitAsmStmt()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h851 void setFallthrough(bool Fallthrough);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp1256 void RedirectingFileSystem::setFallthrough(bool Fallthrough) { in setFallthrough() argument
1257 IsFallthrough = Fallthrough; in setFallthrough()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp10638 MachineBasicBlock *Fallthrough; in lowerWorkItem() local
10641 Fallthrough = DefaultMBB; in lowerWorkItem()
10645 Fallthrough = CurMF->CreateMachineBasicBlock(CurMBB->getBasicBlock()); in lowerWorkItem()
10646 CurMF->insert(BBI, Fallthrough); in lowerWorkItem()
10686 addSuccessorWithProb(CurMBB, Fallthrough, FallthroughProb); in lowerWorkItem()
10693 JT->Default = Fallthrough; // FIXME: Move Default to JumpTableHeader. in lowerWorkItem()
10712 BTB->Default = Fallthrough; in lowerWorkItem()
10757 CaseBlock CB(CC, LHS, RHS, MHS, I->MBB, Fallthrough, CurMBB, in lowerWorkItem()
10768 CurMBB = Fallthrough; in lowerWorkItem()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp892 void CallBrInst::init(FunctionType *FTy, Value *Fn, BasicBlock *Fallthrough, in init() argument
919 setDefaultDest(Fallthrough); in init()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc862 // Fallthrough to REAL(memcmp) below.