HomeSort by: relevance | last modified time | path
    Searched refs:FallThrough (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SILowerControlFlow.cpp 109 // block boundaries (blocks that have one (typically fallthrough) successor,
723 // The only fallthrough candidate
743 MachineBasicBlock *FallThrough = nullptr;
748 FallThrough = P;
758 if (FallThrough && !FallThrough->isLayoutSuccessor(Succ)) {
760 MachineFunction *MF = FallThrough->getParent();
761 MachineFunction::iterator FallThroughPos(FallThrough);
764 BuildMI(*FallThrough, FallThrough->end()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
BranchFolding.cpp 592 // are unlikely to become a fallthrough target after machine block placement.
609 // both have a fallthrough predecessor and successor.
1031 // fallthrough to QBB
1242 // into a fallthrough to the return.
1327 MachineFunction::iterator FallThrough = MBB->getIterator();
1328 ++FallThrough;
1330 // Make sure MBB and FallThrough belong to the same EH scope.
1332 if (!EHScopeMembership.empty() && FallThrough != MF.end()) {
1335 auto FallThroughEHScope = EHScopeMembership.find(&*FallThrough);
1357 if (FallThrough == MF.end())
    [all...]
IfConversion.cpp 125 /// HasFallThrough - True if BB may fallthrough to the following BB.
612 /// BB has a fallthrough. Find its 'false' successor given its 'true' successor.
732 /// passed when the blocks are analyzable to allow for fallthrough to be
1045 // fallthrough.
1180 // latter might fallthrough, but we can't determine where to.
1243 // Unanalyzable or ends with fallthrough or unconditional branch, or if is
1260 // Do not ifcvt if true and false fallthrough blocks are the same.
1733 // Only merge them if the true block does not fallthrough to the false
1769 /// predicating. Only false for unanalyzable fallthrough
1772 /// unanalyzable fallthrough
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRISelLowering.cpp 1700 MachineBasicBlock *FallThrough = MBB->getFallThrough();
1703 // we must insert an unconditional branch to the fallthrough destination
1704 // if we are to insert basic blocks at the prior fallthrough point.
1705 if (FallThrough != nullptr) {
1706 BuildMI(MBB, dl, TII.get(AVR::RJMPk)).addMBB(FallThrough);

Completed in 98 milliseconds