1
+ // TEST:SIMPLE(filecheck=CHECK): -target hlsl -entry testMain -profile cs_6_0
2
+
3
+ // Test that invoking the default constructor of a type then use the result as an existential value
4
+ // works correctly.
5
+
6
+ RWStructuredBuffer < uint > output;
7
+ RWStructuredBuffer < uint > expected;
8
+
9
+ interface ITest
10
+ {
11
+ uint getValue();
12
+ };
13
+
14
+
15
+ // TEST_INPUT:type_conformance Test0:ITest = 0
16
+ struct Test0 : ITest
17
+ {
18
+ uint getValue() { return 0 ; }
19
+ };
20
+
21
+ // TEST_INPUT:type_conformance Test1:ITest = 1
22
+ struct Test1 : ITest
23
+ {
24
+ uint getValue() { return 1 ; }
25
+ };
26
+
27
+ // TEST_INPUT:type_conformance TestAny:ITest = 2
28
+ struct TestAny : ITest
29
+ {
30
+ uint value = 5 ;
31
+ __init(uint v)
32
+ {
33
+ value = v;
34
+ }
35
+
36
+ uint getValue() { return value; }
37
+ }
38
+
39
+ // CHECK: Tuple{{.*}} makeTest0{{.*}}()
40
+ // CHECK: Tuple{{.*}} = { uint2(0U, 0U), uint2(0U, 0U), packAnyValue4{{.*}} };
41
+ ITest makeTest0()
42
+ {
43
+ return Test0();
44
+ }
45
+
46
+ // CHECK: Tuple{{.*}} makeTest1{{.*}}()
47
+ // CHECK: Tuple{{.*}} = { uint2(0U, 0U), uint2(1U, 0U), packAnyValue4{{.*}} };
48
+ ITest makeTest1()
49
+ {
50
+ return Test1();
51
+ }
52
+
53
+ // CHECK: Tuple{{.*}} makeTestAny{{.*}}()
54
+ // CHECK: Tuple{{.*}} = { uint2(0U, 0U), uint2(2U, 0U), packAnyValue4{{.*}} };
55
+ ITest makeTestAny()
56
+ {
57
+ return TestAny();
58
+ }
59
+
60
+ ITest makeTestAny(uint v)
61
+ {
62
+ return TestAny(v);
63
+ }
64
+
65
+
66
+ [numthreads(16 , 1 , 1 )]
67
+ void testMain(uint3 threadID: SV_DispatchThreadID)
68
+ {
69
+ if (threadID .x != 0 )
70
+ return ;
71
+
72
+ int outputIdx = 0 ;
73
+
74
+ /// Test0
75
+ {
76
+ Test0 test;
77
+ output [outputIdx] = test .getValue ();
78
+ expected [outputIdx++ ] = 0 ;
79
+ }
80
+
81
+ {
82
+ ITest test = Test0();
83
+ output [outputIdx] = test .getValue ();
84
+ expected [outputIdx++ ] = 0 ;
85
+ }
86
+
87
+ {
88
+ output [outputIdx] = Test0().getValue ();
89
+ expected [outputIdx++ ] = 0 ;
90
+ }
91
+
92
+ {
93
+ ITest test = makeTest0();
94
+ output [outputIdx] = test .getValue ();
95
+ expected [outputIdx++ ] = 0 ;
96
+ }
97
+
98
+ {
99
+ output [outputIdx] = makeTest0().getValue ();
100
+ expected [outputIdx++ ] = 0 ;
101
+ }
102
+
103
+ output [outputIdx] = 1000 ;
104
+ expected [outputIdx++ ] = 1000 ;
105
+
106
+ /// Test1
107
+ {
108
+ Test1 test;
109
+ output [outputIdx] = test .getValue ();
110
+ expected [outputIdx++ ] = 1 ;
111
+ }
112
+
113
+ {
114
+ ITest test = Test1();
115
+ output [outputIdx] = test .getValue ();
116
+ expected [outputIdx++ ] = 1 ;
117
+ }
118
+
119
+ {
120
+ output [outputIdx] = Test1().getValue ();
121
+ expected [outputIdx++ ] = 1 ;
122
+ }
123
+
124
+ {
125
+ ITest test = makeTest1();
126
+ output [outputIdx] = test .getValue ();
127
+ expected [outputIdx++ ] = 1 ;
128
+ }
129
+
130
+ {
131
+ output [outputIdx] = makeTest1().getValue ();
132
+ expected [outputIdx++ ] = 1 ;
133
+ }
134
+
135
+ output [outputIdx] = 2000 ;
136
+ expected [outputIdx++ ] = 2000 ;
137
+
138
+ /// TestAny
139
+ {
140
+ TestAny test;
141
+ output [outputIdx] = test .getValue ();
142
+ expected [outputIdx++ ] = 5 ;
143
+ }
144
+
145
+ {
146
+ ITest test = TestAny();
147
+ output [outputIdx] = test .getValue ();
148
+ expected [outputIdx++ ] = 5 ;
149
+ }
150
+
151
+ {
152
+ ITest test = TestAny(2 );
153
+ output [outputIdx] = test .getValue ();
154
+ expected [outputIdx++ ] = 2 ;
155
+ }
156
+
157
+ {
158
+ output [outputIdx] = TestAny().getValue ();
159
+ expected [outputIdx++ ] = 5 ;
160
+ }
161
+
162
+ {
163
+ output [outputIdx] = TestAny(2 ).getValue ();
164
+ expected [outputIdx++ ] = 2 ;
165
+ }
166
+
167
+ {
168
+ ITest test = makeTestAny();
169
+ output [outputIdx] = test .getValue ();
170
+ expected [outputIdx++ ] = 5 ;
171
+ }
172
+
173
+ {
174
+ ITest test = makeTestAny(2 );
175
+ output [outputIdx] = test .getValue ();
176
+ expected [outputIdx++ ] = 2 ;
177
+ }
178
+
179
+ {
180
+ output [outputIdx] = makeTestAny().getValue ();
181
+ expected [outputIdx++ ] = 5 ;
182
+ }
183
+
184
+ {
185
+ output [outputIdx] = makeTestAny(2 ).getValue ();
186
+ expected [outputIdx++ ] = 2 ;
187
+ }
188
+
189
+ expected [outputIdx++ ] = uint (- 1 );
190
+ }
0 commit comments