Home
last modified time | relevance | path

Searched refs:IsParameter (Results 1 - 24 of 24) sorted by relevance

/arkcompiler/runtime_core/static_core/irtoc/lang/
H A Dinstruction.rb56 raise "Trying to set argument index for non Parameter instruction" unless IsParameter?
73 return IsConstant? || IsLiveIn? || IsElse? || IsParameter?
150 elsif IsParameter?()
283 IsParameter? ? "p_#{@index}" : "l_#{@index}"
H A Dir_generator.rb150 input_name = input.IsParameter? ? "p_#{input.index}" : input.local_var_name
177 inst.IsParameter? ? "p_#{inst.index}" : inst.local_var_name
/arkcompiler/ets_frontend/ets2panda/compiler/core/
H A DvReg.h57 return (idx_ >= REG_MAX - limit) && (limit == REG_MAX || !IsParameter());
60 [[nodiscard]] constexpr bool IsParameter() const noexcept
/arkcompiler/runtime_core/compiler/tests/
H A Dsplit_resolver_new_test.cpp143 FindInstWithInterval(la, start_bb, [](Inst *inst) { return inst->IsParameter() && inst->HasUsers(); }); in HWTEST_F()
207 la, graph->GetStartBlock(), [](Inst *inst) { return inst->IsParameter() && inst->HasUsers(); }); in HWTEST_F()
258 la, graph->GetStartBlock(), [](Inst *inst) { return inst->IsParameter() && inst->HasUsers(); }); in HWTEST_F()
H A Dreg_alloc_graph_coloring_test.cpp29 ASSERT(param->IsParameter()); in GetParameterSpillFilll()
H A Dreg_alloc_graph_coloring_new_test.cpp255 return input.GetInst()->IsParameter(); in HWTEST_F()
303 return input.GetInst()->IsParameter(); in HWTEST_F()
H A Dcompiler_graph_test.cpp341 EXPECT_TRUE(inst->IsParameter()); in HWTEST_F()
/arkcompiler/runtime_core/libark_defect_scan_aux/
H A Dgraph.cpp70 ASSERT(inst_->IsParameter()); in GetArgIndex()
/arkcompiler/runtime_core/static_core/assembler/
H A Dassembly-function.h172 bool IsParameter(uint32_t regNumber) const in IsParameter() function
H A Dassembly-emitter.cpp1135 if (func.IsParameter(v.reg)) { in HandleFunctionLocalVariables()
1290 if (func.IsParameter(v.reg)) { in SetCodeAndDebugInfo()
1683 if (IsParameter(v.reg)) { in EmitLocalVariable()
/arkcompiler/runtime_core/assembler/
H A Dassembly-function.h199 bool IsParameter(uint32_t reg_number) const in IsParameter() function
H A Dassembly-emitter.cpp986 if (func.IsParameter(v.reg)) { in HandleFunctionLocalVariables()
1166 if (func.IsParameter(v.reg)) { in SetCodeAndDebugInfo()
1639 ASSERT(!IsParameter(v.reg)); in EmitLocalVariable()
1711 if (IsParameter(v.reg)) { in CollectLocalVariable()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
H A Dreg_alloc_resolver.cpp245 ASSERT(inst->IsConst() || inst->IsPhi() || inst->IsParameter()); in ResolveOutput()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
H A Dreg_alloc_resolver.cpp390 ASSERT(inst->IsConst() || inst->IsPhi() || inst->IsParameter()); in ResolveOutput()
H A Dreg_alloc_linear_scan.cpp205 ASSERT(currentInterval->GetInst()->IsParameter()); in WalkIntervals()
/arkcompiler/runtime_core/static_core/compiler/tests/
H A Dreg_alloc_graph_coloring_test.cpp30 ASSERT(param->IsParameter()); in GetParameterSpillFilll()
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
H A Dreg_alloc_verifier.cpp452 if (inst->IsParameter()) { in ProcessCurrentBlock()
H A Dliveness_analyzer.cpp768 if (inst->IsParameter()) { in BlockFixedRegisters()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Dgraph.cpp101 if (!inst->IsParameter()) { in FindParameter()
H A Danalysis.cpp451 if (inst->IsParameter() && inst->CastToParameter()->GetArgNumber() == 0) { in IsInstNotNull()
H A Dinst.h1562 bool IsParameter() const in IsParameter() function
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dpeepholes.cpp1923 bool check = !input0->IsConst() && !input0->IsParameter() && !input0->IsDominate(input1); in CanReassociateShlShlAddSub()
2672 if (func->IsParameter() && func->CastToParameter()->GetArgNumber() == 0) { in VisitLoadConstantPool()
H A Dinlining.cpp744 if (oldDef->IsParameter()) { in GetNewDefAndCorrectDF()
/arkcompiler/runtime_core/compiler/optimizer/ir/
H A Dinst.h1264 bool IsParameter() const in IsParameter() function

Completed in 36 milliseconds