(
&self,
obj: &mut Object<'static>,
funcs: &[(String, FuncKey, Box<dyn Any + Send + Sync>)],
resolve_reloc: &dyn Fn(usize, wasmtime_environ::FuncKey) -> usize,
)
| 178 | } |
| 179 | |
| 180 | fn append_code( |
| 181 | &self, |
| 182 | obj: &mut Object<'static>, |
| 183 | funcs: &[(String, FuncKey, Box<dyn Any + Send + Sync>)], |
| 184 | resolve_reloc: &dyn Fn(usize, wasmtime_environ::FuncKey) -> usize, |
| 185 | ) -> Result<Vec<(SymbolId, FunctionLoc)>> { |
| 186 | self.trampolines.append_code(obj, funcs, resolve_reloc) |
| 187 | } |
| 188 | |
| 189 | fn triple(&self) -> &target_lexicon::Triple { |
| 190 | self.isa.triple() |
no outgoing calls
no test coverage detected