Home
last modified time | relevance | path

Searched refs:RegisterPair (Results 1 – 11 of 11) sorted by relevance

/art/compiler/utils/x86/
Dmanaged_register_x86.h29 enum RegisterPair { enum
45 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg);
125 constexpr RegisterPair AsRegisterPair() const { in AsRegisterPair()
127 return static_cast<RegisterPair>(id_ - in AsRegisterPair()
177 static constexpr X86ManagedRegister FromRegisterPair(RegisterPair r) { in FromRegisterPair()
Dmanaged_register_x86.cc41 RegisterPair reg; // Used to verify that the enum is in sync.
53 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg) { in operator <<()
Dmanaged_register_x86_test.cc117 TEST(X86ManagedRegister, RegisterPair) { in TEST() argument
/art/compiler/utils/arm/
Dmanaged_register_arm.h29 enum RegisterPair { enum
39 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg);
115 constexpr RegisterPair AsRegisterPair() const { in AsRegisterPair()
121 return static_cast<RegisterPair>(reg_low / 2); in AsRegisterPair()
200 static constexpr ArmManagedRegister FromRegisterPair(RegisterPair r) { in FromRegisterPair()
213 return FromRegisterPair(static_cast<RegisterPair>(r)); in FromCoreRegisterPair()
Dmanaged_register_arm.cc97 std::ostream& operator<<(std::ostream& os, const RegisterPair& r) { in operator <<()
/art/compiler/utils/x86_64/
Dmanaged_register_x86_64.h29 enum RegisterPair { enum
44 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg);
163 static constexpr X86_64ManagedRegister FromRegisterPair(RegisterPair r) { in FromRegisterPair()
Dmanaged_register_x86_64.cc40 RegisterPair reg; // Used to verify that the enum is in sync.
52 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg) { in operator <<()
Dmanaged_register_x86_64_test.cc116 TEST(X86_64ManagedRegister, RegisterPair) { in TEST() argument
/art/compiler/utils/mips/
Dmanaged_register_mips.h27 enum RegisterPair { enum
44 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg);
181 static constexpr MipsManagedRegister FromRegisterPair(RegisterPair r) { in FromRegisterPair()
Dmanaged_register_mips.cc97 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg) { in operator <<()
/art/compiler/optimizing/
Dcode_generator_x86.h38 static constexpr RegisterPair kParameterCorePairRegisters[] = { ECX_EDX, EDX_EBX };
72 RegisterPair GetRegisterPairAt(size_t argument_index) { in GetRegisterPairAt()