Home
last modified time | relevance | path

Searched refs:newBB (Results 1 - 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H A Dcgfunc.h802 BB *newBB = CreateNewBB(); in CreateNewBB() local
803 newBB->SetKind(kind); in CreateNewBB()
804 newBB->SetUnreachable(unreachable); in CreateNewBB()
805 newBB->SetFrequency(frequency); in CreateNewBB()
806 return newBB; in CreateNewBB()
811 BB *newBB = CreateNewBB(unreachable, kind, frequency); in CreateNewBB() local
812 newBB->AddLabel(label); in CreateNewBB()
813 SetLab2BBMap(label, *newBB); in CreateNewBB()
814 return newBB; in CreateNewBB()
819 BB *newBB in StartNewBBImpl() local
[all...]
H A Dcgbb.h539 void ReplaceSucc(const MapleList<BB *>::const_iterator it, BB &newBB)
543 PushBackSuccs(newBB, prob);
546 void ReplaceSucc(BB &oldBB, BB &newBB)
550 PushBackSuccs(newBB, prob);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dcgfunc.cpp277 BB *newBB = cgFunc.StartNewBBImpl(false, label); in HandleLabel() local
278 newBB->AddLabel(label.GetLabelIdx()); in HandleLabel()
279 if (newBB->GetId() == 1) { in HandleLabel()
280 newBB->SetFrequency(kFreqBase); in HandleLabel()
282 cgFunc.SetLab2BBMap(newBB->GetLabIdx(), *newBB); in HandleLabel()
283 cgFunc.SetCurBB(*newBB); in HandleLabel()
H A Disel.cpp184 BB *newBB = cgFunc->StartNewBBImpl(false, label); in HandleLabel() local
185 newBB->AddLabel(label.GetLabelIdx()); in HandleLabel()
186 cgFunc->SetLab2BBMap(static_cast<int32>(newBB->GetLabIdx()), *newBB); in HandleLabel()
187 cgFunc->SetCurBB(*newBB); in HandleLabel()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
H A Daarch64_proepilog.h73 void AppendBBtoEpilog(BB &epilogBB, BB &newBB);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
H A Daarch64_proepilog.cpp877 void AArch64GenProEpilog::AppendBBtoEpilog(BB &epilogBB, BB &newBB) in AppendBBtoEpilog() argument
879 FOR_BB_INSNS(insn, &newBB) in AppendBBtoEpilog()
886 epilogBB.AppendBBInsns(newBB); in AppendBBtoEpilog()
889 epilogBB.AppendBBInsns(newBB); in AppendBBtoEpilog()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/
H A Dllvm_ir_builder.cpp291 auto newBB = std::make_unique<BasicBlock>(id); in EnsureBB() local
292 bb = newBB.get(); in EnsureBB()
293 bbID2BB_[id] = std::move(newBB); in EnsureBB()

Completed in 16 milliseconds