Mosa.Compiler.Framework.InstructionNode.InstructionNode C# (CSharp) Method

InstructionNode() public method

Sets the instruction.
public InstructionNode ( BaseInstruction instruction, int operandCount, byte resultCount ) : System
instruction BaseInstruction The instruction.
operandCount int The operand count.
resultCount byte The result count.
return System
        public InstructionNode(BaseInstruction instruction, int operandCount, byte resultCount)
        {
            Instruction = instruction;
            OperandCount = operandCount;
            ResultCount = resultCount;
            Size = InstructionSize.None;
        }

Same methods

InstructionNode::InstructionNode ( ) : System
InstructionNode::InstructionNode ( BaseInstruction instruction ) : System
InstructionNode::InstructionNode ( BaseInstruction instruction, BasicBlock block ) : System
InstructionNode::InstructionNode ( BaseInstruction instruction, BasicBlock block1, BasicBlock block2 ) : System
InstructionNode::InstructionNode ( BaseInstruction instruction, ConditionCode condition ) : System
InstructionNode::InstructionNode ( BaseInstruction instruction, ConditionCode condition, BasicBlock block ) : System
InstructionNode::InstructionNode ( BaseInstruction instruction, MosaMethod target ) : System
InstructionNode::InstructionNode ( BaseInstruction instruction, Operand result ) : System
InstructionNode::InstructionNode ( BaseInstruction instruction, Operand result, Operand operand1 ) : System
InstructionNode::InstructionNode ( BaseInstruction instruction, bool updateStatus, Operand result ) : System