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


C# MachineCodeEmitter.EmitTwoRegisterInstructions方法代码示例

本文整理汇总了C#中MachineCodeEmitter.EmitTwoRegisterInstructions方法的典型用法代码示例。如果您正苦于以下问题:C# MachineCodeEmitter.EmitTwoRegisterInstructions方法的具体用法?C# MachineCodeEmitter.EmitTwoRegisterInstructions怎么用?C# MachineCodeEmitter.EmitTwoRegisterInstructions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在MachineCodeEmitter的用法示例。


在下文中一共展示了MachineCodeEmitter.EmitTwoRegisterInstructions方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Emit

 /// <summary>
 /// Emits the specified platform instruction.
 /// </summary>
 /// <param name="context">The context.</param>
 /// <param name="emitter">The emitter.</param>
 protected override void Emit(Context context, MachineCodeEmitter emitter)
 {
     if (context.Result is RegisterOperand && context.Operand1 is RegisterOperand && context.Operand2 is RegisterOperand)
     {
         RegisterOperand destination = context.Result as RegisterOperand;
         RegisterOperand firstSource = context.Operand1 as RegisterOperand;
         RegisterOperand secondSource = context.Operand2 as RegisterOperand;
         emitter.EmitThreeRegistersUnshifted(0x24, (byte)firstSource.Register.RegisterCode, (byte)secondSource.Register.RegisterCode, (byte)destination.Register.RegisterCode);
     }
     else
         if (context.Result is RegisterOperand && context.Operand1 is RegisterOperand && context.Operand2 is ConstantOperand)
         {
             RegisterOperand destination = context.Result as RegisterOperand;
             RegisterOperand source = context.Operand1 as RegisterOperand;
             ConstantOperand immediate = context.Operand2 as ConstantOperand;
             int value = 0;
             if (IsConstantBetween(immediate, -128, 127, out value))
             {
                 emitter.EmitTwoRegisterOperandsWithK8Immediate(0x00, (byte)source.Register.RegisterCode, (byte)destination.Register.RegisterCode, (sbyte)value);
             }
             else
                 throw new OverflowException();
         }
         else
             if (context.Result is RegisterOperand && context.Operand1 is RegisterOperand)
             {
                 RegisterOperand destination = context.Result as RegisterOperand;
                 RegisterOperand source = context.Operand1 as RegisterOperand;
                 emitter.EmitTwoRegisterInstructions(0x13, (byte)source.Register.RegisterCode, (byte)destination.Register.RegisterCode);
             }
             else
             {
                 throw new Exception("Not supported combination of operands");
             }
 }
开发者ID:GeroL,项目名称:MOSA-Project,代码行数:40,代码来源:MulInstruction.cs

示例2: Emit

        /// <summary>
        /// Emits the specified platform instruction.
        /// </summary>
        /// <param name="context">The context.</param>
        /// <param name="emitter">The emitter.</param>
        protected override void Emit(Context context, MachineCodeEmitter emitter)
        {
            // TODO: Remove
            if (context.Operand1 is MemberOperand)
                return;
            if (context.Result is RegisterOperand && context.Operand1 is MemoryOperand)
            {
                RegisterOperand result = context.Result as RegisterOperand;
                MemoryOperand operand = context.Operand1 as MemoryOperand;

                int displacement = operand.Offset.ToInt32();

                if (IsBetween(displacement, 0, 7))
                {
                    emitter.EmitTwoRegisterInstructions((byte)(0x0C & displacement),  (byte)operand.Base.RegisterCode, (byte)result.Register.RegisterCode);
                }
                else
                    if (IsBetween(displacement, -32768, 32767))
                    {
                        emitter.EmitTwoRegistersAndK16(0x13, (byte)operand.Base.RegisterCode, (byte)result.Register.RegisterCode, (short)displacement);
                    }
                    else
                        throw new OverflowException();
            }
            else
                throw new Exception("Not supported combination of operands");
        }
