Empowering everyone to build reliable and efficient software.
Go to file
2023-11-05 18:24:39 +00:00
.github Run tests for riscv64 2023-10-21 16:46:24 +00:00
.vscode Update rust-analyzer config 2023-10-23 13:24:46 +00:00
build_system Use same --remap-path-prefix as bootstrap for testing the rustc test suite 2023-10-21 19:01:08 +00:00
docs Fix shell helpers in usage docs 2023-08-18 13:15:36 +02:00
example Dynamically realign local variables with large alignment 2023-10-22 17:11:11 +00:00
patches Merge commit 'dde58803fd6cbb270c7a437f36a8a3a29fbef679' into sync_cg_clif-2023-10-29 2023-10-29 20:30:50 +00:00
scripts Disable a couple of rustc tests which are broken due to a rustc bug 2023-11-02 10:27:56 +00:00
src Implement _mm256_permute2f128_ps and _mm256_permute2f128_pd intrinsics 2023-11-05 18:24:39 +00:00
.cirrus.yml Install binutils on FreeBSD CI to get an assembler 2023-10-15 12:05:05 +00:00
.gitattributes Set diff=rust git attribute for rust files 2020-11-08 16:36:52 +01:00
.gitignore Allow building the build system using cargo 2023-06-13 16:39:59 +00:00
Cargo.lock Update target-lexicon to 0.12.12 2023-10-27 11:56:39 +00:00
Cargo.toml Merge commit 'dde58803fd6cbb270c7a437f36a8a3a29fbef679' into sync_cg_clif-2023-10-29 2023-10-29 20:30:50 +00:00
clean_all.sh Allow building the build system using cargo 2023-06-13 16:39:59 +00:00
config.txt Update regex and implement necessary AArch64 vendor intrinsics 2023-10-02 13:45:48 +00:00
LICENSE-APACHE Create LICENSE-APACHE 2018-06-22 19:33:35 +02:00
LICENSE-MIT Add LICENSE-MIT 2018-06-22 19:34:27 +02:00
Readme.md Remove inline asm support from the list of limitations 2023-10-30 15:21:34 +00:00
rust-toolchain Rustup to rustc 1.75.0-nightly (75b064d26 2023-11-01) 2023-11-02 09:44:36 +00:00
rustfmt.toml Ignore rustfmt for y.rs 2022-10-28 13:21:27 +00:00
test.sh Allow building the build system using cargo 2023-06-13 16:39:59 +00:00
y.rs Allow building the build system using cargo 2023-06-13 16:39:59 +00:00
y.sh Allow building the build system using cargo 2023-06-13 16:39:59 +00:00

Cranelift codegen backend for rust

The goal of this project is to create an alternative codegen backend for the rust compiler based on Cranelift. This has the potential to improve compilation times in debug mode. If your project doesn't use any of the things listed under "Not yet supported", it should work fine. If not please open an issue.

Building and testing

$ git clone https://github.com/rust-lang/rustc_codegen_cranelift
$ cd rustc_codegen_cranelift
$ ./y.sh prepare
$ ./y.sh build

To run the test suite replace the last command with:

$ ./test.sh

For more docs on how to build and test see build_system/usage.txt or the help message of ./y.sh.

Precompiled builds

Alternatively you can download a pre built version from the releases page. Extract the dist directory in the archive anywhere you want. If you want to use cargo clif build instead of having to specify the full path to the cargo-clif executable, you can add the bin subdirectory of the extracted dist directory to your PATH. (tutorial for Windows, and for Linux/MacOS).

Usage

rustc_codegen_cranelift can be used as a near-drop-in replacement for cargo build or cargo run for existing projects.

Assuming $cg_clif_dir is the directory you cloned this repo into and you followed the instructions (y.sh prepare and y.sh build or test.sh).

In the directory with your project (where you can do the usual cargo build), run:

$ $cg_clif_dir/dist/cargo-clif build

This will build your project with rustc_codegen_cranelift instead of the usual LLVM backend.

For additional ways to use rustc_codegen_cranelift like the JIT mode see usage.md.

Building and testing with changes in rustc code

This is useful when changing code in rustc_codegen_cranelift as part of changing main Rust repository. This can happen, for example, when you are implementing a new compiler intrinsic.

Instruction below uses $RustCheckoutDir as substitute for any folder where you cloned Rust repository.

You need to do this steps to successfully compile and use the cranelift backend with your changes in rustc code:

  1. cd $RustCheckoutDir
  2. Run python x.py setup and choose option for compiler (b).
  3. Build compiler and necessary tools: python x.py build --stage=2 compiler library/std src/tools/rustdoc src/tools/rustfmt
    • (Optional) You can also build cargo by adding src/tools/cargo to previous command.
  4. Copy cargo from a nightly toolchain: cp $(rustup +nightly which cargo) ./build/host/stage2/bin/cargo. Note that you would need to do this every time you rebuilt rust repository.
  5. Link your new rustc to toolchain: rustup toolchain link stage2 ./build/host/stage2/.
  6. (Windows only) compile the build system: rustc +stage2 -O build_system/main.rs -o y.exe.
  7. You need to prefix every ./y.sh (or y if you built build_system/main.rs as y) command by rustup run stage2 to make cg_clif use your local changes in rustc.
  • rustup run stage2 ./y.sh prepare
  • rustup run stage2 ./y.sh build
  • (Optional) run tests: rustup run stage2 ./y.sh test
  1. Now you can use your cg_clif build to compile other Rust programs, e.g. you can open any Rust crate and run commands like $RustCheckoutDir/compiler/rustc_codegen_cranelift/dist/cargo-clif build --release.

Configuration

See the documentation on the BackendConfig struct in config.rs for all configuration options.

Not yet supported

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.