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

Unified Diff: third_party/boringssl/linux-x86_64/crypto/rc4/rc4-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, 5 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 side-by-side diff with in-line comments
Download patch
Index: third_party/boringssl/linux-x86_64/crypto/rc4/rc4-x86_64.S
diff --git a/third_party/boringssl/linux-x86_64/crypto/rc4/rc4-x86_64.S b/third_party/boringssl/linux-x86_64/crypto/rc4/rc4-x86_64.S
index 14562f2015b20b636f1d03dfd311830c920b03c3..a67a2f575b1937240eb1d37265e6dfcaf2571e2d 100644
--- a/third_party/boringssl/linux-x86_64/crypto/rc4/rc4-x86_64.S
+++ b/third_party/boringssl/linux-x86_64/crypto/rc4/rc4-x86_64.S
@@ -2,10 +2,12 @@
.text
-.globl RC4
-.type RC4,@function
+.globl asm_RC4
+.hidden asm_RC4
+.type asm_RC4,@function
.align 16
-RC4: orq %rsi,%rsi
+asm_RC4:
+ orq %rsi,%rsi
jne .Lentry
.byte 0xf3,0xc3
.Lentry:
@@ -518,11 +520,12 @@ RC4: orq %rsi,%rsi
addq $24,%rsp
.Lepilogue:
.byte 0xf3,0xc3
-.size RC4,.-RC4
-.globl RC4_set_key
-.type RC4_set_key,@function
+.size asm_RC4,.-asm_RC4
+.globl asm_RC4_set_key
+.hidden asm_RC4_set_key
+.type asm_RC4_set_key,@function
.align 16
-RC4_set_key:
+asm_RC4_set_key:
leaq 8(%rdi),%rdi
leaq (%rdx,%rsi,1),%rdx
negq %rsi
@@ -590,9 +593,10 @@ RC4_set_key:
movl %eax,-8(%rdi)
movl %eax,-4(%rdi)
.byte 0xf3,0xc3
-.size RC4_set_key,.-RC4_set_key
+.size asm_RC4_set_key,.-asm_RC4_set_key
.globl RC4_options
+.hidden RC4_options
.type RC4_options,@function
.align 16
RC4_options:

Powered by Google App Engine
This is Rietveld 408576698