开发者ID:pdelprat,项目名称:MOSA-Project,代码行数:32,代码来源:LdubInstruction.cs

示例3: Emit

        /// <summary>
        /// Emits the specified platform instruction.
        /// </summary>
        /// <param name="context">The context.</param>
        /// <param name="emitter">The emitter.</param>
        protected override void Emit(Context context, MachineCodeEmitter emitter)
        {
            if (context.Result is RegisterOperand && context.Operand1 is ConstantOperand)
            {
                RegisterOperand reg = context.Result as RegisterOperand;
                ConstantOperand op = context.Operand1 as ConstantOperand;

                int value = 0;

                if (IsConstantBetween(op, -128, 127, out value))
                {
                    emitter.EmitK8immediateAndSingleRegister(0x01, (sbyte)value, (byte)reg.Register.RegisterCode); // mov Rd, Imm (k8)
                }
                else
                    if (IsConstantBetween(op, -1048576, 1048575, out value))
                    {
                        emitter.EmitRegisterOrConditionCodeAndK21(0x03, (byte)reg.Register.RegisterCode, value); // mov Rd, Imm (k21)
                    }
                    else
                        throw new OverflowException();
            }
            else
                if ((context.Result is RegisterOperand) && (context.Operand1 is RegisterOperand))
                {
                    RegisterOperand destination = context.Result as RegisterOperand;
                    RegisterOperand source = context.Operand1 as RegisterOperand;

                    emitter.EmitTwoRegisterInstructions(0x09, (byte)source.Register.RegisterCode, (byte)destination.Register.RegisterCode); // mov Rd, Rs
                }
                //else
                    //throw new Exception("Not supported combination of operands");
        }
开发者ID:pdelprat,项目名称:MOSA-Project,代码行数:37,代码来源:MovInstruction.cs

示例4: Emit

        /// <summary>
        /// Emits the specified platform instruction.
        /// </summary>
        /// <param name="context">The context.</param>
        /// <param name="emitter">The emitter.</param>
        protected override void Emit(Context context, MachineCodeEmitter emitter)
        {
            if (context.Result.IsRegister && context.Operand1.IsRegister)
            {
                emitter.EmitTwoRegisterInstructions(0x03, (byte)context.Operand1.Register.RegisterCode, (byte)context.Result.Register.RegisterCode); // cp.w Rd, Rs
            }
            else if (context.Result.IsRegister && context.Operand1.IsConstant)
            {
                int value = 0;

                if (IsConstantBetween(context.Operand1, -32, 31, out value))
                {
                    emitter.EmitK6immediateAndSingleRegister((sbyte)value, (byte)context.Result.Register.RegisterCode); // cp.w Rd, imm 6 bits
                }
                else if (IsConstantBetween(context.Operand1, -1048576, 1048575, out value))
                {
                    emitter.EmitRegisterOrConditionCodeAndK21((byte)0x02, (byte)context.Result.Register.RegisterCode, value); // cp.w Rd, imm 21 bits
                }
                else
                    throw new OverflowException();

            }
            else
                throw new Exception("Not supported combination of operands");
        }
开发者ID:pdelprat,项目名称:MOSA-Project,代码行数:30,代码来源:Cp.cs

示例5: Emit

 /// <summary>
 /// Emits the specified platform instruction.
 /// </summary>
 /// <param name="context">The context.</param>
 /// <param name="emitter">The emitter.</param>
 protected override void Emit(Context context, MachineCodeEmitter emitter)
 {
     if (context.Result.IsRegister && context.Operand1.IsRegister && context.Operand2.IsRegister)
     {
         emitter.EmitThreeRegistersUnshifted(0x24, (byte)context.Operand1.Register.RegisterCode, (byte)context.Operand2.Register.RegisterCode, (byte)context.Result.Register.RegisterCode);
     }
     else if (context.Result.IsRegister && context.Operand1.IsRegister && context.Operand2.IsConstant)
     {
         int value = 0;
         if (IsConstantBetween(context.Operand2, -128, 127, out value))
         {
             emitter.EmitTwoRegisterOperandsWithK8Immediate(0x00, (byte)context.Operand1.Register.RegisterCode, (byte)context.Result.Register.RegisterCode, (sbyte)value);
         }
         else
             throw new OverflowException();
     }
     else if (context.Result.IsRegister && context.Operand1.IsRegister)
     {
         emitter.EmitTwoRegisterInstructions(0x13, (byte)context.Operand1.Register.RegisterCode, (byte)context.Result.Register.RegisterCode);
     }
     else
     {
         throw new Exception("Not supported combination of operands");
     }
 }
