Next: High-level development tools, Up: Compiling to Wasm [Contents][Index]
In Guile’s compiler tower, Scheme code goes through several transformations before being compiled to VM bytecode. Scheme is lowered to (Guile Reference)Tree-IL, which is then lowered to (Guile Reference)Continuation Passing Style(CPS), and then finally to (Guile Reference)Bytecode. Hoot adds an additional backend that compiles CPS to Wasm.
Currently, Hoot does not use Guile’s module system and instead peforms whole program compilation using a prelude that provides R7RS-small features (and also some Guile ones, like prompts.) Support for modules will be added in a future release.
For hooking the Hoot compiler up to a build system such as GNU Make,
invoke the guild compile-wasm
tool:
guild compile-wasm -o foo.wasm foo.scm
When writing Scheme intended to be compiled to the Wasm target, a
special form called %inline-wasm
is available for implementing
a section of code in WAT rather than Scheme. For example, here’s how
port?
is implemented:
(define (port? x) (%inline-wasm '(func (param $obj (ref eq)) (result (ref eq)) (if (ref eq) (ref.test $port (local.get $obj)) (then (ref.i31 (i32.const 17))) (else (ref.i31 (i32.const 1))))) x))
An inline Wasm form specifies a single function using WAT expressions
whose parameters and result types are all (ref eq)
, as well as
the Scheme variables that map to the parameters. The compiler then
transforms and splices the function body into the procedure.
Like Guile’s built-in compiler, the Hoot compiler can also be invoked
within Scheme. The (hoot compile)
module provides the
interface to the Wasm compiler backend.
Compile the Scheme expression exp to Wasm and return a Wasm
module. When import-abi? is #t
, the Wasm module will be
built such that it needs to import its ABI from another module. When
export-abi? is #t
, the Wasm module will be built such
that it exports its ABI functions. A typical use of these flags is to
export the ABI from one “main” module and then import that ABI into
any additional modules that are being used.
See (Guile Reference)Compiling Scheme Code for more information about invoking Guile’s compiler.
Like compile
, but read the Scheme expression from port.
Like compile
, but read the Scheme expression from
input-file.
Next: High-level development tools, Up: Compiling to Wasm [Contents][Index]