Searched refs:NoStoreBB (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | AtomicExpandPass.cpp | 1032 auto NoStoreBB = BasicBlock::Create(Ctx, "cmpxchg.nostore", F, FailureBB); in expandAtomicCmpXchg() local 1033 auto SuccessBB = BasicBlock::Create(Ctx, "cmpxchg.success", F, NoStoreBB); in expandAtomicCmpXchg() 1063 Builder.CreateCondBr(ShouldStore, ReleasingStoreBB, NoStoreBB); in expandAtomicCmpXchg() 1089 Builder.CreateCondBr(ShouldStore, TryStoreBB, NoStoreBB); in expandAtomicCmpXchg() 1101 Builder.SetInsertPoint(NoStoreBB); in expandAtomicCmpXchg() 1133 Builder.SetInsertPoint(NoStoreBB, NoStoreBB->begin()); in expandAtomicCmpXchg()
|