summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-ir-uniformity.cpp
blob: 64c916a4f0d441b5e3ce4746e1e729334c86a892 (plain)
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-uniformity.h"

#include "slang-ir-dominators.h"
#include "slang-ir-insts.h"
#include "slang-ir-util.h"
#include "slang-ir.h"

namespace Slang
{
struct ValidateUniformityContext
{
    IRModule* module;
    DiagnosticSink* sink;

    HashSet<IRInst*> nonUniformInsts;
    ValidateUniformityContext* parentContext = nullptr;
    IRCall* call = nullptr;
    IRFunc* currentCallee = nullptr;

    bool isInstNonUniform(IRInst* inst)
    {
        auto context = this;
        while (context)
        {
            if (context->nonUniformInsts.contains(inst))
                return true;
            context = context->parentContext;
        }
        return false;
    }

    struct FunctionNonUniformInfoKey
    {
        IRFunc* func;
        UIntSet nonUniformParams;

        bool operator==(const FunctionNonUniformInfoKey& other) const
        {
            return func == other.func && nonUniformParams == other.nonUniformParams;
        }
        HashCode getHashCode() const
        {
            return combineHash(Slang::getHashCode(func), nonUniformParams.getHashCode());
        }
    };

    struct FunctionNonUniformInfo
    {
        UIntSet nonUniformParams;
        bool isResultNonUniform = false;
    };

    Dictionary<FunctionNonUniformInfoKey, FunctionNonUniformInfo> functionNonUniformInfos;

    template<typename F>
    void traverseControlDependentBlocks(IRDominatorTree* dom, IRInst* inst, const F& f)
    {
        auto block = as<IRBlock>(inst->getParent());
        if (!block)
            return;
        for (auto idom = dom->getImmediateDominator(block); idom;
             idom = dom->getImmediateDominator(idom))
        {
            if (as<IRUnconditionalBranch>(idom->getTerminator()))
                continue;
            if (auto ifelse = as<IRIfElse>(idom->getTerminator()))
            {
                if (dom->dominates(ifelse->getAfterBlock(), block))
                    continue;
            }
            else if (auto switchInst = as<IRSwitch>(idom->getTerminator()))
            {
                if (dom->dominates(switchInst->getBreakLabel(), block))
                    continue;
            }
            else if (auto loopInst = as<IRLoop>(idom->getTerminator()))
            {
                if (dom->dominates(loopInst->getBreakBlock(), block))
                    continue;
            }
            f(idom);
        }
    }

    FunctionNonUniformInfo* getFunctionNonUniformInfo(
        IRCall* callInst,
        const FunctionNonUniformInfoKey& key)
    {
        if (auto rs = functionNonUniformInfos.tryGetValue(key))
            return rs;

        // Is the function already being analyzed? If so exit early to avoid infinite recursion.
        for (auto context = this; context; context = context->parentContext)
        {
            if (context->currentCallee == key.func)
                return nullptr;
        }

        // If the function body has target intrinsic, we can't analyze it, and we
        // will use the fallback behavior (result is non-uniform if any of its arguments are
        // non-uniform).
        for (auto block : key.func->getBlocks())
        {
            if (as<IRGenericAsm>(block->getTerminator()))
            {
                return nullptr;
            }
        }

        ValidateUniformityContext subContext;
        subContext.module = module;
        subContext.sink = sink;
        subContext.parentContext = this;

        List<IRInst*> workList;
        Index paramIndex = 0;
        for (auto param : key.func->getParams())
        {
            if (key.nonUniformParams.contains(UInt(paramIndex)))
            {
                subContext.nonUniformInsts.add(param);
                workList.add(param);
            }
            paramIndex++;
        }
        subContext.call = callInst;
        subContext.currentCallee = key.func;
        subContext.propagateNonUniform(key.func, workList);

        FunctionNonUniformInfo info;
        info.nonUniformParams = key.nonUniformParams;
        paramIndex = 0;
        for (auto param : key.func->getParams())
        {
            if (subContext.nonUniformInsts.contains(param))
            {
                info.nonUniformParams.add(paramIndex);
            }
            paramIndex++;
        }

        // If the function has [NonUniformReturn] attribute,
        // treat its return value as non uniform.
        if (key.func->findDecorationImpl(kIROp_NonDynamicUniformReturnDecoration))
        {
            info.isResultNonUniform = true;
        }
        else
        {
            // The return value is non-uniform if the any values used in IRReturn is
            // non-uniform, or if the return insts are control-dependent on non-uniform
            // values.
            for (auto bb : key.func->getBlocks())
            {
                if (auto ret = as<IRReturn>(bb->getTerminator()))
                {
                    if (subContext.isInstNonUniform(ret->getVal()) ||
                        subContext.isInstNonUniform(ret))
                    {
                        info.isResultNonUniform = true;
                        break;
                    }
                }
            }
        }
        functionNonUniformInfos[key] = info;
        return functionNonUniformInfos.tryGetValue(key);
    }

