]> git.lizzy.rs Git - rust.git/commit
rustc: Add support for some more x86 SIMD ops
authorAlex Crichton <alex@alexcrichton.com>
Wed, 18 Oct 2017 17:30:29 +0000 (10:30 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Sat, 25 Nov 2017 19:03:13 +0000 (11:03 -0800)
commitfe53a8106dfb54b5fe04d2ce7e8ee6472b0d5b16
treeda4d366dc1d68821db4af9ad3213c7481e7064dd
parentcc6b88ccb2fd10c2ad04a30ba648a1e9abf7ba4b
rustc: Add support for some more x86 SIMD ops

This commit adds compiler support for two basic operations needed for binding
SIMD on x86 platforms:

* First, a `nontemporal_store` intrinsic was added for the `_mm_stream_ps`, seen
  in rust-lang-nursery/stdsimd#114. This was relatively straightforward and is
  quite similar to the volatile store intrinsic.

* Next, and much more intrusively, a new type to the backend was added. The
  `x86_mmx` type is used in LLVM for a 64-bit vector register and is used in
  various intrinsics like `_mm_abs_pi8` as seen in rust-lang-nursery/stdsimd#74.
  This new type was added as a new layout option as well as having support added
  to the trans backend. The type is enabled with the `#[repr(x86_mmx)]`
  attribute which is intended to just be an implementation detail of SIMD in
  Rust.

I'm not 100% certain about how the `x86_mmx` type was added, so any extra eyes
or thoughts on that would be greatly appreciated!
src/libcore/intrinsics.rs
src/librustc_llvm/ffi.rs
src/librustc_trans/builder.rs
src/librustc_trans/diagnostics.rs
src/librustc_trans/intrinsic.rs
src/librustc_trans/type_.rs
src/librustc_trans/type_of.rs
src/librustc_typeck/check/intrinsic.rs
src/test/codegen/nontemporal.rs [new file with mode: 0644]
src/test/codegen/x86_mmx.rs [new file with mode: 0644]