Does SHA512SIG0 use floating-point or vector registers?
No. These scalar crypto extension instructions use integer X registers.
SHA-512 σ0 function (RV64): ROTR(rs1,1) ^ ROTR(rs1,8) ^ SHR(rs1,7)
sha512sig0 is the Zknh SHA-512 σ0 function (RV64 only): σ0(x) = ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7). Reads 64-bit rs1, computes σ0, writes to rd. For SHA-512 message schedule W_t expansion. On RV32, sha512sig0h/sha512sig0l provide the same function split across 32-bit halves.
SHA512SIG0 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 «sha512sig0 a0, a1».
Understand this scenario with real code like «sha512sig0 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.