Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: third_party/boringssl/linux-x86_64/crypto/cpu-x86_64-asm.S

Issue 428753004: BoringSSL: roll DEPS and enable dynamic visibility. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix quotes in GN file. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698