Searched refs:newBB (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | cgfunc.h | 802 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 D | cgbb.h | 539 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 D | cgfunc.cpp | 277 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 D | isel.cpp | 184 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 D | aarch64_proepilog.h | 73 void AppendBBtoEpilog(BB &epilogBB, BB &newBB);
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
H A D | aarch64_proepilog.cpp | 877 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 D | llvm_ir_builder.cpp | 291 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