You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Denis Merigoux de5501bc47 Cretonne IL frontend: ILBuilder (#97) 7 years ago
docs Documentation fixes (#103) 7 years ago
filetests Start adding Intel 64-bit encodings. 7 years ago
lib Cretonne IL frontend: ILBuilder (#97) 7 years ago
misc/vim Track stack slot kinds. 8 years ago
src Update docopt dependency to 0.8.0. 8 years ago
tests Binary function names (#91) 8 years ago
.gitignore Add rusty-tags.* to .gitignore. 7 years ago
.travis.yml Install rustfmt as a separate Travis install step. 8 years ago
Cargo.toml Cretonne IL frontend: ILBuilder (#97) 7 years ago
LICENSE Cretonne README and LICENSE. 9 years ago
README.rst Remove spurious shell redirections from install commands. 8 years ago
check-rustfmt.sh Update rustfmt to 0.8.4; (#81) 8 years ago
format-all.sh Make sure we can find rustfmt. 8 years ago
test-all.sh Cretonne IL frontend: ILBuilder (#97) 7 years ago

README.rst

=======================
Cretonne Code Generator
=======================

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

*This is a work in progress that is not yet functional.*

.. image:: https://readthedocs.org/projects/cretonne/badge/?version=latest
:target: https://cretonne.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

.. image:: https://travis-ci.org/stoklund/cretonne.svg?branch=master
:target: https://travis-ci.org/stoklund/cretonne
:alt: Build Status

Cretonne is designed to be a code generator for WebAssembly with these design
goals:

No undefined behavior
Cretonne does not have a `nasal demons clause <http://www.catb.org/jargon/html/N/nasal-demons.html>`_, and it won't generate code
with unexpected behavior if invariants are broken.
Portable semantics
As far as possible, Cretonne's input language has well-defined semantics
that are the same on all target architectures. The semantics are usually
the same as WebAssembly's.
Fast sandbox verification
Cretonne's input language has a safe subset for sandboxed code. No advanced
analysis is required to verify memory safety as long as only the safe
instructions are used. The safe instruction set is expressive enough to
implement WebAssembly.
Scalable performance
Cretonne can be configured to generate code as quickly as possible, or it
can generate very good code at the cost of slower compile times.
Predictable performance
When optimizing, Cretonne focuses on adapting the target-independent IL to
the quirks of the target architecture. There are no advanced optimizations
that sometimes work, sometimes fail.

Building Cretonne
-----------------

Cretonne is using the Cargo package manager format. First, ensure you have
installed a current stable rust (stable, beta, and nightly should all work, but
only stable and beta are tested consistently). Then, change the working
directory to your clone of cretonne and run::

cargo build

This will create a *target/debug* directory where you can find the generated
binary.

To build the optimized binary for release::

cargo build --release

You can then run tests with::

./test-all.sh

Building the documentation
--------------------------

To build the Cretonne documentation, you need the `Sphinx documentation
generator <http://www.sphinx-doc.org/>`_::

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

We don't support Sphinx versions before 1.4 since the format of index tuples
has changed.