Home | History | Annotate | Download | only in src

Lines Matching defs:eax

66     int __tmp1;     // These dummy variables are used to tell GCC that the eax, ecx,
72 "L1_%=: movl %%eax, (%%ebx)\n\t" // __item._M_next = _M._M_data._M_top
75 " jne L1_%=\n\t" // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
93 "L1_%=: testl %%eax, %%eax\n\t" // _M_top == NULL?
95 " movl (%%eax), %%ebx\n\t" // new top = _M._M_data._M_top->_M_next
98 " jne L1_%=\n\t" // We failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
118 "L1_%=: testl %%eax, %%eax\n\t" // _M_top == NULL?
123 " jne L1_%=\n\t" // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
215 mov eax, [esi] // _M._M_data._M_top
217 L1: mov [ebx], eax // __item._M_next = _M._M_data._M_top
220 jne L1 // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
238 mov eax, [esi] // _M._M_data._M_top
240 L1: test eax, eax // _M_top == NULL?
242 mov ebx, [eax] // new top = _M._M_data._M_top->_M_next
245 jne L1 // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)
265 mov eax, [esi] // _M._M_data._M_top
267 L1: test eax, eax // _M_top == NULL?
272 jne L1 // Failed, retry! (edx:eax now contain most recent _M_sequence:_M_top)