ConcStopReason Type
Represents the reason why concrete execution stopped.
Union cases
| Union case |
Description
|
|
|
|
Execution reached the configured instruction limit.
|
|
No instruction could be fetched or lifted at the given address.
|
|
Execution completed an instruction at the requested address.
|
|
Execution completed a function return.
|
|
Execution reached an address requested by a stop condition.
|
|
|
|
Execution reached a function return.
|
|
Execution reached a side-effect statement.
|
|
Execution stopped because an undefined value was observed.
|
|
A user-defined stop predicate requested termination.
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsEvaluationError
Returns: bool
|
|
Full Usage:
this.IsInstructionLimitReached
Returns: bool
|
|
Full Usage:
this.IsInvalidInstructionAddress
Returns: bool
|
|
Full Usage:
this.IsStoppedAfterAddress
Returns: bool
|
|
Full Usage:
this.IsStoppedAfterReturn
Returns: bool
|
|
Full Usage:
this.IsStoppedAtAddress
Returns: bool
|
|
Full Usage:
this.IsStoppedAtCall
Returns: bool
|
|
Full Usage:
this.IsStoppedAtReturn
Returns: bool
|
|
Full Usage:
this.IsStoppedAtSideEffect
Returns: bool
|
|
Full Usage:
this.IsUndefinedValue
Returns: bool
|
|
Full Usage:
this.IsUserStopConditionMet
Returns: bool
|
|
B2R2