Home
last modified time | relevance | path

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

/art/compiler/utils/x86_64/
Dmanaged_register_x86_64_test.cc31 X86_64ManagedRegister reg = X86_64ManagedRegister::FromCpuRegister(RAX); in TEST()
37 EXPECT_EQ(RAX, reg.AsCpuRegister()); in TEST()
123 EXPECT_EQ(RAX, reg.AsRegisterPairLow()); in TEST()
132 EXPECT_EQ(RAX, reg.AsRegisterPairLow()); in TEST()
141 EXPECT_EQ(RAX, reg.AsRegisterPairLow()); in TEST()
150 EXPECT_EQ(RAX, reg.AsRegisterPairLow()); in TEST()
209 X86_64ManagedRegister reg_eax = X86_64ManagedRegister::FromCpuRegister(RAX); in TEST()
210 EXPECT_TRUE(reg_eax.Equals(X86_64ManagedRegister::FromCpuRegister(RAX))); in TEST()
221 EXPECT_TRUE(!reg_xmm0.Equals(X86_64ManagedRegister::FromCpuRegister(RAX))); in TEST()
232 EXPECT_TRUE(!reg_st0.Equals(X86_64ManagedRegister::FromCpuRegister(RAX))); in TEST()
[all …]
Dmanaged_register_x86_64.cc27 P(RAX, RDX) \
28 P(RAX, RCX) \
29 P(RAX, RBX) \
30 P(RAX, RDI) \
Dassembler_x86_64_test.cc145 registers_.push_back(new x86_64::CpuRegister(x86_64::RAX)); in SetUpHelpers()
162 secondary_register_names_.emplace(x86_64::CpuRegister(x86_64::RAX), "eax"); in SetUpHelpers()
179 tertiary_register_names_.emplace(x86_64::CpuRegister(x86_64::RAX), "ax"); in SetUpHelpers()
196 quaternary_register_names_.emplace(x86_64::CpuRegister(x86_64::RAX), "al"); in SetUpHelpers()
737 GetAssembler()->movl(x86_64::CpuRegister(x86_64::RAX), x86_64::Address( in TEST_F()
739 GetAssembler()->movl(x86_64::CpuRegister(x86_64::RAX), x86_64::Address( in TEST_F()
743 GetAssembler()->movl(x86_64::CpuRegister(x86_64::RAX), x86_64::Address( in TEST_F()
745 GetAssembler()->movl(x86_64::CpuRegister(x86_64::RAX), x86_64::Address( in TEST_F()
758 GetAssembler()->movw(x86_64::Address(x86_64::CpuRegister(x86_64::RAX), 0), in TEST_F()
760 GetAssembler()->movw(x86_64::Address(x86_64::CpuRegister(x86_64::RAX), 0), in TEST_F()
[all …]
Dassembler_x86_64.cc296 EmitOperand(Register::RAX, dst); in movb()
357 EmitOperand(Register::RAX, dst); in movw()
1179 const bool src_rax = src.AsRegister() == RAX; in xchgl()
1180 const bool dst_rax = dst.AsRegister() == RAX; in xchgl()
1199 const bool src_rax = src.AsRegister() == RAX; in xchgq()
1200 const bool dst_rax = dst.AsRegister() == RAX; in xchgq()
1346 if (reg.AsRegister() == RAX) { in testl()
1353 } else if (reg.AsRegister() == RAX) { in testl()
2415 } else if (operand.IsRegister(CpuRegister(RAX))) { in EmitComplex()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc30 return X86_64ManagedRegister::FromCpuRegister(RAX); in InterproceduralScratchRegister()
34 return X86_64ManagedRegister::FromCpuRegister(RAX); in InterproceduralScratchRegister()
45 return X86_64ManagedRegister::FromCpuRegister(RAX); in ReturnRegisterForShorty()
49 return X86_64ManagedRegister::FromCpuRegister(RAX); in ReturnRegisterForShorty()
62 return X86_64ManagedRegister::FromCpuRegister(RAX); in IntReturnRegister()
/art/runtime/arch/x86_64/
Dregisters_x86_64.cc29 if (rhs >= RAX && rhs <= R15) { in operator <<()
Dregisters_x86_64.h30 RAX = 0, enumerator
Dcontext_x86_64.cc65 gprs_[RAX] = const_cast<uintptr_t*>(&gZero); in SmashCallerSaves()
/art/compiler/optimizing/
Dcode_generator_x86_64.cc256 x86_64_codegen->Move(out, Location::RegisterLocation(RAX)); in EmitNativeCode()
302 x86_64_codegen->Move(locations->Out(), Location::RegisterLocation(RAX)); in EmitNativeCode()
362 x86_64_codegen->Move(locations->Out(), Location::RegisterLocation(RAX)); in EmitNativeCode()
482 x86_64_codegen->Move(out_, Location::RegisterLocation(RAX)); in EmitNativeCode()
630 x86_64_codegen->Move(out_, Location::RegisterLocation(RAX)); in EmitNativeCode()
697 x86_64_codegen->Move(out_, Location::RegisterLocation(RAX)); in EmitNativeCode()
1052 __ testq(CpuRegister(RAX), Address( in GenerateFrameEntry()
2019 locations->SetInAt(0, Location::RegisterLocation(RAX)); in VisitReturn()
2042 DCHECK_EQ(ret->GetLocations()->InAt(0).AsRegister<CpuRegister>().AsRegister(), RAX); in VisitReturn()
2067 return Location::RegisterLocation(RAX); in GetReturnLocation()
[all …]
Dintrinsics_x86_64.cc607 locations->SetOut(Location::RegisterLocation(RAX)); in CreateSSE41FPToIntLocations()
1363 locations->SetOut(Location::RegisterLocation(RAX)); in VisitStringCompareTo()
1484 locations->SetInAt(1, Location::RegisterLocation(RAX)); in CreateStringIndexOfLocations()
1515 DCHECK_EQ(search_value.AsRegister(), RAX); in GenerateStringIndexOf()
1633 locations->SetOut(Location::RegisterLocation(RAX)); in VisitStringNewStringFromBytes()
1661 locations->SetOut(Location::RegisterLocation(RAX)); in VisitStringNewStringFromChars()
1685 locations->SetOut(Location::RegisterLocation(RAX)); in VisitStringNewStringFromString()
2152 locations->SetInAt(3, Location::RegisterLocation(RAX)); in CreateIntIntIntIntIntToInt()
2194 DCHECK_EQ(expected.AsRegister(), RAX); in GenCAS()
Dcode_generator_x86_64.h94 return Location::RegisterLocation(RAX); in GetReturnLocation()