Searched refs:high (Results 1 - 7 of 7) sorted by relevance

/art/compiler/utils/arm/
H A Dmanaged_register_arm.cc30 Register high = AsRegisterPairHigh(); local
32 ArmManagedRegister::FromCoreRegister(high).Overlaps(other);
38 SRegister high = AsOverlappingDRegisterHigh(); local
40 return (low == other_sreg) || (high == other_sreg);
/art/compiler/utils/x86/
H A Dmanaged_register_x86.cc43 Register high; member in struct:art::x86::RegisterPairDescriptor
48 #define REGISTER_PAIR_ENUMERATION(low, high) { low##_##high, low, high },
65 Register high = AsRegisterPairHigh(); local
67 X86ManagedRegister::FromCpuRegister(high).Overlaps(other);
90 return kRegisterPairs[r].high;
/art/compiler/utils/x86_64/
H A Dmanaged_register_x86_64.cc42 Register high; member in struct:art::x86_64::RegisterPairDescriptor
47 #define REGISTER_PAIR_ENUMERATION(low, high) { low##_##high, low, high },
64 Register high = AsRegisterPairHigh().AsRegister(); local
66 X86_64ManagedRegister::FromCpuRegister(high).Overlaps(other);
89 return kRegisterPairs[r].high;
/art/compiler/utils/mips/
H A Dmanaged_register_mips.cc31 Register high = AsRegisterPairHigh(); local
33 MipsManagedRegister::FromCoreRegister(high).Overlaps(other);
39 FRegister high = AsOverlappingDRegisterHigh(); local
41 return (low == other_freg) || (high == other_freg);
/art/compiler/utils/arm64/
H A Dmanaged_register_arm64.cc87 int high = RegNo(); local
89 high += kNumberOfCoreRegIds + kNumberOfWRegIds;
91 return high;
/art/compiler/dex/
H A Dreg_storage.h53 * Physical register number of the high register (valid only for register pair).
66 * s2 and s3 map to the low and high halves of double-precision d1. Similarly, X86's xmm3
99 static const uint16_t kHighRegNumMask = 0x001f; // 0..31 for high reg
244 // Create a stand-alone RegStorage from the high reg of a pair.
271 static RegStorage MakeRegPair(RegStorage low, RegStorage high) { argument
274 DCHECK(!high.IsPair());
275 DCHECK(high.Is32Bit());
276 return RegStorage(k64BitPair, low.GetReg(), high.GetReg());
/art/runtime/jdwp/
H A Djdwp_request.cc178 uint64_t high = Read4BE(); local
180 return (high << 32) | low;

Completed in 186 milliseconds