Home
last modified time | relevance | path

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

/art/compiler/utils/x86/
Dmanaged_register_x86.cc27 P(EAX, EDX) \
31 P(EDX, ECX) \
32 P(EDX, EBX) \
33 P(EDX, EDI) \
37 P(ECX, EDX)
Dmanaged_register_x86_test.cc125 EXPECT_EQ(EDX, reg.AsRegisterPairHigh()); in TEST()
160 EXPECT_EQ(EDX, reg.AsRegisterPairLow()); in TEST()
169 EXPECT_EQ(EDX, reg.AsRegisterPairLow()); in TEST()
178 EXPECT_EQ(EDX, reg.AsRegisterPairLow()); in TEST()
267 reg = X86ManagedRegister::FromCpuRegister(EDX); in TEST()
Dassembler_x86_test.cc76 addresses_.push_back(x86::Address(x86::EDI, x86::EDX, x86::TIMES_8, 18)); in SetUpHelpers()
85 addresses_.push_back(x86::Address(x86::ESP, x86::EDX, x86::TIMES_8, 18)); in SetUpHelpers()
97 new x86::Register(x86::EDX), in SetUpHelpers()
/art/runtime/arch/x86/
Dregisters_x86.h33 EDX = 2, enumerator
Dquick_method_frame_info_x86.h46 (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX);
48 (1 << art::x86::EAX) | (1 << art::x86::ECX) | (1 << art::x86::EDX) | (1 << art::x86::EBX);
Dcontext_x86.cc71 gprs_[EDX] = const_cast<uintptr_t*>(&gZero); in SmashCallerSaves()
Dquick_entrypoints_x86.S1793 PUSH EDX
1823 POP EDX
1839 POP EDX
/art/compiler/optimizing/
Dcode_generator_x86.h37 static constexpr Register kParameterCoreRegisters[] = { ECX, EDX, EBX };
43 static constexpr Register kRuntimeParameterCoreRegisters[] = { EAX, ECX, EDX, EBX };
108 ? Location::RegisterPairLocation(EAX, EDX) in GetReturnLocation()
114 ? Location::RegisterPairLocation(EDX, EBX) in GetSetValueLocation()
115 : Location::RegisterPairLocation(ECX, EDX)) in GetSetValueLocation()
117 ? Location::RegisterLocation(EDX) in GetSetValueLocation()
Dintrinsics_x86.cc418 locations->AddTemp(Location::RegisterLocation(EDX)); in CreateAbsIntLocation()
426 DCHECK_EQ(temp, EDX); in GenAbsInteger()
432 __ xorl(EAX, EDX); in GenAbsInteger()
435 __ subl(EAX, EDX); in GenAbsInteger()
1907 locations->SetInAt(1, Location::ByteRegisterOrConstant(EDX, value)); in CreateLongIntToVoidLocations()
2297 locations->SetInAt(3, Location::RegisterPairLocation(EAX, EDX)); in CreateIntIntIntIntIntToInt()
2435 DCHECK_EQ(locations->InAt(3).AsRegisterPairHigh<Register>(), EDX); in GenCAS()
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc117 res = X86ManagedRegister::FromCpuRegister(EDX); in CurrentParamRegister()
139 case 0: res = X86ManagedRegister::FromCpuRegister(EDX); break; in CurrentParamHighLongRegister()