    bool isDynamicUniformLocation(IRInst* addr)
    {
        while (addr)
        {
            switch (addr->getOp())
            {
            case kIROp_FieldAddress:
                if (as<IRFieldAddress>(addr)
                        ->getField()
                        ->findDecoration<IRDynamicUniformDecoration>())
                    return true;
                addr = as<IRFieldAddress>(addr)->getBase();
                break;
            case kIROp_GetElementPtr:
                addr = as<IRGetElementPtr>(addr)->getBase();
                break;
            case kIROp_GetOffsetPtr:
                addr = addr->getOperand(0);
                break;
            case kIROp_Param:
            case kIROp_Var:
                return addr->findDecoration<IRDynamicUniformDecoration>() != nullptr;
            default:
                addr = nullptr;
            }
        }
        return false;
    }

    void propagateNonUniform(IRFunc* root, List<IRInst*>& workList)
    {
        InstWorkList nextWorkList(module);
        InstHashSet workListSet(module);

        auto addToWorkList = [&](IRInst* inst)
        {
            if (workListSet.add(inst))
            {
                nonUniformInsts.add(inst);
                nextWorkList.add(inst);
            }
        };

        // Go through the children first to identify initial non-uniform insts.
        for (auto block : root->getBlocks())
        {
            for (auto inst = block->getFirstInst(); inst; inst = inst->getNextInst())
            {
                switch (inst->getOp())
                {
                case kIROp_Call:
                    {
                        auto callInst = as<IRCall>(inst);
                        auto callee = getResolvedInstForDecorations(callInst->getCallee());
                        if (callee->findDecorationImpl(kIROp_NonDynamicUniformReturnDecoration))
                        {
                            addToWorkList(inst);
                        }
                        break;
                    }
                }
            }
        }

        auto dom = module->findOrCreateDominatorTree(root);

        auto visitControlDependentBlock = [&](IRBlock* dependentBlock)
        {
            if (!dependentBlock)
                return;
            for (auto block : dom->getProperlyDominatedBlocks(dependentBlock))
            {
                for (auto inst = block->getFirstInst(); inst; inst = inst->getNextInst())
                {
                    switch (inst->getOp())
                    {
                    case kIROp_Store:
                    case kIROp_SwizzledStore:
                        addToWorkList(inst->getOperand(0));
                        break;
                    case kIROp_Return:
                        addToWorkList(inst);
                        break;
                    case kIROp_Call:
                        {
                            auto call = as<IRCall>(inst);
                            for (UInt i = 0; i < call->getArgCount(); i++)
                            {
                                if (as<IRPtrTypeBase>(call->getArg(i)))
                                    addToWorkList(call->getArg(i));
                            }
                        }
                        break;
                    }
                }
            }
        };

        while (workList.getCount())
        {
            for (Index i = 0; i < workList.getCount(); i++)
            {
                auto inst = workList[i];
                for (auto use = inst->firstUse; use; use = use->nextUse)
                {
                    auto user = use->getUser();
                    if (as<IRAttr>(user))
                        continue;
                    if (as<IRDecoration>(user))
                        continue;
                    switch (user->getOp())
                    {
                    case kIROp_TreatAsDynamicUniform:
                        continue;
                    case kIROp_FieldAddress:
                        {
                            if (isDynamicUniformLocation(user))
                                continue;
                            break;
                        }
                    case kIROp_FieldExtract:
                        {
                            if (as<IRFieldExtract>(user)
                                    ->findDecoration<IRDynamicUniformDecoration>())
                                continue;
                            break;
                        }
                    case kIROp_SwizzledStore:
                    case kIROp_Store:
                        {
                            if (use == user->getOperands() + 1)
                            {
                                auto ptr = user->getOperand(0);
                                addToWorkList(ptr);
                                if (isDynamicUniformLocation(ptr))
                                {
                                    sink->diagnose(
                                        user->sourceLoc,
                                        Diagnostics::expectDynamicUniformValue,
                                        ptr);
                                }
                                else
                                {
                                    // Conservatively treat the entire composite at root addr as
                                    // non-uniform.
                                    auto addrRoot = getRootAddr(ptr);
                                    addToWorkList(addrRoot);
                                }
                            }
                            break;
                        }
                    case kIROp_IfElse:
                        {
                            auto ifElse = as<IRIfElse>(user);
                            visitControlDependentBlock(ifElse->getTrueBlock());
                            visitControlDependentBlock(ifElse->getFalseBlock());
                            // Mark phi nodes as non-uniform if any of its incoming values are
                            // non-uniform.
                            for (auto param : ifElse->getAfterBlock()->getParams())
                                addToWorkList(param);
                            break;
                        }
                    case kIROp_Switch:
                        {
                            auto switchInst = as<IRSwitch>(user);
                            for (UInt c = 0; c < switchInst->getCaseCount(); c++)
                                visitControlDependentBlock(switchInst->getCaseLabel(c));
                            visitControlDependentBlock(switchInst->getDefaultLabel());
                            // Mark phi nodes as non-uniform if any of its incoming values are
                            // non-uniform.
                            for (auto param : switchInst->getBreakLabel()->getParams())
                                addToWorkList(param);
                            break;
                        }
                    case kIROp_Call:
                        {
                            auto callInst = as<IRCall>(user);
                            auto callee = getResolvedInstForDecorations(callInst->getCallee());
                            if (auto func = as<IRFunc>(callee))
                            {
                                if (func->getFirstBlock())
                                {
                                    FunctionNonUniformInfoKey key;
                                    key.func = func;
                                    for (UInt argi = 0; argi < callInst->getArgCount(); argi++)
                                    {
                                        if (nonUniformInsts.contains(callInst->getArg(argi)))
                                        {
                                            auto param = getParamAt(func->getFirstBlock(), argi);
                                            if (param->findDecoration<IRDynamicUniformDecoration>())
                                            {
                                                sink->diagnose(
                                                    callInst->sourceLoc,
                                                    Diagnostics::expectDynamicUniformArgument,
                                                    param);
                                            }
                                            else
                                            {
                                                key.nonUniformParams.add(i);
                                            }
                                        }
                                    }
                                    if (auto funcInfo = getFunctionNonUniformInfo(callInst, key))
                                    {
                                        for (UInt argi = 0; argi < callInst->getArgCount(); argi++)
                                        {
                                            if (funcInfo->nonUniformParams.contains(argi))
                                            {
                                                addToWorkList(callInst->getArg(argi));
                                            }
                                            if (funcInfo->isResultNonUniform)
                                            {
                                                addToWorkList(callInst);
                                            }
                                        }
                                        break;
                                    }
                                }
                            }
                            // The default behavior for calls is that the result is non-uniform if
                            // any of its arguments are non-uniform.
                            bool isNonUniformCall =
                                callee->findDecorationImpl(
                                    kIROp_NonDynamicUniformReturnDecoration) != nullptr;
                            if (!isNonUniformCall)
                            {
                                for (UInt argi = 0; argi < callInst->getArgCount(); argi++)
                                {
                                    if (nonUniformInsts.contains(callInst->getArg(argi)))
                                    {
                                        isNonUniformCall = true;
                                        break;
                                    }
                                }
                            }
                            if (isNonUniformCall)
                            {
                                addToWorkList(callInst);
                                for (UInt argi = 0; argi < callInst->getArgCount(); argi++)
                                {
                                    if (as<IRPtrTypeBase>(callInst->getArg(argi)->getDataType()))
                                    {
                                        addToWorkList(callInst->getArg(argi));
                                        // Conservatively treat the entire composite at root addr as
                                        // non-uniform.
                                        auto addrRoot = getRootAddr(callInst->getArg(argi));
                                        addToWorkList(addrRoot);
                                    }
                                }
                            }
                            break;
                        }
                    default:
                        break;
                    }
                    addToWorkList(user);
                }
            }
            workList.swapWith(nextWorkList.getList());
            nextWorkList.clear();
        }
    }

