Home | History | Annotate | Download | only in Sema

Lines Matching defs:eax

11     mov eax, eax
16 mov eax, 1+=2 // expected-error {{unknown token in expression}}
20 mov eax, 1+++ // expected-error {{unknown token in expression}}
24 mov eax, LENGTH bar // expected-error {{unable to lookup expression}}
28 mov eax, SIZE bar // expected-error {{unable to lookup expression}}
32 mov eax, TYPE bar // expected-error {{unable to lookup expression}} expected-error {{use of undeclared label 'bar'}}
56 mov eax, arr;
57 mov eax, arr[0];
58 mov eax, arr[1 + 2];
59 mov eax, arr[1 + (2 * 5) - 3 + 1<<1];
63 __asm { mov eax, arr[ebp + 1 + (2 * 5) - 3 + 1<<1] }
65 __asm { mov eax, arr[esi * 4] }
67 __asm { mov eax, arr[i] }
69 __asm { mov eax, global[i] }
73 //__asm mov eax, [arr + i];
83 __asm { mov eax, [eax] UndeclaredId } // expected-error {{unknown token in expression}} expected-error {{use of undeclared label 'UndeclaredId'}}
89 __asm { mov eax, [eax] A }
95 __asm { mov eax, [0] A.a }
96 __asm { mov eax, [0].A.a }
97 __asm { mov eax, [0].a } // expected-error {{Unable to lookup field reference!}}
98 __asm { mov eax, fs:[0] A.a }
99 __asm { mov eax, fs:[0].A.a }
100 __asm { mov eax, fs:[0].a } // expected-error {{Unable to lookup field reference!}}
101 __asm { mov eax, fs:[0]. A.a } // expected-error {{Unexpected token type!}}
109 asm { movl eax, x } // expected-error {{parameter references not allowed in naked functions}} expected-error {{use of undeclared label 'x'}}
115 asm { mov eax, y } // No error.
122 mov eax, 0
129 __asm mov eax, 0
137 mov eax, 0
144 __asm mov eax, 0
149 __asm mov eax, foo // expected-error {{use of undeclared label 'foo'}} expected-warning {{unused label 'foo'}}