2020-01-22 19:58:27 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2020 Valve Corporation
|
|
|
|
|
*
|
2024-04-08 09:02:30 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2020-01-22 19:58:27 +00:00
|
|
|
*/
|
|
|
|
|
#include "helpers.h"
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
using namespace aco;
|
|
|
|
|
|
|
|
|
|
BEGIN_TEST_TODO(todo)
|
|
|
|
|
//!test!
|
|
|
|
|
fprintf(output, "woops!\n");
|
|
|
|
|
END_TEST
|
|
|
|
|
|
|
|
|
|
BEGIN_TEST_FAIL(expect_fail)
|
|
|
|
|
//!test!
|
|
|
|
|
fprintf(output, "woops!\n");
|
|
|
|
|
END_TEST
|
|
|
|
|
|
2023-05-26 19:14:31 +01:00
|
|
|
BEGIN_TEST(simple._1)
|
2020-01-22 19:58:27 +00:00
|
|
|
//! s_buffer_load_dwordx2 @s64(a)
|
|
|
|
|
fprintf(output, "s_buffer_load_dwordx2 s[6:7]\n");
|
|
|
|
|
//! s_add_u32 s#b0, s#a, 1
|
|
|
|
|
//! s_addc_u32 s#b1, s#a1, 0
|
|
|
|
|
//; success = int(b0) == 8
|
|
|
|
|
fprintf(output, "s_add_u32 s8, s6, 1\n");
|
|
|
|
|
fprintf(output, "s_addc_u32 s9, s7, 0\n");
|
|
|
|
|
//! s_buffer_store_dwordx2 @s64(b)
|
|
|
|
|
fprintf(output, "s_buffer_store_dwordx2 s[8:9]\n");
|
|
|
|
|
END_TEST
|
|
|
|
|
|
2023-05-26 19:14:31 +01:00
|
|
|
BEGIN_TEST(simple._2)
|
2020-01-22 19:58:27 +00:00
|
|
|
//~gfx[67]! test gfx67
|
|
|
|
|
//~gfx8! test gfx8
|
|
|
|
|
//~gfx9! test gfx9
|
|
|
|
|
//! test all
|
|
|
|
|
for (int cls = GFX6; cls <= GFX7; cls++) {
|
2022-05-12 02:50:17 -04:00
|
|
|
if (!set_variant((enum amd_gfx_level)cls))
|
2020-01-22 19:58:27 +00:00
|
|
|
continue;
|
|
|
|
|
fprintf(output, "test gfx67\n");
|
|
|
|
|
fprintf(output, "test all\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (set_variant("gfx8")) {
|
|
|
|
|
fprintf(output, "test gfx8\n");
|
|
|
|
|
fprintf(output, "test all\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (set_variant("gfx9")) {
|
|
|
|
|
fprintf(output, "test gfx9\n");
|
|
|
|
|
fprintf(output, "test all\n");
|
|
|
|
|
}
|
|
|
|
|
END_TEST
|
|
|
|
|
|
2023-05-26 19:14:31 +01:00
|
|
|
BEGIN_TEST(simple._3)
|
2020-01-22 19:58:27 +00:00
|
|
|
//; funcs['test'] = lambda a: a
|
|
|
|
|
//! @test(s_buffer_load_dwordx2) @s64(a)
|
|
|
|
|
fprintf(output, "s_buffer_load_dwordx2 s[6:7]\n");
|
|
|
|
|
END_TEST
|