Get the stack map entries associated with the given instruction.
(&self, inst: Inst)
| 604 | |
| 605 | /// Get the stack map entries associated with the given instruction. |
| 606 | pub fn user_stack_map_entries(&self, inst: Inst) -> Option<&[UserStackMapEntry]> { |
| 607 | self.user_stack_maps.get(&inst).map(|es| &**es) |
| 608 | } |
| 609 | |
| 610 | /// Append a new stack map entry for the given call instruction. |
| 611 | /// |
no test coverage detected