Empowering everyone to build reliable and efficient software.
Go to file
2018-07-18 12:25:01 +02:00
cranelift@1c3601789d Add cranelift submodule 2018-07-15 20:30:03 +02:00
src Add docs and expand some wildcard patterns 2018-07-18 11:55:52 +02:00
.gitignore Initial commit 2018-06-17 18:05:11 +02:00
.gitmodules Add cranelift submodule 2018-07-15 20:30:03 +02:00
0001-Disable-stdsimd-in-libcore.patch Remove some cretonne bug workarounds and add ir comments 2018-06-30 16:27:11 +02:00
0002-Disable-u128-and-i128-in-libcore.patch Add patch to disable u128 and i128 2018-07-18 12:25:01 +02:00
build.sh Add cranelift submodule 2018-07-15 20:30:03 +02:00
Cargo.lock Add cranelift submodule 2018-07-15 20:30:03 +02:00
Cargo.toml Add cranelift submodule 2018-07-15 20:30:03 +02:00
example.rs Implement some more stuff and ignore some unimplemented stuff instead of panicking 2018-07-14 16:39:49 +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
Readme.md Add docs and expand some wildcard patterns 2018-07-18 11:55:52 +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
$ cd rustc_codegen_cranelift
$ git submodule update --init
$ cargo build

Usage

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

You must compile with -Og, because checked binops are not yet supported.

Not yet supported

  • Checked binops

  • Statics

  • Drop glue

  • Ints cast

  • Building libraries

  • Other call abi's

  • Unsized types

  • Slice indexing

  • Sub slice

  • Closures

  • Some rvalue's

  • Inline assembly

  • Custom sections