    void analyzeModule()
    {
        InstWorkList workList(module);

        for (auto globalInst : module->getGlobalInsts())
        {
            if (auto code = as<IRGlobalValueWithCode>(globalInst))
            {
                auto func = getResolvedInstForDecorations(code);
                if (func->findDecorationImpl(kIROp_NonDynamicUniformReturnDecoration))
                {
                    nonUniformInsts.add(code);
                }
            }
            if (globalInst->findDecoration<IREntryPointDecoration>())
            {
                auto func = as<IRFunc>(globalInst);
                if (!func)
                    continue;
                for (auto param : func->getParams())
                {
                    auto varLayout = findVarLayout(param);
                    if (isVaryingParameter(varLayout) ||
                        varLayout->findAttr<IRSystemValueSemanticAttr>())
                    {
                        nonUniformInsts.add(param);
                        workList.add(param);
                    }
                }
                currentCallee = func;
                call = nullptr;
                propagateNonUniform(func, workList.getList());
            }
        }
        workList.clear();

        eliminateAsDynamicUniformInst();
    }

    void eliminateAsDynamicUniformInst()
    {
        InstWorkList workList(module);
        workList.add(module->getModuleInst());
        for (Index i = 0; i < workList.getCount(); i++)
        {
            auto inst = workList[i];
            if (inst->getOp() == kIROp_TreatAsDynamicUniform)
            {
                auto val = inst->getOperand(0);
                inst->replaceUsesWith(val);
                inst->removeAndDeallocate();
            }
            else
            {
                for (auto child = inst->getFirstChild(); child; child = child->getNextInst())
                {
                    workList.add(child);
                }
            }
        }
    }
};

void validateUniformity(IRModule* module, DiagnosticSink* sink)
{
    ValidateUniformityContext context;
    context.module = module;
    context.sink = sink;
    context.analyzeModule();
}
} // namespace Slang