Home
last modified time | relevance | path

Searched refs:DstValue (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/runtime_core/compiler/tests/
Dreg_alloc_graph_coloring_test.cpp34 EXPECT_EQ(param_liveness->GetSibling()->GetReg(), spill_fill.DstValue()); in GetParameterSpillFilll()
79 EXPECT_LT(INS(0).CastToParameter()->GetLocationData().DstValue(), first_callee); in TEST_F()
Dreg_alloc_common_test.cpp261 return sf.DstValue() == reg && sf.DstType() == LocationType::REGISTER; in TEST_F()
Dsplit_resolver_test.cpp72 sf_data.DstValue() == dst; in CheckSpillFills()
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dspill_fill_data.h48 auto DstValue() const in DstValue() function
Ddump.cpp435 if (spill_fill.DstValue() != INVALID_REG) { in Dump()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dspill_fills_resolver.cpp136 if (sf.DstType() == sf.SrcType() && sf.DstValue() == sf.SrcValue()) { in NeedToResolve()
179 if (sf.DstType() == sf.SrcType() && sf.DstValue() == sf.SrcValue()) { in CollectSpillFillsData()
/arkcompiler/runtime_core/bytecode_optimizer/
Dcodegen.cpp247 ASSERT(sf.SrcValue() != compiler::INVALID_REG && sf.DstValue() != compiler::INVALID_REG); in EncodeSpillFillData()
249 if (sf.SrcValue() == sf.DstValue()) { in EncodeSpillFillData()
254 result_.emplace_back(pandasm::Create_MOV(sf.DstValue(), sf.SrcValue())); in EncodeSpillFillData()
Dreg_encoder.cpp164 if (sf.DstType() == compiler::LocationType::REGISTER && sf.DstValue() >= min_reg) { in RenumberSpillFillRegs()
165 sf.SetDst(compiler::Location::MakeRegister(RenumberReg(sf.DstValue(), delta))); in RenumberSpillFillRegs()