tests/tcg: i386: add MMX and 3DNow! tests
Adjust the test-avx.py generator to produce tests specifically for MMX and 3DNow. Using a separate generator introduces some code duplication, but is a simpler approach because of test-avx's extra complexity to support 3- and 4-operand AVX instructions. If needed, a common library can be introduced later. While at it, for consistency move all the -cpu max rules to the same place. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
4ce4a1a714
commit
fa7ce0b028
@ -7,8 +7,8 @@ VPATH += $(I386_SRC)
|
||||
|
||||
I386_SRCS=$(notdir $(wildcard $(I386_SRC)/*.c))
|
||||
ALL_X86_TESTS=$(I386_SRCS:.c=)
|
||||
SKIP_I386_TESTS=test-i386-ssse3 test-avx
|
||||
X86_64_TESTS:=$(filter test-i386-bmi2 test-i386-ssse3 test-avx, $(ALL_X86_TESTS))
|
||||
SKIP_I386_TESTS=test-i386-ssse3 test-avx test-3dnow test-mmx
|
||||
X86_64_TESTS:=$(filter test-i386-bmi2 $(SKIP_I386_TESTS), $(ALL_X86_TESTS))
|
||||
|
||||
test-i386-sse-exceptions: CFLAGS += -msse4.1 -mfpmath=sse
|
||||
run-test-i386-sse-exceptions: QEMU_OPTS += -cpu max
|
||||
@ -82,9 +82,27 @@ run-plugin-sha512-sse-with-%: QEMU_OPTS+=-cpu max
|
||||
|
||||
TESTS+=sha512-sse
|
||||
|
||||
CLEANFILES += test-avx.h
|
||||
CLEANFILES += test-avx.h test-mmx.h test-3dnow.h
|
||||
test-3dnow.h: test-mmx.py x86.csv
|
||||
$(PYTHON) $(I386_SRC)/test-mmx.py $(I386_SRC)/x86.csv $@ 3DNOW
|
||||
|
||||
test-mmx.h: test-mmx.py x86.csv
|
||||
$(PYTHON) $(I386_SRC)/test-mmx.py $(I386_SRC)/x86.csv $@ MMX SSE SSE2 SSE3 SSSE3
|
||||
|
||||
test-avx.h: test-avx.py x86.csv
|
||||
$(PYTHON) $(I386_SRC)/test-avx.py $(I386_SRC)/x86.csv $@
|
||||
|
||||
test-3dnow: CFLAGS += -masm=intel -O -I.
|
||||
run-test-3dnow: QEMU_OPTS += -cpu max
|
||||
run-plugin-test-3dnow: QEMU_OPTS += -cpu max
|
||||
test-3dnow: test-3dnow.h
|
||||
|
||||
test-mmx: CFLAGS += -masm=intel -O -I.
|
||||
run-test-mmx: QEMU_OPTS += -cpu max
|
||||
run-plugin-test-mmx: QEMU_OPTS += -cpu max
|
||||
test-mmx: test-mmx.h
|
||||
|
||||
test-avx: CFLAGS += -masm=intel -O -I.
|
||||
run-test-avx: QEMU_OPTS += -cpu max
|
||||
run-plugin-test-avx: QEMU_OPTS += -cpu max
|
||||
test-avx: test-avx.h
|
||||
|
3
tests/tcg/i386/test-3dnow.c
Normal file
3
tests/tcg/i386/test-3dnow.c
Normal file
@ -0,0 +1,3 @@
|
||||
#define EMMS "femms"
|
||||
#define TEST_FILE "test-3dnow.h"
|
||||
#include "test-mmx.c"
|
@ -7,7 +7,6 @@ import sys
|
||||
from fnmatch import fnmatch
|
||||
|
||||
archs = [
|
||||
# TODO: MMX?
|
||||
"SSE", "SSE2", "SSE3", "SSSE3", "SSE4_1", "SSE4_2",
|
||||
]
|
||||
|
||||
|
315
tests/tcg/i386/test-mmx.c
Normal file
315
tests/tcg/i386/test-mmx.c
Normal file
@ -0,0 +1,315 @@
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifndef TEST_FILE
|
||||
#define TEST_FILE "test-mmx.h"
|
||||
#endif
|
||||
#ifndef EMMS
|
||||
#define EMMS "emms"
|
||||
#endif
|
||||
|
||||
typedef void (*testfn)(void);
|
||||
|
||||
typedef struct {
|
||||
uint64_t q0, q1;
|
||||
} __attribute__((aligned(16))) v2di;
|
||||
|
||||
typedef struct {
|
||||
uint64_t mm[8];
|
||||
v2di xmm[8];
|
||||
uint64_t r[16];
|
||||
uint64_t flags;
|
||||
uint32_t ff;
|
||||
uint64_t pad;
|
||||
v2di mem[4];
|
||||
v2di mem0[4];
|
||||
} reg_state;
|
||||
|
||||
typedef struct {
|
||||
int n;
|
||||
testfn fn;
|
||||
const char *s;
|
||||
reg_state *init;
|
||||
} TestDef;
|
||||
|
||||
reg_state initI;
|
||||
reg_state initF32;
|
||||
reg_state initF64;
|
||||
|
||||
static void dump_mmx(int n, const uint64_t *r, int ff)
|
||||
{
|
||||
if (ff == 32) {
|
||||
float v[2];
|
||||
memcpy(v, r, sizeof(v));
|
||||
printf("MM%d = %016lx %8g %8g\n", n, *r, v[1], v[0]);
|
||||
} else {
|
||||
printf("MM%d = %016lx\n", n, *r);
|
||||
}
|
||||
}
|
||||
|
||||
static void dump_xmm(const char *name, int n, const v2di *r, int ff)
|
||||
{
|
||||
printf("%s%d = %016lx %016lx\n",
|
||||
name, n, r->q1, r->q0);
|
||||
if (ff == 32) {
|
||||
float v[4];
|
||||
memcpy(v, r, sizeof(v));
|
||||
printf(" %8g %8g %8g %8g\n",
|
||||
v[3], v[2], v[1], v[0]);
|
||||
}
|
||||
}
|
||||
|
||||
static void dump_regs(reg_state *s, int ff)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 8; i++) {
|
||||
dump_mmx(i, &s->mm[i], ff);
|
||||
}
|
||||
for (i = 0; i < 4; i++) {
|
||||
dump_xmm("mem", i, &s->mem0[i], 0);
|
||||
}
|
||||
}
|
||||
|
||||
static void compare_state(const reg_state *a, const reg_state *b)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < 8; i++) {
|
||||
if (a->mm[i] != b->mm[i]) {
|
||||
printf("MM%d = %016lx\n", i, b->mm[i]);
|
||||
}
|
||||
}
|
||||
for (i = 0; i < 16; i++) {
|
||||
if (a->r[i] != b->r[i]) {
|
||||
printf("r%d = %016lx\n", i, b->r[i]);
|
||||
}
|
||||
}
|
||||
for (i = 0; i < 8; i++) {
|
||||
if (memcmp(&a->xmm[i], &b->xmm[i], 8)) {
|
||||
dump_xmm("xmm", i, &b->xmm[i], a->ff);
|
||||
}
|
||||
}
|
||||
for (i = 0; i < 4; i++) {
|
||||
if (memcmp(&a->mem0[i], &a->mem[i], 16)) {
|
||||
dump_xmm("mem", i, &a->mem[i], a->ff);
|
||||
}
|
||||
}
|
||||
if (a->flags != b->flags) {
|
||||
printf("FLAGS = %016lx\n", b->flags);
|
||||
}
|
||||
}
|
||||
|
||||
#define LOADMM(r, o) "movq " #r ", " #o "[%0]\n\t"
|
||||
#define LOADXMM(r, o) "movdqa " #r ", " #o "[%0]\n\t"
|
||||
#define STOREMM(r, o) "movq " #o "[%1], " #r "\n\t"
|
||||
#define STOREXMM(r, o) "movdqa " #o "[%1], " #r "\n\t"
|
||||
#define MMREG(F) \
|
||||
F(mm0, 0x00) \
|
||||
F(mm1, 0x08) \
|
||||
F(mm2, 0x10) \
|
||||
F(mm3, 0x18) \
|
||||
F(mm4, 0x20) \
|
||||
F(mm5, 0x28) \
|
||||
F(mm6, 0x30) \
|
||||
F(mm7, 0x38)
|
||||
#define XMMREG(F) \
|
||||
F(xmm0, 0x040) \
|
||||
F(xmm1, 0x050) \
|
||||
F(xmm2, 0x060) \
|
||||
F(xmm3, 0x070) \
|
||||
F(xmm4, 0x080) \
|
||||
F(xmm5, 0x090) \
|
||||
F(xmm6, 0x0a0) \
|
||||
F(xmm7, 0x0b0)
|
||||
#define LOADREG(r, o) "mov " #r ", " #o "[rax]\n\t"
|
||||
#define STOREREG(r, o) "mov " #o "[rax], " #r "\n\t"
|
||||
#define REG(F) \
|
||||
F(rbx, 0xc8) \
|
||||
F(rcx, 0xd0) \
|
||||
F(rdx, 0xd8) \
|
||||
F(rsi, 0xe0) \
|
||||
F(rdi, 0xe8) \
|
||||
F(r8, 0x100) \
|
||||
F(r9, 0x108) \
|
||||
F(r10, 0x110) \
|
||||
F(r11, 0x118) \
|
||||
F(r12, 0x120) \
|
||||
F(r13, 0x128) \
|
||||
F(r14, 0x130) \
|
||||
F(r15, 0x138) \
|
||||
|
||||
static void run_test(const TestDef *t)
|
||||
{
|
||||
reg_state result;
|
||||
reg_state *init = t->init;
|
||||
memcpy(init->mem, init->mem0, sizeof(init->mem));
|
||||
printf("%5d %s\n", t->n, t->s);
|
||||
asm volatile(
|
||||
MMREG(LOADMM)
|
||||
XMMREG(LOADXMM)
|
||||
"sub rsp, 128\n\t"
|
||||
"push rax\n\t"
|
||||
"push rbx\n\t"
|
||||
"push rcx\n\t"
|
||||
"push rdx\n\t"
|
||||
"push %1\n\t"
|
||||
"push %2\n\t"
|
||||
"mov rax, %0\n\t"
|
||||
"pushf\n\t"
|
||||
"pop rbx\n\t"
|
||||
"shr rbx, 8\n\t"
|
||||
"shl rbx, 8\n\t"
|
||||
"mov rcx, 0x140[rax]\n\t"
|
||||
"and rcx, 0xff\n\t"
|
||||
"or rbx, rcx\n\t"
|
||||
"push rbx\n\t"
|
||||
"popf\n\t"
|
||||
REG(LOADREG)
|
||||
"mov rax, 0xc0[rax]\n\t"
|
||||
"call [rsp]\n\t"
|
||||
"mov [rsp], rax\n\t"
|
||||
"mov rax, 8[rsp]\n\t"
|
||||
REG(STOREREG)
|
||||
"mov rbx, [rsp]\n\t"
|
||||
"mov 0xc0[rax], rbx\n\t"
|
||||
"mov rbx, 0\n\t"
|
||||
"mov 0xf0[rax], rbx\n\t"
|
||||
"mov 0xf8[rax], rbx\n\t"
|
||||
"pushf\n\t"
|
||||
"pop rbx\n\t"
|
||||
"and rbx, 0xff\n\t"
|
||||
"mov 0x140[rax], rbx\n\t"
|
||||
"add rsp, 16\n\t"
|
||||
"pop rdx\n\t"
|
||||
"pop rcx\n\t"
|
||||
"pop rbx\n\t"
|
||||
"pop rax\n\t"
|
||||
"add rsp, 128\n\t"
|
||||
MMREG(STOREMM)
|
||||
EMMS "\n\t"
|
||||
XMMREG(STOREXMM)
|
||||
: : "r"(init), "r"(&result), "r"(t->fn)
|
||||
: "memory", "cc",
|
||||
"rsi", "rdi",
|
||||
"r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
|
||||
"mm0", "mm1", "mm2", "mm3", "mm4", "mm5", "mm6", "mm7",
|
||||
"xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5",
|
||||
"xmm6", "xmm7", "xmm8", "xmm9", "xmm10", "xmm11",
|
||||
"xmm12", "xmm13", "xmm14", "xmm15"
|
||||
);
|
||||
compare_state(init, &result);
|
||||
}
|
||||
|
||||
#define TEST(n, cmd, type) \
|
||||
static void __attribute__((naked)) test_##n(void) \
|
||||
{ \
|
||||
asm volatile(cmd); \
|
||||
asm volatile("ret"); \
|
||||
}
|
||||
#include TEST_FILE
|
||||
|
||||
|
||||
static const TestDef test_table[] = {
|
||||
#define TEST(n, cmd, type) {n, test_##n, cmd, &init##type},
|
||||
#include TEST_FILE
|
||||
{-1, NULL, "", NULL}
|
||||
};
|
||||
|
||||
static void run_all(void)
|
||||
{
|
||||
const TestDef *t;
|
||||
for (t = test_table; t->fn; t++) {
|
||||
run_test(t);
|
||||
}
|
||||
}
|
||||
|
||||
#define ARRAY_LEN(x) (sizeof(x) / sizeof(x[0]))
|
||||
|
||||
float val_f32[] = {2.0, -1.0, 4.8, 0.8, 3, -42.0, 5e6, 7.5, 8.3};
|
||||
uint64_t val_i64[] = {
|
||||
0x3d6b3b6a9e4118f2lu, 0x355ae76d2774d78clu,
|
||||
0xd851c54a56bf1f29lu, 0x4a84d1d50bf4c4fflu,
|
||||
0x5826475e2c5fd799lu, 0xfd32edc01243f5e9lu,
|
||||
};
|
||||
|
||||
v2di deadbeef = {0xa5a5a5a5deadbeefull, 0xa5a5a5a5deadbeefull};
|
||||
|
||||
void init_f32reg(uint64_t *r)
|
||||
{
|
||||
static int n;
|
||||
float v[2];
|
||||
int i;
|
||||
for (i = 0; i < 2; i++) {
|
||||
v[i] = val_f32[n++];
|
||||
if (n == ARRAY_LEN(val_f32)) {
|
||||
n = 0;
|
||||
}
|
||||
}
|
||||
memcpy(r, v, sizeof(*r));
|
||||
}
|
||||
|
||||
void init_intreg(uint64_t *r)
|
||||
{
|
||||
static uint64_t mask;
|
||||
static int n;
|
||||
|
||||
*r = val_i64[n] ^ mask;
|
||||
n++;
|
||||
if (n == ARRAY_LEN(val_i64)) {
|
||||
n = 0;
|
||||
mask *= 0x104C11DB7;
|
||||
}
|
||||
}
|
||||
|
||||
static void init_all(reg_state *s)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 16; i++) {
|
||||
init_intreg(&s->r[i]);
|
||||
}
|
||||
s->r[3] = (uint64_t)&s->mem[0]; /* rdx */
|
||||
s->r[5] = (uint64_t)&s->mem[2]; /* rdi */
|
||||
s->r[6] = 0;
|
||||
s->r[7] = 0;
|
||||
s->flags = 2;
|
||||
for (i = 0; i < 8; i++) {
|
||||
s->xmm[i] = deadbeef;
|
||||
memcpy(&s->mm[i], &s->xmm[i], sizeof(s->mm[i]));
|
||||
}
|
||||
for (i = 0; i < 2; i++) {
|
||||
s->mem0[i] = deadbeef;
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
init_all(&initI);
|
||||
init_intreg(&initI.mm[5]);
|
||||
init_intreg(&initI.mm[6]);
|
||||
init_intreg(&initI.mm[7]);
|
||||
init_intreg(&initI.mem0[1].q0);
|
||||
init_intreg(&initI.mem0[1].q1);
|
||||
printf("Int:\n");
|
||||
dump_regs(&initI, 0);
|
||||
|
||||
init_all(&initF32);
|
||||
init_f32reg(&initF32.mm[5]);
|
||||
init_f32reg(&initF32.mm[6]);
|
||||
init_f32reg(&initF32.mm[7]);
|
||||
init_f32reg(&initF32.mem0[1].q0);
|
||||
init_f32reg(&initF32.mem0[1].q1);
|
||||
initF32.ff = 32;
|
||||
printf("F32:\n");
|
||||
dump_regs(&initF32, 32);
|
||||
|
||||
if (argc > 1) {
|
||||
int n = atoi(argv[1]);
|
||||
run_test(&test_table[n]);
|
||||
} else {
|
||||
run_all();
|
||||
}
|
||||
return 0;
|
||||
}
|
244
tests/tcg/i386/test-mmx.py
Executable file
244
tests/tcg/i386/test-mmx.py
Executable file
@ -0,0 +1,244 @@
|
||||
#! /usr/bin/env python3
|
||||
|
||||
# Generate test-avx.h from x86.csv
|
||||
|
||||
import csv
|
||||
import sys
|
||||
from fnmatch import fnmatch
|
||||
|
||||
ignore = set(["EMMS", "FEMMS", "FISTTP",
|
||||
"LDMXCSR", "VLDMXCSR", "STMXCSR", "VSTMXCSR"])
|
||||
|
||||
imask = {
|
||||
'PALIGNR': 0x3f,
|
||||
'PEXTRB': 0x0f,
|
||||
'PEXTRW': 0x07,
|
||||
'PEXTRD': 0x03,
|
||||
'PEXTRQ': 0x01,
|
||||
'PINSRB': 0x0f,
|
||||
'PINSRW': 0x07,
|
||||
'PINSRD': 0x03,
|
||||
'PINSRQ': 0x01,
|
||||
'PSHUF[DW]': 0xff,
|
||||
'PSHUF[LH]W': 0xff,
|
||||
'PS[LR][AL][WDQ]': 0x3f,
|
||||
}
|
||||
|
||||
def strip_comments(x):
|
||||
for l in x:
|
||||
if l != '' and l[0] != '#':
|
||||
yield l
|
||||
|
||||
def reg_w(w):
|
||||
if w == 8:
|
||||
return 'al'
|
||||
elif w == 16:
|
||||
return 'ax'
|
||||
elif w == 32:
|
||||
return 'eax'
|
||||
elif w == 64:
|
||||
return 'rax'
|
||||
raise Exception("bad reg_w %d" % w)
|
||||
|
||||
def mem_w(w):
|
||||
if w == 8:
|
||||
t = "BYTE"
|
||||
elif w == 16:
|
||||
t = "WORD"
|
||||
elif w == 32:
|
||||
t = "DWORD"
|
||||
elif w == 64:
|
||||
t = "QWORD"
|
||||
else:
|
||||
raise Exception()
|
||||
|
||||
return t + " PTR 32[rdx]"
|
||||
|
||||
class MMArg():
|
||||
isxmm = True
|
||||
|
||||
def __init__(self, mw):
|
||||
if mw not in [0, 32, 64]:
|
||||
raise Exception("Bad /m width: %s" % w)
|
||||
self.mw = mw
|
||||
self.ismem = mw != 0
|
||||
def regstr(self, n):
|
||||
if n < 0:
|
||||
return mem_w(self.mw)
|
||||
else:
|
||||
return "mm%d" % (n, )
|
||||
|
||||
def match(op, pattern):
|
||||
return fnmatch(op, pattern)
|
||||
|
||||
class ArgImm8u():
|
||||
isxmm = False
|
||||
ismem = False
|
||||
def __init__(self, op):
|
||||
for k, v in imask.items():
|
||||
if match(op, k):
|
||||
self.mask = imask[k];
|
||||
return
|
||||
raise Exception("Unknown immediate")
|
||||
def vals(self):
|
||||
mask = self.mask
|
||||
yield 0
|
||||
n = 0
|
||||
while n != mask:
|
||||
n += 1
|
||||
while (n & ~mask) != 0:
|
||||
n += (n & ~mask)
|
||||
yield n
|
||||
|
||||
class ArgRM():
|
||||
isxmm = False
|
||||
def __init__(self, rw, mw):
|
||||
if rw not in [8, 16, 32, 64]:
|
||||
raise Exception("Bad r/w width: %s" % w)
|
||||
if mw not in [0, 8, 16, 32, 64]:
|
||||
raise Exception("Bad r/w width: %s" % w)
|
||||
self.rw = rw
|
||||
self.mw = mw
|
||||
self.ismem = mw != 0
|
||||
def regstr(self, n):
|
||||
if n < 0:
|
||||
return mem_w(self.mw)
|
||||
else:
|
||||
return reg_w(self.rw)
|
||||
|
||||
class ArgMem():
|
||||
isxmm = False
|
||||
ismem = True
|
||||
def __init__(self, w):
|
||||
if w not in [8, 16, 32, 64, 128, 256]:
|
||||
raise Exception("Bad mem width: %s" % w)
|
||||
self.w = w
|
||||
def regstr(self, n):
|
||||
return mem_w(self.w)
|
||||
|
||||
class SkipInstruction(Exception):
|
||||
pass
|
||||
|
||||
def ArgGenerator(arg, op):
|
||||
if arg[:2] == 'mm':
|
||||
if "/" in arg:
|
||||
r, m = arg.split('/')
|
||||
if (m[0] != 'm'):
|
||||
raise Exception("Expected /m: %s", arg)
|
||||
return MMArg(int(m[1:]));
|
||||
else:
|
||||
return MMArg(0);
|
||||
elif arg[:4] == 'imm8':
|
||||
return ArgImm8u(op);
|
||||
elif arg[0] == 'r':
|
||||
if '/m' in arg:
|
||||
r, m = arg.split('/')
|
||||
if (m[0] != 'm'):
|
||||
raise Exception("Expected /m: %s", arg)
|
||||
mw = int(m[1:])
|
||||
if r == 'r':
|
||||
rw = mw
|
||||
else:
|
||||
rw = int(r[1:])
|
||||
return ArgRM(rw, mw)
|
||||
|
||||
return ArgRM(int(arg[1:]), 0);
|
||||
elif arg[0] == 'm':
|
||||
return ArgMem(int(arg[1:]))
|
||||
else:
|
||||
raise SkipInstruction
|
||||
|
||||
class InsnGenerator:
|
||||
def __init__(self, op, args):
|
||||
self.op = op
|
||||
if op[0:2] == "PF":
|
||||
self.optype = 'F32'
|
||||
else:
|
||||
self.optype = 'I'
|
||||
|
||||
try:
|
||||
self.args = list(ArgGenerator(a, op) for a in args)
|
||||
if len(self.args) > 0 and self.args[-1] is None:
|
||||
self.args = self.args[:-1]
|
||||
except SkipInstruction:
|
||||
raise
|
||||
except Exception as e:
|
||||
raise Exception("Bad arg %s: %s" % (op, e))
|
||||
|
||||
def gen(self):
|
||||
regs = (5, 6, 7)
|
||||
dest = 4
|
||||
|
||||
nreg = len(self.args)
|
||||
if nreg == 0:
|
||||
yield self.op
|
||||
return
|
||||
if isinstance(self.args[-1], ArgImm8u):
|
||||
nreg -= 1
|
||||
immarg = self.args[-1]
|
||||
else:
|
||||
immarg = None
|
||||
memarg = -1
|
||||
for n, arg in enumerate(self.args):
|
||||
if arg.ismem:
|
||||
memarg = n
|
||||
|
||||
if nreg == 1:
|
||||
regset = [(regs[0],)]
|
||||
if memarg == 0:
|
||||
regset += [(-1,)]
|
||||
elif nreg == 2:
|
||||
regset = [
|
||||
(regs[0], regs[1]),
|
||||
(regs[0], regs[0]),
|
||||
]
|
||||
if memarg == 0:
|
||||
regset += [(-1, regs[0])]
|
||||
elif memarg == 1:
|
||||
regset += [(dest, -1)]
|
||||
else:
|
||||
raise Exception("Too many regs: %s(%d)" % (self.op, nreg))
|
||||
|
||||
for regv in regset:
|
||||
argstr = []
|
||||
for i in range(nreg):
|
||||
arg = self.args[i]
|
||||
argstr.append(arg.regstr(regv[i]))
|
||||
if immarg is None:
|
||||
yield self.op + ' ' + ','.join(argstr)
|
||||
else:
|
||||
for immval in immarg.vals():
|
||||
yield self.op + ' ' + ','.join(argstr) + ',' + str(immval)
|
||||
|
||||
def split0(s):
|
||||
if s == '':
|
||||
return []
|
||||
return s.split(',')
|
||||
|
||||
def main():
|
||||
n = 0
|
||||
if len(sys.argv) <= 3:
|
||||
print("Usage: test-mmx.py x86.csv test-mmx.h CPUID...")
|
||||
exit(1)
|
||||
csvfile = open(sys.argv[1], 'r', newline='')
|
||||
archs = sys.argv[3:]
|
||||
with open(sys.argv[2], "w") as outf:
|
||||
outf.write("// Generated by test-mmx.py. Do not edit.\n")
|
||||
for row in csv.reader(strip_comments(csvfile)):
|
||||
insn = row[0].replace(',', '').split()
|
||||
if insn[0] in ignore:
|
||||
continue
|
||||
cpuid = row[6]
|
||||
if cpuid in archs:
|
||||
try:
|
||||
g = InsnGenerator(insn[0], insn[1:])
|
||||
for insn in g.gen():
|
||||
outf.write('TEST(%d, "%s", %s)\n' % (n, insn, g.optype))
|
||||
n += 1
|
||||
except SkipInstruction:
|
||||
pass
|
||||
outf.write("#undef TEST\n")
|
||||
csvfile.close()
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
@ -17,7 +17,6 @@ TESTS=$(MULTIARCH_TESTS)
|
||||
endif
|
||||
|
||||
run-test-i386-ssse3: QEMU_OPTS += -cpu max
|
||||
run-test-avx: QEMU_OPTS += -cpu max
|
||||
run-plugin-test-i386-ssse3-%: QEMU_OPTS += -cpu max
|
||||
|
||||
test-x86_64: LDFLAGS+=-lm -lc
|
||||
|
Loading…
Reference in New Issue
Block a user