rust/Readme.md

109 lines
3.3 KiB
Markdown
Raw Normal View History

# Cranelift codegen backend for rust
2020-12-13 10:58:47 +01:00
The goal of this project is to create an alternative codegen backend for the rust compiler based on [Cranelift](https://github.com/bytecodealliance/wasmtime/blob/main/cranelift).
2020-11-02 18:16:57 +01:00
This has the potential to improve compilation times in debug mode.
If your project doesn't use any of the things listed under "Not yet supported", it should work fine.
If not please open an issue.
2020-11-01 19:51:35 +01:00
## Building and testing
```bash
2018-07-18 13:35:03 +02:00
$ git clone https://github.com/bjorn3/rustc_codegen_cranelift.git
$ cd rustc_codegen_cranelift
2019-04-14 10:49:07 +02:00
$ ./prepare.sh # download and patch sysroot src and install hyperfine for benchmarking
2020-11-02 18:16:57 +01:00
$ ./build.sh
```
2020-11-02 18:16:57 +01:00
To run the test suite replace the last command with:
2020-11-01 19:51:35 +01:00
```bash
2020-11-02 18:16:57 +01:00
$ ./test.sh
2020-11-01 19:51:35 +01:00
```
2020-11-02 18:16:57 +01:00
This will implicitly build cg_clif too. Both `build.sh` and `test.sh` accept a `--debug` argument to
build in debug mode.
2020-11-02 18:24:21 +01:00
Alternatively you can download a pre built version from [GHA]. It is listed in the artifacts section
of workflow runs. Unfortunately due to GHA restrictions you need to be logged in to access it.
[GHA]: https://github.com/bjorn3/rustc_codegen_cranelift/actions?query=branch%3Amaster+event%3Apush+is%3Asuccess
## Usage
rustc_codegen_cranelift can be used as a near-drop-in replacement for `cargo build` or `cargo run` for existing projects.
2020-11-02 18:16:57 +01:00
Assuming `$cg_clif_dir` is the directory you cloned this repo into and you followed the instructions (`prepare.sh` and `build.sh` or `test.sh`).
2019-01-26 17:03:35 +01:00
2019-09-12 20:27:10 +02:00
### Cargo
2019-01-26 17:03:35 +01:00
In the directory with your project (where you can do the usual `cargo build`), run:
```bash
2020-11-02 18:16:57 +01:00
$ $cg_clif_dir/build/cargo.sh run
```
This should build and run your project with rustc_codegen_cranelift instead of the usual LLVM backend.
2019-09-12 20:27:10 +02:00
### Rustc
2018-07-18 13:35:03 +02:00
> You should prefer using the Cargo method.
2018-07-18 13:35:03 +02:00
```bash
$ $cg_clif_dir/build/bin/cg_clif my_crate.rs
2020-09-29 18:41:59 +02:00
```
### Jit mode
In jit mode cg_clif will immediately execute your code without creating an executable file.
2020-09-29 19:50:03 +02:00
> This requires all dependencies to be available as dynamic library.
> The jit mode will probably need cargo integration to make this possible.
2020-09-29 18:41:59 +02:00
```bash
2020-11-02 18:16:57 +01:00
$ $cg_clif_dir/build/cargo.sh jit
2020-09-29 18:41:59 +02:00
```
or
```bash
2020-12-25 11:31:33 +01:00
$ $cg_clif_dir/build/bin/cg_clif -Cllvm-args=mode=jit -Cprefer-dynamic my_crate.rs
2018-07-18 13:35:03 +02:00
```
2020-12-25 12:13:11 +01:00
There is also an experimental lazy jit mode. In this mode functions are only compiled once they are
first called. It currently does not work with multi-threaded programs. When a not yet compiled
function is called from another thread than the main thread, you will get an ICE.
```bash
$ $cg_clif_dir/build/cargo.sh lazy-jit
```
### Shell
These are a few functions that allow you to easily run rust code from the shell using cg_clif as jit.
```bash
function jit_naked() {
2020-12-25 11:31:33 +01:00
echo "$@" | $cg_clif_dir/build/bin/cg_clif - -Cllvm-args=mode=jit -Cprefer-dynamic
}
function jit() {
jit_naked "fn main() { $@ }"
}
function jit_calc() {
jit 'println!("0x{:x}", ' $@ ');';
}
```
2020-03-12 11:17:19 +01:00
## Env vars
2020-09-23 16:44:02 +02:00
[see env_vars.md](docs/env_vars.md)
2019-09-12 20:27:10 +02:00
## Not yet supported
2021-01-31 14:15:50 +01:00
* Inline assembly ([no cranelift support](https://github.com/bytecodealliance/wasmtime/issues/1041))
* On Linux there is support for invoking an external assembler for `global_asm!` and `asm!`.
`llvm_asm!` will remain unimplemented forever. `asm!` doesn't yet support reg classes. You
have to specify specific registers instead.
2019-07-30 14:51:05 +02:00
* SIMD ([tracked here](https://github.com/bjorn3/rustc_codegen_cranelift/issues/171), some basic things work)