Go to file
bjorn3 8fbd6f521a Skip LLVM sysroot testing for native x86_64-pc-windows-gnu in CI
It is way too slow and cross-compiled x86_64-pc-windows-gnu covers at
least part of the tests.
2023-06-05 17:20:59 +00:00
.github Skip LLVM sysroot testing for native x86_64-pc-windows-gnu in CI 2023-06-05 17:20:59 +00:00
.vscode Enable VSCode formatOnSave 2023-01-13 16:13:26 +00:00
build_sysroot Rustup to rustc 1.71.0-nightly (a2b1646c5 2023-05-25) 2023-05-26 08:27:47 +00:00
build_system Fix testing with unstable features disabled 2023-05-24 17:31:25 +00:00
docs Rename the build/ directory to dist/ 2022-11-28 13:01:49 +00:00
example Define rust_eh_personality for alloc_example 2023-06-05 16:54:37 +00:00
patches Update test repo versions 2023-02-26 14:34:28 +00:00
scripts Don't explicitly remove needs-unwind tests 2023-05-28 11:04:15 +00:00
src Implement all vendor intrinsics used by regex on AVX2 systems 2023-06-05 15:33:54 +00:00
.cirrus.yml Fix CirrusCI 2023-05-14 10:17:12 +00:00
.gitattributes
.gitignore Use patched git-subtree from bjorn3/git@tqc-subtree-portable 2023-03-15 14:20:18 +00:00
Cargo.lock Update Cranelift to 0.96.1 2023-05-23 11:55:07 +00:00
Cargo.toml Update Cranelift to 0.96.1 2023-05-23 11:55:07 +00:00
clean_all.sh Remove debuginfo files for compiled y.rs in clean_all.sh 2023-01-05 18:14:55 +00:00
config.txt Don't download abi-cafe and simple-raytracer in ./y.rs prepare 2023-01-27 18:44:19 +00:00
LICENSE-APACHE
LICENSE-MIT
Readme.md Sync from rust d59363ad0b 2023-06-02 12:44:25 +00:00
rust-toolchain Rustup to rustc 1.72.0-nightly (d59363ad0 2023-06-01) 2023-06-02 12:51:40 +00:00
rustfmt.toml Ignore rustfmt for y.rs 2022-10-28 13:21:27 +00:00
test.sh Allow specifying where build artifacts should be written to 2022-12-01 19:00:32 +00:00
y.rs Fix warnings when building the build system in rust's CI 2023-04-13 13:17:01 +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/bjorn3/rustc_codegen_cranelift
$ cd rustc_codegen_cranelift
$ ./y.rs prepare
$ ./y.rs 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.rs.

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.rs prepare and y.rs 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 exectutable files from ./build/host/stage2-tools/<your hostname triple>/release to ./build/host/stage2/bin/. Note that you would need to do this every time you rebuilt rust repository.
  5. Copy cargo from another toolchain: cp $(rustup which cargo) .build/<your hostname triple>/stage2/bin/cargo
    • Another option is to build it at step 3 and copy with other executables at step 4.
  6. Link your new rustc to toolchain: rustup toolchain link stage2 ./build/host/stage2/.
  7. (Windows only) compile y.rs: rustc +stage2 -O y.rs.
  8. You need to prefix every ./y.rs (or y if you built y.rs) command by rustup run stage2 to make cg_clif use your local changes in rustc.
  • rustup run stage2 ./y.rs prepare
  • rustup run stage2 ./y.rs build
  • (Optional) run tests: rustup run stage2 ./y.rs 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

  • Inline assembly (no cranelift support)
    • On UNIX there is support for invoking an external assembler for global_asm! and asm!.
  • SIMD (tracked here, std::simd fully works, std::arch is partially supported)
  • Unwinding on panics (no cranelift support, -Cpanic=abort is enabled by default)

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.