├── .gitignore ├── .rustfmt.toml ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── bin └── toy.rs ├── frontend.rs ├── jit.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/cranelift-jit-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/cranelift-jit-demo/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/cranelift-jit-demo/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/cranelift-jit-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/cranelift-jit-demo/HEAD/README.md -------------------------------------------------------------------------------- /src/bin/toy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/cranelift-jit-demo/HEAD/src/bin/toy.rs -------------------------------------------------------------------------------- /src/frontend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/cranelift-jit-demo/HEAD/src/frontend.rs -------------------------------------------------------------------------------- /src/jit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/cranelift-jit-demo/HEAD/src/jit.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/cranelift-jit-demo/HEAD/src/lib.rs --------------------------------------------------------------------------------