开发者ID:jeffreye,项目名称:MOSA-Project,代码行数:30,代码来源:Mul.cs

示例6: Emit

 /// <summary>
 /// Emits the specified platform instruction.
 /// </summary>
 /// <param name="context">The context.</param>
 /// <param name="emitter">The emitter.</param>
 protected override void Emit(Context context, MachineCodeEmitter emitter)
 {
     if (context.Result.IsRegister && context.Operand1.IsRegister)
     {
         emitter.EmitTwoRegisterInstructions(0x06, (byte)context.Result.Register.RegisterCode, (byte)context.Operand1.Register.RegisterCode);
     }
     else
     {
         throw new Exception("Not supported combination of operands");
     }
 }
开发者ID:jeffreye,项目名称:MOSA-Project,代码行数:16,代码来源:And.cs

示例7: Emit

 /// <summary>
 /// Emits the specified platform instruction.
 /// </summary>
 /// <param name="context">The context.</param>
 /// <param name="emitter">The emitter.</param>
 protected override void Emit(Context context, MachineCodeEmitter emitter)
 {
     if (context.Result is RegisterOperand && context.Operand1 is RegisterOperand)
     {
         RegisterOperand destination = context.Result as RegisterOperand;
         RegisterOperand source = context.Operand1 as RegisterOperand;
         emitter.EmitTwoRegisterInstructions(0x06, (byte)destination.Register.RegisterCode, (byte)source.Register.RegisterCode);
     }
     else
         throw new Exception("Not supported combination of operands");
 }
开发者ID:grover,项目名称:MOSA-Project,代码行数:16,代码来源:And.cs

示例8: Emit

 /// <summary>
 /// Emits the specified platform instruction.
 /// </summary>
 /// <param name="context">The context.</param>
 /// <param name="emitter">The emitter.</param>
 protected override void Emit(Context context, MachineCodeEmitter emitter)
 {
     if (context.Result is RegisterOperand)
     {
         RegisterOperand sp = new RegisterOperand(BuiltInSigType.Int32, GeneralPurposeRegister.SP);
         RegisterOperand register = context.Operand1 as RegisterOperand;
         emitter.EmitTwoRegisterInstructions((byte)0x0D, (byte)sp.Register.RegisterCode, (byte)register.Register.RegisterCode); // st.w --Rp, Rs
     }
     else
         throw new Exception("Not supported combination of operands");
 }
开发者ID:GeroL,项目名称:MOSA-Project,代码行数:16,代码来源:PushInstruction.cs

示例9: Emit

 /// <summary>
 /// Emits the specified platform instruction.
 /// </summary>
 /// <param name="context">The context.</param>
 /// <param name="emitter">The emitter.</param>
 protected override void Emit(Context context, MachineCodeEmitter emitter)
 {
     if (context.Operand1.IsRegister)
     {
         Operand sp = Operand.CreateCPURegister(BuiltInSigType.Int32, GeneralPurposeRegister.SP);
         emitter.EmitTwoRegisterInstructions((byte)0x0D, (byte)sp.Register.RegisterCode, (byte)context.Operand1.Register.RegisterCode); // st.w --Rp, Rs
     }
     else
     {
         throw new Exception("Not supported combination of operands");
     }
 }
开发者ID:pdelprat,项目名称:MOSA-Project,代码行数:17,代码来源:Push.cs

