Lines Matching refs:BasicBlockImpl
282 BasicBlockImpl *impl = bb->GetImpl<BasicBlockImpl>(); in SetToCfg()
295 auto impl = bb->GetImpl<BasicBlockImpl>(); in ProcessPhiWorkList()
317 BasicBlockImpl *impl = currentBb_->GetImpl<BasicBlockImpl>(); in EndCurrentBlock()
327 it.second->ResetImpl<BasicBlockImpl>(); in Finish()
332 BasicBlockImpl *LLVMIRBuilder::EnsureBBImpl(BasicBlock *bb) const in EnsureBBImpl()
334 if (bb->GetImpl<BasicBlockImpl>()) { in EnsureBBImpl()
335 return bb->GetImpl<BasicBlockImpl>(); in EnsureBBImpl()
337 auto impl = std::make_unique<BasicBlockImpl>(); in EnsureBBImpl()
339 return bb->GetImpl<BasicBlockImpl>(); in EnsureBBImpl()
431 BasicBlockImpl *impl = EnsureBBImpl(bb); in EnsureLBB()
1032 BasicBlockImpl *impl = bb->GetImpl<BasicBlockImpl>(); in VisitPhi()
1043 impl = currentBb_->GetImpl<BasicBlockImpl>(); in VisitPhi()
1049 BasicBlockImpl* impl = currentBb_->GetImpl<BasicBlockImpl>(); in VisitPhi()
1312 LLVMBasicBlockRef llvmTrueBB = trueBB->GetImpl<BasicBlockImpl>()->lBB_; in VisitBranch()
1313 LLVMBasicBlockRef llvmFalseBB = falseBB->GetImpl<BasicBlockImpl>()->lBB_; in VisitBranch()
1338 llvmDefaultOutBB = curOutBB->GetImpl<BasicBlockImpl>()->lBB_; in VisitSwitch()
1348 llvmCurOutBB = curOutBB->GetImpl<BasicBlockImpl>()->lBB_; in VisitSwitch()