Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/tools/llvm-cfi-verify/
DGraphBuilder.cpp79 << BranchNode.Fallthrough in PrintTo()
93 << HexStringifyContainer(Result.flattenAddress(Node.Fallthrough)) in PrintTo()
172 Field(&ConditionalBranchNode::Fallthrough, in TEST_F()
198 Field(&ConditionalBranchNode::Fallthrough, in TEST_F()
226 Field(&ConditionalBranchNode::Fallthrough, in TEST_F()
235 Field(&ConditionalBranchNode::Fallthrough, in TEST_F()
264 Field(&ConditionalBranchNode::Fallthrough, in TEST_F()
273 Field(&ConditionalBranchNode::Fallthrough, in TEST_F()
334 Field(&ConditionalBranchNode::Fallthrough, in TEST_F()
356 Field(&ConditionalBranchNode::Fallthrough, in TEST_F()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cfi-verify/lib/
DGraphBuilder.cpp90 for (auto &V : {BranchNode.Target, BranchNode.Fallthrough}) in printToDOT()
124 if (BranchNode.Target && !BranchNode.Fallthrough) { in buildFlowsToUndefined()
134 BranchNode.Fallthrough = in buildFlowsToUndefined()
136 } else if (BranchNode.Fallthrough && !BranchNode.Target) { in buildFlowsToUndefined()
300 BranchNode.Fallthrough = 0; in buildFlowGraphImpl()
307 BranchNode.Fallthrough = Address; in buildFlowGraphImpl()
DGraphBuilder.h56 uint64_t Fallthrough; member
DFileAnalysis.cpp308 Node = Branch.Fallthrough; in indirectCFOperandClobber()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineBasicBlock.cpp820 MachineFunction::iterator Fallthrough = getIterator(); in getFallThrough() local
821 ++Fallthrough; in getFallThrough()
823 if (Fallthrough == getParent()->end()) in getFallThrough()
827 if (!isSuccessor(&*Fallthrough)) in getFallThrough()
841 ? &*Fallthrough in getFallThrough()
846 if (!TBB) return &*Fallthrough; in getFallThrough()
850 if (MachineFunction::iterator(TBB) == Fallthrough || in getFallThrough()
851 MachineFunction::iterator(FBB) == Fallthrough) in getFallThrough()
852 return &*Fallthrough; in getFallThrough()
860 return (FBB == nullptr) ? &*Fallthrough : nullptr; in getFallThrough()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DMachineBasicBlock.cpp459 MachineFunction::iterator Fallthrough = this; in canFallThrough() local
460 ++Fallthrough; in canFallThrough()
462 if (Fallthrough == getParent()->end()) in canFallThrough()
466 if (!isSuccessor(Fallthrough)) in canFallThrough()
490 if (MachineFunction::iterator(TBB) == Fallthrough || in canFallThrough()
491 MachineFunction::iterator(FBB) == Fallthrough) in canFallThrough()
/external/llvm/lib/CodeGen/
DMachineBasicBlock.cpp677 MachineFunction::iterator Fallthrough = getIterator(); in canFallThrough() local
678 ++Fallthrough; in canFallThrough()
680 if (Fallthrough == getParent()->end()) in canFallThrough()
684 if (!isSuccessor(&*Fallthrough)) in canFallThrough()
705 if (MachineFunction::iterator(TBB) == Fallthrough || in canFallThrough()
706 MachineFunction::iterator(FBB) == Fallthrough) in canFallThrough()
/external/llvm/test/CodeGen/X86/
Dpeephole-na-phys-copy-folding.ll166 ; Fallthrough to test the second cmpxchg's result.
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dx86-shrink-wrap-unwind.ll293 ; Fallthrough label
/external/skqp/site/dev/contrib/
Dstyle.md266 Fallthrough from one case to the next is commented unless it is trivial:
/external/skia/site/dev/contrib/
Dstyle.md266 Fallthrough from one case to the next is commented unless it is trivial:
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp8759 MachineBasicBlock *Fallthrough; in lowerWorkItem() local
8762 Fallthrough = DefaultMBB; in lowerWorkItem()
8764 Fallthrough = CurMF->CreateMachineBasicBlock(CurMBB->getBasicBlock()); in lowerWorkItem()
8765 CurMF->insert(BBI, Fallthrough); in lowerWorkItem()
8799 addSuccessorWithProb(CurMBB, Fallthrough, FallthroughProb); in lowerWorkItem()
8806 JT->Default = Fallthrough; // FIXME: Move Default to JumpTableHeader. in lowerWorkItem()
8825 BTB->Default = Fallthrough; in lowerWorkItem()
8861 CaseBlock CB(CC, LHS, RHS, MHS, I->MBB, Fallthrough, CurMBB, I->Prob, in lowerWorkItem()
8872 CurMBB = Fallthrough; in lowerWorkItem()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp9872 MachineBasicBlock *Fallthrough; in lowerWorkItem() local
9875 Fallthrough = DefaultMBB; in lowerWorkItem()
9877 Fallthrough = CurMF->CreateMachineBasicBlock(CurMBB->getBasicBlock()); in lowerWorkItem()
9878 CurMF->insert(BBI, Fallthrough); in lowerWorkItem()
9912 addSuccessorWithProb(CurMBB, Fallthrough, FallthroughProb); in lowerWorkItem()
9919 JT->Default = Fallthrough; // FIXME: Move Default to JumpTableHeader. in lowerWorkItem()
9938 BTB->Default = Fallthrough; in lowerWorkItem()
9974 CaseBlock CB(CC, LHS, RHS, MHS, I->MBB, Fallthrough, CurMBB, in lowerWorkItem()
9985 CurMBB = Fallthrough; in lowerWorkItem()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc581 // Fallthrough to REAL(memcmp) below.