(&mut self, target_ip: u32)
| 850 | |
| 851 | #[inline(always)] |
| 852 | fn exec_jump_non_zero_64(&mut self, target_ip: u32) -> bool { |
| 853 | let cond = <i64>::stack_pop(&mut self.store.value_stack) != 0; |
| 854 | self.jump_if(cond, target_ip) |
| 855 | } |
| 856 | |
| 857 | #[inline(always)] |
| 858 | fn exec_jump_local_zero_32(&mut self, target_ip: u32, local: LocalAddr) -> bool { |