Go to file
2018-08-09 11:16:46 +02:00
examples Implement float -> float and int -> float casts 2018-08-09 11:16:46 +02:00
src Implement float -> float and int -> float casts 2018-08-09 11:16:46 +02:00
.gitignore
.travis.yml
0001-Disable-stdsimd-in-libcore.patch
0002-Disable-u128-and-i128-in-libcore.patch
0003-Remove-atomics-from-libcore.patch Simpler patch for "Remove atomics from libcore" 2018-07-30 16:09:09 +02:00
0004-Disable-float-fmt-because-it-is-big.patch Add patch to disable float fmt, because it is big 2018-08-08 14:58:47 +02:00
0005-Disable-future-and-task-modules-because-they-contain.patch Fix some small bugs 2018-08-08 16:00:14 +02:00
build.sh Improve build.sh 2018-08-09 10:55:13 +02:00
Cargo.lock Add basic ssa analyzer 2018-08-09 10:46:56 +02:00
Cargo.toml Add basic ssa analyzer 2018-08-09 10:46:56 +02:00
copy.clif Fix some bugs 2018-08-08 10:26:25 +02:00
LICENSE-APACHE
LICENSE-MIT
prepare_libcore.sh
Readme.md Update message about crashing on libcore 2018-08-08 16:03:06 +02:00
rust-toolchain

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

  • Statics

  • Drop glue

  • Building libraries

  • Other call abi's

  • Unsized types

  • Slice indexing

  • Sub slice

  • Some rvalue's

  • 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