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 157 constexpr Register AsRegisterPairHigh() const {
164 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 397 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 125 EXPECT_EQ(EDX, reg.AsRegisterPairHigh());
134 EXPECT_EQ(ECX, reg.AsRegisterPairHigh());
143 EXPECT_EQ(EBX, reg.AsRegisterPairHigh());
152 EXPECT_EQ(EDI, reg.AsRegisterPairHigh());
161 EXPECT_EQ(ECX, reg.AsRegisterPairHigh());
170 EXPECT_EQ(EBX, reg.AsRegisterPairHigh());
179 EXPECT_EQ(EDI, reg.AsRegisterPairHigh());
188 EXPECT_EQ(EBX, reg.AsRegisterPairHigh());
197 EXPECT_EQ(EDI, reg.AsRegisterPairHigh());
206 EXPECT_EQ(EDI, reg.AsRegisterPairHigh());
    [all...]
managed_register_x86.h 120 constexpr Register AsRegisterPairHigh() const {
jni_macro_assembler_x86.cc 134 __ movl(Address(ESP, FrameOffset(offs.Int32Value()+4)), src.AsRegisterPairHigh());
197 __ movl(dest.AsRegisterPairHigh(), Address(ESP, FrameOffset(src.Int32Value()+4)));
228 __ 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 171 src.AsRegisterPairHigh());
241 __ movq(dest.AsRegisterPairHigh(), Address(CpuRegister(RSP), FrameOffset(src.Int32Value()+4)));
  /art/compiler/optimizing/
code_generator_x86.cc     [all...]
intrinsics_mips.cc 167 Register out_hi = locations->Out().AsRegisterPairHigh<Register>();
208 Register in_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
318 Register in_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
320 Register out_hi = locations->Out().AsRegisterPairHigh<Register>();
449 Register in_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
499 Register in_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
666 Register in_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
818 Register in_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
820 Register out_hi = locations->Out().AsRegisterPairHigh<Register>();
    [all...]
intrinsics_x86.cc 208 __ movd(output.AsRegisterPairHigh<Register>(), temp);
222 __ movd(temp2, input.AsRegisterPairHigh<Register>());
315 Register input_hi = input.AsRegisterPairHigh<Register>();
318 Register output_hi = output.AsRegisterPairHigh<Register>();
451 Register input_hi = input.AsRegisterPairHigh<Register>();
454 Register output_hi = output.AsRegisterPairHigh<Register>();
676 Register output_hi = output.AsRegisterPairHigh<Register>();
679 Register op2_hi = op2_loc.AsRegisterPairHigh<Register>();
    [all...]
common_arm.h 51 return vixl::aarch32::Register(location.AsRegisterPairHigh<vixl::aarch32::Register>());
code_generator_mips.cc     [all...]
locations.h 199 T AsRegisterPairHigh() const {
code_generator_vector_x86.cc 98 __ movd(tmp, locations->InAt(0).AsRegisterPairHigh<Register>());
167 __ movd(locations->Out().AsRegisterPairHigh<Register>(), tmp);
    [all...]
code_generator_vector_mips.cc 75 locations->InAt(0).AsRegisterPairHigh<Register>(),
132 __ Copy_sW(locations->Out().AsRegisterPairHigh<Register>(), src, 1);
    [all...]
code_generator.cc 743 DCHECK(is_out || !blocked_core_registers_[location.AsRegisterPairHigh<int>()]);
744 blocked_core_registers_[location.AsRegisterPairHigh<int>()] = true;
    [all...]

Completed in 1009 milliseconds