VarKind Type
Represents the kind of a variable.
Union cases
| Union case |
Description
|
|
Memory instance. The optional field is used only when the memory address is a constant.
|
|
Regular variable that represents a register.
|
Full Usage:
StackLocal int
Parameters:
int
|
Stack local variable at a specific offset.
|
Full Usage:
Temporary int
Parameters:
int
|
Temporary variable that represents a temporary variable used in our IR.
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsMemory
Returns: bool
|
|
Full Usage:
this.IsRegular
Returns: bool
|
|
Full Usage:
this.IsStackLocal
Returns: bool
|
|
Full Usage:
this.IsTemporary
Returns: bool
|
|
B2R2