Home
last modified time | relevance | path

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

/art/compiler/utils/arm/
Dmanaged_register_arm.h207 static constexpr ArmManagedRegister FromCoreRegisterPair(Register r_low) { in FromCoreRegisterPair() argument
208 if (r_low != R1) { // not the dalvik special case in FromCoreRegisterPair()
209 CHECK_NE(r_low, kNoRegister); in FromCoreRegisterPair()
210 CHECK_EQ(0, (r_low % 2)); in FromCoreRegisterPair()
211 const int r = r_low / 2; in FromCoreRegisterPair()
220 static constexpr ArmManagedRegister FromSRegisterPair(SRegister r_low) { in FromSRegisterPair() argument
221 CHECK_NE(r_low, kNoSRegister); in FromSRegisterPair()
222 CHECK_EQ(0, (r_low % 2)); in FromSRegisterPair()
223 const int r = r_low / 2; in FromSRegisterPair()