(&mut self, branch_protection: BranchProtection)
| 183 | } |
| 184 | |
| 185 | fn finalize(&mut self, branch_protection: BranchProtection) -> ModuleResult<()> { |
| 186 | self.readonly.set_readonly()?; |
| 187 | self.code.set_readable_and_executable(branch_protection) |
| 188 | } |
| 189 | |
| 190 | fn allocate(&mut self, size: usize, align: u64, kind: JITMemoryKind) -> io::Result<*mut u8> { |
| 191 | match kind { |
nothing calls this directly
no test coverage detected