Home | History | Annotate | Download | only in runtime

Lines Matching refs:vreg

41 // The kind of vreg being accessed in calls to Set/GetVReg.
58 // - JNI - just VRegs, but where every VReg holds a reference.
127 const uint32_t* vreg = &vregs_[i];
128 return *reinterpret_cast<const int32_t*>(vreg);
134 const uint32_t* vreg = &vregs_[i];
135 return *reinterpret_cast<const float*>(vreg);
140 const uint32_t* vreg = &vregs_[i];
141 return *reinterpret_cast<const int64_t*>(vreg);
146 const uint32_t* vreg = &vregs_[i];
147 return *reinterpret_cast<const double*>(vreg);
155 const uint32_t* vreg = &vregs_[i];
156 return *reinterpret_cast<mirror::Object* const*>(vreg);
167 uint32_t* vreg = &vregs_[i];
168 *reinterpret_cast<int32_t*>(vreg) = val;
173 uint32_t* vreg = &vregs_[i];
174 *reinterpret_cast<float*>(vreg) = val;
179 uint32_t* vreg = &vregs_[i];
180 *reinterpret_cast<int64_t*>(vreg) = val;
185 uint32_t* vreg = &vregs_[i];
186 *reinterpret_cast<double*>(vreg) = val;
191 uint32_t* vreg = &vregs_[i];
192 *reinterpret_cast<mirror::Object**>(vreg) = val;
453 uint32_t GetVReg(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind) const
456 void SetVReg(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value, VRegKind kind)
464 uint16_t vreg) const {
465 int offset = GetVRegOffset(code_item, core_spills, fp_spills, frame_size, vreg);