Visible to Intel only — GUID: GUID-138733C3-B264-4B33-B3E9-0E144B322858
Visible to Intel only — GUID: GUID-138733C3-B264-4B33-B3E9-0E144B322858
Set Intrinsics
The prototypes for Intel® Streaming SIMD Extensions (Intel® SSE) intrinsics for set operations are in the xmmintrin.h header file.
To use these intrinsics, include the immintrin.h file as follows:
#include <immintrin.h>
The results of each intrinsic operation are placed in registers. The information about what is placed in each register appears in the tables below, in the detailed explanation of each intrinsic. R0, R1, R2, and R3 represent the registers in which results are placed.
Intrinsic Name |
Operation |
Corresponding |
---|---|---|
_mm_set_ss |
Set the low value and clear the three high values |
Composite |
_mm_set1_ps |
Set all four words with the same value |
Composite |
_mm_set_ps |
Set four values, address aligned |
Composite |
_mm_setr_ps |
Set four values, in reverse order |
Composite |
_mm_setzero_ps |
Clear all four values |
Composite |
_mm_set_ss
__m128 _mm_set_ss(float w);
Sets the low word of a SP FP value to w and clears the upper three words.
R0 |
R1 |
R2 |
R3 |
---|---|---|---|
w |
0.0 |
0.0 |
0.0 |
_mm_set1_ps
__m128 _mm_set1_ps(float w);
Sets the four SP FP values to w.
R0 |
R1 |
R2 |
R3 |
---|---|---|---|
w |
w |
w |
w |
_mm_set_ps
__m128 _mm_set_ps(float z, float y, float x, float w);
Sets the four SP FP values to the inputs w, x, y, and z.
R0 |
R1 |
R2 |
R3 |
---|---|---|---|
w |
x |
y |
z |
_mm_setr_ps
__m128 _mm_setr_ps(float z, float y, float x, float w);
Sets the four SP FP values to the inputs w, x, y, and z in reverse order.
R0 |
R1 |
R2 |
R3 |
---|---|---|---|
z |
y |
x |
w |
_mm_setzero_ps
__m128 _mm_setzero_ps(void);
Clears the four SP FP values.
R0 |
R1 |
R2 |
R3 |
---|---|---|---|
0.0 |
0.0 |
0.0 |
0.0 |