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

Method nop

python/lowlevelil.py:4190–4198  ·  view source on GitHub ↗

``nop`` no operation, this instruction does nothing :param ILSourceLocation loc: location of returned expression :return: The no operation expression :rtype: ExpressionIndex

(self, loc: Optional['ILSourceLocation'] = None)

Source from the content-addressed store, hash-verified

4188 return core.BNLowLevelILAddInstruction(self.handle, expr)
4189
4190 def nop(self, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex:
4191 """
4192 ``nop`` no operation, this instruction does nothing
4193
4194 :param ILSourceLocation loc: location of returned expression
4195 :return: The no operation expression
4196 :rtype: ExpressionIndex
4197 """
4198 return self.expr(LowLevelILOperation.LLIL_NOP, source_location=loc)
4199
4200 def set_reg(
4201 self, size: int, reg: 'architecture.RegisterType', value: ExpressionIndex,

Callers 3

lift_instructionFunction · 0.45
copy_expr_toMethod · 0.45
M6502Class · 0.45

Calls 1

exprMethod · 0.95

Tested by

no test coverage detected