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

Side by Side Diff: third_party/boringssl/win-x86_64/crypto/sha/sha512-x86_64.asm

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
« no previous file with comments | « third_party/boringssl/win-x86_64/crypto/sha/sha256-x86_64.asm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 OPTION DOTNAME 1 OPTION DOTNAME
2 .text$» SEGMENT ALIGN(64) 'CODE' 2 .text$» SEGMENT ALIGN(256) 'CODE'
3 3
4 EXTERN OPENSSL_ia32cap_P:NEAR 4 EXTERN OPENSSL_ia32cap_P:NEAR
5 PUBLIC sha512_block_data_order 5 PUBLIC sha512_block_data_order
6 6
7 ALIGN 16 7 ALIGN 16
8 sha512_block_data_order PROC PUBLIC 8 sha512_block_data_order PROC PUBLIC
9 mov QWORD PTR[8+rsp],rdi ;WIN64 prologue 9 mov QWORD PTR[8+rsp],rdi ;WIN64 prologue
10 mov QWORD PTR[16+rsp],rsi 10 mov QWORD PTR[16+rsp],rsi
11 mov rax,rsp 11 mov rax,rsp
12 $L$SEH_begin_sha512_block_data_order:: 12 $L$SEH_begin_sha512_block_data_order::
(...skipping 1891 matching lines...) Expand 10 before | Expand all | Expand 10 after
1904 .pdata ENDS 1904 .pdata ENDS
1905 .xdata SEGMENT READONLY ALIGN(8) 1905 .xdata SEGMENT READONLY ALIGN(8)
1906 ALIGN 8 1906 ALIGN 8
1907 $L$SEH_info_sha512_block_data_order:: 1907 $L$SEH_info_sha512_block_data_order::
1908 DB 9,0,0,0 1908 DB 9,0,0,0
1909 DD imagerel se_handler 1909 DD imagerel se_handler
1910 DD imagerel $L$prologue,imagerel $L$epilogue 1910 DD imagerel $L$prologue,imagerel $L$epilogue
1911 1911
1912 .xdata ENDS 1912 .xdata ENDS
1913 END 1913 END
OLDNEW
« no previous file with comments | « third_party/boringssl/win-x86_64/crypto/sha/sha256-x86_64.asm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698