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

Side by Side Diff: third_party/boringssl/win-x86_64/crypto/aes/aesni-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
OLDNEW
1 OPTION DOTNAME 1 OPTION DOTNAME
2 .text$» SEGMENT ALIGN(64) 'CODE' 2 .text$» SEGMENT ALIGN(256) 'CODE'
3 EXTERN OPENSSL_ia32cap_P:NEAR 3 EXTERN OPENSSL_ia32cap_P:NEAR
4 PUBLIC aesni_encrypt 4 PUBLIC aesni_encrypt
5 5
6 ALIGN 16 6 ALIGN 16
7 aesni_encrypt PROC PUBLIC 7 aesni_encrypt PROC PUBLIC
8 movups xmm2,XMMWORD PTR[rcx] 8 movups xmm2,XMMWORD PTR[rcx]
9 mov eax,DWORD PTR[240+r8] 9 mov eax,DWORD PTR[240+r8]
10 movups xmm0,XMMWORD PTR[r8] 10 movups xmm0,XMMWORD PTR[r8]
11 movups xmm1,XMMWORD PTR[16+r8] 11 movups xmm1,XMMWORD PTR[16+r8]
12 lea r8,QWORD PTR[32+r8] 12 lea r8,QWORD PTR[32+r8]
(...skipping 3615 matching lines...) Expand 10 before | Expand all | Expand 10 after
3628 DD imagerel $L$xts_dec_body,imagerel $L$xts_dec_epilogue 3628 DD imagerel $L$xts_dec_body,imagerel $L$xts_dec_epilogue
3629 $L$SEH_info_cbc:: 3629 $L$SEH_info_cbc::
3630 DB 9,0,0,0 3630 DB 9,0,0,0
3631 DD imagerel cbc_se_handler 3631 DD imagerel cbc_se_handler
3632 $L$SEH_info_key:: 3632 $L$SEH_info_key::
3633 DB 001h,004h,001h,000h 3633 DB 001h,004h,001h,000h
3634 DB 004h,002h,000h,000h 3634 DB 004h,002h,000h,000h
3635 3635
3636 .xdata ENDS 3636 .xdata ENDS
3637 END 3637 END
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698