Home
last modified time | relevance | path

Searched refs:getBasicBlock (Results 1 – 25 of 249) sorted by relevance

12345678910

/external/llvm-project/llvm/lib/Target/RISCV/
DRISCVExpandAtomicPseudoInsts.cpp349 auto LoopMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicBinOp()
350 auto DoneMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicBinOp()
401 auto LoopHeadMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicMinMaxOp()
402 auto LoopIfBodyMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicMinMaxOp()
403 auto LoopTailMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicMinMaxOp()
404 auto DoneMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicMinMaxOp()
517 auto LoopHeadMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicCmpXchg()
518 auto LoopTailMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicCmpXchg()
519 auto DoneMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicCmpXchg()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVExpandPseudoInsts.cpp366 auto LoopMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicBinOp()
367 auto DoneMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicBinOp()
418 auto LoopHeadMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicMinMaxOp()
419 auto LoopIfBodyMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicMinMaxOp()
420 auto LoopTailMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicMinMaxOp()
421 auto DoneMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicMinMaxOp()
534 auto LoopHeadMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicCmpXchg()
535 auto LoopTailMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicCmpXchg()
536 auto DoneMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAtomicCmpXchg()
635 MachineBasicBlock *NewMBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandAuipcInstPair()
/external/llvm-project/llvm/lib/CodeGen/
DMachineLoopInfo.cpp101 if (const BasicBlock *PHeadBB = PHeadMBB->getBasicBlock()) in getStartLoc()
108 if (const BasicBlock *HeadBB = HeadMBB->getBasicBlock()) in getStartLoc()
DBranchRelaxation.cpp209 MF->CreateMachineBasicBlock(BB.getBasicBlock()); in createNewBlockAfter()
227 MF->CreateMachineBasicBlock(OrigBB->getBasicBlock()); in splitBlockBeforeInstr()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineLoopInfo.cpp101 if (const BasicBlock *PHeadBB = PHeadMBB->getBasicBlock()) in getStartLoc()
108 if (const BasicBlock *HeadBB = HeadMBB->getBasicBlock()) in getStartLoc()
DBranchRelaxation.cpp214 MF->CreateMachineBasicBlock(BB.getBasicBlock()); in createNewBlockAfter()
232 MF->CreateMachineBasicBlock(OrigBB->getBasicBlock()); in splitBlockBeforeInstr()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64ExpandPseudoInsts.cpp191 auto LoadCmpBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP()
192 auto StoreBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP()
193 auto DoneBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP()
273 auto LoadCmpBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP_128()
274 auto StoreBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP_128()
275 auto DoneBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP_128()
361 auto LoopBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandSetTagLoop()
362 auto DoneBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandSetTagLoop()
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/
DIRTranslator.cpp420 isValInBlock(NotCond, CurBB->getBasicBlock())) { in findMergedConditions()
446 BOp->getParent() != CurBB->getBasicBlock() || in findMergedConditions()
447 !isValInBlock(BOp->getOperand(0), CurBB->getBasicBlock()) || in findMergedConditions()
448 !isValInBlock(BOp->getOperand(1), CurBB->getBasicBlock())) { in findMergedConditions()
457 MF->CreateMachineBasicBlock(CurBB->getBasicBlock()); in findMergedConditions()
660 const BasicBlock *SrcBB = Src->getBasicBlock(); in getEdgeProbability()
661 const BasicBlock *DstBB = Dst->getBasicBlock(); in getEdgeProbability()
815 addMachineCFGPred({SwitchBB->getBasicBlock(), CB.TrueBB->getBasicBlock()}, in emitSwitchCase()
867 addMachineCFGPred({SwitchBB->getBasicBlock(), CB.TrueBB->getBasicBlock()}, in emitSwitchCase()
876 addMachineCFGPred({SwitchBB->getBasicBlock(), CB.FalseBB->getBasicBlock()}, in emitSwitchCase()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86RetpolineThunks.cpp249 MachineBasicBlock *CaptureSpec = MF.CreateMachineBasicBlock(Entry->getBasicBlock()); in populateThunk()
250 MachineBasicBlock *CallTarget = MF.CreateMachineBasicBlock(Entry->getBasicBlock()); in populateThunk()
/external/llvm-project/llvm/lib/Target/X86/
DX86IndirectThunks.cpp208 MF.CreateMachineBasicBlock(Entry->getBasicBlock()); in populateThunk()
210 MF.CreateMachineBasicBlock(Entry->getBasicBlock()); in populateThunk()
/external/llvm-project/llvm/lib/Target/AArch64/
DAArch64ExpandPseudoInsts.cpp196 auto LoadCmpBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP()
197 auto StoreBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP()
198 auto DoneBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP()
278 auto LoadCmpBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP_128()
279 auto StoreBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP_128()
280 auto DoneBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP_128()
564 auto LoopBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandSetTagLoop()
565 auto DoneBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandSetTagLoop()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DIRTranslator.cpp425 const BasicBlock *SrcBB = Src->getBasicBlock(); in getEdgeProbability()
426 const BasicBlock *DstBB = Dst->getBasicBlock(); in getEdgeProbability()
579 addMachineCFGPred({SwitchBB->getBasicBlock(), CB.TrueBB->getBasicBlock()}, in emitSwitchCase()
616 addMachineCFGPred({SwitchBB->getBasicBlock(), CB.TrueBB->getBasicBlock()}, in emitSwitchCase()
626 addMachineCFGPred({SwitchBB->getBasicBlock(), CB.FalseBB->getBasicBlock()}, in emitSwitchCase()
667 addMachineCFGPred({SwitchMBB->getBasicBlock(), DefaultMBB->getBasicBlock()}, in lowerJumpTableWorkItem()
669 addMachineCFGPred({SwitchMBB->getBasicBlock(), DefaultMBB->getBasicBlock()}, in lowerJumpTableWorkItem()
688 addMachineCFGPred({SwitchMBB->getBasicBlock(), (*SI)->getBasicBlock()}, in lowerJumpTableWorkItem()
800 DefaultMBB->getBasicBlock()->getFirstNonPHIOrDbg()); in lowerSwitchWorkItem()
802 Fallthrough = CurMF->CreateMachineBasicBlock(CurMBB->getBasicBlock()); in lowerSwitchWorkItem()
/external/llvm/lib/Target/AArch64/
DAArch64ExpandPseudoInsts.cpp615 auto LoadCmpBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP()
616 auto StoreBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP()
617 auto DoneBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP()
693 auto LoadCmpBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP_128()
694 auto StoreBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP_128()
695 auto DoneBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP_128()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGDumper.cpp471 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock(); in print_details()
474 OS << (const void*)BBDN->getBasicBlock() << ">"; in print_details()
533 BA->getBlockAddress()->getBasicBlock()->printAsOperand(OS, false); in print_details()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/VE/
DVEInstrInfo.cpp78 const BasicBlock *LLVM_BB = BB->getBasicBlock(); in expandExtendStackPseudo()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGDumper.cpp628 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock(); in print_details()
631 OS << (const void*)BBDN->getBasicBlock() << ">"; in print_details()
733 BA->getBlockAddress()->getBasicBlock()->printAsOperand(OS, false); in print_details()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyExceptionInfo.cpp161 if (const auto *BB = MBB->getBasicBlock()) in print()
/external/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyExceptionInfo.cpp164 if (const auto *BB = MBB->getBasicBlock()) in print()
/external/llvm/unittests/Linker/
DLinkModulesTest.cpp120 EXPECT_EQ(cast<BlockAddress>(Elem)->getBasicBlock()->getParent(), in TEST_F()
127 EXPECT_EQ(cast<BlockAddress>(Elem)->getBasicBlock()->getParent(), in TEST_F()
/external/llvm-project/llvm/unittests/Linker/
DLinkModulesTest.cpp119 EXPECT_EQ(cast<BlockAddress>(Elem)->getBasicBlock()->getParent(), in TEST_F()
126 EXPECT_EQ(cast<BlockAddress>(Elem)->getBasicBlock()->getParent(), in TEST_F()
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGDumper.cpp652 const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock(); in print_details()
655 OS << (const void*)BBDN->getBasicBlock() << ">"; in print_details()
788 BA->getBlockAddress()->getBasicBlock()->printAsOperand(OS, false); in print_details()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DFunctionComparator.cpp365 BasicBlock *LBB = LBA->getBasicBlock(); in cmpConstants()
366 BasicBlock *RBB = RBA->getBasicBlock(); in cmpConstants()
387 return cmpValues(LBA->getBasicBlock(), RBA->getBasicBlock()); in cmpConstants()
/external/llvm-project/llvm/lib/Target/MSP430/
DMSP430BranchSelector.cpp153 MF->CreateMachineBasicBlock(MBB->getBasicBlock()); in expandBranches()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/
DMSP430BranchSelector.cpp153 MF->CreateMachineBasicBlock(MBB->getBasicBlock()); in expandBranches()
/external/llvm/lib/Target/Lanai/
DLanaiAsmPrinter.cpp224 if (const BasicBlock *B = Pred->getBasicBlock()) in isBlockOnlyReachableByFallthrough()

12345678910