[][src]Module cranelift_interpreter::frame

Implements a call frame (activation record) for the Cranelift interpreter.

Structs

Frame

Holds the mutable elements of an interpretation. At some point I thought about using Cell/RefCell to do field-level mutability, thinking that otherwise I would have to pass around a mutable object (for inst and registers) and an immutable one (for function, could be self)--in the end I decided to do exactly that but perhaps one day that will become untenable.