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

SetInstruction() public method

Sets the instruction.
public SetInstruction ( BaseInstruction instruction, InstructionSize size, Operand result, Operand operand1, Operand operand2, Operand operand3, Operand operand4 ) : void
instruction BaseInstruction The instruction.
size InstructionSize The size.
result Operand The result.
operand1 Operand The operand1.
operand2 Operand The operand2.
operand3 Operand The operand3.
operand4 Operand The operand4.
return void
        public void SetInstruction(BaseInstruction instruction, InstructionSize size, Operand result, Operand operand1, Operand operand2, Operand operand3, Operand operand4)
        {
            SetInstruction(instruction, result, operand1, operand2, operand3, operand4);
            Size = size;
        }

Same methods

InstructionNode::SetInstruction ( BaseInstruction instruction ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, BasicBlock block ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, BasicBlock block1, BasicBlock block2 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, ConditionCode condition ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, ConditionCode condition, BasicBlock block ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, ConditionCode condition, Operand result ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, ConditionCode condition, Operand result, Operand operand1 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, ConditionCode condition, Operand result, Operand operand1, Operand operand2 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, ConditionCode condition, Operand result, Operand operand1, Operand operand2, BasicBlock block ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, ConditionCode condition, bool updateStatus, Operand result, Operand operand1 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, ConditionCode condition, bool updateStatus, Operand result, Operand operand1, Operand operand2 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, InstructionSize size, Operand result, Operand operand1 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, InstructionSize size, Operand result, Operand operand1, Operand operand2 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, InstructionSize size, Operand result, Operand operand1, Operand operand2, Operand operand3 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, MosaMethod target ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, Operand result ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, Operand result, Operand operand1 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, Operand result, Operand operand1, Operand operand2 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, Operand result, Operand operand1, Operand operand2, Operand operand3 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, Operand result, Operand operand1, Operand operand2, Operand operand3, Operand operand4 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, bool updateStatus, Operand result ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, bool updateStatus, Operand result, Operand operand1 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, bool updateStatus, Operand result, Operand operand1, Operand operand2 ) : void
InstructionNode::SetInstruction ( BaseInstruction instruction, int operandCount, byte resultCount ) : void