Get the IR block for a BlockIndex, if one exists.
(&self, block: BlockIndex)
| 1508 | |
| 1509 | /// Get the IR block for a BlockIndex, if one exists. |
| 1510 | pub fn bindex_to_bb(&self, block: BlockIndex) -> Option<ir::Block> { |
| 1511 | self.block_order.lowered_order()[block.index()].orig_block() |
| 1512 | } |
| 1513 | |
| 1514 | /// Get the user stack map associated with the given forward instruction index. |
| 1515 | pub fn get_user_stack_map(&self, inst: InsnIndex) -> Option<&ir::UserStackMap> { |
no test coverage detected