Does SHA512SIG0H use floating-point or vector registers?
No. These scalar crypto extension instructions use integer X registers.
High 32 bits of SHA-512 σ0 (RV32): compute σ0 from 64-bit input (rs1=hi, rs2=lo) and return bits[63:32]
SHA512SIG0H uses opcode 0110011 (0x33), funct3 110, funct7 0101110. The rs1 and rs2 fields select the two source registers, and rd selects the destination register.
sha512sig0h is the Zknh SHA-512 σ0 high-half instruction (RV32 only). Concatenates rs1 (upper 32 bits) and rs2 (lower 32 bits) as a 64-bit input, computes σ0(x) = ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7), and returns bits[63:32] to rd. Paired with sha512sig0l for full 64-bit SHA-512 σ0 on RV32.
SHA512SIG0H is a Zknh scalar cryptography instruction for SHA-512 RV32 split 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 «sha512sig0h a0, a1, a2».
Understand this scenario with real code like «sha512sig0h a0, a1, a2».
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.