about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/errors.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2024-08-12 17:09:14 +0200
committerGitHub <noreply@github.com>2024-08-12 17:09:14 +0200
commit095ca33bb6da3c1dd789eaf59461c99f4023b626 (patch)
tree383f3050fba9cdd09bcae84bad4bfd6f098ff944 /compiler/rustc_codegen_llvm/src/errors.rs
parente08b80c0fb7667bdcd040761891701e576c42ec8 (diff)
parent75743dc5a057cdc0678d88523edbbf3fdd1bf901 (diff)
downloadrust-095ca33bb6da3c1dd789eaf59461c99f4023b626.tar.gz
rust-095ca33bb6da3c1dd789eaf59461c99f4023b626.zip
Rollup merge of #128149 - RalfJung:nontemporal_store, r=jieyouxu,Amanieu,Jubilee
nontemporal_store: make sure that the intrinsic is truly just a hint

The `!nontemporal` flag for stores in LLVM *sounds* like it is just a hint, but actually, it is not -- at least on x86, non-temporal stores need very special treatment by the programmer or else the Rust memory model breaks down. LLVM still treats these stores as-if they were normal stores for optimizations, which is [highly dubious](https://github.com/llvm/llvm-project/issues/64521). Let's avoid all that dubiousness by making our own non-temporal stores be truly just a hint, which is possible on some targets (e.g. ARM). On all other targets, non-temporal stores become regular stores.

~~Blocked on https://github.com/rust-lang/stdarch/pull/1541 propagating to the rustc repo, to make sure the `_mm_stream` intrinsics are unaffected by this change.~~

Fixes https://github.com/rust-lang/rust/issues/114582
Cc `@Amanieu` `@workingjubilee`
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/errors.rs')
0 files changed, 0 insertions, 0 deletions