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

Method get_ssa_flag_definition

python/lowlevelil.py:6002–6007  ·  view source on GitHub ↗
(self, flag_ssa: SSAFlag)

Source from the content-addressed store, hash-verified

6000 return self[result]
6001
6002 def get_ssa_flag_definition(self, flag_ssa: SSAFlag) -> Optional[LowLevelILInstruction]:
6003 flag = self.arch.get_flag_index(flag_ssa.flag)
6004 result = core.BNGetLowLevelILSSAFlagDefinition(self.handle, flag, flag_ssa.version)
6005 if result >= core.BNGetLowLevelILInstructionCount(self.handle):
6006 return None
6007 return self[result]
6008
6009 def get_ssa_memory_definition(self, index: int) -> Optional[LowLevelILInstruction]:
6010 result = core.BNGetLowLevelILSSAMemoryDefinition(self.handle, index)

Callers

nothing calls this directly

Calls 1

get_flag_indexMethod · 0.80

Tested by

no test coverage detected