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
|
// slang-ir-lower-generics.cpp
#include "slang-ir-lower-generics.h"
#include "slang-ir.h"
#include "slang-ir-clone.h"
#include "slang-ir-insts.h"
namespace Slang
{
struct GenericsLoweringContext;
struct GenericsLoweringContext
{
// For convenience, we will keep a pointer to the module
// we are processing.
IRModule* module;
Dictionary<IRInst*, IRInst*> loweredGenericFunctions;
SharedIRBuilder sharedBuilderStorage;
// We will use a single work list of instructions that need
// to be considered for lowering.
//
List<IRInst*> workList;
HashSet<IRInst*> workListSet;
void addToWorkList(
IRInst* inst)
{
// We will ignore any code that is nested under a generic,
// because they will be recursively processed through specialized
// call sites.
//
for (auto ii = inst->getParent(); ii; ii = ii->getParent())
{
if (as<IRGeneric>(ii))
return;
}
if (workListSet.Contains(inst))
return;
workList.add(inst);
workListSet.Add(inst);
}
IRInst* lowerGenericFunction(IRInst* genericValue)
{
IRInst* result = nullptr;
if (loweredGenericFunctions.TryGetValue(genericValue, result))
return result;
auto genericParent = as<IRGeneric>(genericValue);
SLANG_ASSERT(genericParent);
auto func = as<IRFunc>(findGenericReturnVal(genericParent));
SLANG_ASSERT(func);
if (!func->isDefinition())
{
loweredGenericFunctions[genericValue] = genericValue;
return genericValue;
}
IRCloneEnv cloneEnv;
IRBuilder builder;
builder.sharedBuilder = &sharedBuilderStorage;
builder.setInsertBefore(genericParent);
auto loweredFunc = cloneInstAndOperands(&cloneEnv, &builder, func);
List<IRInst*> clonedParams;
for (auto genericParam : genericParent->getParams())
{
auto clonedParam = cloneInst(&cloneEnv, &builder, genericParam);
cloneEnv.mapOldValToNew[genericParam] = clonedParam;
clonedParams.add(clonedParam);
}
cloneInstDecorationsAndChildren(&cloneEnv, &sharedBuilderStorage, func, loweredFunc);
auto block = as<IRBlock>(loweredFunc->getFirstChild());
for (auto param : clonedParams)
{
param->removeFromParent();
block->addParam(as<IRParam>(param));
}
loweredGenericFunctions[genericValue] = loweredFunc;
addToWorkList(loweredFunc);
return loweredFunc;
}
void processInst(IRInst* inst)
{
if (auto callInst = as<IRCall>(inst))
{
// If we see a call(specialize(gFunc, Targs), args),
// translate it into call(gFunc, args, Targs).
auto funcOperand = callInst->getOperand(0);
if (auto specializeInst = as<IRSpecialize>(funcOperand))
{
auto loweredFunc = lowerGenericFunction(specializeInst->getOperand(0));
if (loweredFunc == specializeInst->getOperand(0))
{
// This is an intrinsic function, don't transform.
return;
}
IRBuilder builderStorage;
auto builder = &builderStorage;
builder->sharedBuilder = &sharedBuilderStorage;
builder->setInsertBefore(inst);
List<IRInst*> args;
for (UInt i = 0; i < callInst->getArgCount(); i++)
args.add(callInst->getArg(i));
for (UInt i = 0; i < specializeInst->getArgCount(); i++)
args.add(specializeInst->getArg(i));
auto newCall = builder->emitCallInst(callInst->getFullType(), loweredFunc, args);
callInst->replaceUsesWith(newCall);
callInst->removeAndDeallocate();
}
}
}
void processModule()
{
// We start by initializing our shared IR building state,
// since we will re-use that state for any code we
// generate along the way.
//
SharedIRBuilder* sharedBuilder = &sharedBuilderStorage;
sharedBuilder->module = module;
sharedBuilder->session = module->session;
addToWorkList(module->getModuleInst());
while (workList.getCount() != 0)
{
// We will then iterate until our work list goes dry.
//
while (workList.getCount() != 0)
{
IRInst* inst = workList.getLast();
workList.removeLast();
workListSet.Remove(inst);
processInst(inst);
for (auto child = inst->getLastChild(); child; child = child->getPrevInst())
{
addToWorkList(child);
}
}
}
}
};
void lowerGenerics(
IRModule* module)
{
GenericsLoweringContext context;
context.module = module;
context.processModule();
}
} // namespace Slang
|