Go to file
dependabot-preview[bot] eb3d358346
Bump cranelift-codegen from 1c55eb1 to c202a8e
Bumps [cranelift-codegen](https://github.com/bytecodealliance/wasmtime) from `1c55eb1` to `c202a8e`.
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Commits](1c55eb1a8b...c202a8eeaf)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-03-23 05:22:45 +00:00
.github/workflows [gh actions] Run the compile step with the same arguments as test.sh 2020-03-17 15:07:55 +01:00
build_sysroot Rustup to rustc 1.43.0-nightly (c20d7eecb 2020-03-11) 2020-03-12 21:04:00 +01:00
example Fix it 2020-03-18 20:33:29 +01:00
patches Don't disable inline asm in hint::spin_loop 2020-03-11 14:08:54 +01:00
src Fix some FIXME's and add some new FIXME's 2020-03-21 16:52:02 +01:00
.gitignore
abc.cpp
Cargo.lock Bump cranelift-codegen from 1c55eb1 to c202a8e 2020-03-23 05:22:45 +00:00
cargo.sh
Cargo.toml Fix Cranelift patch paths 2020-03-08 12:25:11 +01:00
clean_all.sh
config.sh Better use of env vars 2020-03-12 11:19:26 +01:00
copy.clif
flamegraph.sh
LICENSE-APACHE
LICENSE-MIT
prepare.sh
Readme.md Update links for the merge of the Cranelift and Wasmtime repos 2020-03-14 20:52:20 +01:00
rust-toolchain Rustup to rustc 1.44.0-nightly (7ceebd98c 2020-03-17) 2020-03-18 20:12:19 +01:00
rustup.sh
test.sh Better use of env vars 2020-03-12 11:19:26 +01:00

WIP Cranelift codegen backend for rust

⚠⚠⚠ 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 --release

Usage

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

Cargo

$ CHANNEL="release" $cg_clif_dir/cargo.sh run

If you compiled cg_clif in debug mode you should use CHANNEL="debug" instead or omit CHANNEL="release" completely.

Rustc

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

Env vars

CG_CLIF_JIT
Enable JIT mode to immediately run a program instead of writing an executable file.
CG_CLIF_JIT_ARGS
When JIT mode is enable pass these arguments to the program.
CG_CLIF_INCR_CACHE_DISABLED
Don't cache object files in the incremental cache. Useful during development of cg_clif to make it possible to use incremental mode for all analyses performed by rustc without caching object files when their content should have been changed by a change to cg_clif.
CG_CLIF_DISPLAY_CG_TIME
Display the time it took to perform codegen for a crate

Not yet supported