Home
last modified time | relevance | path

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

/art/compiler/utils/x86_64/
Dmanaged_register_x86_64.cc28 P(RAX, RCX) \
31 P(RDX, RCX) \
34 P(RCX, RBX) \
35 P(RCX, RDI) \
Dmanaged_register_x86_64_test.cc47 reg = X86_64ManagedRegister::FromCpuRegister(RCX); in TEST()
53 EXPECT_EQ(RCX, reg.AsCpuRegister()); in TEST()
133 EXPECT_EQ(RCX, reg.AsRegisterPairHigh()); in TEST()
160 EXPECT_EQ(RCX, reg.AsRegisterPairHigh()); in TEST()
186 EXPECT_EQ(RCX, reg.AsRegisterPairLow()); in TEST()
195 EXPECT_EQ(RCX, reg.AsRegisterPairLow()); in TEST()
Dassembler_x86_64_test.cc145 registers_.push_back(new x86_64::CpuRegister(x86_64::RCX)); in SetUpHelpers()
162 secondary_register_names_.emplace(x86_64::CpuRegister(x86_64::RCX), "ecx"); in SetUpHelpers()
179 tertiary_register_names_.emplace(x86_64::CpuRegister(x86_64::RCX), "cx"); in SetUpHelpers()
196 quaternary_register_names_.emplace(x86_64::CpuRegister(x86_64::RCX), "cl"); in SetUpHelpers()
366 x86_64::CpuRegister shifter(x86_64::RCX); in shll_fn()
389 x86_64::CpuRegister shifter(x86_64::RCX); in shlq_fn()
412 x86_64::CpuRegister shifter(x86_64::RCX); in shrl_fn()
435 x86_64::CpuRegister shifter(x86_64::RCX); in shrq_fn()
458 x86_64::CpuRegister shifter(x86_64::RCX); in sarl_fn()
481 x86_64::CpuRegister shifter(x86_64::RCX); in sarq_fn()
Dassembler_x86_64.cc2204 CHECK_EQ(shifter.AsRegister(), RCX); in EmitGenericShift()
/art/runtime/arch/x86_64/
Dregisters_x86_64.h31 RCX = 1, enumerator
Dquick_method_frame_info_x86_64.h32 (1 << art::x86_64::RSI) | (1 << art::x86_64::RDX) | (1 << art::x86_64::RCX) |
Dcontext_x86_64.cc68 gprs_[RCX] = nullptr; in SmashCallerSaves()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc87 case 2: res = X86_64ManagedRegister::FromCpuRegister(RCX); break; in CurrentParamRegister()
179 case 3: res = X86_64ManagedRegister::FromCpuRegister(RCX); break; in CurrentParamRegister()
/art/compiler/optimizing/
Dcode_generator_x86_64.h33 static constexpr Register kParameterCoreRegisters[] = { RSI, RDX, RCX, R8, R9 };
40 static constexpr Register kRuntimeParameterCoreRegisters[] = { RDI, RSI, RDX, RCX };
Dintrinsics_x86_64.cc889 locations->AddTemp(Location::RegisterLocation(RCX)); in CreateStringIndexOfLocations()
913 DCHECK_EQ(counter.AsRegister(), RCX); in GenerateStringIndexOf()
Dcode_generator_x86_64.cc2924 locations->SetInAt(1, Location::ByteRegisterOrConstant(RCX, op->InputAt(1))); in HandleShift()