mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-08 15:34:09 +00:00
![Michael Munday](/assets/img/avatar_default.png)
./run.sh will now execute the tests. It is a very simple setup currently, and is limited to linux on s390x. Enough to get started with.
84 lines
1.5 KiB
C
84 lines
1.5 KiB
C
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <sys/mman.h>
|
|
|
|
#include "../dasm_proto.h"
|
|
#include "../dasm_s390x.h"
|
|
|
|
// DynASM directives.
|
|
|.arch s390x
|
|
|.actionlist actions
|
|
|
|
static void add(dasm_State *state)
|
|
{
|
|
dasm_State ** Dst = &state;
|
|
|
|
| ar r2,r3
|
|
| br r14
|
|
}
|
|
|
|
static void sub(dasm_State *state)
|
|
{
|
|
dasm_State **Dst = &state;
|
|
|
|
| sr r2,r3
|
|
| br r14
|
|
}
|
|
|
|
static void mul(dasm_State *state)
|
|
{
|
|
dasm_State **Dst = &state;
|
|
|
|
| msr r2 , r3
|
|
| br r14
|
|
}
|
|
|
|
typedef struct {
|
|
int arg1;
|
|
int arg2;
|
|
void (*fn)(dasm_State *);
|
|
int want;
|
|
const char *testname;
|
|
} test_table;
|
|
|
|
test_table test[] = {
|
|
{ 1, 2, add, 3, "add"},
|
|
{10, 5, sub, 5, "sub"},
|
|
{ 2, 3, mul, 6, "mul"}
|
|
};
|
|
|
|
static void *jitcode(dasm_State **state, size_t *size)
|
|
{
|
|
int dasm_status = dasm_link(state, size);
|
|
assert(dasm_status == DASM_S_OK);
|
|
|
|
void *ret = mmap(0, *size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
|
|
dasm_encode(state, ret);
|
|
dasm_free(state);
|
|
|
|
mprotect(ret, *size, PROT_READ | PROT_EXEC);
|
|
return (int *)ret;
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
dasm_State *state;
|
|
|
|
for(int i=0; i < sizeof(test)/sizeof(test[0]); i++) {
|
|
dasm_init(&state, 1);
|
|
dasm_setup(&state, actions);
|
|
test[i].fn(state);
|
|
size_t size;
|
|
int (*fptr)(int, int) = jitcode(&state, &size);
|
|
int got = fptr(test[i].arg1, test[i].arg2);
|
|
|
|
if (got != test[i].want) {
|
|
fprintf(stderr, "FAIL: test %s: want %d, got %d\n", test[i].testname, test[i].want, got);
|
|
exit(1);
|
|
}
|
|
munmap(fptr, size);
|
|
}
|
|
printf("all tests passed\n");
|
|
return 0;
|
|
}
|