aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Tests/Cpu/CpuTestAluRs32.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Tests/Cpu/CpuTestAluRs32.cs')
-rw-r--r--src/Ryujinx.Tests/Cpu/CpuTestAluRs32.cs82
1 files changed, 82 insertions, 0 deletions
diff --git a/src/Ryujinx.Tests/Cpu/CpuTestAluRs32.cs b/src/Ryujinx.Tests/Cpu/CpuTestAluRs32.cs
new file mode 100644
index 00000000..d241aac4
--- /dev/null
+++ b/src/Ryujinx.Tests/Cpu/CpuTestAluRs32.cs
@@ -0,0 +1,82 @@
+#define AluRs32
+
+using NUnit.Framework;
+
+namespace Ryujinx.Tests.Cpu
+{
+ [Category("AluRs32")]
+ public sealed class CpuTestAluRs32 : CpuTest32
+ {
+#if AluRs32
+
+#region "ValueSource (Opcodes)"
+ private static uint[] _Add_Adds_Rsb_Rsbs_()
+ {
+ return new[]
+ {
+ 0xe0800000u, // ADD R0, R0, R0, LSL #0
+ 0xe0900000u, // ADDS R0, R0, R0, LSL #0
+ 0xe0600000u, // RSB R0, R0, R0, LSL #0
+ 0xe0700000u // RSBS R0, R0, R0, LSL #0
+ };
+ }
+
+ private static uint[] _Adc_Adcs_Rsc_Rscs_Sbc_Sbcs_()
+ {
+ return new[]
+ {
+ 0xe0a00000u, // ADC R0, R0, R0
+ 0xe0b00000u, // ADCS R0, R0, R0
+ 0xe0e00000u, // RSC R0, R0, R0
+ 0xe0f00000u, // RSCS R0, R0, R0
+ 0xe0c00000u, // SBC R0, R0, R0
+ 0xe0d00000u // SBCS R0, R0, R0
+ };
+ }
+#endregion
+
+
+ [Test, Pairwise]
+ public void Adc_Adcs_Rsc_Rscs_Sbc_Sbcs([ValueSource("_Adc_Adcs_Rsc_Rscs_Sbc_Sbcs_")] uint opcode,
+ [Values(0u, 13u)] uint rd,
+ [Values(1u, 13u)] uint rn,
+ [Values(2u, 13u)] uint rm,
+ [Values(0x00000000u, 0x7FFFFFFFu,
+ 0x80000000u, 0xFFFFFFFFu)] uint wn,
+ [Values(0x00000000u, 0x7FFFFFFFu,
+ 0x80000000u, 0xFFFFFFFFu)] uint wm,
+ [Values] bool carryIn)
+ {
+ opcode |= ((rm & 15) << 0) | ((rn & 15) << 16) | ((rd & 15) << 12);
+
+ uint sp = TestContext.CurrentContext.Random.NextUInt();
+
+ SingleOpcode(opcode, r1: wn, r2: wm, sp: sp, carry: carryIn);
+
+ CompareAgainstUnicorn();
+ }
+
+ [Test, Pairwise]
+ public void Add_Adds_Rsb_Rsbs([ValueSource("_Add_Adds_Rsb_Rsbs_")] uint opcode,
+ [Values(0u, 13u)] uint rd,
+ [Values(1u, 13u)] uint rn,
+ [Values(2u, 13u)] uint rm,
+ [Values(0x00000000u, 0x7FFFFFFFu,
+ 0x80000000u, 0xFFFFFFFFu)] uint wn,
+ [Values(0x00000000u, 0x7FFFFFFFu,
+ 0x80000000u, 0xFFFFFFFFu)] uint wm,
+ [Values(0b00u, 0b01u, 0b10u, 0b11u)] uint shift, // <LSL, LSR, ASR, ROR>
+ [Values(0u, 15u, 16u, 31u)] uint amount)
+ {
+ opcode |= ((rm & 15) << 0) | ((rn & 15) << 16) | ((rd & 15) << 12);
+ opcode |= ((shift & 3) << 5) | ((amount & 31) << 7);
+
+ uint sp = TestContext.CurrentContext.Random.NextUInt();
+
+ SingleOpcode(opcode, r1: wn, r2: wm, sp: sp);
+
+ CompareAgainstUnicorn();
+ }
+#endif
+ }
+} \ No newline at end of file