Instruction
VMINPD
Returns the smaller of each pair of packed doubles, or the second operand if either is NaN or both are zero.
- Extensions
- Forms
- 10 (4 VEX, 6 EVEX)
- Data
- Intel XED v2026.08.23
Forms
| Instruction | Encoding | Requires |
|---|---|---|
VMINPD xmm, xmm, m128
VMINPD_XMMdq_XMMdq_MEMdq | VEX.128.66.0F.WIG 5D /r | AVX |
VMINPD xmm, xmm, xmm
VMINPD_XMMdq_XMMdq_XMMdq | VEX.128.66.0F.WIG 5D /r | AVX |
VMINPD ymm, ymm, m256
VMINPD_YMMqq_YMMqq_MEMqq | VEX.256.66.0F.WIG 5D /r | AVX |
VMINPD ymm, ymm, ymm
VMINPD_YMMqq_YMMqq_YMMqq | VEX.256.66.0F.WIG 5D /r | AVX |
VMINPD zmm {k}{z}, zmm, zmm, {sae}
VMINPD_ZMMf64_MASKmskw_ZMMf64_ZMMf64_AVX512 | EVEX.512.66.0F.W1 5D /r | AVX10.1 or AVX512F |
VMINPD zmm {k}{z}, zmm, m512/m64bcst
VMINPD_ZMMf64_MASKmskw_ZMMf64_MEMf64_AVX512 | EVEX.512.66.0F.W1 5D /r | AVX10.1 or AVX512F |
VMINPD xmm {k}{z}, xmm, xmm
VMINPD_XMMf64_MASKmskw_XMMf64_XMMf64_AVX512 | EVEX.128.66.0F.W1 5D /r | AVX10.1 or AVX512F + AVX512VL |
VMINPD xmm {k}{z}, xmm, m128/m64bcst
VMINPD_XMMf64_MASKmskw_XMMf64_MEMf64_AVX512 | EVEX.128.66.0F.W1 5D /r | AVX10.1 or AVX512F + AVX512VL |
VMINPD ymm {k}{z}, ymm, ymm
VMINPD_YMMf64_MASKmskw_YMMf64_YMMf64_AVX512 | EVEX.256.66.0F.W1 5D /r | AVX10.1 or AVX512F + AVX512VL |
VMINPD ymm {k}{z}, ymm, m256/m64bcst
VMINPD_YMMf64_MASKmskw_YMMf64_MEMf64_AVX512 | EVEX.256.66.0F.W1 5D /r | AVX10.1 or AVX512F + AVX512VL |
Intrinsics
The C intrinsics of Clang 23.1.2 that compile to VMINPD, each with the form it compiles to and the Clang options it needs. The forms come from compiling every intrinsic and decoding the result with Intel XED; all intrinsics A–Z explains the method.
| Intrinsic | Compiles to |
|---|---|
_mm_min_pd
__m128d _mm_min_pd(__m128d __a, __m128d __b) |
|
_mm_mask_min_pd
__m128d _mm_mask_min_pd(__m128d __W, __mmask8 __U, __m128d __A, __m128d __B) |
|
_mm_maskz_min_pd
__m128d _mm_maskz_min_pd(__mmask8 __U, __m128d __A, __m128d __B) |
|
_mm256_min_pd
__m256d _mm256_min_pd(__m256d __a, __m256d __b) |
|
_mm256_mask_min_pd
__m256d _mm256_mask_min_pd(__m256d __W, __mmask8 __U, __m256d __A, __m256d __B) |
|
_mm256_maskz_min_pd
__m256d _mm256_maskz_min_pd(__mmask8 __U, __m256d __A, __m256d __B) |
|
_mm512_min_pd
__m512d _mm512_min_pd(__m512d __A, __m512d __B) |
|
_mm512_min_round_pd
__m512d _mm512_min_round_pd(__m512d A, __m512d B, const int R) |
|
_mm512_mask_min_pd
__m512d _mm512_mask_min_pd(__m512d __W, __mmask8 __U, __m512d __A, __m512d __B) |
|
_mm512_mask_min_round_pd
__m512d _mm512_mask_min_round_pd(__m512d W, __mmask8 U, __m512d A, __m512d B, const int R) |
|
_mm512_maskz_min_pd
__m512d _mm512_maskz_min_pd(__mmask8 __U, __m512d __A, __m512d __B) |
|
_mm512_maskz_min_round_pd
__m512d _mm512_maskz_min_round_pd(__mmask8 U, __m512d A, __m512d B, const int R) |
|
CPUID and processors
Each form belongs to an XED ISA set. A form can be used when the processor reports every CPUID bit of one of its ISA set's alternatives.
More AVX10.1 instructions
- VGETMANTSH
- VGETMANTSS
- VGF2P8AFFINEINVQB
- VGF2P8AFFINEQB
- VGF2P8MULB
- VINSERTF32X4
- VINSERTF32X8
- VINSERTF64X2
- VINSERTF64X4
- VINSERTI32X4
- VINSERTI32X8
- VINSERTI64X2
- VINSERTI64X4
- VINSERTPS
- VMAXPD
- VMAXPH
- VMAXPS
- VMAXSD
- VMAXSH
- VMAXSS
- VMINPH
- VMINPS
- VMINSD
- VMINSH
- VMINSS
- VMOVAPD
- VMOVAPS
- VMOVD
- VMOVDDUP
- VMOVDQA32
- VMOVDQA64
- VMOVDQU16
- VMOVDQU32
- VMOVDQU64
- VMOVDQU8
- VMOVHLPS
- VMOVHPD
- VMOVHPS
- VMOVLHPS
- VMOVLPD
Sources
- Intel XED v2026.08.23 (commit
0bcb6237345c): forms, encodings, ISA sets, CPUID bits and chip model. - Clang's x86 intrinsic headers, LLVM 23.1.2 (commit
85ac56026243): the intrinsics, their signatures and doc comments, and the Clang of that release, which compiled each of them. - Intel Advanced Vector Extensions 10.2 Architecture Specification, revision 6.0 (361050-006, January 2026)
The tables are derived from Intel XED, Copyright Intel Corporation, licensed under the Apache License 2.0; x86-64.net converted and reformatted them. The intrinsics and their signatures come from Clang, part of the LLVM Project, licensed under the Apache License 2.0 with LLVM Exceptions. The text is our own.