Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sha1: Add extra .S for AArch64 on macOS (Fixing building on M1 Macs) #38

Merged
merged 2 commits into from
Jul 16, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions sha1/build.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
fn main() {
let target_arch = std::env::var("CARGO_CFG_TARGET_ARCH").unwrap_or_default();
let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap_or_default();

let asm_path = if target_arch == "x86" {
"src/x86.S"
} else if target_arch == "x86_64" {
"src/x64.S"
} else if target_arch == "aarch64" && target_os == "macos" {
"src/aarch64_macos.S"
} else if target_arch == "aarch64" {
"src/aarch64.S"
} else {
Expand Down
237 changes: 237 additions & 0 deletions sha1/src/aarch64_macos.S
Original file line number Diff line number Diff line change
@@ -0,0 +1,237 @@
/*
* SHA-1 hash in AArch64 assembly
*
* Copyright (c) 2020 Emmanuel Gil Peyrot <[email protected]>. (MIT License)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
* - The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
* - The Software is provided "as is", without warranty of any kind, express or
* implied, including but not limited to the warranties of merchantability,
* fitness for a particular purpose and noninfringement. In no event shall the
* authors or copyright holders be liable for any claim, damages or other
* liability, whether in an action of contract, tort or otherwise, arising from,
* out of or in connection with the Software or the use or other dealings in the
* Software.
*/


/* void sha1_compress(uint32_t state[5], const uint8_t block[64]) */
.global _sha1_compress
_sha1_compress:
/*
* Storage usage:
* Bytes Location Description
* 4 x0 state argument
* 4 x1 block argument
* 16 q0 W0
* 16 q1 W1
* 16 q2 W2
* 16 q3 W3
* 16 q4 k
* 16 q5 Original ABCD
* 16 q6 ABCD (with s3 being A)
* 4 s16 E
* 4 s17 e0
* 4 s18 e1
* 16 q19 wk
*/

// Load state in registers
ldr q5, [x0]
ldr s16, [x0, 16]
mov v6.16b, v5.16b

// Load block in registers
ldr q0, [x1]
ldr q1, [x1, 16]
ldr q2, [x1, 32]
ldr q3, [x1, 48]

// TODO: only do that on little endian
rev32 v0.16b, v0.16b
rev32 v1.16b, v1.16b
rev32 v2.16b, v2.16b
rev32 v3.16b, v3.16b

// k for the next five rounds
adrp x1, .K0@PAGE
ldr q4, [x1, #:lo12:.K0@PAGEOFF]

// 0
sha1h s18, s6
add v19.4s, v0.4s, v4.4s
sha1c q6, s16, v19.4s
sha1su0 v0.4s, v1.4s, v2.4s

// 1
sha1h s17, s6
add v19.4s, v1.4s, v4.4s
sha1c q6, s18, v19.4s
sha1su1 v0.4s, v3.4s
sha1su0 v1.4s, v2.4s, v3.4s

// 2
sha1h s18, s6
add v19.4s, v2.4s, v4.4s
sha1c q6, s17, v19.4s
sha1su1 v1.4s, v0.4s
sha1su0 v2.4s, v3.4s, v0.4s

// 3
sha1h s17, s6
add v19.4s, v3.4s, v4.4s
sha1c q6, s18, v19.4s
sha1su1 v2.4s, v1.4s
sha1su0 v3.4s, v0.4s, v1.4s

// 4
sha1h s18, s6
add v19.4s, v0.4s, v4.4s
sha1c q6, s17, v19.4s
sha1su1 v3.4s, v2.4s
sha1su0 v0.4s, v1.4s, v2.4s

// k for the next five rounds
adrp x1, .K1@PAGE
ldr q4, [x1, #:lo12:.K1@PAGEOFF]

// 5
sha1h s17, s6
add v19.4s, v1.4s, v4.4s
sha1p q6, s18, v19.4s
sha1su1 v0.4s, v3.4s
sha1su0 v1.4s, v2.4s, v3.4s

// 6
sha1h s18, s6
add v19.4s, v2.4s, v4.4s
sha1p q6, s17, v19.4s
sha1su1 v1.4s, v0.4s
sha1su0 v2.4s, v3.4s, v0.4s

// 7
sha1h s17, s6
add v19.4s, v3.4s, v4.4s
sha1p q6, s18, v19.4s
sha1su1 v2.4s, v1.4s
sha1su0 v3.4s, v0.4s, v1.4s

// 8
sha1h s18, s6
add v19.4s, v0.4s, v4.4s
sha1p q6, s17, v19.4s
sha1su1 v3.4s, v2.4s
sha1su0 v0.4s, v1.4s, v2.4s

// 9
sha1h s17, s6
add v19.4s, v1.4s, v4.4s
sha1p q6, s18, v19.4s
sha1su1 v0.4s, v3.4s
sha1su0 v1.4s, v2.4s, v3.4s

// k for the next five rounds
adrp x1, .K2@PAGE
ldr q4, [x1, #:lo12:.K2@PAGEOFF]

// 10
sha1h s18, s6
add v19.4s, v2.4s, v4.4s
sha1m q6, s17, v19.4s
sha1su1 v1.4s, v0.4s
sha1su0 v2.4s, v3.4s, v0.4s

// 11
sha1h s17, s6
add v19.4s, v3.4s, v4.4s
sha1m q6, s18, v19.4s
sha1su1 v2.4s, v1.4s
sha1su0 v3.4s, v0.4s, v1.4s

// 12
sha1h s18, s6
add v19.4s, v0.4s, v4.4s
sha1m q6, s17, v19.4s
sha1su1 v3.4s, v2.4s
sha1su0 v0.4s, v1.4s, v2.4s

// 13
sha1h s17, s6
add v19.4s, v1.4s, v4.4s
sha1m q6, s18, v19.4s
sha1su1 v0.4s, v3.4s
sha1su0 v1.4s, v2.4s, v3.4s

// 14
sha1h s18, s6
add v19.4s, v2.4s, v4.4s
sha1m q6, s17, v19.4s
sha1su1 v1.4s, v0.4s
sha1su0 v2.4s, v3.4s, v0.4s

// k for the next five rounds
adrp x1, .K3@PAGE
ldr q4, [x1, #:lo12:.K3@PAGEOFF]

// 15
sha1h s17, s6
add v19.4s, v3.4s, v4.4s
sha1p q6, s18, v19.4s
sha1su1 v2.4s, v1.4s
sha1su0 v3.4s, v0.4s, v1.4s

// 16
sha1h s18, s6
add v19.4s, v0.4s, v4.4s
sha1p q6, s17, v19.4s
sha1su1 v3.4s, v2.4s

// 17
sha1h s17, s6
add v19.4s, v1.4s, v4.4s
sha1p q6, s18, v19.4s

// 18
sha1h s18, s6
add v19.4s, v2.4s, v4.4s
sha1p q6, s17, v19.4s

// 19
sha1h s17, s6
add v19.4s, v3.4s, v4.4s
sha1p q6, s18, v19.4s

// Update state
add v6.4s, v6.4s, v5.4s
str q6, [x0]
add v16.2s, v16.2s, v17.2s
str s16, [x0, 16]

ret
.align 4
.K0:
.word 0x5A827999
.word 0x5A827999
.word 0x5A827999
.word 0x5A827999
.K1:
.word 0x6ED9EBA1
.word 0x6ED9EBA1
.word 0x6ED9EBA1
.word 0x6ED9EBA1
.K2:
.word 0x8F1BBCDC
.word 0x8F1BBCDC
.word 0x8F1BBCDC
.word 0x8F1BBCDC
.K3:
.word 0xCA62C1D6
.word 0xCA62C1D6
.word 0xCA62C1D6
.word 0xCA62C1D6