HomeSort by relevance Sort by last modified time
    Searched full:eax (Results 176 - 200 of 1810) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/flac/libFLAC/ia32/
cpu_asm.nasm 51 pop eax
52 mov edx, eax
53 xor eax, 0x00200000
54 push eax
57 pop eax
58 cmp eax, edx
60 mov eax, 1
63 xor eax, eax
79 test eax, ea
    [all...]
  /external/clang/test/CodeGen/
ms-inline-asm.c 31 // CHECK: call void asm sideeffect inteldialect "mov ebx, eax", "~{ebx},~{dirflag},~{fpsr},~{flags}"()
34 __asm mov ebx, eax
40 // CHECK: call void asm sideeffect inteldialect "mov ebx, eax\0A\09mov ecx, ebx", "~{ebx},~{ecx},~{dirflag},~{fpsr},~{flags}"()
42 __asm mov ebx, eax __asm mov ecx, ebx
86 mov eax, i
87 mov j, eax
94 // CHECK: call void asm sideeffect inteldialect "mov eax, dword ptr $1\0A\09mov dword ptr $0, eax", "=*m,*m,~{eax},~{dirflag},~{fpsr},~{flags}"(i32* %{{.*}}, i32* %{{.*}})
100 __asm mov eax,
    [all...]
  /bionic/libc/arch-x86/string/
sse2-strlen-atom.S 110 xor %eax, %eax
163 lea 16(%edx), %eax
164 mov %eax, %ecx
165 and $-16, %eax
174 pcmpeqb (%eax), %xmm0
177 lea 16(%eax), %eax
181 pcmpeqb (%eax), %xmm1
184 lea 16(%eax), %ea
    [all...]
strncmp.S 17 movl 8(%esp),%eax
24 L1: incl %eax
28 movb (%eax),%bl
34 incl %eax
38 movb (%eax),%bl
44 incl %eax
48 movb (%eax),%bl
54 incl %eax
58 movb (%eax),%bl
64 incl %eax
    [all...]
ffs.S 10 bsfl 4(%esp),%eax
12 incl %eax /* bits numbered from 1, not 0 */
16 L1: xorl %eax,%eax /* clear result */
  /dalvik/vm/mterp/x86/
OP_SPUT_WIDE.S 12 movzwl 2(rPC),%eax # eax<- field ref BBBB
17 lea (%ecx,%eax,4),%ecx
21 movl (%ecx,%eax,4),%eax # eax<- resolved StaticField ptr
22 testl %eax,%eax # resolved entry null?
24 .L${opcode}_finish: # field ptr in eax
27 movl %ecx,offStaticField_value(%eax)
    [all...]
OP_DIV_LONG.S 4 movzbl 3(rPC),%eax # eax<- CC
7 GET_VREG_WORD rIBASE %eax 0
8 GET_VREG_WORD %eax %eax 1
10 testl %eax,%eax
12 cmpl $$-1,%eax
18 movl %eax,OUT_ARG3(%esp)
25 SET_VREG_WORD %eax rINST
    [all...]
OP_SHL_LONG.S 14 movzbl 2(rPC),%eax # eax<- BB
17 GET_VREG_WORD rIBASE %eax 1 # ecx<- v[BB+1]
19 GET_VREG_WORD %eax %eax 0 # eax<- v[BB+0]
20 shldl %eax,rIBASE
21 sall %cl,%eax
24 movl %eax,rIBASE
25 xorl %eax,%ea
    [all...]
OP_CONST_16.S 4 FETCH_INST_OPCODE 2 %eax
7 GOTO_NEXT_R %eax
OP_FILLED_NEW_ARRAY.S 11 movl rSELF,%eax
12 movl offThread_methodClassDex(%eax),%eax # eax<- pDvmDex
14 movl offDvmDex_pResClasses(%eax),%eax # eax<- pDvmDex->pResClasses
16 movl (%eax,%ecx,4),%eax # eax<- resolved clas
    [all...]
binopLit8.S 1 %default {"result":"%eax"}
4 * that specifies an instruction that performs "result = eax op ecx".
13 movzbl 2(rPC),%eax # eax<- BB
15 GET_VREG_R %eax %eax # eax<- rBB
16 $instr # ex: addl %ecx,%eax
unopWide.S 4 * Operand in %ecx:%eax
12 GET_VREG_WORD %eax %ecx 0 # eax<- v[B+0]
14 $instr1 # ex: negl %eax
17 SET_VREG_WORD %eax rINST 0 # v[A+0] <- eax
18 GET_INST_OPCODE 1 %eax
21 GOTO_NEXT_R %eax
OP_ADD_INT.S 2 %include "x86/binop.S" {"instr":"addl (rFP,%ecx,4),%eax"}
OP_ADD_INT_2ADDR.S 2 %include "x86/binop2addr.S" {"instr":"addl %eax,(rFP,%ecx,4)"}
OP_AND_INT.S 2 %include "x86/binop.S" {"instr":"andl (rFP,%ecx,4),%eax"}
OP_AND_INT_2ADDR.S 2 %include "x86/binop2addr.S" {"instr":"andl %eax,(rFP,%ecx,4)"}
OP_ARRAY_LENGTH.S 5 mov rINST,%eax # eax<- BA
8 andb $$0xf,%al # eax<- A
14 SET_VREG rINST %eax
OP_DIV_INT.S 2 %include "x86/bindiv.S" {"result":"%eax","special":"$0x80000000"}
OP_DIV_INT_2ADDR.S 2 %include "x86/bindiv2addr.S" {"result":"%eax","special":"$0x80000000"}
OP_DIV_INT_LIT16.S 2 %include "x86/bindivLit16.S" {"result":"%eax","special":"$0x80000000"}
OP_DIV_INT_LIT8.S 2 %include "x86/bindivLit8.S" {"result":"%eax","special":"$0x80000000"}
  /external/chromium_org/third_party/openssl/openssl/crypto/bf/asm/
bf-586.S 18 xorl %eax,%eax
33 movl 72(%ebp,%eax,4),%eax
35 addl %eax,%ebx
36 movl 2120(%ebp,%ecx,4),%eax
37 xorl %eax,%ebx
40 xorl %eax,%eax
53 movl 72(%ebp,%eax,4),%ea
    [all...]
  /external/openssl/crypto/bf/asm/
bf-586.S 18 xorl %eax,%eax
33 movl 72(%ebp,%eax,4),%eax
35 addl %eax,%ebx
36 movl 2120(%ebp,%ecx,4),%eax
37 xorl %eax,%ebx
40 xorl %eax,%eax
53 movl 72(%ebp,%eax,4),%ea
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
segmov.asm 4 mov eax, ds
6 mov ds, eax
  /external/llvm/test/MC/AsmParser/
macro-irp.s 3 .irp reg,%eax,%ebx
7 // CHECK: pushl %eax

Completed in 90 milliseconds

1 2 3 4 5 6 78 91011>>