Next: Low-level development tools, Previous: Invoking the compiler, Up: Compiling to Wasm [Contents][Index]
The (hoot reflect)
module provides an interface for inspecting
and manipulating Scheme values that live within Wasm modules. This is
the primary interface for testing compiler output directly from Guile.
Instantiate and return a new Hoot module using the compiled Scheme Wasm module scheme-wasm and the reflection module reflector. If reflector is not specified, a new reflector instance will be created.
Optionally, imports may contain a 2-tier association list structure of imported functions, globals, tables, and memories:
`(("math" . (("random" . ,(lambda (x) (random x))))))
Invoke the load thunk of module and return the reflected result values.
Compile exp and return the result.
Optionally, imports may contain a 2-tier association list
structure of imported functions, globals, tables, and memories. See
hoot-instantiate
for an example of such a structure.
Compile proc-exp and all arg-exps, call the procedure with the arguments, then return the results.
Return #t
if obj is a Hoot module.
Return the reflection module for module.
Return the Wasm instance for module.
Return #t
if obj is a reflector.
Return the Wasm instance of reflector.
Return the association list of ABI imports for reflector.
Return #t
if obj is a Hoot object.
Return #t
if obj is a Hoot complex number.
Return the real part of complex.
Return the imaginary part of complex.
Return #t
if obj is a Hoot fraction.
Return the numerator of fraction
Return the denominator of fraction.
Return #t
if obj is a Hoot pair.
Return #t
if obj is a mutable Hoot pair.
Return the first element of pair.
Return the second element of pair.
Return #t
if obj is a Hoot vector.
Return #t
if obj is a mutable Hoot vector.
Return the length of vec.
Return the ith element of vec.
Return #t
if obj is a Hoot bytevector.
Return #t
if obj is a mutable Hoot bytevector.
Return the length of bv.
Return the ith byte of bv.
Return #t
if obj is a Hoot bitvector.
Return #t
if obj is a mutable Hoot bitvector.
Return the length of bv.
Return the ith bit of bv.
Return #t
if obj is a Hoot symbol.
Return the string name of sym.
Return #t
if obj is a Hoot keyword.
Return the name string of keyword.
Return #t
if obj is a mutable Hoot string.
Return the underlying string for str.
Return #t
if obj is a Hoot procedure.
Return #t
if obj is a Hoot variable.
Return #t
if obj is a Hoot atomic box.
Return #t
if obj is a Hoot hash table.
Return #t
if obj is a Hoot weak table.
Return #t
if obj is a Hoot fluid.
Return #t
if obj is a Hoot dynamic state.
Return #t
if obj is a Hoot syntax object.
Return #t
if obj is a Hoot port.
Return #t
if obj is a Hoot struct.
Next: Low-level development tools, Previous: Invoking the compiler, Up: Compiling to Wasm [Contents][Index]