Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
docs Stack Limit as an Argument Purpose (#372) Aug 4, 2018
filetests Add an `index_type` field to `Table`. Aug 28, 2018
fuzz Fix rustfmt errors. Aug 16, 2018
lib Implementing Deref in PrimaryMap turns out to be error-prone, so remo… Aug 29, 2018
media Add information about SpiderMonkey and rustc plans. Jan 25, 2018
misc/vim Update maintainers in VIM syntax highlighting. Aug 27, 2018
src Fix error not reported if at least one other error expected. (#485) Aug 28, 2018
tests Remove `Signature`'s `argument_bytes` field. Aug 28, 2018
wasmtests Track wasm reachability explicitly. Feb 26, 2018
.gitignore Rename Cretonne to Cranelift! Jul 13, 2018
.rustfmt.toml Add an empty .rustfmt.toml. Feb 21, 2018
.travis.yml Add `fast_finish = true` to .travis.yml. Aug 16, 2018
CONTRIBUTING.md Clarify that we use rustfmt-preview. Aug 27, 2018
Cargo.toml Bump cranelift-entity version to 0.20.1. Aug 29, 2018
FUZZING.md Rename Cretonne to Cranelift! Jul 13, 2018
LICENSE Change Cretonne's license to "Apache-2.0 WITH LLVM-exception". Jul 13, 2018
README.md Merge branch 'master' into bforest Aug 13, 2018
check-clippy.sh Don't display stderr for the testing command in check.sh's runif; Jul 11, 2018
clippy-all.sh Rename Cretonne to Cranelift! Jul 13, 2018
clippy.toml Use clippy (#276) Mar 22, 2018
format-all.sh Fix shellcheck warnings in shell scripts. Jun 12, 2018
publish-all.sh Bump version to 0.20.0 Aug 28, 2018
rustc.md Add a note about the "rustc" tag in the issue tracker. Aug 3, 2018
spidermonkey.md Convert top-level *.rst files to markdown. Jul 17, 2018
test-all.sh Factor out a repeated string, and reduce the length of a long line. Aug 14, 2018
test-no_std.sh Fix test-no_std.sh to handle the case where topdir is ".". Jul 2, 2018

README.md

Cranelift Code Generator

Cranelift is a low-level retargetable code generator. It translates a target-independent intermediate representation into executable machine code.

Documentation Status Build Status Gitter chat

For more information, see the documentation.

Status

Cranelift currently supports enough functionality to run a wide variety of programs, including all the functionality needed to execute WebAssembly MVP functions, although it needs to be used within an external WebAssembly embedding to be part of a complete WebAssembly implementation.

The x86-64 backend is currently the most complete and stable; other architectures are in various stages of development. Cranelift currently supports the System V AMD64 ABI calling convention used on many platforms, but does not yet support the Windows x64 calling convention. The performance of code produced by Cranelift is not yet impressive, though we have plans to fix that.

The core codegen crates have minimal dependencies, support no_std mode, and do not require any host floating-point support.

Cranelift does not yet perform mitigations for Spectre or related security issues, though it may do so in the future. It does not currently make any security-relevant instruction timing guarantees. It has seen a fair amount of testing and fuzzing, although more work is needed before it would be ready for a production use case.

Cranelift's APIs are not yet stable.

Cranelift currently supports Rust 1.25.1 and later. We intend to always support the latest stable Rust. And, we currently support the version of Rust in the latest Ubuntu LTS, although whether we will always do so is not yet determined. Cranelift requires Python 2.7 or Python 3 to build.

Planned uses

Cranelift is designed to be a code generator for WebAssembly, but it is general enough to be useful elsewhere too. The initial planned uses that affected its design are:

Building Cranelift

Cranelift uses a conventional Cargo build process.

Cranelift consists of a collection of crates, and uses a Cargo Workspace, so for some cargo commands, such as cargo test, the --all is needed to tell cargo to visit all of the crates.

test-all.sh at the top level is a script which runs all the cargo tests and also performs code format, lint, and documentation checks.

Building with no_std

The following crates support `no_std`:

  • cranelift-entity
  • cranelift-bforest
  • cranelift-codegen
  • cranelift-frontend
  • cranelift-native
  • cranelift-wasm
  • cranelift-module
  • cranelift-simplejit
  • cranelift

To use no_std mode, disable the std feature and enable the core feature. This currently requires nightly rust.

For example, to build `cranelift-codegen`:

cd lib/codegen
cargo build --no-default-features --features core

Or, when using cranelift-codegen as a dependency (in Cargo.toml):

[dependency.cranelift-codegen]
...
default-features = false
features = ["core"]

no_std support is currently "best effort". We won't try to break it, and we'll accept patches fixing problems, however we don't expect all developers to build and test no_std when submitting patches. Accordingly, the ./test-all.sh script does not test no_std.

There is a separate ./test-no_std.sh script that tests the no_std support in packages which support it.

It's important to note that cranelift still needs liballoc to compile. Thus, whatever environment is used must implement an allocator.

Also, to allow the use of HashMaps with no_std, an external crate called hashmap_core is pulled in (via the core feature). This is mostly the same as std::collections::HashMap, except that it doesn't have DOS protection. Just something to think about.

Building the documentation

To build the Cranelift documentation, you need the Sphinx documentation generator as well as Python 3::

$ pip install sphinx sphinx-autobuild sphinx_rtd_theme
$ cd cranelift/docs
$ make html
$ open _build/html/index.html