Header menu logo B2R2

ICFGBuildable<'FnCtx, 'GlCtx> Type

The interface for building a function.

Instance members

Instance member Description

this.Authorize

Full Usage: this.Authorize

Modifiers: abstract

Authorize the function builder to start building the function. This will change the state of the function builder to `InProgress`, meaning that the same function will not be scheduled again, and a single worker will soon start building the function.

this.Build

Full Usage: this.Build

Parameters:
Returns: CFGResult
Modifiers: abstract

Build the function CFG using the given strategy.

arg0 : ICFGBuildingStrategy<'FnCtx, 'GlCtx>
Returns: CFGResult

this.BuilderState

Full Usage: this.BuilderState

Returns: CFGBuilderState
Modifiers: abstract

The current state of the function builder.

Returns: CFGBuilderState

this.Context

Full Usage: this.Context

Returns: CFGBuildingContext<'FnCtx, 'GlCtx>
Modifiers: abstract

Return the current building context.

Returns: CFGBuildingContext<'FnCtx, 'GlCtx>

this.DelayedBuilderRequests

Full Usage: this.DelayedBuilderRequests

Returns: Queue<DelayedBuilderRequest>
Modifiers: abstract

Currently pending DelayedBuilderRequest(s). This queue can only be populated when another builder wants to update the status of this builder while it is running. Note that this queue is not thread-safe, and thus, it should be accessed only by the task manager.

Returns: Queue<DelayedBuilderRequest>

this.EntryPoint

Full Usage: this.EntryPoint

Returns: Addr
Modifiers: abstract

Entry point of the function that is being built.

Returns: Addr

this.Finalize

Full Usage: this.Finalize

Modifiers: abstract

Finalize the function building process. This will change the state of the function builder to `Finished`, meaning that the function has been built successfully.

this.ForceFinish

Full Usage: this.ForceFinish

Modifiers: abstract

Forcefully finish the function building process because of a cyclic dependency. This will change the state of the function builder to `ForceFinished`.

this.HasJumpTable

Full Usage: this.HasJumpTable

Returns: bool
Modifiers: abstract

Return whether the function has a jump table or not.

Returns: bool

this.Invalidate

Full Usage: this.Invalidate

Modifiers: abstract

Mark the state to be invalid. This means that there has been a fatal error while building the function.

this.MakeNew

Full Usage: this.MakeNew

Parameters:
Returns: ICFGBuildable<'FnCtx, 'GlCtx>
Modifiers: abstract

Make a new builder with a new agent by copying the current one.

arg0 : Agent<TaskManagerCommand<'FnCtx, 'GlCtx>>
Returns: ICFGBuildable<'FnCtx, 'GlCtx>

this.Mode

Full Usage: this.Mode

Returns: ArchOperationMode
Modifiers: abstract

Return the operation mode of the function.

Returns: ArchOperationMode

this.NextFunctionAddress

Full Usage: this.NextFunctionAddress

Modifiers: abstract

The address of the next function if there is any. Otherwise, this is None.

this.ReInitialize

Full Usage: this.ReInitialize

Modifiers: abstract

Re-initialize the function builder. This will change the state of the function builder to `Initialized`, meaning that the function can be scheduled again. This can only be called during the post-recovery phase.

this.Reset

Full Usage: this.Reset

Modifiers: abstract

Reset the current state in order to rebuild the function from scratch.

this.StartVerifying

Full Usage: this.StartVerifying

Modifiers: abstract

Mark the state to be `Verifying`. This means that the function builder is currently verifying the built function.

this.Stop

Full Usage: this.Stop

Modifiers: abstract

Stop the current building process. This will change the state of the function builder to `Stopped`, meaning that this function can always be scheduled again later.

this.ToFunction

Full Usage: this.ToFunction

Returns: Function
Modifiers: abstract

Convert this builder to a function.

Returns: Function

Type something to start searching.