Home
last modified time | relevance | path

Searched refs:vregs_ (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dstack.h124 const uint32_t* vreg = &vregs_[i]; in GetVReg()
131 const uint32_t* vreg = &vregs_[i]; in GetVRegFloat()
137 const uint32_t* vreg = &vregs_[i]; in GetVRegLong()
145 const uint32_t* vreg = &vregs_[i]; in GetVRegDouble()
158 const uint32_t* vreg_ptr = &vregs_[i]; in GetVRegReference()
172 return &vregs_[i]; in GetVRegArgs()
177 uint32_t* vreg = &vregs_[i]; in SetVReg()
188 uint32_t* vreg = &vregs_[i]; in SetVRegFloat()
199 uint32_t* vreg = &vregs_[i]; in SetVRegLong()
213 uint32_t* vreg = &vregs_[i]; in SetVRegDouble()
[all …]
/art/compiler/optimizing/
Dnodes.h1121 : vregs_(arena, number_of_vregs), in HEnvironment()
1127 vregs_.SetSize(number_of_vregs); in HEnvironment()
1129 vregs_.Put(i, HUserRecord<HEnvironment*>()); in HEnvironment()
1159 vregs_.Put(index, HUserRecord<HEnvironment*>(instruction)); in SetRawEnvAt()
1163 return vregs_.Get(index).GetInstruction(); in GetInstructionAt()
1168 size_t Size() const { return vregs_.Size(); } in Size()
1198 vregs_.Put(index, HUserRecord<HEnvironment*>(vregs_.Get(index), env_use)); in RecordEnvUse()
1201 GrowableArray<HUserRecord<HEnvironment*> > vregs_; variable
Dnodes.cc602 const HUserRecord<HEnvironment*> user_record = vregs_.Get(index); in RemoveAsUserOfInput()