Ejemplo n.º 1
0
 /// <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");
             }
 }
Ejemplo n.º 2
0
        /// <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");
        }
Ejemplo n.º 3
0
        /// <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");
        }
Ejemplo n.º 4
0
        /// <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");
        }
Ejemplo n.º 5
0
 /// <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");
     }
 }
Ejemplo n.º 6
0
 /// <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");
     }
 }
Ejemplo n.º 7
0
 /// <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");
 }
Ejemplo n.º 8
0
 /// <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");
 }
Ejemplo n.º 9
0
 /// <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");
     }
 }
Ejemplo n.º 10
0
        /// <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");
        }
Ejemplo n.º 11
0
        /// <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");
        }