Go to file
bjorn3 6129921529 More 128bit support
* UnOp::Neg
* ctpop
* bitreverse

Also replaces `if let Some(64u128) = ...` with `if ... = Some(u64u128)`
to be able to compile cg_clif using cg_clif, as cranelift_frontend::Switch
doesn't support i128 yet.
2019-10-06 15:51:43 +02:00
build_sysroot Reenable debug assertions for libstd on macOS 2019-09-14 12:49:23 +02:00
crate_patches
example Add extern type pointer cast tests 2019-09-21 11:32:11 +02:00
patches Rustup to rustc 1.40.0-nightly (787005079 2019-10-04) 2019-10-06 10:41:15 +02:00
src More 128bit support 2019-10-06 15:51:43 +02:00
.gitignore
.travis.yml Improve ci times 2019-08-10 14:22:22 +02:00
abc.cpp
Cargo.lock Update dependencies 2019-10-04 21:11:58 +02:00
cargo.sh
Cargo.toml Switch back to crates.io version of gimli 2019-10-03 18:54:30 +02:00
clean_all.sh Remove simple-raytracer too in clean_all.sh 2019-09-12 20:22:09 +02:00
config.sh Rustup to rustc 1.40.0-nightly (2daa404e9 2019-10-02) 2019-10-03 17:22:01 +02:00
copy.clif
flamegraph.sh
LICENSE-APACHE
LICENSE-MIT
prepare.sh Add ebobby/simple-raytracer as benchmark 2019-08-30 17:31:37 +02:00
Readme.md Update Readme.md 2019-09-20 09:54:23 +02:00
rust-toolchain
test.sh Correctly align offset for dst field projections 2019-09-02 20:09:37 +02:00

WIP Cranelift codegen backend for rust

⚠⚠⚠ Threads and certain kinds of FFI don't work yet. ⚠⚠⚠

Building

$ git clone https://github.com/bjorn3/rustc_codegen_cranelift.git
$ cd rustc_codegen_cranelift
$ ./prepare.sh # download and patch sysroot src and install hyperfine for benchmarking
$ ./test.sh

Usage

$cg_clif_dir is the directory you cloned this repo into in the following instruction.

Cargo

$ $cg_clif_dir/cargo.sh run

Rustc

$ rustc -Cpanic=abort -Zcodegen-backend=$cg_clif_dir/target/debug/librustc_codegen_cranelift.so --sysroot $cg_clif_dir/build_sysroot/sysroot my_crate.rs

Not yet supported

Troubleshooting

Can't compile

Try updating your nightly compiler. You can try to use an nightly a day or two older if updating rustc doesn't fix it. If you still can't compile it, please fill an issue.