/arkcompiler/runtime_core/static_core/compiler/code_info/ |
H A D | code_info.cpp | 23 stream << "CodeInfo: vregs_num=" << GetHeader().GetVRegsCount() << ", frame_size=" << GetHeader().GetFrameSize() in Dump() 62 << ", vregs_num: " << ii.GetVRegsCount(); in DumpInlineInfo()
|
H A D | code_info.h | 108 uint32_t GetVRegsCount() const in GetVRegsCount() function in ark::compiler::CodeInfoHeader 513 return GetVRegList<Allocator>(stackMap, 0, GetHeader().GetVRegsCount(), allocator); in GetVRegList() 517 if (inlineInfo.GetVRegsCount() == 0) { in GetVRegList() 522 depth == 0 ? GetHeader().GetVRegsCount() : inlineInfos_.GetRow(inlineInfo.GetRow() - 1).GetVRegsCount(); in GetVRegList() 523 ASSERT(inlineInfo.GetVRegsCount() >= first); in GetVRegList() 524 return GetVRegList<Allocator>(stackMap, first, inlineInfo.GetVRegsCount() - first, allocator); in GetVRegList()
|
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/ |
H A D | inst_builder.cpp | 45 for (size_t vreg = 0; vreg < GetVRegsCount(); vreg++) { in UpdateDefsForCatch() 59 for (size_t vreg = 0; vreg < GetVRegsCount(); vreg++) { in UpdateDefsForLoopHead() 86 for (size_t vreg = 0; vreg < GetVRegsCount(); vreg++) { in UpdateDefs() 129 for (size_t vreg = 0; vreg < GetVRegsCount(); vreg++, inst = inst->GetNext()) { in AddCatchPhiInputs()
|
H A D | inst_builder.h | 54 for (size_t vreg = 0; vreg < GetVRegsCount(); vreg++) { 128 size_t GetVRegsCount() const in GetVRegsCount() function in panda::compiler::InstBuilder
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/ |
H A D | inst_builder.cpp | 43 v.resize(GetVRegsCount()); 48 for (size_t vreg = 0; vreg < GetVRegsCount(); vreg++) { 179 for (size_t vreg = 0; vreg < GetVRegsCount(); vreg++) { in UpdateDefsForCatch() 193 for (size_t vreg = 0; vreg < GetVRegsCount(); vreg++) { in UpdateDefsForLoopHead() 357 for (size_t vreg = 0; vreg < GetVRegsCount(); vreg++) { in UpdateDefs() 385 for (size_t vreg = 0; vreg < GetVRegsCount(); vreg++, inst = inst->GetNext()) { in AddCatchPhiInputs()
|
H A D | inst_builder.h | 207 size_t GetVRegsCount() const in GetVRegsCount() function in ark::compiler::InstBuilder
|
/arkcompiler/runtime_core/compiler/tests/ |
H A D | unit_test.h | 219 graph_->SetVRegsCount(std::max(graph_->GetVRegsCount(), runtime_.vregs_count + runtime_.args_count + 1)); in SetNumVirtRegs() 225 graph_->SetVRegsCount(std::max(graph_->GetVRegsCount(), runtime_.vregs_count + runtime_.args_count + 1)); in SetNumArgs()
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | unit_test.h | 297 graph_->SetVRegsCount(std::max(graph_->GetVRegsCount(), runtime_.vregsCount_ + runtime_.argsCount_ + 1)); in SetNumVirtRegs() 303 graph_->SetVRegsCount(std::max(graph_->GetVRegsCount(), runtime_.vregsCount_ + runtime_.argsCount_ + 1)); in SetNumArgs()
|
H A D | lowering_test.cpp | 412 SetNumVirtRegs(GetGraph()->GetVRegsCount()); in TEST_F() 455 SetNumVirtRegs(GetGraph()->GetVRegsCount()); in TEST_F() 491 SetNumVirtRegs(GetGraph()->GetVRegsCount()); in TEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/tests/codegen/ |
H A D | codegen_test_2.cpp | 44 SetNumVirtRegs(GetGraph()->GetVRegsCount()); in TEST_F() 568 SetNumVirtRegs(GetGraph()->GetVRegsCount()); in TEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
H A D | inlining.cpp | 89 vregsCount_(graph->GetVRegsCount()), in Inlining() 581 vregsCount_ += inlGraph.graph->GetVRegsCount(); in DoInlinePolymorphic() 854 vregsCount_ += graphInl->GetVRegsCount(); in TryInlineExternalAot() 957 vregsCount_ += graphInl.graph->GetVRegsCount(); in DoInlineMethod()
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
H A D | ir_constructor.h | 144 graph_->SetVRegsCount(std::max(graph_->GetVRegsCount(), sizeof...(args))); in NewInst() 746 std::max<size_t>(graph_->GetVRegsCount(), *std::max_element(vregs.begin(), vregs.end()))); in SrcVregs()
|
H A D | graph.h | 962 size_t GetVRegsCount() const in GetVRegsCount() function
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | ir_constructor.h | 149 graph_->SetVRegsCount(std::max(graph_->GetVRegsCount(), sizeof...(args))); in NewInst() 937 std::max<size_t>(graph_->GetVRegsCount(), *std::max_element(vregs.begin(), vregs.end()))); in SrcVregs()
|
H A D | graph.h | 1235 size_t GetVRegsCount() const in GetVRegsCount() function
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
H A D | codegen.cpp | 392 GetGraph()->GetVRegsCount() + GetGraph()->GetEnvCount()); in BeginMethod()
|