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

Side by Side Diff: third_party/boringssl/linux-arm/crypto/modes/ghash-armv4.S

Issue 2219933002: Land BoringSSL roll on master (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
OLDNEW
1 #if defined(__arm__) 1 #if defined(__arm__)
2 #if defined(__arm__) 2 #include <openssl/arm_arch.h>
3 #include "arm_arch.h"
4 3
5 .syntax unified 4 .syntax unified
6 5
7 .text 6 .text
8 .code 32 7 .code 32
9 8
10 #ifdef __APPLE__ 9 #ifdef __clang__
11 #define ldrplb ldrbpl 10 #define ldrplb ldrbpl
12 #define ldrneb ldrbne 11 #define ldrneb ldrbne
13 #endif 12 #endif
14 13
15 .type rem_4bit,%object 14 .type rem_4bit,%object
16 .align 5 15 .align 5
17 rem_4bit: 16 rem_4bit:
18 .short 0x0000,0x1C20,0x3840,0x2460 17 .short 0x0000,0x1C20,0x3840,0x2460
19 .short 0x7080,0x6CA0,0x48C0,0x54E0 18 .short 0x7080,0x6CA0,0x48C0,0x54E0
20 .short 0xE100,0xFD20,0xD940,0xC560 19 .short 0xE100,0xFD20,0xD940,0xC560
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 sub r0,#16 528 sub r0,#16
530 vst1.64 d1,[r0]! @ write out Xi 529 vst1.64 d1,[r0]! @ write out Xi
531 vst1.64 d0,[r0] 530 vst1.64 d0,[r0]
532 531
533 bx lr @ bx lr 532 bx lr @ bx lr
534 .size gcm_ghash_neon,.-gcm_ghash_neon 533 .size gcm_ghash_neon,.-gcm_ghash_neon
535 #endif 534 #endif
536 .byte 71,72,65,83,72,32,102,111,114,32,65,82,77,118,52,47,78,69,79,78,44,32,67 ,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,11 0,115,115,108,46,111,114,103,62,0 535 .byte 71,72,65,83,72,32,102,111,114,32,65,82,77,118,52,47,78,69,79,78,44,32,67 ,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,11 0,115,115,108,46,111,114,103,62,0
537 .align 2 536 .align 2
538 .align 2 537 .align 2
539
540 #endif 538 #endif
541 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698