1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include <ejit/ejit.h>
#include <assert.h>
#include "do_jit.h"
int main(int argc, char *argv[])
{
(void)argv;
bool do_jit = argc > 1;
struct ejit_func *f = ejit_create_func(EJIT_TYPE(int), 0, NULL);
struct ejit_reloc r = ejit_jmp(f);
ejit_reti(f, 0);
struct ejit_label l = ejit_label(f);
ejit_reti(f, 1);
ejit_patch(f, r, l);
struct ejit_reloc j = ejit_jmp(f);
ejit_patch(f, j, l);
ejit_reti(f, 2);
ejit_select_compile_func(f, 0, 0, EJIT_USE64(long), do_jit);
assert(ejit_run_func(f, 0, NULL) == 1);
ejit_destroy_func(f);
}
|