Searched refs:InterpreterError (Results 1 – 2 of 2) sorted by relevance
| /wasmtime-44.0.1/cranelift/interpreter/src/ |
| H A D | interpreter.rs | 48 ) -> Result<ControlFlow<'a>, InterpreterError> { in call_by_name() argument 53 .ok_or_else(|| InterpreterError::UnknownFunctionName(func_name.to_string()))?; in call_by_name() 63 ) -> Result<ControlFlow<'a>, InterpreterError> { in call_by_index() argument 65 None => Err(InterpreterError::UnknownFunctionIndex(index)), in call_by_index() 75 ) -> Result<ControlFlow<'a>, InterpreterError> { in call() argument 93 fn block(&mut self, block: Block) -> Result<ControlFlow<'a>, InterpreterError> { in block() argument 100 return Err(InterpreterError::FuelExhausted); in block() 151 Err(InterpreterError::Unreachable) in block() 179 pub enum InterpreterError { enum 695 Err(InterpreterError::FuelExhausted) => {} in fuel()
|
| /wasmtime-44.0.1/fuzz/fuzz_targets/ |
| H A D | cranelift-fuzzgen.rs | 27 Interpreter, InterpreterError, InterpreterState, LibCallValues, 284 Err(InterpreterError::FuelExhausted) => RunResult::Timeout, in run_in_interpreter()
|