ShiftOp Type
Represents ARM32 shift operation types.
Union cases
| Union case |
Description
|
Full Usage:
ASR
|
Arithmetic Shift Right. |
Full Usage:
LSL
|
Logical Shift Left. |
Full Usage:
LSR
|
Logical Shift Right. |
Full Usage:
ROR
|
Rotate Right. |
Full Usage:
RRX
|
Rotate Right with Extend (RRX). |
Instance members
| Instance member |
Description
|
Full Usage:
this.IsASR
Returns: bool
|
|
Full Usage:
this.IsLSL
Returns: bool
|
|
Full Usage:
this.IsLSR
Returns: bool
|
|
Full Usage:
this.IsROR
Returns: bool
|
|
Full Usage:
this.IsRRX
Returns: bool
|
|
B2R2