mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
0211b6ec5b
Only widths 3 and 4 have been added because widths 1 and 2 can be implemented by widths 2 and 4 of the 32-bit load/store instructions.
105 lines
3.2 KiB
C
105 lines
3.2 KiB
C
#include "head.c"
|
|
|
|
static pr_int_t test_globals_init[] = {
|
|
// pointers
|
|
24, 26, 48, 29,
|
|
32, -8, -4, 0,
|
|
2, 8, 0xdeadbeef, 0xfeedf00d,
|
|
0xdeadbeef, 0xfeedf00d, 0xdeadbeef, 0xfeedf00d,
|
|
// source data
|
|
/*16*/ 1, 2, 3, 4, 5, 6, 7, 8,
|
|
/*24*/ 9, 10, 11, 12, 13, 14, 15, 16,
|
|
/*32*/ 17, 18, 19, 20, 21, 22, 23, 24,
|
|
// destination data
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
};
|
|
|
|
static pr_int_t test_globals_expect[] = {
|
|
// pointers
|
|
24, 26, 48, 29,
|
|
32, -8, -4, 0,
|
|
2, 8, 0xdeadbeef, 0xfeedf00d,
|
|
0xdeadbeef, 0xfeedf00d, 0xdeadbeef, 0xfeedf00d,
|
|
// source data
|
|
/*16*/ 1, 2, 3, 4, 5, 6, 7, 8,
|
|
/*24*/ 9, 10, 11, 12, 13, 14, 15, 16,
|
|
/*32*/ 17, 18, 19, 20, 21, 22, 23, 24,
|
|
// destination data
|
|
/*40*/ 21, 22, 23, 24, 17, 18, 19, 20,
|
|
/*48*/ 15, 16, 9, 10, 11, 12, 13, 14,
|
|
/*56*/ 1, 2, 3, 4, 5, 6, 7, 8,
|
|
};
|
|
|
|
static dstatement_t store64_A_statements[] = {
|
|
{OP(0, 0, 0, OP_STORE64_A_4), 56, 0, 16},
|
|
{OP(0, 0, 0, OP_STORE64_A_3), 50, 0, 24},
|
|
{OP(0, 0, 0, OP_STORE_A_2), 48, 0, 30},
|
|
{OP(0, 0, 0, OP_STORE_A_4), 44, 0, 32},
|
|
{OP(0, 0, 0, OP_STORE_A_4), 40, 0, 36},
|
|
};
|
|
|
|
static dstatement_t store64_B_statements[] = {
|
|
{OP(0, 0, 0, OP_STORE64_B_4), 7, 9, 16},
|
|
{OP(0, 0, 0, OP_STORE64_B_3), 7, 8, 24},
|
|
{OP(0, 0, 0, OP_STORE_B_2), 7, 7, 30},
|
|
{OP(0, 0, 0, OP_STORE_B_4), 7, 6, 32},
|
|
{OP(0, 0, 0, OP_STORE_B_4), 7, 5, 36},
|
|
};
|
|
|
|
static dstatement_t store64_C_statements[] = {
|
|
{OP(0, 0, 0, OP_STORE64_C_4), 2, 8, 16},
|
|
{OP(0, 0, 0, OP_STORE64_C_3), 2, 2, 24},
|
|
{OP(0, 0, 0, OP_STORE_C_2), 2, 0, 30},
|
|
{OP(0, 0, 0, OP_STORE_C_4), 2, -4, 32},
|
|
{OP(0, 0, 0, OP_STORE_C_4), 2, -8, 36},
|
|
};
|
|
|
|
static dstatement_t store64_D_statements[] = {
|
|
{OP(0, 0, 0, OP_STORE64_D_4), 2, 9, 16},
|
|
{OP(0, 0, 0, OP_STORE64_D_3), 2, 8, 24},
|
|
{OP(0, 0, 0, OP_STORE_D_2), 2, 7, 30},
|
|
{OP(0, 0, 0, OP_STORE_D_4), 2, 6, 32},
|
|
{OP(0, 0, 0, OP_STORE_D_4), 2, 5, 36},
|
|
};
|
|
|
|
test_t tests[] = {
|
|
{
|
|
.desc = "store64 A",
|
|
.num_globals = num_globals (test_globals_init, test_globals_expect),
|
|
.num_statements = num_statements (store64_A_statements),
|
|
.statements = store64_A_statements,
|
|
.init_globals = test_globals_init,
|
|
.expect_globals = test_globals_expect,
|
|
},
|
|
{
|
|
.desc = "store64 B",
|
|
.num_globals = num_globals (test_globals_init, test_globals_expect),
|
|
.num_statements = num_statements (store64_B_statements),
|
|
.statements = store64_B_statements,
|
|
.init_globals = test_globals_init,
|
|
.expect_globals = test_globals_expect,
|
|
// FIXME negative field offsets are not official but work because all
|
|
// offset calculations are done in 32-bit and thus wrap anyway
|
|
.edict_area = 48,
|
|
},
|
|
{
|
|
.desc = "store64 C",
|
|
.num_globals = num_globals (test_globals_init, test_globals_expect),
|
|
.num_statements = num_statements (store64_C_statements),
|
|
.statements = store64_C_statements,
|
|
.init_globals = test_globals_init,
|
|
.expect_globals = test_globals_expect,
|
|
},
|
|
{
|
|
.desc = "store64 D",
|
|
.num_globals = num_globals (test_globals_init, test_globals_expect),
|
|
.num_statements = num_statements (store64_D_statements),
|
|
.statements = store64_D_statements,
|
|
.init_globals = test_globals_init,
|
|
.expect_globals = test_globals_expect,
|
|
},
|
|
};
|
|
|
|
#include "main.c"
|