c72537f204
This commit imports the `stdsimd` crate into the standard library, creating an `arch` and `simd` module inside of both libcore and libstd. Both of these modules are **unstable** and will continue to be so until RFC 2335 is stabilized. As a brief recap, the modules are organized as so: * `arch` contains all current architectures with intrinsics, for example `std::arch::x86`, `std::arch::x86_64`, `std::arch::arm`, etc. These modules contain all of the intrinsics defined for the platform, like `_mm_set1_epi8`. * In the standard library, the `arch` module also exports a `is_target_feature_detected` macro which performs runtime detection to determine whether a target feature is available at runtime. * The `simd` module contains experimental versions of strongly-typed lane-aware SIMD primitives, to be fully fleshed out in a future RFC. The main purpose of this commit is to start pulling in all these intrinsics and such into the standard library on nightly and allow testing and such. This'll help allow users to easily kick the tires and see if intrinsics work as well as allow us to test out all the infrastructure for moving the intrinsics into the standard library.
56 lines
1.9 KiB
Plaintext
56 lines
1.9 KiB
Plaintext
[submodule "src/llvm"]
|
|
path = src/llvm
|
|
url = https://github.com/rust-lang/llvm.git
|
|
branch = master
|
|
[submodule "src/jemalloc"]
|
|
path = src/jemalloc
|
|
url = https://github.com/rust-lang/jemalloc.git
|
|
[submodule "src/rust-installer"]
|
|
path = src/tools/rust-installer
|
|
url = https://github.com/rust-lang/rust-installer.git
|
|
[submodule "src/liblibc"]
|
|
path = src/liblibc
|
|
url = https://github.com/rust-lang/libc.git
|
|
[submodule "src/doc/nomicon"]
|
|
path = src/doc/nomicon
|
|
url = https://github.com/rust-lang-nursery/nomicon.git
|
|
[submodule "src/tools/cargo"]
|
|
path = src/tools/cargo
|
|
url = https://github.com/rust-lang/cargo.git
|
|
[submodule "src/doc/reference"]
|
|
path = src/doc/reference
|
|
url = https://github.com/rust-lang-nursery/reference.git
|
|
[submodule "src/doc/book"]
|
|
path = src/doc/book
|
|
url = https://github.com/rust-lang/book.git
|
|
[submodule "src/tools/rls"]
|
|
path = src/tools/rls
|
|
url = https://github.com/rust-lang-nursery/rls.git
|
|
[submodule "src/libcompiler_builtins"]
|
|
path = src/libcompiler_builtins
|
|
url = https://github.com/rust-lang-nursery/compiler-builtins
|
|
[submodule "src/tools/clippy"]
|
|
path = src/tools/clippy
|
|
url = https://github.com/rust-lang-nursery/rust-clippy.git
|
|
[submodule "src/tools/rustfmt"]
|
|
path = src/tools/rustfmt
|
|
url = https://github.com/rust-lang-nursery/rustfmt.git
|
|
[submodule "src/tools/miri"]
|
|
path = src/tools/miri
|
|
url = https://github.com/solson/miri.git
|
|
[submodule "src/dlmalloc"]
|
|
path = src/dlmalloc
|
|
url = https://github.com/alexcrichton/dlmalloc-rs.git
|
|
[submodule "src/binaryen"]
|
|
path = src/binaryen
|
|
url = https://github.com/alexcrichton/binaryen.git
|
|
[submodule "src/doc/rust-by-example"]
|
|
path = src/doc/rust-by-example
|
|
url = https://github.com/rust-lang/rust-by-example
|
|
[submodule "src/llvm-emscripten"]
|
|
path = src/llvm-emscripten
|
|
url = https://github.com/rust-lang/llvm
|
|
[submodule "src/stdsimd"]
|
|
path = src/stdsimd
|
|
url = https://github.com/rust-lang-nursery/stdsimd
|