mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 13:48:31 +00:00
ec8d4f3af5
* Replace unicorn bindings with Nuget package * Use nameof for ValueSource args * Remove redundant code from test projects * Fix wrong values for EmuStart() Add notes to address this later again * Improve formatting * Fix formatting/alignment issues
82 lines
3.1 KiB
C#
82 lines
3.1 KiB
C#
#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
|
|
}
|
|
} |