HomeSort by relevance Sort by last modified time
    Searched refs:AsRegisterPairHigh (Results 1 - 24 of 24) sorted by null

  /art/compiler/utils/arm/
managed_register_arm.cc 30 Register high = AsRegisterPairHigh();
82 << static_cast<int>(AsRegisterPairHigh());
managed_register_arm.h 156 constexpr Register AsRegisterPairHigh() const {
163 return vixl::aarch32::Register(AsRegisterPairHigh());
managed_register_arm_test.cc 236 EXPECT_EQ(R1, reg.AsRegisterPairHigh());
248 EXPECT_EQ(R2, reg.AsRegisterPairHigh());
260 EXPECT_EQ(R3, reg.AsRegisterPairHigh());
272 EXPECT_EQ(R5, reg.AsRegisterPairHigh());
284 EXPECT_EQ(R7, reg.AsRegisterPairHigh());
    [all...]
jni_macro_assembler_arm_vixl.cc 371 if (src.AsRegisterPairHigh() != dst.AsRegisterPairLow()) {
  /art/compiler/utils/mips/
managed_register_mips.cc 31 Register high = AsRegisterPairHigh();
82 os << "Pair: " << AsRegisterPairLow() << ", " << AsRegisterPairHigh();
managed_register_mips.h 123 constexpr Register AsRegisterPairHigh() const {
assembler_mips.cc     [all...]
  /art/compiler/utils/x86/
managed_register_x86.cc 69 Register high = AsRegisterPairHigh();
108 os << "Pair: " << AsRegisterPairLow() << ", " << AsRegisterPairHigh();
managed_register_x86_test.cc 124 EXPECT_EQ(EDX, reg.AsRegisterPairHigh());
133 EXPECT_EQ(ECX, reg.AsRegisterPairHigh());
142 EXPECT_EQ(EBX, reg.AsRegisterPairHigh());
151 EXPECT_EQ(EDI, reg.AsRegisterPairHigh());
160 EXPECT_EQ(ECX, reg.AsRegisterPairHigh());
169 EXPECT_EQ(EBX, reg.AsRegisterPairHigh());
178 EXPECT_EQ(EDI, reg.AsRegisterPairHigh());
187 EXPECT_EQ(EBX, reg.AsRegisterPairHigh());
196 EXPECT_EQ(EDI, reg.AsRegisterPairHigh());
205 EXPECT_EQ(EDI, reg.AsRegisterPairHigh());
    [all...]
managed_register_x86.h 120 constexpr Register AsRegisterPairHigh() const {
jni_macro_assembler_x86.cc 133 __ movl(Address(ESP, FrameOffset(offs.Int32Value()+4)), src.AsRegisterPairHigh());
196 __ movl(dest.AsRegisterPairHigh(), Address(ESP, FrameOffset(src.Int32Value()+4)));
227 __ fs()->movl(dest.AsRegisterPairHigh(), Address::Absolute(ThreadOffset32(src.Int32Value()+4)));
  /art/compiler/utils/x86_64/
managed_register_x86_64.cc 64 Register high = AsRegisterPairHigh().AsRegister();
103 os << "Pair: " << AsRegisterPairLow() << ", " << AsRegisterPairHigh();
managed_register_x86_64_test.cc 124 EXPECT_EQ(RDX, reg.AsRegisterPairHigh());
133 EXPECT_EQ(RCX, reg.AsRegisterPairHigh());
142 EXPECT_EQ(RBX, reg.AsRegisterPairHigh());
151 EXPECT_EQ(RDI, reg.AsRegisterPairHigh());
160 EXPECT_EQ(RCX, reg.AsRegisterPairHigh());
169 EXPECT_EQ(RBX, reg.AsRegisterPairHigh());
178 EXPECT_EQ(RDI, reg.AsRegisterPairHigh());
187 EXPECT_EQ(RBX, reg.AsRegisterPairHigh());
196 EXPECT_EQ(RDI, reg.AsRegisterPairHigh());
205 EXPECT_EQ(RDI, reg.AsRegisterPairHigh());
    [all...]
managed_register_x86_64.h 113 constexpr CpuRegister AsRegisterPairHigh() const {
jni_macro_assembler_x86_64.cc 170 src.AsRegisterPairHigh());
240 __ movq(dest.AsRegisterPairHigh(), Address(CpuRegister(RSP), FrameOffset(src.Int32Value()+4)));
  /art/compiler/optimizing/
code_generator_x86.cc     [all...]
intrinsics_mips.cc 166 Register out_hi = locations->Out().AsRegisterPairHigh<Register>();
208 Register in_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
319 Register in_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
321 Register out_hi = locations->Out().AsRegisterPairHigh<Register>();
450 Register in_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
500 Register in_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
668 Register in_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
821 Register in_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
823 Register out_hi = locations->Out().AsRegisterPairHigh<Register>();
    [all...]
intrinsics_x86.cc 209 __ movd(output.AsRegisterPairHigh<Register>(), temp);
223 __ movd(temp2, input.AsRegisterPairHigh<Register>());
319 Register input_hi = input.AsRegisterPairHigh<Register>();
322 Register output_hi = output.AsRegisterPairHigh<Register>();
458 Register input_hi = input.AsRegisterPairHigh<Register>();
461 Register output_hi = output.AsRegisterPairHigh<Register>();
684 Register output_hi = output.AsRegisterPairHigh<Register>();
687 Register op2_hi = op2_loc.AsRegisterPairHigh<Register>();
    [all...]
code_generator_mips.cc     [all...]