C# Class Mosa.Compiler.Framework.CIL.BinaryLogicInstruction

Intermediate representation of a IL binary logic instruction.
Inheritance: Mosa.Compiler.Framework.CIL.BinaryInstruction
Show file Open project: tgiphil/MOSA-Project

Public Methods

Method Description
BinaryLogicInstruction ( OpCode opcode ) : System

Initializes a new instance of the BinaryLogicInstruction class.

Resolve ( Context ctx, BaseMethodCompiler compiler ) : void

Validates the instruction operands and creates a matching variable for the result.

Method Details

BinaryLogicInstruction() public method

Initializes a new instance of the BinaryLogicInstruction class.
public BinaryLogicInstruction ( OpCode opcode ) : System
opcode OpCode The opcode.
return System

Resolve() public method

Validates the instruction operands and creates a matching variable for the result.
public Resolve ( Context ctx, BaseMethodCompiler compiler ) : void
ctx Context The context.
compiler BaseMethodCompiler The compiler.
return void