(&mut self, target_ip: u32)
| 844 | |
| 845 | #[inline(always)] |
| 846 | fn exec_jump_zero_64(&mut self, target_ip: u32) -> bool { |
| 847 | let cond = <i64>::stack_pop(&mut self.store.value_stack) == 0; |
| 848 | self.jump_if(cond, target_ip) |
| 849 | } |
| 850 | |
| 851 | #[inline(always)] |
| 852 | fn exec_jump_non_zero_64(&mut self, target_ip: u32) -> bool { |