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
|
// slang-ir-dll-import.cpp
#include "slang-ir-dll-import.h"
#include "slang-ir.h"
#include "slang-ir-insts.h"
#include "slang-ir-marshal-native-call.h"
#include "slang-ir-layout.h"
namespace Slang
{
struct DllImportContext
{
IRModule* module;
DiagnosticSink* diagnosticSink;
TargetRequest* targetReq;
IRFunc* loadDllFunc = nullptr;
IRFunc* loadFuncPtrFunc = nullptr;
IRFunc* stringGetBufferFunc = nullptr;
IRFunc* createBuiltinIntrinsicFunc(UInt paramCount, IRType** paramTypes, IRType* resultType, UnownedStringSlice targetIntrinsic)
{
IRBuilder builder(module);
builder.setInsertInto(module->getModuleInst());
IRFunc* result = builder.createFunc();
builder.setInsertInto(result);
auto funcType = builder.getFuncType(paramCount, paramTypes, resultType);
builder.setDataType(result, funcType);
builder.addTargetIntrinsicDecoration(
result, CapabilitySet(CapabilityAtom::CPP), targetIntrinsic);
return result;
}
IRFunc* getLoadDllFunc()
{
if (!loadDllFunc)
{
IRBuilder builder(module);
builder.setInsertInto(module->getModuleInst());
IRType* stringType = builder.getStringType();
loadDllFunc = createBuiltinIntrinsicFunc(
1,
&stringType,
builder.getPtrType(builder.getVoidType()),
UnownedStringSlice("_slang_rt_load_dll($0)"));
}
return loadDllFunc;
}
IRFunc* getLoadFuncPtrFunc()
{
if (!loadFuncPtrFunc)
{
IRBuilder builder(module);
builder.setInsertInto(module->getModuleInst());
IRType* stringType = builder.getStringType();
IRType* uintType = builder.getUIntType();
IRType* paramTypes[] = {builder.getPtrType(builder.getVoidType()), stringType, uintType };
loadFuncPtrFunc = createBuiltinIntrinsicFunc(
3,
paramTypes,
builder.getPtrType(builder.getVoidType()),
UnownedStringSlice("_slang_rt_load_dll_func($0, $1, $2)"));
}
return loadFuncPtrFunc;
}
IRFunc* getStringGetBufferFunc()
{
if (!stringGetBufferFunc)
{
IRBuilder builder(module);
builder.setInsertInto(module->getModuleInst());
IRType* stringType = builder.getStringType();
IRType* paramTypes[] = {stringType};
stringGetBufferFunc = createBuiltinIntrinsicFunc(
1,
paramTypes,
builder.getPtrType(builder.getCharType()),
UnownedStringSlice("const_cast<char*>($0.getBuffer())"));
}
return stringGetBufferFunc;
}
uint32_t getStdCallArgumentSize(IRFunc* func)
{
uint32_t result = 0;
for (auto param : func->getParams())
{
IRSizeAndAlignment sizeAndAlignment;
getNaturalSizeAndAlignment(targetReq, param->getDataType(), &sizeAndAlignment);
result += (uint32_t)align(sizeAndAlignment.size, 4);
}
return result;
}
void processFunc(IRFunc* func, IRDllImportDecoration* dllImportDecoration)
{
assert(func->getFirstBlock() == nullptr);
IRBuilder builder(module);
NativeCallMarshallingContext marshalContext;
auto nativeType = marshalContext.getNativeFuncType(builder, func->getDataType());
builder.setInsertInto(module->getModuleInst());
auto funcPtr = builder.createGlobalVar(nativeType);
builder.setInsertInto(funcPtr);
builder.emitBlock();
builder.emitReturn(builder.getNullVoidPtrValue());
builder.setInsertInto(func);
auto block = builder.emitBlock();
builder.setInsertInto(block);
// Emit parameters.
auto declaredFuncType = func->getDataType();
List<IRParam*> params;
for (UInt i = 0; i < declaredFuncType->getParamCount(); ++i)
{
auto paramType = declaredFuncType->getParamType(i);
params.add(builder.emitParam((IRType*)paramType));
}
IRInst* cmpArgs[] = {builder.emitLoad(nativeType, funcPtr), builder.getNullVoidPtrValue() };
auto isUninitialized =
builder.emitIntrinsicInst(builder.getBoolType(), kIROp_Eql, 2, cmpArgs);
auto trueBlock = builder.emitBlock();
auto afterBlock = builder.emitBlock();
builder.setInsertInto(block);
builder.emitIf(isUninitialized, trueBlock, afterBlock);
builder.setInsertInto(trueBlock);
IRInst* modulePtr;
if (dllImportDecoration->getLibraryName() == "")
{
modulePtr = builder.getNullVoidPtrValue();
}
else
{
modulePtr = builder.emitCallInst(
builder.getPtrType(builder.getVoidType()),
getLoadDllFunc(),
builder.getStringValue(dllImportDecoration->getLibraryName()));
}
auto argumentSize = builder.getIntValue(builder.getUIntType(), getStdCallArgumentSize(func));
IRInst* loadDllFuncArgs[] = {
modulePtr, builder.getStringValue(dllImportDecoration->getFunctionName()), argumentSize};
auto loadedNativeFuncPtr = builder.emitCallInst(
builder.getPtrType(builder.getVoidType()), getLoadFuncPtrFunc(), 3, loadDllFuncArgs);
builder.emitStore(
funcPtr, builder.emitBitCast(nativeType, loadedNativeFuncPtr));
builder.emitBranch(afterBlock);
builder.setInsertInto(afterBlock);
marshalContext.diagnosticSink = diagnosticSink;
auto callResult = marshalContext.marshalNativeCall(
builder,
declaredFuncType,
nativeType,
builder.emitLoad(funcPtr),
params.getCount(),
(IRInst**)params.getBuffer());
builder.emitReturn(callResult);
}
void processModule()
{
for (auto childFunc : module->getGlobalInsts())
{
switch(childFunc->getOp())
{
case kIROp_Func:
if (auto dllImportDecoration = childFunc->findDecoration<IRDllImportDecoration>())
{
processFunc(as<IRFunc>(childFunc), dllImportDecoration);
}
break;
default:
break;
}
}
}
};
void generateDllImportFuncs(TargetRequest* targetReq, IRModule* module, DiagnosticSink* sink)
{
DllImportContext context;
context.module = module;
context.targetReq = targetReq;
context.diagnosticSink = sink;
return context.processModule();
}
}
|