/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
H A D | AMDILCFGStructurizer.cpp | 254 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB); 256 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB); 258 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB, 261 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB, 270 MachineBasicBlock *FalseMBB, MachineBasicBlock *LandMBB); 927 MachineBasicBlock *FalseMBB = getFalseBranch(MBB, BranchMI); in ifPatternMatch() local 928 NumMatch += serialPatternMatch(FalseMBB); in ifPatternMatch() 929 NumMatch += ifPatternMatch(FalseMBB); in ifPatternMatch() 933 assert (!TrueMBB->succ_empty() || !FalseMBB->succ_empty()); in ifPatternMatch() 935 if (TrueMBB->succ_size() == 1 && FalseMBB->succ_size() == 1 in ifPatternMatch() [all …]
|
H A D | SIPreEmitPeephole.cpp | 42 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()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
H A D | X86CmovConversion.cpp | 671 MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(BB); in convertCmovInstsToBranches() local 673 F->insert(It, FalseMBB); in convertCmovInstsToBranches() 679 FalseMBB->addLiveIn(X86::EFLAGS); in convertCmovInstsToBranches() 689 MBB->addSuccessor(FalseMBB); in convertCmovInstsToBranches() 696 FalseMBB->addSuccessor(SinkMBB); in convertCmovInstsToBranches() 702 MachineBasicBlock::iterator FalseInsertionPoint = FalseMBB->begin(); in convertCmovInstsToBranches() 781 FalseMBB->insert(FalseInsertionPoint, NewMI); in convertCmovInstsToBranches() 838 .addMBB(FalseMBB) in convertCmovInstsToBranches()
|
H A D | X86FastISel.cpp | 1649 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 D | X86ISelLowering.cpp | 32427 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB, in createPHIsForCMOVsInSinkBB() argument 32466 .addMBB(FalseMBB) in createPHIsForCMOVsInSinkBB() 32719 MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(LLVM_BB); in EmitLoweredSelect() local 32723 F->insert(It, FalseMBB); in EmitLoweredSelect() 32731 FalseMBB->addLiveIn(X86::EFLAGS); in EmitLoweredSelect() 32752 ThisMBB->addSuccessor(FalseMBB); in EmitLoweredSelect() 32756 FalseMBB->addSuccessor(SinkMBB); in EmitLoweredSelect() 32767 createPHIsForCMOVsInSinkBB(MIItBegin, MIItEnd, ThisMBB, FalseMBB, SinkMBB); in EmitLoweredSelect()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
H A D | PPCBranchCoalescing.cpp | 237 MachineBasicBlock *FalseMBB = nullptr; in canCoalesceBranch() local 239 if (TII->analyzeBranch(*Cand.BranchBlock, Cand.BranchTargetBlock, FalseMBB, in canCoalesceBranch() 282 if (!Cand.BranchTargetBlock || FalseMBB || in canCoalesceBranch()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyISelLowering.cpp | 392 MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(LLVMBB); in LowerFPToInt() local 396 F->insert(It, FalseMBB); in LowerFPToInt() 405 BB->addSuccessor(FalseMBB); in LowerFPToInt() 407 FalseMBB->addSuccessor(DoneMBB); in LowerFPToInt() 447 BuildMI(FalseMBB, DL, TII.get(LoweredOpcode), FalseReg).addReg(InReg); in LowerFPToInt() 448 BuildMI(FalseMBB, DL, TII.get(WebAssembly::BR)).addMBB(DoneMBB); in LowerFPToInt() 452 .addMBB(FalseMBB) in LowerFPToInt()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
H A D | FastISel.h | 447 MachineBasicBlock *FalseMBB);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
H A D | FastISel.cpp | 1582 MachineBasicBlock *FalseMBB) { in finishCondBranch() argument 1586 if (TrueMBB != FalseMBB) { in finishCondBranch() 1595 fastEmitBranch(FalseMBB, DbgLoc); in finishCondBranch()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
H A D | SystemZISelLowering.cpp | 7111 MachineBasicBlock *FalseMBB, in createPHIsForSelects() argument 7150 .addReg(FalseReg).addMBB(FalseMBB); in createPHIsForSelects() 7214 MachineBasicBlock *FalseMBB = SystemZ::emitBlockAfter(StartMBB); in emitSelect() local 7219 FalseMBB->addLiveIn(SystemZ::CC); in emitSelect() 7230 MBB->addSuccessor(FalseMBB); in emitSelect() 7234 MBB = FalseMBB; in emitSelect() 7241 createPHIsForSelects(Selects, StartMBB, FalseMBB, MBB); in emitSelect() 7308 MachineBasicBlock *FalseMBB = SystemZ::emitBlockAfter(StartMBB); in emitCondStore() local 7313 FalseMBB->addLiveIn(SystemZ::CC); in emitCondStore() 7324 MBB->addSuccessor(FalseMBB); in emitCondStore() [all …]
|