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

Method no_ret

python/lowlevelil.py:5133–5141  ·  view source on GitHub ↗

``no_ret`` returns an expression that halts disassembly :param ILSourceLocation loc: location of returned expression :return: The expression ``noreturn`` :rtype: ExpressionIndex

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

Source from the content-addressed store, hash-verified

5131 return self.expr(LowLevelILOperation.LLIL_RET, dest, source_location=loc)
5132
5133 def no_ret(self, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex:
5134 """
5135 ``no_ret`` returns an expression that halts disassembly
5136
5137 :param ILSourceLocation loc: location of returned expression
5138 :return: The expression ``noreturn``
5139 :rtype: ExpressionIndex
5140 """
5141 return self.expr(LowLevelILOperation.LLIL_NORET, source_location=loc)
5142
5143 def flag_condition(
5144 self, cond: Union[str, LowLevelILFlagCondition, int],

Callers 1

instruction_llilMethod · 0.45

Calls 1

exprMethod · 0.95

Tested by

no test coverage detected