本文整理汇总了C#中Mosa.Compiler.Framework.BaseInstruction类的典型用法代码示例。如果您正苦于以下问题:C# BaseInstruction类的具体用法?C# BaseInstruction怎么用?C# BaseInstruction使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BaseInstruction类属于Mosa.Compiler.Framework命名空间,在下文中一共展示了BaseInstruction类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AppendInstruction
/// <summary>
/// Appends the instruction.
/// </summary>
/// <param name="instruction">The instruction.</param>
/// <param name="target">The target.</param>
public void AppendInstruction(BaseInstruction instruction, MosaMethod target)
{
AppendInstruction();
Node.SetInstruction(instruction, target);
}
示例2: IsInstructionMove
/// <summary>
/// Determines whether [is instruction move] [the specified instruction].
/// </summary>
/// <param name="instruction">The instruction.</param>
/// <returns></returns>
public override bool IsInstructionMove(BaseInstruction instruction)
{
return (instruction == X86.Mov || instruction == X86.Movsd || instruction == X86.Movss);
}
示例3: SetInstruction
/// <summary>
/// Sets the instruction.
/// </summary>
/// <param name="instruction">The instruction.</param>
/// <param name="condition">The condition.</param>
/// <param name="result">The result.</param>
/// <param name="operand1">The operand1.</param>
public void SetInstruction(BaseInstruction instruction, ConditionCode condition, Operand result, Operand operand1)
{
Node.SetInstruction(instruction, condition, result, operand1);
}
示例4: AppendInstruction2
/// <summary>
/// Appends the instruction.
/// </summary>
/// <param name="instruction">The instruction.</param>
/// <param name="result">The result.</param>
/// <param name="result2">The result2.</param>
public void AppendInstruction2(BaseInstruction instruction, Operand result, Operand result2)
{
AppendInstruction();
Node.SetInstruction2(instruction, result, result2);
}
示例5: ReplaceInstructionOnly
/// <summary>
/// Replaces the instruction only.
/// </summary>
/// <param name="instruction">The instruction.</param>
public void ReplaceInstructionOnly(BaseInstruction instruction)
{
Instruction = instruction;
}
示例6: IsCommutative
private bool IsCommutative(BaseInstruction instruction)
{
return (instruction == X86.Addsd || instruction == X86.Addss || instruction == X86.Mulsd || instruction == X86.Mulss);
}
示例7: IsInstructionMove
/// <summary>
/// Determines whether [is instruction move] [the specified instruction].
/// </summary>
/// <param name="instruction">The instruction.</param>
/// <returns></returns>
public abstract bool IsInstructionMove(BaseInstruction instruction);
示例8: IsInstructionMove
/// <summary>
/// Determines whether [is instruction move] [the specified instruction].
/// </summary>
/// <param name="instruction">The instruction.</param>
/// <returns></returns>
public override bool IsInstructionMove(BaseInstruction instruction)
{
// TODO
return false;
}
示例9: Clear
/// <summary>
/// Clears this instance.
/// </summary>
public void Clear()
{
this.Label = -1;
this.Instruction = null;
this.Operand1 = null;
this.Operand2 = null;
this.Operand3 = null;
this.Result = null;
this.Result2 = null;
this.packed = 0;
this.additionalOperands = null;
this.BranchTargets = null;
this.Other = null;
this.BranchHint = false;
this.ConditionCode = ConditionCode.Undefined;
}