Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDILCFGStructurizer.cpp279 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB);
281 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB);
283 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB,
286 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB,
295 MachineBasicBlock *FalseMBB, MachineBasicBlock *LandMBB);
952 MachineBasicBlock *FalseMBB = getFalseBranch(MBB, BranchMI); in ifPatternMatch() local
953 NumMatch += serialPatternMatch(FalseMBB); in ifPatternMatch()
954 NumMatch += ifPatternMatch(FalseMBB); in ifPatternMatch()
958 assert (!TrueMBB->succ_empty() || !FalseMBB->succ_empty()); in ifPatternMatch()
960 if (TrueMBB->succ_size() == 1 && FalseMBB->succ_size() == 1 in ifPatternMatch()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86CmovConversion.cpp671 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()
DX86FastISel.cpp1630 MachineBasicBlock *FalseMBB = FuncInfo.MBBMap[BI->getSuccessor(1)]; in X86SelectBranch() local
1644 case CmpInst::FCMP_FALSE: fastEmitBranch(FalseMBB, DbgLoc); return true; in X86SelectBranch()
1663 std::swap(TrueMBB, FalseMBB); in X86SelectBranch()
1676 std::swap(TrueMBB, FalseMBB); in X86SelectBranch()
1705 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB); in X86SelectBranch()
1731 std::swap(TrueMBB, FalseMBB); in X86SelectBranch()
1738 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB); in X86SelectBranch()
1751 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB); in X86SelectBranch()
1776 finishCondBranch(BI->getParent(), TrueMBB, FalseMBB); in X86SelectBranch()
DX86ISelLowering.cpp30722 MachineBasicBlock *TrueMBB, MachineBasicBlock *FalseMBB, in createPHIsForCMOVsInSinkBB() argument
30761 .addMBB(FalseMBB) in createPHIsForCMOVsInSinkBB()
31015 MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(LLVM_BB); in EmitLoweredSelect() local
31019 F->insert(It, FalseMBB); in EmitLoweredSelect()
31027 FalseMBB->addLiveIn(X86::EFLAGS); in EmitLoweredSelect()
31048 ThisMBB->addSuccessor(FalseMBB); in EmitLoweredSelect()
31052 FalseMBB->addSuccessor(SinkMBB); in EmitLoweredSelect()
31063 createPHIsForCMOVsInSinkBB(MIItBegin, MIItEnd, ThisMBB, FalseMBB, SinkMBB); in EmitLoweredSelect()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCBranchCoalescing.cpp237 MachineBasicBlock *FalseMBB = nullptr; in canCoalesceBranch() local
239 if (TII->analyzeBranch(*Cand.BranchBlock, Cand.BranchTargetBlock, FalseMBB, in canCoalesceBranch()
277 if (!Cand.BranchTargetBlock || FalseMBB || in canCoalesceBranch()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyISelLowering.cpp370 MachineBasicBlock *FalseMBB = F->CreateMachineBasicBlock(LLVMBB); in LowerFPToInt() local
374 F->insert(It, FalseMBB); in LowerFPToInt()
383 BB->addSuccessor(FalseMBB); in LowerFPToInt()
385 FalseMBB->addSuccessor(DoneMBB); in LowerFPToInt()
425 BuildMI(FalseMBB, DL, TII.get(LoweredOpcode), FalseReg).addReg(InReg); in LowerFPToInt()
426 BuildMI(FalseMBB, DL, TII.get(WebAssembly::BR)).addMBB(DoneMBB); in LowerFPToInt()
430 .addMBB(FalseMBB) in LowerFPToInt()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DFastISel.h460 MachineBasicBlock *FalseMBB);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp1693 MachineBasicBlock *FalseMBB) { in finishCondBranch() argument
1697 if (TrueMBB != FalseMBB) { in finishCondBranch()
1706 fastEmitBranch(FalseMBB, DbgLoc); in finishCondBranch()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp6793 MachineBasicBlock *FalseMBB, in createPHIsForSelects() argument
6832 .addReg(FalseReg).addMBB(FalseMBB); in createPHIsForSelects()
6896 MachineBasicBlock *FalseMBB = emitBlockAfter(StartMBB); in emitSelect() local
6901 FalseMBB->addLiveIn(SystemZ::CC); in emitSelect()
6912 MBB->addSuccessor(FalseMBB); in emitSelect()
6916 MBB = FalseMBB; in emitSelect()
6923 createPHIsForSelects(Selects, StartMBB, FalseMBB, MBB); in emitSelect()
6990 MachineBasicBlock *FalseMBB = emitBlockAfter(StartMBB); in emitCondStore() local
6995 FalseMBB->addLiveIn(SystemZ::CC); in emitCondStore()
7006 MBB->addSuccessor(FalseMBB); in emitCondStore()
[all …]