aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Cpu/LightningJit/Arm32/Target/Arm64/InstEmitGE.cs
blob: dffcc511e9fa699402d720995fc55a493fc271d9 (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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
using Ryujinx.Cpu.LightningJit.CodeGen;
using Ryujinx.Cpu.LightningJit.CodeGen.Arm64;

namespace Ryujinx.Cpu.LightningJit.Arm32.Target.Arm64
{
    static class InstEmitGE
    {
        public static void Sadd16(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            EmitAddSub(context, rd, rn, rm, is16Bit: true, add: true, unsigned: false);
        }

        public static void Sadd8(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            EmitAddSub(context, rd, rn, rm, is16Bit: false, add: true, unsigned: false);
        }

        public static void Sasx(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            EmitAsxSax(context, rd, rn, rm, isAsx: true, unsigned: false);
        }

        public static void Sel(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            Operand rdOperand = InstEmitCommon.GetOutputGpr(context, rd);
            Operand rnOperand = InstEmitCommon.GetInputGpr(context, rn);
            Operand rmOperand = InstEmitCommon.GetInputGpr(context, rm);

            using ScopedRegister geFlags = context.RegisterAllocator.AllocateTempGprRegisterScoped();
            using ScopedRegister tempRegister = context.RegisterAllocator.AllocateTempGprRegisterScoped();

            ExtractGEFlags(context, geFlags.Operand);

            // Broadcast compact GE flags (one bit to one byte, 0b1111 -> 0x1010101).
            context.Arm64Assembler.Mov(tempRegister.Operand, 0x204081u);
            context.Arm64Assembler.Mul(geFlags.Operand, geFlags.Operand, tempRegister.Operand);
            context.Arm64Assembler.And(geFlags.Operand, geFlags.Operand, InstEmitCommon.Const(0x1010101));

            // Build mask from expanded flags (0x1010101 -> 0xFFFFFFFF).
            context.Arm64Assembler.Lsl(tempRegister.Operand, geFlags.Operand, InstEmitCommon.Const(8));
            context.Arm64Assembler.Sub(geFlags.Operand, tempRegister.Operand, geFlags.Operand);

            // Result = (n & mask) | (m & ~mask).
            context.Arm64Assembler.And(tempRegister.Operand, geFlags.Operand, rnOperand);
            context.Arm64Assembler.Bic(rdOperand, rmOperand, geFlags.Operand);
            context.Arm64Assembler.Orr(rdOperand, rdOperand, tempRegister.Operand);
        }

        public static void Ssax(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            EmitAsxSax(context, rd, rn, rm, isAsx: false, unsigned: false);
        }

        public static void Ssub16(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            EmitAddSub(context, rd, rn, rm, is16Bit: true, add: false, unsigned: false);
        }

        public static void Ssub8(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            EmitAddSub(context, rd, rn, rm, is16Bit: false, add: false, unsigned: false);
        }

        public static void Uadd16(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            EmitAddSub(context, rd, rn, rm, is16Bit: true, add: true, unsigned: true);
        }

        public static void Uadd8(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            EmitAddSub(context, rd, rn, rm, is16Bit: false, add: true, unsigned: true);
        }

        public static void Uasx(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            EmitAsxSax(context, rd, rn, rm, isAsx: true, unsigned: true);
        }

        public static void Usax(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            EmitAsxSax(context, rd, rn, rm, isAsx: false, unsigned: true);
        }

        public static void Usub16(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            EmitAddSub(context, rd, rn, rm, is16Bit: true, add: false, unsigned: true);
        }

        public static void Usub8(CodeGenContext context, uint rd, uint rn, uint rm)
        {
            EmitAddSub(context, rd, rn, rm, is16Bit: false, add: false, unsigned: true);
        }

        private static void EmitAddSub(CodeGenContext context, uint rd, uint rn, uint rm, bool is16Bit, bool add, bool unsigned)
        {
            Operand rdOperand = InstEmitCommon.GetOutputGpr(context, rd);
            Operand rnOperand = InstEmitCommon.GetInputGpr(context, rn);
            Operand rmOperand = InstEmitCommon.GetInputGpr(context, rm);

            using ScopedRegister geFlags = context.RegisterAllocator.AllocateTempGprRegisterScoped();

            int e = 0;

            void Emit(Operand d, Operand n, Operand m)
            {
                if (add)
                {
                    context.Arm64Assembler.Add(d, n, m);
                }
                else
                {
                    context.Arm64Assembler.Sub(d, n, m);
                }

                if (unsigned && add)
                {
                    if (e == 0)
                    {
                        context.Arm64Assembler.Lsr(geFlags.Operand, d, InstEmitCommon.Const(is16Bit ? 16 : 8));
                    }
                    else
                    {
                        using ScopedRegister tempRegister = context.RegisterAllocator.AllocateTempGprRegisterScoped();

                        context.Arm64Assembler.Lsr(tempRegister.Operand, d, InstEmitCommon.Const(is16Bit ? 16 : 8));
                        context.Arm64Assembler.Orr(geFlags.Operand, geFlags.Operand, tempRegister.Operand, ArmShiftType.Lsl, e);
                    }
                }
                else
                {
                    using ScopedRegister tempRegister = context.RegisterAllocator.AllocateTempGprRegisterScoped();

                    context.Arm64Assembler.Mvn(tempRegister.Operand, d);

                    if (e == 0)
                    {
                        context.Arm64Assembler.Lsr(geFlags.Operand, tempRegister.Operand, InstEmitCommon.Const(31));
                    }
                    else
                    {
                        context.Arm64Assembler.Lsr(tempRegister.Operand, tempRegister.Operand, InstEmitCommon.Const(31));
                        context.Arm64Assembler.Orr(geFlags.Operand, geFlags.Operand, tempRegister.Operand, ArmShiftType.Lsl, e);
                    }
                }

                e += is16Bit ? 2 : 1;
            }

            if (is16Bit)
            {
                if (unsigned)
                {
                    InstEmitCommon.EmitUnsigned16BitPair(context, rd, rn, rm, Emit);
                }
                else
                {
                    InstEmitCommon.EmitSigned16BitPair(context, rd, rn, rm, Emit);
                }

                // Duplicate bits.
                context.Arm64Assembler.Orr(geFlags.Operand, geFlags.Operand, geFlags.Operand, ArmShiftType.Lsl, 1);
            }
            else
            {
                if (unsigned)
                {
                    InstEmitCommon.EmitUnsigned8BitPair(context, rd, rn, rm, Emit);
                }
                else
                {
                    InstEmitCommon.EmitSigned8BitPair(context, rd, rn, rm, Emit);
                }
            }

            UpdateGEFlags(context, geFlags.Operand);
        }

        private static void EmitAsxSax(CodeGenContext context, uint rd, uint rn, uint rm, bool isAsx, bool unsigned)
        {
            Operand rdOperand = InstEmitCommon.GetOutputGpr(context, rd);
            Operand rnOperand = InstEmitCommon.GetInputGpr(context, rn);
            Operand rmOperand = InstEmitCommon.GetInputGpr(context, rm);

            using ScopedRegister geFlags = context.RegisterAllocator.AllocateTempGprRegisterScoped();

            void Emit(Operand d, Operand n, Operand m, int e)
            {
                bool add = e == (isAsx ? 1 : 0);

                if (add)
                {
                    context.Arm64Assembler.Add(d, n, m);
                }
                else
                {
                    context.Arm64Assembler.Sub(d, n, m);
                }

                if (unsigned && add)
                {
                    if (e == 0)
                    {
                        context.Arm64Assembler.Lsr(geFlags.Operand, d, InstEmitCommon.Const(16));
                    }
                    else
                    {
                        using ScopedRegister tempRegister = context.RegisterAllocator.AllocateTempGprRegisterScoped();

                        context.Arm64Assembler.Lsr(tempRegister.Operand, d, InstEmitCommon.Const(16));
                        context.Arm64Assembler.Orr(geFlags.Operand, geFlags.Operand, tempRegister.Operand, ArmShiftType.Lsl, e * 2);
                    }
                }
                else
                {
                    using ScopedRegister tempRegister = context.RegisterAllocator.AllocateTempGprRegisterScoped();

                    context.Arm64Assembler.Mvn(tempRegister.Operand, d);

                    if (e == 0)
                    {
                        context.Arm64Assembler.Lsr(geFlags.Operand, tempRegister.Operand, InstEmitCommon.Const(31));
                    }
                    else
                    {
                        context.Arm64Assembler.Lsr(tempRegister.Operand, tempRegister.Operand, InstEmitCommon.Const(31));
                        context.Arm64Assembler.Orr(geFlags.Operand, geFlags.Operand, tempRegister.Operand, ArmShiftType.Lsl, e * 2);
                    }
                }
            }

            if (unsigned)
            {
                InstEmitCommon.EmitUnsigned16BitXPair(context, rd, rn, rm, Emit);
            }
            else
            {
                InstEmitCommon.EmitSigned16BitXPair(context, rd, rn, rm, Emit);
            }

            // Duplicate bits.
            context.Arm64Assembler.Orr(geFlags.Operand, geFlags.Operand, geFlags.Operand, ArmShiftType.Lsl, 1);

            UpdateGEFlags(context, geFlags.Operand);
        }

        public static void UpdateGEFlags(CodeGenContext context, Operand flags)
        {
            Operand ctx = InstEmitSystem.Register(context.RegisterAllocator.FixedContextRegister);

            using ScopedRegister tempRegister = context.RegisterAllocator.AllocateTempGprRegisterScoped();

            context.Arm64Assembler.LdrRiUn(tempRegister.Operand, ctx, NativeContextOffsets.FlagsBaseOffset);
            context.Arm64Assembler.Bfi(tempRegister.Operand, flags, 16, 4);
            context.Arm64Assembler.StrRiUn(tempRegister.Operand, ctx, NativeContextOffsets.FlagsBaseOffset);
        }

        public static void ExtractGEFlags(CodeGenContext context, Operand flags)
        {
            Operand ctx = InstEmitSystem.Register(context.RegisterAllocator.FixedContextRegister);

            context.Arm64Assembler.LdrRiUn(flags, ctx, NativeContextOffsets.FlagsBaseOffset);
            context.Arm64Assembler.Ubfx(flags, flags, 16, 4);
        }
    }
}