(&self, version: usize)
| 142 | } |
| 143 | |
| 144 | pub fn ssa_memory_definition(&self, version: usize) -> Option<HighLevelILInstruction> { |
| 145 | let index = unsafe { BNGetHighLevelILSSAMemoryDefinition(self.handle, version) }; |
| 146 | self.instruction_from_index(HighLevelInstructionIndex(index)) |
| 147 | } |
| 148 | |
| 149 | /// Gets all the instructions that use the given SSA variable. |
| 150 | pub fn ssa_variable_uses(&self, variable: SSAVariable) -> Array<HighLevelILInstruction> { |
nothing calls this directly
no test coverage detected