mirror of
https://github.com/odin-lang/Odin.git
synced 2026-08-15 18:19:15 +00:00
156 lines
7.1 KiB
Odin
156 lines
7.1 KiB
Odin
#+build arm64,arm32
|
|
package simd_arm
|
|
|
|
// SHA1 hash update, choose.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha1cq_u32)
|
|
@(require_results, enable_target_feature = "sha2")
|
|
vsha1cq_u32 :: #force_inline proc "c" (hash_abcd: uint32x4_t, hash_e: uint32_t, wk: uint32x4_t) -> uint32x4_t {
|
|
return _vsha1cq_u32(hash_abcd, hash_e, wk)
|
|
}
|
|
|
|
// SHA1 hash update, parity.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha1pq_u32)
|
|
@(require_results, enable_target_feature = "sha2")
|
|
vsha1pq_u32 :: #force_inline proc "c" (hash_abcd: uint32x4_t, hash_e: uint32_t, wk: uint32x4_t) -> uint32x4_t {
|
|
return _vsha1pq_u32(hash_abcd, hash_e, wk)
|
|
}
|
|
|
|
// SHA1 hash update, majority.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha1mq_u32)
|
|
@(require_results, enable_target_feature = "sha2")
|
|
vsha1mq_u32 :: #force_inline proc "c" (hash_abcd: uint32x4_t, hash_e: uint32_t, wk: uint32x4_t) -> uint32x4_t {
|
|
return _vsha1mq_u32(hash_abcd, hash_e, wk)
|
|
}
|
|
|
|
// SHA1 fixed rotate.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha1h_u32)
|
|
@(require_results, enable_target_feature = "sha2")
|
|
vsha1h_u32 :: #force_inline proc "c" (hash_e: uint32_t) -> uint32_t {
|
|
return _vsha1h_u32(hash_e)
|
|
}
|
|
|
|
// SHA1 schedule update, first part.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha1su0q_u32)
|
|
@(require_results, enable_target_feature = "sha2")
|
|
vsha1su0q_u32 :: #force_inline proc "c" (w0_3, w4_7, w8_11: uint32x4_t) -> uint32x4_t {
|
|
return _vsha1su0q_u32(w0_3, w4_7, w8_11)
|
|
}
|
|
|
|
// SHA1 schedule update, second part.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha1su1q_u32)
|
|
@(require_results, enable_target_feature = "sha2")
|
|
vsha1su1q_u32 :: #force_inline proc "c" (tw0_3, w12_15: uint32x4_t) -> uint32x4_t {
|
|
return _vsha1su1q_u32(tw0_3, w12_15)
|
|
}
|
|
|
|
// SHA256 hash update, first part.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha256hq_u32)
|
|
@(require_results, enable_target_feature = "sha2")
|
|
vsha256hq_u32 :: #force_inline proc "c" (hash_abcd, hash_efgh, wk: uint32x4_t) -> uint32x4_t {
|
|
return _vsha256hq_u32(hash_abcd, hash_efgh, wk)
|
|
}
|
|
|
|
// SHA256 hash update, second part.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha256h2q_u32)
|
|
@(require_results, enable_target_feature = "sha2")
|
|
vsha256h2q_u32 :: #force_inline proc "c" (hash_efgh, hash_abcd, wk: uint32x4_t) -> uint32x4_t {
|
|
return _vsha256h2q_u32(hash_efgh, hash_abcd, wk)
|
|
}
|
|
|
|
// SHA256 schedule update, first part.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha256su0q_u32)
|
|
@(require_results, enable_target_feature = "sha2")
|
|
vsha256su0q_u32 :: #force_inline proc "c" (w0_3, w4_7: uint32x4_t) -> uint32x4_t {
|
|
return _vsha256su0q_u32(w0_3, w4_7)
|
|
}
|
|
|
|
// SHA256 schedule update, second part.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha256su1q_u32)
|
|
@(require_results, enable_target_feature = "sha2")
|
|
vsha256su1q_u32 :: #force_inline proc "c" (tw0_3, w8_11, w12_15: uint32x4_t) -> uint32x4_t {
|
|
return _vsha256su1q_u32(tw0_3, w8_11, w12_15)
|
|
}
|
|
|
|
when ODIN_ARCH == .arm64 {
|
|
// SHA512 hash update, first part.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha512hq_u64)
|
|
@(require_results, enable_target_feature = "neon,sha3")
|
|
vsha512hq_u64 :: #force_inline proc "c" (hash_ed, hash_gf, kwh_kwh2: uint64x2_t) -> uint64x2_t {
|
|
return _vsha512hq_u64(hash_ed, hash_gf, kwh_kwh2)
|
|
}
|
|
|
|
// SHA512 hash update, second part.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha512h2q_u64)
|
|
@(require_results, enable_target_feature = "neon,sha3")
|
|
vsha512h2q_u64 :: #force_inline proc "c" (sum_ab, hash_c_, hash_ab: uint64x2_t) -> uint64x2_t {
|
|
return _vsha512h2q_u64(sum_ab, hash_c_, hash_ab)
|
|
}
|
|
|
|
// SHA512 schedule update, first part.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha512su0q_u64)
|
|
@(require_results, enable_target_feature = "neon,sha3")
|
|
vsha512su0q_u64 :: #force_inline proc "c" (w0_1, w2_: uint64x2_t) -> uint64x2_t {
|
|
return _vsha512su0q_u64(w0_1, w2_)
|
|
}
|
|
|
|
// SHA512 schedule update, second part.
|
|
//
|
|
// [Arm's documentation](https://developer.arm.com/architectures/instruction-sets/intrinsics/vsha512su1q_u64)
|
|
@(require_results, enable_target_feature = "neon,sha3")
|
|
vsha512su1q_u64 :: #force_inline proc "c" (s01_s02, w14_15, w9_10: uint64x2_t) -> uint64x2_t {
|
|
return _vsha512su1q_u64(s01_s02, w14_15, w9_10)
|
|
}
|
|
}
|
|
|
|
@(private, default_calling_convention = "none")
|
|
foreign _ {
|
|
@(link_name = "llvm.aarch64.crypto.sha1c" when ODIN_ARCH == .arm64 else "llvm.arm.neon.sha1c")
|
|
_vsha1cq_u32 :: proc(hash_abcd: uint32x4_t, hash_e: uint32_t, wk: uint32x4_t) -> uint32x4_t ---
|
|
@(link_name = "llvm.aarch64.crypto.sha1p" when ODIN_ARCH == .arm64 else "llvm.arm.neon.sha1p")
|
|
_vsha1pq_u32 :: proc(hash_abcd: uint32x4_t, hash_e: uint32_t, wk: uint32x4_t) -> uint32x4_t ---
|
|
@(link_name = "llvm.aarch64.crypto.sha1m" when ODIN_ARCH == .arm64 else "llvm.arm.neon.sha1m")
|
|
_vsha1mq_u32 :: proc(hash_abcd: uint32x4_t, hash_e: uint32_t, wk: uint32x4_t) -> uint32x4_t ---
|
|
@(link_name = "llvm.aarch64.crypto.sha1h" when ODIN_ARCH == .arm64 else "llvm.arm.neon.sha1h")
|
|
_vsha1h_u32 :: proc(hash_e: uint32_t) -> uint32_t ---
|
|
@(link_name = "llvm.aarch64.crypto.sha1su0" when ODIN_ARCH == .arm64 else "llvm.arm.neon.sha1su0")
|
|
_vsha1su0q_u32 :: proc(w0_3, w4_7, w8_11: uint32x4_t) -> uint32x4_t ---
|
|
@(link_name = "llvm.aarch64.crypto.sha1su1" when ODIN_ARCH == .arm64 else "llvm.arm.neon.sha1su1")
|
|
_vsha1su1q_u32 :: proc(tw0_3, w12_15: uint32x4_t) -> uint32x4_t ---
|
|
|
|
@(link_name = "llvm.aarch64.crypto.sha256h" when ODIN_ARCH == .arm64 else "llvm.arm.neon.sha256h")
|
|
_vsha256hq_u32 :: proc(hash_abcd, hash_efgh, wk: uint32x4_t) -> uint32x4_t ---
|
|
@(link_name = "llvm.aarch64.crypto.sha256h2" when ODIN_ARCH == .arm64 else "llvm.arm.neon.sha256h2")
|
|
_vsha256h2q_u32 :: proc(hash_efgh, hash_abcd, wk: uint32x4_t) -> uint32x4_t ---
|
|
@(link_name = "llvm.aarch64.crypto.sha256su0" when ODIN_ARCH == .arm64 else "llvm.arm.neon.sha256su0")
|
|
_vsha256su0q_u32 :: proc(w0_3, w4_7: uint32x4_t) -> uint32x4_t ---
|
|
@(link_name = "llvm.aarch64.crypto.sha256su1" when ODIN_ARCH == .arm64 else "llvm.arm.neon.sha256su1")
|
|
_vsha256su1q_u32 :: proc(tw0_3, w8_11, w12_15: uint32x4_t) -> uint32x4_t ---
|
|
}
|
|
|
|
when ODIN_ARCH == .arm64 {
|
|
@(private, default_calling_convention = "none")
|
|
foreign _ {
|
|
@(link_name = "llvm.aarch64.crypto.sha512h")
|
|
_vsha512hq_u64 :: proc(hash_ed, hash_gf, kwh_kwh2: uint64x2_t) -> uint64x2_t ---
|
|
@(link_name = "llvm.aarch64.crypto.sha512h2")
|
|
_vsha512h2q_u64 :: proc(sum_ab, hash_c_, hash_ab: uint64x2_t) -> uint64x2_t ---
|
|
@(link_name = "llvm.aarch64.crypto.sha512su0")
|
|
_vsha512su0q_u64 :: proc(w0_1, w2_: uint64x2_t) -> uint64x2_t ---
|
|
@(link_name = "llvm.aarch64.crypto.sha512su1")
|
|
_vsha512su1q_u64 :: proc(s01_s02, w14_15, w9_10: uint64x2_t) -> uint64x2_t ---
|
|
}
|
|
}
|