Home | History | Annotate | Download | only in cctest

Lines Matching defs:ecx

75   __ mov(ebx,  Operand(esp, ecx, times_2, 0));  // [esp+ecx*4]
87 __ add(edi, Operand(ebp, ecx, times_4, 0));
88 __ add(edi, Operand(ebp, ecx, times_4, 12));
89 __ add(Operand(ebp, ecx, times_4, 12), Immediate(12));
94 __ adc(ecx, 12);
95 __ adc(ecx, 1000);
101 __ cmp(Operand(ebp, ecx, times_4, 0), Immediate(1000));
104 __ cmpb(ebx, Operand(ebp, ecx, times_2, 0));
105 __ cmpb(Operand(ebp, ecx, times_2, 0), ebx);
119 __ movsx_b(edx, ecx);
120 __ movsx_w(edx, ecx);
121 __ movzx_b(edx, ecx);
122 __ movzx_w(edx, ecx);
125 __ imul(edx, ecx);
126 __ shld(edx, ecx);
127 __ shrd(edx, ecx);
128 __ bts(edx, ecx);
129 __ bts(Operand(ebx, ecx, times_4, 0), ecx);
137 __ push(ecx);
140 __ push(Operand(ebx, ecx, times_4, 0));
141 __ push(Operand(ebx, ecx, times_4, 0));
142 __ push(Operand(ebx, ecx, times_4, 10000));
145 __ pop(Operand(ebx, ecx, times_4, 0));
149 __ add(edx, ecx);
150 __ mov_b(edx, ecx);
151 __ mov_b(ecx, 6);
152 __ mov_b(Operand(ebx, ecx, times_4, 10000), 6);
164 __ mov(Operand(ebx, ecx, times_4, 10000), Immediate(12345));
165 __ mov(Operand(ebx, ecx, times_4, 10000), edx);
169 __ dec_b(Operand(ebx, ecx, times_4, 10000));
178 __ test(Operand(ebx, ecx, times_4, 10000), Immediate(123456));
180 __ imul(edx, Operand(ebx, ecx, times_4, 10000));
181 __ imul(edx, ecx, 12);
182 __ imul(edx, ecx, 1000);
185 __ inc(Operand(ebx, ecx, times_4, 10000));
186 __ push(Operand(ebx, ecx, times_4, 10000));
187 __ pop(Operand(ebx, ecx, times_4, 10000));
188 __ call(Operand(ebx, ecx, times_4, 10000));
189 __ jmp(Operand(ebx, ecx, times_4, 10000));
191 __ lea(edx, Operand(ebx, ecx, times_4, 10000));
193 __ or_(edx, Operand(ebx, ecx, times_4, 10000));
204 __ sbb(edx, Operand(ebx, ecx, times_4, 10000));
205 __ shld(edx, Operand(ebx, ecx, times_4, 10000));
209 __ shrd(edx, Operand(ebx, ecx, times_4, 10000));
220 __ add(Operand(edx, ecx, times_4, 10000), Immediate(12));
226 __ cmp(Operand(edx, ecx, times_4, 10000), Immediate(12));
232 __ sub(Operand(edx, ecx, times_4, 10000), Immediate(12));
236 __ imul(edx, ecx, 12);
237 __ imul(edx, ecx, 1000);
244 __ sub(edx, Operand(ebx, ecx, times_4, 10000));
248 __ test(edx, Operand(ebx, ecx, times_8, 10000));
250 __ test_b(edx, Operand(ecx, ebx, times_2, 1000));
255 __ xor_(edx, Operand(ebx, ecx, times_8, 10000));
256 __ bts(Operand(ebx, ecx, times_8, 10000), edx);
271 __ call(Operand(ebx, ecx, times_4, 10000));
281 __ jmp(Operand(ebx, ecx, times_4, 10000));
345 __ fld_s(Operand(ebx, ecx, times_4, 10000));
346 __ fstp_s(Operand(ebx, ecx, times_4, 10000));
348 __ fld_d(Operand(ebx, ecx, times_4, 10000));
349 __ fstp_d(Operand(ebx, ecx, times_4, 10000));
352 __ fild_s(Operand(ebx, ecx, times_4, 10000));
353 __ fistp_s(Operand(ebx, ecx, times_4, 10000));
354 __ fild_d(Operand(ebx, ecx, times_4, 10000));
355 __ fistp_d(Operand(ebx, ecx, times_4, 10000));
373 __ cvttss2si(edx, Operand(ebx, ecx, times_4, 10000));
374 __ cvtsi2sd(xmm1, Operand(ebx, ecx, times_4, 10000));
379 __ movdbl(xmm1, Operand(ebx, ecx, times_4, 10000));
380 __ movdbl(Operand(ebx, ecx, times_4, 10000), xmm1);
384 __ movdqa(xmm0, Operand(ebx, ecx, times_4, 10000));
385 __ movdqa(Operand(ebx, ecx, times_4, 10000), xmm0);
386 __ movdqu(xmm0, Operand(ebx, ecx, times_4, 10000));
387 __ movdqu(Operand(ebx, ecx, times_4, 10000), xmm0);
403 __ cmov(sign, eax, Operand(ecx, 0));
404 __ cmov(not_sign, eax, Operand(ecx, 1));
405 __ cmov(parity_even, eax, Operand(ecx, 2));
406 __ cmov(parity_odd, eax, Operand(ecx, 3));