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

Method _get_intrinsic

python/mediumlevelil.py:1020–1024  ·  view source on GitHub ↗
(self, operand_index: int)

Source from the content-addressed store, hash-verified

1018 return MediumLevelILInstruction.create(self.function, ExpressionIndex(self.instr.operands[operand_index]))
1019
1020 def _get_intrinsic(self, operand_index: int) -> 'lowlevelil.ILIntrinsic':
1021 assert self.function.arch is not None, "Attempting to create ILIntrinsic from function with no Architecture"
1022 return lowlevelil.ILIntrinsic(
1023 self.function.arch, architecture.IntrinsicIndex(self.instr.operands[operand_index])
1024 )
1025
1026 def _get_var(self, operand_index: int) -> variable.Variable:
1027 value = self.instr.operands[operand_index]

Callers 3

intrinsicMethod · 0.45
intrinsicMethod · 0.45
intrinsicMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected