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

Method get_ssa_flag_value

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

Source from the content-addressed store, hash-verified

6051 return result
6052
6053 def get_ssa_flag_value(self, flag_ssa: SSAFlag) -> 'variable.RegisterValue':
6054 flag = self.arch.get_flag_index(flag_ssa.flag)
6055 value = core.BNGetLowLevelILSSAFlagValue(self.handle, flag, flag_ssa.version)
6056 result = variable.RegisterValue.from_BNRegisterValue(value, self._arch)
6057 return result
6058
6059 def get_medium_level_il_instruction_index(self,
6060 instr: InstructionIndex) -> Optional['mediumlevelil.InstructionIndex']:

Callers

nothing calls this directly

Calls 2

get_flag_indexMethod · 0.80
from_BNRegisterValueMethod · 0.80

Tested by

no test coverage detected