Header menu logo B2R2

SideEffect Type

Side effect kinds.

Union cases

Union case Description

Breakpoint

Full Usage: Breakpoint

Software breakpoint.

ClockCounter

Full Usage: ClockCounter

CPU clock access, e.g., RDTSC on x86.

Delay

Full Usage: Delay

Delay the execution for a while, e.g. HLT, PAUSE on x86.

Exception string

Full Usage: Exception string

Parameters:
    Item : string

Synchronous event generated when the execution encounters error condition.

Item : string

Fence

Full Usage: Fence

Memory fence operations, e.g., LFENCE/MFENCE/SFENCE on x86.

Interrupt int

Full Usage: Interrupt int

Parameters:
    Item : int

Asynchronous event triggered by software (e.g. INT on x86) or hardware.

Item : int

Lock

Full Usage: Lock

Acquire the lock. `Lock` and `Unlock` is used to mark a sequence of IR statements that need to be evaluated atomically.

ProcessorID

Full Usage: ProcessorID

Access CPU details, e.g., CPUID on x86.

SysCall

Full Usage: SysCall

System call.

Terminate

Full Usage: Terminate

Terminate the execution.

UndefinedInstr

Full Usage: UndefinedInstr

Explicitly undefined instruction, e.g., UD2 on x86.

Unlock

Full Usage: Unlock

Release the lock for IR evaluation. A sequence of IR statements in between a `Lock` and `Unlock` should be evaluated atomically.

UnsupportedExtension

Full Usage: UnsupportedExtension

Unsupported processor extension.

UnsupportedFAR

Full Usage: UnsupportedFAR

Unsupported FAR branching.

UnsupportedFP

Full Usage: UnsupportedFP

Unsupported floating point operations.

UnsupportedPrivInstr

Full Usage: UnsupportedPrivInstr

Unsupported privileged instructions.

Instance members

Instance member Description

this.IsBreakpoint

Full Usage: this.IsBreakpoint

Returns: bool
Returns: bool

this.IsClockCounter

Full Usage: this.IsClockCounter

Returns: bool
Returns: bool

this.IsDelay

Full Usage: this.IsDelay

Returns: bool
Returns: bool

this.IsException

Full Usage: this.IsException

Returns: bool
Returns: bool

this.IsFence

Full Usage: this.IsFence

Returns: bool
Returns: bool

this.IsInterrupt

Full Usage: this.IsInterrupt

Returns: bool
Returns: bool

this.IsLock

Full Usage: this.IsLock

Returns: bool
Returns: bool

this.IsProcessorID

Full Usage: this.IsProcessorID

Returns: bool
Returns: bool

this.IsSysCall

Full Usage: this.IsSysCall

Returns: bool
Returns: bool

this.IsTerminate

Full Usage: this.IsTerminate

Returns: bool
Returns: bool

this.IsUndefinedInstr

Full Usage: this.IsUndefinedInstr

Returns: bool
Returns: bool

this.IsUnlock

Full Usage: this.IsUnlock

Returns: bool
Returns: bool

this.IsUnsupportedExtension

Full Usage: this.IsUnsupportedExtension

Returns: bool
Returns: bool

this.IsUnsupportedFAR

Full Usage: this.IsUnsupportedFAR

Returns: bool
Returns: bool

this.IsUnsupportedFP

Full Usage: this.IsUnsupportedFP

Returns: bool
Returns: bool

this.IsUnsupportedPrivInstr

Full Usage: this.IsUnsupportedPrivInstr

Returns: bool
Returns: bool

Type something to start searching.