Commit 776f2227f6244003a5bcb20ea77c49427e6af023
1 parent
d785e6be
x86_64 test program
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1321 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
5 changed files
with
588 additions
and
248 deletions
tests/Makefile
| @@ -6,6 +6,9 @@ LDFLAGS= | @@ -6,6 +6,9 @@ LDFLAGS= | ||
| 6 | ifeq ($(ARCH),i386) | 6 | ifeq ($(ARCH),i386) |
| 7 | TESTS=linux-test testthread sha1-i386 test-i386 runcom | 7 | TESTS=linux-test testthread sha1-i386 test-i386 runcom |
| 8 | endif | 8 | endif |
| 9 | +ifeq ($(ARCH),x86_64) | ||
| 10 | +TESTS=test-x86_64 | ||
| 11 | +endif | ||
| 9 | TESTS+=sha1# test_path | 12 | TESTS+=sha1# test_path |
| 10 | #TESTS+=test_path | 13 | #TESTS+=test_path |
| 11 | 14 | ||
| @@ -24,11 +27,15 @@ test_path: test_path.c | @@ -24,11 +27,15 @@ test_path: test_path.c | ||
| 24 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< | 27 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< |
| 25 | ./$@ || { rm $@; exit 1; } | 28 | ./$@ || { rm $@; exit 1; } |
| 26 | 29 | ||
| 27 | -# i386 emulation test (test various opcodes) */ | 30 | +# i386/x86_64 emulation test (test various opcodes) */ |
| 28 | test-i386: test-i386.c test-i386-code16.S test-i386-vm86.S \ | 31 | test-i386: test-i386.c test-i386-code16.S test-i386-vm86.S \ |
| 29 | test-i386.h test-i386-shift.h test-i386-muldiv.h | 32 | test-i386.h test-i386-shift.h test-i386-muldiv.h |
| 30 | - $(CC) $(CFLAGS) $(LDFLAGS) -static -o $@ test-i386.c \ | ||
| 31 | - test-i386-code16.S test-i386-vm86.S -lm | 33 | + $(CC) $(CFLAGS) $(LDFLAGS) -static -o $@ \ |
| 34 | + test-i386.c test-i386-code16.S test-i386-vm86.S -lm | ||
| 35 | + | ||
| 36 | +test-x86_64: test-i386.c \ | ||
| 37 | + test-i386.h test-i386-shift.h test-i386-muldiv.h | ||
| 38 | + $(CC) $(CFLAGS) $(LDFLAGS) -static -o $@ test-i386.c -lm | ||
| 32 | 39 | ||
| 33 | ifeq ($(ARCH),i386) | 40 | ifeq ($(ARCH),i386) |
| 34 | test: test-i386 | 41 | test: test-i386 |
tests/test-i386-muldiv.h
| 1 | 1 | ||
| 2 | -void glue(glue(test_, OP), b)(int op0, int op1) | 2 | +void glue(glue(test_, OP), b)(long op0, long op1) |
| 3 | { | 3 | { |
| 4 | - int res, s1, s0, flags; | 4 | + long res, s1, s0, flags; |
| 5 | s0 = op0; | 5 | s0 = op0; |
| 6 | s1 = op1; | 6 | s1 = op1; |
| 7 | res = s0; | 7 | res = s0; |
| @@ -10,16 +10,16 @@ void glue(glue(test_, OP), b)(int op0, int op1) | @@ -10,16 +10,16 @@ void glue(glue(test_, OP), b)(int op0, int op1) | ||
| 10 | "popf\n\t" | 10 | "popf\n\t" |
| 11 | stringify(OP)"b %b2\n\t" | 11 | stringify(OP)"b %b2\n\t" |
| 12 | "pushf\n\t" | 12 | "pushf\n\t" |
| 13 | - "popl %1\n\t" | 13 | + "pop %1\n\t" |
| 14 | : "=a" (res), "=g" (flags) | 14 | : "=a" (res), "=g" (flags) |
| 15 | : "q" (s1), "0" (res), "1" (flags)); | 15 | : "q" (s1), "0" (res), "1" (flags)); |
| 16 | - printf("%-10s A=%08x B=%08x R=%08x CC=%04x\n", | 16 | + printf("%-10s A=" FMTLX " B=" FMTLX " R=" FMTLX " CC=%04lx\n", |
| 17 | stringify(OP) "b", s0, s1, res, flags & CC_MASK); | 17 | stringify(OP) "b", s0, s1, res, flags & CC_MASK); |
| 18 | } | 18 | } |
| 19 | 19 | ||
| 20 | -void glue(glue(test_, OP), w)(int op0h, int op0, int op1) | 20 | +void glue(glue(test_, OP), w)(long op0h, long op0, long op1) |
| 21 | { | 21 | { |
| 22 | - int res, s1, flags, resh; | 22 | + long res, s1, flags, resh; |
| 23 | s1 = op1; | 23 | s1 = op1; |
| 24 | resh = op0h; | 24 | resh = op0h; |
| 25 | res = op0; | 25 | res = op0; |
| @@ -28,29 +28,49 @@ void glue(glue(test_, OP), w)(int op0h, int op0, int op1) | @@ -28,29 +28,49 @@ void glue(glue(test_, OP), w)(int op0h, int op0, int op1) | ||
| 28 | "popf\n\t" | 28 | "popf\n\t" |
| 29 | stringify(OP) "w %w3\n\t" | 29 | stringify(OP) "w %w3\n\t" |
| 30 | "pushf\n\t" | 30 | "pushf\n\t" |
| 31 | - "popl %1\n\t" | 31 | + "pop %1\n\t" |
| 32 | : "=a" (res), "=g" (flags), "=d" (resh) | 32 | : "=a" (res), "=g" (flags), "=d" (resh) |
| 33 | : "q" (s1), "0" (res), "1" (flags), "2" (resh)); | 33 | : "q" (s1), "0" (res), "1" (flags), "2" (resh)); |
| 34 | - printf("%-10s AH=%08x AL=%08x B=%08x RH=%08x RL=%08x CC=%04x\n", | 34 | + printf("%-10s AH=" FMTLX " AL=" FMTLX " B=" FMTLX " RH=" FMTLX " RL=" FMTLX " CC=%04lx\n", |
| 35 | stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK); | 35 | stringify(OP) "w", op0h, op0, s1, resh, res, flags & CC_MASK); |
| 36 | } | 36 | } |
| 37 | 37 | ||
| 38 | -void glue(glue(test_, OP), l)(int op0h, int op0, int op1) | 38 | +void glue(glue(test_, OP), l)(long op0h, long op0, long op1) |
| 39 | { | 39 | { |
| 40 | - int res, s1, flags, resh; | 40 | + long res, s1, flags, resh; |
| 41 | s1 = op1; | 41 | s1 = op1; |
| 42 | resh = op0h; | 42 | resh = op0h; |
| 43 | res = op0; | 43 | res = op0; |
| 44 | flags = 0; | 44 | flags = 0; |
| 45 | asm ("push %5\n\t" | 45 | asm ("push %5\n\t" |
| 46 | "popf\n\t" | 46 | "popf\n\t" |
| 47 | - stringify(OP) "l %3\n\t" | 47 | + stringify(OP) "l %k3\n\t" |
| 48 | "pushf\n\t" | 48 | "pushf\n\t" |
| 49 | - "popl %1\n\t" | 49 | + "pop %1\n\t" |
| 50 | : "=a" (res), "=g" (flags), "=d" (resh) | 50 | : "=a" (res), "=g" (flags), "=d" (resh) |
| 51 | : "q" (s1), "0" (res), "1" (flags), "2" (resh)); | 51 | : "q" (s1), "0" (res), "1" (flags), "2" (resh)); |
| 52 | - printf("%-10s AH=%08x AL=%08x B=%08x RH=%08x RL=%08x CC=%04x\n", | 52 | + printf("%-10s AH=" FMTLX " AL=" FMTLX " B=" FMTLX " RH=" FMTLX " RL=" FMTLX " CC=%04lx\n", |
| 53 | stringify(OP) "l", op0h, op0, s1, resh, res, flags & CC_MASK); | 53 | stringify(OP) "l", op0h, op0, s1, resh, res, flags & CC_MASK); |
| 54 | } | 54 | } |
| 55 | 55 | ||
| 56 | +#if defined(__x86_64__) | ||
| 57 | +void glue(glue(test_, OP), q)(long op0h, long op0, long op1) | ||
| 58 | +{ | ||
| 59 | + long res, s1, flags, resh; | ||
| 60 | + s1 = op1; | ||
| 61 | + resh = op0h; | ||
| 62 | + res = op0; | ||
| 63 | + flags = 0; | ||
| 64 | + asm ("push %5\n\t" | ||
| 65 | + "popf\n\t" | ||
| 66 | + stringify(OP) "q %3\n\t" | ||
| 67 | + "pushf\n\t" | ||
| 68 | + "pop %1\n\t" | ||
| 69 | + : "=a" (res), "=g" (flags), "=d" (resh) | ||
| 70 | + : "q" (s1), "0" (res), "1" (flags), "2" (resh)); | ||
| 71 | + printf("%-10s AH=" FMTLX " AL=" FMTLX " B=" FMTLX " RH=" FMTLX " RL=" FMTLX " CC=%04lx\n", | ||
| 72 | + stringify(OP) "q", op0h, op0, s1, resh, res, flags & CC_MASK); | ||
| 73 | +} | ||
| 74 | +#endif | ||
| 75 | + | ||
| 56 | #undef OP | 76 | #undef OP |
tests/test-i386-shift.h
| 1 | 1 | ||
| 2 | #define exec_op glue(exec_, OP) | 2 | #define exec_op glue(exec_, OP) |
| 3 | +#define exec_opq glue(glue(exec_, OP), q) | ||
| 3 | #define exec_opl glue(glue(exec_, OP), l) | 4 | #define exec_opl glue(glue(exec_, OP), l) |
| 4 | #define exec_opw glue(glue(exec_, OP), w) | 5 | #define exec_opw glue(glue(exec_, OP), w) |
| 5 | #define exec_opb glue(glue(exec_, OP), b) | 6 | #define exec_opb glue(glue(exec_, OP), b) |
| @@ -7,106 +8,141 @@ | @@ -7,106 +8,141 @@ | ||
| 7 | #ifndef OP_SHIFTD | 8 | #ifndef OP_SHIFTD |
| 8 | 9 | ||
| 9 | #ifdef OP_NOBYTE | 10 | #ifdef OP_NOBYTE |
| 10 | -#define EXECSHIFT(size, res, s1, s2, flags) \ | 11 | +#define EXECSHIFT(size, rsize, res, s1, s2, flags) \ |
| 11 | asm ("push %4\n\t"\ | 12 | asm ("push %4\n\t"\ |
| 12 | "popf\n\t"\ | 13 | "popf\n\t"\ |
| 13 | - stringify(OP) size " %" size "2, %" size "0\n\t" \ | 14 | + stringify(OP) size " %" rsize "2, %" rsize "0\n\t" \ |
| 14 | "pushf\n\t"\ | 15 | "pushf\n\t"\ |
| 15 | - "popl %1\n\t"\ | 16 | + "pop %1\n\t"\ |
| 16 | : "=g" (res), "=g" (flags)\ | 17 | : "=g" (res), "=g" (flags)\ |
| 17 | : "r" (s1), "0" (res), "1" (flags)); | 18 | : "r" (s1), "0" (res), "1" (flags)); |
| 18 | #else | 19 | #else |
| 19 | -#define EXECSHIFT(size, res, s1, s2, flags) \ | 20 | +#define EXECSHIFT(size, rsize, res, s1, s2, flags) \ |
| 20 | asm ("push %4\n\t"\ | 21 | asm ("push %4\n\t"\ |
| 21 | "popf\n\t"\ | 22 | "popf\n\t"\ |
| 22 | - stringify(OP) size " %%cl, %" size "0\n\t" \ | 23 | + stringify(OP) size " %%cl, %" rsize "0\n\t" \ |
| 23 | "pushf\n\t"\ | 24 | "pushf\n\t"\ |
| 24 | - "popl %1\n\t"\ | 25 | + "pop %1\n\t"\ |
| 25 | : "=q" (res), "=g" (flags)\ | 26 | : "=q" (res), "=g" (flags)\ |
| 26 | : "c" (s1), "0" (res), "1" (flags)); | 27 | : "c" (s1), "0" (res), "1" (flags)); |
| 27 | #endif | 28 | #endif |
| 28 | 29 | ||
| 29 | -void exec_opl(int s2, int s0, int s1, int iflags) | 30 | +#if defined(__x86_64__) |
| 31 | +void exec_opq(long s2, long s0, long s1, long iflags) | ||
| 30 | { | 32 | { |
| 31 | - int res, flags; | 33 | + long res, flags; |
| 32 | res = s0; | 34 | res = s0; |
| 33 | flags = iflags; | 35 | flags = iflags; |
| 34 | - EXECSHIFT("", res, s1, s2, flags); | 36 | + EXECSHIFT("q", "", res, s1, s2, flags); |
| 35 | /* overflow is undefined if count != 1 */ | 37 | /* overflow is undefined if count != 1 */ |
| 36 | if (s1 != 1) | 38 | if (s1 != 1) |
| 37 | flags &= ~CC_O; | 39 | flags &= ~CC_O; |
| 38 | - printf("%-10s A=%08x B=%08x R=%08x CCIN=%04x CC=%04x\n", | 40 | + printf("%-10s A=" FMTLX " B=" FMTLX " R=" FMTLX " CCIN=%04lx CC=%04lx\n", |
| 41 | + stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK); | ||
| 42 | +} | ||
| 43 | +#endif | ||
| 44 | + | ||
| 45 | +void exec_opl(long s2, long s0, long s1, long iflags) | ||
| 46 | +{ | ||
| 47 | + long res, flags; | ||
| 48 | + res = s0; | ||
| 49 | + flags = iflags; | ||
| 50 | + EXECSHIFT("l", "k", res, s1, s2, flags); | ||
| 51 | + /* overflow is undefined if count != 1 */ | ||
| 52 | + if (s1 != 1) | ||
| 53 | + flags &= ~CC_O; | ||
| 54 | + printf("%-10s A=" FMTLX " B=" FMTLX " R=" FMTLX " CCIN=%04lx CC=%04lx\n", | ||
| 39 | stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); | 55 | stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); |
| 40 | } | 56 | } |
| 41 | 57 | ||
| 42 | -void exec_opw(int s2, int s0, int s1, int iflags) | 58 | +void exec_opw(long s2, long s0, long s1, long iflags) |
| 43 | { | 59 | { |
| 44 | - int res, flags; | 60 | + long res, flags; |
| 45 | res = s0; | 61 | res = s0; |
| 46 | flags = iflags; | 62 | flags = iflags; |
| 47 | - EXECSHIFT("w", res, s1, s2, flags); | 63 | + EXECSHIFT("w", "w", res, s1, s2, flags); |
| 48 | /* overflow is undefined if count != 1 */ | 64 | /* overflow is undefined if count != 1 */ |
| 49 | if (s1 != 1) | 65 | if (s1 != 1) |
| 50 | flags &= ~CC_O; | 66 | flags &= ~CC_O; |
| 51 | - printf("%-10s A=%08x B=%08x R=%08x CCIN=%04x CC=%04x\n", | 67 | + printf("%-10s A=" FMTLX " B=" FMTLX " R=" FMTLX " CCIN=%04lx CC=%04lx\n", |
| 52 | stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); | 68 | stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); |
| 53 | } | 69 | } |
| 54 | 70 | ||
| 55 | #else | 71 | #else |
| 56 | -#define EXECSHIFT(size, res, s1, s2, flags) \ | 72 | +#define EXECSHIFT(size, rsize, res, s1, s2, flags) \ |
| 57 | asm ("push %4\n\t"\ | 73 | asm ("push %4\n\t"\ |
| 58 | "popf\n\t"\ | 74 | "popf\n\t"\ |
| 59 | - stringify(OP) size " %%cl, %" size "5, %" size "0\n\t" \ | 75 | + stringify(OP) size " %%cl, %" rsize "5, %" rsize "0\n\t" \ |
| 60 | "pushf\n\t"\ | 76 | "pushf\n\t"\ |
| 61 | - "popl %1\n\t"\ | 77 | + "pop %1\n\t"\ |
| 62 | : "=g" (res), "=g" (flags)\ | 78 | : "=g" (res), "=g" (flags)\ |
| 63 | : "c" (s1), "0" (res), "1" (flags), "r" (s2)); | 79 | : "c" (s1), "0" (res), "1" (flags), "r" (s2)); |
| 64 | 80 | ||
| 65 | -void exec_opl(int s2, int s0, int s1, int iflags) | 81 | +#if defined(__x86_64__) |
| 82 | +void exec_opq(long s2, long s0, long s1, long iflags) | ||
| 83 | +{ | ||
| 84 | + long res, flags; | ||
| 85 | + res = s0; | ||
| 86 | + flags = iflags; | ||
| 87 | + EXECSHIFT("q", "", res, s1, s2, flags); | ||
| 88 | + /* overflow is undefined if count != 1 */ | ||
| 89 | + if (s1 != 1) | ||
| 90 | + flags &= ~CC_O; | ||
| 91 | + printf("%-10s A=" FMTLX " B=" FMTLX " C=" FMTLX " R=" FMTLX " CCIN=%04lx CC=%04lx\n", | ||
| 92 | + stringify(OP) "q", s0, s2, s1, res, iflags, flags & CC_MASK); | ||
| 93 | +} | ||
| 94 | +#endif | ||
| 95 | + | ||
| 96 | +void exec_opl(long s2, long s0, long s1, long iflags) | ||
| 66 | { | 97 | { |
| 67 | - int res, flags; | 98 | + long res, flags; |
| 68 | res = s0; | 99 | res = s0; |
| 69 | flags = iflags; | 100 | flags = iflags; |
| 70 | - EXECSHIFT("", res, s1, s2, flags); | 101 | + EXECSHIFT("l", "k", res, s1, s2, flags); |
| 71 | /* overflow is undefined if count != 1 */ | 102 | /* overflow is undefined if count != 1 */ |
| 72 | if (s1 != 1) | 103 | if (s1 != 1) |
| 73 | flags &= ~CC_O; | 104 | flags &= ~CC_O; |
| 74 | - printf("%-10s A=%08x B=%08x C=%08x R=%08x CCIN=%04x CC=%04x\n", | 105 | + printf("%-10s A=" FMTLX " B=" FMTLX " C=" FMTLX " R=" FMTLX " CCIN=%04lx CC=%04lx\n", |
| 75 | stringify(OP) "l", s0, s2, s1, res, iflags, flags & CC_MASK); | 106 | stringify(OP) "l", s0, s2, s1, res, iflags, flags & CC_MASK); |
| 76 | } | 107 | } |
| 77 | 108 | ||
| 78 | -void exec_opw(int s2, int s0, int s1, int iflags) | 109 | +void exec_opw(long s2, long s0, long s1, long iflags) |
| 79 | { | 110 | { |
| 80 | - int res, flags; | 111 | + long res, flags; |
| 81 | res = s0; | 112 | res = s0; |
| 82 | flags = iflags; | 113 | flags = iflags; |
| 83 | - EXECSHIFT("w", res, s1, s2, flags); | 114 | + EXECSHIFT("w", "w", res, s1, s2, flags); |
| 84 | /* overflow is undefined if count != 1 */ | 115 | /* overflow is undefined if count != 1 */ |
| 85 | if (s1 != 1) | 116 | if (s1 != 1) |
| 86 | flags &= ~CC_O; | 117 | flags &= ~CC_O; |
| 87 | - printf("%-10s A=%08x B=%08x C=%08x R=%08x CCIN=%04x CC=%04x\n", | 118 | + printf("%-10s A=" FMTLX " B=" FMTLX " C=" FMTLX " R=" FMTLX " CCIN=%04lx CC=%04lx\n", |
| 88 | stringify(OP) "w", s0, s2, s1, res, iflags, flags & CC_MASK); | 119 | stringify(OP) "w", s0, s2, s1, res, iflags, flags & CC_MASK); |
| 89 | } | 120 | } |
| 90 | 121 | ||
| 91 | #endif | 122 | #endif |
| 92 | 123 | ||
| 93 | #ifndef OP_NOBYTE | 124 | #ifndef OP_NOBYTE |
| 94 | -void exec_opb(int s0, int s1, int iflags) | 125 | +void exec_opb(long s0, long s1, long iflags) |
| 95 | { | 126 | { |
| 96 | - int res, flags; | 127 | + long res, flags; |
| 97 | res = s0; | 128 | res = s0; |
| 98 | flags = iflags; | 129 | flags = iflags; |
| 99 | - EXECSHIFT("b", res, s1, 0, flags); | 130 | + EXECSHIFT("b", "b", res, s1, 0, flags); |
| 100 | /* overflow is undefined if count != 1 */ | 131 | /* overflow is undefined if count != 1 */ |
| 101 | if (s1 != 1) | 132 | if (s1 != 1) |
| 102 | flags &= ~CC_O; | 133 | flags &= ~CC_O; |
| 103 | - printf("%-10s A=%08x B=%08x R=%08x CCIN=%04x CC=%04x\n", | 134 | + printf("%-10s A=" FMTLX " B=" FMTLX " R=" FMTLX " CCIN=%04lx CC=%04lx\n", |
| 104 | stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK); | 135 | stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK); |
| 105 | } | 136 | } |
| 106 | #endif | 137 | #endif |
| 107 | 138 | ||
| 108 | -void exec_op(int s2, int s0, int s1) | 139 | +void exec_op(long s2, long s0, long s1) |
| 109 | { | 140 | { |
| 141 | + s2 = i2l(s2); | ||
| 142 | + s0 = i2l(s0); | ||
| 143 | +#if defined(__x86_64__) | ||
| 144 | + exec_opq(s2, s0, s1, 0); | ||
| 145 | +#endif | ||
| 110 | exec_opl(s2, s0, s1, 0); | 146 | exec_opl(s2, s0, s1, 0); |
| 111 | #ifdef OP_SHIFTD | 147 | #ifdef OP_SHIFTD |
| 112 | if (s1 <= 15) | 148 | if (s1 <= 15) |
| @@ -118,6 +154,9 @@ void exec_op(int s2, int s0, int s1) | @@ -118,6 +154,9 @@ void exec_op(int s2, int s0, int s1) | ||
| 118 | exec_opb(s0, s1, 0); | 154 | exec_opb(s0, s1, 0); |
| 119 | #endif | 155 | #endif |
| 120 | #ifdef OP_CC | 156 | #ifdef OP_CC |
| 157 | +#if defined(__x86_64__) | ||
| 158 | + exec_opq(s2, s0, s1, CC_C); | ||
| 159 | +#endif | ||
| 121 | exec_opl(s2, s0, s1, CC_C); | 160 | exec_opl(s2, s0, s1, CC_C); |
| 122 | exec_opw(s2, s0, s1, CC_C); | 161 | exec_opw(s2, s0, s1, CC_C); |
| 123 | exec_opb(s0, s1, CC_C); | 162 | exec_opb(s0, s1, CC_C); |
| @@ -126,10 +165,15 @@ void exec_op(int s2, int s0, int s1) | @@ -126,10 +165,15 @@ void exec_op(int s2, int s0, int s1) | ||
| 126 | 165 | ||
| 127 | void glue(test_, OP)(void) | 166 | void glue(test_, OP)(void) |
| 128 | { | 167 | { |
| 129 | - int i; | ||
| 130 | - for(i = 0; i < 32; i++) | 168 | + int i, n; |
| 169 | +#if defined(__x86_64__) | ||
| 170 | + n = 64; | ||
| 171 | +#else | ||
| 172 | + n = 32; | ||
| 173 | +#endif | ||
| 174 | + for(i = 0; i < n; i++) | ||
| 131 | exec_op(0x21ad3d34, 0x12345678, i); | 175 | exec_op(0x21ad3d34, 0x12345678, i); |
| 132 | - for(i = 0; i < 32; i++) | 176 | + for(i = 0; i < n; i++) |
| 133 | exec_op(0x813f3421, 0x82345678, i); | 177 | exec_op(0x813f3421, 0x82345678, i); |
| 134 | } | 178 | } |
| 135 | 179 |
tests/test-i386.c
| @@ -28,14 +28,35 @@ | @@ -28,14 +28,35 @@ | ||
| 28 | #include <errno.h> | 28 | #include <errno.h> |
| 29 | #include <sys/ucontext.h> | 29 | #include <sys/ucontext.h> |
| 30 | #include <sys/mman.h> | 30 | #include <sys/mman.h> |
| 31 | -#include <asm/vm86.h> | ||
| 32 | 31 | ||
| 33 | -#define TEST_CMOV 0 | ||
| 34 | -#define TEST_FCOMI 0 | 32 | +#if !defined(__x86_64__) |
| 35 | #define TEST_VM86 | 33 | #define TEST_VM86 |
| 34 | +#define TEST_SEGS | ||
| 35 | +#endif | ||
| 36 | //#define LINUX_VM86_IOPL_FIX | 36 | //#define LINUX_VM86_IOPL_FIX |
| 37 | //#define TEST_P4_FLAGS | 37 | //#define TEST_P4_FLAGS |
| 38 | -//#define TEST_SSE | 38 | +#if defined(__x86_64__) |
| 39 | +#define TEST_SSE | ||
| 40 | +#define TEST_CMOV 1 | ||
| 41 | +#define TEST_FCOMI 1 | ||
| 42 | +#else | ||
| 43 | +#define TEST_CMOV 0 | ||
| 44 | +#define TEST_FCOMI 0 | ||
| 45 | +#endif | ||
| 46 | + | ||
| 47 | +#if defined(__x86_64__) | ||
| 48 | +#define FMT64X "%016lx" | ||
| 49 | +#define FMTLX "%016lx" | ||
| 50 | +#define X86_64_ONLY(x) x | ||
| 51 | +#else | ||
| 52 | +#define FMT64X "%016llx" | ||
| 53 | +#define FMTLX "%08lx" | ||
| 54 | +#define X86_64_ONLY(x) | ||
| 55 | +#endif | ||
| 56 | + | ||
| 57 | +#ifdef TEST_VM86 | ||
| 58 | +#include <asm/vm86.h> | ||
| 59 | +#endif | ||
| 39 | 60 | ||
| 40 | #define xglue(x, y) x ## y | 61 | #define xglue(x, y) x ## y |
| 41 | #define glue(x, y) xglue(x, y) | 62 | #define glue(x, y) xglue(x, y) |
| @@ -49,12 +70,22 @@ | @@ -49,12 +70,22 @@ | ||
| 49 | #define CC_S 0x0080 | 70 | #define CC_S 0x0080 |
| 50 | #define CC_O 0x0800 | 71 | #define CC_O 0x0800 |
| 51 | 72 | ||
| 52 | -#define __init_call __attribute__ ((unused,__section__ (".initcall.init"))) | ||
| 53 | - | ||
| 54 | -static void *call_start __init_call = NULL; | 73 | +#define __init_call __attribute__ ((unused,__section__ ("initcall"))) |
| 55 | 74 | ||
| 56 | #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A) | 75 | #define CC_MASK (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A) |
| 57 | 76 | ||
| 77 | +#if defined(__x86_64__) | ||
| 78 | +static inline long i2l(long v) | ||
| 79 | +{ | ||
| 80 | + return v | ((v ^ 0xabcd) << 32); | ||
| 81 | +} | ||
| 82 | +#else | ||
| 83 | +static inline long i2l(long v) | ||
| 84 | +{ | ||
| 85 | + return v; | ||
| 86 | +} | ||
| 87 | +#endif | ||
| 88 | + | ||
| 58 | #define OP add | 89 | #define OP add |
| 59 | #include "test-i386.h" | 90 | #include "test-i386.h" |
| 60 | 91 | ||
| @@ -158,12 +189,20 @@ static void *call_start __init_call = NULL; | @@ -158,12 +189,20 @@ static void *call_start __init_call = NULL; | ||
| 158 | #include "test-i386-shift.h" | 189 | #include "test-i386-shift.h" |
| 159 | 190 | ||
| 160 | /* lea test (modrm support) */ | 191 | /* lea test (modrm support) */ |
| 192 | +#define TEST_LEAQ(STR)\ | ||
| 193 | +{\ | ||
| 194 | + asm("lea " STR ", %0"\ | ||
| 195 | + : "=r" (res)\ | ||
| 196 | + : "a" (eax), "b" (ebx), "c" (ecx), "d" (edx), "S" (esi), "D" (edi));\ | ||
| 197 | + printf("lea %s = " FMTLX "\n", STR, res);\ | ||
| 198 | +} | ||
| 199 | + | ||
| 161 | #define TEST_LEA(STR)\ | 200 | #define TEST_LEA(STR)\ |
| 162 | {\ | 201 | {\ |
| 163 | - asm("leal " STR ", %0"\ | 202 | + asm("lea " STR ", %0"\ |
| 164 | : "=r" (res)\ | 203 | : "=r" (res)\ |
| 165 | : "a" (eax), "b" (ebx), "c" (ecx), "d" (edx), "S" (esi), "D" (edi));\ | 204 | : "a" (eax), "b" (ebx), "c" (ecx), "d" (edx), "S" (esi), "D" (edi));\ |
| 166 | - printf("lea %s = %08x\n", STR, res);\ | 205 | + printf("lea %s = " FMTLX "\n", STR, res);\ |
| 167 | } | 206 | } |
| 168 | 207 | ||
| 169 | #define TEST_LEA16(STR)\ | 208 | #define TEST_LEA16(STR)\ |
| @@ -171,19 +210,19 @@ static void *call_start __init_call = NULL; | @@ -171,19 +210,19 @@ static void *call_start __init_call = NULL; | ||
| 171 | asm(".code16 ; .byte 0x67 ; leal " STR ", %0 ; .code32"\ | 210 | asm(".code16 ; .byte 0x67 ; leal " STR ", %0 ; .code32"\ |
| 172 | : "=wq" (res)\ | 211 | : "=wq" (res)\ |
| 173 | : "a" (eax), "b" (ebx), "c" (ecx), "d" (edx), "S" (esi), "D" (edi));\ | 212 | : "a" (eax), "b" (ebx), "c" (ecx), "d" (edx), "S" (esi), "D" (edi));\ |
| 174 | - printf("lea %s = %08x\n", STR, res);\ | 213 | + printf("lea %s = %08lx\n", STR, res);\ |
| 175 | } | 214 | } |
| 176 | 215 | ||
| 177 | 216 | ||
| 178 | void test_lea(void) | 217 | void test_lea(void) |
| 179 | { | 218 | { |
| 180 | - int eax, ebx, ecx, edx, esi, edi, res; | ||
| 181 | - eax = 0x0001; | ||
| 182 | - ebx = 0x0002; | ||
| 183 | - ecx = 0x0004; | ||
| 184 | - edx = 0x0008; | ||
| 185 | - esi = 0x0010; | ||
| 186 | - edi = 0x0020; | 219 | + long eax, ebx, ecx, edx, esi, edi, res; |
| 220 | + eax = i2l(0x0001); | ||
| 221 | + ebx = i2l(0x0002); | ||
| 222 | + ecx = i2l(0x0004); | ||
| 223 | + edx = i2l(0x0008); | ||
| 224 | + esi = i2l(0x0010); | ||
| 225 | + edi = i2l(0x0020); | ||
| 187 | 226 | ||
| 188 | TEST_LEA("0x4000"); | 227 | TEST_LEA("0x4000"); |
| 189 | 228 | ||
| @@ -239,6 +278,62 @@ void test_lea(void) | @@ -239,6 +278,62 @@ void test_lea(void) | ||
| 239 | TEST_LEA("0x4000(%%edx, %%ecx, 4)"); | 278 | TEST_LEA("0x4000(%%edx, %%ecx, 4)"); |
| 240 | TEST_LEA("0x4000(%%esi, %%ecx, 8)"); | 279 | TEST_LEA("0x4000(%%esi, %%ecx, 8)"); |
| 241 | 280 | ||
| 281 | +#if defined(__x86_64__) | ||
| 282 | + TEST_LEAQ("0x4000"); | ||
| 283 | + TEST_LEAQ("0x4000(%%rip)"); | ||
| 284 | + | ||
| 285 | + TEST_LEAQ("(%%rax)"); | ||
| 286 | + TEST_LEAQ("(%%rbx)"); | ||
| 287 | + TEST_LEAQ("(%%rcx)"); | ||
| 288 | + TEST_LEAQ("(%%rdx)"); | ||
| 289 | + TEST_LEAQ("(%%rsi)"); | ||
| 290 | + TEST_LEAQ("(%%rdi)"); | ||
| 291 | + | ||
| 292 | + TEST_LEAQ("0x40(%%rax)"); | ||
| 293 | + TEST_LEAQ("0x40(%%rbx)"); | ||
| 294 | + TEST_LEAQ("0x40(%%rcx)"); | ||
| 295 | + TEST_LEAQ("0x40(%%rdx)"); | ||
| 296 | + TEST_LEAQ("0x40(%%rsi)"); | ||
| 297 | + TEST_LEAQ("0x40(%%rdi)"); | ||
| 298 | + | ||
| 299 | + TEST_LEAQ("0x4000(%%rax)"); | ||
| 300 | + TEST_LEAQ("0x4000(%%rbx)"); | ||
| 301 | + TEST_LEAQ("0x4000(%%rcx)"); | ||
| 302 | + TEST_LEAQ("0x4000(%%rdx)"); | ||
| 303 | + TEST_LEAQ("0x4000(%%rsi)"); | ||
| 304 | + TEST_LEAQ("0x4000(%%rdi)"); | ||
| 305 | + | ||
| 306 | + TEST_LEAQ("(%%rax, %%rcx)"); | ||
| 307 | + TEST_LEAQ("(%%rbx, %%rdx)"); | ||
| 308 | + TEST_LEAQ("(%%rcx, %%rcx)"); | ||
| 309 | + TEST_LEAQ("(%%rdx, %%rcx)"); | ||
| 310 | + TEST_LEAQ("(%%rsi, %%rcx)"); | ||
| 311 | + TEST_LEAQ("(%%rdi, %%rcx)"); | ||
| 312 | + | ||
| 313 | + TEST_LEAQ("0x40(%%rax, %%rcx)"); | ||
| 314 | + TEST_LEAQ("0x4000(%%rbx, %%rdx)"); | ||
| 315 | + | ||
| 316 | + TEST_LEAQ("(%%rcx, %%rcx, 2)"); | ||
| 317 | + TEST_LEAQ("(%%rdx, %%rcx, 4)"); | ||
| 318 | + TEST_LEAQ("(%%rsi, %%rcx, 8)"); | ||
| 319 | + | ||
| 320 | + TEST_LEAQ("(,%%rax, 2)"); | ||
| 321 | + TEST_LEAQ("(,%%rbx, 4)"); | ||
| 322 | + TEST_LEAQ("(,%%rcx, 8)"); | ||
| 323 | + | ||
| 324 | + TEST_LEAQ("0x40(,%%rax, 2)"); | ||
| 325 | + TEST_LEAQ("0x40(,%%rbx, 4)"); | ||
| 326 | + TEST_LEAQ("0x40(,%%rcx, 8)"); | ||
| 327 | + | ||
| 328 | + | ||
| 329 | + TEST_LEAQ("-10(%%rcx, %%rcx, 2)"); | ||
| 330 | + TEST_LEAQ("-10(%%rdx, %%rcx, 4)"); | ||
| 331 | + TEST_LEAQ("-10(%%rsi, %%rcx, 8)"); | ||
| 332 | + | ||
| 333 | + TEST_LEAQ("0x4000(%%rcx, %%rcx, 2)"); | ||
| 334 | + TEST_LEAQ("0x4000(%%rdx, %%rcx, 4)"); | ||
| 335 | + TEST_LEAQ("0x4000(%%rsi, %%rcx, 8)"); | ||
| 336 | +#else | ||
| 242 | /* limited 16 bit addressing test */ | 337 | /* limited 16 bit addressing test */ |
| 243 | TEST_LEA16("0x4000"); | 338 | TEST_LEA16("0x4000"); |
| 244 | TEST_LEA16("(%%bx)"); | 339 | TEST_LEA16("(%%bx)"); |
| @@ -255,6 +350,7 @@ void test_lea(void) | @@ -255,6 +350,7 @@ void test_lea(void) | ||
| 255 | TEST_LEA16("0x40(%%bx,%%di)"); | 350 | TEST_LEA16("0x40(%%bx,%%di)"); |
| 256 | TEST_LEA16("0x4000(%%bx,%%si)"); | 351 | TEST_LEA16("0x4000(%%bx,%%si)"); |
| 257 | TEST_LEA16("0x4000(%%bx,%%di)"); | 352 | TEST_LEA16("0x4000(%%bx,%%di)"); |
| 353 | +#endif | ||
| 258 | } | 354 | } |
| 259 | 355 | ||
| 260 | #define TEST_JCC(JCC, v1, v2)\ | 356 | #define TEST_JCC(JCC, v1, v2)\ |
| @@ -276,18 +372,24 @@ void test_lea(void) | @@ -276,18 +372,24 @@ void test_lea(void) | ||
| 276 | : "r" (v1), "r" (v2));\ | 372 | : "r" (v1), "r" (v2));\ |
| 277 | printf("%-10s %d\n", "set" JCC, res);\ | 373 | printf("%-10s %d\n", "set" JCC, res);\ |
| 278 | if (TEST_CMOV) {\ | 374 | if (TEST_CMOV) {\ |
| 279 | - asm("movl $0x12345678, %0\n\t"\ | ||
| 280 | - "cmpl %2, %1\n\t"\ | ||
| 281 | - "cmov" JCC "l %3, %0\n\t"\ | 375 | + long val = i2l(1);\ |
| 376 | + long res = i2l(0x12345678);\ | ||
| 377 | +X86_64_ONLY(\ | ||
| 378 | + asm("cmpl %2, %1\n\t"\ | ||
| 379 | + "cmov" JCC "q %3, %0\n\t"\ | ||
| 282 | : "=r" (res)\ | 380 | : "=r" (res)\ |
| 283 | - : "r" (v1), "r" (v2), "m" (1));\ | ||
| 284 | - printf("%-10s R=0x%08x\n", "cmov" JCC "l", res);\ | ||
| 285 | - asm("movl $0x12345678, %0\n\t"\ | ||
| 286 | - "cmpl %2, %1\n\t"\ | 381 | + : "r" (v1), "r" (v2), "m" (val), "0" (res));\ |
| 382 | + printf("%-10s R=" FMTLX "\n", "cmov" JCC "l", res);)\ | ||
| 383 | + asm("cmpl %2, %1\n\t"\ | ||
| 384 | + "cmov" JCC "l %k3, %k0\n\t"\ | ||
| 385 | + : "=r" (res)\ | ||
| 386 | + : "r" (v1), "r" (v2), "m" (val), "0" (res));\ | ||
| 387 | + printf("%-10s R=" FMTLX "\n", "cmov" JCC "l", res);\ | ||
| 388 | + asm("cmpl %2, %1\n\t"\ | ||
| 287 | "cmov" JCC "w %w3, %w0\n\t"\ | 389 | "cmov" JCC "w %w3, %w0\n\t"\ |
| 288 | : "=r" (res)\ | 390 | : "=r" (res)\ |
| 289 | - : "r" (v1), "r" (v2), "r" (1));\ | ||
| 290 | - printf("%-10s R=0x%08x\n", "cmov" JCC "w", res);\ | 391 | + : "r" (v1), "r" (v2), "r" (1), "0" (res));\ |
| 392 | + printf("%-10s R=" FMTLX "\n", "cmov" JCC "w", res);\ | ||
| 291 | } \ | 393 | } \ |
| 292 | } | 394 | } |
| 293 | 395 | ||
| @@ -367,9 +469,9 @@ void test_jcc(void) | @@ -367,9 +469,9 @@ void test_jcc(void) | ||
| 367 | #define OP imul | 469 | #define OP imul |
| 368 | #include "test-i386-muldiv.h" | 470 | #include "test-i386-muldiv.h" |
| 369 | 471 | ||
| 370 | -void test_imulw2(int op0, int op1) | 472 | +void test_imulw2(long op0, long op1) |
| 371 | { | 473 | { |
| 372 | - int res, s1, s0, flags; | 474 | + long res, s1, s0, flags; |
| 373 | s0 = op0; | 475 | s0 = op0; |
| 374 | s1 = op1; | 476 | s1 = op1; |
| 375 | res = s0; | 477 | res = s0; |
| @@ -378,45 +480,66 @@ void test_imulw2(int op0, int op1) | @@ -378,45 +480,66 @@ void test_imulw2(int op0, int op1) | ||
| 378 | "popf\n\t" | 480 | "popf\n\t" |
| 379 | "imulw %w2, %w0\n\t" | 481 | "imulw %w2, %w0\n\t" |
| 380 | "pushf\n\t" | 482 | "pushf\n\t" |
| 381 | - "popl %1\n\t" | 483 | + "pop %1\n\t" |
| 382 | : "=q" (res), "=g" (flags) | 484 | : "=q" (res), "=g" (flags) |
| 383 | : "q" (s1), "0" (res), "1" (flags)); | 485 | : "q" (s1), "0" (res), "1" (flags)); |
| 384 | - printf("%-10s A=%08x B=%08x R=%08x CC=%04x\n", | 486 | + printf("%-10s A=" FMTLX " B=" FMTLX " R=" FMTLX " CC=%04lx\n", |
| 385 | "imulw", s0, s1, res, flags & CC_MASK); | 487 | "imulw", s0, s1, res, flags & CC_MASK); |
| 386 | } | 488 | } |
| 387 | 489 | ||
| 388 | -void test_imull2(int op0, int op1) | 490 | +void test_imull2(long op0, long op1) |
| 389 | { | 491 | { |
| 390 | - int res, s1, s0, flags; | 492 | + long res, s1, s0, flags; |
| 391 | s0 = op0; | 493 | s0 = op0; |
| 392 | s1 = op1; | 494 | s1 = op1; |
| 393 | res = s0; | 495 | res = s0; |
| 394 | flags = 0; | 496 | flags = 0; |
| 395 | asm volatile ("push %4\n\t" | 497 | asm volatile ("push %4\n\t" |
| 396 | "popf\n\t" | 498 | "popf\n\t" |
| 397 | - "imull %2, %0\n\t" | 499 | + "imull %k2, %k0\n\t" |
| 398 | "pushf\n\t" | 500 | "pushf\n\t" |
| 399 | - "popl %1\n\t" | 501 | + "pop %1\n\t" |
| 400 | : "=q" (res), "=g" (flags) | 502 | : "=q" (res), "=g" (flags) |
| 401 | : "q" (s1), "0" (res), "1" (flags)); | 503 | : "q" (s1), "0" (res), "1" (flags)); |
| 402 | - printf("%-10s A=%08x B=%08x R=%08x CC=%04x\n", | 504 | + printf("%-10s A=" FMTLX " B=" FMTLX " R=" FMTLX " CC=%04lx\n", |
| 403 | "imull", s0, s1, res, flags & CC_MASK); | 505 | "imull", s0, s1, res, flags & CC_MASK); |
| 404 | } | 506 | } |
| 405 | 507 | ||
| 406 | -#define TEST_IMUL_IM(size, size1, op0, op1)\ | 508 | +#if defined(__x86_64__) |
| 509 | +void test_imulq2(long op0, long op1) | ||
| 510 | +{ | ||
| 511 | + long res, s1, s0, flags; | ||
| 512 | + s0 = op0; | ||
| 513 | + s1 = op1; | ||
| 514 | + res = s0; | ||
| 515 | + flags = 0; | ||
| 516 | + asm volatile ("push %4\n\t" | ||
| 517 | + "popf\n\t" | ||
| 518 | + "imulq %2, %0\n\t" | ||
| 519 | + "pushf\n\t" | ||
| 520 | + "pop %1\n\t" | ||
| 521 | + : "=q" (res), "=g" (flags) | ||
| 522 | + : "q" (s1), "0" (res), "1" (flags)); | ||
| 523 | + printf("%-10s A=" FMTLX " B=" FMTLX " R=" FMTLX " CC=%04lx\n", | ||
| 524 | + "imulq", s0, s1, res, flags & CC_MASK); | ||
| 525 | +} | ||
| 526 | +#endif | ||
| 527 | + | ||
| 528 | +#define TEST_IMUL_IM(size, rsize, op0, op1)\ | ||
| 407 | {\ | 529 | {\ |
| 408 | - int res, flags;\ | 530 | + long res, flags, s1;\ |
| 409 | flags = 0;\ | 531 | flags = 0;\ |
| 410 | res = 0;\ | 532 | res = 0;\ |
| 533 | + s1 = op1;\ | ||
| 411 | asm volatile ("push %3\n\t"\ | 534 | asm volatile ("push %3\n\t"\ |
| 412 | "popf\n\t"\ | 535 | "popf\n\t"\ |
| 413 | - "imul" size " $" #op0 ", %" size1 "2, %" size1 "0\n\t" \ | 536 | + "imul" size " $" #op0 ", %" rsize "2, %" rsize "0\n\t" \ |
| 414 | "pushf\n\t"\ | 537 | "pushf\n\t"\ |
| 415 | - "popl %1\n\t"\ | 538 | + "pop %1\n\t"\ |
| 416 | : "=r" (res), "=g" (flags)\ | 539 | : "=r" (res), "=g" (flags)\ |
| 417 | - : "r" (op1), "1" (flags), "0" (res));\ | ||
| 418 | - printf("%-10s A=%08x B=%08x R=%08x CC=%04x\n",\ | ||
| 419 | - "imul" size " im", op0, op1, res, flags & CC_MASK);\ | 540 | + : "r" (s1), "1" (flags), "0" (res));\ |
| 541 | + printf("%-10s A=" FMTLX " B=" FMTLX " R=" FMTLX " CC=%04lx\n",\ | ||
| 542 | + "imul" size " im", (long)op0, (long)op1, res, flags & CC_MASK);\ | ||
| 420 | } | 543 | } |
| 421 | 544 | ||
| 422 | 545 | ||
| @@ -476,10 +599,10 @@ void test_mul(void) | @@ -476,10 +599,10 @@ void test_mul(void) | ||
| 476 | TEST_IMUL_IM("w", "w", 0x8000, 0x80000000); | 599 | TEST_IMUL_IM("w", "w", 0x8000, 0x80000000); |
| 477 | TEST_IMUL_IM("w", "w", 0x7fff, 0x1000); | 600 | TEST_IMUL_IM("w", "w", 0x7fff, 0x1000); |
| 478 | 601 | ||
| 479 | - TEST_IMUL_IM("l", "", 45, 0x1234); | ||
| 480 | - TEST_IMUL_IM("l", "", -45, 23); | ||
| 481 | - TEST_IMUL_IM("l", "", 0x8000, 0x80000000); | ||
| 482 | - TEST_IMUL_IM("l", "", 0x7fff, 0x1000); | 602 | + TEST_IMUL_IM("l", "k", 45, 0x1234); |
| 603 | + TEST_IMUL_IM("l", "k", -45, 23); | ||
| 604 | + TEST_IMUL_IM("l", "k", 0x8000, 0x80000000); | ||
| 605 | + TEST_IMUL_IM("l", "k", 0x7fff, 0x1000); | ||
| 483 | 606 | ||
| 484 | test_idivb(0x12341678, 0x127e); | 607 | test_idivb(0x12341678, 0x127e); |
| 485 | test_idivb(0x43210123, -5); | 608 | test_idivb(0x43210123, -5); |
| @@ -508,30 +631,68 @@ void test_mul(void) | @@ -508,30 +631,68 @@ void test_mul(void) | ||
| 508 | test_divl(0, -233223, -45); | 631 | test_divl(0, -233223, -45); |
| 509 | test_divl(0, 0x80000000, -1); | 632 | test_divl(0, 0x80000000, -1); |
| 510 | test_divl(0x12343, 0x12345678, 0x81234567); | 633 | test_divl(0x12343, 0x12345678, 0x81234567); |
| 634 | + | ||
| 635 | +#if defined(__x86_64__) | ||
| 636 | + test_imulq(0, 0x1234001d1234001d, 45); | ||
| 637 | + test_imulq(0, 23, -45); | ||
| 638 | + test_imulq(0, 0x8000000000000000, 0x8000000000000000); | ||
| 639 | + test_imulq(0, 0x100000000, 0x100000000); | ||
| 640 | + | ||
| 641 | + test_mulq(0, 0x1234001d1234001d, 45); | ||
| 642 | + test_mulq(0, 23, -45); | ||
| 643 | + test_mulq(0, 0x8000000000000000, 0x8000000000000000); | ||
| 644 | + test_mulq(0, 0x100000000, 0x100000000); | ||
| 645 | + | ||
| 646 | + test_imulq2(0x1234001d1234001d, 45); | ||
| 647 | + test_imulq2(23, -45); | ||
| 648 | + test_imulq2(0x8000000000000000, 0x8000000000000000); | ||
| 649 | + test_imulq2(0x100000000, 0x100000000); | ||
| 650 | + | ||
| 651 | + TEST_IMUL_IM("q", "", 45, 0x12341234); | ||
| 652 | + TEST_IMUL_IM("q", "", -45, 23); | ||
| 653 | + TEST_IMUL_IM("q", "", 0x8000, 0x8000000000000000); | ||
| 654 | + TEST_IMUL_IM("q", "", 0x7fff, 0x10000000); | ||
| 655 | + | ||
| 656 | + test_idivq(0, 0x12345678abcdef, 12347); | ||
| 657 | + test_idivq(0, -233223, -45); | ||
| 658 | + test_idivq(0, 0x8000000000000000, -1); | ||
| 659 | + test_idivq(0x12343, 0x12345678, 0x81234567); | ||
| 660 | + | ||
| 661 | + test_divq(0, 0x12345678abcdef, 12347); | ||
| 662 | + test_divq(0, -233223, -45); | ||
| 663 | + test_divq(0, 0x8000000000000000, -1); | ||
| 664 | + test_divq(0x12343, 0x12345678, 0x81234567); | ||
| 665 | +#endif | ||
| 511 | } | 666 | } |
| 512 | 667 | ||
| 513 | #define TEST_BSX(op, size, op0)\ | 668 | #define TEST_BSX(op, size, op0)\ |
| 514 | {\ | 669 | {\ |
| 515 | - int res, val, resz;\ | 670 | + long res, val, resz;\ |
| 516 | val = op0;\ | 671 | val = op0;\ |
| 517 | - asm("xorl %1, %1\n"\ | ||
| 518 | - "movl $0x12345678, %0\n"\ | 672 | + asm("xor %1, %1\n"\ |
| 673 | + "mov $0x12345678, %0\n"\ | ||
| 519 | #op " %" size "2, %" size "0 ; setz %b1" \ | 674 | #op " %" size "2, %" size "0 ; setz %b1" \ |
| 520 | : "=r" (res), "=q" (resz)\ | 675 | : "=r" (res), "=q" (resz)\ |
| 521 | : "g" (val));\ | 676 | : "g" (val));\ |
| 522 | - printf("%-10s A=%08x R=%08x %d\n", #op, val, res, resz);\ | 677 | + printf("%-10s A=" FMTLX " R=" FMTLX " %ld\n", #op, val, res, resz);\ |
| 523 | } | 678 | } |
| 524 | 679 | ||
| 525 | void test_bsx(void) | 680 | void test_bsx(void) |
| 526 | { | 681 | { |
| 527 | TEST_BSX(bsrw, "w", 0); | 682 | TEST_BSX(bsrw, "w", 0); |
| 528 | TEST_BSX(bsrw, "w", 0x12340128); | 683 | TEST_BSX(bsrw, "w", 0x12340128); |
| 529 | - TEST_BSX(bsrl, "", 0); | ||
| 530 | - TEST_BSX(bsrl, "", 0x00340128); | ||
| 531 | TEST_BSX(bsfw, "w", 0); | 684 | TEST_BSX(bsfw, "w", 0); |
| 532 | TEST_BSX(bsfw, "w", 0x12340128); | 685 | TEST_BSX(bsfw, "w", 0x12340128); |
| 533 | - TEST_BSX(bsfl, "", 0); | ||
| 534 | - TEST_BSX(bsfl, "", 0x00340128); | 686 | + TEST_BSX(bsrl, "k", 0); |
| 687 | + TEST_BSX(bsrl, "k", 0x00340128); | ||
| 688 | + TEST_BSX(bsfl, "k", 0); | ||
| 689 | + TEST_BSX(bsfl, "k", 0x00340128); | ||
| 690 | +#if defined(__x86_64__) | ||
| 691 | + TEST_BSX(bsrq, "", 0); | ||
| 692 | + TEST_BSX(bsrq, "", 0x003401281234); | ||
| 693 | + TEST_BSX(bsfq, "", 0); | ||
| 694 | + TEST_BSX(bsfq, "", 0x003401281234); | ||
| 695 | +#endif | ||
| 535 | } | 696 | } |
| 536 | 697 | ||
| 537 | /**********************************************/ | 698 | /**********************************************/ |
| @@ -570,14 +731,14 @@ void test_fcmp(double a, double b) | @@ -570,14 +731,14 @@ void test_fcmp(double a, double b) | ||
| 570 | printf("(%f<=%f)=%d\n", | 731 | printf("(%f<=%f)=%d\n", |
| 571 | a, b, a >= b); | 732 | a, b, a >= b); |
| 572 | if (TEST_FCOMI) { | 733 | if (TEST_FCOMI) { |
| 573 | - unsigned int eflags; | 734 | + long eflags; |
| 574 | /* test f(u)comi instruction */ | 735 | /* test f(u)comi instruction */ |
| 575 | asm("fcomi %2, %1\n" | 736 | asm("fcomi %2, %1\n" |
| 576 | "pushf\n" | 737 | "pushf\n" |
| 577 | "pop %0\n" | 738 | "pop %0\n" |
| 578 | : "=r" (eflags) | 739 | : "=r" (eflags) |
| 579 | : "t" (a), "u" (b)); | 740 | : "t" (a), "u" (b)); |
| 580 | - printf("fcomi(%f %f)=%08x\n", a, b, eflags & (CC_Z | CC_P | CC_C)); | 741 | + printf("fcomi(%f %f)=%08lx\n", a, b, eflags & (CC_Z | CC_P | CC_C)); |
| 581 | } | 742 | } |
| 582 | } | 743 | } |
| 583 | 744 | ||
| @@ -596,8 +757,8 @@ void test_fcvt(double a) | @@ -596,8 +757,8 @@ void test_fcvt(double a) | ||
| 596 | la = a; | 757 | la = a; |
| 597 | printf("(float)%f = %f\n", a, fa); | 758 | printf("(float)%f = %f\n", a, fa); |
| 598 | printf("(long double)%f = %Lf\n", a, la); | 759 | printf("(long double)%f = %Lf\n", a, la); |
| 599 | - printf("a=%016Lx\n", *(long long *)&a); | ||
| 600 | - printf("la=%016Lx %04x\n", *(long long *)&la, | 760 | + printf("a=" FMT64X "\n", *(uint64_t *)&a); |
| 761 | + printf("la=" FMT64X " %04x\n", *(uint64_t *)&la, | ||
| 601 | *(unsigned short *)((char *)(&la) + 8)); | 762 | *(unsigned short *)((char *)(&la) + 8)); |
| 602 | 763 | ||
| 603 | /* test all roundings */ | 764 | /* test all roundings */ |
| @@ -611,7 +772,7 @@ void test_fcvt(double a) | @@ -611,7 +772,7 @@ void test_fcvt(double a) | ||
| 611 | asm volatile ("fldcw %0" : : "m" (fpuc)); | 772 | asm volatile ("fldcw %0" : : "m" (fpuc)); |
| 612 | printf("(short)a = %d\n", wa); | 773 | printf("(short)a = %d\n", wa); |
| 613 | printf("(int)a = %d\n", ia); | 774 | printf("(int)a = %d\n", ia); |
| 614 | - printf("(int64_t)a = %Ld\n", lla); | 775 | + printf("(int64_t)a = " FMT64X "\n", lla); |
| 615 | printf("rint(a) = %f\n", ra); | 776 | printf("rint(a) = %f\n", ra); |
| 616 | } | 777 | } |
| 617 | } | 778 | } |
| @@ -709,14 +870,14 @@ void test_fenv(void) | @@ -709,14 +870,14 @@ void test_fenv(void) | ||
| 709 | "fcmov" CC " %2, %0\n"\ | 870 | "fcmov" CC " %2, %0\n"\ |
| 710 | : "=t" (res)\ | 871 | : "=t" (res)\ |
| 711 | : "0" (a), "u" (b), "g" (eflags));\ | 872 | : "0" (a), "u" (b), "g" (eflags));\ |
| 712 | - printf("fcmov%s eflags=0x%04x-> %f\n", \ | ||
| 713 | - CC, eflags, res);\ | 873 | + printf("fcmov%s eflags=0x%04lx-> %f\n", \ |
| 874 | + CC, (long)eflags, res);\ | ||
| 714 | } | 875 | } |
| 715 | 876 | ||
| 716 | void test_fcmov(void) | 877 | void test_fcmov(void) |
| 717 | { | 878 | { |
| 718 | double a, b; | 879 | double a, b; |
| 719 | - int eflags, i; | 880 | + long eflags, i; |
| 720 | 881 | ||
| 721 | a = 1.0; | 882 | a = 1.0; |
| 722 | b = 2.0; | 883 | b = 2.0; |
| @@ -762,6 +923,7 @@ void test_floats(void) | @@ -762,6 +923,7 @@ void test_floats(void) | ||
| 762 | } | 923 | } |
| 763 | 924 | ||
| 764 | /**********************************************/ | 925 | /**********************************************/ |
| 926 | +#if !defined(__x86_64__) | ||
| 765 | 927 | ||
| 766 | #define TEST_BCD(op, op0, cc_in, cc_mask)\ | 928 | #define TEST_BCD(op, op0, cc_in, cc_mask)\ |
| 767 | {\ | 929 | {\ |
| @@ -772,7 +934,7 @@ void test_floats(void) | @@ -772,7 +934,7 @@ void test_floats(void) | ||
| 772 | "popf\n\t"\ | 934 | "popf\n\t"\ |
| 773 | #op "\n\t"\ | 935 | #op "\n\t"\ |
| 774 | "pushf\n\t"\ | 936 | "pushf\n\t"\ |
| 775 | - "popl %1\n\t"\ | 937 | + "pop %1\n\t"\ |
| 776 | : "=a" (res), "=g" (flags)\ | 938 | : "=a" (res), "=g" (flags)\ |
| 777 | : "0" (res), "1" (flags));\ | 939 | : "0" (res), "1" (flags));\ |
| 778 | printf("%-10s A=%08x R=%08x CCIN=%04x CC=%04x\n",\ | 940 | printf("%-10s A=%08x R=%08x CCIN=%04x CC=%04x\n",\ |
| @@ -830,42 +992,53 @@ void test_bcd(void) | @@ -830,42 +992,53 @@ void test_bcd(void) | ||
| 830 | TEST_BCD(aam, 0x12340547, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)); | 992 | TEST_BCD(aam, 0x12340547, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)); |
| 831 | TEST_BCD(aad, 0x12340407, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)); | 993 | TEST_BCD(aad, 0x12340407, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)); |
| 832 | } | 994 | } |
| 995 | +#endif | ||
| 833 | 996 | ||
| 834 | #define TEST_XCHG(op, size, opconst)\ | 997 | #define TEST_XCHG(op, size, opconst)\ |
| 835 | {\ | 998 | {\ |
| 836 | - int op0, op1;\ | ||
| 837 | - op0 = 0x12345678;\ | ||
| 838 | - op1 = 0xfbca7654;\ | 999 | + long op0, op1;\ |
| 1000 | + op0 = i2l(0x12345678);\ | ||
| 1001 | + op1 = i2l(0xfbca7654);\ | ||
| 839 | asm(#op " %" size "0, %" size "1" \ | 1002 | asm(#op " %" size "0, %" size "1" \ |
| 840 | : "=q" (op0), opconst (op1) \ | 1003 | : "=q" (op0), opconst (op1) \ |
| 841 | : "0" (op0), "1" (op1));\ | 1004 | : "0" (op0), "1" (op1));\ |
| 842 | - printf("%-10s A=%08x B=%08x\n",\ | 1005 | + printf("%-10s A=" FMTLX " B=" FMTLX "\n",\ |
| 843 | #op, op0, op1);\ | 1006 | #op, op0, op1);\ |
| 844 | } | 1007 | } |
| 845 | 1008 | ||
| 846 | #define TEST_CMPXCHG(op, size, opconst, eax)\ | 1009 | #define TEST_CMPXCHG(op, size, opconst, eax)\ |
| 847 | {\ | 1010 | {\ |
| 848 | - int op0, op1;\ | ||
| 849 | - op0 = 0x12345678;\ | ||
| 850 | - op1 = 0xfbca7654;\ | 1011 | + long op0, op1, op2;\ |
| 1012 | + op0 = i2l(0x12345678);\ | ||
| 1013 | + op1 = i2l(0xfbca7654);\ | ||
| 1014 | + op2 = i2l(eax);\ | ||
| 851 | asm(#op " %" size "0, %" size "1" \ | 1015 | asm(#op " %" size "0, %" size "1" \ |
| 852 | : "=q" (op0), opconst (op1) \ | 1016 | : "=q" (op0), opconst (op1) \ |
| 853 | - : "0" (op0), "1" (op1), "a" (eax));\ | ||
| 854 | - printf("%-10s EAX=%08x A=%08x C=%08x\n",\ | ||
| 855 | - #op, eax, op0, op1);\ | 1017 | + : "0" (op0), "1" (op1), "a" (op2));\ |
| 1018 | + printf("%-10s EAX=" FMTLX " A=" FMTLX " C=" FMTLX "\n",\ | ||
| 1019 | + #op, op2, op0, op1);\ | ||
| 856 | } | 1020 | } |
| 857 | 1021 | ||
| 858 | void test_xchg(void) | 1022 | void test_xchg(void) |
| 859 | { | 1023 | { |
| 860 | - TEST_XCHG(xchgl, "", "=q"); | 1024 | +#if defined(__x86_64__) |
| 1025 | + TEST_XCHG(xchgq, "", "=q"); | ||
| 1026 | +#endif | ||
| 1027 | + TEST_XCHG(xchgl, "k", "=q"); | ||
| 861 | TEST_XCHG(xchgw, "w", "=q"); | 1028 | TEST_XCHG(xchgw, "w", "=q"); |
| 862 | TEST_XCHG(xchgb, "b", "=q"); | 1029 | TEST_XCHG(xchgb, "b", "=q"); |
| 863 | 1030 | ||
| 864 | - TEST_XCHG(xchgl, "", "=m"); | 1031 | +#if defined(__x86_64__) |
| 1032 | + TEST_XCHG(xchgq, "", "=m"); | ||
| 1033 | +#endif | ||
| 1034 | + TEST_XCHG(xchgl, "k", "=m"); | ||
| 865 | TEST_XCHG(xchgw, "w", "=m"); | 1035 | TEST_XCHG(xchgw, "w", "=m"); |
| 866 | TEST_XCHG(xchgb, "b", "=m"); | 1036 | TEST_XCHG(xchgb, "b", "=m"); |
| 867 | 1037 | ||
| 868 | - TEST_XCHG(xaddl, "", "=q"); | 1038 | +#if defined(__x86_64__) |
| 1039 | + TEST_XCHG(xaddq, "", "=q"); | ||
| 1040 | +#endif | ||
| 1041 | + TEST_XCHG(xaddl, "k", "=q"); | ||
| 869 | TEST_XCHG(xaddw, "w", "=q"); | 1042 | TEST_XCHG(xaddw, "w", "=q"); |
| 870 | TEST_XCHG(xaddb, "b", "=q"); | 1043 | TEST_XCHG(xaddb, "b", "=q"); |
| 871 | 1044 | ||
| @@ -876,29 +1049,44 @@ void test_xchg(void) | @@ -876,29 +1049,44 @@ void test_xchg(void) | ||
| 876 | printf("xaddl same res=%08x\n", res); | 1049 | printf("xaddl same res=%08x\n", res); |
| 877 | } | 1050 | } |
| 878 | 1051 | ||
| 879 | - TEST_XCHG(xaddl, "", "=m"); | 1052 | +#if defined(__x86_64__) |
| 1053 | + TEST_XCHG(xaddq, "", "=m"); | ||
| 1054 | +#endif | ||
| 1055 | + TEST_XCHG(xaddl, "k", "=m"); | ||
| 880 | TEST_XCHG(xaddw, "w", "=m"); | 1056 | TEST_XCHG(xaddw, "w", "=m"); |
| 881 | TEST_XCHG(xaddb, "b", "=m"); | 1057 | TEST_XCHG(xaddb, "b", "=m"); |
| 882 | 1058 | ||
| 883 | - TEST_CMPXCHG(cmpxchgl, "", "=q", 0xfbca7654); | 1059 | +#if defined(__x86_64__) |
| 1060 | + TEST_CMPXCHG(cmpxchgq, "", "=q", 0xfbca7654); | ||
| 1061 | +#endif | ||
| 1062 | + TEST_CMPXCHG(cmpxchgl, "k", "=q", 0xfbca7654); | ||
| 884 | TEST_CMPXCHG(cmpxchgw, "w", "=q", 0xfbca7654); | 1063 | TEST_CMPXCHG(cmpxchgw, "w", "=q", 0xfbca7654); |
| 885 | TEST_CMPXCHG(cmpxchgb, "b", "=q", 0xfbca7654); | 1064 | TEST_CMPXCHG(cmpxchgb, "b", "=q", 0xfbca7654); |
| 886 | 1065 | ||
| 887 | - TEST_CMPXCHG(cmpxchgl, "", "=q", 0xfffefdfc); | 1066 | +#if defined(__x86_64__) |
| 1067 | + TEST_CMPXCHG(cmpxchgq, "", "=q", 0xfffefdfc); | ||
| 1068 | +#endif | ||
| 1069 | + TEST_CMPXCHG(cmpxchgl, "k", "=q", 0xfffefdfc); | ||
| 888 | TEST_CMPXCHG(cmpxchgw, "w", "=q", 0xfffefdfc); | 1070 | TEST_CMPXCHG(cmpxchgw, "w", "=q", 0xfffefdfc); |
| 889 | TEST_CMPXCHG(cmpxchgb, "b", "=q", 0xfffefdfc); | 1071 | TEST_CMPXCHG(cmpxchgb, "b", "=q", 0xfffefdfc); |
| 890 | 1072 | ||
| 891 | - TEST_CMPXCHG(cmpxchgl, "", "=m", 0xfbca7654); | 1073 | +#if defined(__x86_64__) |
| 1074 | + TEST_CMPXCHG(cmpxchgq, "", "=m", 0xfbca7654); | ||
| 1075 | +#endif | ||
| 1076 | + TEST_CMPXCHG(cmpxchgl, "k", "=m", 0xfbca7654); | ||
| 892 | TEST_CMPXCHG(cmpxchgw, "w", "=m", 0xfbca7654); | 1077 | TEST_CMPXCHG(cmpxchgw, "w", "=m", 0xfbca7654); |
| 893 | TEST_CMPXCHG(cmpxchgb, "b", "=m", 0xfbca7654); | 1078 | TEST_CMPXCHG(cmpxchgb, "b", "=m", 0xfbca7654); |
| 894 | 1079 | ||
| 895 | - TEST_CMPXCHG(cmpxchgl, "", "=m", 0xfffefdfc); | 1080 | +#if defined(__x86_64__) |
| 1081 | + TEST_CMPXCHG(cmpxchgq, "", "=m", 0xfffefdfc); | ||
| 1082 | +#endif | ||
| 1083 | + TEST_CMPXCHG(cmpxchgl, "k", "=m", 0xfffefdfc); | ||
| 896 | TEST_CMPXCHG(cmpxchgw, "w", "=m", 0xfffefdfc); | 1084 | TEST_CMPXCHG(cmpxchgw, "w", "=m", 0xfffefdfc); |
| 897 | TEST_CMPXCHG(cmpxchgb, "b", "=m", 0xfffefdfc); | 1085 | TEST_CMPXCHG(cmpxchgb, "b", "=m", 0xfffefdfc); |
| 898 | 1086 | ||
| 899 | { | 1087 | { |
| 900 | uint64_t op0, op1, op2; | 1088 | uint64_t op0, op1, op2; |
| 901 | - int i, eflags; | 1089 | + long i, eflags; |
| 902 | 1090 | ||
| 903 | for(i = 0; i < 2; i++) { | 1091 | for(i = 0; i < 2; i++) { |
| 904 | op0 = 0x123456789abcd; | 1092 | op0 = 0x123456789abcd; |
| @@ -909,15 +1097,16 @@ void test_xchg(void) | @@ -909,15 +1097,16 @@ void test_xchg(void) | ||
| 909 | op2 = 0x6532432432434; | 1097 | op2 = 0x6532432432434; |
| 910 | asm("cmpxchg8b %1\n" | 1098 | asm("cmpxchg8b %1\n" |
| 911 | "pushf\n" | 1099 | "pushf\n" |
| 912 | - "popl %2\n" | 1100 | + "pop %2\n" |
| 913 | : "=A" (op0), "=m" (op1), "=g" (eflags) | 1101 | : "=A" (op0), "=m" (op1), "=g" (eflags) |
| 914 | : "0" (op0), "m" (op1), "b" ((int)op2), "c" ((int)(op2 >> 32))); | 1102 | : "0" (op0), "m" (op1), "b" ((int)op2), "c" ((int)(op2 >> 32))); |
| 915 | - printf("cmpxchg8b: op0=%016llx op1=%016llx CC=%02x\n", | 1103 | + printf("cmpxchg8b: op0=" FMT64X " op1=" FMT64X " CC=%02lx\n", |
| 916 | op0, op1, eflags & CC_Z); | 1104 | op0, op1, eflags & CC_Z); |
| 917 | } | 1105 | } |
| 918 | } | 1106 | } |
| 919 | } | 1107 | } |
| 920 | 1108 | ||
| 1109 | +#ifdef TEST_SEGS | ||
| 921 | /**********************************************/ | 1110 | /**********************************************/ |
| 922 | /* segmentation tests */ | 1111 | /* segmentation tests */ |
| 923 | 1112 | ||
| @@ -931,11 +1120,11 @@ _syscall3(int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount) | @@ -931,11 +1120,11 @@ _syscall3(int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount) | ||
| 931 | #define modify_ldt_ldt_s user_desc | 1120 | #define modify_ldt_ldt_s user_desc |
| 932 | #endif | 1121 | #endif |
| 933 | 1122 | ||
| 1123 | +#define MK_SEL(n) (((n) << 3) | 7) | ||
| 1124 | + | ||
| 934 | uint8_t seg_data1[4096]; | 1125 | uint8_t seg_data1[4096]; |
| 935 | uint8_t seg_data2[4096]; | 1126 | uint8_t seg_data2[4096]; |
| 936 | 1127 | ||
| 937 | -#define MK_SEL(n) (((n) << 3) | 7) | ||
| 938 | - | ||
| 939 | #define TEST_LR(op, size, seg, mask)\ | 1128 | #define TEST_LR(op, size, seg, mask)\ |
| 940 | {\ | 1129 | {\ |
| 941 | int res, res2;\ | 1130 | int res, res2;\ |
| @@ -1079,6 +1268,7 @@ void test_code16(void) | @@ -1079,6 +1268,7 @@ void test_code16(void) | ||
| 1079 | : "i" (MK_SEL(1)), "i" (&code16_func3): "memory", "cc"); | 1268 | : "i" (MK_SEL(1)), "i" (&code16_func3): "memory", "cc"); |
| 1080 | printf("func3() = 0x%08x\n", res); | 1269 | printf("func3() = 0x%08x\n", res); |
| 1081 | } | 1270 | } |
| 1271 | +#endif | ||
| 1082 | 1272 | ||
| 1083 | extern char func_lret32; | 1273 | extern char func_lret32; |
| 1084 | extern char func_iret32; | 1274 | extern char func_iret32; |
| @@ -1086,66 +1276,77 @@ extern char func_iret32; | @@ -1086,66 +1276,77 @@ extern char func_iret32; | ||
| 1086 | void test_misc(void) | 1276 | void test_misc(void) |
| 1087 | { | 1277 | { |
| 1088 | char table[256]; | 1278 | char table[256]; |
| 1089 | - int res, i; | 1279 | + long res, i; |
| 1090 | 1280 | ||
| 1091 | for(i=0;i<256;i++) table[i] = 256 - i; | 1281 | for(i=0;i<256;i++) table[i] = 256 - i; |
| 1092 | res = 0x12345678; | 1282 | res = 0x12345678; |
| 1093 | asm ("xlat" : "=a" (res) : "b" (table), "0" (res)); | 1283 | asm ("xlat" : "=a" (res) : "b" (table), "0" (res)); |
| 1094 | - printf("xlat: EAX=%08x\n", res); | 1284 | + printf("xlat: EAX=" FMTLX "\n", res); |
| 1095 | 1285 | ||
| 1096 | - asm volatile ("pushl %%cs ; call %1" | 1286 | +#if !defined(__x86_64__) |
| 1287 | + asm volatile ("push %%cs ; call %1" | ||
| 1097 | : "=a" (res) | 1288 | : "=a" (res) |
| 1098 | : "m" (func_lret32): "memory", "cc"); | 1289 | : "m" (func_lret32): "memory", "cc"); |
| 1099 | - printf("func_lret32=%x\n", res); | 1290 | + printf("func_lret32=" FMTLX "\n", res); |
| 1100 | 1291 | ||
| 1101 | - asm volatile ("pushfl ; pushl %%cs ; call %1" | 1292 | + asm volatile ("pushf ; push %%cs ; call %1" |
| 1102 | : "=a" (res) | 1293 | : "=a" (res) |
| 1103 | : "m" (func_iret32): "memory", "cc"); | 1294 | : "m" (func_iret32): "memory", "cc"); |
| 1104 | - printf("func_iret32=%x\n", res); | 1295 | + printf("func_iret32=" FMTLX "\n", res); |
| 1296 | +#endif | ||
| 1105 | 1297 | ||
| 1298 | +#if defined(__x86_64__) | ||
| 1299 | + /* specific popl test */ | ||
| 1300 | + asm volatile ("push $12345432 ; push $0x9abcdef ; pop (%%rsp) ; pop %0" | ||
| 1301 | + : "=g" (res)); | ||
| 1302 | + printf("popl esp=" FMTLX "\n", res); | ||
| 1303 | +#else | ||
| 1106 | /* specific popl test */ | 1304 | /* specific popl test */ |
| 1107 | asm volatile ("pushl $12345432 ; pushl $0x9abcdef ; popl (%%esp) ; popl %0" | 1305 | asm volatile ("pushl $12345432 ; pushl $0x9abcdef ; popl (%%esp) ; popl %0" |
| 1108 | : "=g" (res)); | 1306 | : "=g" (res)); |
| 1109 | - printf("popl esp=%x\n", res); | 1307 | + printf("popl esp=" FMTLX "\n", res); |
| 1110 | 1308 | ||
| 1111 | /* specific popw test */ | 1309 | /* specific popw test */ |
| 1112 | asm volatile ("pushl $12345432 ; pushl $0x9abcdef ; popw (%%esp) ; addl $2, %%esp ; popl %0" | 1310 | asm volatile ("pushl $12345432 ; pushl $0x9abcdef ; popw (%%esp) ; addl $2, %%esp ; popl %0" |
| 1113 | : "=g" (res)); | 1311 | : "=g" (res)); |
| 1114 | - printf("popw esp=%x\n", res); | 1312 | + printf("popw esp=" FMTLX "\n", res); |
| 1313 | +#endif | ||
| 1115 | } | 1314 | } |
| 1116 | 1315 | ||
| 1117 | uint8_t str_buffer[4096]; | 1316 | uint8_t str_buffer[4096]; |
| 1118 | 1317 | ||
| 1119 | #define TEST_STRING1(OP, size, DF, REP)\ | 1318 | #define TEST_STRING1(OP, size, DF, REP)\ |
| 1120 | {\ | 1319 | {\ |
| 1121 | - int esi, edi, eax, ecx, eflags;\ | 1320 | + long esi, edi, eax, ecx, eflags;\ |
| 1122 | \ | 1321 | \ |
| 1123 | esi = (long)(str_buffer + sizeof(str_buffer) / 2);\ | 1322 | esi = (long)(str_buffer + sizeof(str_buffer) / 2);\ |
| 1124 | edi = (long)(str_buffer + sizeof(str_buffer) / 2) + 16;\ | 1323 | edi = (long)(str_buffer + sizeof(str_buffer) / 2) + 16;\ |
| 1125 | - eax = 0x12345678;\ | 1324 | + eax = i2l(0x12345678);\ |
| 1126 | ecx = 17;\ | 1325 | ecx = 17;\ |
| 1127 | \ | 1326 | \ |
| 1128 | - asm volatile ("pushl $0\n\t"\ | 1327 | + asm volatile ("push $0\n\t"\ |
| 1129 | "popf\n\t"\ | 1328 | "popf\n\t"\ |
| 1130 | DF "\n\t"\ | 1329 | DF "\n\t"\ |
| 1131 | REP #OP size "\n\t"\ | 1330 | REP #OP size "\n\t"\ |
| 1132 | "cld\n\t"\ | 1331 | "cld\n\t"\ |
| 1133 | "pushf\n\t"\ | 1332 | "pushf\n\t"\ |
| 1134 | - "popl %4\n\t"\ | 1333 | + "pop %4\n\t"\ |
| 1135 | : "=S" (esi), "=D" (edi), "=a" (eax), "=c" (ecx), "=g" (eflags)\ | 1334 | : "=S" (esi), "=D" (edi), "=a" (eax), "=c" (ecx), "=g" (eflags)\ |
| 1136 | : "0" (esi), "1" (edi), "2" (eax), "3" (ecx));\ | 1335 | : "0" (esi), "1" (edi), "2" (eax), "3" (ecx));\ |
| 1137 | - printf("%-10s ESI=%08x EDI=%08x EAX=%08x ECX=%08x EFL=%04x\n",\ | 1336 | + printf("%-10s ESI=" FMTLX " EDI=" FMTLX " EAX=" FMTLX " ECX=" FMTLX " EFL=%04x\n",\ |
| 1138 | REP #OP size, esi, edi, eax, ecx,\ | 1337 | REP #OP size, esi, edi, eax, ecx,\ |
| 1139 | - eflags & (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A));\ | 1338 | + (int)(eflags & (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A)));\ |
| 1140 | } | 1339 | } |
| 1141 | 1340 | ||
| 1142 | #define TEST_STRING(OP, REP)\ | 1341 | #define TEST_STRING(OP, REP)\ |
| 1143 | TEST_STRING1(OP, "b", "", REP);\ | 1342 | TEST_STRING1(OP, "b", "", REP);\ |
| 1144 | TEST_STRING1(OP, "w", "", REP);\ | 1343 | TEST_STRING1(OP, "w", "", REP);\ |
| 1145 | TEST_STRING1(OP, "l", "", REP);\ | 1344 | TEST_STRING1(OP, "l", "", REP);\ |
| 1345 | + X86_64_ONLY(TEST_STRING1(OP, "q", "", REP));\ | ||
| 1146 | TEST_STRING1(OP, "b", "std", REP);\ | 1346 | TEST_STRING1(OP, "b", "std", REP);\ |
| 1147 | TEST_STRING1(OP, "w", "std", REP);\ | 1347 | TEST_STRING1(OP, "w", "std", REP);\ |
| 1148 | - TEST_STRING1(OP, "l", "std", REP) | 1348 | + TEST_STRING1(OP, "l", "std", REP);\ |
| 1349 | + X86_64_ONLY(TEST_STRING1(OP, "q", "std", REP)) | ||
| 1149 | 1350 | ||
| 1150 | void test_string(void) | 1351 | void test_string(void) |
| 1151 | { | 1352 | { |
| @@ -1169,6 +1370,7 @@ void test_string(void) | @@ -1169,6 +1370,7 @@ void test_string(void) | ||
| 1169 | TEST_STRING(cmps, "repnz "); | 1370 | TEST_STRING(cmps, "repnz "); |
| 1170 | } | 1371 | } |
| 1171 | 1372 | ||
| 1373 | +#ifdef TEST_VM86 | ||
| 1172 | /* VM86 test */ | 1374 | /* VM86 test */ |
| 1173 | 1375 | ||
| 1174 | static inline void set_bit(uint8_t *a, unsigned int bit) | 1376 | static inline void set_bit(uint8_t *a, unsigned int bit) |
| @@ -1299,9 +1501,10 @@ void test_vm86(void) | @@ -1299,9 +1501,10 @@ void test_vm86(void) | ||
| 1299 | printf("VM86 end\n"); | 1501 | printf("VM86 end\n"); |
| 1300 | munmap(vm86_mem, 0x110000); | 1502 | munmap(vm86_mem, 0x110000); |
| 1301 | } | 1503 | } |
| 1504 | +#endif | ||
| 1302 | 1505 | ||
| 1303 | /* exception tests */ | 1506 | /* exception tests */ |
| 1304 | -#ifndef REG_EAX | 1507 | +#if defined(__i386__) && !defined(REG_EAX) |
| 1305 | #define REG_EAX EAX | 1508 | #define REG_EAX EAX |
| 1306 | #define REG_EBX EBX | 1509 | #define REG_EBX EBX |
| 1307 | #define REG_ECX ECX | 1510 | #define REG_ECX ECX |
| @@ -1316,6 +1519,10 @@ void test_vm86(void) | @@ -1316,6 +1519,10 @@ void test_vm86(void) | ||
| 1316 | #define REG_ERR ERR | 1519 | #define REG_ERR ERR |
| 1317 | #endif | 1520 | #endif |
| 1318 | 1521 | ||
| 1522 | +#if defined(__x86_64__) | ||
| 1523 | +#define REG_EIP REG_RIP | ||
| 1524 | +#endif | ||
| 1525 | + | ||
| 1319 | jmp_buf jmp_env; | 1526 | jmp_buf jmp_env; |
| 1320 | int v1; | 1527 | int v1; |
| 1321 | int tab[2]; | 1528 | int tab[2]; |
| @@ -1330,23 +1537,22 @@ void sig_handler(int sig, siginfo_t *info, void *puc) | @@ -1330,23 +1537,22 @@ void sig_handler(int sig, siginfo_t *info, void *puc) | ||
| 1330 | (unsigned long)info->si_addr); | 1537 | (unsigned long)info->si_addr); |
| 1331 | printf("\n"); | 1538 | printf("\n"); |
| 1332 | 1539 | ||
| 1333 | - printf("trapno=0x%02x err=0x%08x", | ||
| 1334 | - uc->uc_mcontext.gregs[REG_TRAPNO], | ||
| 1335 | - uc->uc_mcontext.gregs[REG_ERR]); | ||
| 1336 | - printf(" EIP=0x%08x", uc->uc_mcontext.gregs[REG_EIP]); | 1540 | + printf("trapno=" FMTLX " err=" FMTLX, |
| 1541 | + (long)uc->uc_mcontext.gregs[REG_TRAPNO], | ||
| 1542 | + (long)uc->uc_mcontext.gregs[REG_ERR]); | ||
| 1543 | + printf(" EIP=" FMTLX, (long)uc->uc_mcontext.gregs[REG_EIP]); | ||
| 1337 | printf("\n"); | 1544 | printf("\n"); |
| 1338 | longjmp(jmp_env, 1); | 1545 | longjmp(jmp_env, 1); |
| 1339 | } | 1546 | } |
| 1340 | 1547 | ||
| 1341 | void test_exceptions(void) | 1548 | void test_exceptions(void) |
| 1342 | { | 1549 | { |
| 1343 | - struct modify_ldt_ldt_s ldt; | ||
| 1344 | struct sigaction act; | 1550 | struct sigaction act; |
| 1345 | volatile int val; | 1551 | volatile int val; |
| 1346 | 1552 | ||
| 1347 | act.sa_sigaction = sig_handler; | 1553 | act.sa_sigaction = sig_handler; |
| 1348 | sigemptyset(&act.sa_mask); | 1554 | sigemptyset(&act.sa_mask); |
| 1349 | - act.sa_flags = SA_SIGINFO; | 1555 | + act.sa_flags = SA_SIGINFO | SA_NODEFER; |
| 1350 | sigaction(SIGFPE, &act, NULL); | 1556 | sigaction(SIGFPE, &act, NULL); |
| 1351 | sigaction(SIGILL, &act, NULL); | 1557 | sigaction(SIGILL, &act, NULL); |
| 1352 | sigaction(SIGSEGV, &act, NULL); | 1558 | sigaction(SIGSEGV, &act, NULL); |
| @@ -1361,6 +1567,7 @@ void test_exceptions(void) | @@ -1361,6 +1567,7 @@ void test_exceptions(void) | ||
| 1361 | v1 = 2 / v1; | 1567 | v1 = 2 / v1; |
| 1362 | } | 1568 | } |
| 1363 | 1569 | ||
| 1570 | +#if !defined(__x86_64__) | ||
| 1364 | printf("BOUND exception:\n"); | 1571 | printf("BOUND exception:\n"); |
| 1365 | if (setjmp(jmp_env) == 0) { | 1572 | if (setjmp(jmp_env) == 0) { |
| 1366 | /* bound exception */ | 1573 | /* bound exception */ |
| @@ -1368,7 +1575,9 @@ void test_exceptions(void) | @@ -1368,7 +1575,9 @@ void test_exceptions(void) | ||
| 1368 | tab[1] = 10; | 1575 | tab[1] = 10; |
| 1369 | asm volatile ("bound %0, %1" : : "r" (11), "m" (tab[0])); | 1576 | asm volatile ("bound %0, %1" : : "r" (11), "m" (tab[0])); |
| 1370 | } | 1577 | } |
| 1578 | +#endif | ||
| 1371 | 1579 | ||
| 1580 | +#ifdef TEST_SEGS | ||
| 1372 | printf("segment exceptions:\n"); | 1581 | printf("segment exceptions:\n"); |
| 1373 | if (setjmp(jmp_env) == 0) { | 1582 | if (setjmp(jmp_env) == 0) { |
| 1374 | /* load an invalid segment */ | 1583 | /* load an invalid segment */ |
| @@ -1381,21 +1590,25 @@ void test_exceptions(void) | @@ -1381,21 +1590,25 @@ void test_exceptions(void) | ||
| 1381 | asm volatile ("movl %0, %%ss" : : "r" (3)); | 1590 | asm volatile ("movl %0, %%ss" : : "r" (3)); |
| 1382 | } | 1591 | } |
| 1383 | 1592 | ||
| 1384 | - ldt.entry_number = 1; | ||
| 1385 | - ldt.base_addr = (unsigned long)&seg_data1; | ||
| 1386 | - ldt.limit = (sizeof(seg_data1) + 0xfff) >> 12; | ||
| 1387 | - ldt.seg_32bit = 1; | ||
| 1388 | - ldt.contents = MODIFY_LDT_CONTENTS_DATA; | ||
| 1389 | - ldt.read_exec_only = 0; | ||
| 1390 | - ldt.limit_in_pages = 1; | ||
| 1391 | - ldt.seg_not_present = 1; | ||
| 1392 | - ldt.useable = 1; | ||
| 1393 | - modify_ldt(1, &ldt, sizeof(ldt)); /* write ldt entry */ | ||
| 1394 | - | ||
| 1395 | - if (setjmp(jmp_env) == 0) { | ||
| 1396 | - /* segment not present */ | ||
| 1397 | - asm volatile ("movl %0, %%fs" : : "r" (MK_SEL(1))); | 1593 | + { |
| 1594 | + struct modify_ldt_ldt_s ldt; | ||
| 1595 | + ldt.entry_number = 1; | ||
| 1596 | + ldt.base_addr = (unsigned long)&seg_data1; | ||
| 1597 | + ldt.limit = (sizeof(seg_data1) + 0xfff) >> 12; | ||
| 1598 | + ldt.seg_32bit = 1; | ||
| 1599 | + ldt.contents = MODIFY_LDT_CONTENTS_DATA; | ||
| 1600 | + ldt.read_exec_only = 0; | ||
| 1601 | + ldt.limit_in_pages = 1; | ||
| 1602 | + ldt.seg_not_present = 1; | ||
| 1603 | + ldt.useable = 1; | ||
| 1604 | + modify_ldt(1, &ldt, sizeof(ldt)); /* write ldt entry */ | ||
| 1605 | + | ||
| 1606 | + if (setjmp(jmp_env) == 0) { | ||
| 1607 | + /* segment not present */ | ||
| 1608 | + asm volatile ("movl %0, %%fs" : : "r" (MK_SEL(1))); | ||
| 1609 | + } | ||
| 1398 | } | 1610 | } |
| 1611 | +#endif | ||
| 1399 | 1612 | ||
| 1400 | /* test SEGV reporting */ | 1613 | /* test SEGV reporting */ |
| 1401 | printf("PF exception:\n"); | 1614 | printf("PF exception:\n"); |
| @@ -1459,11 +1672,13 @@ void test_exceptions(void) | @@ -1459,11 +1672,13 @@ void test_exceptions(void) | ||
| 1459 | asm volatile ("cli"); | 1672 | asm volatile ("cli"); |
| 1460 | } | 1673 | } |
| 1461 | 1674 | ||
| 1675 | +#if !defined(__x86_64__) | ||
| 1462 | printf("INTO exception:\n"); | 1676 | printf("INTO exception:\n"); |
| 1463 | if (setjmp(jmp_env) == 0) { | 1677 | if (setjmp(jmp_env) == 0) { |
| 1464 | /* overflow exception */ | 1678 | /* overflow exception */ |
| 1465 | asm volatile ("addl $1, %0 ; into" : : "r" (0x7fffffff)); | 1679 | asm volatile ("addl $1, %0 ; into" : : "r" (0x7fffffff)); |
| 1466 | } | 1680 | } |
| 1681 | +#endif | ||
| 1467 | 1682 | ||
| 1468 | printf("OUTB exception:\n"); | 1683 | printf("OUTB exception:\n"); |
| 1469 | if (setjmp(jmp_env) == 0) { | 1684 | if (setjmp(jmp_env) == 0) { |
| @@ -1502,11 +1717,12 @@ void test_exceptions(void) | @@ -1502,11 +1717,12 @@ void test_exceptions(void) | ||
| 1502 | printf("val=0x%x\n", val); | 1717 | printf("val=0x%x\n", val); |
| 1503 | } | 1718 | } |
| 1504 | 1719 | ||
| 1720 | +#if !defined(__x86_64__) | ||
| 1505 | /* specific precise single step test */ | 1721 | /* specific precise single step test */ |
| 1506 | void sig_trap_handler(int sig, siginfo_t *info, void *puc) | 1722 | void sig_trap_handler(int sig, siginfo_t *info, void *puc) |
| 1507 | { | 1723 | { |
| 1508 | struct ucontext *uc = puc; | 1724 | struct ucontext *uc = puc; |
| 1509 | - printf("EIP=0x%08x\n", uc->uc_mcontext.gregs[REG_EIP]); | 1725 | + printf("EIP=" FMTLX "\n", (long)uc->uc_mcontext.gregs[REG_EIP]); |
| 1510 | } | 1726 | } |
| 1511 | 1727 | ||
| 1512 | const uint8_t sstep_buf1[4] = { 1, 2, 3, 4}; | 1728 | const uint8_t sstep_buf1[4] = { 1, 2, 3, 4}; |
| @@ -1627,12 +1843,21 @@ void test_self_modifying_code(void) | @@ -1627,12 +1843,21 @@ void test_self_modifying_code(void) | ||
| 1627 | printf("smc_code2(%d) = %d\n", i, smc_code2(i)); | 1843 | printf("smc_code2(%d) = %d\n", i, smc_code2(i)); |
| 1628 | } | 1844 | } |
| 1629 | } | 1845 | } |
| 1846 | +#endif | ||
| 1630 | 1847 | ||
| 1631 | -int enter_stack[4096]; | 1848 | +long enter_stack[4096]; |
| 1849 | + | ||
| 1850 | +#if defined(__x86_64__) | ||
| 1851 | +#define RSP "%%rsp" | ||
| 1852 | +#define RBP "%%rbp" | ||
| 1853 | +#else | ||
| 1854 | +#define RSP "%%esp" | ||
| 1855 | +#define RBP "%%ebp" | ||
| 1856 | +#endif | ||
| 1632 | 1857 | ||
| 1633 | #define TEST_ENTER(size, stack_type, level)\ | 1858 | #define TEST_ENTER(size, stack_type, level)\ |
| 1634 | {\ | 1859 | {\ |
| 1635 | - int esp_save, esp_val, ebp_val, ebp_save, i;\ | 1860 | + long esp_save, esp_val, ebp_val, ebp_save, i;\ |
| 1636 | stack_type *ptr, *stack_end, *stack_ptr;\ | 1861 | stack_type *ptr, *stack_end, *stack_ptr;\ |
| 1637 | memset(enter_stack, 0, sizeof(enter_stack));\ | 1862 | memset(enter_stack, 0, sizeof(enter_stack));\ |
| 1638 | stack_end = stack_ptr = (stack_type *)(enter_stack + 4096);\ | 1863 | stack_end = stack_ptr = (stack_type *)(enter_stack + 4096);\ |
| @@ -1640,15 +1865,15 @@ int enter_stack[4096]; | @@ -1640,15 +1865,15 @@ int enter_stack[4096]; | ||
| 1640 | for(i=1;i<=32;i++)\ | 1865 | for(i=1;i<=32;i++)\ |
| 1641 | *--stack_ptr = i;\ | 1866 | *--stack_ptr = i;\ |
| 1642 | esp_val = (long)stack_ptr;\ | 1867 | esp_val = (long)stack_ptr;\ |
| 1643 | - asm("movl %%esp, %[esp_save]\n"\ | ||
| 1644 | - "movl %%ebp, %[ebp_save]\n"\ | ||
| 1645 | - "movl %[esp_val], %%esp\n"\ | ||
| 1646 | - "movl %[ebp_val], %%ebp\n"\ | ||
| 1647 | - "enter" size " $12, $" #level "\n"\ | ||
| 1648 | - "movl %%esp, %[esp_val]\n"\ | ||
| 1649 | - "movl %%ebp, %[ebp_val]\n"\ | ||
| 1650 | - "movl %[esp_save], %%esp\n"\ | ||
| 1651 | - "movl %[ebp_save], %%ebp\n"\ | 1868 | + asm("mov " RSP ", %[esp_save]\n"\ |
| 1869 | + "mov " RBP ", %[ebp_save]\n"\ | ||
| 1870 | + "mov %[esp_val], " RSP "\n"\ | ||
| 1871 | + "mov %[ebp_val], " RBP "\n"\ | ||
| 1872 | + "enter" size " $8, $" #level "\n"\ | ||
| 1873 | + "mov " RSP ", %[esp_val]\n"\ | ||
| 1874 | + "mov " RBP ", %[ebp_val]\n"\ | ||
| 1875 | + "mov %[esp_save], " RSP "\n"\ | ||
| 1876 | + "mov %[ebp_save], " RBP "\n"\ | ||
| 1652 | : [esp_save] "=r" (esp_save),\ | 1877 | : [esp_save] "=r" (esp_save),\ |
| 1653 | [ebp_save] "=r" (ebp_save),\ | 1878 | [ebp_save] "=r" (ebp_save),\ |
| 1654 | [esp_val] "=r" (esp_val),\ | 1879 | [esp_val] "=r" (esp_val),\ |
| @@ -1656,18 +1881,25 @@ int enter_stack[4096]; | @@ -1656,18 +1881,25 @@ int enter_stack[4096]; | ||
| 1656 | : "[esp_val]" (esp_val),\ | 1881 | : "[esp_val]" (esp_val),\ |
| 1657 | "[ebp_val]" (ebp_val));\ | 1882 | "[ebp_val]" (ebp_val));\ |
| 1658 | printf("level=%d:\n", level);\ | 1883 | printf("level=%d:\n", level);\ |
| 1659 | - printf("esp_val=0x%08lx\n", esp_val - (long)stack_end);\ | ||
| 1660 | - printf("ebp_val=0x%08lx\n", ebp_val - (long)stack_end);\ | 1884 | + printf("esp_val=" FMTLX "\n", esp_val - (long)stack_end);\ |
| 1885 | + printf("ebp_val=" FMTLX "\n", ebp_val - (long)stack_end);\ | ||
| 1661 | for(ptr = (stack_type *)esp_val; ptr < stack_end; ptr++)\ | 1886 | for(ptr = (stack_type *)esp_val; ptr < stack_end; ptr++)\ |
| 1662 | - printf("%08x\n", ptr[0]);\ | 1887 | + printf(FMTLX "\n", (long)ptr[0]);\ |
| 1663 | } | 1888 | } |
| 1664 | 1889 | ||
| 1665 | static void test_enter(void) | 1890 | static void test_enter(void) |
| 1666 | { | 1891 | { |
| 1892 | +#if defined(__x86_64__) | ||
| 1893 | + TEST_ENTER("q", uint64_t, 0); | ||
| 1894 | + TEST_ENTER("q", uint64_t, 1); | ||
| 1895 | + TEST_ENTER("q", uint64_t, 2); | ||
| 1896 | + TEST_ENTER("q", uint64_t, 31); | ||
| 1897 | +#else | ||
| 1667 | TEST_ENTER("l", uint32_t, 0); | 1898 | TEST_ENTER("l", uint32_t, 0); |
| 1668 | TEST_ENTER("l", uint32_t, 1); | 1899 | TEST_ENTER("l", uint32_t, 1); |
| 1669 | TEST_ENTER("l", uint32_t, 2); | 1900 | TEST_ENTER("l", uint32_t, 2); |
| 1670 | TEST_ENTER("l", uint32_t, 31); | 1901 | TEST_ENTER("l", uint32_t, 31); |
| 1902 | +#endif | ||
| 1671 | 1903 | ||
| 1672 | TEST_ENTER("w", uint16_t, 0); | 1904 | TEST_ENTER("w", uint16_t, 0); |
| 1673 | TEST_ENTER("w", uint16_t, 1); | 1905 | TEST_ENTER("w", uint16_t, 1); |
| @@ -1698,7 +1930,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | @@ -1698,7 +1930,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | ||
| 1698 | #define SSE_OP(op)\ | 1930 | #define SSE_OP(op)\ |
| 1699 | {\ | 1931 | {\ |
| 1700 | asm volatile (#op " %2, %0" : "=x" (r.dq) : "0" (a.dq), "x" (b.dq));\ | 1932 | asm volatile (#op " %2, %0" : "=x" (r.dq) : "0" (a.dq), "x" (b.dq));\ |
| 1701 | - printf("%-9s: a=%016llx%016llx b=%016llx%016llx r=%016llx%016llx\n",\ | 1933 | + printf("%-9s: a=" FMT64X "" FMT64X " b=" FMT64X "" FMT64X " r=" FMT64X "" FMT64X "\n",\ |
| 1702 | #op,\ | 1934 | #op,\ |
| 1703 | a.q[1], a.q[0],\ | 1935 | a.q[1], a.q[0],\ |
| 1704 | b.q[1], b.q[0],\ | 1936 | b.q[1], b.q[0],\ |
| @@ -1724,7 +1956,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | @@ -1724,7 +1956,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | ||
| 1724 | a.q[0] = test_values[2*i][0];\ | 1956 | a.q[0] = test_values[2*i][0];\ |
| 1725 | b.q[0] = test_values[2*i+1][0];\ | 1957 | b.q[0] = test_values[2*i+1][0];\ |
| 1726 | asm volatile (#op " %2, %0" : "=y" (r.q[0]) : "0" (a.q[0]), "y" (b.q[0]));\ | 1958 | asm volatile (#op " %2, %0" : "=y" (r.q[0]) : "0" (a.q[0]), "y" (b.q[0]));\ |
| 1727 | - printf("%-9s: a=%016llx b=%016llx r=%016llx\n",\ | 1959 | + printf("%-9s: a=" FMT64X " b=" FMT64X " r=" FMT64X "\n",\ |
| 1728 | #op,\ | 1960 | #op,\ |
| 1729 | a.q[0],\ | 1961 | a.q[0],\ |
| 1730 | b.q[0],\ | 1962 | b.q[0],\ |
| @@ -1740,7 +1972,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | @@ -1740,7 +1972,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | ||
| 1740 | b.q[0] = test_values[1][0];\ | 1972 | b.q[0] = test_values[1][0];\ |
| 1741 | b.q[1] = test_values[1][1];\ | 1973 | b.q[1] = test_values[1][1];\ |
| 1742 | asm volatile (#op " $" #ib ", %2, %0" : "=x" (r.dq) : "0" (a.dq), "x" (b.dq));\ | 1974 | asm volatile (#op " $" #ib ", %2, %0" : "=x" (r.dq) : "0" (a.dq), "x" (b.dq));\ |
| 1743 | - printf("%-9s: a=%016llx%016llx b=%016llx%016llx ib=%02x r=%016llx%016llx\n",\ | 1975 | + printf("%-9s: a=" FMT64X "" FMT64X " b=" FMT64X "" FMT64X " ib=%02x r=" FMT64X "" FMT64X "\n",\ |
| 1744 | #op,\ | 1976 | #op,\ |
| 1745 | a.q[1], a.q[0],\ | 1977 | a.q[1], a.q[0],\ |
| 1746 | b.q[1], b.q[0],\ | 1978 | b.q[1], b.q[0],\ |
| @@ -1755,7 +1987,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | @@ -1755,7 +1987,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | ||
| 1755 | a.q[0] = test_values[2*i][0];\ | 1987 | a.q[0] = test_values[2*i][0];\ |
| 1756 | a.q[1] = test_values[2*i][1];\ | 1988 | a.q[1] = test_values[2*i][1];\ |
| 1757 | asm volatile (#op " $" #ib ", %1, %0" : "=x" (r.dq) : "x" (a.dq));\ | 1989 | asm volatile (#op " $" #ib ", %1, %0" : "=x" (r.dq) : "x" (a.dq));\ |
| 1758 | - printf("%-9s: a=%016llx%016llx ib=%02x r=%016llx%016llx\n",\ | 1990 | + printf("%-9s: a=" FMT64X "" FMT64X " ib=%02x r=" FMT64X "" FMT64X "\n",\ |
| 1759 | #op,\ | 1991 | #op,\ |
| 1760 | a.q[1], a.q[0],\ | 1992 | a.q[1], a.q[0],\ |
| 1761 | ib,\ | 1993 | ib,\ |
| @@ -1770,7 +2002,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | @@ -1770,7 +2002,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | ||
| 1770 | a.q[0] = test_values[2*i][0];\ | 2002 | a.q[0] = test_values[2*i][0];\ |
| 1771 | a.q[1] = test_values[2*i][1];\ | 2003 | a.q[1] = test_values[2*i][1];\ |
| 1772 | asm volatile (#op " $" #ib ", %0" : "=x" (r.dq) : "0" (a.dq));\ | 2004 | asm volatile (#op " $" #ib ", %0" : "=x" (r.dq) : "0" (a.dq));\ |
| 1773 | - printf("%-9s: a=%016llx%016llx ib=%02x r=%016llx%016llx\n",\ | 2005 | + printf("%-9s: a=" FMT64X "" FMT64X " ib=%02x r=" FMT64X "" FMT64X "\n",\ |
| 1774 | #op,\ | 2006 | #op,\ |
| 1775 | a.q[1], a.q[0],\ | 2007 | a.q[1], a.q[0],\ |
| 1776 | ib,\ | 2008 | ib,\ |
| @@ -1788,7 +2020,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | @@ -1788,7 +2020,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | ||
| 1788 | b.q[0] = ib;\ | 2020 | b.q[0] = ib;\ |
| 1789 | b.q[1] = 0;\ | 2021 | b.q[1] = 0;\ |
| 1790 | asm volatile (#op " %2, %0" : "=x" (r.dq) : "0" (a.dq), "x" (b.dq));\ | 2022 | asm volatile (#op " %2, %0" : "=x" (r.dq) : "0" (a.dq), "x" (b.dq));\ |
| 1791 | - printf("%-9s: a=%016llx%016llx b=%016llx%016llx r=%016llx%016llx\n",\ | 2023 | + printf("%-9s: a=" FMT64X "" FMT64X " b=" FMT64X "" FMT64X " r=" FMT64X "" FMT64X "\n",\ |
| 1792 | #op,\ | 2024 | #op,\ |
| 1793 | a.q[1], a.q[0],\ | 2025 | a.q[1], a.q[0],\ |
| 1794 | b.q[1], b.q[0],\ | 2026 | b.q[1], b.q[0],\ |
| @@ -1803,7 +2035,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | @@ -1803,7 +2035,7 @@ static uint64_t __attribute__((aligned(16))) test_values[4][2] = { | ||
| 1803 | a.q[0] = test_values[2*i][0];\ | 2035 | a.q[0] = test_values[2*i][0];\ |
| 1804 | a.q[1] = test_values[2*i][1];\ | 2036 | a.q[1] = test_values[2*i][1];\ |
| 1805 | asm volatile (#op " %1, %0" : "=r" (reg) : "x" (a.dq));\ | 2037 | asm volatile (#op " %1, %0" : "=r" (reg) : "x" (a.dq));\ |
| 1806 | - printf("%-9s: a=%016llx%016llx r=%08x\n",\ | 2038 | + printf("%-9s: a=" FMT64X "" FMT64X " r=%08x\n",\ |
| 1807 | #op,\ | 2039 | #op,\ |
| 1808 | a.q[1], a.q[0],\ | 2040 | a.q[1], a.q[0],\ |
| 1809 | reg);\ | 2041 | reg);\ |
| @@ -1845,7 +2077,7 @@ void test_sse_comi(double a1, double b1) | @@ -1845,7 +2077,7 @@ void test_sse_comi(double a1, double b1) | ||
| 1845 | #define CVT_OP_XMM(op)\ | 2077 | #define CVT_OP_XMM(op)\ |
| 1846 | {\ | 2078 | {\ |
| 1847 | asm volatile (#op " %1, %0" : "=x" (r.dq) : "x" (a.dq));\ | 2079 | asm volatile (#op " %1, %0" : "=x" (r.dq) : "x" (a.dq));\ |
| 1848 | - printf("%-9s: a=%016llx%016llx r=%016llx%016llx\n",\ | 2080 | + printf("%-9s: a=" FMT64X "" FMT64X " r=" FMT64X "" FMT64X "\n",\ |
| 1849 | #op,\ | 2081 | #op,\ |
| 1850 | a.q[1], a.q[0],\ | 2082 | a.q[1], a.q[0],\ |
| 1851 | r.q[1], r.q[0]);\ | 2083 | r.q[1], r.q[0]);\ |
| @@ -1854,7 +2086,7 @@ void test_sse_comi(double a1, double b1) | @@ -1854,7 +2086,7 @@ void test_sse_comi(double a1, double b1) | ||
| 1854 | #define CVT_OP_XMM2MMX(op)\ | 2086 | #define CVT_OP_XMM2MMX(op)\ |
| 1855 | {\ | 2087 | {\ |
| 1856 | asm volatile (#op " %1, %0" : "=y" (r.q[0]) : "x" (a.dq));\ | 2088 | asm volatile (#op " %1, %0" : "=y" (r.q[0]) : "x" (a.dq));\ |
| 1857 | - printf("%-9s: a=%016llx%016llx r=%016llx\n",\ | 2089 | + printf("%-9s: a=" FMT64X "" FMT64X " r=" FMT64X "\n",\ |
| 1858 | #op,\ | 2090 | #op,\ |
| 1859 | a.q[1], a.q[0],\ | 2091 | a.q[1], a.q[0],\ |
| 1860 | r.q[0]);\ | 2092 | r.q[0]);\ |
| @@ -1863,7 +2095,7 @@ void test_sse_comi(double a1, double b1) | @@ -1863,7 +2095,7 @@ void test_sse_comi(double a1, double b1) | ||
| 1863 | #define CVT_OP_MMX2XMM(op)\ | 2095 | #define CVT_OP_MMX2XMM(op)\ |
| 1864 | {\ | 2096 | {\ |
| 1865 | asm volatile (#op " %1, %0" : "=x" (r.dq) : "y" (a.q[0]));\ | 2097 | asm volatile (#op " %1, %0" : "=x" (r.dq) : "y" (a.q[0]));\ |
| 1866 | - printf("%-9s: a=%016llx r=%016llx%016llx\n",\ | 2098 | + printf("%-9s: a=" FMT64X " r=" FMT64X "" FMT64X "\n",\ |
| 1867 | #op,\ | 2099 | #op,\ |
| 1868 | a.q[0],\ | 2100 | a.q[0],\ |
| 1869 | r.q[1], r.q[0]);\ | 2101 | r.q[1], r.q[0]);\ |
| @@ -1872,7 +2104,7 @@ void test_sse_comi(double a1, double b1) | @@ -1872,7 +2104,7 @@ void test_sse_comi(double a1, double b1) | ||
| 1872 | #define CVT_OP_REG2XMM(op)\ | 2104 | #define CVT_OP_REG2XMM(op)\ |
| 1873 | {\ | 2105 | {\ |
| 1874 | asm volatile (#op " %1, %0" : "=x" (r.dq) : "r" (a.l[0]));\ | 2106 | asm volatile (#op " %1, %0" : "=x" (r.dq) : "r" (a.l[0]));\ |
| 1875 | - printf("%-9s: a=%08x r=%016llx%016llx\n",\ | 2107 | + printf("%-9s: a=%08x r=" FMT64X "" FMT64X "\n",\ |
| 1876 | #op,\ | 2108 | #op,\ |
| 1877 | a.l[0],\ | 2109 | a.l[0],\ |
| 1878 | r.q[1], r.q[0]);\ | 2110 | r.q[1], r.q[0]);\ |
| @@ -1881,7 +2113,7 @@ void test_sse_comi(double a1, double b1) | @@ -1881,7 +2113,7 @@ void test_sse_comi(double a1, double b1) | ||
| 1881 | #define CVT_OP_XMM2REG(op)\ | 2113 | #define CVT_OP_XMM2REG(op)\ |
| 1882 | {\ | 2114 | {\ |
| 1883 | asm volatile (#op " %1, %0" : "=r" (r.l[0]) : "x" (a.dq));\ | 2115 | asm volatile (#op " %1, %0" : "=r" (r.l[0]) : "x" (a.dq));\ |
| 1884 | - printf("%-9s: a=%016llx%016llx r=%08x\n",\ | 2116 | + printf("%-9s: a=" FMT64X "" FMT64X " r=%08x\n",\ |
| 1885 | #op,\ | 2117 | #op,\ |
| 1886 | a.q[1], a.q[0],\ | 2118 | a.q[1], a.q[0],\ |
| 1887 | r.l[0]);\ | 2119 | r.l[0]);\ |
| @@ -1912,7 +2144,7 @@ void test_fxsave(void) | @@ -1912,7 +2144,7 @@ void test_fxsave(void) | ||
| 1912 | { | 2144 | { |
| 1913 | struct fpxstate *fp = &fpx_state; | 2145 | struct fpxstate *fp = &fpx_state; |
| 1914 | struct fpxstate *fp2 = &fpx_state2; | 2146 | struct fpxstate *fp2 = &fpx_state2; |
| 1915 | - int i; | 2147 | + int i, nb_xmm; |
| 1916 | XMMReg a, b; | 2148 | XMMReg a, b; |
| 1917 | a.q[0] = test_values[0][0]; | 2149 | a.q[0] = test_values[0][0]; |
| 1918 | a.q[1] = test_values[0][1]; | 2150 | a.q[1] = test_values[0][1]; |
| @@ -1921,6 +2153,9 @@ void test_fxsave(void) | @@ -1921,6 +2153,9 @@ void test_fxsave(void) | ||
| 1921 | 2153 | ||
| 1922 | asm("movdqa %2, %%xmm0\n" | 2154 | asm("movdqa %2, %%xmm0\n" |
| 1923 | "movdqa %3, %%xmm7\n" | 2155 | "movdqa %3, %%xmm7\n" |
| 2156 | +#if defined(__x86_64__) | ||
| 2157 | + "movdqa %2, %%xmm15\n" | ||
| 2158 | +#endif | ||
| 1924 | " fld1\n" | 2159 | " fld1\n" |
| 1925 | " fldpi\n" | 2160 | " fldpi\n" |
| 1926 | " fldln2\n" | 2161 | " fldln2\n" |
| @@ -1934,14 +2169,19 @@ void test_fxsave(void) | @@ -1934,14 +2169,19 @@ void test_fxsave(void) | ||
| 1934 | printf("fpus=%04x\n", fp->fpus); | 2169 | printf("fpus=%04x\n", fp->fpus); |
| 1935 | printf("fptag=%04x\n", fp->fptag); | 2170 | printf("fptag=%04x\n", fp->fptag); |
| 1936 | for(i = 0; i < 3; i++) { | 2171 | for(i = 0; i < 3; i++) { |
| 1937 | - printf("ST%d: %016llx %04x\n", | 2172 | + printf("ST%d: " FMT64X " %04x\n", |
| 1938 | i, | 2173 | i, |
| 1939 | *(uint64_t *)&fp->fpregs1[i * 16], | 2174 | *(uint64_t *)&fp->fpregs1[i * 16], |
| 1940 | *(uint16_t *)&fp->fpregs1[i * 16 + 8]); | 2175 | *(uint16_t *)&fp->fpregs1[i * 16 + 8]); |
| 1941 | } | 2176 | } |
| 1942 | printf("mxcsr=%08x\n", fp->mxcsr & 0x1f80); | 2177 | printf("mxcsr=%08x\n", fp->mxcsr & 0x1f80); |
| 1943 | - for(i = 0; i < 8; i++) { | ||
| 1944 | - printf("xmm%d: %016llx%016llx\n", | 2178 | +#if defined(__x86_64__) |
| 2179 | + nb_xmm = 16; | ||
| 2180 | +#else | ||
| 2181 | + nb_xmm = 8; | ||
| 2182 | +#endif | ||
| 2183 | + for(i = 0; i < nb_xmm; i++) { | ||
| 2184 | + printf("xmm%d: " FMT64X "" FMT64X "\n", | ||
| 1945 | i, | 2185 | i, |
| 1946 | *(uint64_t *)&fp->xmm_regs[i * 16], | 2186 | *(uint64_t *)&fp->xmm_regs[i * 16], |
| 1947 | *(uint64_t *)&fp->xmm_regs[i * 16 + 8]); | 2187 | *(uint64_t *)&fp->xmm_regs[i * 16 + 8]); |
| @@ -2005,10 +2245,10 @@ void test_sse(void) | @@ -2005,10 +2245,10 @@ void test_sse(void) | ||
| 2005 | MMX_OP2(pavgw); | 2245 | MMX_OP2(pavgw); |
| 2006 | 2246 | ||
| 2007 | asm volatile ("pinsrw $1, %1, %0" : "=y" (r.q[0]) : "r" (0x12345678)); | 2247 | asm volatile ("pinsrw $1, %1, %0" : "=y" (r.q[0]) : "r" (0x12345678)); |
| 2008 | - printf("%-9s: r=%016llx\n", "pinsrw", r.q[0]); | 2248 | + printf("%-9s: r=" FMT64X "\n", "pinsrw", r.q[0]); |
| 2009 | 2249 | ||
| 2010 | asm volatile ("pinsrw $5, %1, %0" : "=x" (r.dq) : "r" (0x12345678)); | 2250 | asm volatile ("pinsrw $5, %1, %0" : "=x" (r.dq) : "r" (0x12345678)); |
| 2011 | - printf("%-9s: r=%016llx%016llx\n", "pinsrw", r.q[1], r.q[0]); | 2251 | + printf("%-9s: r=" FMT64X "" FMT64X "\n", "pinsrw", r.q[1], r.q[0]); |
| 2012 | 2252 | ||
| 2013 | a.q[0] = test_values[0][0]; | 2253 | a.q[0] = test_values[0][0]; |
| 2014 | a.q[1] = test_values[0][1]; | 2254 | a.q[1] = test_values[0][1]; |
| @@ -2035,7 +2275,7 @@ void test_sse(void) | @@ -2035,7 +2275,7 @@ void test_sse(void) | ||
| 2035 | asm volatile("maskmovq %1, %0" : | 2275 | asm volatile("maskmovq %1, %0" : |
| 2036 | : "y" (a.q[0]), "y" (b.q[0]), "D" (&r) | 2276 | : "y" (a.q[0]), "y" (b.q[0]), "D" (&r) |
| 2037 | : "memory"); | 2277 | : "memory"); |
| 2038 | - printf("%-9s: r=%016llx a=%016llx b=%016llx\n", | 2278 | + printf("%-9s: r=" FMT64X " a=" FMT64X " b=" FMT64X "\n", |
| 2039 | "maskmov", | 2279 | "maskmov", |
| 2040 | r.q[0], | 2280 | r.q[0], |
| 2041 | a.q[0], | 2281 | a.q[0], |
| @@ -2043,7 +2283,7 @@ void test_sse(void) | @@ -2043,7 +2283,7 @@ void test_sse(void) | ||
| 2043 | asm volatile("maskmovdqu %1, %0" : | 2283 | asm volatile("maskmovdqu %1, %0" : |
| 2044 | : "x" (a.dq), "x" (b.dq), "D" (&r) | 2284 | : "x" (a.dq), "x" (b.dq), "D" (&r) |
| 2045 | : "memory"); | 2285 | : "memory"); |
| 2046 | - printf("%-9s: r=%016llx%016llx a=%016llx%016llx b=%016llx%016llx\n", | 2286 | + printf("%-9s: r=" FMT64X "" FMT64X " a=" FMT64X "" FMT64X " b=" FMT64X "" FMT64X "\n", |
| 2047 | "maskmov", | 2287 | "maskmov", |
| 2048 | r.q[1], r.q[0], | 2288 | r.q[1], r.q[0], |
| 2049 | a.q[1], a.q[0], | 2289 | a.q[1], a.q[0], |
| @@ -2205,15 +2445,17 @@ void test_sse(void) | @@ -2205,15 +2445,17 @@ void test_sse(void) | ||
| 2205 | 2445 | ||
| 2206 | #endif | 2446 | #endif |
| 2207 | 2447 | ||
| 2208 | -static void *call_end __init_call = NULL; | 2448 | +extern void *__start_initcall; |
| 2449 | +extern void *__stop_initcall; | ||
| 2450 | + | ||
| 2209 | 2451 | ||
| 2210 | int main(int argc, char **argv) | 2452 | int main(int argc, char **argv) |
| 2211 | { | 2453 | { |
| 2212 | void **ptr; | 2454 | void **ptr; |
| 2213 | void (*func)(void); | 2455 | void (*func)(void); |
| 2214 | 2456 | ||
| 2215 | - ptr = &call_start + 1; | ||
| 2216 | - while (*ptr != NULL) { | 2457 | + ptr = &__start_initcall; |
| 2458 | + while (ptr != &__stop_initcall) { | ||
| 2217 | func = *ptr++; | 2459 | func = *ptr++; |
| 2218 | func(); | 2460 | func(); |
| 2219 | } | 2461 | } |
| @@ -2221,19 +2463,25 @@ int main(int argc, char **argv) | @@ -2221,19 +2463,25 @@ int main(int argc, char **argv) | ||
| 2221 | test_mul(); | 2463 | test_mul(); |
| 2222 | test_jcc(); | 2464 | test_jcc(); |
| 2223 | test_floats(); | 2465 | test_floats(); |
| 2466 | +#if !defined(__x86_64__) | ||
| 2224 | test_bcd(); | 2467 | test_bcd(); |
| 2468 | +#endif | ||
| 2225 | test_xchg(); | 2469 | test_xchg(); |
| 2226 | test_string(); | 2470 | test_string(); |
| 2227 | test_misc(); | 2471 | test_misc(); |
| 2228 | test_lea(); | 2472 | test_lea(); |
| 2473 | +#ifdef TEST_SEGS | ||
| 2229 | test_segs(); | 2474 | test_segs(); |
| 2230 | test_code16(); | 2475 | test_code16(); |
| 2476 | +#endif | ||
| 2231 | #ifdef TEST_VM86 | 2477 | #ifdef TEST_VM86 |
| 2232 | test_vm86(); | 2478 | test_vm86(); |
| 2233 | #endif | 2479 | #endif |
| 2234 | test_exceptions(); | 2480 | test_exceptions(); |
| 2481 | +#if !defined(__x86_64__) | ||
| 2235 | test_self_modifying_code(); | 2482 | test_self_modifying_code(); |
| 2236 | test_single_step(); | 2483 | test_single_step(); |
| 2484 | +#endif | ||
| 2237 | test_enter(); | 2485 | test_enter(); |
| 2238 | #ifdef TEST_SSE | 2486 | #ifdef TEST_SSE |
| 2239 | test_sse(); | 2487 | test_sse(); |
tests/test-i386.h
| 1 | 1 | ||
| 2 | #define exec_op glue(exec_, OP) | 2 | #define exec_op glue(exec_, OP) |
| 3 | +#define exec_opq glue(glue(exec_, OP), q) | ||
| 3 | #define exec_opl glue(glue(exec_, OP), l) | 4 | #define exec_opl glue(glue(exec_, OP), l) |
| 4 | #define exec_opw glue(glue(exec_, OP), w) | 5 | #define exec_opw glue(glue(exec_, OP), w) |
| 5 | #define exec_opb glue(glue(exec_, OP), b) | 6 | #define exec_opb glue(glue(exec_, OP), b) |
| 6 | 7 | ||
| 7 | -#define EXECOP2(size, res, s1, flags) \ | 8 | +#define EXECOP2(size, rsize, res, s1, flags) \ |
| 8 | asm ("push %4\n\t"\ | 9 | asm ("push %4\n\t"\ |
| 9 | "popf\n\t"\ | 10 | "popf\n\t"\ |
| 10 | - stringify(OP) size " %" size "2, %" size "0\n\t" \ | 11 | + stringify(OP) size " %" rsize "2, %" rsize "0\n\t" \ |
| 11 | "pushf\n\t"\ | 12 | "pushf\n\t"\ |
| 12 | - "popl %1\n\t"\ | 13 | + "pop %1\n\t"\ |
| 13 | : "=q" (res), "=g" (flags)\ | 14 | : "=q" (res), "=g" (flags)\ |
| 14 | - : "q" (s1), "0" (res), "1" (flags)); | 15 | + : "q" (s1), "0" (res), "1" (flags)); \ |
| 16 | + printf("%-10s A=" FMTLX " B=" FMTLX " R=" FMTLX " CCIN=%04lx CC=%04lx\n", \ | ||
| 17 | + stringify(OP) size, s0, s1, res, iflags, flags & CC_MASK); | ||
| 15 | 18 | ||
| 16 | -#define EXECOP1(size, res, flags) \ | 19 | +#define EXECOP1(size, rsize, res, flags) \ |
| 17 | asm ("push %3\n\t"\ | 20 | asm ("push %3\n\t"\ |
| 18 | "popf\n\t"\ | 21 | "popf\n\t"\ |
| 19 | - stringify(OP) size " %" size "0\n\t" \ | 22 | + stringify(OP) size " %" rsize "0\n\t" \ |
| 20 | "pushf\n\t"\ | 23 | "pushf\n\t"\ |
| 21 | - "popl %1\n\t"\ | 24 | + "pop %1\n\t"\ |
| 22 | : "=q" (res), "=g" (flags)\ | 25 | : "=q" (res), "=g" (flags)\ |
| 23 | - : "0" (res), "1" (flags)); | 26 | + : "0" (res), "1" (flags)); \ |
| 27 | + printf("%-10s A=" FMTLX " R=" FMTLX " CCIN=%04lx CC=%04lx\n", \ | ||
| 28 | + stringify(OP) size, s0, res, iflags, flags & CC_MASK); | ||
| 24 | 29 | ||
| 25 | #ifdef OP1 | 30 | #ifdef OP1 |
| 26 | -void exec_opl(int s0, int s1, int iflags) | 31 | +#if defined(__x86_64__) |
| 32 | +void exec_opq(long s0, long s1, long iflags) | ||
| 27 | { | 33 | { |
| 28 | - int res, flags; | 34 | + long res, flags; |
| 29 | res = s0; | 35 | res = s0; |
| 30 | flags = iflags; | 36 | flags = iflags; |
| 31 | - EXECOP1("", res, flags); | ||
| 32 | - printf("%-10s A=%08x R=%08x CCIN=%04x CC=%04x\n", | ||
| 33 | - stringify(OP) "l", s0, res, iflags, flags & CC_MASK); | 37 | + EXECOP1("q", "", res, flags); |
| 34 | } | 38 | } |
| 39 | +#endif | ||
| 35 | 40 | ||
| 36 | -void exec_opw(int s0, int s1, int iflags) | 41 | +void exec_opl(long s0, long s1, long iflags) |
| 37 | { | 42 | { |
| 38 | - int res, flags; | 43 | + long res, flags; |
| 39 | res = s0; | 44 | res = s0; |
| 40 | flags = iflags; | 45 | flags = iflags; |
| 41 | - EXECOP1("w", res, flags); | ||
| 42 | - printf("%-10s A=%08x R=%08x CCIN=%04x CC=%04x\n", | ||
| 43 | - stringify(OP) "w", s0, res, iflags, flags & CC_MASK); | 46 | + EXECOP1("l", "k", res, flags); |
| 44 | } | 47 | } |
| 45 | 48 | ||
| 46 | -void exec_opb(int s0, int s1, int iflags) | 49 | +void exec_opw(long s0, long s1, long iflags) |
| 47 | { | 50 | { |
| 48 | - int res, flags; | 51 | + long res, flags; |
| 49 | res = s0; | 52 | res = s0; |
| 50 | flags = iflags; | 53 | flags = iflags; |
| 51 | - EXECOP1("b", res, flags); | ||
| 52 | - printf("%-10s A=%08x R=%08x CCIN=%04x CC=%04x\n", | ||
| 53 | - stringify(OP) "b", s0, res, iflags, flags & CC_MASK); | 54 | + EXECOP1("w", "w", res, flags); |
| 55 | +} | ||
| 56 | + | ||
| 57 | +void exec_opb(long s0, long s1, long iflags) | ||
| 58 | +{ | ||
| 59 | + long res, flags; | ||
| 60 | + res = s0; | ||
| 61 | + flags = iflags; | ||
| 62 | + EXECOP1("b", "b", res, flags); | ||
| 54 | } | 63 | } |
| 55 | #else | 64 | #else |
| 56 | -void exec_opl(int s0, int s1, int iflags) | 65 | +#if defined(__x86_64__) |
| 66 | +void exec_opq(long s0, long s1, long iflags) | ||
| 67 | +{ | ||
| 68 | + long res, flags; | ||
| 69 | + res = s0; | ||
| 70 | + flags = iflags; | ||
| 71 | + EXECOP2("q", "", res, s1, flags); | ||
| 72 | +} | ||
| 73 | +#endif | ||
| 74 | + | ||
| 75 | +void exec_opl(long s0, long s1, long iflags) | ||
| 57 | { | 76 | { |
| 58 | - int res, flags; | 77 | + long res, flags; |
| 59 | res = s0; | 78 | res = s0; |
| 60 | flags = iflags; | 79 | flags = iflags; |
| 61 | - EXECOP2("", res, s1, flags); | ||
| 62 | - printf("%-10s A=%08x B=%08x R=%08x CCIN=%04x CC=%04x\n", | ||
| 63 | - stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); | 80 | + EXECOP2("l", "k", res, s1, flags); |
| 64 | } | 81 | } |
| 65 | 82 | ||
| 66 | -void exec_opw(int s0, int s1, int iflags) | 83 | +void exec_opw(long s0, long s1, long iflags) |
| 67 | { | 84 | { |
| 68 | - int res, flags; | 85 | + long res, flags; |
| 69 | res = s0; | 86 | res = s0; |
| 70 | flags = iflags; | 87 | flags = iflags; |
| 71 | - EXECOP2("w", res, s1, flags); | ||
| 72 | - printf("%-10s A=%08x B=%08x R=%08x CCIN=%04x CC=%04x\n", | ||
| 73 | - stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); | 88 | + EXECOP2("w", "w", res, s1, flags); |
| 74 | } | 89 | } |
| 75 | 90 | ||
| 76 | -void exec_opb(int s0, int s1, int iflags) | 91 | +void exec_opb(long s0, long s1, long iflags) |
| 77 | { | 92 | { |
| 78 | - int res, flags; | 93 | + long res, flags; |
| 79 | res = s0; | 94 | res = s0; |
| 80 | flags = iflags; | 95 | flags = iflags; |
| 81 | - EXECOP2("b", res, s1, flags); | ||
| 82 | - printf("%-10s A=%08x B=%08x R=%08x CCIN=%04x CC=%04x\n", | ||
| 83 | - stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK); | 96 | + EXECOP2("b", "b", res, s1, flags); |
| 84 | } | 97 | } |
| 85 | #endif | 98 | #endif |
| 86 | 99 | ||
| 87 | -void exec_op(int s0, int s1) | 100 | +void exec_op(long s0, long s1) |
| 88 | { | 101 | { |
| 102 | + s0 = i2l(s0); | ||
| 103 | + s1 = i2l(s1); | ||
| 104 | +#if defined(__x86_64__) | ||
| 105 | + exec_opq(s0, s1, 0); | ||
| 106 | +#endif | ||
| 89 | exec_opl(s0, s1, 0); | 107 | exec_opl(s0, s1, 0); |
| 90 | exec_opw(s0, s1, 0); | 108 | exec_opw(s0, s1, 0); |
| 91 | exec_opb(s0, s1, 0); | 109 | exec_opb(s0, s1, 0); |
| 92 | #ifdef OP_CC | 110 | #ifdef OP_CC |
| 111 | +#if defined(__x86_64__) | ||
| 112 | + exec_opq(s0, s1, CC_C); | ||
| 113 | +#endif | ||
| 93 | exec_opl(s0, s1, CC_C); | 114 | exec_opl(s0, s1, CC_C); |
| 94 | exec_opw(s0, s1, CC_C); | 115 | exec_opw(s0, s1, CC_C); |
| 95 | exec_opb(s0, s1, CC_C); | 116 | exec_opb(s0, s1, CC_C); |