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
|
#include "slang-ir-specialize-address-space.h"
#include "slang-ir.h"
#include "slang-ir-insts.h"
#include "slang-ir-util.h"
#include "slang-ir-clone.h"
namespace Slang
{
struct AddressSpaceContext : public AddressSpaceSpecializationContext
{
IRModule* module;
Dictionary<IRInst*, AddressSpace> mapInstToAddrSpace;
InitialAddressSpaceAssigner* addrSpaceAssigner;
AddressSpaceContext(IRModule* inModule, InitialAddressSpaceAssigner* inAddrSpaceAssigner)
: module(inModule)
, addrSpaceAssigner(inAddrSpaceAssigner)
{
}
AddressSpace getAddressSpaceFromVarType(IRInst* type)
{
return addrSpaceAssigner->getAddressSpaceFromVarType(type);
}
AddressSpace getLeafInstAddressSpace(IRInst* inst)
{
return addrSpaceAssigner->getLeafInstAddressSpace(inst);
}
AddressSpace getAddrSpace(IRInst* inst) override
{
auto addrSpace = mapInstToAddrSpace.tryGetValue(inst);
if (addrSpace)
return *addrSpace;
return AddressSpace::Generic;
}
List<IRFunc*> workList;
struct FuncSpecializationKey
{
private:
IRFunc* func;
List<AddressSpace> argAddrSpaces;
HashCode hashCode;
public:
IRFunc* getFunc() const { return func; }
ArrayView<AddressSpace> getArgAddrSpaces() const { return argAddrSpaces.getArrayView(); }
FuncSpecializationKey() = default;
FuncSpecializationKey(IRFunc* func, List<AddressSpace> argAddrSpaces)
: func(func)
, argAddrSpaces(argAddrSpaces)
{
Hasher hasher;
hasher.addHash(Slang::getHashCode(func));
for (auto addrSpace : argAddrSpaces)
{
hasher.addHash((HashCode)addrSpace);
}
hashCode = hasher.getResult();
}
bool operator==(const FuncSpecializationKey& key) const
{
if (func != key.func)
return false;
if (argAddrSpaces.getCount() != key.argAddrSpaces.getCount())
return false;
for (Index i = 0; i < argAddrSpaces.getCount(); i++)
{
if (argAddrSpaces[i] != key.argAddrSpaces[i])
return false;
}
return true;
}
HashCode getHashCode() const
{
return hashCode;
}
};
Dictionary<FuncSpecializationKey, IRFunc*> functionSpecializations;
IRFunc* specializeFunc(const FuncSpecializationKey& key)
{
auto func = key.getFunc();
IRCloneEnv cloneEnv;
IRBuilder builder(module);
// First, clone the function body.
builder.setInsertBefore(func);
auto specializedFunc = as<IRFunc>(cloneInst(&cloneEnv, &builder, func));
// Update the parameter types with new address spaces in the specialized function.
Index paramIndex = 0;
for (auto param : specializedFunc->getParams())
{
auto paramType = param->getFullType();
auto ptrType = as<IRPtrTypeBase>(paramType);
if (ptrType)
{
auto paramAddrSpace = key.getArgAddrSpaces()[paramIndex];
auto newParamType = builder.getPtrType(ptrType->getOp(), ptrType->getValueType(), paramAddrSpace);
param->setFullType(newParamType);
mapInstToAddrSpace[param] = paramAddrSpace;
}
paramIndex++;
}
// Update the function type.
fixUpFuncType(specializedFunc);
functionSpecializations[key] = specializedFunc;
return specializedFunc;
}
AddressSpace getFuncResultAddrSpace(IRFunc* callee)
{
auto funcType = as<IRFuncType>(callee->getDataType());
return getAddressSpaceFromVarType(funcType->getResultType());
}
// Return true if the address space of the function return type is changed.
bool processFunction(IRFunc* func)
{
bool retValAddrSpaceChanged = false;
Dictionary<IRInst*, AddressSpace> mapVarValueToAddrSpace;
bool changed = true;
while (changed)
{
changed = false;
for (auto block : func->getBlocks())
{
bool isFirstBlock = block == func->getFirstBlock();
for (auto inst : block->getChildren())
{
// If we have already assigned an address space to this instruction, then skip it.
if (mapInstToAddrSpace.containsKey(inst))
{
// TODO: if the inst is a phi node, we need to check if the address space of the phi arguments
// is consistent. If not, then we need to report an error.
// For now, we just skip the checks.
continue;
}
// If the inst already has a pointer type with explicit address space, then use it.
if (auto ptrType = as<IRPtrTypeBase>(inst->getDataType()))
{
if (ptrType->hasAddressSpace())
{
mapInstToAddrSpace[inst] = (AddressSpace)ptrType->getAddressSpace();
continue;
}
}
// Otherwise, try to assign an address space based on the instruction type.
switch (inst->getOp())
{
case kIROp_Var:
case kIROp_RWStructuredBufferGetElementPtr:
{
// The address space of these insts should be assigned by the initial address space assigner.
AddressSpace addrSpace = AddressSpace::Generic;
if (addrSpaceAssigner->tryAssignAddressSpace(inst, addrSpace))
{
mapInstToAddrSpace[inst] = addrSpace;
changed = true;
}
break;
}
case kIROp_GetElementPtr:
case kIROp_FieldAddress:
if (!mapInstToAddrSpace.containsKey(inst))
{
auto addrSpace = getAddrSpace(inst->getOperand(0));
if (addrSpace != AddressSpace::Generic)
{
mapInstToAddrSpace[inst] = addrSpace;
changed = true;
}
}
break;
case kIROp_Store:
{
auto addrSpace = getAddrSpace(inst->getOperand(1));
if (addrSpace != AddressSpace::Generic)
{
mapVarValueToAddrSpace[inst->getOperand(0)] = addrSpace;
mapInstToAddrSpace[inst] = addrSpace;
changed = true;
}
}
break;
case kIROp_Load:
{
if (auto addrSpace = mapVarValueToAddrSpace.tryGetValue(inst->getOperand(0)))
{
mapInstToAddrSpace[inst] = *addrSpace;
changed = true;
}
}
break;
case kIROp_Param:
if (!isFirstBlock)
{
auto phiArgs = getPhiArgs(inst);
AddressSpace addrSpace = AddressSpace::Generic;
for (auto arg : phiArgs)
{
auto argAddrSpace = getAddrSpace(arg);
if (argAddrSpace != AddressSpace::Generic)
{
if (addrSpace != AddressSpace::Generic && addrSpace != argAddrSpace)
{
// TODO: this is an error in user code, because the address spaces of the
// phi arguments don't match.
}
addrSpace = argAddrSpace;
}
}
if (addrSpace != AddressSpace::Generic)
{
mapInstToAddrSpace[inst] = addrSpace;
changed = true;
}
break;
}
break;
case kIROp_Call:
{
auto callInst = as<IRCall>(inst);
auto callee = as<IRFunc>(inst->getOperand(0));
if (callee)
{
List<AddressSpace> argAddrSpaces;
bool fullySpecialized = true;
for (UInt i = 0; i < callInst->getArgCount(); i++)
{
auto arg = callInst->getArg(i);
auto argAddrSpace = getAddrSpace(arg);
argAddrSpaces.add(getAddrSpace(arg));
if (argAddrSpace == AddressSpace::Generic &&
as<IRPtrTypeBase>(arg->getDataType()))
{
fullySpecialized = false;
break;
}
}
if (!fullySpecialized)
break;
FuncSpecializationKey key(callee, argAddrSpaces);
IRFunc* specializedCallee = nullptr;
if (IRFunc** specializedFunc = functionSpecializations.tryGetValue(key))
{
specializedCallee = *specializedFunc;
}
else
{
specializedCallee = specializeFunc(key);
workList.add(specializedCallee);
}
IRBuilder builder(callInst);
builder.setInsertBefore(callInst);
if (specializedCallee != callInst->getCallee())
{
callInst = as<IRCall>(builder.replaceOperand(callInst->getOperands(), specializedCallee));
}
auto callResultAddrSpace = getFuncResultAddrSpace(specializedCallee);
if (callResultAddrSpace != AddressSpace::Generic)
{
mapInstToAddrSpace[callInst] = callResultAddrSpace;
changed = true;
}
}
}
break;
case kIROp_Return:
{
auto retVal = inst->getOperand(0);
auto addrSpace = getAddrSpace(retVal);
if (addrSpace != AddressSpace::Generic)
{
auto funcType = as<IRFuncType>(func->getDataType());
AddressSpace resultAddrSpace = getFuncResultAddrSpace(func);
if (resultAddrSpace != addrSpace)
{
auto ptrResultType = as<IRPtrTypeBase>(funcType->getResultType());
SLANG_ASSERT(ptrResultType);
IRBuilder builder(func);
auto newResultType = builder.getPtrType(ptrResultType->getOp(), ptrResultType->getValueType(), addrSpace);
fixUpFuncType(func, newResultType);
retValAddrSpaceChanged = true;
}
}
}
break;
}
}
}
}
return retValAddrSpaceChanged;
}
static void setDataType(IRInst* inst, IRType* dataType)
{
auto rate = inst->getRate();
if (!rate)
{
inst->setFullType(dataType);
return;
}
IRBuilder builder(inst);
builder.setInsertBefore(inst);
auto newType = builder.getRateQualifiedType(rate, dataType);
inst->setFullType(newType);
}
void applyAddressSpaceToInstType()
{
for (auto [inst, addrSpace] : mapInstToAddrSpace)
{
auto ptrType = as<IRPtrTypeBase>(inst->getDataType());
if (ptrType)
{
IRBuilder builder(inst);
auto newType = builder.getPtrType(ptrType->getOp(), ptrType->getValueType(), addrSpace);
setDataType(inst, newType);
}
}
}
void processModule()
{
for (auto globalInst : module->getGlobalInsts())
{
auto addrSpace = getLeafInstAddressSpace(globalInst);
if (addrSpace != AddressSpace::Generic)
{
mapInstToAddrSpace[globalInst] = addrSpace;
}
if (auto func = as<IRFunc>(globalInst))
{
if (func->findDecoration<IREntryPointDecoration>())
workList.add(func);
}
}
HashSet<IRFunc*> newWorkList;
while (workList.getCount())
{
for (Index i = 0; i < workList.getCount(); i++)
{
auto func = workList[i];
bool resultTypeChanged = processFunction(func);
if (resultTypeChanged)
{
for (auto use = func->firstUse; use; use = use->nextUse)
{
if (auto callInst = as<IRCall>(use->getUser()))
{
newWorkList.add(getParentFunc(callInst));
}
}
}
}
workList.clear();
for (auto f : newWorkList)
workList.add(f);
}
applyAddressSpaceToInstType();
}
};
void specializeAddressSpace(IRModule* module, InitialAddressSpaceAssigner* addrSpaceAssigner)
{
AddressSpaceContext context(module, addrSpaceAssigner);
context.processModule();
}
}
|