OLD | NEW |
1 #if defined(__x86_64__) | 1 #if defined(__x86_64__) |
2 .text | 2 .text |
3 | 3 |
4 .globl OPENSSL_ia32_cpuid | 4 .globl OPENSSL_ia32_cpuid |
| 5 .hidden OPENSSL_ia32_cpuid |
5 .type OPENSSL_ia32_cpuid,@function | 6 .type OPENSSL_ia32_cpuid,@function |
6 .align 16 | 7 .align 16 |
7 OPENSSL_ia32_cpuid: | 8 OPENSSL_ia32_cpuid: |
8 | 9 |
9 | 10 |
10 movq %rdi,%rdi | 11 movq %rdi,%rdi |
11 movq %rbx,%r8 | 12 movq %rbx,%r8 |
12 | 13 |
13 xorl %eax,%eax | 14 xorl %eax,%eax |
14 movl %eax,8(%rdi) | 15 movl %eax,8(%rdi) |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 andl %eax,%r9d | 138 andl %eax,%r9d |
138 andl $4294967263,8(%rdi) | 139 andl $4294967263,8(%rdi) |
139 .Ldone: | 140 .Ldone: |
140 movl %r9d,4(%rdi) | 141 movl %r9d,4(%rdi) |
141 movl %r10d,0(%rdi) | 142 movl %r10d,0(%rdi) |
142 movq %r8,%rbx | 143 movq %r8,%rbx |
143 .byte 0xf3,0xc3 | 144 .byte 0xf3,0xc3 |
144 .size OPENSSL_ia32_cpuid,.-OPENSSL_ia32_cpuid | 145 .size OPENSSL_ia32_cpuid,.-OPENSSL_ia32_cpuid |
145 | 146 |
146 #endif | 147 #endif |
OLD | NEW |