MCPcopy Index your code
hub / github.com/explodingcamera/tinywasm / exec_return_128

Method exec_return_128

crates/tinywasm/src/interpreter/executor.rs:1139–1144  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

1137
1138 #[inline(always)]
1139 fn exec_return_128(&mut self) -> bool {
1140 self.store.value_stack.stack_32.truncate_to(self.cf.locals_base.s32 as usize);
1141 self.store.value_stack.stack_64.truncate_to(self.cf.locals_base.s64 as usize);
1142 self.store.value_stack.stack_128.truncate_to_one_tail(self.cf.locals_base.s128 as usize);
1143 self.finish_return()
1144 }
1145
1146 fn exec_store_local_local<T: InternalValue + MemValue<N>, const N: usize>(
1147 &mut self,

Callers 1

execMethod · 0.80

Calls 3

truncate_to_one_tailMethod · 0.80
finish_returnMethod · 0.80
truncate_toMethod · 0.45

Tested by

no test coverage detected