Home
last modified time | relevance | path

Searched refs:canFallThrough (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/tools/llvm-cfi-verify/
H A DFileAnalysis.cpp283 Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF))); in TEST_F()
285 Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 1))); in TEST_F()
287 Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 3))); in TEST_F()
289 Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 4))); in TEST_F()
291 Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 6))); in TEST_F()
293 Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 8))); in TEST_F()
295 Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 10))); in TEST_F()
297 Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 15))); in TEST_F()
299 Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 17))); in TEST_F()
301 Analysis.canFallThrough(Analysis.getInstructionOrDie(0xDEADBEEF + 19))); in TEST_F()
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCEarlyReturn.cpp140 if (Pred->canFallThrough() && Pred->isLayoutSuccessor(&ReturnMBB)) in processBlock()
160 if (PrevMBB.isLayoutSuccessor(&ReturnMBB) && PrevMBB.canFallThrough()) { in processBlock()
H A DPPCExpandISEL.cpp338 NewSuccessor = (MBBI != MBB->getLastNonDebugInstr() || !MBB->canFallThrough()) in reorganizeBlockLayout()
H A DPPCBranchCoalescing.cpp295 assert(Cand.BranchBlock->canFallThrough() && in canCoalesceBranch()
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonCFGOptimizer.cpp108 if (MBB->canFallThrough()) in isOnFallThroughPath()
111 if (PB->isLayoutSuccessor(MBB) && PB->canFallThrough()) in isOnFallThroughPath()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DBranchFolding.cpp618 if (!MBB->succ_empty() && !MBB->canFallThrough()) in ProfitableToMerge()
622 return (MBB != &*MF->begin()) && std::prev(I)->canFallThrough(); in ProfitableToMerge()
1477 !MBB->canFallThrough()) { in OptimizeBlock()
1591 bool PredHasNoFallThrough = !PrevBB.canFallThrough(); in OptimizeBlock()
1661 if (!PrevBB.canFallThrough()) { in OptimizeBlock()
1664 bool CurFallsThru = MBB->canFallThrough(); in OptimizeBlock()
1674 if (PredBB != MBB && !PredBB->canFallThrough() && in OptimizeBlock()
1715 !SuccPrev->canFallThrough()) { in OptimizeBlock()
H A DTailDuplicator.cpp556 if (!LayoutMode && TailBB.canFallThrough()) in shouldTailDuplicate()
583 TailBB.canFallThrough()) in shouldTailDuplicate()
823 bool ShouldUpdateTerminators = TailBB->canFallThrough(); in tailDuplicate()
855 else if (PredBB->isLayoutSuccessor(TailBB) && PredBB->canFallThrough()) in tailDuplicate()
H A DMachineBlockPlacement.cpp2698 if (!TII->analyzeBranch(*BB, TBB, FBB, Cond) || !FI->canFallThrough()) in buildCFGChains()
2804 !PrevBB->canFallThrough()) && in buildCFGChains()
H A DMachineBasicBlock.cpp966 bool MachineBasicBlock::canFallThrough() { in canFallThrough() function in MachineBasicBlock
/llvm-project-15.0.7/llvm/tools/llvm-cfi-verify/lib/
H A DFileAnalysis.h121 bool canFallThrough(const Instr &InstrMeta) const;
H A DFileAnalysis.cpp185 bool FileAnalysis::canFallThrough(const Instr &InstrMeta) const { in canFallThrough() function in llvm::cfi_verify::FileAnalysis
235 if (PrevInstruction && canFallThrough(*PrevInstruction)) in getDirectControlFlowXRefs()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h761 bool canFallThrough();
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DSILowerControlFlow.cpp824 if (!Succ->canFallThrough()) { in removeMBBifRedundant()
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp367 PrevCanFallthough = MBB.canFallThrough(); in AlignBlocks()
H A DARMISelLowering.cpp11829 assert(BB->canFallThrough() && "Exit Block must be Fallthrough of the " in EmitInstrWithCustomInserter()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1318 (const_cast<MachineBasicBlock &>(MBB).canFallThrough() << 3); in getBBAddrMapMetadata()