A cranelift powered optimizing brainfuck compiler suite.
Cranefack provides a command line utility to run, compile and benchmark programs.
shell
cargo install cranefack-cli
Run a program with interpreter or jit.
Passing the -v
option prints some statistics and execution time.
```text
USAGE:
cranefack run [FLAGS] [OPTIONS]
FLAGS:
--debug-optimizations Print statistics for optimization passes
-j, --jit Use JIT compiler
-v, --verbose
--wrapping-is-ub Wrapping overflows are undefined behavior during optimization
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
--jit-level
ARGS:
Compile the program.
As of now this will create an assembly like representation by default that is only useful for debugging.
In case you need something to compile into a native binary you can use the rust
output format to get ugly rust code
that can be compiled with rustc:
shell
cranefack compile -f=rust some_app.bf > some_app.rs
rustc -O some_app.rs
./some_app
```text
USAGE:
cranefack compile [FLAGS] [OPTIONS]
FLAGS:
--debug-optimizations Print statistics for optimization passes
-v, --verbose
--wrapping-is-ub Wrapping overflows are undefined behavior during optimization
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-f, --format
ARGS:
Runs a program with different optimization settings and returns a table this the time for each program run.
```text
USAGE:
cranefack benchmark [FLAGS] [OPTIONS]
FLAGS: -j, --jit Only benchmark jit -o, --optimized-only Don't benchmark O0 -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-i, --iterations
ARGS:
To use cranefack as a library add the following to your Cargo.toml dependencies:
toml
cranefack = "0.4"
To run a program with jit compilation:
```rust use std::error::Error; use cranefack::{parse, optimizewithconfig, OptimizeConfig, CompiledJitModule};
fn main() -> Result<(), Box
// Parse program
let mut program = parse("++[<].")?;
// Create optimization config for level 2
let opt_level = OptimizeConfig::o2();
// Optimize with optimization level 2
optimize_with_config(&mut program, &opt_level);
// Compile program into module
let module = CompiledJitModule::new(&program, &opt_level)?;
// Execute compiled module reading from stdin and writing to stdout
module.execute(std::io::stdin(), std::io::stdout());
Ok(())
} ```
This project is licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in cranefack by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.