Skip to content

Commit e3e1cf2

Browse files
authored
Merge pull request shader-slang#1371 from csyonghe/loop_attrib
Emit [loop] attribute to output HLSL.
2 parents 3bb7807 + 00db821 commit e3e1cf2

File tree

5 files changed

+87
-1
lines changed

5 files changed

+87
-1
lines changed

source/slang/slang-emit-hlsl.cpp

+8-1
Original file line numberDiff line numberDiff line change
@@ -673,9 +673,16 @@ void HLSLSourceEmitter::emitVectorTypeNameImpl(IRType* elementType, IRIntegerVal
673673

674674
void HLSLSourceEmitter::emitLoopControlDecorationImpl(IRLoopControlDecoration* decl)
675675
{
676-
if (decl->getMode() == kIRLoopControl_Unroll)
676+
switch (decl->getMode())
677677
{
678+
case kIRLoopControl_Unroll:
678679
m_writer->emit("[unroll]\n");
680+
break;
681+
case kIRLoopControl_Loop:
682+
m_writer->emit("[loop]\n");
683+
break;
684+
default:
685+
break;
679686
}
680687
}
681688

source/slang/slang-ir-insts.h

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ struct IRHighLevelDeclDecoration : IRDecoration
4242
enum IRLoopControl
4343
{
4444
kIRLoopControl_Unroll,
45+
kIRLoopControl_Loop,
4546
};
4647

4748
struct IRLoopControlDecoration : IRDecoration

source/slang/slang-lower-to-ir.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -3353,6 +3353,10 @@ struct StmtLoweringVisitor : StmtVisitor<StmtLoweringVisitor>
33533353
{
33543354
getBuilder()->addLoopControlDecoration(inst, kIRLoopControl_Unroll);
33553355
}
3356+
else if( stmt->findModifier<LoopAttribute>() )
3357+
{
3358+
getBuilder()->addLoopControlDecoration(inst, kIRLoopControl_Loop);
3359+
}
33563360
// TODO: handle other cases here
33573361
}
33583362

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// loop-attribs.slang
2+
// Test that loop attributes are correctly emitted to the resulting HLSL.
3+
4+
//TEST:CROSS_COMPILE:-target dxil-assembly -entry main -stage fragment -profile sm_6_0
5+
6+
float4 main() : SV_Target
7+
{
8+
float sum = 0.0f;
9+
10+
[loop]
11+
for (int i = 0; i < 100; i++)
12+
sum += float(i);
13+
14+
[unroll(10)]
15+
for (int j = 0; j < 100; j++)
16+
sum += float(j);
17+
18+
return float4(sum, 0, 0, 0);
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
#pragma pack_matrix(column_major)
2+
3+
#line 6 "tests/cross-compile/loop-attribs.slang"
4+
vector<float,4> main() : SV_TARGET
5+
{
6+
int i_0;
7+
float sum_0;
8+
int j_0;
9+
float sum_1;
10+
i_0 = int(0);
11+
sum_0 = 0.00000000000000000000;
12+
[loop]
13+
for(;;)
14+
{
15+
16+
#line 11
17+
if(i_0 < int(100))
18+
{
19+
}
20+
else
21+
{
22+
break;
23+
}
24+
float _S1 = sum_0 + (float) i_0;
25+
26+
#line 11
27+
int _S2 = i_0 + (int) int(1);
28+
i_0 = _S2;
29+
sum_0 = _S1;
30+
}
31+
j_0 = int(0);
32+
sum_1 = sum_0;
33+
[unroll]
34+
for(;;)
35+
{
36+
37+
#line 15
38+
if(j_0 < int(100))
39+
{
40+
}
41+
else
42+
{
43+
break;
44+
}
45+
float _S3 = sum_1 + (float) j_0;
46+
47+
#line 15
48+
int _S4 = j_0 + (int) int(1);
49+
j_0 = _S4;
50+
sum_1 = _S3;
51+
}
52+
53+
#line 18
54+
return vector<float,4>(sum_1, (float) int(0), (float) int(0), (float) int(0));
55+
}

0 commit comments

Comments
 (0)