Home
last modified time | relevance | path

Searched refs:lookup_code (Results 1 – 3 of 3) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/sys/unix/
H A Dmachports.rs43 use crate::runtime::module::lookup_code;
424 let Some((code, text_offset)) = lookup_code(pc as usize) else { in handle_exception()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/module/
H A Dregistry.rs340 pub fn lookup_code(pc: usize) -> Option<(Arc<CodeMemory>, usize)> { in lookup_code() function
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dtraphandlers.rs20 use crate::runtime::module::lookup_code;
1039 let Some((code, text_offset)) = lookup_code(regs.pc) else { in test_if_trap()