當前位置: 首頁>>代碼示例>>C#>>正文


C# BaseInstruction類代碼示例

本文整理匯總了C#中BaseInstruction的典型用法代碼示例。如果您正苦於以下問題:C# BaseInstruction類的具體用法?C# BaseInstruction怎麽用?C# BaseInstruction使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


BaseInstruction類屬於命名空間,在下文中一共展示了BaseInstruction類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: InstructionNode

 /// <summary>
 /// Sets the instruction.
 /// </summary>
 /// <param name="instruction">The instruction.</param>
 /// <param name="operandCount">The operand count.</param>
 /// <param name="resultCount">The result count.</param>
 public InstructionNode(BaseInstruction instruction, int operandCount, byte resultCount)
 {
     Instruction = instruction;
     OperandCount = operandCount;
     ResultCount = resultCount;
     Size = InstructionSize.None;
 }
開發者ID:Profi-Concept,項目名稱:MOSA-Project,代碼行數:13,代碼來源:InstructionNode.cs

示例2: Save

        public void Save(BaseInstruction instruction)
        {
            var client = new RedisClient();
            var key = new InstructionKeys ().GetKey (instruction.Id);

            var json = instruction.ToJson ();
            client.Set(key, json);

            var idManager = new InstructionIdManager ();
            idManager.Add (instruction);
        }
開發者ID:CompulsiveCoder,項目名稱:TileSim,代碼行數:11,代碼來源:InstructionSaver.cs

示例3: Add

        public void Add(BaseInstruction instruction)
        {
            var key = new InstructionKeys ().GetIdsKey (instruction.TargetType, instruction.TargetId);

            var client = new RedisClient ();

            var stringToAppend = instruction.Id.ToString();

            if (client.Exists (key))
                stringToAppend = "." + stringToAppend;

            client.Append (key, stringToAppend);
        }
開發者ID:CompulsiveCoder,項目名稱:TileSim,代碼行數:13,代碼來源:InstructionIdManager.cs

示例4: Replace

 private static void Replace(Context context, BaseInstruction floatingPointInstruction, BaseInstruction signedInstruction, BaseInstruction unsignedInstruction)
 {
     if (context.Result.IsR)
     {
         context.ReplaceInstructionOnly(floatingPointInstruction);
     }
     else if (context.Result.IsUnsigned)
     {
         context.ReplaceInstructionOnly(unsignedInstruction);
     }
     else
     {
         context.ReplaceInstructionOnly(signedInstruction);
     }
 }
開發者ID:tea,項目名稱:MOSA-Project,代碼行數:15,代碼來源:CILTransformationStage.cs

示例5: SetInstruction

 /// <summary>
 /// Sets the instruction.
 /// </summary>
 /// <param name="instruction">The instruction.</param>
 /// <param name="condition">The condition.</param>
 /// <param name="block">The block.</param>
 public void SetInstruction(BaseInstruction instruction, ConditionCode condition, BasicBlock block)
 {
     SetInstruction(instruction);
     ConditionCode = condition;
     AddBranchTarget(block);
 }
開發者ID:Profi-Concept,項目名稱:MOSA-Project,代碼行數:12,代碼來源:InstructionNode.cs

示例6: SetInstruction2

 /// <summary>
 /// Sets the instruction.
 /// </summary>
 /// <param name="instruction">The instruction.</param>
 /// <param name="result">The result.</param>
 /// <param name="result2">The result2.</param>
 public void SetInstruction2(BaseInstruction instruction, Operand result, Operand result2)
 {
     SetInstruction(instruction, 1, 2);
     Result = result;
     Result2 = result2;
 }
開發者ID:Profi-Concept,項目名稱:MOSA-Project,代碼行數:12,代碼來源:InstructionNode.cs

示例7: ReplaceInstructionOnly

 /// <summary>
 /// Replaces the instruction only.
 /// </summary>
 /// <param name="instruction">The instruction.</param>
 public void ReplaceInstructionOnly(BaseInstruction instruction)
 {
     Instruction = instruction;
 }
開發者ID:Profi-Concept,項目名稱:MOSA-Project,代碼行數:8,代碼來源:InstructionNode.cs

示例8: IsCommutative

 /// <summary>
 /// Determines whether the specified instruction is commutative.
 /// </summary>
 /// <param name="instruction">The instruction.</param>
 /// <returns>
 /// 	<c>true</c> if the specified instruction is commutative; otherwise, <c>false</c>.
 /// </returns>
 private static bool IsCommutative(BaseInstruction instruction)
 {
     return (instruction is CIL.AddInstruction) ||
            (instruction is CIL.MulInstruction) ||
            (instruction is IR.LogicalAnd) ||
            (instruction is IR.LogicalOr) ||
            (instruction is IR.LogicalXor);
 }
開發者ID:pdelprat,項目名稱:MOSA-Project,代碼行數:15,代碼來源:LocalCSEStage.cs


注:本文中的BaseInstruction類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。