Home
last modified time | relevance | path

Searched refs:BasicBlockImpl (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dllvm_ir_builder.cpp282 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()
[all …]
Dllvm_ir_builder.h106 struct BasicBlockImpl { struct
392 BasicBlockImpl *EnsureBBImpl(BasicBlock *bb) const;