Provide the address-map data for this EngineCode.
(&self)
| 190 | |
| 191 | /// Provide the address-map data for this EngineCode. |
| 192 | pub fn address_map_data(&self) -> &[u8] { |
| 193 | // We can use the original (uncloned) code image for this: it |
| 194 | // is just a slice of bytes that we interpret independent of |
| 195 | // location. |
| 196 | self.original_code.address_map_data() |
| 197 | } |
| 198 | |
| 199 | /// Provide the stack-map data for this EngineCode. |
| 200 | pub fn stack_map_data(&self) -> &[u8] { |
no outgoing calls
no test coverage detected