Module interpreter

Source
Expand description

Cranelift IR interpreter.

This module partially contains the logic for interpreting Cranelift IR.

Structs§

Interpreter
The Cranelift interpreter; this contains some high-level functions to control the interpreter’s flow. The interpreter state is defined separately (see InterpreterState) as the execution semantics for each Cranelift instruction (see step).
InterpreterState
Maintains the Interpreter’s state, implementing the State trait.

Enums§

FuelResult
The result of consuming fuel. Signals if the caller should stop or continue.
InterpreterError
The ways interpretation can fail.

Type Aliases§

LibCallHandler
LibCallValues