2018-07-18 11:55:32 +02:00
|
|
|
# Work in progress cranelift codegen backend for rust
|
|
|
|
|
|
|
|
> ⚠⚠⚠ This doesn't do anything useful yet ⚠⚠⚠
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
```bash
|
2018-07-18 13:35:03 +02:00
|
|
|
$ git clone https://github.com/bjorn3/rustc_codegen_cranelift.git
|
2018-07-18 11:55:32 +02:00
|
|
|
$ cd rustc_codegen_cranelift
|
2018-07-19 17:59:13 +02:00
|
|
|
$ rustup override set nightly
|
2018-07-18 11:55:32 +02:00
|
|
|
$ git submodule update --init
|
|
|
|
$ cargo build
|
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ 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.
|
|
|
|
|
2018-07-18 13:35:03 +02:00
|
|
|
## Building libcore
|
|
|
|
|
|
|
|
```bash
|
2018-07-19 18:41:37 +02:00
|
|
|
$ rustup component add rust-src
|
|
|
|
$ ./prepare_libcore.sh
|
2018-07-18 13:35:03 +02:00
|
|
|
$ ./build.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
> ⚠⚠⚠ You will get a panic because of unimplemented stuff ⚠⚠⚠
|
|
|
|
|
2018-07-18 11:55:32 +02:00
|
|
|
## Not yet supported
|
|
|
|
|
|
|
|
* [ ] Checked binops
|
|
|
|
* [ ] Statics
|
|
|
|
* [ ] Drop glue
|
|
|
|
|
|
|
|
* [ ] Building libraries
|
|
|
|
* [ ] Other call abi's
|
|
|
|
* [ ] Unsized types
|
|
|
|
* [ ] Slice indexing
|
|
|
|
* [ ] Sub slice
|
|
|
|
* [ ] Closures
|
|
|
|
* [ ] Some rvalue's
|
|
|
|
|
|
|
|
* [ ] Inline assembly
|
2018-07-18 16:29:40 +02:00
|
|
|
* [ ] 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
|