Searched refs:StoreBB (Results 1 – 6 of 6) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/ |
| H A D | AArch64ExpandPseudoInsts.cpp | 206 auto StoreBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in expandCMP_SWAP() local 210 MF->insert(++LoadCmpBB->getIterator(), StoreBB); in expandCMP_SWAP() 211 MF->insert(++StoreBB->getIterator(), DoneBB); in expandCMP_SWAP() 232 LoadCmpBB->addSuccessor(StoreBB); in expandCMP_SWAP() 237 BuildMI(StoreBB, MIMD, TII->get(StlrOp), StatusReg) in expandCMP_SWAP() 240 BuildMI(StoreBB, MIMD, TII->get(AArch64::CBNZW)) in expandCMP_SWAP() 243 StoreBB->addSuccessor(LoadCmpBB); in expandCMP_SWAP() 244 StoreBB->addSuccessor(DoneBB); in expandCMP_SWAP() 257 computeAndAddLiveIns(LiveRegs, *StoreBB); in expandCMP_SWAP() 260 StoreBB->clearLiveIns(); in expandCMP_SWAP() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARM/ |
| H A D | ARMExpandPseudoInsts.cpp | 1747 auto StoreBB = MF->CreateMachineBasicBlock(MBB.getBasicBlock()); in ExpandCMP_SWAP() local 1751 MF->insert(++LoadCmpBB->getIterator(), StoreBB); in ExpandCMP_SWAP() 1752 MF->insert(++StoreBB->getIterator(), DoneBB); in ExpandCMP_SWAP() 1786 LoadCmpBB->addSuccessor(StoreBB); in ExpandCMP_SWAP() 1792 MIB = BuildMI(StoreBB, DL, TII->get(StrexOp), TempReg) in ExpandCMP_SWAP() 1801 BuildMI(StoreBB, DL, TII->get(CMPri)) in ExpandCMP_SWAP() 1805 BuildMI(StoreBB, DL, TII->get(Bcc)) in ExpandCMP_SWAP() 1809 StoreBB->addSuccessor(LoadCmpBB); in ExpandCMP_SWAP() 1810 StoreBB->addSuccessor(DoneBB); in ExpandCMP_SWAP() 1823 computeAndAddLiveIns(LiveRegs, *StoreBB); in ExpandCMP_SWAP() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineLoadStoreAlloca.cpp | 1552 BasicBlock *StoreBB = SI.getParent(); in mergeStoreIntoSuccessor() local 1553 BasicBlock *DestBB = StoreBB->getTerminator()->getSuccessor(0); in mergeStoreIntoSuccessor() 1559 if (*PredIter == StoreBB) in mergeStoreIntoSuccessor() 1565 if (StoreBB == DestBB || OtherBB == DestBB) in mergeStoreIntoSuccessor() 1595 if (OtherBr->getSuccessor(0) != StoreBB && in mergeStoreIntoSuccessor() 1596 OtherBr->getSuccessor(1) != StoreBB) in mergeStoreIntoSuccessor() 1619 for (BasicBlock::iterator I = StoreBB->begin(); &*I != &SI; ++I) { in mergeStoreIntoSuccessor()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| H A D | PromoteMemoryToRegister.cpp | 446 BasicBlock *StoreBB = OnlyStore->getParent(); in rewriteSingleStoreAlloca() local 463 if (LI->getParent() == StoreBB) { in rewriteSingleStoreAlloca() 472 Info.UsingBlocks.push_back(StoreBB); in rewriteSingleStoreAlloca() 475 } else if (!DT.dominates(StoreBB, LI->getParent())) { in rewriteSingleStoreAlloca()
|
| H A D | SimplifyCFG.cpp | 2707 BasicBlock *StoreBB, BasicBlock *EndBB) { in isSafeToSpeculateStore() argument
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGCall.cpp | 3329 llvm::BasicBlock *StoreBB = store->getParent(); in findDominatingStoreToReturnValue() local 3331 while (IP != StoreBB) { in findDominatingStoreToReturnValue()
|