Home | History | Annotate | Download | only in test

Lines Matching refs:TEST_LEA

164 #define TEST_LEA(STR)\
181 void test_lea(void)
191 TEST_LEA("0x4000");
193 TEST_LEA("(%%eax)");
194 TEST_LEA("(%%ebx)");
195 TEST_LEA("(%%ecx)");
196 TEST_LEA("(%%edx)");
197 TEST_LEA("(%%esi)");
198 TEST_LEA("(%%edi)");
200 TEST_LEA("0x40(%%eax)");
201 TEST_LEA("0x40(%%ebx)");
202 TEST_LEA("0x40(%%ecx)");
203 TEST_LEA("0x40(%%edx)");
204 TEST_LEA("0x40(%%esi)");
205 TEST_LEA("0x40(%%edi)");
207 TEST_LEA("0x4000(%%eax)");
208 TEST_LEA("0x4000(%%ebx)");
209 TEST_LEA("0x4000(%%ecx)");
210 TEST_LEA("0x4000(%%edx)");
211 TEST_LEA("0x4000(%%esi)");
212 TEST_LEA("0x4000(%%edi)");
214 TEST_LEA("(%%eax, %%ecx)");
215 TEST_LEA("(%%ebx, %%edx)");
216 TEST_LEA("(%%ecx, %%ecx)");
217 TEST_LEA("(%%edx, %%ecx)");
218 TEST_LEA("(%%esi, %%ecx)");
219 TEST_LEA("(%%edi, %%ecx)");
221 TEST_LEA("0x40(%%eax, %%ecx)");
222 TEST_LEA("0x4000(%%ebx, %%edx)");
224 TEST_LEA("(%%ecx, %%ecx, 2)");
225 TEST_LEA("(%%edx, %%ecx, 4)");
226 TEST_LEA("(%%esi, %%ecx, 8)");
228 TEST_LEA("(,%%eax, 2)");
229 TEST_LEA("(,%%ebx, 4)");
230 TEST_LEA("(,%%ecx, 8)");
232 TEST_LEA("0x40(,%%eax, 2)");
233 TEST_LEA("0x40(,%%ebx, 4)");
234 TEST_LEA("0x40(,%%ecx, 8)");
237 TEST_LEA("-10(%%ecx, %%ecx, 2)");
238 TEST_LEA("-10(%%edx, %%ecx, 4)");
239 TEST_LEA("-10(%%esi, %%ecx, 8)");
241 TEST_LEA("0x4000(%%ecx, %%ecx, 2)");
242 TEST_LEA("0x4000(%%edx, %%ecx, 4)");
243 TEST_LEA("0x4000(%%esi, %%ecx, 8)");
1660 test_lea();