Go to file
2023-04-17 09:40:38 +00:00
.github Set a timeout of 1h for the "Various rustc tests" GHA workflow 2023-04-09 13:01:10 +00:00
.vscode Enable VSCode formatOnSave 2023-01-13 16:13:26 +00:00
build_sysroot Rustup to rustc 1.70.0-nightly (af06dce64 2023-04-08) 2023-04-09 15:12:19 +00:00
build_system Minor build perf optimization 2023-04-13 13:29:00 +00:00
docs Rename the build/ directory to dist/ 2022-11-28 13:01:49 +00:00
example Fix a couple of 2018 edition warnings 2023-04-13 13:17:26 +00:00
patches Merge commit 'dec0daa8f6d0a0e1c702f169abb6bf3eee198c67' into sync_cg_clif-2023-03-15 2023-03-15 14:41:48 +00:00
scripts Fix rustc test suite 2023-04-10 13:43:51 +00:00
src Sync from rust d0f204e4d7 2023-04-17 09:35:42 +00:00
.cirrus.yml Update FreeBSD to 13.1 2023-01-13 18:36:22 +00:00
.gitattributes Set diff=rust git attribute for rust files 2020-11-08 16:36:52 +01:00
.gitignore Merge commit 'dec0daa8f6d0a0e1c702f169abb6bf3eee198c67' into sync_cg_clif-2023-03-15 2023-03-15 14:41:48 +00:00
Cargo.lock Sync from rust 17c1167216 2023-03-30 12:13:44 +00:00
Cargo.toml Sync from rust 17c1167216 2023-03-30 12:13:44 +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 Add LICENSE-MIT 2018-06-22 19:34:27 +02:00
Readme.md Publish a dev release on every commit 2023-03-24 19:23:04 +00:00
rust-toolchain Rustup to rustc 1.71.0-nightly (d0f204e4d 2023-04-16) 2023-04-17 09:40:38 +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.

Alternatively you can download a pre built version from the releases page.

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.

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.