Lines Matching defs:ebx
69 __ mov(ebx, Operand(esp, ecx, times_2, 0)); // [esp+ecx*4]
72 __ add(edx, ebx);
74 __ add(edx, Operand(ebx, 0));
75 __ add(edx, Operand(ebx, 16));
76 __ add(edx, Operand(ebx, 1999));
77 __ add(edx, Operand(ebx, -4));
78 __ add(edx, Operand(ebx, -1999));
97 __ add(ebx, Immediate(12));
108 __ cmp(ebx, foo2);
109 __ cmpb(ebx, Operand(ebp, ecx, times_2, 0));
110 __ cmpb(Operand(ebp, ecx, times_2, 0), ebx);
125 __ bts(Operand(ebx, ecx, times_4, 0), ecx);
136 __ push(Operand(ebx, ecx, times_4, 0));
137 __ push(Operand(ebx, ecx, times_4, 0));
138 __ push(Operand(ebx, ecx, times_4, 10000));
141 __ pop(Operand(ebx, ecx, times_4, 0));
148 __ mov_b(Operand(ebx, ecx, times_4, 10000), 6);
160 __ mov(Operand(ebx, ecx, times_4, 10000), Immediate(12345));
161 __ mov(Operand(ebx, ecx, times_4, 10000), edx);
165 __ dec_b(Operand(ebx, ecx, times_4, 10000));
179 __ test(Operand(ebx, ecx, times_4, 10000), Immediate(123456));
181 __ imul(edx, Operand(ebx, ecx, times_4, 10000));
185 __ imul(edx, Operand(ebx, ecx, times_4, 1), 9000);
188 __ inc(Operand(ebx, ecx, times_4, 10000));
189 __ push(Operand(ebx, ecx, times_4, 10000));
190 __ pop(Operand(ebx, ecx, times_4, 10000));
191 __ call(Operand(ebx, ecx, times_4, 10000));
192 __ jmp(Operand(ebx, ecx, times_4, 10000));
194 __ lea(edx, Operand(ebx, ecx, times_4, 10000));
196 __ or_(edx, Operand(ebx, ecx, times_4, 10000));
207 __ sar(Operand(ebx, ecx, times_4, 10000), 1);
208 __ sar(Operand(ebx, ecx, times_4, 10000), 6);
209 __ sar_cl(Operand(ebx, ecx, times_4, 10000));
210 __ sbb(edx, Operand(ebx, ecx, times_4, 10000));
211 __ shld(edx, Operand(ebx, ecx, times_4, 10000));
215 __ shl(Operand(ebx, ecx, times_4, 10000), 1);
216 __ shl(Operand(ebx, ecx, times_4, 10000), 6);
217 __ shl_cl(Operand(ebx, ecx, times_4, 10000));
218 __ shrd(edx, Operand(ebx, ecx, times_4, 10000));
222 __ shr(Operand(ebx, ecx, times_4, 10000), 1);
223 __ shr(Operand(ebx, ecx, times_4, 10000), 6);
224 __ shr_cl(Operand(ebx, ecx, times_4, 10000));
231 __ add(ebx, Immediate(12));
234 __ and_(ebx, 12345);
236 __ cmp(ebx, 12345);
237 __ cmp(ebx, Immediate(12));
241 __ or_(ebx, 12345);
243 __ sub(ebx, Immediate(12));
246 __ xor_(ebx, 12345);
256 __ sub(edx, Operand(ebx, ecx, times_4, 10000));
257 __ sub(edx, ebx);
260 __ test(edx, Operand(ebx, ecx, times_8, 10000));
262 __ test_b(edx, Operand(ecx, ebx, times_2, 1000));
267 __ xor_(edx, Operand(ebx, ecx, times_8, 10000));
268 __ bts(Operand(ebx, ecx, times_8, 10000), edx);
283 __ call(Operand(ebx, ecx, times_4, 10000));
292 __ jmp(Operand(ebx, ecx, times_4, 10000));
354 __ fld_s(Operand(ebx, ecx, times_4, 10000));
355 __ fstp_s(Operand(ebx, ecx, times_4, 10000));
357 __ fld_d(Operand(ebx, ecx, times_4, 10000));
358 __ fstp_d(Operand(ebx, ecx, times_4, 10000));
361 __ fild_s(Operand(ebx, ecx, times_4, 10000));
362 __ fistp_s(Operand(ebx, ecx, times_4, 10000));
363 __ fild_d(Operand(ebx, ecx, times_4, 10000));
364 __ fistp_d(Operand(ebx, ecx, times_4, 10000));
382 __ fldcw(Operand(ebx, ecx, times_4, 10000));
383 __ fnstcw(Operand(ebx, ecx, times_4, 10000));
384 __ fadd_d(Operand(ebx, ecx, times_4, 10000));
385 __ fnsave(Operand(ebx, ecx, times_4, 10000));
386 __ frstor(Operand(ebx, ecx, times_4, 10000));
391 __ xchg(eax, ebx);
392 __ xchg(ebx, ebx);
393 __ xchg(ebx, Operand(esp, 12));