wasmtime/runtime/vm/
interpreter_disabled.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//! Stubs for when pulley is disabled at compile time.
//!
//! Note that this is structured so that these structures are all zero-sized and
//! `Option<Thing>` is also zero-sized so there should be no runtime cost for
//! having these structures plumbed around.

use crate::runtime::vm::VMOpaqueContext;
use crate::runtime::Uninhabited;
use crate::{Engine, ValRaw};
use core::marker;
use core::mem;
use core::ptr::NonNull;

pub struct Interpreter {
    empty: Uninhabited,
}

const _: () = assert!(mem::size_of::<Interpreter>() == 0);
const _: () = assert!(mem::size_of::<Option<Interpreter>>() == 0);

impl Interpreter {
    pub fn new(_engine: &Engine) -> Interpreter {
        unreachable!()
    }

    pub fn as_interpreter_ref(&mut self) -> InterpreterRef<'_> {
        match self.empty {}
    }
}

pub struct InterpreterRef<'a> {
    empty: Uninhabited,
    _marker: marker::PhantomData<&'a mut Interpreter>,
}

const _: () = assert!(mem::size_of::<InterpreterRef<'_>>() == 0);
const _: () = assert!(mem::size_of::<Option<InterpreterRef<'_>>>() == 0);

impl InterpreterRef<'_> {
    pub unsafe fn call(
        self,
        _bytecode: NonNull<u8>,
        _callee: NonNull<VMOpaqueContext>,
        _caller: NonNull<VMOpaqueContext>,
        _args_and_results: NonNull<[ValRaw]>,
    ) -> bool {
        match self.empty {}
    }
}