示例10: Emit

        /// <summary>
        /// Emits the specified platform instruction.
        /// </summary>
        /// <param name="context">The context.</param>
        /// <param name="emitter">The emitter.</param>
        protected override void Emit(Context context, MachineCodeEmitter emitter)
        {
            if (context.Result.IsRegister && context.Operand1.IsConstant)
            {
                int value = 0;

                if (IsConstantBetween(context.Operand1, -128, 127, out value))
                {
                    emitter.EmitK8immediateAndSingleRegister(0x01, (sbyte)value, (byte)context.Result.Register.RegisterCode); // mov Rd, Imm (k8)
                }
                else if (IsConstantBetween(context.Operand1, -1048576, 1048575, out value))
                {
                    emitter.EmitRegisterOrConditionCodeAndK21(0x03, (byte)context.Result.Register.RegisterCode, value); // mov Rd, Imm (k21)
                }
                else
                    throw new OverflowException();
            }
            else if ((context.Result.IsRegister) && (context.Operand1.IsRegister))
            {
                emitter.EmitTwoRegisterInstructions(0x09, (byte)context.Operand1.Register.RegisterCode, (byte)context.Result.Register.RegisterCode); // mov Rd, Rs
            }
            else
                throw new Exception("Not supported combination of operands");
        }
开发者ID:pdelprat,项目名称:MOSA-Project,代码行数:29,代码来源:Mov.cs

示例11: Emit

        /// <summary>
        /// Emits the specified platform instruction.
        /// </summary>
        /// <param name="context">The context.</param>
        /// <param name="emitter">The emitter.</param>
        protected override void Emit(Context context, MachineCodeEmitter emitter)
        {
            if (context.Result.IsRegister && context.Operand1.IsConstant)
            {
                int value = 0;

                if (context.Result.Register.RegisterCode == GeneralPurposeRegister.SP.Index)
                {
                    if (IsConstantBetween(context.Operand1, -512, 508, out value))
                    {
                        emitter.EmitK8immediateAndSingleRegister(0x00, (sbyte)(value >> 2), (byte)context.Result.Register.RegisterCode); // sub Sp, Imm (k8)
                    }
                    else if (IsConstantBetween(context.Operand1, -1048576, 1048575, out value))
                    {
                        emitter.EmitRegisterOrConditionCodeAndK21(0x01, (byte)context.Result.Register.RegisterCode, value); // sub Sp, Imm (k21)
                    }
                    else
                        throw new OverflowException();
                }
                else
                {
                    if (IsConstantBetween(context.Operand1, -128, 127, out value))
                    {
                        emitter.EmitK8immediateAndSingleRegister(0x00, (sbyte)value, (byte)context.Result.Register.RegisterCode); // sub Rd, Imm (k8)
                    }
                    else if (IsConstantBetween(context.Operand1, -1048576, 1048575, out value))
                    {
                        emitter.EmitRegisterOrConditionCodeAndK21(0x01, (byte)context.Result.Register.RegisterCode, value); // sub Rd, Imm (k21)
                    }
                    else
                        throw new OverflowException();
                }
            }
            else if (context.Result.IsRegister && context.Operand1.IsRegister && context.Operand2.IsConstant)
            {
                int value = 0;

                if (IsConstantBetween(context.Operand2, -32768, 32767, out value))
                {
                    emitter.EmitTwoRegistersAndK16(0x0C, (byte)context.Operand1.Register.RegisterCode, (byte)context.Result.Register.RegisterCode, (short)value); // sub Rd, Rs, Imm (k16)
                }
                else
                    throw new OverflowException();
            }
            else if ((context.Result.IsRegister) && (context.Operand1.IsRegister))
            {
                emitter.EmitTwoRegisterInstructions(0x01, (byte)context.Result.Register.RegisterCode, (byte)context.Operand1.Register.RegisterCode); // sub Rd, Rs
            }
            else
                throw new Exception("Not supported combination of operands");
        }
开发者ID:pdelprat,项目名称:MOSA-Project,代码行数:56,代码来源:Sub.cs


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