aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/IntermediateRepresentation/Operand.cs
blob: 2df6256fc6ddf5d2c0a514ba0eaaeef741286213 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
using System;
using System.Collections.Generic;

namespace ARMeilleure.IntermediateRepresentation
{
    class Operand
    {
        public OperandKind Kind { get; }

        public OperandType Type { get; }

        public ulong Value { get; private set; }

        public LinkedList<Node> Assignments { get; }
        public LinkedList<Node> Uses        { get; }

        private Operand()
        {
            Assignments = new LinkedList<Node>();
            Uses        = new LinkedList<Node>();
        }

        public Operand(OperandKind kind, OperandType type = OperandType.None) : this()
        {
            Kind = kind;
            Type = type;
        }

        public Operand(int value) : this(OperandKind.Constant, OperandType.I32)
        {
            Value = (uint)value;
        }

        public Operand(uint value) : this(OperandKind.Constant, OperandType.I32)
        {
            Value = (uint)value;
        }

        public Operand(long value) : this(OperandKind.Constant, OperandType.I64)
        {
            Value = (ulong)value;
        }

        public Operand(ulong value) : this(OperandKind.Constant, OperandType.I64)
        {
            Value = value;
        }

        public Operand(float value) : this(OperandKind.Constant, OperandType.FP32)
        {
            Value = (ulong)BitConverter.SingleToInt32Bits(value);
        }

        public Operand(double value) : this(OperandKind.Constant, OperandType.FP64)
        {
            Value = (ulong)BitConverter.DoubleToInt64Bits(value);
        }

        public Operand(int index, RegisterType regType, OperandType type) : this()
        {
            Kind = OperandKind.Register;
            Type = type;

            Value = (ulong)((int)regType << 24 | index);
        }

        public Register GetRegister()
        {
            return new Register((int)Value & 0xffffff, (RegisterType)(Value >> 24));
        }

        public byte AsByte()
        {
            return (byte)Value;
        }

        public short AsInt16()
        {
            return (short)Value;
        }

        public int AsInt32()
        {
            return (int)Value;
        }

        public long AsInt64()
        {
            return (long)Value;
        }

        public float AsFloat()
        {
            return BitConverter.Int32BitsToSingle((int)Value);
        }

        public double AsDouble()
        {
            return BitConverter.Int64BitsToDouble((long)Value);
        }

        internal void NumberLocal(int number)
        {
            if (Kind != OperandKind.LocalVariable)
            {
                throw new InvalidOperationException("The operand is not a local variable.");
            }

            Value = (ulong)number;
        }

        public override int GetHashCode()
        {
            if (Kind == OperandKind.LocalVariable)
            {
                return base.GetHashCode();
            }
            else
            {
                return (int)Value ^ ((int)Kind << 16) ^ ((int)Type << 20);
            }
        }
    }
}