mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-17 15:13:24 +03:00
0f73b8fb4ce472d423260e43741becd6c331d044
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
⚠⚠⚠ You will get a panic because of unimplemented stuff ⚠⚠⚠
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
Languages
Rust
95.7%
Shell
1%
C
0.9%
JavaScript
0.6%
Python
0.4%
Other
1.1%