-
Notifications
You must be signed in to change notification settings - Fork 1
/
testmain2.c
217 lines (188 loc) · 5.75 KB
/
testmain2.c
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#include <pwart.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <time.h>
#define puti32 pwart_rstack_put_i32
#define puti64 pwart_rstack_put_i64
#define putf32 pwart_rstack_put_f32
#define putf64 pwart_rstack_put_f64
#define putref pwart_rstack_put_ref
#define geti32 pwart_rstack_get_i32
#define geti64 pwart_rstack_get_i64
#define getf32 pwart_rstack_get_f32
#define getf64 pwart_rstack_get_f64
#define getref pwart_rstack_get_ref
static void test_printf64(void *fp) {
void *sp = fp;
printf("testaid:%lf\n", getf64(&sp));
sp = fp;
printf("testaid:%lld\n", geti64(&sp));
}
static void test_printi64(void *fp) {
void *sp = fp;
printf("testaid:%lld\n", geti64(&sp));
}
static void do_resolve(struct pwart_host_module *_this,struct pwart_symbol_resolve_request *req) {
char *mod=req->import_module;
char *name=req->import_field;
void **val=&req->result;
if (!strcmp("testaid", mod)) {
if (!strcmp("printi64", name)) {
*val = pwart_wrap_host_function_c(test_printi64);
} else if (!strcmp("printf64", name)) {
*val = pwart_wrap_host_function_c(test_printf64);
}
}
}
struct pwart_host_module testaid={.resolve=&do_resolve,.on_attached=NULL,.on_detached=NULL};
int namespace_test(){
struct pwart_global_compile_config gcfg;
void *stackbase = pwart_allocate_stack(64 * 1024);
char *err=NULL;
void *sp;
FILE *f;
int len;
// 8MB buffer;
uint8_t *data = malloc(1024 * 1024 * 8);
pwart_get_global_compile_config(&gcfg);
pwart_namespace *ns=pwart_namespace_new();
struct pwart_named_module nmod;
nmod.name="testaid";
nmod.type=PWART_MODULE_TYPE_HOST_MODULE;
nmod.val.host=&testaid;
pwart_namespace_define_module(ns,&nmod);
f = fopen("test1.wasm", "rb");
len = fread(data, 1, 1024 * 1024 * 8, f);
fclose(f);
pwart_namespace_define_wasm_module(ns,"test1",data,len,&err);
if(err!=NULL){
printf("error occur:%s\n",err);
return 0;
}
f = fopen("extension1.wasm", "rb");
len = fread(data, 1, 1024 * 1024 * 8, f);
fclose(f);
pwart_namespace_define_wasm_module(ns,"extension1",data,len,&err);
if(err!=NULL){
printf("error occur:%s\n",err);
return 0;
}
struct pwart_symbol_resolve_request req;
req.import_field="test1";
req.import_module="extension1";
req.kind=PWART_KIND_FUNCTION;
req.result=NULL;
pwart_namespace_resolver(ns)->resolve(pwart_namespace_resolver(ns),&req);
if(req.result==NULL){
printf("error occur:%s\n","import extension1.test1 failed");
return 0;
}
pwart_wasm_function test1=(pwart_wasm_function)req.result;
pwart_call_wasm_function(test1,stackbase);
sp=stackbase;
uint64_t *pmem=(uint64_t *)(size_t)geti64(&sp);
printf("allocated memory at %p, write value %"PRIu64",%"PRIu64", expect %llu,%llu...",pmem,*pmem,*(pmem+1),
123456ull,456789ull);
if(*pmem!=(uint64_t)123456ull || *(pmem+1)!=(uint64_t)456789ull){
return 0;
}
printf("pass\n");
req.import_field="mbase";
req.kind=PWART_KIND_GLOBAL;
req.result=NULL;
pwart_namespace_resolver(ns)->resolve(pwart_namespace_resolver(ns),&req);
if(req.result==NULL){
printf("error occur:%s\n","import extension1.mbase failed");
return 0;
}
printf("global mbase:%p, expect %p...",*(void **)req.result,pmem);
if(*(void **)req.result!=pmem){
return 0;
}
printf("pass\n");
req.import_field="test2";
req.kind=PWART_KIND_FUNCTION;
req.result=NULL;
pwart_namespace_resolver(ns)->resolve(pwart_namespace_resolver(ns),&req);
if(req.result==NULL){
printf("error occur:%s\n","import extension1.test2 failed");
return 0;
}
pwart_wasm_function test2=(pwart_wasm_function)req.result;
pwart_call_wasm_function(test2,stackbase);
return 1;
}
int benchmark_test(){
struct pwart_global_compile_config gcfg;
void *stackbase = pwart_allocate_stack(64 * 1024);
char *err=NULL;
void *sp;
FILE *f;
int len;
// 8MB buffer;
uint8_t *data = malloc(1024 * 1024 * 8);
printf("benchmark testing...\n");
pwart_get_global_compile_config(&gcfg);
pwart_namespace *ns=pwart_namespace_new();
struct pwart_named_module nmod;
nmod.name="testaid";
nmod.type=PWART_MODULE_TYPE_HOST_MODULE;
nmod.val.host=&testaid;
pwart_namespace_define_module(ns,&nmod);
f = fopen("benchsort.wasm", "rb");
len = fread(data, 1, 1024 * 1024 * 8, f);
fclose(f);
pwart_namespace_define_wasm_module(ns,"benchsort",data,len,&err);
if(err!=NULL){
printf("error occur:%s\n",err);
return 0;
}
struct pwart_symbol_resolve_request req;
req.import_module="benchsort";
req.import_field="mainloop";
req.kind=PWART_KIND_FUNCTION;
req.result=NULL;
pwart_namespace_resolver(ns)->resolve(pwart_namespace_resolver(ns),&req);
if(req.result==NULL){
printf("error occur:%s\n","import benchsort.mainloop failed");
return 0;
}
pwart_wasm_function test1=(pwart_wasm_function)req.result;
clock_t beg=clock();
pwart_call_wasm_function(test1,stackbase);
clock_t end=clock();
sp=stackbase;
req.import_field="memory";
req.kind=PWART_KIND_MEMORY;
req.result=NULL;
pwart_namespace_resolver(ns)->resolve(pwart_namespace_resolver(ns),&req);
struct pwart_wasm_memory *mem=req.result;
uint32_t *target=(uint32_t *)(mem->bytes+5024);
for(int i1=1;i1<1000;i1++){
if(*(target+i1)<*(target+i1-1)){
printf("benchmark test get wrong result, faled.");
return 0;
}
}
printf("benchmark test consume %d ms\n",(int)((end-beg)/(CLOCKS_PER_SEC/1000)));
return 1;
}
int main(int argc, char *argv[]) {
if (namespace_test()) {
printf("namespace_test pass\n");
} else {
printf("namespace_test failed\n");
return 1;
}
if(benchmark_test()){
printf("benchmark_test pass\n");
} else {
printf("benchmark_test failed\n");
return 1;
}
printf("all test pass.\n");
return 0;
}