CRC32 — Accumulate CRC32 ValueInstruction Operand EncodingDescriptionStarting with an initial value in the first operand (destination operand), accumulates a CRC32 (polynomial 11EDC6F41H) value for the second operand (source operand) and stores the result in the destination operand. The source operand can be a register or a memory location. The destination operand must be an r32 or r64 register. If the destination is an r64 register, then the 32-bit result is stored in the least significant double word and 00000000H is stored in the most significant double word of the r64 register.The initial value supplied in the destination operand is a double word integer stored in the r32 register or the least significant double word of the r64 register. To incrementally accumulate a CRC32 value, software retains the result of the previous CRC32 operation in the destination operand, then executes the CRC32 instruction again with new input data in the source operand. Data contained in the source operand is processed in reflected bit order. This means that the most significant bit of the source operand is treated as the least significant bit of the quotient, and so on, for all the bits of the source operand. Likewise, the result of the CRC operation is stored in the destination operand in reflected bit order. This means that the most significant bit of the resulting CRC (bit 31) is stored in the least significant bit of the destination operand (bit 0), and so on, for all the bits of the CRC.OperationNotes:BIT_REFLECT64: DST[63-0] = SRC[0-63]BIT_REFLECT32: DST[31-0] = SRC[0-31]BIT_REFLECT16: DST[15-0] = SRC[0-15]BIT_REFLECT8: DST[7-0] = SRC[0-7]MOD2: Remainder from Polynomial division modulus 2Opcode/InstructionOp/ En64-Bit ModeCompat/Leg ModeDescriptionF2 0F 38 F0 /rCRC32 r32, r/m8RMValidValidAccumulate CRC32 on r/m8.F2 REX 0F 38 F0 /rCRC32 r32, r/m8*RMValidN.E.Accumulate CRC32 on r/m8.F2 0F 38 F1 /rCRC32 r32, r/m16RMValidValidAccumulate CRC32 on r/m16.F2 0F 38 F1 /rCRC32 r32, r/m32RMValidValidAccumulate CRC32 on r/m32.F2 REX.W 0F 38 F0 /rCRC32 r64, r/m8RMValidN.E.Accumulate CRC32 on r/m8.F2 REX.W 0F 38 F1 /rCRC32 r64, r/m64RMValidN.E.Accumulate CRC32 on r/m64.NOTES:*In 64-bit mode, r/m8 can not be encoded to access the following byte registers if a REX prefix is used: AH, BH, CH, DH. Op/EnOperand 1Operand 2Operand 3Operand 4RMModRM:reg (r, w)ModRM:r/m (r)NANA
This UNOFFICIAL reference was generated from the official Intel® 64 and IA-32 Architectures Software Developer’s Manual by a dumb script. There is no guarantee that some parts aren't mangled or broken and is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.