We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2c4e67 commit c0b12daCopy full SHA for c0b12da
crates/core_arch/src/x86/sse4a.rs
@@ -60,6 +60,8 @@ pub unsafe fn _mm_insert_si64(x: __m128i, y: __m128i) -> __m128i {
60
}
61
62
/// Non-temporal store of `a.0` into `p`.
63
+///
64
+/// Writes 64-bit data to a memory location without polluting the caches.
65
#[inline]
66
#[target_feature(enable = "sse4a")]
67
#[cfg_attr(test, assert_instr(movntsd))]
@@ -69,6 +71,8 @@ pub unsafe fn _mm_stream_sd(p: *mut f64, a: __m128d) {
69
71
70
72
73
74
75
+/// Writes 32-bit data to a memory location without polluting the caches.
76
77
78
#[cfg_attr(test, assert_instr(movntss))]
0 commit comments