CpuTestAluBinary32.cs 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #define AluBinary32
  2. using ARMeilleure.State;
  3. using NUnit.Framework;
  4. namespace Ryujinx.Tests.Cpu
  5. {
  6. [Category("AluBinary32")]
  7. public sealed class CpuTestAluBinary32 : CpuTest32
  8. {
  9. #if AluBinary32
  10. public struct CrcTest32
  11. {
  12. public uint Crc;
  13. public uint Value;
  14. public bool C;
  15. public uint[] Results; // One result for each CRC variant (8, 16, 32)
  16. public CrcTest32(uint crc, uint value, bool c, params uint[] results)
  17. {
  18. Crc = crc;
  19. Value = value;
  20. C = c;
  21. Results = results;
  22. }
  23. }
  24. #region "ValueSource (CRC32/CRC32C)"
  25. private static CrcTest32[] _CRC32_Test_Values_()
  26. {
  27. // Created with http://www.sunshine2k.de/coding/javascript/crc/crc_js.html, with:
  28. // - non-reflected polynomials
  29. // - input reflected, result reflected
  30. // - bytes in order of increasing significance
  31. // - xor 0
  32. return new CrcTest32[]
  33. {
  34. new CrcTest32(0x00000000u, 0x00_00_00_00u, false, 0x00000000, 0x00000000, 0x00000000),
  35. new CrcTest32(0x00000000u, 0x7f_ff_ff_ffu, false, 0x2d02ef8d, 0xbe2612ff, 0x3303a3c3),
  36. new CrcTest32(0x00000000u, 0x80_00_00_00u, false, 0x00000000, 0x00000000, 0xedb88320),
  37. new CrcTest32(0x00000000u, 0xff_ff_ff_ffu, false, 0x2d02ef8d, 0xbe2612ff, 0xdebb20e3),
  38. new CrcTest32(0x00000000u, 0x9d_cb_12_f0u, false, 0xbdbdf21c, 0xe70590f5, 0x3f7480c5),
  39. new CrcTest32(0xffffffffu, 0x00_00_00_00u, false, 0x2dfd1072, 0xbe26ed00, 0xdebb20e3),
  40. new CrcTest32(0xffffffffu, 0x7f_ff_ff_ffu, false, 0x00ffffff, 0x0000ffff, 0xedb88320),
  41. new CrcTest32(0xffffffffu, 0x80_00_00_00u, false, 0x2dfd1072, 0xbe26ed00, 0x3303a3c3),
  42. new CrcTest32(0xffffffffu, 0xff_ff_ff_ffu, false, 0x00ffffff, 0x0000ffff, 0x00000000),
  43. new CrcTest32(0xffffffffu, 0x9d_cb_12_f0u, false, 0x9040e26e, 0x59237df5, 0xe1cfa026),
  44. new CrcTest32(0x00000000u, 0x00_00_00_00u, true, 0x00000000, 0x00000000, 0x00000000),
  45. new CrcTest32(0x00000000u, 0x7f_ff_ff_ffu, true, 0xad7d5351, 0x0e9e77d2, 0x356e8f40),
  46. new CrcTest32(0x00000000u, 0x80_00_00_00u, true, 0x00000000, 0x00000000, 0x82f63b78),
  47. new CrcTest32(0x00000000u, 0xff_ff_ff_ffu, true, 0xad7d5351, 0x0e9e77d2, 0xb798b438),
  48. new CrcTest32(0x00000000u, 0x9d_cb_12_f0u, true, 0xf36e6f75, 0xb5ff99e6, 0x782dfbf1),
  49. new CrcTest32(0xffffffffu, 0x00_00_00_00u, true, 0xad82acae, 0x0e9e882d, 0xb798b438),
  50. new CrcTest32(0xffffffffu, 0x7f_ff_ff_ffu, true, 0x00ffffff, 0x0000ffff, 0x82f63b78),
  51. new CrcTest32(0xffffffffu, 0x80_00_00_00u, true, 0xad82acae, 0x0e9e882d, 0x356e8f40),
  52. new CrcTest32(0xffffffffu, 0xff_ff_ff_ffu, true, 0x00ffffff, 0x0000ffff, 0x00000000),
  53. new CrcTest32(0xffffffffu, 0x9d_cb_12_f0u, true, 0x5eecc3db, 0xbb6111cb, 0xcfb54fc9)
  54. };
  55. }
  56. #endregion
  57. [Test, Combinatorial]
  58. public void Crc32_Crc32c_b_h_w([Values(0u)] uint rd,
  59. [Values(1u)] uint rn,
  60. [Values(2u)] uint rm,
  61. [Range(0u, 2u)] uint size,
  62. [ValueSource("_CRC32_Test_Values_")] CrcTest32 test)
  63. {
  64. // Unicorn does not yet support 32bit crc instructions, so test against a known table of results/values.
  65. uint opcode = 0xe1000040; // CRC32B R0, R0, R0
  66. opcode |= ((rm & 15) << 0) | ((rd & 15) << 12) | ((rn & 15) << 16);
  67. opcode |= size << 21;
  68. if (test.C)
  69. {
  70. opcode |= 1 << 9;
  71. }
  72. uint sp = TestContext.CurrentContext.Random.NextUInt();
  73. SingleOpcode(opcode, r1: test.Crc, r2: test.Value, sp: sp, runUnicorn: false);
  74. ExecutionContext context = GetContext();
  75. ulong result = context.GetX((int)rd);
  76. Assert.That(result == test.Results[size]);
  77. }
  78. #endif
  79. }
  80. }