-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtests.cpp
414 lines (350 loc) · 10 KB
/
tests.cpp
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
#include <cstdlib>
#include <cstdio>
#include <vector>
#include "coat/Function.h"
#include "coat/ControlFlow.h"
#include "coat/datastructs/pod_vector.h"
// generate code, in this case just sum all element in array
template<class Fn>
void assemble_sum_foreach(Fn &fn){
auto args = fn.getArguments("arr", "cnt");
auto &vr_arr = std::get<0>(args);
auto &vr_cnt = std::get<1>(args);
coat::Value vr_sum(fn, 0, "sum");
auto vr_arrend = vr_arr + vr_cnt;
coat::for_each(fn, vr_arr, vr_arrend, [&](auto &vr_ele){
vr_sum += vr_ele;
});
coat::ret(fn, vr_sum);
}
// generate code, in this case just sum all element in array
template<class Fn>
void assemble_sum_counter(Fn &fn){
auto args = fn.getArguments("arr", "cnt");
auto &vr_arr = std::get<0>(args);
auto &vr_cnt = std::get<1>(args);
coat::Value vr_sum(fn, 0, "sum");
coat::Value vr_idx(fn, 0UL, "idx");
coat::loop_while(fn, vr_idx < vr_cnt, [&](){
vr_sum += vr_arr[vr_idx];
++vr_idx;
});
coat::ret(fn, vr_sum);
}
// generate code, sum if element is odd
template<class Fn>
void assemble_condsum_loop(Fn &fn){
auto args = fn.getArguments("arr", "cnt");
auto &vr_arr = std::get<0>(args);
auto &vr_cnt = std::get<1>(args);
coat::Value vr_sum(fn, 0, "sum");
auto vr_arrend = vr_arr + vr_cnt;
coat::do_while(fn, [&]{
auto vr_ele = *vr_arr;
if_then(fn, (vr_ele & 1) != 0, [&]{
vr_sum += vr_ele;
});
++vr_arr;
}, vr_arr != vr_arrend);
coat::ret(fn, vr_sum);
}
struct triple {
#define MEMBERS(x) \
x(uint32_t, first) \
x(uint16_t, second) \
x(uint64_t, third)
COAT_DECLARE(MEMBERS)
#undef MEMBERS
};
template<class Fn>
void assemble_getStructElement(Fn &fn){
auto args = fn.getArguments("triple");
auto &vr_triple = std::get<0>(args);
auto vr_m = vr_triple.template get_reference<triple::member_second>();
auto vr_ret = fn.template getValue<uint32_t>();
vr_ret.widen(vr_m);
coat::ret(fn, vr_ret);
}
template<typename T>
struct wrapped_vector {
static constexpr std::array member_names{"begin", "end", "capend"};
using types = std::tuple<T*,T*,T*>;
};
template<class Fn>
void assemble_vectorsum(Fn &fn){
auto args = fn.getArguments("vector");
auto &vr_vector = std::get<0>(args);
coat::Value vr_sum(fn, 0, "sum");
auto vr_pos = vr_vector.template get_value<0>();
auto vr_end = vr_vector.template get_value<1>();
coat::for_each(fn, vr_pos, vr_end, [&](auto &vr_ele){
vr_sum += vr_ele;
});
coat::ret(fn, vr_sum);
}
int main(int argc, char **argv){
if(argc < 3){
puts("usage: ./prog divisor array_of_numbers\nexample: ./prog 2 24 32 86 42 23 16 4 8");
return -1;
}
//int divisor = atoi(argv[1]); //FIXME: remove, also from program arguments
size_t cnt = argc - 2;
int *array = new int[cnt];
for(int i=2; i<argc; ++i){
array[i-2] = atoi(argv[i]);
}
// init JIT backends
#ifdef ENABLE_ASMJIT
coat::runtimeasmjit asmrt;
#endif
#ifdef ENABLE_LLVMJIT
coat::runtimellvmjit::initTarget();
coat::runtimellvmjit llvmrt;
#endif
#ifdef ENABLE_ASMJIT
{
using func_type = int (*)();
// old way
//coat::Function<coat::runtimeasmjit,func_type> fn(asmrt, "value_creation");
// using factory, preferred way
auto fn = asmrt.createFunction<func_type>("value_creation");
// calling coat::Value ctor
coat::Value<::asmjit::x86::Compiler,int> vr_val(fn, "val");
vr_val = 0;
// calling factory to get coat::Value of certain type
auto vr_val2 = fn.getValue<int>("val");
vr_val2 = 0;
// calling ctor with initial value, infers type from initial value
coat::Value vr_val3(fn, 0, "val");
// return something
coat::ret(fn, vr_val);
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
int result = fnptr();
printf("initialization test: asmjit; result: %i\n", result);
asmrt.rt.release(fnptr);
}
#endif
#ifdef ENABLE_LLVMJIT
{
using func_type = int (*)();
auto fn = llvmrt.createFunction<func_type>("value_creation");
// calling coat::Value ctor
coat::Value<coat::LLVMBuilders,int> vr_val(fn, "val");
vr_val = 0;
// calling factory to get coat::Value of certain type
auto vr_val2 = fn.getValue<int>("val");
vr_val2 = 0;
// calling ctor with initial value, infers type from initial value
coat::Value vr_val3(fn, 0, "val");
// return something
coat::ret(fn, vr_val);
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
int result = fnptr();
printf("initialization test: llvmjit; result: %i\n", result);
//FIXME: free function
}
#endif
#ifdef ENABLE_ASMJIT
{
using func_type = int (*)(const int*,size_t);
auto fn = asmrt.createFunction<func_type>("sum_foreach");
assemble_sum_foreach(fn);
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
int result = fnptr(array, cnt);
printf("result with for_each and asmjit: %i\n", result);
asmrt.rt.release(fnptr);
}
#endif
#ifdef ENABLE_LLVMJIT
{
using func_type = int (*)(const int*,size_t);
auto fn = llvmrt.createFunction<func_type>("sum_foreach");
assemble_sum_foreach(fn);
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
int result = fnptr(array, cnt);
printf("result with for_each and llvmjit: %i\n", result);
//FIXME: free function
}
#endif
#ifdef ENABLE_ASMJIT
{
using func_type = int (*)(const int*,size_t);
auto fn = asmrt.createFunction<func_type>("sum_counter");
assemble_sum_counter(fn);
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
int result = fnptr(array, cnt);
printf("result with loop_while and asmjit: %i\n", result);
asmrt.rt.release(fnptr);
}
#endif
#ifdef ENABLE_LLVMJIT
{
using func_type = int (*)(const int*,size_t);
auto fn = llvmrt.createFunction<func_type>("sum_counter");
assemble_sum_counter(fn);
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
int result = fnptr(array, cnt);
printf("result with loop_while and llvmjit: %i\n", result);
//FIXME: free function
}
#endif
#ifdef ENABLE_ASMJIT
{
using func_type = int (*)(const int*,size_t);
auto fn = asmrt.createFunction<func_type>("condsum_loop");
assemble_condsum_loop(fn);
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
int result = fnptr(array, cnt);
printf("result with loop_while and asmjit: %i\n", result);
asmrt.rt.release(fnptr);
}
#endif
#ifdef ENABLE_LLVMJIT
{
using func_type = int (*)(const int*,size_t);
auto fn = llvmrt.createFunction<func_type>("condsum_loop");
assemble_condsum_loop(fn);
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
int result = fnptr(array, cnt);
printf("result with loop_while and llvmjit: %i\n", result);
//FIXME: free function
}
#endif
triple t{23, 42, 88};
#ifdef ENABLE_ASMJIT
{
using func_type = uint32_t (*)(triple*);
auto fn = asmrt.createFunction<func_type>("getStructElement");
assemble_getStructElement(fn);
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
int result = fnptr(&t);
printf("getStructElement asmjit: %i\n", result);
asmrt.rt.release(fnptr);
}
#endif
#ifdef ENABLE_LLVMJIT
{
using func_type = uint32_t (*)(triple*);
auto fn = llvmrt.createFunction<func_type>("getStructElement");
assemble_getStructElement(fn);
fn.printIR("test-triple-dump.ll");
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
int result = fnptr(&t);
printf("getStructElement llvmjit: %i\n", result);
//FIXME: free function
}
#endif
std::vector<int> vec;
vec.reserve(cnt);
for(size_t i=0; i<cnt; ++i){
vec.push_back(array[i]);
}
#ifdef ENABLE_ASMJIT
{
using func_type = int (*)(wrapped_vector<int>*);
auto fn = asmrt.createFunction<func_type>("vectorsum");
assemble_vectorsum(fn);
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
int result = fnptr((wrapped_vector<int>*)&vec);
printf("vectorsum asmjit: %i\n", result);
asmrt.rt.release(fnptr);
}
#endif
#ifdef ENABLE_LLVMJIT
{
using func_type = int (*)(wrapped_vector<int>*);
auto fn = llvmrt.createFunction<func_type>("vectorsum");
assemble_vectorsum(fn);
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
int result = fnptr((wrapped_vector<int>*)&vec);
printf("vectorsum llvmjit: %i\n", result);
//FIXME: free function
}
#endif
// testing asmjit backend
pod_vector<int> pod_vec;
for(size_t i=0; i<cnt; ++i){
pod_vec.push_back(array[i]);
}
#ifdef ENABLE_ASMJIT
{
using func_type = size_t (*)(pod_vector<int>*);
auto fn = asmrt.createFunction<func_type>("sum_podvec");
auto args = fn.getArguments("podvec");
auto &vr_podvec = std::get<0>(args);
auto vr_size = vr_podvec.size();
coat::Value vr_sum(fn, 0, "sum");
coat::for_each(fn, vr_podvec, [&](auto &vr_ele){
vr_sum += vr_ele;
});
vr_podvec.push_back(vr_sum);
coat::ret(fn, vr_size);
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
size_t result = fnptr(&pod_vec);
printf("podvec asmjit: %lu, last element: %i\n", result, pod_vec.back());
asmrt.rt.release(fnptr);
printf("current elements: ");
for(const auto &ele : pod_vec){
printf("%i, ", ele);
}
printf("\n");
}
#endif
// testing llvm backend
pod_vec.resize(cnt);
#ifdef ENABLE_LLVMJIT
{
using func_type = size_t (*)(pod_vector<int>*);
auto fn = llvmrt.createFunction<func_type>("sum_podvec");
auto args = fn.getArguments("podvec");
auto &vr_podvec = std::get<0>(args);
auto vr_size = vr_podvec.size();
coat::Value vr_sum(fn, 0, "sum");
coat::for_each(fn, vr_podvec, [&](auto &vr_ele){
vr_sum += vr_ele;
});
vr_podvec.push_back(vr_sum);
coat::ret(fn, vr_size);
fn.printIR("test-podvec-dump.ll");
// finalize function
func_type fnptr = fn.finalize();
// execute generated function
size_t result = fnptr(&pod_vec);
printf("podvec asmjit: %lu, last element: %i\n", result, pod_vec.back());
//FIXME: free function
printf("current elements: ");
for(const auto &ele : pod_vec){
printf("%i, ", ele);
}
printf("\n");
}
#endif
delete[] array;
return 0;
}