Searched refs:RegisterPair (Results 1 – 11 of 11) sorted by relevance
/art/compiler/utils/x86/ |
D | managed_register_x86.h | 29 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()
|
D | managed_register_x86.cc | 41 RegisterPair reg; // Used to verify that the enum is in sync. 53 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg) { in operator <<()
|
D | managed_register_x86_test.cc | 117 TEST(X86ManagedRegister, RegisterPair) { in TEST() argument
|
/art/compiler/utils/arm/ |
D | managed_register_arm.h | 29 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()
|
D | managed_register_arm.cc | 97 std::ostream& operator<<(std::ostream& os, const RegisterPair& r) { in operator <<()
|
/art/compiler/utils/x86_64/ |
D | managed_register_x86_64.h | 29 enum RegisterPair { enum 44 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg); 163 static constexpr X86_64ManagedRegister FromRegisterPair(RegisterPair r) { in FromRegisterPair()
|
D | managed_register_x86_64.cc | 40 RegisterPair reg; // Used to verify that the enum is in sync. 52 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg) { in operator <<()
|
D | managed_register_x86_64_test.cc | 116 TEST(X86_64ManagedRegister, RegisterPair) { in TEST() argument
|
/art/compiler/utils/mips/ |
D | managed_register_mips.h | 27 enum RegisterPair { enum 44 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg); 181 static constexpr MipsManagedRegister FromRegisterPair(RegisterPair r) { in FromRegisterPair()
|
D | managed_register_mips.cc | 97 std::ostream& operator<<(std::ostream& os, const RegisterPair& reg) { in operator <<()
|
/art/compiler/optimizing/ |
D | code_generator_x86.h | 38 static constexpr RegisterPair kParameterCorePairRegisters[] = { ECX_EDX, EDX_EBX }; 72 RegisterPair GetRegisterPairAt(size_t argument_index) { in GetRegisterPairAt()
|