Lines Matching refs:Function
194 struct Function(u32); struct
195 wasmtime_environ::entity_impl!(Function);
199 calls: SecondaryMap<Function, Vec<Function>>,
211 impl Graph<Function> for Functions {
213 = wasmtime_environ::Keys<Function>
222 = core::iter::Copied<core::slice::Iter<'a, Function>>
226 fn successors(&self, f: Function) -> Self::SuccessorsIter<'_> { in successors()
233 let f = Function::from_u32(f); in define_func()
243 let caller = Function::from_u32(caller); in define_call()
244 let callee = Function::from_u32(callee); in define_call()
260 fn stratify(&self) -> Strata<Function> { in stratify() argument