Skip to content

Commit 16f617f

Browse files
csyongheslangbotexpipiplus1
authored
Report error when generated spirv is empty. (shader-slang#5899)
* Report error when generated spirv is empty. * format code --------- Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com> Co-authored-by: Ellie Hermaszewska <ellieh@nvidia.com>
1 parent a427c58 commit 16f617f

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

source/slang/slang-diagnostic-defs.h

+6
Original file line numberDiff line numberDiff line change
@@ -2452,6 +2452,12 @@ DIAGNOSTIC(
24522452
DIAGNOSTIC(57001, Warning, spirvOptFailed, "spirv-opt failed. $0")
24532453
DIAGNOSTIC(57002, Error, unknownPatchConstantParameter, "unknown patch constant parameter '$0'.")
24542454
DIAGNOSTIC(57003, Error, unknownTessPartitioning, "unknown tessellation partitioning '$0'.")
2455+
DIAGNOSTIC(
2456+
57004,
2457+
Error,
2458+
outputSpvIsEmpty,
2459+
"output SPIR-V contains no exported symbols. Please make sure to specify at least one "
2460+
"entrypoint.")
24552461

24562462
// GLSL Compatibility
24572463
DIAGNOSTIC(

source/slang/slang-emit-spirv.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -7964,6 +7964,8 @@ SlangResult emitSPIRVFromIR(
79647964
{
79657965
spirvOut.clear();
79667966

7967+
bool symbolsEmitted = false;
7968+
79677969
auto sink = codeGenContext->getSink();
79687970

79697971
#if 0
@@ -8008,6 +8010,7 @@ SlangResult emitSPIRVFromIR(
80088010
if (shouldPreserveParams && as<IRGlobalParam>(inst))
80098011
{
80108012
context.ensureInst(inst);
8013+
symbolsEmitted = true;
80118014
}
80128015
if (generateWholeProgram)
80138016
{
@@ -8016,6 +8019,7 @@ SlangResult emitSPIRVFromIR(
80168019
if (func->findDecoration<IRDownstreamModuleExportDecoration>())
80178020
{
80188021
context.ensureInst(inst);
8022+
symbolsEmitted = true;
80198023
}
80208024
}
80218025
}
@@ -8046,8 +8050,14 @@ SlangResult emitSPIRVFromIR(
80468050
for (auto irEntryPoint : irEntryPoints)
80478051
{
80488052
context.ensureInst(irEntryPoint);
8053+
symbolsEmitted = true;
80498054
}
80508055

8056+
if (!symbolsEmitted)
8057+
{
8058+
sink->diagnose(irModule->getModuleInst(), Diagnostics::outputSpvIsEmpty);
8059+
return SLANG_FAIL;
8060+
}
80518061

80528062
// Move forward delcared pointers to the end.
80538063
do

tests/spirv/empty-module.slang

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK): -target spirv
2+
3+
// missing entrypoint attribute
4+
void vertMain()
5+
{}
6+
7+
// CHECK: error 57004

0 commit comments

Comments
 (0)