MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / ssa_memory_definition

Method ssa_memory_definition

rust/src/high_level_il/function.rs:144–147  ·  view source on GitHub ↗
(&self, version: usize)

Source from the content-addressed store, hash-verified

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> {

Callers

nothing calls this directly

Calls 2

Tested by

no test coverage detected