Searched refs:reg_hi (Results 1 - 8 of 8) sorted by path

/art/compiler/dex/quick/arm/
H A Dcodegen_arm.h168 RegLocation GenDivRem(RegLocation rl_dest, RegStorage reg_lo, RegStorage reg_hi, bool is_div);
/art/compiler/dex/quick/arm64/
H A Dcodegen_arm64.h167 RegLocation GenDivRem(RegLocation rl_dest, RegStorage reg_lo, RegStorage reg_hi, bool is_div)
/art/compiler/dex/quick/mips/
H A Dcodegen_mips.h169 RegLocation GenDivRem(RegLocation rl_dest, RegStorage reg_lo, RegStorage reg_hi, bool is_div);
/art/compiler/dex/quick/
H A Dmir_to_lir.h1306 virtual RegLocation GenDivRem(RegLocation rl_dest, RegStorage reg_lo, RegStorage reg_hi,
/art/compiler/dex/quick/x86/
H A Dcodegen_x86.h258 // TODO: collapse reg_lo, reg_hi
259 RegLocation GenDivRem(RegLocation rl_dest, RegStorage reg_lo, RegStorage reg_hi, bool is_div)
H A Dint_x86.cc769 RegLocation X86Mir2Lir::GenDivRem(RegLocation rl_dest, RegStorage reg_lo, RegStorage reg_hi, argument
771 UNUSED(rl_dest, reg_lo, reg_hi, is_div);
/art/runtime/
H A Dstack.cc332 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi); local
333 return GetRegisterPairIfAccessible(reg_lo, reg_hi, kind_lo, val);
359 bool StackVisitor::GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, argument
362 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
366 uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float);
489 uint32_t reg_hi = vmap_table.ComputeRegister(spill_mask, vmap_offset_hi, kind_hi); local
490 return SetRegisterPairIfAccessible(reg_lo, reg_hi, new_value, is_float);
503 bool StackVisitor::SetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, argument
505 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
513 DCHECK_EQ(reg_lo, reg_hi);
[all...]
H A Dstack.h652 bool GetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, VRegKind kind_lo,
665 bool SetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, uint64_t new_value,

Completed in 106 milliseconds