Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DBranchFolding.cpp1059 MachineFunction::iterator FallThrough = MBB; in OptimizeBlock()
1060 ++FallThrough; in OptimizeBlock()
1070 if (FallThrough == MF.end()) { in OptimizeBlock()
1077 Pred->ReplaceUsesOfBlockWith(MBB, FallThrough); in OptimizeBlock()
1082 MJTI->ReplaceMBBInJumpTables(MBB, FallThrough); in OptimizeBlock()
1195 MachineFunction::iterator(PriorTBB) == FallThrough && in OptimizeBlock()
1204 if (FallThrough == --MF.end() && in OptimizeBlock()
1426 if (FallThrough != MF.end() && in OptimizeBlock()
1428 PrevBB.isSuccessor(FallThrough)) { in OptimizeBlock()
DIfConversion.cpp1519 MachineBasicBlock *FallThrough = FromBBI.HasFallThrough ? NBB : NULL; in CopyAndPredicateBlock() local
1524 if (Succ == FallThrough) in CopyAndPredicateBlock()
1552 MachineBasicBlock *FallThrough = FromBBI.HasFallThrough ? NBB : NULL; in MergeBlocks() local
1557 if (Succ == FallThrough) in MergeBlocks()
/external/clang/include/clang/Basic/
DAttr.td334 def FallThrough : Attr {
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp2023 MachineBasicBlock *FallThrough; in handleSmallSwitchRange() local
2025 FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock()); in handleSmallSwitchRange()
2026 CurMF->insert(BBI, FallThrough); in handleSmallSwitchRange()
2032 FallThrough = Default; in handleSmallSwitchRange()
2048 CaseBlock CB(CC, LHS, RHS, MHS, /* truebb */ I->BB, /* falsebb */ FallThrough, in handleSmallSwitchRange()
2062 CurBlock = FallThrough; in handleSmallSwitchRange()