2021-02-01 03:11:46 -06:00
# Cranelift codegen backend for rust
2018-07-18 04:55:32 -05:00
2020-12-27 03:30:38 -06: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-03 04:00:04 -06: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-06-25 11:01:55 -05:00
2020-11-03 04:00:04 -06:00
## Building and testing
2018-07-18 04:55:32 -05:00
```bash
2023-01-24 11:56:42 -06:00
$ git clone https://github.com/bjorn3/rustc_codegen_cranelift
2018-07-18 04:55:32 -05:00
$ cd rustc_codegen_cranelift
2023-01-24 11:56:42 -06:00
$ ./y.rs prepare
2021-07-07 04:14:20 -05:00
$ ./y.rs build
2018-07-18 04:55:32 -05:00
```
2020-11-03 04:00:04 -06:00
To run the test suite replace the last command with:
```bash
$ ./test.sh
```
2023-01-24 11:56:42 -06:00
For more docs on how to build and test see [build_system/usage.txt ](build_system/usage.txt ) or the help message of `./y.rs` .
2020-11-03 04:00:04 -06:00
2023-04-29 07:00:43 -05:00
Alternatively you can download a pre built version from the [releases] page.
2020-11-03 04:00:04 -06:00
2023-04-29 07:00:43 -05:00
[releases]: https://github.com/bjorn3/rustc_codegen_cranelift/releases/tag/dev
2020-11-03 04:00:04 -06:00
2018-07-18 04:55:32 -05:00
## Usage
2020-06-25 10:59:46 -05:00
rustc_codegen_cranelift can be used as a near-drop-in replacement for `cargo build` or `cargo run` for existing projects.
2021-07-07 04:14:20 -05:00
Assuming `$cg_clif_dir` is the directory you cloned this repo into and you followed the instructions (`y.rs prepare` and `y.rs build` or `test.sh` ).
2019-01-26 10:03:35 -06:00
2020-06-25 10:59:46 -05:00
In the directory with your project (where you can do the usual `cargo build` ), run:
2018-07-18 04:55:32 -05:00
```bash
2022-12-14 12:30:46 -06:00
$ $cg_clif_dir/dist/cargo-clif build
2018-07-18 06:35:03 -05:00
```
2021-03-29 03:45:09 -05:00
This will build your project with rustc_codegen_cranelift instead of the usual LLVM backend.
2020-05-05 05:06:15 -05:00
2021-03-29 03:45:09 -05:00
For additional ways to use rustc_codegen_cranelift like the JIT mode see [usage.md ](docs/usage.md ).
2020-05-05 05:06:15 -05:00
2021-04-30 07:49:58 -05:00
## Configuration
2020-03-12 05:17:19 -05:00
2021-04-30 07:49:58 -05:00
See the documentation on the `BackendConfig` struct in [config.rs ](src/config.rs ) for all
configuration options.
2019-09-12 13:27:10 -05:00
2018-07-18 04:55:32 -05:00
## Not yet supported
2021-02-01 03:11:46 -06:00
* Inline assembly ([no cranelift support](https://github.com/bytecodealliance/wasmtime/issues/1041))
2022-08-24 11:40:58 -05:00
* On UNIX there is support for invoking an external assembler for `global_asm!` and `asm!` .
2023-01-24 11:56:42 -06:00
* SIMD ([tracked here](https://github.com/bjorn3/rustc_codegen_cranelift/issues/171), `std::simd` fully works, `std::arch` is partially supported)
* Unwinding on panics ([no cranelift support](https://github.com/bytecodealliance/wasmtime/issues/1677), `-Cpanic=abort` is enabled by default)
2021-03-29 03:45:09 -05:00
## License
Licensed under either of
* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or
http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
http://opensource.org/licenses/MIT)
at your option.
### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you shall be dual licensed as above, without any
additional terms or conditions.