Find a file
2018-09-18 18:41:41 +02:00
examples Implement function reference in static 2018-09-16 16:21:07 +02:00
src Rustup to rustc 1.30.0-nightly (cb6d2dfa8 2018-09-16) 2018-09-17 18:49:10 +02:00
.gitignore Perform some optimizations 2018-09-02 13:36:45 +02:00
.travis.yml Add RUST_BACKTRACE=1 to .travis.yml 2018-07-19 18:58:30 +02:00
0001-Disable-stdsimd-in-libcore.patch Better libcore building instructions and rustup 2018-07-19 18:41:37 +02:00
0002-Disable-u128-and-i128-in-libcore.patch Rustup to rustc 1.30.0-nightly (fc81e3624 2018-09-07) 2018-09-08 11:11:46 +02:00
0003-Remove-atomics-from-libcore.patch Simpler patch for "Remove atomics from libcore" 2018-07-30 16:09:09 +02:00
0004-Disable-future-and-task-modules-because-they-contain.patch Update patch 0004 to latest libcore 2018-08-30 20:48:42 +02:00
0005-Disable-some-more-unsupported-stuff-in-libcore.patch Implement place_field for unsized places 2018-09-16 15:28:27 +02:00
build.sh Fix jit 2018-09-09 14:45:23 +02:00
Cargo.lock Update Cargo.lock 2018-09-16 11:23:44 +02:00
Cargo.toml Rustup to rustc 1.30.0-nightly (2ab3eba30 2018-09-14) 2018-09-15 10:44:23 +02:00
copy.clif Fix some bugs 2018-08-08 10:26:25 +02: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
prepare_libcore.sh Improve prepare_libcore.sh 2018-09-18 18:41:41 +02:00
Readme.md Implement Box rvalue 2018-09-04 19:04:25 +02:00
rust-toolchain Initial commit 2018-06-17 18:05:11 +02:00

Work in progress cranelift codegen backend for rust

⚠⚠⚠ This doesn't do anything useful yet ⚠⚠⚠

Building

$ git clone https://github.com/bjorn3/rustc_codegen_cranelift.git
$ cd rustc_codegen_cranelift
$ rustup override set nightly
$ git submodule update --init
$ cargo build

Usage

$ rustc -Zcodegen-backend=$(pwd)/target/debug/librustc_codegen_cranelift.so my_crate.rs --crate-type lib -Og

Building libcore

$ rustup component add rust-src
$ ./prepare_libcore.sh
$ ./build.sh

This should stop with error: aborting due to <...> previous errors

Please submit a bug if not

Not yet supported

  • Checked binops

  • Drop glue

  • Building libraries

  • Other call abi's

  • Unsized types

  • Slice indexing

  • Sub slice

  • Inline assembly

  • Custom sections

Known errors

  • cranelift-module api seems to be used wrong, thus causing panic for some consts
  • cranelift-codegen doesn't have encodings for some instructions for types smaller than I32