Home | History | Annotate | Download | only in cctest

Lines Matching defs:ebx

75   __ mov(ebx,  Operand(esp, ecx, times_2, 0));  // [esp+ecx*4]
78 __ add(edx, ebx);
80 __ add(edx, Operand(ebx, 0));
81 __ add(edx, Operand(ebx, 16));
82 __ add(edx, Operand(ebx, 1999));
92 __ add(ebx, Immediate(12));
103 __ cmp(ebx, foo2);
104 __ cmpb(ebx, Operand(ebp, ecx, times_2, 0));
105 __ cmpb(Operand(ebp, ecx, times_2, 0), ebx);
129 __ bts(Operand(ebx, ecx, times_4, 0), 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));
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));
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));
219 __ add(ebx, Immediate(12));
222 __ and_(ebx, 12345);
224 __ cmp(ebx, 12345);
225 __ cmp(ebx, Immediate(12));
229 __ or_(ebx, 12345);
231 __ sub(ebx, Immediate(12));
234 __ xor_(ebx, 12345);
244 __ sub(edx, Operand(ebx, ecx, times_4, 10000));
245 __ sub(edx, ebx);
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);
399 __ cmov(equal, eax, Operand(ebx, 0));
400 __ cmov(not_equal, eax, Operand(ebx, 1));
401 __ cmov(below_equal, eax, Operand(ebx, 2));
402 __ cmov(above, eax, Operand(ebx, 3));