@@ -139,13 +139,6 @@ static bool isDifferentiableFunc(IRInst* func)
139
139
return false ;
140
140
}
141
141
142
- static IRInst* resolveSpecialization (IRSpecialize* spec)
143
- {
144
- IRInst* base = spec->getBase ();
145
- IRGeneric* generic = as<IRGeneric>(base);
146
- return findInnerMostGenericReturnVal (generic);
147
- }
148
-
149
142
// The `upper` field contains the struct that the type is
150
143
// is contained in. It is used to check for empty structs.
151
144
static bool canIgnoreType (IRType* type, IRType* upper)
@@ -174,6 +167,10 @@ static bool canIgnoreType(IRType* type, IRType* upper)
174
167
if (as<IRInterfaceType>(type))
175
168
return true ;
176
169
170
+ // We don't know what type it will be yet.
171
+ if (as<IRParam>(type))
172
+ return true ;
173
+
177
174
// For pointers, check the value type (primarily for globals)
178
175
if (auto ptr = as<IRPtrType>(type))
179
176
{
@@ -188,7 +185,7 @@ static bool canIgnoreType(IRType* type, IRType* upper)
188
185
// In the case of specializations, check returned type
189
186
if (auto spec = as<IRSpecialize>(type))
190
187
{
191
- IRInst* inner = resolveSpecialization (spec);
188
+ IRInst* inner = getResolvedInstForDecorations (spec);
192
189
IRType* innerType = as<IRType>(inner);
193
190
return canIgnoreType (innerType, upper);
194
191
}
@@ -231,7 +228,7 @@ static InstructionUsageType getCallUsageType(IRCall* call, IRInst* inst)
231
228
IRFunc* ftn = nullptr ;
232
229
IRFuncType* ftype = nullptr ;
233
230
if (auto spec = as<IRSpecialize>(callee))
234
- ftn = as<IRFunc>(resolveSpecialization (spec));
231
+ ftn = as<IRFunc>(getResolvedInstForDecorations (spec));
235
232
236
233
// Differentiable functions are mostly ignored, treated as having inout parameters
237
234
else if (as<IRForwardDifferentiate>(callee))
0 commit comments