Searched refs:kind_lo (Results 1 – 2 of 2) sorted by relevance
/art/runtime/ |
D | stack.cc | 304 VRegKind kind_lo, in GetVRegPairFromDebuggerShadowFrame() argument 309 bool success = GetVRegFromDebuggerShadowFrame(vreg, kind_lo, &low_32bits); in GetVRegPairFromDebuggerShadowFrame() 317 bool StackVisitor::GetVRegPair(ArtMethod* m, uint16_t vreg, VRegKind kind_lo, in GetVRegPair() argument 319 if (kind_lo == kLongLoVReg) { in GetVRegPair() 321 } else if (kind_lo == kDoubleLoVReg) { in GetVRegPair() 324 LOG(FATAL) << "Expected long or double: kind_lo=" << kind_lo << ", kind_hi=" << kind_hi; in GetVRegPair() 328 if (GetVRegPairFromDebuggerShadowFrame(vreg, kind_lo, kind_hi, val)) { in GetVRegPair() 335 return GetVRegPairFromOptimizedCode(m, vreg, kind_lo, kind_hi, val); in GetVRegPair() 344 VRegKind kind_lo, VRegKind kind_hi, in GetVRegPairFromOptimizedCode() argument 348 bool success = GetVRegFromOptimizedCode(m, vreg, kind_lo, &low_32bits); in GetVRegPairFromOptimizedCode() [all …]
|
D | stack.h | 228 bool GetVRegPair(ArtMethod* m, uint16_t vreg, VRegKind kind_lo, VRegKind kind_hi, 242 VRegKind kind_lo, 320 bool GetVRegPairFromDebuggerShadowFrame(uint16_t vreg, VRegKind kind_lo, VRegKind kind_hi, 324 VRegKind kind_lo, VRegKind kind_hi, 327 bool GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, VRegKind kind_lo,
|