Home
last modified time | relevance | path

Searched refs:FalseMBB (Results 1 – 10 of 10) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDILCFGStructurizer.cpp941 LandBlk = FalseMBB; in ifPatternMatch()
942 FalseMBB = nullptr; in ifPatternMatch()
966 || (FalseMBB && FalseMBB->pred_size() > 1))) { in ifPatternMatch()
975 if (FalseMBB && FalseMBB->pred_size() > 1) { in ifPatternMatch()
976 FalseMBB = cloneBlockForPredecessor(FalseMBB, MBB); in ifPatternMatch()
1141 if (FalseMBB) { in showImproveSimpleJumpintoIf()
1143 << FalseMBB->size() << " numPred = " << FalseMBB->pred_size(); in showImproveSimpleJumpintoIf()
1173 && (!FalseMBB || FalseMBB->succ_size() <= 1)); in improveSimpleJumpintoIf()
1189 if (!MigrateFalse && FalseMBB && FalseMBB->pred_size() > 1) in improveSimpleJumpintoIf()
1391 if (FalseMBB) { in mergeIfthenelseBlock()
[all …]
H A DSIPreEmitPeephole.cpp42 MachineBasicBlock *&FalseMBB,
277 MachineBasicBlock *&FalseMBB, SmallVectorImpl<MachineOperand> &Cond) { in getBlockDestinations() argument
278 if (TII->analyzeBranch(SrcMBB, TrueMBB, FalseMBB, Cond)) in getBlockDestinations()
281 if (!FalseMBB) in getBlockDestinations()
282 FalseMBB = SrcMBB.getNextNode(); in getBlockDestinations()
325 MachineBasicBlock *FalseMBB = nullptr; in removeExeczBranch() local
328 if (!getBlockDestinations(SrcMBB, TrueMBB, FalseMBB, Cond)) in removeExeczBranch()
333 mustRetainExeczBranch(*FalseMBB, *TrueMBB)) in removeExeczBranch()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CmovConversion.cpp672 MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(BB); in convertCmovInstsToBranches() local
674 F->insert(It, FalseMBB); in convertCmovInstsToBranches()
680 FalseMBB->addLiveIn(X86::EFLAGS); in convertCmovInstsToBranches()
690 MBB->addSuccessor(FalseMBB); in convertCmovInstsToBranches()
697 FalseMBB->addSuccessor(SinkMBB); in convertCmovInstsToBranches()
703 MachineBasicBlock::iterator FalseInsertionPoint = FalseMBB->begin(); in convertCmovInstsToBranches()
782 FalseMBB->insert(FalseInsertionPoint, NewMI); in convertCmovInstsToBranches()
839 .addMBB(FalseMBB) in convertCmovInstsToBranches()
855 L->addBasicBlockToLoop(FalseMBB, MLI->getBase()); in convertCmovInstsToBranches()
H A DX86FastISel.cpp1649 MachineBasicBlock *FalseMBB = FuncInfo.MBBMap[BI->getSuccessor(1)]; in X86SelectBranch() local
1663 case CmpInst::FCMP_FALSE: fastEmitBranch(FalseMBB, DbgLoc); return true; in X86SelectBranch()
1682 std::swap(TrueMBB, FalseMBB); in X86SelectBranch()
1695 std::swap(TrueMBB, FalseMBB); in X86SelectBranch()
1724 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB); in X86SelectBranch()
1750 std::swap(TrueMBB, FalseMBB); in X86SelectBranch()
1757 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB); in X86SelectBranch()
1770 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB); in X86SelectBranch()
1794 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB); in X86SelectBranch()
H A DX86ISelLowering.cpp32620 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB, in createPHIsForCMOVsInSinkBB() argument
32659 .addMBB(FalseMBB) in createPHIsForCMOVsInSinkBB()
32912 MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(LLVM_BB); in EmitLoweredSelect() local
32916 F->insert(It, FalseMBB); in EmitLoweredSelect()
32924 FalseMBB->addLiveIn(X86::EFLAGS); in EmitLoweredSelect()
32945 ThisMBB->addSuccessor(FalseMBB); in EmitLoweredSelect()
32949 FalseMBB->addSuccessor(SinkMBB); in EmitLoweredSelect()
32960 createPHIsForCMOVsInSinkBB(MIItBegin, MIItEnd, ThisMBB, FalseMBB, SinkMBB); in EmitLoweredSelect()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBranchCoalescing.cpp237 MachineBasicBlock *FalseMBB = nullptr; in canCoalesceBranch() local
239 if (TII->analyzeBranch(*Cand.BranchBlock, Cand.BranchTargetBlock, FalseMBB, in canCoalesceBranch()
282 if (!Cand.BranchTargetBlock || FalseMBB || in canCoalesceBranch()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp432 MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(LLVMBB); in LowerFPToInt() local
436 F->insert(It, FalseMBB); in LowerFPToInt()
445 BB->addSuccessor(FalseMBB); in LowerFPToInt()
447 FalseMBB->addSuccessor(DoneMBB); in LowerFPToInt()
487 BuildMI(FalseMBB, DL, TII.get(LoweredOpcode), FalseReg).addReg(InReg); in LowerFPToInt()
488 BuildMI(FalseMBB, DL, TII.get(WebAssembly::BR)).addMBB(DoneMBB); in LowerFPToInt()
492 .addMBB(FalseMBB) in LowerFPToInt()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DFastISel.h447 MachineBasicBlock *FalseMBB);
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1599 MachineBasicBlock *FalseMBB) { in finishCondBranch() argument
1603 if (TrueMBB != FalseMBB) { in finishCondBranch()
1612 fastEmitBranch(FalseMBB, DbgLoc); in finishCondBranch()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp7139 MachineBasicBlock *FalseMBB, in createPHIsForSelects() argument
7178 .addReg(FalseReg).addMBB(FalseMBB); in createPHIsForSelects()
7242 MachineBasicBlock *FalseMBB = SystemZ::emitBlockAfter(StartMBB); in emitSelect() local
7247 FalseMBB->addLiveIn(SystemZ::CC); in emitSelect()
7258 MBB->addSuccessor(FalseMBB); in emitSelect()
7262 MBB = FalseMBB; in emitSelect()
7269 createPHIsForSelects(Selects, StartMBB, FalseMBB, MBB); in emitSelect()
7336 MachineBasicBlock *FalseMBB = SystemZ::emitBlockAfter(StartMBB); in emitCondStore() local
7341 FalseMBB->addLiveIn(SystemZ::CC); in emitCondStore()
7352 MBB->addSuccessor(FalseMBB); in emitCondStore()
[all …]