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

Unified Diff: third_party/boringssl/mac-x86_64/crypto/modes/ghash-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/mac-x86_64/crypto/modes/ghash-x86_64.S
diff --git a/third_party/boringssl/mac-x86_64/crypto/modes/ghash-x86_64.S b/third_party/boringssl/mac-x86_64/crypto/modes/ghash-x86_64.S
index f5030d15594e537b7ccffaf36579d4ff1a2b5f17..d992bdbe4b59a1bb8f40ac1f602aac022cdde0f6 100644
--- a/third_party/boringssl/mac-x86_64/crypto/modes/ghash-x86_64.S
+++ b/third_party/boringssl/mac-x86_64/crypto/modes/ghash-x86_64.S
@@ -3,6 +3,7 @@
.globl _gcm_gmult_4bit
+.private_extern _gcm_gmult_4bit
.p2align 4
_gcm_gmult_4bit:
@@ -91,6 +92,7 @@ L$gmult_epilogue:
.byte 0xf3,0xc3
.globl _gcm_ghash_4bit
+.private_extern _gcm_ghash_4bit
.p2align 4
_gcm_ghash_4bit:
@@ -657,6 +659,7 @@ L$ghash_epilogue:
.byte 0xf3,0xc3
.globl _gcm_init_clmul
+.private_extern _gcm_init_clmul
.p2align 4
_gcm_init_clmul:
@@ -813,6 +816,7 @@ L$_init_clmul:
.byte 0xf3,0xc3
.globl _gcm_gmult_clmul
+.private_extern _gcm_gmult_clmul
.p2align 4
_gcm_gmult_clmul:
@@ -864,6 +868,7 @@ L$_gmult_clmul:
.byte 0xf3,0xc3
.globl _gcm_ghash_clmul
+.private_extern _gcm_ghash_clmul
.p2align 5
_gcm_ghash_clmul:
@@ -1247,18 +1252,21 @@ L$done:
.byte 0xf3,0xc3
.globl _gcm_init_avx
+.private_extern _gcm_init_avx
.p2align 5
_gcm_init_avx:
jmp L$_init_clmul
.globl _gcm_gmult_avx
+.private_extern _gcm_gmult_avx
.p2align 5
_gcm_gmult_avx:
jmp L$_gmult_clmul
.globl _gcm_ghash_avx
+.private_extern _gcm_ghash_avx
.p2align 5
_gcm_ghash_avx:

Powered by Google App Engine
This is Rietveld 408576698