Header menu logo B2R2

E Type

IR Expressions. NOTE: You MUST create Expr/Stmt through the AST module. *NEVER* directly construct Expr nor Stmt.

Union cases

Union case Description

BinOp(BinOpType, RegType, Expr, Expr)

Full Usage: BinOp(BinOpType, RegType, Expr, Expr)

Parameters:

Binary operation such as add, sub, etc. The second argument is a result type after applying BinOp.

Item1 : BinOpType
Item2 : RegType
Item3 : Expr
Item4 : Expr

Cast(CastKind, RegType, Expr)

Full Usage: Cast(CastKind, RegType, Expr)

Parameters:

Type casting expression. The first argument is a casting type, and the second argument is a result type.

Item1 : CastKind
Item2 : RegType
Item3 : Expr

Extract(Expr, RegType, startPos)

Full Usage: Extract(Expr, RegType, startPos)

Parameters:

Extraction expression. The first argument is target expression, and the second argument is the number of bits for extraction, and the third is the start position.

Item1 : Expr
Item2 : RegType
startPos : int

FuncName string

Full Usage: FuncName string

Parameters:
    Item : string

Name of uninterpreted function.

Item : string

Ite(Expr, Expr, Expr)

Full Usage: Ite(Expr, Expr, Expr)

Parameters:

If-then-else expression. The first expression is a condition, and the second and the third are true and false expression respectively.

Item1 : Expr
Item2 : Expr
Item3 : Expr

Load(Endian, RegType, Expr)

Full Usage: Load(Endian, RegType, Expr)

Parameters:

Memory loading such as LE:[T_1:I32]

Item1 : Endian
Item2 : RegType
Item3 : Expr

Name Symbol

Full Usage: Name Symbol

Parameters:

Symbolic constant for labels.

Item : Symbol

Nil

Full Usage: Nil

Nil to represent cons cells. This should only be used with BinOpType.CONS.

Num BitVector

Full Usage: Num BitVector

Parameters:

A number. For example, (0x42:I32) is a 32-bit number 0x42

Item : BitVector

PCVar(RegType, string)

Full Usage: PCVar(RegType, string)

Parameters:

A variable that represents a Program Counter (PC) of a CPU.

Item1 : RegType
Item2 : string

RelOp(RelOpType, Expr, Expr)

Full Usage: RelOp(RelOpType, Expr, Expr)

Parameters:

Relative operation such as eq, lt, etc.

Item1 : RelOpType
Item2 : Expr
Item3 : Expr

TempVar(RegType, int)

Full Usage: TempVar(RegType, int)

Parameters:

A temporary variable represents an internal (imaginary) register. Names of temporary variables should always be affixed by an underscore (_) and a number. This is to make sure that any temporary variable is unique in a CFG. For example, a temporary variable T can be represented as (T_2:I32), where 2 is a unique number assigned to the variable.

Item1 : RegType
Item2 : int

UnOp(UnOpType, Expr)

Full Usage: UnOp(UnOpType, Expr)

Parameters:

Unary operation such as negation.

Item1 : UnOpType
Item2 : Expr

Undefined(RegType, string)

Full Usage: Undefined(RegType, string)

Parameters:

Undefined expression. This is rarely used, and it is a fatal error when we encounter this expression while evaluating a program. Some CPU manuals explicitly say that a register value is undefined after a certain operation. We model such cases with this expression.

Item1 : RegType
Item2 : string

Var(RegType, RegisterID, string)

Full Usage: Var(RegType, RegisterID, string)

Parameters:

A variable that represents a register of a CPU. Var (t, r, n) indicates a variable of type (t) that has RegisterID r and name (n). For example, (EAX:I32) represents the EAX register (of type I32). Note that name (n) is additional information that doesn't be used internally.

Item1 : RegType
Item2 : RegisterID
Item3 : string

Instance members

Instance member Description

this.IsBinOp

Full Usage: this.IsBinOp

Returns: bool
Returns: bool

this.IsCast

Full Usage: this.IsCast

Returns: bool
Returns: bool

this.IsExtract

Full Usage: this.IsExtract

Returns: bool
Returns: bool

this.IsFuncName

Full Usage: this.IsFuncName

Returns: bool
Returns: bool

this.IsIte

Full Usage: this.IsIte

Returns: bool
Returns: bool

this.IsLoad

Full Usage: this.IsLoad

Returns: bool
Returns: bool

this.IsName

Full Usage: this.IsName

Returns: bool
Returns: bool

this.IsNil

Full Usage: this.IsNil

Returns: bool
Returns: bool

this.IsNum

Full Usage: this.IsNum

Returns: bool
Returns: bool

this.IsPCVar

Full Usage: this.IsPCVar

Returns: bool
Returns: bool

this.IsRelOp

Full Usage: this.IsRelOp

Returns: bool
Returns: bool

this.IsTempVar

Full Usage: this.IsTempVar

Returns: bool
Returns: bool

this.IsUnOp

Full Usage: this.IsUnOp

Returns: bool
Returns: bool

this.IsUndefined

Full Usage: this.IsUndefined

Returns: bool
Returns: bool

this.IsVar

Full Usage: this.IsVar

Returns: bool
Returns: bool

Type something to start searching.