Skip to content

Commit c5c1c72

Browse files
authored
Merge branch 'master' into cheneym2/adapterInfo
2 parents 26fb244 + 64dfdbd commit c5c1c72

6 files changed

+79
-35
lines changed

source/slang/slang-diagnostic-defs.h

+8
Original file line numberDiff line numberDiff line change
@@ -2055,6 +2055,14 @@ DIAGNOSTIC(
20552055
"shader parameter '$0' has a 'register' specified for D3D, but no '[[vk::binding(...)]]` "
20562056
"specified for Vulkan, nor is `-fvk-$1-shift` used.")
20572057

2058+
DIAGNOSTIC(
2059+
39071,
2060+
Warning,
2061+
bindingAttributeIgnoredOnUniform,
2062+
"binding attribute on uniform '$0' will be ignored since it will be packed into the default "
2063+
"constant buffer at descriptor set 0 binding 0. To use explicit bindings, declare the uniform "
2064+
"inside a constant buffer.")
2065+
20582066
//
20592067

20602068
// 4xxxx - IL code generation.

source/slang/slang-parameter-binding.cpp

+15-27
Original file line numberDiff line numberDiff line change
@@ -3511,34 +3511,22 @@ static void collectParameters(ParameterBindingContext* inContext, ComponentType*
35113511
/// Emit a diagnostic about a uniform/ordinary parameter at global scope.
35123512
void diagnoseGlobalUniform(SharedParameterBindingContext* sharedContext, VarDeclBase* varDecl)
35133513
{
3514-
// This subroutine gets invoked if a shader parameter containing
3515-
// "ordinary" data (sometimes just called "uniform" data) is present
3516-
// at the global scope.
3517-
//
3518-
// Slang can support such parameters by aggregating them into
3519-
// an implicit constant buffer, but it is also common for programmers
3520-
// to accidentally declare a global-scope shader parameter when they
3521-
// meant to declare a global variable instead:
3522-
//
3523-
// int gCounter = 0; // this is a shader parameter, not a global
3524-
//
3525-
// In order to avoid mistakes, we'd like to warn the user when
3526-
// they write code like the above, and hint to them that they
3527-
// should make their intention more explicit with a keyword:
3528-
//
3529-
// static int gCounter = 0; // this is now a (static) global
3530-
//
3531-
// uniform int gCounter; // this is now explicitly a shader parameter
3532-
//
3533-
// We skip the diagnostic whenever the variable was explicitly `uniform`,
3534-
// under the assumption that the programmer who added that modifier
3535-
// knew what they were opting into.
3536-
//
3537-
if (varDecl->hasModifier<HLSLUniformModifier>())
3538-
return;
3514+
// Don't emit the implicit global shader parameter warning if the variable is explicitly marked
3515+
// as uniform
3516+
if (!varDecl->hasModifier<HLSLUniformModifier>())
3517+
{
3518+
getSink(sharedContext)
3519+
->diagnose(varDecl, Diagnostics::globalUniformNotExpected, varDecl->getName());
3520+
}
35393521

3540-
getSink(sharedContext)
3541-
->diagnose(varDecl, Diagnostics::globalUniformNotExpected, varDecl->getName());
3522+
// Always check and warn about binding attributes being ignored, regardless of uniform modifier
3523+
if (varDecl->findModifier<GLSLBindingAttribute>())
3524+
{
3525+
sharedContext->m_sink->diagnose(
3526+
varDecl,
3527+
Diagnostics::bindingAttributeIgnoredOnUniform,
3528+
varDecl->getName());
3529+
}
35423530
}
35433531

35443532

source/slang/slang-preprocessor.cpp

+16-2
Original file line numberDiff line numberDiff line change
@@ -2011,6 +2011,13 @@ TokenReader MacroInvocation::_getArgTokens(Index paramIndex)
20112011
// to the parameter, and we construct a `TokenReader` that will play
20122012
// back the tokens of that argument.
20132013
//
2014+
// Special case: If we have no arguments but the macro expects one parameter,
2015+
// return an empty token range
2016+
if (m_args.getCount() == 0 && m_macro->params.getCount() == 1)
2017+
{
2018+
return TokenReader(argTokens, argTokens);
2019+
}
2020+
20142021
SLANG_ASSERT(paramIndex < m_args.getCount());
20152022
auto arg = m_args[paramIndex];
20162023
return TokenReader(argTokens + arg.beginTokenIndex, argTokens + arg.endTokenIndex);
@@ -2037,8 +2044,15 @@ TokenReader MacroInvocation::_getArgTokens(Index paramIndex)
20372044
// When there are no arguments for the varaidic parameter we will
20382045
// construct an empty token range that comes after the other arguments.
20392046
//
2040-
auto arg = m_args[lastArgIndex];
2041-
return TokenReader(argTokens + arg.endTokenIndex, argTokens + arg.endTokenIndex);
2047+
if (lastArgIndex >= 0)
2048+
{
2049+
auto arg = m_args[lastArgIndex];
2050+
return TokenReader(argTokens + arg.endTokenIndex, argTokens + arg.endTokenIndex);
2051+
}
2052+
else
2053+
{
2054+
return TokenReader(argTokens, argTokens);
2055+
}
20422056
}
20432057

