Home
last modified time | relevance | path

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

/art/compiler/debug/
Delf_debug_loc_writer.h79 DexRegisterLocation reg_lo; // May be None if the location is unknown. member
146 DexRegisterLocation reg_lo = DexRegisterLocation::None(); in GetVariableLocations() local
152 reg_lo = dex_register_map[vreg]; in GetVariableLocations()
159 variable_locations.back().reg_lo == reg_lo && in GetVariableLocations()
165 variable_locations.push_back({low_pc, high_pc, reg_lo, reg_hi}); in GetVariableLocations()
211 DexRegisterLocation reg_lo = variable_location.reg_lo; in WriteDebugLocEntry() local
214 DexRegisterLocation reg_loc = (piece == 0 ? reg_lo : reg_hi); in WriteDebugLocEntry()
240 reg_hi.GetValue() == reg_lo.GetValue()) { in WriteDebugLocEntry()
/art/runtime/
Dstack.h327 bool GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, VRegKind kind_lo,
Dstack.cc356 bool StackVisitor::GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, in GetRegisterPairIfAccessible() argument
359 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) { in GetRegisterPairIfAccessible()
362 uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float); in GetRegisterPairIfAccessible()
/art/compiler/utils/mips/
Dassembler_mips.cc2841 void MipsAssembler::LoadConst64(Register reg_hi, Register reg_lo, int64_t value) { in LoadConst64() argument
2844 LoadConst32(reg_lo, low); in LoadConst64()
2848 Move(reg_hi, reg_lo); in LoadConst64()
Dassembler_mips.h769 void LoadConst64(Register reg_hi, Register reg_lo, int64_t value);