IDkmLanguageExpressionCompiler Interface

Definition

This interface allows a language extension to pre-compile breakpoint conditions so that the same expression may be quickly evaluated when the breakpoint is hit.

Implementations of this interface may restrict when they are called using a filter defined in their component configuration. The following properties may be used: CompilerVendorId, EngineId, LanguageId, RuntimeId.

public interface class IDkmLanguageExpressionCompiler
public interface class IDkmLanguageExpressionCompiler
__interface IDkmLanguageExpressionCompiler
public interface IDkmLanguageExpressionCompiler
type IDkmLanguageExpressionCompiler = interface
Public Interface IDkmLanguageExpressionCompiler

Methods

Compile(DkmLanguageInstructionAddress, DkmLanguageExpression, DkmFailedEvaluationResult)

This method is obsolete and should not be used.

CompileCondition(DkmLanguageInstructionAddress, DkmBreakpointCondition, String)

Compiles an input breakpoint condition into an inspection query which can be evaluated on the target computer. If the breakpoint condition uses DkmBreakpointConditionOperator.BreakWhenTrue, the expression evaluator should require that the specified condition evaluates to a Boolean value. The created query must return only a single result. For BreakWhenTrue conditions, this must be either a 4-byte or 1-byte value, and any non-zero value is considered true.

Applies to