20442058
// Because the `m_argTokens` array includes the commas between arguments,
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// binding-attribute-ignored.slang
2+
// Test that binding attributes on uniforms that get packed into the default uniform buffer trigger a warning
3+
4+
//TEST:SIMPLE(filecheck=CHECK):-target spirv
5+
6+
//CHECK: ([[# @LINE+2]]): warning 39071
7+
[[vk::binding(1, 2)]]
8+
uniform float4 g_position;
9+
10+
//CHECK: ([[# @LINE+2]]): warning 39071
11+
[[vk::binding(3, 1)]]
12+
uniform float4x4 g_transform;
13+
14+
// This won't trigger a warning because it's a texture (not packed into default uniform buffer)
15+
[[vk::binding(0, 0)]]
16+
Texture2D g_texture;
17+
18+
[shader("vertex")]
19+
float4 main(float4 pos : POSITION) : SV_POSITION
20+
{
21+
return g_position;
22+
}
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// array-zero-size.slang
2+
3+
// Test that array size cannot be zero
4+
5+
//TEST:SIMPLE:
6+
7+
[numthreads(4, 1, 1)]
8+
void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
9+
{
10+
bar();
11+
}
12+
13+
func bar() -> int[0]; // expected-error 30025 "array size must be larger than zero."

tests/hlsl/simple-hull-shader-1.slang

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
//TEST:SIMPLE(filecheck=HLSL):-target hlsl -entry hullMain -stage hull -allow-glsl
22
//TEST:SIMPLE(filecheck=GLSL):-target glsl -entry hullMain -stage hull -allow-glsl
3-
// Currently SPIR-V fails to compile this hull shader (#4914)
4-
//DISABLE_TEST:SIMPLE(filecheck=SPIRV):-target spirv -entry hullMain -stage hull -allow-glsl
3+
//TEST:SIMPLE(filecheck=SPIRV):-target spirv -entry hullMain -stage hull -allow-glsl
54

65
//HLSL: hullMain
76

87
//GLSL-DAG: location = 0
98
//GLSL-DAG: location = 1
109
//GLSL-DAG: location = 2
1110

12-
//SPIRV-DAG: location 0
13-
//SPIRV-DAG: location 1
14-
//SPIRV-DAG: location 2
11+
//SPIRV-DAG: OpDecorate {{.*}} Location 0
12+
//SPIRV-DAG: OpDecorate {{.*}} Location 1
13+
//SPIRV-DAG: OpDecorate {{.*}} Location 2
1514

1615
struct HsOut
1716
{
@@ -50,4 +49,4 @@ HscOut constants()
5049
o.InsideTessFactor[0] = 0.5;
5150
o.InsideTessFactor[1] = 0.5;
5251
return o;
53-
}
52+
}

0 commit comments

Comments
 (0)