-
Notifications
You must be signed in to change notification settings - Fork 27
/
CallGeneratorHelper.java
478 lines (432 loc) · 18.2 KB
/
CallGeneratorHelper.java
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
/*
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
/*
* ===========================================================================
* (c) Copyright IBM Corp. 2023, 2023 All Rights Reserved
* ===========================================================================
*/
import java.lang.foreign.Addressable;
import java.lang.foreign.Linker;
import java.lang.foreign.FunctionDescriptor;
import java.lang.foreign.GroupLayout;
import java.lang.foreign.MemoryAddress;
import java.lang.foreign.MemoryLayout;
import java.lang.foreign.MemorySegment;
import java.lang.foreign.MemorySession;
import java.lang.foreign.SegmentAllocator;
import java.lang.foreign.ValueLayout;
import java.lang.invoke.MethodHandle;
import java.lang.invoke.VarHandle;
import java.util.ArrayList;
import java.util.List;
import java.util.Stack;
import java.util.function.Consumer;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import java.util.stream.Stream;
import org.testng.annotations.*;
import static org.testng.Assert.*;
public class CallGeneratorHelper extends NativeTestHelper {
static final List<MemoryLayout> STACK_PREFIX_LAYOUTS = Stream.concat(
Stream.generate(() -> (MemoryLayout) C_LONG_LONG).limit(8),
Stream.generate(() -> (MemoryLayout) C_DOUBLE).limit(8)
).toList();
static SegmentAllocator THROWING_ALLOCATOR = (size, align) -> {
throw new UnsupportedOperationException();
};
static final int SAMPLE_FACTOR = Integer.parseInt((String)System.getProperties().getOrDefault("generator.sample.factor", "-1"));
static final int MAX_FIELDS = 3;
static final int MAX_PARAMS = 3;
static final int CHUNK_SIZE = 600;
public static void assertStructEquals(MemorySegment actual, MemorySegment expected, MemoryLayout layout) {
assertEquals(actual.byteSize(), expected.byteSize());
GroupLayout g = (GroupLayout) layout;
for (MemoryLayout field : g.memberLayouts()) {
if (field instanceof ValueLayout) {
VarHandle vh = g.varHandle(MemoryLayout.PathElement.groupElement(field.name().orElseThrow()));
assertEquals(vh.get(actual), vh.get(expected));
}
}
}
private static Class<?> vhCarrier(MemoryLayout layout) {
if (layout instanceof ValueLayout) {
if (isIntegral(layout)) {
if (layout.bitSize() == 64) {
return long.class;
}
return int.class;
} else if (layout.bitSize() == 32) {
return float.class;
}
return double.class;
} else {
throw new IllegalStateException("Unexpected layout: " + layout);
}
}
enum Ret {
VOID,
NON_VOID
}
enum StructFieldType {
INT("int", C_INT),
FLOAT("float", C_FLOAT),
DOUBLE("double", C_DOUBLE),
POINTER("void*", C_POINTER);
final String typeStr;
final MemoryLayout layout;
StructFieldType(String typeStr, MemoryLayout layout) {
this.typeStr = typeStr;
this.layout = layout;
}
MemoryLayout layout() {
return layout;
}
@SuppressWarnings("unchecked")
static List<List<StructFieldType>>[] perms = new List[10];
static List<List<StructFieldType>> perms(int i) {
if (perms[i] == null) {
perms[i] = generateTest(i, values());
}
return perms[i];
}
}
enum ParamType {
INT("int", C_INT),
FLOAT("float", C_FLOAT),
DOUBLE("double", C_DOUBLE),
POINTER("void*", C_POINTER),
STRUCT("struct S", null);
private final String typeStr;
private final MemoryLayout layout;
ParamType(String typeStr, MemoryLayout layout) {
this.typeStr = typeStr;
this.layout = layout;
}
String type(List<StructFieldType> fields) {
return this == STRUCT ?
typeStr + "_" + sigCode(fields) :
typeStr;
}
MemoryLayout layout(List<StructFieldType> fields) {
if (this == STRUCT) {
long offset = 0L;
List<MemoryLayout> layouts = new ArrayList<>();
long align = 0;
for (StructFieldType field : fields) {
MemoryLayout l = field.layout();
long alignment = l.bitAlignment();
long padding = alignment - (offset % alignment);
if (padding != alignment) {
layouts.add(MemoryLayout.paddingLayout(padding));
offset += padding;
}
layouts.add(l.withName("field" + offset));
align = Math.max(align, l.bitAlignment());
offset += l.bitSize();
}
if (align != 0) {
long padding = align - (offset % align);
if (padding != align) {
layouts.add(MemoryLayout.paddingLayout(padding));
}
}
return MemoryLayout.structLayout(layouts.toArray(new MemoryLayout[0]));
} else {
return layout;
}
}
@SuppressWarnings("unchecked")
static List<List<ParamType>>[] perms = new List[10];
static List<List<ParamType>> perms(int i) {
if (perms[i] == null) {
perms[i] = generateTest(i, values());
}
return perms[i];
}
}
static <Z> List<List<Z>> generateTest(int i, Z[] elems) {
List<List<Z>> res = new ArrayList<>();
generateTest(i, new Stack<>(), elems, res);
return res;
}
static <Z> void generateTest(int i, Stack<Z> combo, Z[] elems, List<List<Z>> results) {
if (i == 0) {
results.add(new ArrayList<>(combo));
} else {
for (Z z : elems) {
combo.push(z);
generateTest(i - 1, combo, elems, results);
combo.pop();
}
}
}
@DataProvider(name = "functions")
public static Object[][] functions() {
int functions = 0;
List<Object[]> downcalls = new ArrayList<>();
for (Ret r : Ret.values()) {
for (int i = 0; i <= MAX_PARAMS; i++) {
if (r != Ret.VOID && i == 0) continue;
for (List<ParamType> ptypes : ParamType.perms(i)) {
String retCode = r == Ret.VOID ? "V" : ptypes.get(0).name().charAt(0) + "";
String sigCode = sigCode(ptypes);
if (ptypes.contains(ParamType.STRUCT)) {
for (int j = 1; j <= MAX_FIELDS; j++) {
for (List<StructFieldType> fields : StructFieldType.perms(j)) {
String structCode = sigCode(fields);
int count = functions;
int fCode = functions++ / CHUNK_SIZE;
String fName = String.format("f%d_%s_%s_%s", fCode, retCode, sigCode, structCode);
if (SAMPLE_FACTOR == -1 || (count % SAMPLE_FACTOR) == 0) {
downcalls.add(new Object[]{count, fName, r, ptypes, fields});
}
}
}
} else {
String structCode = sigCode(List.<StructFieldType>of());
int count = functions;
int fCode = functions++ / CHUNK_SIZE;
String fName = String.format("f%d_%s_%s_%s", fCode, retCode, sigCode, structCode);
if (SAMPLE_FACTOR == -1 || (count % SAMPLE_FACTOR) == 0) {
downcalls.add(new Object[]{count, fName, r, ptypes, List.of()});
}
}
}
}
}
return downcalls.toArray(new Object[0][]);
}
static <Z extends Enum<Z>> String sigCode(List<Z> elems) {
return elems.stream().map(p -> p.name().charAt(0) + "").collect(Collectors.joining());
}
static void generateStructDecl(List<StructFieldType> fields) {
String structCode = sigCode(fields);
List<String> fieldDecls = new ArrayList<>();
for (int i = 0 ; i < fields.size() ; i++) {
fieldDecls.add(String.format("%s p%d;", fields.get(i).typeStr, i));
}
String res = String.format("struct S_%s { %s };", structCode,
fieldDecls.stream().collect(Collectors.joining(" ")));
System.out.println(res);
}
/* this can be used to generate the test header/implementation */
public static void main(String[] args) {
boolean header = args.length > 0 && args[0].equals("header");
boolean upcall = args.length > 1 && args[1].equals("upcall");
if (upcall) {
generateUpcalls(header);
} else {
generateDowncalls(header);
}
}
static void generateDowncalls(boolean header) {
if (header) {
System.out.println(
"#ifdef _WIN64\n" +
"#define EXPORT __declspec(dllexport)\n" +
"#else\n" +
"#define EXPORT\n" +
"#endif\n"
);
for (int j = 1; j <= MAX_FIELDS; j++) {
for (List<StructFieldType> fields : StructFieldType.perms(j)) {
generateStructDecl(fields);
}
}
} else {
System.out.println(
"#include \"libh\"\n" +
"#ifdef __clang__\n" +
"#pragma clang optimize off\n" +
"#elif defined __GNUC__\n" +
"#pragma GCC optimize (\"O0\")\n" +
"#elif defined _MSC_BUILD\n" +
"#pragma optimize( \"\", off )\n" +
"#endif\n"
);
}
for (Object[] downcall : functions()) {
String fName = (String)downcall[0];
Ret r = (Ret)downcall[1];
@SuppressWarnings("unchecked")
List<ParamType> ptypes = (List<ParamType>)downcall[2];
@SuppressWarnings("unchecked")
List<StructFieldType> fields = (List<StructFieldType>)downcall[3];
generateDowncallFunction(fName, r, ptypes, fields, header);
}
}
static void generateDowncallFunction(String fName, Ret ret, List<ParamType> params, List<StructFieldType> fields, boolean declOnly) {
String retType = ret == Ret.VOID ? "void" : params.get(0).type(fields);
List<String> paramDecls = new ArrayList<>();
for (int i = 0 ; i < params.size() ; i++) {
paramDecls.add(String.format("%s p%d", params.get(i).type(fields), i));
}
String sig = paramDecls.isEmpty() ?
"void" :
paramDecls.stream().collect(Collectors.joining(", "));
String body = ret == Ret.VOID ? "{ }" : "{ return p0; }";
String res = String.format("EXPORT %s f%s(%s) %s", retType, fName,
sig, declOnly ? ";" : body);
System.out.println(res);
}
static void generateUpcalls(boolean header) {
if (header) {
System.out.println(
"#ifdef _WIN64\n" +
"#define EXPORT __declspec(dllexport)\n" +
"#else\n" +
"#define EXPORT\n" +
"#endif\n"
);
for (int j = 1; j <= MAX_FIELDS; j++) {
for (List<StructFieldType> fields : StructFieldType.perms(j)) {
generateStructDecl(fields);
}
}
} else {
System.out.println(
"#include \"libh\"\n" +
"#ifdef __clang__\n" +
"#pragma clang optimize off\n" +
"#elif defined __GNUC__\n" +
"#pragma GCC optimize (\"O0\")\n" +
"#elif defined _MSC_BUILD\n" +
"#pragma optimize( \"\", off )\n" +
"#endif\n"
);
}
for (Object[] downcall : functions()) {
String fName = (String)downcall[0];
Ret r = (Ret)downcall[1];
@SuppressWarnings("unchecked")
List<ParamType> ptypes = (List<ParamType>)downcall[2];
@SuppressWarnings("unchecked")
List<StructFieldType> fields = (List<StructFieldType>)downcall[3];
generateUpcallFunction(fName, r, ptypes, fields, header);
}
}
static void generateUpcallFunction(String fName, Ret ret, List<ParamType> params, List<StructFieldType> fields, boolean declOnly) {
String retType = ret == Ret.VOID ? "void" : params.get(0).type(fields);
List<String> paramDecls = new ArrayList<>();
for (int i = 0 ; i < params.size() ; i++) {
paramDecls.add(String.format("%s p%d", params.get(i).type(fields), i));
}
String paramNames = IntStream.range(0, params.size())
.mapToObj(i -> "p" + i)
.collect(Collectors.joining(","));
String sig = paramDecls.isEmpty() ?
"" :
paramDecls.stream().collect(Collectors.joining(", ")) + ", ";
String body = String.format(ret == Ret.VOID ? "{ cb(%s); }" : "{ return cb(%s); }", paramNames);
List<String> paramTypes = params.stream().map(p -> p.type(fields)).collect(Collectors.toList());
String cbSig = paramTypes.isEmpty() ?
"void" :
paramTypes.stream().collect(Collectors.joining(", "));
String cbParam = String.format("%s (*cb)(%s)",
retType, cbSig);
String res = String.format("EXPORT %s %s(%s %s) %s", retType, fName,
sig, cbParam, declOnly ? ";" : body);
System.out.println(res);
}
//helper methods
@SuppressWarnings("unchecked")
static Object makeArg(MemoryLayout layout, List<Consumer<Object>> checks, boolean check) throws ReflectiveOperationException {
if (layout instanceof GroupLayout) {
MemorySegment segment = MemorySegment.allocateNative(layout, MemorySession.openImplicit());
initStruct(segment, (GroupLayout)layout, checks, check);
return segment;
} else if (isPointer(layout)) {
MemorySegment segment = MemorySegment.allocateNative(1, MemorySession.openImplicit());
if (check) {
checks.add(o -> {
try {
assertEquals(o, segment.address());
} catch (Throwable ex) {
throw new IllegalStateException(ex);
}
});
}
return segment.address();
} else if (layout instanceof ValueLayout) {
if (isIntegral(layout)) {
if (check) {
checks.add(o -> assertEquals(o, 42));
}
return 42;
} else if (layout.bitSize() == 32) {
if (check) {
checks.add(o -> assertEquals(o, 12f));
}
return 12f;
} else {
if (check) {
checks.add(o -> assertEquals(o, 24d));
}
return 24d;
}
} else {
throw new IllegalStateException("Unexpected layout: " + layout);
}
}
static void initStruct(MemorySegment str, GroupLayout g, List<Consumer<Object>> checks, boolean check) throws ReflectiveOperationException {
for (MemoryLayout l : g.memberLayouts()) {
if (l.isPadding()) continue;
VarHandle accessor = g.varHandle(MemoryLayout.PathElement.groupElement(l.name().get()));
List<Consumer<Object>> fieldsCheck = new ArrayList<>();
Object value = makeArg(l, fieldsCheck, check);
//set value
accessor.set(str, value);
//add check
if (check) {
assertTrue(fieldsCheck.size() == 1);
checks.add(o -> {
MemorySegment actual = (MemorySegment)o;
try {
fieldsCheck.get(0).accept(accessor.get(actual));
} catch (Throwable ex) {
throw new IllegalStateException(ex);
}
});
}
}
}
static Class<?> carrier(MemoryLayout layout, boolean param) {
if (layout instanceof GroupLayout) {
return MemorySegment.class;
} if (isPointer(layout)) {
return param ? Addressable.class : MemoryAddress.class;
} else if (layout instanceof ValueLayout valueLayout) {
return valueLayout.carrier();
} else {
throw new IllegalStateException("Unexpected layout: " + layout);
}
}
MethodHandle downcallHandle(Linker abi, Addressable symbol, SegmentAllocator allocator, FunctionDescriptor descriptor) {
MethodHandle mh = abi.downcallHandle(symbol, descriptor);
if (descriptor.returnLayout().isPresent() && descriptor.returnLayout().get() instanceof GroupLayout) {
mh = mh.bindTo(allocator);
}
return mh;
}
}