diff options
| author | Anders Leino <aleino@nvidia.com> | 2025-03-17 15:05:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-17 21:05:11 +0800 |
| commit | 98ff41989b04ce883e9dc9f4464c45290d30c560 (patch) | |
| tree | fc30afe14244da7d6063d4bbcf5eb343afe69a53 /source | |
| parent | 3357b5549cebbcbd95c8762b2638efd9ea607013 (diff) | |
Add error diagnostic vectors and matrices with disallowed element types (#6596)
- Add the diagnostic messages, and code to emit them
- Add some tests
This helps to address issue #6183.
Diffstat (limited to 'source')
| -rw-r--r-- | source/slang/slang-diagnostic-defs.h | 12 | ||||
| -rw-r--r-- | source/slang/slang-emit.cpp | 100 |
2 files changed, 102 insertions, 10 deletions
diff --git a/source/slang/slang-diagnostic-defs.h b/source/slang/slang-diagnostic-defs.h index 4ad942d84..981ed8439 100644 --- a/source/slang/slang-diagnostic-defs.h +++ b/source/slang/slang-diagnostic-defs.h @@ -1915,6 +1915,18 @@ DIAGNOSTIC( "mode, specify 'SlangGlobalSessionDesc::enableGLSL' when creating the global session.") DIAGNOSTIC(39999, Fatal, complationCeased, "compilation ceased") +DIAGNOSTIC( + 38202, + Error, + matrixWithDisallowedElementTypeEncountered, + "matrix with disallowed element type '$0' encountered") + +DIAGNOSTIC( + 38203, + Error, + vectorWithDisallowedElementTypeEncountered, + "vector with disallowed element type '$0' encountered") + // 39xxx - Type layout and parameter binding. DIAGNOSTIC( diff --git a/source/slang/slang-emit.cpp b/source/slang/slang-emit.cpp index bc113e0c1..845712c2d 100644 --- a/source/slang/slang-emit.cpp +++ b/source/slang/slang-emit.cpp @@ -597,20 +597,101 @@ static void unexportNonEmbeddableIR(CodeGenTarget target, IRModule* irModule) } } -static void validateMatrixDimensions(DiagnosticSink* sink, IRModule* module) +static void validateVectorOrMatrixElementType( + DiagnosticSink* sink, + SourceLoc sourceLoc, + IRType* elementType, + uint32_t allowedWidths, + const DiagnosticInfo& disallowedElementTypeEncountered) +{ + if (!isFloatingType(elementType)) + { + if (isIntegralType(elementType)) + { + IntInfo info = getIntTypeInfo(elementType); + if (allowedWidths == 0U) + { + sink->diagnose(sourceLoc, disallowedElementTypeEncountered, elementType); + } + else + { + bool widthAllowed = false; + SLANG_ASSERT((allowedWidths & ~(0xfU << 3)) == 0U); + for (uint32_t p = 3U; p <= 6U; p++) + { + uint32_t width = 1U << p; + if (!(allowedWidths & width)) + continue; + widthAllowed = widthAllowed || (info.width == width); + } + if (!widthAllowed) + { + sink->diagnose(sourceLoc, disallowedElementTypeEncountered, elementType); + } + } + } + else if (!as<IRBoolType>(elementType)) + { + sink->diagnose(sourceLoc, disallowedElementTypeEncountered, elementType); + } + } +} + +static void validateVectorsAndMatrices( + DiagnosticSink* sink, + IRModule* module, + TargetRequest* targetRequest) { for (auto globalInst : module->getGlobalInsts()) { if (auto matrixType = as<IRMatrixType>(globalInst)) { - auto colCount = as<IRIntLit>(matrixType->getColumnCount()); - auto rowCount = as<IRIntLit>(matrixType->getRowCount()); - - if ((rowCount && (rowCount->getValue() == 1)) || - (colCount && (colCount->getValue() == 1))) + // Matrices with row/col dimension 1 are only well-supported on D3D targets + if (!isD3DTarget(targetRequest)) { - sink->diagnose(matrixType->sourceLoc, Diagnostics::matrixColumnOrRowCountIsOne); + // Verify that neither row nor col count is 1 + auto colCount = as<IRIntLit>(matrixType->getColumnCount()); + auto rowCount = as<IRIntLit>(matrixType->getRowCount()); + + if ((rowCount && (rowCount->getValue() == 1)) || + (colCount && (colCount->getValue() == 1))) + { + sink->diagnose(matrixType->sourceLoc, Diagnostics::matrixColumnOrRowCountIsOne); + } } + + // Verify that the element type is a floating point type, or an allowed integral type + auto elementType = matrixType->getElementType(); + uint32_t allowedWidths = 0U; + if (isCPUTarget(targetRequest)) + allowedWidths = 8U | 16U | 32U | 64U; + else if (isCUDATarget(targetRequest)) + allowedWidths = 32U | 64U; + else if (isD3DTarget(targetRequest)) + allowedWidths = 16U | 32U; + validateVectorOrMatrixElementType( + sink, + matrixType->sourceLoc, + elementType, + allowedWidths, + Diagnostics::matrixWithDisallowedElementTypeEncountered); + } + else if (auto vectorType = as<IRVectorType>(globalInst)) + { + // Verify that the element type is a floating point type, or an allowed integral type + auto elementType = vectorType->getElementType(); + uint32_t allowedWidths = 0U; + if (isWGPUTarget(targetRequest)) + allowedWidths = 32U; + else + allowedWidths = 8U | 16U | 32U | 64U; + + validateVectorOrMatrixElementType( + sink, + vectorType->sourceLoc, + elementType, + allowedWidths, + Diagnostics::vectorWithDisallowedElementTypeEncountered); } } } @@ -1602,9 +1683,8 @@ Result linkAndOptimizeIR( #endif validateIRModuleIfEnabled(codeGenContext, irModule); - // Make sure there are no matrices with 1 row/column, except for D3D targets where it's allowed. - if (!isD3DTarget(targetRequest)) - validateMatrixDimensions(sink, irModule); + // Validate vectors and matrices according to what the target allows + validateVectorsAndMatrices(sink, irModule, targetRequest); // The resource-based specialization pass above // may create specialized versions of functions, but |
