Home
last modified time | relevance | path

Searched refs:kind_hi (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dstack.cc202 VRegKind kind_hi, uint64_t* val) const { in GetVRegPair() argument
204 DCHECK_EQ(kind_hi, kLongHiVReg); in GetVRegPair()
206 DCHECK_EQ(kind_hi, kDoubleHiVReg); in GetVRegPair()
208 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi; in GetVRegPair()
220 vmap_table.IsInContext(vreg + 1, kind_hi, &vmap_offset_hi)) { in GetVRegPair()
224 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi); in GetVRegPair()
313 VRegKind kind_lo, VRegKind kind_hi) { in SetVRegPair() argument
315 DCHECK_EQ(kind_hi, kLongHiVReg); in SetVRegPair()
317 DCHECK_EQ(kind_hi, kDoubleHiVReg); in SetVRegPair()
319 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi; in SetVRegPair()
[all …]
Dstack.h589 bool GetVRegPair(mirror::ArtMethod* m, uint16_t vreg, VRegKind kind_lo, VRegKind kind_hi,
594 VRegKind kind_hi) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetVRegPair() argument
596 bool success = GetVRegPair(m, vreg, kind_lo, kind_hi, &val); in GetVRegPair()
598 << " of kind [" << kind_lo << "," << kind_hi << "]"; in GetVRegPair()
606 VRegKind kind_lo, VRegKind kind_hi)