Home
last modified time | relevance | path

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

/art/compiler/debug/
Delf_debug_loc_writer.h71 DexRegisterLocation reg_lo; // May be None if the location is unknown. member
138 DexRegisterLocation reg_lo = DexRegisterLocation::None(); in GetVariableLocations() local
144 reg_lo = dex_register_map[vreg]; in GetVariableLocations()
151 variable_locations.back().reg_lo == reg_lo && in GetVariableLocations()
157 variable_locations.push_back({low_pc, high_pc, reg_lo, reg_hi}); in GetVariableLocations()
203 DexRegisterLocation reg_lo = variable_location.reg_lo; in WriteDebugLocEntry() local
206 DexRegisterLocation reg_loc = (piece == 0 ? reg_lo : reg_hi); in WriteDebugLocEntry()
232 reg_hi.GetValue() == reg_lo.GetValue()) { in WriteDebugLocEntry()
/art/runtime/
Dstack.h342 bool GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, VRegKind kind_lo,
Dstack.cc452 bool StackVisitor::GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, in GetRegisterPairIfAccessible() argument
455 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) { in GetRegisterPairIfAccessible()
458 uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float); in GetRegisterPairIfAccessible()