1/// This struct describes the handful of fields that Lucet-compiled programs may directly interact with, but
2/// are provided through VMContext.
3#[repr(C)]
4#[repr(align(8))]
5pub struct InstanceRuntimeData {
6pub globals_ptr: *mut i64,
7pub instruction_count: u64,
8}