B2R2


AsmWordBuilder Type

Builder for an array of AsmWords.

Constructors

Constructor Description

AsmWordBuilder(n)

Full Usage: AsmWordBuilder(n)

Parameters:
    n : int - The size of the internal buffer.

Returns: AsmWordBuilder

Initialize an IR statement builder of internal buffer size n.

n : int

The size of the internal buffer.

Returns: AsmWordBuilder

Instance members

Instance member Description

this.Append(stmt)

Full Usage: this.Append(stmt)

Parameters:
Returns: AsmWordBuilder

Append a new AsmWord to the builder.

stmt : AsmWord

AsmWord to add.

Returns: AsmWordBuilder

this.Finish()

Full Usage: this.Finish()

Returns: AsmWord[] Returns an array of AsmWords.

Create an array of AsmWords from the buffer.

Returns: AsmWord[]

Returns an array of AsmWords.