当前位置: 首页>>代码示例>>C#>>正文


C# Framework.BaseInstruction类代码示例

本文整理汇总了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);
 }
开发者ID:Zahovay,项目名称:MOSA-Project,代码行数:10,代码来源:Context.cs

示例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);
 }
开发者ID:Profi-Concept,项目名称:MOSA-Project,代码行数:9,代码来源:Architecture.cs

示例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);
 }
开发者ID:Zahovay,项目名称:MOSA-Project,代码行数:11,代码来源:Context.cs

示例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);
 }
开发者ID:Zahovay,项目名称:MOSA-Project,代码行数:11,代码来源:Context.cs

示例5: ReplaceInstructionOnly

 /// <summary>
 /// Replaces the instruction only.
 /// </summary>
 /// <param name="instruction">The instruction.</param>
 public void ReplaceInstructionOnly(BaseInstruction instruction)
 {
     Instruction = instruction;
 }
开发者ID:Zahovay,项目名称:MOSA-Project,代码行数:8,代码来源:Context.cs

示例6: IsCommutative

 private bool IsCommutative(BaseInstruction instruction)
 {
     return (instruction == X86.Addsd || instruction == X86.Addss || instruction == X86.Mulsd || instruction == X86.Mulss);
 }
开发者ID:tea,项目名称:MOSA-Project,代码行数:4,代码来源:FloatingPointStage.cs

示例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);
开发者ID:charsleysa,项目名称:MOSA-Project,代码行数:6,代码来源:BaseArchitecture.cs

示例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;
 }
开发者ID:tea,项目名称:MOSA-Project,代码行数:10,代码来源:Architecture.cs

示例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;
 }
开发者ID:Boddlnagg,项目名称:MOSA-Project,代码行数:19,代码来源:InstructionData.cs


注:本文中的Mosa.Compiler.Framework.BaseInstruction类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。