Lines Matching defs:eax
2557 CpuRegister eax = locations->InAt(0).AsRegister<CpuRegister>();
2562 DCHECK_EQ(RAX, eax.AsRegister());
2579 __ movl(numerator, eax);
2583 __ testl(eax, eax);
2591 __ movl(eax, Immediate(magic));
2604 __ movl(eax, edx);
2606 __ addl(edx, eax);
2609 __ movl(eax, numerator);
2611 __ subl(eax, edx);
2612 __ movl(edx, eax);
2614 __ movl(eax, edx);
2622 CpuRegister rax = eax;
2711 // edx:eax <- sign-extended of eax
2713 // eax = quotient, edx = remainder
2736 // Intel uses edx:eax as the dividend.
2819 // We need to save the numerator while we tweak eax and edx. As we are using imul in a way
2820 // which enforces results to be in RAX and RDX, things are simpler if we use EAX also as