Home
last modified time | relevance | path

Searched refs:vmap_offset (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dvmap_table.h54 bool IsInContext(size_t vreg, VRegKind kind, uint32_t* vmap_offset) const { in IsInContext() argument
58 *vmap_offset = 0xEBAD0FF5; in IsInContext()
77 *vmap_offset = i; in IsInContext()
91 uint32_t ComputeRegister(uint32_t spill_mask, uint32_t vmap_offset, VRegKind kind) const { in ComputeRegister() argument
108 CHECK_LT(vmap_offset - matches, static_cast<uint32_t>(POPCOUNT(spill_mask))); in ComputeRegister()
110 while (matches != (vmap_offset + 1)) { in ComputeRegister()
Dstack.cc163 uint32_t vmap_offset; in GetVReg() local
165 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) { in GetVReg()
168 uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind); in GetVReg()
264 uint32_t vmap_offset; in SetVReg() local
266 if (vmap_table.IsInContext(vreg, kind, &vmap_offset)) { in SetVReg()
269 const uint32_t reg = vmap_table.ComputeRegister(spill_mask, vmap_offset, kind); in SetVReg()
Dthread.cc2132 uint32_t vmap_offset; in VisitQuickFrame() local
2133 if (vmap_table.IsInContext(reg, kReferenceVReg, &vmap_offset)) { in VisitQuickFrame()
2134 int vmap_reg = vmap_table.ComputeRegister(frame_info.CoreSpillMask(), vmap_offset, in VisitQuickFrame()
/art/oatdump/
Doatdump.cc705 uint32_t vmap_offset; in DescribeVReg() local
706 if (vmap_table.IsInContext(reg, kind, &vmap_offset)) { in DescribeVReg()
710 os << (is_float ? "fr" : "r") << vmap_table.ComputeRegister(spill_mask, vmap_offset, kind); in DescribeVReg()