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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
|
#include "slang-ir-lower-out-parameters.h"
#include "slang-ir-clone.h"
#include "slang-ir-inline.h"
#include "slang-ir-insts.h"
#include "slang-ir-util.h"
#include "slang-ir.h"
namespace Slang
{
static IRSemanticDecoration* findSemanticDecoration(IRInst* inst)
{
for (auto decor : inst->getDecorations())
{
if (auto semanticDecor = as<IRSemanticDecoration>(decor))
{
return semanticDecor;
}
}
return nullptr;
}
static void transferSemanticDecorations(IRInst* source, IRInst* target, IRBuilder& builder)
{
for (auto decor : source->getDecorations())
{
if (auto semanticDecor = as<IRSemanticDecoration>(decor))
{
builder.addSemanticDecoration(
target,
semanticDecor->getSemanticName(),
semanticDecor->getSemanticIndex());
}
}
}
// Find the entry point layout information from a function
static bool findEntryPointLayoutInfo(
IRFunc* func,
IREntryPointLayout*& outEntryPointLayout,
IRVarLayout*& outParamsLayout,
IRVarLayout*& outResultLayout)
{
for (auto decor : func->getDecorations())
{
if (auto layoutDecor = as<IRLayoutDecoration>(decor))
{
if (auto entryLayout = as<IREntryPointLayout>(layoutDecor->getLayout()))
{
outEntryPointLayout = entryLayout;
if (entryLayout->getOperandCount() >= 2)
{
outParamsLayout = as<IRVarLayout>(entryLayout->getOperand(0));
outResultLayout = as<IRVarLayout>(entryLayout->getOperand(1));
return true;
}
}
}
}
return false;
}
static bool findReturnValueSemanticInfo(
IRFunc* func,
UnownedStringSlice& outSemanticName,
IRIntegerValue& outSemanticIndex)
{
// Check for semantic on function itself
if (auto semanticDecor = findSemanticDecoration(func))
{
outSemanticName = semanticDecor->getSemanticName();
outSemanticIndex = semanticDecor->getSemanticIndex();
return true;
}
// Check for semantic in entry point layout
IREntryPointLayout* entryLayout = nullptr;
IRVarLayout* paramsLayout = nullptr;
IRVarLayout* resultLayout = nullptr;
if (findEntryPointLayoutInfo(func, entryLayout, paramsLayout, resultLayout))
{
for (UInt i = 0; i < resultLayout->getOperandCount(); i++)
{
auto operand = resultLayout->getOperand(i);
if (auto semanticAttr = as<IRSystemValueSemanticAttr>(operand))
{
outSemanticName = semanticAttr->getName();
outSemanticIndex = semanticAttr->getIndex();
return true;
}
}
}
return false;
}
// Structure to hold parameter information
struct ParamInfo
{
IRParam* origParam; // Original parameter
IRType* valueType; // Parameter value type (without out/inout wrapper)
bool isOut; // Is an out parameter
bool isInOut; // Is an inout parameter
IRParam* newParam; // New param once created, pure out params will always be null here
IRVar* outVar; // Out variable (nullptr for non-out params)
IRStructKey* outFieldKey; // Field key (for out params)
};
// Analyze parameters and collect information
List<ParamInfo> collectParameterInfo(
IRFunc* func,
IRBuilder& builder,
List<IRStructKey*>& outKeys,
Dictionary<IRParam*, IRStructKey*>& paramToKeyMap)
{
List<ParamInfo> paramInfos;
for (auto param = func->getFirstParam(); param; param = param->getNextParam())
{
ParamInfo info;
info.origParam = param;
info.newParam = nullptr;
info.outVar = nullptr;
info.outFieldKey = nullptr;
if (auto outType = as<IROutTypeBase>(param->getDataType()))
{
// Handle out/inout parameter
info.valueType = outType->getValueType();
info.isOut = true;
info.isInOut = (outType->getOp() == kIROp_InOutType);
// Create field key for out parameter
String fieldName = "param";
if (auto nameHint = param->findDecoration<IRNameHintDecoration>())
fieldName = String(nameHint->getName());
auto fieldKey = builder.createStructKey();
builder.addNameHintDecoration(fieldKey, UnownedStringSlice(fieldName.getBuffer()));
// Transfer semantic decorations
transferSemanticDecorations(param, fieldKey, builder);
// Store field key for layout
info.outFieldKey = fieldKey;
outKeys.add(fieldKey);
paramToKeyMap[param] = fieldKey;
}
else
{
// Regular parameter
info.valueType = param->getDataType();
info.isOut = false;
info.isInOut = false;
}
paramInfos.add(info);
}
return paramInfos;
}
// Create a result key for non-void return types
static IRStructKey* createResultKey(IRFunc* func, IRBuilder& builder, List<IRStructKey*>& outKeys)
{
if (as<IRVoidType>(func->getResultType()))
return nullptr;
IRStructKey* resultKey = builder.createStructKey();
builder.addNameHintDecoration(resultKey, UnownedStringSlice("result"));
// Transfer semantic decoration from function return value to struct key
UnownedStringSlice semanticName;
IRIntegerValue semanticIndex = 0;
if (findReturnValueSemanticInfo(func, semanticName, semanticIndex))
{
builder.addSemanticDecoration(resultKey, semanticName, semanticIndex);
}
outKeys.add(resultKey);
return resultKey;
}
// Determine if we need to transform the function
static bool needsTransformation(const List<ParamInfo>& paramInfos, bool alwaysUseReturnStruct)
{
if (alwaysUseReturnStruct)
return true;
for (auto& info : paramInfos)
{
if (info.isOut && !info.isInOut)
return true;
}
return false;
}
// Create the return type for the new function
static IRType* createReturnType(
IRFunc* func,
IRBuilder& builder,
IRStructKey* resultKey,
const List<IRStructKey*>& outKeys,
const List<ParamInfo>& paramInfos,
bool alwaysUseReturnStruct,
IRStructType*& returnStruct)
{
// Determine if we need a struct return type
bool needsStructReturn = alwaysUseReturnStruct ||
(resultKey != nullptr && outKeys.getCount()) || outKeys.getCount() > 1;
if (needsStructReturn)
{
returnStruct = builder.createStructType();
// Create name for struct
StringBuilder nameBuilder;
if (auto nameHint = func->findDecoration<IRNameHintDecoration>())
nameBuilder << nameHint->getName() << "_Result";
else
nameBuilder << "Function_Result";
builder.addNameHintDecoration(
returnStruct,
UnownedStringSlice(nameBuilder.toString().getBuffer()));
// Create fields for the struct
if (resultKey)
{
builder.createStructField(returnStruct, resultKey, func->getResultType());
}
for (auto& info : paramInfos)
{
if (info.isOut && info.outFieldKey)
{
builder.createStructField(returnStruct, info.outFieldKey, info.valueType);
}
}
return returnStruct;
}
else if (outKeys.getCount())
{
// Find the first out parameter's type
for (auto& info : paramInfos)
{
if (info.isOut)
{
return info.valueType;
}
}
}
// Default case
return builder.getVoidType();
}
// Create parameters for the new function
static void createNewParameters(
IRBuilder& builder,
List<ParamInfo>& paramInfos,
IRCloneEnv& cloneEnv,
Dictionary<IRParam*, IRParam*>& origToNewParamMap)
{
for (auto& info : paramInfos)
{
if (!info.isOut || info.isInOut)
{
// Create parameter
auto newParam = builder.emitParam(info.valueType);
// Copy ALL decorations including layout
for (auto decor : info.origParam->getDecorations())
{
cloneDecoration(&cloneEnv, decor, newParam, builder.getModule());
}
info.newParam = newParam;
origToNewParamMap[info.origParam] = newParam;
}
if (info.isOut)
{
// Create out variable
auto var = builder.emitVar(info.valueType);
info.outVar = var;
// Initialize inout variables from parameters
if (info.isInOut && info.newParam)
{
builder.emitStore(var, info.newParam);
}
}
}
}
// Build the call to the original function
static IRCall* buildOriginalFunctionCall(
IRFunc* func,
IRBuilder& builder,
const List<ParamInfo>& paramInfos)
{
List<IRInst*> args;
for (auto& info : paramInfos)
{
if (info.isOut)
{
args.add(info.outVar);
}
else
{
args.add(info.newParam);
}
}
// Call the original function
return builder.emitCallInst(func->getResultType(), func, args);
}
// Construct the return value for the new function
static IRInst* constructReturnValue(
IRBuilder& builder,
IRCall* callResult,
IRStructKey* resultKey,
IRStructType* returnStruct,
const List<IRStructKey*>& outKeys,
const List<ParamInfo>& paramInfos)
{
if (returnStruct)
{
// Collect field values in order
List<IRInst*> fieldValues;
// Add original return value if non-void
if (resultKey)
{
fieldValues.add(callResult);
}
// Add out parameter values
for (auto& info : paramInfos)
{
if (info.isOut && info.outVar)
{
fieldValues.add(builder.emitLoad(info.outVar));
}
}
// Create struct with all field values
return builder.emitMakeStruct(returnStruct, fieldValues);
}
else if (outKeys.getCount())
{
// Single return value
if (resultKey)
{
return callResult;
}
else
{
// Get the out var from the first out parameter
for (auto& info : paramInfos)
{
if (info.isOut && info.outVar)
{
return builder.emitLoad(info.outVar);
}
}
}
}
return nullptr;
}
// Transfer decorations from original to new function
static void transferFunctionDecorations(
IRFunc* func,
IRFunc* newFunc,
IRBuilder& builder,
IRCloneEnv& cloneEnv)
{
// Copy all decorations including layout - we'll keep the original layout
for (auto decor : func->getDecorations())
{
cloneDecoration(&cloneEnv, decor, newFunc, builder.getModule());
}
}
// Handle cleanup of original function if needed
static void handleOriginalFunction(IRFunc* func, IRCall* callResult)
{
// Count uses of original function
UInt useCount = 0;
for (auto use = func->firstUse; use; use = use->nextUse)
useCount++;
if (useCount == 1)
{
inlineCall(callResult);
// Remove decorations from old function
List<IRDecoration*> decorationsToRemove;
for (auto decor : func->getDecorations())
{
if (as<IRKeepAliveDecoration>(decor) || as<IREntryPointDecoration>(decor))
{
decorationsToRemove.add(decor);
}
}
for (auto decor : decorationsToRemove)
{
decor->removeFromParent();
}
func->removeAndDeallocate();
}
}
// Main function that orchestrates the transformation
IRFunc* lowerOutParameters(
IRFunc* func,
[[maybe_unused]] DiagnosticSink* sink,
bool alwaysUseReturnStruct)
{
IRBuilder builder(func->getModule());
IRCloneEnv cloneEnv;
// Data structures for tracking parameter information
List<IRStructKey*> outKeys;
Dictionary<IRParam*, IRStructKey*> paramToKeyMap;
Dictionary<IRParam*, IRParam*> origToNewParamMap;
// Create result key for non-void return types
IRStructKey* resultKey = createResultKey(func, builder, outKeys);
// Collect parameter information
List<ParamInfo> paramInfos = collectParameterInfo(func, builder, outKeys, paramToKeyMap);
// Check if transformation is needed
if (!needsTransformation(paramInfos, alwaysUseReturnStruct))
return func;
// Create new function
auto newFunc = builder.createFunc();
// Transfer decorations to new function
transferFunctionDecorations(func, newFunc, builder, cloneEnv);
// Create return type
IRStructType* returnStruct = nullptr;
IRType* resultType = createReturnType(
func,
builder,
resultKey,
outKeys,
paramInfos,
alwaysUseReturnStruct,
returnStruct);
// Collect parameter types for new function
List<IRType*> newParamTypes;
for (auto& info : paramInfos)
{
if (!info.isOut || info.isInOut)
{
newParamTypes.add(info.valueType);
}
}
// Set function type
auto funcType = builder.getFuncType(newParamTypes, resultType);
newFunc->setFullType(funcType);
// Create function body
auto firstBlock = builder.createBlock();
newFunc->addBlock(firstBlock);
builder.setInsertInto(firstBlock);
// Create parameters and variables
createNewParameters(builder, paramInfos, cloneEnv, origToNewParamMap);
// Build call to original function
IRCall* callResult = buildOriginalFunctionCall(func, builder, paramInfos);
// Construct return value
IRInst* returnValue =
constructReturnValue(builder, callResult, resultKey, returnStruct, outKeys, paramInfos);
builder.emitReturn(returnValue);
// Handle cleanup of original function
handleOriginalFunction(func, callResult);
return newFunc;
}
} // namespace Slang
|