Does SHA512SUM1 use floating-point or vector registers?
No. These scalar crypto extension instructions use integer X registers.
SHA-512 Σ1 function (uppercase, RV64): ROTR(rs1,14) ^ ROTR(rs1,18) ^ ROTR(rs1,41)
sha512sum1 implements SHA-512 compression Σ1 (uppercase) (RV64 only): Σ1(x) = ROTR(x, 14) ^ ROTR(x, 18) ^ ROTR(x, 41). Reads 64-bit rs1, computes Σ1, writes to rd. For SHA-512 compression E-register update.
SHA512SUM1 is a Zknh scalar cryptography instruction for SHA-512 RV64 transform. This page is checked against the official scalar crypto extension, avoiding confusion among round functions, key schedule steps, and operand sources.
Understand this scenario with real code like «sha512sum1 a0, a1».
Understand this scenario with real code like «sha512sum1 a0, a1».
No. These scalar crypto extension instructions use integer X registers.
No. It is a low-level step from AES, SHA, SM3, or SM4; software still combines instructions with the algorithm schedule, round constants, or round keys.