Returns a reference to the machine code generated for this function compilation.
(&self)
| 629 | |
| 630 | /// Returns a reference to the machine code generated for this function compilation. |
| 631 | pub fn code_buffer(&self) -> &[u8] { |
| 632 | self.buffer.data() |
| 633 | } |
| 634 | |
| 635 | /// Get the disassembly of the buffer, using the given capstone context. |
| 636 | #[cfg(feature = "disas")] |
no test coverage detected