(&mut self, jump_ip: usize, target: usize)
| 629 | } |
| 630 | |
| 631 | fn patch_jump_if_zero(&mut self, jump_ip: usize, target: usize) { |
| 632 | if let Instruction::JumpIfZero32(ip) = &mut self.instructions[jump_ip] { |
| 633 | *ip = target as u32; |
| 634 | } |
| 635 | } |
| 636 | |
| 637 | fn label_keep_counts(label_types: &[wasmparser::ValType]) -> (u16, u16, u16) { |
| 638 | let (mut c32, mut c64, mut c128) = (0, 0, 0); |
no outgoing calls
no test coverage detected