SymbRunStopReason Type
Represents a non-target state where exploration stopped.
Union cases
| Union case |
Description
|
|
Exploration reached the configured maximum path depth.
|
|
Evaluation failed while executing the instruction at the given address.
|
|
No instruction could be fetched or lifted at the given address.
|
|
A query needed a solver, but none was available.
|
Full Usage:
RunTimeoutReached timeout
Parameters:
int
|
Exploration reached the configured run timeout.
|
|
Evaluation reached a LowUIR statement with architectural side effects.
|
|
Solver query failed at a matching state.
|
Full Usage:
StateLimitReached limit
Parameters:
int
|
Exploration reached the configured maximum expanded-state count.
|
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsDepthLimitReached
Returns: bool
|
|
Full Usage:
this.IsEvaluationFailed
Returns: bool
|
|
Full Usage:
this.IsInvalidInstructionStopped
Returns: bool
|
|
Full Usage:
this.IsMissingSolverForQuery
Returns: bool
|
|
Full Usage:
this.IsRunTimeoutReached
Returns: bool
|
|
Full Usage:
this.IsSideEffectStopped
Returns: bool
|
|
Full Usage:
this.IsSolverQueryFailed
Returns: bool
|
|
Full Usage:
this.IsStateLimitReached
Returns: bool
|
|
Full Usage:
this.IsStoppedAtCall
Returns: bool
|
|
B2R2