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

Side by Side Diff: third_party/boringssl/linux-x86_64/crypto/sha/sha256-x86_64.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 4
5 .globl sha256_block_data_order 5 .globl sha256_block_data_order
6 .hidden sha256_block_data_order
6 .type sha256_block_data_order,@function 7 .type sha256_block_data_order,@function
7 .align 16 8 .align 16
8 sha256_block_data_order: 9 sha256_block_data_order:
9 leaq OPENSSL_ia32cap_P(%rip),%r11 10 leaq OPENSSL_ia32cap_P(%rip),%r11
10 movl 0(%r11),%r9d 11 movl 0(%r11),%r9d
11 movl 4(%r11),%r10d 12 movl 4(%r11),%r10d
12 movl 8(%r11),%r11d 13 movl 8(%r11),%r11d
13 testl $512,%r10d 14 testl $512,%r10d
14 jnz .Lssse3_shortcut 15 jnz .Lssse3_shortcut
15 pushq %rbx 16 pushq %rbx
(...skipping 2817 matching lines...) Expand 10 before | Expand all | Expand 10 after
2833 movq 8(%rsi),%r14 2834 movq 8(%rsi),%r14
2834 movq 16(%rsi),%r13 2835 movq 16(%rsi),%r13
2835 movq 24(%rsi),%r12 2836 movq 24(%rsi),%r12
2836 movq 32(%rsi),%rbp 2837 movq 32(%rsi),%rbp
2837 movq 40(%rsi),%rbx 2838 movq 40(%rsi),%rbx
2838 leaq 48(%rsi),%rsp 2839 leaq 48(%rsi),%rsp
2839 .Lepilogue_ssse3: 2840 .Lepilogue_ssse3:
2840 .byte 0xf3,0xc3 2841 .byte 0xf3,0xc3
2841 .size sha256_block_data_order_ssse3,.-sha256_block_data_order_ssse3 2842 .size sha256_block_data_order_ssse3,.-sha256_block_data_order_ssse3
2842 #endif 2843 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698