image/svg+xmlROUNDPD — Round Packed Double Precision Floating-Point ValuesInstruction Operand EncodingDescriptionRound the 2 double-precision floating-point values in the source operand (second operand) using the rounding mode specified in the immediate operand (third operand) and place the results in the destination operand (first operand). The rounding process rounds each input floating-point value to an integer value and returns the integer result as a double-precision floating-point value. The immediate operand specifies control fields for the rounding operation, three bit fields are defined and shown in Figure4-24. Bit 3 of the immediate byte controls processor behavior for a precision exception, bit 2 selects the source of rounding mode control. Bits 1:0 specify a non-sticky rounding-mode value (Table 4-23 lists the encoded values for rounding-mode field). The Precision Floating-Point Exception is signaled according to the immediate operand. If any source operand is an SNaN then it will be converted to a QNaN. If DAZ is set to ‘1 then denormals will be converted to zero before rounding.128-bit Legacy SSE version: The second source can be an XMM register or 128-bit memory location. The destina-tion is not distinct from the first source XMM register and the upper bits (MAXVL-1:128) of the corresponding YMM register destination are unmodified.VEX.128 encoded version: the source operand second source operand or a 128-bit memory location. The destina-tion operand is an XMM register. The upper bits (MAXVL-1:128) of the corresponding YMM register destination are zeroed.VEX.256 encoded version: The source operand is a YMM register or a 256-bit memory location. The destination operand is a YMM register. Note: In VEX-encoded versions, VEX.vvvv is reserved and must be 1111b, otherwise instructions will #UD.Opcode*/InstructionOp/ En64/32 bit Mode SupportCPUID Feature FlagDescription66 0F 3A 09 /r ibROUNDPD xmm1, xmm2/m128, imm8RMIV/VSSE4_1Round packed double precision floating-point values in xmm2/m128 and place the result in xmm1. The rounding mode is determined by imm8.VEX.128.66.0F3A.WIG 09 /r ibVROUNDPD xmm1, xmm2/m128, imm8RMIV/VAVXRound packed double-precision floating-point values in xmm2/m128 and place the result in xmm1. The rounding mode is determined by imm8.VEX.256.66.0F3A.WIG 09 /r ibVROUNDPD ymm1, ymm2/m256, imm8RMIV/VAVXRound packed double-precision floating-point values in ymm2/m256 and place the result in ymm1. The rounding mode is determined by imm8.Op/EnOperand 1Operand 2Operand 3Operand 4RMIModRM:reg (w)ModRM:r/m (r)imm8NA

image/svg+xmlOperationIF (imm[2] = ‘1) THEN // rounding mode is determined by MXCSR.RC DEST[63:0] := ConvertDPFPToInteger_M(SRC[63:0]);DEST[127:64] := ConvertDPFPToInteger_M(SRC[127:64]);ELSE// rounding mode is determined by IMM8.RCDEST[63:0] := ConvertDPFPToInteger_Imm(SRC[63:0]);DEST[127:64] := ConvertDPFPToInteger_Imm(SRC[127:64]);FIROUNDPD (128-bit Legacy SSE version)DEST[63:0] := RoundToInteger(SRC[63:0]], ROUND_CONTROL)DEST[127:64] := RoundToInteger(SRC[127:64]], ROUND_CONTROL)DEST[MAXVL-1:128] (Unmodified)VROUNDPD (VEX.128 encoded version)DEST[63:0] := RoundToInteger(SRC[63:0]], ROUND_CONTROL)DEST[127:64] := RoundToInteger(SRC[127:64]], ROUND_CONTROL)DEST[MAXVL-1:128] := 0VROUNDPD (VEX.256 encoded version)DEST[63:0] := RoundToInteger(SRC[63:0], ROUND_CONTROL)DEST[127:64] := RoundToInteger(SRC[127:64]], ROUND_CONTROL)DEST[191:128] := RoundToInteger(SRC[191:128]], ROUND_CONTROL)DEST[255:192] := RoundToInteger(SRC[255:192] ], ROUND_CONTROL)Figure 4-24. Bit Control Fields of Immediate Byte for ROUNDxx InstructionTable 4-23. Rounding Modes and Encoding of Rounding Control (RC) FieldRounding ModeRC Field SettingDescriptionRound to nearest (even)00BRounded result is the closest to the infinitely precise result. If two values are equally close, the result is the even value (i.e., the integer value with the least-significant bit of zero). Round down (toward −∞)01BRounded result is closest to but no greater than the infinitely precise result.Round up (toward +∞)10BRounded result is closest to but no less than the infinitely precise result.Round toward zero (Truncate)11BRounded result is closest to but no greater in absolute value than the infinitely precise result.8RS—Rounding select; 1: MXCSR.RC, 0: Imm8.RCRC—Rounding mode3210P—Precision Mask; 0: normal, 1: inexactReserved

image/svg+xmlIntel C/C++ Compiler Intrinsic Equivalent__m128 _mm_round_pd(__m128d s1, int iRoundMode);__m128 _mm_floor_pd(__m128d s1);__m128 _mm_ceil_pd(__m128d s1)__m256 _mm256_round_pd(__m256d s1, int iRoundMode);__m256 _mm256_floor_pd(__m256d s1);__m256 _mm256_ceil_pd(__m256d s1)SIMD Floating-Point ExceptionsInvalid (signaled only if SRC = SNaN)Precision (signaled only if imm[3] = ‘0; if imm[3] = ‘1, then the Precision Mask in the MXSCSR is ignored and preci-sion exception is not signaled.)Note that Denormal is not signaled by ROUNDPD.Other ExceptionsSee Table2-19, “Type 2 Class Exception Conditions”; additionally:#UDIf VEX.vvvv 1111B.

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.