모두의 코드
SHA256MSG1 (Intel x86/64 assembly instruction)
작성일 : 2020-09-01
이 글은 613 번 읽혔습니다.
SHA256MSG1
Perform an Intermediate Calculation for the Next Four SHA256 Message Dwords
참고 사항
아래 표를 해석하는 방법은 x86-64 명령어 레퍼런스 읽는 법 글을 참조하시기 바랍니다.
Opcode/ | Op/En | 64/32 | CPUID | Description |
---|---|---|---|---|
| RM | V/V | SHA | Performs an intermediate calculation for the next four SHA256 message dwords using previous message dwords from xmm1 and xmm2/m128, storing the result in xmm1. |
Instruction Operand Encoding
Op/En | Operand 1 | Operand 2 | Operand 3 |
---|---|---|---|
RM | ModRM:reg (r, w) | ModRM:r/m (r) | NA |
Description
The SHA256MSG1 instruction is one of two SHA256 message scheduling instructions. The instruction performs an intermediate calculation for the next four SHA256 message dwords.
Operation
SHA256MSG1
W4 <- SRC2[31: 0] ; W3 <- SRC1[127:96] ; W2 <- SRC1[95:64] ; W1 <- SRC1[63: 32] ; W0 <- SRC1[31: 0] ; DEST[127:96] <- W3 + 0( W4); DEST[95:64] <- W2 + 0( W3); DEST[63:32] <- W1 + 0( W2); DEST[31:0] <- W0 + 0( W1);
Intel C/C++ Compiler Intrinsic Equivalent
SHA256MSG1 : __m128i _mm_sha256msg1_epu32(__m128i, __m128i);
Flags Affected
None
SIMD Floating-Point Exceptions
None
Other Exceptions
See Exceptions Type 4.
첫
댓글을 달아주세요!
강좌에 관련 없이 궁금한 내용은
여기를 사용해주세요
또는 직접 입력하세요 (댓글 수정시 비밀번호가 필요합니다)
댓글을 불러오는 중입니다..