Skip to content

Commit 04c1992

Browse files
davidbenBoringssl LUCI CQ
authored and
Boringssl LUCI CQ
committedJan 2, 2025
Update diff_asm.go
We've since added a few more files that don't have a counterpart in OpenSSL, or are named differently from their OpenSSL counterparts. Change-Id: I7057d8b258cb9656924054022654359d11a164f8 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/74667 Reviewed-by: Adam Langley <agl@google.com> Auto-Submit: David Benjamin <davidben@google.com> Commit-Queue: Adam Langley <agl@google.com>
1 parent 8229027 commit 04c1992

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎util/diff_asm.go

+6
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,22 @@ func mapName(path string) string {
3939
}
4040
switch pathSlash {
4141
case "crypto/aes/asm/vpaes-armv7.pl",
42+
"crypto/bn/asm/bn-armv8.pl",
4243
"crypto/cipher_extra/asm/aes128gcmsiv-x86_64.pl",
44+
"crypto/cipher_extra/asm/chacha20_poly1305_armv8.pl",
4345
"crypto/cipher_extra/asm/chacha20_poly1305_x86_64.pl",
46+
"crypto/ec/asm/p256_beeu-armv8-asm.pl",
4447
"crypto/ec/asm/p256_beeu-x86_64-asm.pl",
48+
"crypto/modes/asm/aesv8-gcm-armv8.pl",
4549
"crypto/modes/asm/ghash-neon-armv8.pl",
4650
"crypto/modes/asm/ghash-ssse3-x86.pl",
4751
"crypto/modes/asm/ghash-ssse3-x86_64.pl",
4852
"crypto/rand/asm/rdrand-x86_64.pl":
4953
return ""
5054
case "crypto/ec/asm/p256-x86_64-asm.pl":
5155
return filepath.FromSlash("crypto/ec/asm/ecp_nistz256-x86_64.pl")
56+
case "crypto/ec/asm/p256-armv8-asm.pl":
57+
return filepath.FromSlash("crypto/ec/asm/ecp_nistz256-armv8.pl")
5258
}
5359
return path
5460
}

0 commit comments

Comments
 (0)