Home | History | Annotate | Download | only in X86

Lines Matching refs:esi

20 	mov eax, [esi + eax]
21 // CHECK: movl (%esi,%eax), %eax
23 mov eax, [esi][eax]
24 // CHECK: movl (%esi,%eax), %eax
27 mov eax, [esi + 4*eax]
28 // CHECK: movl (%esi,%eax,4), %eax
30 mov eax, [esi][4*eax]
31 // CHECK: movl (%esi,%eax,4), %eax
34 mov eax, [esi + eax + 4]
35 // CHECK: movl 4(%esi,%eax), %eax
37 mov eax, [esi][eax + 4]
38 // CHECK: movl 4(%esi,%eax), %eax
40 mov eax, [esi + eax][4]
41 // CHECK: movl 4(%esi,%eax), %eax
43 mov eax, [esi][eax][4]
44 // CHECK: movl 4(%esi,%eax), %eax
47 mov eax, [esi + 2*eax + 4]
48 // CHECK: movl 4(%esi,%eax,2), %eax
50 mov eax, [esi][2*eax + 4]
51 // CHECK: movl 4(%esi,%eax,2), %eax
53 mov eax, [esi + 2*eax][4]
54 // CHECK: movl 4(%esi,%eax,2), %eax
56 mov eax, [esi][2*eax][4]
57 // CHECK: movl 4(%esi,%eax,2), %eax
60 mov eax, 4[esi + 2*eax + 4]
61 // CHECK: movl 8(%esi,%eax,2), %eax
63 mov eax, 4[esi][2*eax + 4]
64 // CHECK: movl 8(%esi,%eax,2), %eax
66 mov eax, 4[esi + 2*eax][4]
67 // CHECK: movl 8(%esi,%eax,2), %eax
69 mov eax, 4[esi][2*eax][4]
70 // CHECK: movl 8(%esi,%eax,2), %eax
72 mov eax, 4[esi][2*eax][4][8]
73 // CHECK: movl 16(%esi,%eax,2), %eax