blob: 88eacd9c5d9dfe9a96e0e811da6d5671b60a1221 [file] [log] [blame]
John Kesseniche01a9bc2016-03-12 20:11:22 -07001//
John Kessenich927608b2017-01-06 12:34:14 -07002// Copyright (C) 2016 Google, Inc.
3// Copyright (C) 2016 LunarG, Inc.
John Kesseniche01a9bc2016-03-12 20:11:22 -07004//
John Kessenich927608b2017-01-06 12:34:14 -07005// All rights reserved.
John Kesseniche01a9bc2016-03-12 20:11:22 -07006//
John Kessenich927608b2017-01-06 12:34:14 -07007// Redistribution and use in source and binary forms, with or without
8// modification, are permitted provided that the following conditions
9// are met:
John Kesseniche01a9bc2016-03-12 20:11:22 -070010//
11// Redistributions of source code must retain the above copyright
12// notice, this list of conditions and the following disclaimer.
13//
14// Redistributions in binary form must reproduce the above
15// copyright notice, this list of conditions and the following
16// disclaimer in the documentation and/or other materials provided
17// with the distribution.
18//
19// Neither the name of Google, Inc., nor the names of its
20// contributors may be used to endorse or promote products derived
21// from this software without specific prior written permission.
22//
John Kessenich927608b2017-01-06 12:34:14 -070023// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27// COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34// POSSIBILITY OF SUCH DAMAGE.
John Kesseniche01a9bc2016-03-12 20:11:22 -070035//
36
John Kessenichd016be12016-03-13 11:24:20 -060037//
38// This is a set of mutually recursive methods implementing the HLSL grammar.
39// Generally, each returns
40// - through an argument: a type specifically appropriate to which rule it
41// recognized
42// - through the return value: true/false to indicate whether or not it
43// recognized its rule
44//
45// As much as possible, only grammar recognition should happen in this file,
John Kessenich078d7f22016-03-14 10:02:11 -060046// with all other work being farmed out to hlslParseHelper.cpp, which in turn
John Kessenichd016be12016-03-13 11:24:20 -060047// will build the AST.
48//
49// The next token, yet to be "accepted" is always sitting in 'token'.
50// When a method says it accepts a rule, that means all tokens involved
51// in the rule will have been consumed, and none left in 'token'.
52//
53
John Kesseniche01a9bc2016-03-12 20:11:22 -070054#include "hlslTokens.h"
55#include "hlslGrammar.h"
steve-lunarg1868b142016-10-20 13:07:10 -060056#include "hlslAttributes.h"
John Kesseniche01a9bc2016-03-12 20:11:22 -070057
58namespace glslang {
59
60// Root entry point to this recursive decent parser.
61// Return true if compilation unit was successfully accepted.
62bool HlslGrammar::parse()
63{
64 advanceToken();
65 return acceptCompilationUnit();
66}
67
68void HlslGrammar::expected(const char* syntax)
69{
70 parseContext.error(token.loc, "Expected", syntax, "");
71}
72
LoopDawg4886f692016-06-29 10:58:58 -060073void HlslGrammar::unimplemented(const char* error)
74{
75 parseContext.error(token.loc, "Unimplemented", error, "");
76}
77
John Kessenich7a41f962017-03-22 11:38:22 -060078// IDENTIFIER
79// THIS
80// type that can be used as IDENTIFIER
81//
John Kessenichaecd4972016-03-14 10:46:34 -060082// Only process the next token if it is an identifier.
83// Return true if it was an identifier.
84bool HlslGrammar::acceptIdentifier(HlslToken& idToken)
85{
John Kessenich7a41f962017-03-22 11:38:22 -060086 // IDENTIFIER
John Kessenichaecd4972016-03-14 10:46:34 -060087 if (peekTokenClass(EHTokIdentifier)) {
88 idToken = token;
89 advanceToken();
90 return true;
91 }
92
John Kessenich7a41f962017-03-22 11:38:22 -060093 // THIS
94 // -> maps to the IDENTIFIER spelled with the internal special name for 'this'
95 if (peekTokenClass(EHTokThis)) {
96 idToken = token;
97 advanceToken();
98 idToken.tokenClass = EHTokIdentifier;
99 idToken.string = NewPoolTString(intermediate.implicitThisName);
100 return true;
101 }
102
103 // type that can be used as IDENTIFIER
104
steve-lunarg5ca85ad2016-12-26 18:45:52 -0700105 // Even though "sample", "bool", "float", etc keywords (for types, interpolation modifiers),
106 // they ARE still accepted as identifiers. This is not a dense space: e.g, "void" is not a
107 // valid identifier, nor is "linear". This code special cases the known instances of this, so
108 // e.g, "int sample;" or "float float;" is accepted. Other cases can be added here if needed.
John Kessenichecba76f2017-01-06 00:34:48 -0700109
John Kessenich0320d092017-06-13 22:22:52 -0600110 const char* idString = getTypeString(peek());
111 if (idString == nullptr)
steve-lunarg5ca85ad2016-12-26 18:45:52 -0700112 return false;
steve-lunarg75fd2232016-11-16 13:22:11 -0700113
John Kessenich0320d092017-06-13 22:22:52 -0600114 token.string = NewPoolTString(idString);
steve-lunarg5ca85ad2016-12-26 18:45:52 -0700115 token.tokenClass = EHTokIdentifier;
John Kessenich0320d092017-06-13 22:22:52 -0600116 idToken = token;
117 typeIdentifiers = true;
steve-lunarg5ca85ad2016-12-26 18:45:52 -0700118
119 advanceToken();
120
121 return true;
John Kessenichaecd4972016-03-14 10:46:34 -0600122}
123
John Kesseniche01a9bc2016-03-12 20:11:22 -0700124// compilationUnit
John Kessenich8f9fdc92017-03-30 16:22:26 -0600125// : declaration_list EOF
John Kesseniche01a9bc2016-03-12 20:11:22 -0700126//
127bool HlslGrammar::acceptCompilationUnit()
128{
John Kessenichd016be12016-03-13 11:24:20 -0600129 TIntermNode* unitNode = nullptr;
130
John Kessenich8f9fdc92017-03-30 16:22:26 -0600131 if (! acceptDeclarationList(unitNode))
132 return false;
steve-lunargcb88de52016-08-03 07:04:18 -0600133
John Kessenich8f9fdc92017-03-30 16:22:26 -0600134 if (! peekTokenClass(EHTokNone))
135 return false;
John Kesseniche01a9bc2016-03-12 20:11:22 -0700136
John Kessenichd016be12016-03-13 11:24:20 -0600137 // set root of AST
John Kessenichca71d942017-03-07 20:44:09 -0700138 if (unitNode && !unitNode->getAsAggregate())
139 unitNode = intermediate.growAggregate(nullptr, unitNode);
John Kessenich078d7f22016-03-14 10:02:11 -0600140 intermediate.setTreeRoot(unitNode);
John Kessenichd016be12016-03-13 11:24:20 -0600141
John Kesseniche01a9bc2016-03-12 20:11:22 -0700142 return true;
143}
144
John Kessenich8f9fdc92017-03-30 16:22:26 -0600145// Recognize the following, but with the extra condition that it can be
146// successfully terminated by EOF or '}'.
147//
148// declaration_list
149// : list of declaration_or_semicolon followed by EOF or RIGHT_BRACE
150//
151// declaration_or_semicolon
152// : declaration
153// : SEMICOLON
154//
155bool HlslGrammar::acceptDeclarationList(TIntermNode*& nodeList)
156{
157 do {
158 // HLSL allows extra semicolons between global declarations
159 do { } while (acceptTokenClass(EHTokSemicolon));
160
161 // EOF or RIGHT_BRACE
162 if (peekTokenClass(EHTokNone) || peekTokenClass(EHTokRightBrace))
163 return true;
164
165 // declaration
166 if (! acceptDeclaration(nodeList))
167 return false;
168 } while (true);
169
170 return true;
171}
172
LoopDawg4886f692016-06-29 10:58:58 -0600173// sampler_state
John Kessenichecba76f2017-01-06 00:34:48 -0700174// : LEFT_BRACE [sampler_state_assignment ... ] RIGHT_BRACE
LoopDawg4886f692016-06-29 10:58:58 -0600175//
176// sampler_state_assignment
177// : sampler_state_identifier EQUAL value SEMICOLON
178//
179// sampler_state_identifier
180// : ADDRESSU
181// | ADDRESSV
182// | ADDRESSW
183// | BORDERCOLOR
184// | FILTER
185// | MAXANISOTROPY
186// | MAXLOD
187// | MINLOD
188// | MIPLODBIAS
189//
190bool HlslGrammar::acceptSamplerState()
191{
192 // TODO: this should be genericized to accept a list of valid tokens and
193 // return token/value pairs. Presently it is specific to texture values.
194
195 if (! acceptTokenClass(EHTokLeftBrace))
196 return true;
197
198 parseContext.warn(token.loc, "unimplemented", "immediate sampler state", "");
John Kessenichecba76f2017-01-06 00:34:48 -0700199
LoopDawg4886f692016-06-29 10:58:58 -0600200 do {
201 // read state name
202 HlslToken state;
203 if (! acceptIdentifier(state))
204 break; // end of list
205
206 // FXC accepts any case
207 TString stateName = *state.string;
208 std::transform(stateName.begin(), stateName.end(), stateName.begin(), ::tolower);
209
210 if (! acceptTokenClass(EHTokAssign)) {
211 expected("assign");
212 return false;
213 }
214
215 if (stateName == "minlod" || stateName == "maxlod") {
216 if (! peekTokenClass(EHTokIntConstant)) {
217 expected("integer");
218 return false;
219 }
220
221 TIntermTyped* lod = nullptr;
222 if (! acceptLiteral(lod)) // should never fail, since we just looked for an integer
223 return false;
224 } else if (stateName == "maxanisotropy") {
225 if (! peekTokenClass(EHTokIntConstant)) {
226 expected("integer");
227 return false;
228 }
229
230 TIntermTyped* maxAnisotropy = nullptr;
231 if (! acceptLiteral(maxAnisotropy)) // should never fail, since we just looked for an integer
232 return false;
233 } else if (stateName == "filter") {
234 HlslToken filterMode;
235 if (! acceptIdentifier(filterMode)) {
236 expected("filter mode");
237 return false;
238 }
239 } else if (stateName == "addressu" || stateName == "addressv" || stateName == "addressw") {
240 HlslToken addrMode;
241 if (! acceptIdentifier(addrMode)) {
242 expected("texture address mode");
243 return false;
244 }
245 } else if (stateName == "miplodbias") {
246 TIntermTyped* lodBias = nullptr;
247 if (! acceptLiteral(lodBias)) {
248 expected("lod bias");
249 return false;
250 }
251 } else if (stateName == "bordercolor") {
252 return false;
253 } else {
254 expected("texture state");
255 return false;
256 }
257
258 // SEMICOLON
259 if (! acceptTokenClass(EHTokSemicolon)) {
260 expected("semicolon");
261 return false;
262 }
263 } while (true);
264
265 if (! acceptTokenClass(EHTokRightBrace))
266 return false;
267
268 return true;
269}
270
271// sampler_declaration_dx9
272// : SAMPLER identifier EQUAL sampler_type sampler_state
273//
John Kesseniche4821e42016-07-16 10:19:43 -0600274bool HlslGrammar::acceptSamplerDeclarationDX9(TType& /*type*/)
LoopDawg4886f692016-06-29 10:58:58 -0600275{
276 if (! acceptTokenClass(EHTokSampler))
277 return false;
John Kessenichecba76f2017-01-06 00:34:48 -0700278
LoopDawg4886f692016-06-29 10:58:58 -0600279 // TODO: remove this when DX9 style declarations are implemented.
280 unimplemented("Direct3D 9 sampler declaration");
281
282 // read sampler name
283 HlslToken name;
284 if (! acceptIdentifier(name)) {
285 expected("sampler name");
286 return false;
287 }
288
289 if (! acceptTokenClass(EHTokAssign)) {
290 expected("=");
291 return false;
292 }
293
294 return false;
295}
296
John Kesseniche01a9bc2016-03-12 20:11:22 -0700297// declaration
John Kessenich77ea30b2017-09-30 14:34:50 -0600298// : attributes attributed_declaration
299// | NAMESPACE IDENTIFIER LEFT_BRACE declaration_list RIGHT_BRACE
300//
301// attributed_declaration
LoopDawg4886f692016-06-29 10:58:58 -0600302// : sampler_declaration_dx9 post_decls SEMICOLON
John Kessenich054378d2017-06-19 15:13:26 -0600303// | fully_specified_type // for cbuffer/tbuffer
304// | fully_specified_type declarator_list SEMICOLON // for non cbuffer/tbuffer
John Kessenich630dd7d2016-06-12 23:52:12 -0600305// | fully_specified_type identifier function_parameters post_decls compound_statement // function definition
LoopDawg4886f692016-06-29 10:58:58 -0600306// | fully_specified_type identifier sampler_state post_decls compound_statement // sampler definition
John Kessenich5e69ec62016-07-05 00:02:40 -0600307// | typedef declaration
John Kessenich87142c72016-03-12 20:24:24 -0700308//
John Kessenichd5ed0b62016-07-04 17:32:45 -0600309// declarator_list
310// : declarator COMMA declarator COMMA declarator... // zero or more declarators
John Kessenich532543c2016-07-01 19:06:44 -0600311//
John Kessenichd5ed0b62016-07-04 17:32:45 -0600312// declarator
John Kessenich532543c2016-07-01 19:06:44 -0600313// : identifier array_specifier post_decls
314// | identifier array_specifier post_decls EQUAL assignment_expression
John Kessenichd5ed0b62016-07-04 17:32:45 -0600315// | identifier function_parameters post_decls // function prototype
John Kessenich532543c2016-07-01 19:06:44 -0600316//
John Kessenichd5ed0b62016-07-04 17:32:45 -0600317// Parsing has to go pretty far in to know whether it's a variable, prototype, or
318// function definition, so the implementation below doesn't perfectly divide up the grammar
John Kessenich532543c2016-07-01 19:06:44 -0600319// as above. (The 'identifier' in the first item in init_declarator list is the
320// same as 'identifier' for function declarations.)
321//
John Kessenichca71d942017-03-07 20:44:09 -0700322// This can generate more than one subtree, one per initializer or a function body.
323// All initializer subtrees are put in their own aggregate node, making one top-level
324// node for all the initializers. Each function created is a top-level node to grow
325// into the passed-in nodeList.
John Kessenichd016be12016-03-13 11:24:20 -0600326//
John Kessenichca71d942017-03-07 20:44:09 -0700327// If 'nodeList' is passed in as non-null, it must an aggregate to extend for
328// each top-level node the declaration creates. Otherwise, if only one top-level
329// node in generated here, that is want is returned in nodeList.
John Kessenich02467d82017-01-19 15:41:47 -0700330//
John Kessenichca71d942017-03-07 20:44:09 -0700331bool HlslGrammar::acceptDeclaration(TIntermNode*& nodeList)
John Kesseniche01a9bc2016-03-12 20:11:22 -0700332{
John Kessenich8f9fdc92017-03-30 16:22:26 -0600333 // NAMESPACE IDENTIFIER LEFT_BRACE declaration_list RIGHT_BRACE
334 if (acceptTokenClass(EHTokNamespace)) {
335 HlslToken namespaceToken;
336 if (!acceptIdentifier(namespaceToken)) {
337 expected("namespace name");
338 return false;
339 }
340 parseContext.pushNamespace(*namespaceToken.string);
341 if (!acceptTokenClass(EHTokLeftBrace)) {
342 expected("{");
343 return false;
344 }
345 if (!acceptDeclarationList(nodeList)) {
346 expected("declaration list");
347 return false;
348 }
349 if (!acceptTokenClass(EHTokRightBrace)) {
350 expected("}");
351 return false;
352 }
353 parseContext.popNamespace();
354 return true;
355 }
356
John Kessenich54ee28f2017-03-11 14:13:00 -0700357 bool declarator_list = false; // true when processing comma separation
John Kessenichd016be12016-03-13 11:24:20 -0600358
steve-lunarg1868b142016-10-20 13:07:10 -0600359 // attributes
John Kessenich088d52b2017-03-11 17:55:28 -0700360 TFunctionDeclarator declarator;
361 acceptAttributes(declarator.attributes);
steve-lunarg1868b142016-10-20 13:07:10 -0600362
John Kessenich5e69ec62016-07-05 00:02:40 -0600363 // typedef
364 bool typedefDecl = acceptTokenClass(EHTokTypedef);
365
John Kesseniche82061d2016-09-27 14:38:57 -0600366 TType declaredType;
LoopDawg4886f692016-06-29 10:58:58 -0600367
368 // DX9 sampler declaration use a different syntax
John Kessenich267590d2016-08-05 17:34:34 -0600369 // DX9 shaders need to run through HLSL compiler (fxc) via a back compat mode, it isn't going to
370 // be possible to simultaneously compile D3D10+ style shaders and DX9 shaders. If we want to compile DX9
371 // HLSL shaders, this will have to be a master level switch
372 // As such, the sampler keyword in D3D10+ turns into an automatic sampler type, and is commonly used
John Kessenichecba76f2017-01-06 00:34:48 -0700373 // For that reason, this line is commented out
John Kessenichca71d942017-03-07 20:44:09 -0700374 // if (acceptSamplerDeclarationDX9(declaredType))
375 // return true;
LoopDawg4886f692016-06-29 10:58:58 -0600376
John Kessenich2fcdd642017-06-19 15:41:11 -0600377 bool forbidDeclarators = (peekTokenClass(EHTokCBuffer) || peekTokenClass(EHTokTBuffer));
LoopDawg4886f692016-06-29 10:58:58 -0600378 // fully_specified_type
John Kessenich54ee28f2017-03-11 14:13:00 -0700379 if (! acceptFullySpecifiedType(declaredType, nodeList))
John Kessenich87142c72016-03-12 20:24:24 -0700380 return false;
LoopDawg4886f692016-06-29 10:58:58 -0600381
John Kessenich77ea30b2017-09-30 14:34:50 -0600382 parseContext.transferTypeAttributes(declarator.attributes, declaredType);
383
John Kessenich2fcdd642017-06-19 15:41:11 -0600384 // cbuffer and tbuffer end with the closing '}'.
385 // No semicolon is included.
386 if (forbidDeclarators)
387 return true;
388
John Kessenich054378d2017-06-19 15:13:26 -0600389 // declarator_list
390 // : declarator
391 // : identifier
John Kessenichaecd4972016-03-14 10:46:34 -0600392 HlslToken idToken;
John Kessenichca71d942017-03-07 20:44:09 -0700393 TIntermAggregate* initializers = nullptr;
John Kessenichd5ed0b62016-07-04 17:32:45 -0600394 while (acceptIdentifier(idToken)) {
John Kessenich9855bda2017-09-11 21:48:19 -0600395 TString *fullName = idToken.string;
John Kessenich8f9fdc92017-03-30 16:22:26 -0600396 if (parseContext.symbolTable.atGlobalLevel())
397 parseContext.getFullNamespaceName(fullName);
John Kessenich78388722017-03-08 18:53:51 -0700398 if (peekTokenClass(EHTokLeftParen)) {
399 // looks like function parameters
steve-lunargf1e0c872016-10-31 15:13:43 -0600400
John Kessenich78388722017-03-08 18:53:51 -0700401 // Potentially rename shader entry point function. No-op most of the time.
John Kessenich8f9fdc92017-03-30 16:22:26 -0600402 parseContext.renameShaderFunction(fullName);
steve-lunargf1e0c872016-10-31 15:13:43 -0600403
John Kessenich78388722017-03-08 18:53:51 -0700404 // function_parameters
John Kessenich8f9fdc92017-03-30 16:22:26 -0600405 declarator.function = new TFunction(fullName, declaredType);
John Kessenich088d52b2017-03-11 17:55:28 -0700406 if (!acceptFunctionParameters(*declarator.function)) {
John Kessenich78388722017-03-08 18:53:51 -0700407 expected("function parameter list");
408 return false;
409 }
410
John Kessenich630dd7d2016-06-12 23:52:12 -0600411 // post_decls
John Kessenich088d52b2017-03-11 17:55:28 -0700412 acceptPostDecls(declarator.function->getWritableType().getQualifier());
John Kessenich078d7f22016-03-14 10:02:11 -0600413
John Kessenichd5ed0b62016-07-04 17:32:45 -0600414 // compound_statement (function body definition) or just a prototype?
John Kessenich088d52b2017-03-11 17:55:28 -0700415 declarator.loc = token.loc;
John Kessenichd5ed0b62016-07-04 17:32:45 -0600416 if (peekTokenClass(EHTokLeftBrace)) {
John Kessenich54ee28f2017-03-11 14:13:00 -0700417 if (declarator_list)
John Kessenichd5ed0b62016-07-04 17:32:45 -0600418 parseContext.error(idToken.loc, "function body can't be in a declarator list", "{", "");
John Kessenich5e69ec62016-07-05 00:02:40 -0600419 if (typedefDecl)
420 parseContext.error(idToken.loc, "function body can't be in a typedef", "{", "");
John Kessenichb16f7e62017-03-11 19:32:47 -0700421 return acceptFunctionDefinition(declarator, nodeList, nullptr);
John Kessenich5e69ec62016-07-05 00:02:40 -0600422 } else {
423 if (typedefDecl)
424 parseContext.error(idToken.loc, "function typedefs not implemented", "{", "");
John Kessenich088d52b2017-03-11 17:55:28 -0700425 parseContext.handleFunctionDeclarator(declarator.loc, *declarator.function, true);
John Kessenich5e69ec62016-07-05 00:02:40 -0600426 }
John Kessenichd5ed0b62016-07-04 17:32:45 -0600427 } else {
John Kessenich6dbc0a72016-09-27 19:13:05 -0600428 // A variable declaration. Fix the storage qualifier if it's a global.
429 if (declaredType.getQualifier().storage == EvqTemporary && parseContext.symbolTable.atGlobalLevel())
430 declaredType.getQualifier().storage = EvqUniform;
431
John Kessenichecba76f2017-01-06 00:34:48 -0700432 // We can handle multiple variables per type declaration, so
John Kesseniche82061d2016-09-27 14:38:57 -0600433 // the number of types can expand when arrayness is different.
434 TType variableType;
435 variableType.shallowCopy(declaredType);
John Kessenich5f934b02016-03-13 17:58:25 -0600436
John Kesseniche82061d2016-09-27 14:38:57 -0600437 // recognize array_specifier
John Kessenichd5ed0b62016-07-04 17:32:45 -0600438 TArraySizes* arraySizes = nullptr;
439 acceptArraySpecifier(arraySizes);
John Kessenich5f934b02016-03-13 17:58:25 -0600440
John Kesseniche82061d2016-09-27 14:38:57 -0600441 // Fix arrayness in the variableType
442 if (declaredType.isImplicitlySizedArray()) {
443 // Because "int[] a = int[2](...), b = int[3](...)" makes two arrays a and b
444 // of different sizes, for this case sharing the shallow copy of arrayness
445 // with the parseType oversubscribes it, so get a deep copy of the arrayness.
446 variableType.newArraySizes(declaredType.getArraySizes());
447 }
448 if (arraySizes || variableType.isArray()) {
449 // In the most general case, arrayness is potentially coming both from the
450 // declared type and from the variable: "int[] a[];" or just one or the other.
451 // Merge it all to the variableType, so all arrayness is part of the variableType.
452 parseContext.arrayDimMerge(variableType, arraySizes);
453 }
454
LoopDawg4886f692016-06-29 10:58:58 -0600455 // samplers accept immediate sampler state
John Kesseniche82061d2016-09-27 14:38:57 -0600456 if (variableType.getBasicType() == EbtSampler) {
LoopDawg4886f692016-06-29 10:58:58 -0600457 if (! acceptSamplerState())
458 return false;
459 }
460
John Kessenichd5ed0b62016-07-04 17:32:45 -0600461 // post_decls
John Kesseniche82061d2016-09-27 14:38:57 -0600462 acceptPostDecls(variableType.getQualifier());
John Kessenichd5ed0b62016-07-04 17:32:45 -0600463
464 // EQUAL assignment_expression
465 TIntermTyped* expressionNode = nullptr;
466 if (acceptTokenClass(EHTokAssign)) {
John Kessenich5e69ec62016-07-05 00:02:40 -0600467 if (typedefDecl)
468 parseContext.error(idToken.loc, "can't have an initializer", "typedef", "");
John Kessenichd5ed0b62016-07-04 17:32:45 -0600469 if (! acceptAssignmentExpression(expressionNode)) {
470 expected("initializer");
471 return false;
472 }
473 }
474
John Kessenich6dbc0a72016-09-27 19:13:05 -0600475 // TODO: things scoped within an annotation need their own name space;
476 // TODO: strings are not yet handled.
477 if (variableType.getBasicType() != EbtString && parseContext.getAnnotationNestingLevel() == 0) {
478 if (typedefDecl)
John Kessenich8f9fdc92017-03-30 16:22:26 -0600479 parseContext.declareTypedef(idToken.loc, *fullName, variableType);
steve-lunarg8e26feb2017-04-10 08:19:21 -0600480 else if (variableType.getBasicType() == EbtBlock) {
steve-lunarga766b832017-04-25 09:30:28 -0600481 parseContext.declareBlock(idToken.loc, variableType, fullName,
482 variableType.isArray() ? &variableType.getArraySizes() : nullptr);
steve-lunarg8e26feb2017-04-10 08:19:21 -0600483 parseContext.declareStructBufferCounter(idToken.loc, variableType, *fullName);
484 } else {
steve-lunarga2b01a02016-11-28 17:09:54 -0700485 if (variableType.getQualifier().storage == EvqUniform && ! variableType.containsOpaque()) {
John Kessenich6dbc0a72016-09-27 19:13:05 -0600486 // this isn't really an individual variable, but a member of the $Global buffer
John Kessenich8f9fdc92017-03-30 16:22:26 -0600487 parseContext.growGlobalUniformBlock(idToken.loc, variableType, *fullName);
John Kessenich6dbc0a72016-09-27 19:13:05 -0600488 } else {
489 // Declare the variable and add any initializer code to the AST.
490 // The top-level node is always made into an aggregate, as that's
491 // historically how the AST has been.
John Kessenichca71d942017-03-07 20:44:09 -0700492 initializers = intermediate.growAggregate(initializers,
John Kessenich8f9fdc92017-03-30 16:22:26 -0600493 parseContext.declareVariable(idToken.loc, *fullName, variableType, expressionNode),
John Kessenichca71d942017-03-07 20:44:09 -0700494 idToken.loc);
John Kessenich6dbc0a72016-09-27 19:13:05 -0600495 }
496 }
John Kessenich5e69ec62016-07-05 00:02:40 -0600497 }
John Kessenich5f934b02016-03-13 17:58:25 -0600498 }
John Kessenichd5ed0b62016-07-04 17:32:45 -0600499
John Kessenich054378d2017-06-19 15:13:26 -0600500 // COMMA
501 if (acceptTokenClass(EHTokComma))
John Kessenich54ee28f2017-03-11 14:13:00 -0700502 declarator_list = true;
John Kessenich2fcdd642017-06-19 15:41:11 -0600503 }
John Kessenichd5ed0b62016-07-04 17:32:45 -0600504
John Kessenichca71d942017-03-07 20:44:09 -0700505 // The top-level initializer node is a sequence.
506 if (initializers != nullptr)
507 initializers->setOperator(EOpSequence);
508
509 // Add the initializers' aggregate to the nodeList we were handed.
510 if (nodeList)
511 nodeList = intermediate.growAggregate(nodeList, initializers);
512 else
513 nodeList = initializers;
John Kessenich87142c72016-03-12 20:24:24 -0700514
John Kessenich2fcdd642017-06-19 15:41:11 -0600515 // SEMICOLON
John Kessenichd5ed0b62016-07-04 17:32:45 -0600516 if (! acceptTokenClass(EHTokSemicolon)) {
John Kessenich2fcdd642017-06-19 15:41:11 -0600517 // This may have been a false detection of what appeared to be a declaration, but
518 // was actually an assignment such as "float = 4", where "float" is an identifier.
519 // We put the token back to let further parsing happen for cases where that may
520 // happen. This errors on the side of caution, and mostly triggers the error.
John Kessenich13075c62017-04-11 09:51:32 -0600521 if (peek() == EHTokAssign || peek() == EHTokLeftBracket || peek() == EHTokDot || peek() == EHTokComma) {
steve-lunarg5ca85ad2016-12-26 18:45:52 -0700522 recedeToken();
John Kessenich13075c62017-04-11 09:51:32 -0600523 return false;
John Kessenich13075c62017-04-11 09:51:32 -0600524 } else {
steve-lunarg5ca85ad2016-12-26 18:45:52 -0700525 expected(";");
John Kessenich13075c62017-04-11 09:51:32 -0600526 return false;
527 }
John Kessenichd5ed0b62016-07-04 17:32:45 -0600528 }
John Kessenichecba76f2017-01-06 00:34:48 -0700529
John Kesseniche01a9bc2016-03-12 20:11:22 -0700530 return true;
531}
532
John Kessenich5bc4d9a2016-06-20 01:22:38 -0600533// control_declaration
534// : fully_specified_type identifier EQUAL expression
535//
536bool HlslGrammar::acceptControlDeclaration(TIntermNode*& node)
537{
538 node = nullptr;
539
540 // fully_specified_type
541 TType type;
542 if (! acceptFullySpecifiedType(type))
543 return false;
544
John Kessenich057df292017-03-06 18:18:37 -0700545 // filter out type casts
546 if (peekTokenClass(EHTokLeftParen)) {
547 recedeToken();
548 return false;
549 }
550
John Kessenich5bc4d9a2016-06-20 01:22:38 -0600551 // identifier
552 HlslToken idToken;
553 if (! acceptIdentifier(idToken)) {
554 expected("identifier");
555 return false;
556 }
557
558 // EQUAL
559 TIntermTyped* expressionNode = nullptr;
560 if (! acceptTokenClass(EHTokAssign)) {
561 expected("=");
562 return false;
563 }
564
565 // expression
566 if (! acceptExpression(expressionNode)) {
567 expected("initializer");
568 return false;
569 }
570
John Kesseniche82061d2016-09-27 14:38:57 -0600571 node = parseContext.declareVariable(idToken.loc, *idToken.string, type, expressionNode);
John Kessenich5bc4d9a2016-06-20 01:22:38 -0600572
573 return true;
574}
575
John Kessenich87142c72016-03-12 20:24:24 -0700576// fully_specified_type
577// : type_specifier
578// | type_qualifier type_specifier
579//
580bool HlslGrammar::acceptFullySpecifiedType(TType& type)
581{
John Kessenich54ee28f2017-03-11 14:13:00 -0700582 TIntermNode* nodeList = nullptr;
583 return acceptFullySpecifiedType(type, nodeList);
584}
585bool HlslGrammar::acceptFullySpecifiedType(TType& type, TIntermNode*& nodeList)
586{
John Kessenich87142c72016-03-12 20:24:24 -0700587 // type_qualifier
588 TQualifier qualifier;
589 qualifier.clear();
John Kessenichb9e39122016-08-17 10:22:08 -0600590 if (! acceptQualifier(qualifier))
591 return false;
John Kessenich3d157c52016-07-25 16:05:33 -0600592 TSourceLoc loc = token.loc;
John Kessenich87142c72016-03-12 20:24:24 -0700593
594 // type_specifier
John Kessenich54ee28f2017-03-11 14:13:00 -0700595 if (! acceptType(type, nodeList)) {
steve-lunarga64ed3e2016-12-18 17:51:14 -0700596 // If this is not a type, we may have inadvertently gone down a wrong path
steve-lunarg132d3312016-12-19 15:48:01 -0700597 // by parsing "sample", which can be treated like either an identifier or a
steve-lunarga64ed3e2016-12-18 17:51:14 -0700598 // qualifier. Back it out, if we did.
599 if (qualifier.sample)
600 recedeToken();
601
John Kessenich87142c72016-03-12 20:24:24 -0700602 return false;
steve-lunarga64ed3e2016-12-18 17:51:14 -0700603 }
John Kessenich3d157c52016-07-25 16:05:33 -0600604 if (type.getBasicType() == EbtBlock) {
605 // the type was a block, which set some parts of the qualifier
John Kessenich34e7ee72016-09-16 17:10:39 -0600606 parseContext.mergeQualifiers(type.getQualifier(), qualifier);
John Kessenich3d157c52016-07-25 16:05:33 -0600607 // further, it can create an anonymous instance of the block
John Kessenich13075c62017-04-11 09:51:32 -0600608 if (peek() != EHTokIdentifier)
John Kessenich3d157c52016-07-25 16:05:33 -0600609 parseContext.declareBlock(loc, type);
steve-lunargbb0183f2016-10-04 16:58:14 -0600610 } else {
611 // Some qualifiers are set when parsing the type. Merge those with
612 // whatever comes from acceptQualifier.
613 assert(qualifier.layoutFormat == ElfNone);
steve-lunargf49cdf42016-11-17 15:04:20 -0700614
steve-lunargbb0183f2016-10-04 16:58:14 -0600615 qualifier.layoutFormat = type.getQualifier().layoutFormat;
steve-lunarg3226b082016-10-26 19:18:55 -0600616 qualifier.precision = type.getQualifier().precision;
steve-lunargf49cdf42016-11-17 15:04:20 -0700617
steve-lunarg08e0c082017-03-29 20:01:13 -0600618 if (type.getQualifier().storage == EvqOut ||
steve-lunarg5da1f032017-02-12 17:50:28 -0700619 type.getQualifier().storage == EvqBuffer) {
steve-lunargf49cdf42016-11-17 15:04:20 -0700620 qualifier.storage = type.getQualifier().storage;
steve-lunarg5da1f032017-02-12 17:50:28 -0700621 qualifier.readonly = type.getQualifier().readonly;
622 }
steve-lunargf49cdf42016-11-17 15:04:20 -0700623
John Kessenichecd08bc2017-08-07 23:40:05 -0600624 if (type.isBuiltIn())
steve-lunarg08e0c082017-03-29 20:01:13 -0600625 qualifier.builtIn = type.getQualifier().builtIn;
626
steve-lunargf49cdf42016-11-17 15:04:20 -0700627 type.getQualifier() = qualifier;
steve-lunargbb0183f2016-10-04 16:58:14 -0600628 }
John Kessenich87142c72016-03-12 20:24:24 -0700629
630 return true;
631}
632
John Kessenich630dd7d2016-06-12 23:52:12 -0600633// type_qualifier
634// : qualifier qualifier ...
635//
636// Zero or more of these, so this can't return false.
637//
John Kessenichb9e39122016-08-17 10:22:08 -0600638bool HlslGrammar::acceptQualifier(TQualifier& qualifier)
John Kessenich87142c72016-03-12 20:24:24 -0700639{
John Kessenich630dd7d2016-06-12 23:52:12 -0600640 do {
641 switch (peek()) {
642 case EHTokStatic:
John Kessenich6dbc0a72016-09-27 19:13:05 -0600643 qualifier.storage = parseContext.symbolTable.atGlobalLevel() ? EvqGlobal : EvqTemporary;
John Kessenich630dd7d2016-06-12 23:52:12 -0600644 break;
645 case EHTokExtern:
646 // TODO: no meaning in glslang?
647 break;
648 case EHTokShared:
649 // TODO: hint
650 break;
651 case EHTokGroupShared:
652 qualifier.storage = EvqShared;
653 break;
654 case EHTokUniform:
655 qualifier.storage = EvqUniform;
656 break;
657 case EHTokConst:
658 qualifier.storage = EvqConst;
659 break;
660 case EHTokVolatile:
661 qualifier.volatil = true;
662 break;
663 case EHTokLinear:
John Kessenich630dd7d2016-06-12 23:52:12 -0600664 qualifier.smooth = true;
665 break;
666 case EHTokCentroid:
667 qualifier.centroid = true;
668 break;
669 case EHTokNointerpolation:
670 qualifier.flat = true;
671 break;
672 case EHTokNoperspective:
673 qualifier.nopersp = true;
674 break;
675 case EHTokSample:
676 qualifier.sample = true;
677 break;
678 case EHTokRowMajor:
John Kessenich10f7fc72016-09-25 20:25:06 -0600679 qualifier.layoutMatrix = ElmColumnMajor;
John Kessenich630dd7d2016-06-12 23:52:12 -0600680 break;
681 case EHTokColumnMajor:
John Kessenich10f7fc72016-09-25 20:25:06 -0600682 qualifier.layoutMatrix = ElmRowMajor;
John Kessenich630dd7d2016-06-12 23:52:12 -0600683 break;
684 case EHTokPrecise:
685 qualifier.noContraction = true;
686 break;
LoopDawg9249c702016-07-12 20:44:32 -0600687 case EHTokIn:
xavierb1d97532017-06-20 07:49:22 +0200688 qualifier.storage = (qualifier.storage == EvqOut) ? EvqInOut : EvqIn;
LoopDawg9249c702016-07-12 20:44:32 -0600689 break;
690 case EHTokOut:
xavierb1d97532017-06-20 07:49:22 +0200691 qualifier.storage = (qualifier.storage == EvqIn) ? EvqInOut : EvqOut;
LoopDawg9249c702016-07-12 20:44:32 -0600692 break;
693 case EHTokInOut:
694 qualifier.storage = EvqInOut;
695 break;
John Kessenichb9e39122016-08-17 10:22:08 -0600696 case EHTokLayout:
697 if (! acceptLayoutQualifierList(qualifier))
698 return false;
699 continue;
steve-lunarg5da1f032017-02-12 17:50:28 -0700700 case EHTokGloballyCoherent:
701 qualifier.coherent = true;
702 break;
John Kessenich36b218d2017-03-15 09:05:14 -0600703 case EHTokInline:
704 // TODO: map this to SPIR-V function control
705 break;
steve-lunargf49cdf42016-11-17 15:04:20 -0700706
707 // GS geometries: these are specified on stage input variables, and are an error (not verified here)
708 // for output variables.
709 case EHTokPoint:
710 qualifier.storage = EvqIn;
711 if (!parseContext.handleInputGeometry(token.loc, ElgPoints))
712 return false;
713 break;
714 case EHTokLine:
715 qualifier.storage = EvqIn;
716 if (!parseContext.handleInputGeometry(token.loc, ElgLines))
717 return false;
718 break;
719 case EHTokTriangle:
720 qualifier.storage = EvqIn;
721 if (!parseContext.handleInputGeometry(token.loc, ElgTriangles))
722 return false;
723 break;
724 case EHTokLineAdj:
725 qualifier.storage = EvqIn;
726 if (!parseContext.handleInputGeometry(token.loc, ElgLinesAdjacency))
727 return false;
John Kessenichecba76f2017-01-06 00:34:48 -0700728 break;
steve-lunargf49cdf42016-11-17 15:04:20 -0700729 case EHTokTriangleAdj:
730 qualifier.storage = EvqIn;
731 if (!parseContext.handleInputGeometry(token.loc, ElgTrianglesAdjacency))
732 return false;
John Kessenichecba76f2017-01-06 00:34:48 -0700733 break;
734
John Kessenich630dd7d2016-06-12 23:52:12 -0600735 default:
John Kessenichb9e39122016-08-17 10:22:08 -0600736 return true;
John Kessenich630dd7d2016-06-12 23:52:12 -0600737 }
738 advanceToken();
739 } while (true);
John Kessenich87142c72016-03-12 20:24:24 -0700740}
741
John Kessenichb9e39122016-08-17 10:22:08 -0600742// layout_qualifier_list
John Kesseniche3218e22016-09-05 14:37:03 -0600743// : LAYOUT LEFT_PAREN layout_qualifier COMMA layout_qualifier ... RIGHT_PAREN
John Kessenichb9e39122016-08-17 10:22:08 -0600744//
745// layout_qualifier
746// : identifier
John Kessenich841db352016-09-02 21:12:23 -0600747// | identifier EQUAL expression
John Kessenichb9e39122016-08-17 10:22:08 -0600748//
749// Zero or more of these, so this can't return false.
750//
751bool HlslGrammar::acceptLayoutQualifierList(TQualifier& qualifier)
752{
753 if (! acceptTokenClass(EHTokLayout))
754 return false;
755
756 // LEFT_PAREN
757 if (! acceptTokenClass(EHTokLeftParen))
758 return false;
759
760 do {
761 // identifier
762 HlslToken idToken;
763 if (! acceptIdentifier(idToken))
764 break;
765
766 // EQUAL expression
767 if (acceptTokenClass(EHTokAssign)) {
768 TIntermTyped* expr;
769 if (! acceptConditionalExpression(expr)) {
770 expected("expression");
771 return false;
772 }
773 parseContext.setLayoutQualifier(idToken.loc, qualifier, *idToken.string, expr);
774 } else
775 parseContext.setLayoutQualifier(idToken.loc, qualifier, *idToken.string);
776
777 // COMMA
778 if (! acceptTokenClass(EHTokComma))
779 break;
780 } while (true);
781
782 // RIGHT_PAREN
783 if (! acceptTokenClass(EHTokRightParen)) {
784 expected(")");
785 return false;
786 }
787
788 return true;
789}
790
LoopDawg6daaa4f2016-06-23 19:13:48 -0600791// template_type
792// : FLOAT
793// | DOUBLE
794// | INT
795// | DWORD
796// | UINT
797// | BOOL
798//
steve-lunargf49cdf42016-11-17 15:04:20 -0700799bool HlslGrammar::acceptTemplateVecMatBasicType(TBasicType& basicType)
LoopDawg6daaa4f2016-06-23 19:13:48 -0600800{
801 switch (peek()) {
802 case EHTokFloat:
803 basicType = EbtFloat;
804 break;
805 case EHTokDouble:
806 basicType = EbtDouble;
807 break;
808 case EHTokInt:
809 case EHTokDword:
810 basicType = EbtInt;
811 break;
812 case EHTokUint:
813 basicType = EbtUint;
814 break;
815 case EHTokBool:
816 basicType = EbtBool;
817 break;
818 default:
819 return false;
820 }
821
822 advanceToken();
823
824 return true;
825}
826
827// vector_template_type
828// : VECTOR
829// | VECTOR LEFT_ANGLE template_type COMMA integer_literal RIGHT_ANGLE
830//
831bool HlslGrammar::acceptVectorTemplateType(TType& type)
832{
833 if (! acceptTokenClass(EHTokVector))
834 return false;
835
836 if (! acceptTokenClass(EHTokLeftAngle)) {
837 // in HLSL, 'vector' alone means float4.
838 new(&type) TType(EbtFloat, EvqTemporary, 4);
839 return true;
840 }
841
842 TBasicType basicType;
steve-lunargf49cdf42016-11-17 15:04:20 -0700843 if (! acceptTemplateVecMatBasicType(basicType)) {
LoopDawg6daaa4f2016-06-23 19:13:48 -0600844 expected("scalar type");
845 return false;
846 }
847
848 // COMMA
849 if (! acceptTokenClass(EHTokComma)) {
850 expected(",");
851 return false;
852 }
853
854 // integer
855 if (! peekTokenClass(EHTokIntConstant)) {
856 expected("literal integer");
857 return false;
858 }
859
860 TIntermTyped* vecSize;
861 if (! acceptLiteral(vecSize))
862 return false;
863
864 const int vecSizeI = vecSize->getAsConstantUnion()->getConstArray()[0].getIConst();
865
866 new(&type) TType(basicType, EvqTemporary, vecSizeI);
867
868 if (vecSizeI == 1)
869 type.makeVector();
870
871 if (!acceptTokenClass(EHTokRightAngle)) {
872 expected("right angle bracket");
873 return false;
874 }
875
876 return true;
877}
878
879// matrix_template_type
880// : MATRIX
881// | MATRIX LEFT_ANGLE template_type COMMA integer_literal COMMA integer_literal RIGHT_ANGLE
882//
883bool HlslGrammar::acceptMatrixTemplateType(TType& type)
884{
885 if (! acceptTokenClass(EHTokMatrix))
886 return false;
887
888 if (! acceptTokenClass(EHTokLeftAngle)) {
889 // in HLSL, 'matrix' alone means float4x4.
890 new(&type) TType(EbtFloat, EvqTemporary, 0, 4, 4);
891 return true;
892 }
893
894 TBasicType basicType;
steve-lunargf49cdf42016-11-17 15:04:20 -0700895 if (! acceptTemplateVecMatBasicType(basicType)) {
LoopDawg6daaa4f2016-06-23 19:13:48 -0600896 expected("scalar type");
897 return false;
898 }
899
900 // COMMA
901 if (! acceptTokenClass(EHTokComma)) {
902 expected(",");
903 return false;
904 }
905
906 // integer rows
907 if (! peekTokenClass(EHTokIntConstant)) {
908 expected("literal integer");
909 return false;
910 }
911
912 TIntermTyped* rows;
913 if (! acceptLiteral(rows))
914 return false;
915
916 // COMMA
917 if (! acceptTokenClass(EHTokComma)) {
918 expected(",");
919 return false;
920 }
John Kessenichecba76f2017-01-06 00:34:48 -0700921
LoopDawg6daaa4f2016-06-23 19:13:48 -0600922 // integer cols
923 if (! peekTokenClass(EHTokIntConstant)) {
924 expected("literal integer");
925 return false;
926 }
927
928 TIntermTyped* cols;
929 if (! acceptLiteral(cols))
930 return false;
931
932 new(&type) TType(basicType, EvqTemporary, 0,
steve-lunarg297ae212016-08-24 14:36:13 -0600933 rows->getAsConstantUnion()->getConstArray()[0].getIConst(),
934 cols->getAsConstantUnion()->getConstArray()[0].getIConst());
LoopDawg6daaa4f2016-06-23 19:13:48 -0600935
936 if (!acceptTokenClass(EHTokRightAngle)) {
937 expected("right angle bracket");
938 return false;
939 }
940
941 return true;
942}
943
steve-lunargf49cdf42016-11-17 15:04:20 -0700944// layout_geometry
945// : LINESTREAM
946// | POINTSTREAM
947// | TRIANGLESTREAM
948//
949bool HlslGrammar::acceptOutputPrimitiveGeometry(TLayoutGeometry& geometry)
950{
951 // read geometry type
952 const EHlslTokenClass geometryType = peek();
953
954 switch (geometryType) {
955 case EHTokPointStream: geometry = ElgPoints; break;
956 case EHTokLineStream: geometry = ElgLineStrip; break;
957 case EHTokTriangleStream: geometry = ElgTriangleStrip; break;
958 default:
959 return false; // not a layout geometry
960 }
961
962 advanceToken(); // consume the layout keyword
963 return true;
964}
965
steve-lunarg858c9282017-01-07 08:54:10 -0700966// tessellation_decl_type
967// : INPUTPATCH
968// | OUTPUTPATCH
969//
steve-lunarg067eb9b2017-04-01 15:34:48 -0600970bool HlslGrammar::acceptTessellationDeclType(TBuiltInVariable& patchType)
steve-lunarg858c9282017-01-07 08:54:10 -0700971{
972 // read geometry type
973 const EHlslTokenClass tessType = peek();
974
975 switch (tessType) {
steve-lunarg067eb9b2017-04-01 15:34:48 -0600976 case EHTokInputPatch: patchType = EbvInputPatch; break;
977 case EHTokOutputPatch: patchType = EbvOutputPatch; break;
steve-lunarg858c9282017-01-07 08:54:10 -0700978 default:
979 return false; // not a tessellation decl
980 }
981
982 advanceToken(); // consume the keyword
983 return true;
984}
985
986// tessellation_patch_template_type
987// : tessellation_decl_type LEFT_ANGLE type comma integer_literal RIGHT_ANGLE
988//
989bool HlslGrammar::acceptTessellationPatchTemplateType(TType& type)
990{
steve-lunarg067eb9b2017-04-01 15:34:48 -0600991 TBuiltInVariable patchType;
992
993 if (! acceptTessellationDeclType(patchType))
steve-lunarg858c9282017-01-07 08:54:10 -0700994 return false;
995
996 if (! acceptTokenClass(EHTokLeftAngle))
997 return false;
998
999 if (! acceptType(type)) {
1000 expected("tessellation patch type");
1001 return false;
1002 }
1003
1004 if (! acceptTokenClass(EHTokComma))
1005 return false;
1006
1007 // integer size
1008 if (! peekTokenClass(EHTokIntConstant)) {
1009 expected("literal integer");
1010 return false;
1011 }
1012
1013 TIntermTyped* size;
1014 if (! acceptLiteral(size))
1015 return false;
1016
1017 TArraySizes* arraySizes = new TArraySizes;
1018 arraySizes->addInnerSize(size->getAsConstantUnion()->getConstArray()[0].getIConst());
1019 type.newArraySizes(*arraySizes);
steve-lunarg067eb9b2017-04-01 15:34:48 -06001020 type.getQualifier().builtIn = patchType;
steve-lunarg858c9282017-01-07 08:54:10 -07001021
1022 if (! acceptTokenClass(EHTokRightAngle)) {
1023 expected("right angle bracket");
1024 return false;
1025 }
1026
1027 return true;
1028}
1029
steve-lunargf49cdf42016-11-17 15:04:20 -07001030// stream_out_template_type
1031// : output_primitive_geometry_type LEFT_ANGLE type RIGHT_ANGLE
1032//
1033bool HlslGrammar::acceptStreamOutTemplateType(TType& type, TLayoutGeometry& geometry)
1034{
1035 geometry = ElgNone;
1036
1037 if (! acceptOutputPrimitiveGeometry(geometry))
1038 return false;
1039
1040 if (! acceptTokenClass(EHTokLeftAngle))
1041 return false;
John Kessenichecba76f2017-01-06 00:34:48 -07001042
steve-lunargf49cdf42016-11-17 15:04:20 -07001043 if (! acceptType(type)) {
1044 expected("stream output type");
1045 return false;
1046 }
1047
steve-lunarg08e0c082017-03-29 20:01:13 -06001048 type.getQualifier().storage = EvqOut;
1049 type.getQualifier().builtIn = EbvGsOutputStream;
steve-lunargf49cdf42016-11-17 15:04:20 -07001050
1051 if (! acceptTokenClass(EHTokRightAngle)) {
1052 expected("right angle bracket");
1053 return false;
1054 }
1055
1056 return true;
1057}
John Kessenichecba76f2017-01-06 00:34:48 -07001058
John Kessenicha1e2d492016-09-20 13:22:58 -06001059// annotations
1060// : LEFT_ANGLE declaration SEMI_COLON ... declaration SEMICOLON RIGHT_ANGLE
John Kessenich86f71382016-09-19 20:23:18 -06001061//
John Kessenicha1e2d492016-09-20 13:22:58 -06001062bool HlslGrammar::acceptAnnotations(TQualifier&)
John Kessenich86f71382016-09-19 20:23:18 -06001063{
John Kessenicha1e2d492016-09-20 13:22:58 -06001064 if (! acceptTokenClass(EHTokLeftAngle))
John Kessenich86f71382016-09-19 20:23:18 -06001065 return false;
1066
John Kessenicha1e2d492016-09-20 13:22:58 -06001067 // note that we are nesting a name space
1068 parseContext.nestAnnotations();
John Kessenich86f71382016-09-19 20:23:18 -06001069
1070 // declaration SEMI_COLON ... declaration SEMICOLON RIGHT_ANGLE
1071 do {
1072 // eat any extra SEMI_COLON; don't know if the grammar calls for this or not
1073 while (acceptTokenClass(EHTokSemicolon))
1074 ;
1075
1076 if (acceptTokenClass(EHTokRightAngle))
John Kessenicha1e2d492016-09-20 13:22:58 -06001077 break;
John Kessenich86f71382016-09-19 20:23:18 -06001078
1079 // declaration
John Kessenichca71d942017-03-07 20:44:09 -07001080 TIntermNode* node = nullptr;
John Kessenich86f71382016-09-19 20:23:18 -06001081 if (! acceptDeclaration(node)) {
John Kessenicha1e2d492016-09-20 13:22:58 -06001082 expected("declaration in annotation");
John Kessenich86f71382016-09-19 20:23:18 -06001083 return false;
1084 }
1085 } while (true);
John Kessenicha1e2d492016-09-20 13:22:58 -06001086
1087 parseContext.unnestAnnotations();
1088 return true;
John Kessenich86f71382016-09-19 20:23:18 -06001089}
LoopDawg6daaa4f2016-06-23 19:13:48 -06001090
LoopDawg7f93d562017-09-27 09:04:43 -06001091// subpass input type
1092// : SUBPASSINPUT
1093// | SUBPASSINPUT VECTOR LEFT_ANGLE template_type RIGHT_ANGLE
1094// | SUBPASSINPUTMS
1095// | SUBPASSINPUTMS VECTOR LEFT_ANGLE template_type RIGHT_ANGLE
1096bool HlslGrammar::acceptSubpassInputType(TType& type)
1097{
1098 // read subpass type
1099 const EHlslTokenClass subpassInputType = peek();
1100
1101 bool multisample;
1102
1103 switch (subpassInputType) {
1104 case EHTokSubpassInput: multisample = false; break;
1105 case EHTokSubpassInputMS: multisample = true; break;
1106 default:
1107 return false; // not a subpass input declaration
1108 }
1109
1110 advanceToken(); // consume the sampler type keyword
1111
1112 TType subpassType(EbtFloat, EvqUniform, 4); // default type is float4
1113
1114 if (acceptTokenClass(EHTokLeftAngle)) {
1115 if (! acceptType(subpassType)) {
1116 expected("scalar or vector type");
1117 return false;
1118 }
1119
1120 const TBasicType basicRetType = subpassType.getBasicType() ;
1121
1122 switch (basicRetType) {
1123 case EbtFloat:
1124 case EbtUint:
1125 case EbtInt:
1126 case EbtStruct:
1127 break;
1128 default:
1129 unimplemented("basic type in subpass input");
1130 return false;
1131 }
1132
1133 if (! acceptTokenClass(EHTokRightAngle)) {
1134 expected("right angle bracket");
1135 return false;
1136 }
1137 }
1138
1139 const TBasicType subpassBasicType = subpassType.isStruct() ? (*subpassType.getStruct())[0].type->getBasicType()
1140 : subpassType.getBasicType();
1141
1142 TSampler sampler;
1143 sampler.setSubpass(subpassBasicType, multisample);
1144
1145 // Remember the declared return type. Function returns false on error.
1146 if (!parseContext.setTextureReturnType(sampler, subpassType, token.loc))
1147 return false;
1148
1149 type.shallowCopy(TType(sampler, EvqUniform));
1150
1151 return true;
1152}
1153
LoopDawg4886f692016-06-29 10:58:58 -06001154// sampler_type
1155// : SAMPLER
1156// | SAMPLER1D
1157// | SAMPLER2D
1158// | SAMPLER3D
1159// | SAMPLERCUBE
1160// | SAMPLERSTATE
1161// | SAMPLERCOMPARISONSTATE
1162bool HlslGrammar::acceptSamplerType(TType& type)
1163{
1164 // read sampler type
1165 const EHlslTokenClass samplerType = peek();
1166
LoopDawga78b0292016-07-19 14:28:05 -06001167 // TODO: for DX9
LoopDawg5d58fae2016-07-15 11:22:24 -06001168 // TSamplerDim dim = EsdNone;
LoopDawg4886f692016-06-29 10:58:58 -06001169
LoopDawga78b0292016-07-19 14:28:05 -06001170 bool isShadow = false;
1171
LoopDawg4886f692016-06-29 10:58:58 -06001172 switch (samplerType) {
1173 case EHTokSampler: break;
LoopDawg5d58fae2016-07-15 11:22:24 -06001174 case EHTokSampler1d: /*dim = Esd1D*/; break;
1175 case EHTokSampler2d: /*dim = Esd2D*/; break;
1176 case EHTokSampler3d: /*dim = Esd3D*/; break;
1177 case EHTokSamplerCube: /*dim = EsdCube*/; break;
LoopDawg4886f692016-06-29 10:58:58 -06001178 case EHTokSamplerState: break;
LoopDawga78b0292016-07-19 14:28:05 -06001179 case EHTokSamplerComparisonState: isShadow = true; break;
LoopDawg4886f692016-06-29 10:58:58 -06001180 default:
1181 return false; // not a sampler declaration
1182 }
1183
1184 advanceToken(); // consume the sampler type keyword
1185
1186 TArraySizes* arraySizes = nullptr; // TODO: array
LoopDawg4886f692016-06-29 10:58:58 -06001187
1188 TSampler sampler;
LoopDawga78b0292016-07-19 14:28:05 -06001189 sampler.setPureSampler(isShadow);
LoopDawg4886f692016-06-29 10:58:58 -06001190
1191 type.shallowCopy(TType(sampler, EvqUniform, arraySizes));
1192
1193 return true;
1194}
1195
1196// texture_type
1197// | BUFFER
1198// | TEXTURE1D
1199// | TEXTURE1DARRAY
1200// | TEXTURE2D
1201// | TEXTURE2DARRAY
1202// | TEXTURE3D
1203// | TEXTURECUBE
1204// | TEXTURECUBEARRAY
1205// | TEXTURE2DMS
1206// | TEXTURE2DMSARRAY
steve-lunargbb0183f2016-10-04 16:58:14 -06001207// | RWBUFFER
1208// | RWTEXTURE1D
1209// | RWTEXTURE1DARRAY
1210// | RWTEXTURE2D
1211// | RWTEXTURE2DARRAY
1212// | RWTEXTURE3D
1213
LoopDawg4886f692016-06-29 10:58:58 -06001214bool HlslGrammar::acceptTextureType(TType& type)
1215{
1216 const EHlslTokenClass textureType = peek();
1217
1218 TSamplerDim dim = EsdNone;
1219 bool array = false;
1220 bool ms = false;
steve-lunargbb0183f2016-10-04 16:58:14 -06001221 bool image = false;
steve-lunargbf1537f2017-03-31 17:40:09 -06001222 bool combined = true;
LoopDawg4886f692016-06-29 10:58:58 -06001223
1224 switch (textureType) {
steve-lunargbf1537f2017-03-31 17:40:09 -06001225 case EHTokBuffer: dim = EsdBuffer; combined = false; break;
John Kessenichf36542f2017-03-31 14:39:30 -06001226 case EHTokTexture1d: dim = Esd1D; break;
1227 case EHTokTexture1darray: dim = Esd1D; array = true; break;
1228 case EHTokTexture2d: dim = Esd2D; break;
1229 case EHTokTexture2darray: dim = Esd2D; array = true; break;
1230 case EHTokTexture3d: dim = Esd3D; break;
1231 case EHTokTextureCube: dim = EsdCube; break;
1232 case EHTokTextureCubearray: dim = EsdCube; array = true; break;
1233 case EHTokTexture2DMS: dim = Esd2D; ms = true; break;
1234 case EHTokTexture2DMSarray: dim = Esd2D; array = true; ms = true; break;
1235 case EHTokRWBuffer: dim = EsdBuffer; image=true; break;
1236 case EHTokRWTexture1d: dim = Esd1D; array=false; image=true; break;
1237 case EHTokRWTexture1darray: dim = Esd1D; array=true; image=true; break;
1238 case EHTokRWTexture2d: dim = Esd2D; array=false; image=true; break;
1239 case EHTokRWTexture2darray: dim = Esd2D; array=true; image=true; break;
1240 case EHTokRWTexture3d: dim = Esd3D; array=false; image=true; break;
LoopDawg4886f692016-06-29 10:58:58 -06001241 default:
1242 return false; // not a texture declaration
1243 }
1244
1245 advanceToken(); // consume the texture object keyword
1246
1247 TType txType(EbtFloat, EvqUniform, 4); // default type is float4
John Kessenichecba76f2017-01-06 00:34:48 -07001248
LoopDawg4886f692016-06-29 10:58:58 -06001249 TIntermTyped* msCount = nullptr;
1250
steve-lunargbb0183f2016-10-04 16:58:14 -06001251 // texture type: required for multisample types and RWBuffer/RWTextures!
LoopDawg4886f692016-06-29 10:58:58 -06001252 if (acceptTokenClass(EHTokLeftAngle)) {
1253 if (! acceptType(txType)) {
1254 expected("scalar or vector type");
1255 return false;
1256 }
1257
1258 const TBasicType basicRetType = txType.getBasicType() ;
1259
LoopDawg5ee05892017-07-31 13:41:42 -06001260 switch (basicRetType) {
1261 case EbtFloat:
1262 case EbtUint:
1263 case EbtInt:
1264 case EbtStruct:
1265 break;
1266 default:
LoopDawg4886f692016-06-29 10:58:58 -06001267 unimplemented("basic type in texture");
1268 return false;
1269 }
1270
steve-lunargd53f7172016-07-27 15:46:48 -06001271 // Buffers can handle small mats if they fit in 4 components
1272 if (dim == EsdBuffer && txType.isMatrix()) {
1273 if ((txType.getMatrixCols() * txType.getMatrixRows()) > 4) {
1274 expected("components < 4 in matrix buffer type");
1275 return false;
1276 }
1277
1278 // TODO: except we don't handle it yet...
1279 unimplemented("matrix type in buffer");
1280 return false;
1281 }
1282
LoopDawg5ee05892017-07-31 13:41:42 -06001283 if (!txType.isScalar() && !txType.isVector() && !txType.isStruct()) {
1284 expected("scalar, vector, or struct type");
LoopDawg4886f692016-06-29 10:58:58 -06001285 return false;
1286 }
1287
LoopDawg4886f692016-06-29 10:58:58 -06001288 if (ms && acceptTokenClass(EHTokComma)) {
1289 // read sample count for multisample types, if given
1290 if (! peekTokenClass(EHTokIntConstant)) {
1291 expected("multisample count");
1292 return false;
1293 }
1294
1295 if (! acceptLiteral(msCount)) // should never fail, since we just found an integer
1296 return false;
1297 }
1298
1299 if (! acceptTokenClass(EHTokRightAngle)) {
1300 expected("right angle bracket");
1301 return false;
1302 }
1303 } else if (ms) {
1304 expected("texture type for multisample");
1305 return false;
John Kessenichf36542f2017-03-31 14:39:30 -06001306 } else if (image) {
steve-lunargbb0183f2016-10-04 16:58:14 -06001307 expected("type for RWTexture/RWBuffer");
1308 return false;
LoopDawg4886f692016-06-29 10:58:58 -06001309 }
1310
1311 TArraySizes* arraySizes = nullptr;
steve-lunarg4f2da272016-10-10 15:24:57 -06001312 const bool shadow = false; // declared on the sampler
LoopDawg4886f692016-06-29 10:58:58 -06001313
1314 TSampler sampler;
steve-lunargbb0183f2016-10-04 16:58:14 -06001315 TLayoutFormat format = ElfNone;
steve-lunargd53f7172016-07-27 15:46:48 -06001316
steve-lunarg4f2da272016-10-10 15:24:57 -06001317 // Buffer, RWBuffer and RWTexture (images) require a TLayoutFormat. We handle only a limit set.
1318 if (image || dim == EsdBuffer)
1319 format = parseContext.getLayoutFromTxType(token.loc, txType);
steve-lunargbb0183f2016-10-04 16:58:14 -06001320
LoopDawg5ee05892017-07-31 13:41:42 -06001321 const TBasicType txBasicType = txType.isStruct() ? (*txType.getStruct())[0].type->getBasicType()
1322 : txType.getBasicType();
1323
steve-lunargbb0183f2016-10-04 16:58:14 -06001324 // Non-image Buffers are combined
1325 if (dim == EsdBuffer && !image) {
steve-lunargd53f7172016-07-27 15:46:48 -06001326 sampler.set(txType.getBasicType(), dim, array);
1327 } else {
1328 // DX10 textures are separated. TODO: DX9.
steve-lunargbb0183f2016-10-04 16:58:14 -06001329 if (image) {
LoopDawg5ee05892017-07-31 13:41:42 -06001330 sampler.setImage(txBasicType, dim, array, shadow, ms);
steve-lunargbb0183f2016-10-04 16:58:14 -06001331 } else {
LoopDawg5ee05892017-07-31 13:41:42 -06001332 sampler.setTexture(txBasicType, dim, array, shadow, ms);
steve-lunargbb0183f2016-10-04 16:58:14 -06001333 }
steve-lunargd53f7172016-07-27 15:46:48 -06001334 }
steve-lunarg8b0227c2016-10-14 16:40:32 -06001335
LoopDawg5ee05892017-07-31 13:41:42 -06001336 // Remember the declared return type. Function returns false on error.
1337 if (!parseContext.setTextureReturnType(sampler, txType, token.loc))
1338 return false;
John Kessenichecba76f2017-01-06 00:34:48 -07001339
steve-lunargbf1537f2017-03-31 17:40:09 -06001340 // Force uncombined, if necessary
1341 if (!combined)
1342 sampler.combined = false;
1343
LoopDawg4886f692016-06-29 10:58:58 -06001344 type.shallowCopy(TType(sampler, EvqUniform, arraySizes));
steve-lunargbb0183f2016-10-04 16:58:14 -06001345 type.getQualifier().layoutFormat = format;
LoopDawg4886f692016-06-29 10:58:58 -06001346
1347 return true;
1348}
1349
John Kessenich87142c72016-03-12 20:24:24 -07001350// If token is for a type, update 'type' with the type information,
1351// and return true and advance.
1352// Otherwise, return false, and don't advance
1353bool HlslGrammar::acceptType(TType& type)
1354{
John Kessenich54ee28f2017-03-11 14:13:00 -07001355 TIntermNode* nodeList = nullptr;
1356 return acceptType(type, nodeList);
1357}
1358bool HlslGrammar::acceptType(TType& type, TIntermNode*& nodeList)
1359{
steve-lunarg3226b082016-10-26 19:18:55 -06001360 // Basic types for min* types, broken out here in case of future
1361 // changes, e.g, to use native halfs.
1362 static const TBasicType min16float_bt = EbtFloat;
1363 static const TBasicType min10float_bt = EbtFloat;
steve-lunarg5ca85ad2016-12-26 18:45:52 -07001364 static const TBasicType half_bt = EbtFloat;
steve-lunarg3226b082016-10-26 19:18:55 -06001365 static const TBasicType min16int_bt = EbtInt;
1366 static const TBasicType min12int_bt = EbtInt;
1367 static const TBasicType min16uint_bt = EbtUint;
1368
John Kessenich0320d092017-06-13 22:22:52 -06001369 // Some types might have turned into identifiers. Take the hit for checking
1370 // when this has happened.
1371 if (typeIdentifiers) {
1372 const char* identifierString = getTypeString(peek());
1373 if (identifierString != nullptr) {
1374 TString name = identifierString;
1375 // if it's an identifier, it's not a type
1376 if (parseContext.symbolTable.find(name) != nullptr)
1377 return false;
1378 }
1379 }
1380
John Kessenich9c86c6a2016-05-03 22:49:24 -06001381 switch (peek()) {
LoopDawg6daaa4f2016-06-23 19:13:48 -06001382 case EHTokVector:
1383 return acceptVectorTemplateType(type);
1384 break;
1385
1386 case EHTokMatrix:
1387 return acceptMatrixTemplateType(type);
1388 break;
1389
steve-lunargf49cdf42016-11-17 15:04:20 -07001390 case EHTokPointStream: // fall through
1391 case EHTokLineStream: // ...
1392 case EHTokTriangleStream: // ...
1393 {
1394 TLayoutGeometry geometry;
1395 if (! acceptStreamOutTemplateType(type, geometry))
1396 return false;
1397
1398 if (! parseContext.handleOutputGeometry(token.loc, geometry))
1399 return false;
John Kessenichecba76f2017-01-06 00:34:48 -07001400
steve-lunargf49cdf42016-11-17 15:04:20 -07001401 return true;
1402 }
1403
steve-lunarg858c9282017-01-07 08:54:10 -07001404 case EHTokInputPatch: // fall through
1405 case EHTokOutputPatch: // ...
1406 {
1407 if (! acceptTessellationPatchTemplateType(type))
1408 return false;
1409
1410 return true;
1411 }
1412
LoopDawg4886f692016-06-29 10:58:58 -06001413 case EHTokSampler: // fall through
1414 case EHTokSampler1d: // ...
1415 case EHTokSampler2d: // ...
1416 case EHTokSampler3d: // ...
1417 case EHTokSamplerCube: // ...
1418 case EHTokSamplerState: // ...
1419 case EHTokSamplerComparisonState: // ...
1420 return acceptSamplerType(type);
1421 break;
1422
LoopDawg7f93d562017-09-27 09:04:43 -06001423 case EHTokSubpassInput: // fall through
1424 case EHTokSubpassInputMS: // ...
1425 return acceptSubpassInputType(type);
1426 break;
1427
LoopDawg4886f692016-06-29 10:58:58 -06001428 case EHTokBuffer: // fall through
1429 case EHTokTexture1d: // ...
1430 case EHTokTexture1darray: // ...
1431 case EHTokTexture2d: // ...
1432 case EHTokTexture2darray: // ...
1433 case EHTokTexture3d: // ...
1434 case EHTokTextureCube: // ...
1435 case EHTokTextureCubearray: // ...
1436 case EHTokTexture2DMS: // ...
1437 case EHTokTexture2DMSarray: // ...
steve-lunargbb0183f2016-10-04 16:58:14 -06001438 case EHTokRWTexture1d: // ...
1439 case EHTokRWTexture1darray: // ...
1440 case EHTokRWTexture2d: // ...
1441 case EHTokRWTexture2darray: // ...
1442 case EHTokRWTexture3d: // ...
1443 case EHTokRWBuffer: // ...
LoopDawg4886f692016-06-29 10:58:58 -06001444 return acceptTextureType(type);
1445 break;
1446
steve-lunarg5da1f032017-02-12 17:50:28 -07001447 case EHTokAppendStructuredBuffer:
1448 case EHTokByteAddressBuffer:
1449 case EHTokConsumeStructuredBuffer:
1450 case EHTokRWByteAddressBuffer:
1451 case EHTokRWStructuredBuffer:
1452 case EHTokStructuredBuffer:
1453 return acceptStructBufferType(type);
1454 break;
1455
steve-lunarga766b832017-04-25 09:30:28 -06001456 case EHTokConstantBuffer:
1457 return acceptConstantBufferType(type);
1458
John Kessenich27ffb292017-03-03 17:01:01 -07001459 case EHTokClass:
John Kesseniche6e74942016-06-11 16:43:14 -06001460 case EHTokStruct:
John Kessenich3d157c52016-07-25 16:05:33 -06001461 case EHTokCBuffer:
1462 case EHTokTBuffer:
John Kessenich54ee28f2017-03-11 14:13:00 -07001463 return acceptStruct(type, nodeList);
John Kesseniche6e74942016-06-11 16:43:14 -06001464
1465 case EHTokIdentifier:
1466 // An identifier could be for a user-defined type.
1467 // Note we cache the symbol table lookup, to save for a later rule
1468 // when this is not a type.
John Kessenichf4ba25e2017-03-21 18:35:04 -06001469 if (parseContext.lookupUserType(*token.string, type) != nullptr) {
John Kesseniche6e74942016-06-11 16:43:14 -06001470 advanceToken();
1471 return true;
1472 } else
1473 return false;
1474
John Kessenich71351de2016-06-08 12:50:56 -06001475 case EHTokVoid:
1476 new(&type) TType(EbtVoid);
John Kessenich87142c72016-03-12 20:24:24 -07001477 break;
John Kessenich71351de2016-06-08 12:50:56 -06001478
John Kessenicha1e2d492016-09-20 13:22:58 -06001479 case EHTokString:
1480 new(&type) TType(EbtString);
1481 break;
1482
John Kessenich87142c72016-03-12 20:24:24 -07001483 case EHTokFloat:
John Kessenich8d72f1a2016-05-20 12:06:03 -06001484 new(&type) TType(EbtFloat);
1485 break;
John Kessenich87142c72016-03-12 20:24:24 -07001486 case EHTokFloat1:
1487 new(&type) TType(EbtFloat);
John Kessenich8d72f1a2016-05-20 12:06:03 -06001488 type.makeVector();
John Kessenich87142c72016-03-12 20:24:24 -07001489 break;
John Kessenich87142c72016-03-12 20:24:24 -07001490 case EHTokFloat2:
1491 new(&type) TType(EbtFloat, EvqTemporary, 2);
1492 break;
1493 case EHTokFloat3:
1494 new(&type) TType(EbtFloat, EvqTemporary, 3);
1495 break;
1496 case EHTokFloat4:
1497 new(&type) TType(EbtFloat, EvqTemporary, 4);
1498 break;
1499
John Kessenich71351de2016-06-08 12:50:56 -06001500 case EHTokDouble:
1501 new(&type) TType(EbtDouble);
1502 break;
1503 case EHTokDouble1:
1504 new(&type) TType(EbtDouble);
1505 type.makeVector();
1506 break;
1507 case EHTokDouble2:
1508 new(&type) TType(EbtDouble, EvqTemporary, 2);
1509 break;
1510 case EHTokDouble3:
1511 new(&type) TType(EbtDouble, EvqTemporary, 3);
1512 break;
1513 case EHTokDouble4:
1514 new(&type) TType(EbtDouble, EvqTemporary, 4);
1515 break;
1516
1517 case EHTokInt:
1518 case EHTokDword:
1519 new(&type) TType(EbtInt);
1520 break;
1521 case EHTokInt1:
1522 new(&type) TType(EbtInt);
1523 type.makeVector();
1524 break;
John Kessenich87142c72016-03-12 20:24:24 -07001525 case EHTokInt2:
1526 new(&type) TType(EbtInt, EvqTemporary, 2);
1527 break;
1528 case EHTokInt3:
1529 new(&type) TType(EbtInt, EvqTemporary, 3);
1530 break;
1531 case EHTokInt4:
1532 new(&type) TType(EbtInt, EvqTemporary, 4);
1533 break;
1534
John Kessenich71351de2016-06-08 12:50:56 -06001535 case EHTokUint:
1536 new(&type) TType(EbtUint);
1537 break;
1538 case EHTokUint1:
1539 new(&type) TType(EbtUint);
1540 type.makeVector();
1541 break;
1542 case EHTokUint2:
1543 new(&type) TType(EbtUint, EvqTemporary, 2);
1544 break;
1545 case EHTokUint3:
1546 new(&type) TType(EbtUint, EvqTemporary, 3);
1547 break;
1548 case EHTokUint4:
1549 new(&type) TType(EbtUint, EvqTemporary, 4);
1550 break;
1551
1552 case EHTokBool:
1553 new(&type) TType(EbtBool);
1554 break;
1555 case EHTokBool1:
1556 new(&type) TType(EbtBool);
1557 type.makeVector();
1558 break;
John Kessenich87142c72016-03-12 20:24:24 -07001559 case EHTokBool2:
1560 new(&type) TType(EbtBool, EvqTemporary, 2);
1561 break;
1562 case EHTokBool3:
1563 new(&type) TType(EbtBool, EvqTemporary, 3);
1564 break;
1565 case EHTokBool4:
1566 new(&type) TType(EbtBool, EvqTemporary, 4);
1567 break;
1568
steve-lunarg5ca85ad2016-12-26 18:45:52 -07001569 case EHTokHalf:
John Kessenich96f65522017-06-06 23:35:25 -06001570 new(&type) TType(half_bt, EvqTemporary);
steve-lunarg5ca85ad2016-12-26 18:45:52 -07001571 break;
1572 case EHTokHalf1:
John Kessenich96f65522017-06-06 23:35:25 -06001573 new(&type) TType(half_bt, EvqTemporary);
steve-lunarg5ca85ad2016-12-26 18:45:52 -07001574 type.makeVector();
1575 break;
1576 case EHTokHalf2:
John Kessenich96f65522017-06-06 23:35:25 -06001577 new(&type) TType(half_bt, EvqTemporary, 2);
steve-lunarg5ca85ad2016-12-26 18:45:52 -07001578 break;
1579 case EHTokHalf3:
John Kessenich96f65522017-06-06 23:35:25 -06001580 new(&type) TType(half_bt, EvqTemporary, 3);
steve-lunarg5ca85ad2016-12-26 18:45:52 -07001581 break;
1582 case EHTokHalf4:
John Kessenich96f65522017-06-06 23:35:25 -06001583 new(&type) TType(half_bt, EvqTemporary, 4);
steve-lunarg5ca85ad2016-12-26 18:45:52 -07001584 break;
John Kessenichecba76f2017-01-06 00:34:48 -07001585
steve-lunarg3226b082016-10-26 19:18:55 -06001586 case EHTokMin16float:
1587 new(&type) TType(min16float_bt, EvqTemporary, EpqMedium);
1588 break;
1589 case EHTokMin16float1:
1590 new(&type) TType(min16float_bt, EvqTemporary, EpqMedium);
1591 type.makeVector();
1592 break;
1593 case EHTokMin16float2:
1594 new(&type) TType(min16float_bt, EvqTemporary, EpqMedium, 2);
1595 break;
1596 case EHTokMin16float3:
1597 new(&type) TType(min16float_bt, EvqTemporary, EpqMedium, 3);
1598 break;
1599 case EHTokMin16float4:
1600 new(&type) TType(min16float_bt, EvqTemporary, EpqMedium, 4);
1601 break;
John Kessenichecba76f2017-01-06 00:34:48 -07001602
steve-lunarg3226b082016-10-26 19:18:55 -06001603 case EHTokMin10float:
1604 new(&type) TType(min10float_bt, EvqTemporary, EpqMedium);
1605 break;
1606 case EHTokMin10float1:
1607 new(&type) TType(min10float_bt, EvqTemporary, EpqMedium);
1608 type.makeVector();
1609 break;
1610 case EHTokMin10float2:
1611 new(&type) TType(min10float_bt, EvqTemporary, EpqMedium, 2);
1612 break;
1613 case EHTokMin10float3:
1614 new(&type) TType(min10float_bt, EvqTemporary, EpqMedium, 3);
1615 break;
1616 case EHTokMin10float4:
1617 new(&type) TType(min10float_bt, EvqTemporary, EpqMedium, 4);
1618 break;
John Kessenichecba76f2017-01-06 00:34:48 -07001619
steve-lunarg3226b082016-10-26 19:18:55 -06001620 case EHTokMin16int:
1621 new(&type) TType(min16int_bt, EvqTemporary, EpqMedium);
1622 break;
1623 case EHTokMin16int1:
1624 new(&type) TType(min16int_bt, EvqTemporary, EpqMedium);
1625 type.makeVector();
1626 break;
1627 case EHTokMin16int2:
1628 new(&type) TType(min16int_bt, EvqTemporary, EpqMedium, 2);
1629 break;
1630 case EHTokMin16int3:
1631 new(&type) TType(min16int_bt, EvqTemporary, EpqMedium, 3);
1632 break;
1633 case EHTokMin16int4:
1634 new(&type) TType(min16int_bt, EvqTemporary, EpqMedium, 4);
1635 break;
John Kessenichecba76f2017-01-06 00:34:48 -07001636
steve-lunarg3226b082016-10-26 19:18:55 -06001637 case EHTokMin12int:
1638 new(&type) TType(min12int_bt, EvqTemporary, EpqMedium);
1639 break;
1640 case EHTokMin12int1:
1641 new(&type) TType(min12int_bt, EvqTemporary, EpqMedium);
1642 type.makeVector();
1643 break;
1644 case EHTokMin12int2:
1645 new(&type) TType(min12int_bt, EvqTemporary, EpqMedium, 2);
1646 break;
1647 case EHTokMin12int3:
1648 new(&type) TType(min12int_bt, EvqTemporary, EpqMedium, 3);
1649 break;
1650 case EHTokMin12int4:
1651 new(&type) TType(min12int_bt, EvqTemporary, EpqMedium, 4);
1652 break;
John Kessenichecba76f2017-01-06 00:34:48 -07001653
steve-lunarg3226b082016-10-26 19:18:55 -06001654 case EHTokMin16uint:
1655 new(&type) TType(min16uint_bt, EvqTemporary, EpqMedium);
1656 break;
1657 case EHTokMin16uint1:
1658 new(&type) TType(min16uint_bt, EvqTemporary, EpqMedium);
1659 type.makeVector();
1660 break;
1661 case EHTokMin16uint2:
1662 new(&type) TType(min16uint_bt, EvqTemporary, EpqMedium, 2);
1663 break;
1664 case EHTokMin16uint3:
1665 new(&type) TType(min16uint_bt, EvqTemporary, EpqMedium, 3);
1666 break;
1667 case EHTokMin16uint4:
1668 new(&type) TType(min16uint_bt, EvqTemporary, EpqMedium, 4);
1669 break;
1670
John Kessenich0133c122016-05-20 12:17:26 -06001671 case EHTokInt1x1:
1672 new(&type) TType(EbtInt, EvqTemporary, 0, 1, 1);
1673 break;
1674 case EHTokInt1x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001675 new(&type) TType(EbtInt, EvqTemporary, 0, 1, 2);
John Kessenich0133c122016-05-20 12:17:26 -06001676 break;
1677 case EHTokInt1x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001678 new(&type) TType(EbtInt, EvqTemporary, 0, 1, 3);
John Kessenich0133c122016-05-20 12:17:26 -06001679 break;
1680 case EHTokInt1x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001681 new(&type) TType(EbtInt, EvqTemporary, 0, 1, 4);
John Kessenich0133c122016-05-20 12:17:26 -06001682 break;
1683 case EHTokInt2x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001684 new(&type) TType(EbtInt, EvqTemporary, 0, 2, 1);
John Kessenich0133c122016-05-20 12:17:26 -06001685 break;
1686 case EHTokInt2x2:
1687 new(&type) TType(EbtInt, EvqTemporary, 0, 2, 2);
1688 break;
1689 case EHTokInt2x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001690 new(&type) TType(EbtInt, EvqTemporary, 0, 2, 3);
John Kessenich0133c122016-05-20 12:17:26 -06001691 break;
1692 case EHTokInt2x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001693 new(&type) TType(EbtInt, EvqTemporary, 0, 2, 4);
John Kessenich0133c122016-05-20 12:17:26 -06001694 break;
1695 case EHTokInt3x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001696 new(&type) TType(EbtInt, EvqTemporary, 0, 3, 1);
John Kessenich0133c122016-05-20 12:17:26 -06001697 break;
1698 case EHTokInt3x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001699 new(&type) TType(EbtInt, EvqTemporary, 0, 3, 2);
John Kessenich0133c122016-05-20 12:17:26 -06001700 break;
1701 case EHTokInt3x3:
1702 new(&type) TType(EbtInt, EvqTemporary, 0, 3, 3);
1703 break;
1704 case EHTokInt3x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001705 new(&type) TType(EbtInt, EvqTemporary, 0, 3, 4);
John Kessenich0133c122016-05-20 12:17:26 -06001706 break;
1707 case EHTokInt4x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001708 new(&type) TType(EbtInt, EvqTemporary, 0, 4, 1);
John Kessenich0133c122016-05-20 12:17:26 -06001709 break;
1710 case EHTokInt4x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001711 new(&type) TType(EbtInt, EvqTemporary, 0, 4, 2);
John Kessenich0133c122016-05-20 12:17:26 -06001712 break;
1713 case EHTokInt4x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001714 new(&type) TType(EbtInt, EvqTemporary, 0, 4, 3);
John Kessenich0133c122016-05-20 12:17:26 -06001715 break;
1716 case EHTokInt4x4:
1717 new(&type) TType(EbtInt, EvqTemporary, 0, 4, 4);
1718 break;
1719
John Kessenich71351de2016-06-08 12:50:56 -06001720 case EHTokUint1x1:
1721 new(&type) TType(EbtUint, EvqTemporary, 0, 1, 1);
1722 break;
1723 case EHTokUint1x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001724 new(&type) TType(EbtUint, EvqTemporary, 0, 1, 2);
John Kessenich71351de2016-06-08 12:50:56 -06001725 break;
1726 case EHTokUint1x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001727 new(&type) TType(EbtUint, EvqTemporary, 0, 1, 3);
John Kessenich71351de2016-06-08 12:50:56 -06001728 break;
1729 case EHTokUint1x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001730 new(&type) TType(EbtUint, EvqTemporary, 0, 1, 4);
John Kessenich71351de2016-06-08 12:50:56 -06001731 break;
1732 case EHTokUint2x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001733 new(&type) TType(EbtUint, EvqTemporary, 0, 2, 1);
John Kessenich71351de2016-06-08 12:50:56 -06001734 break;
1735 case EHTokUint2x2:
1736 new(&type) TType(EbtUint, EvqTemporary, 0, 2, 2);
1737 break;
1738 case EHTokUint2x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001739 new(&type) TType(EbtUint, EvqTemporary, 0, 2, 3);
John Kessenich71351de2016-06-08 12:50:56 -06001740 break;
1741 case EHTokUint2x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001742 new(&type) TType(EbtUint, EvqTemporary, 0, 2, 4);
John Kessenich71351de2016-06-08 12:50:56 -06001743 break;
1744 case EHTokUint3x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001745 new(&type) TType(EbtUint, EvqTemporary, 0, 3, 1);
John Kessenich71351de2016-06-08 12:50:56 -06001746 break;
1747 case EHTokUint3x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001748 new(&type) TType(EbtUint, EvqTemporary, 0, 3, 2);
John Kessenich71351de2016-06-08 12:50:56 -06001749 break;
1750 case EHTokUint3x3:
1751 new(&type) TType(EbtUint, EvqTemporary, 0, 3, 3);
1752 break;
1753 case EHTokUint3x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001754 new(&type) TType(EbtUint, EvqTemporary, 0, 3, 4);
John Kessenich71351de2016-06-08 12:50:56 -06001755 break;
1756 case EHTokUint4x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001757 new(&type) TType(EbtUint, EvqTemporary, 0, 4, 1);
John Kessenich71351de2016-06-08 12:50:56 -06001758 break;
1759 case EHTokUint4x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001760 new(&type) TType(EbtUint, EvqTemporary, 0, 4, 2);
John Kessenich71351de2016-06-08 12:50:56 -06001761 break;
1762 case EHTokUint4x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001763 new(&type) TType(EbtUint, EvqTemporary, 0, 4, 3);
John Kessenich71351de2016-06-08 12:50:56 -06001764 break;
1765 case EHTokUint4x4:
1766 new(&type) TType(EbtUint, EvqTemporary, 0, 4, 4);
1767 break;
1768
1769 case EHTokBool1x1:
1770 new(&type) TType(EbtBool, EvqTemporary, 0, 1, 1);
1771 break;
1772 case EHTokBool1x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001773 new(&type) TType(EbtBool, EvqTemporary, 0, 1, 2);
John Kessenich71351de2016-06-08 12:50:56 -06001774 break;
1775 case EHTokBool1x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001776 new(&type) TType(EbtBool, EvqTemporary, 0, 1, 3);
John Kessenich71351de2016-06-08 12:50:56 -06001777 break;
1778 case EHTokBool1x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001779 new(&type) TType(EbtBool, EvqTemporary, 0, 1, 4);
John Kessenich71351de2016-06-08 12:50:56 -06001780 break;
1781 case EHTokBool2x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001782 new(&type) TType(EbtBool, EvqTemporary, 0, 2, 1);
John Kessenich71351de2016-06-08 12:50:56 -06001783 break;
1784 case EHTokBool2x2:
1785 new(&type) TType(EbtBool, EvqTemporary, 0, 2, 2);
1786 break;
1787 case EHTokBool2x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001788 new(&type) TType(EbtBool, EvqTemporary, 0, 2, 3);
John Kessenich71351de2016-06-08 12:50:56 -06001789 break;
1790 case EHTokBool2x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001791 new(&type) TType(EbtBool, EvqTemporary, 0, 2, 4);
John Kessenich71351de2016-06-08 12:50:56 -06001792 break;
1793 case EHTokBool3x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001794 new(&type) TType(EbtBool, EvqTemporary, 0, 3, 1);
John Kessenich71351de2016-06-08 12:50:56 -06001795 break;
1796 case EHTokBool3x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001797 new(&type) TType(EbtBool, EvqTemporary, 0, 3, 2);
John Kessenich71351de2016-06-08 12:50:56 -06001798 break;
1799 case EHTokBool3x3:
1800 new(&type) TType(EbtBool, EvqTemporary, 0, 3, 3);
1801 break;
1802 case EHTokBool3x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001803 new(&type) TType(EbtBool, EvqTemporary, 0, 3, 4);
John Kessenich71351de2016-06-08 12:50:56 -06001804 break;
1805 case EHTokBool4x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001806 new(&type) TType(EbtBool, EvqTemporary, 0, 4, 1);
John Kessenich71351de2016-06-08 12:50:56 -06001807 break;
1808 case EHTokBool4x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001809 new(&type) TType(EbtBool, EvqTemporary, 0, 4, 2);
John Kessenich71351de2016-06-08 12:50:56 -06001810 break;
1811 case EHTokBool4x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001812 new(&type) TType(EbtBool, EvqTemporary, 0, 4, 3);
John Kessenich71351de2016-06-08 12:50:56 -06001813 break;
1814 case EHTokBool4x4:
1815 new(&type) TType(EbtBool, EvqTemporary, 0, 4, 4);
1816 break;
1817
John Kessenich0133c122016-05-20 12:17:26 -06001818 case EHTokFloat1x1:
1819 new(&type) TType(EbtFloat, EvqTemporary, 0, 1, 1);
1820 break;
1821 case EHTokFloat1x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001822 new(&type) TType(EbtFloat, EvqTemporary, 0, 1, 2);
John Kessenich0133c122016-05-20 12:17:26 -06001823 break;
1824 case EHTokFloat1x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001825 new(&type) TType(EbtFloat, EvqTemporary, 0, 1, 3);
John Kessenich0133c122016-05-20 12:17:26 -06001826 break;
1827 case EHTokFloat1x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001828 new(&type) TType(EbtFloat, EvqTemporary, 0, 1, 4);
John Kessenich0133c122016-05-20 12:17:26 -06001829 break;
1830 case EHTokFloat2x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001831 new(&type) TType(EbtFloat, EvqTemporary, 0, 2, 1);
John Kessenich0133c122016-05-20 12:17:26 -06001832 break;
John Kessenich87142c72016-03-12 20:24:24 -07001833 case EHTokFloat2x2:
1834 new(&type) TType(EbtFloat, EvqTemporary, 0, 2, 2);
1835 break;
1836 case EHTokFloat2x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001837 new(&type) TType(EbtFloat, EvqTemporary, 0, 2, 3);
John Kessenich87142c72016-03-12 20:24:24 -07001838 break;
1839 case EHTokFloat2x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001840 new(&type) TType(EbtFloat, EvqTemporary, 0, 2, 4);
John Kessenich87142c72016-03-12 20:24:24 -07001841 break;
John Kessenich0133c122016-05-20 12:17:26 -06001842 case EHTokFloat3x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001843 new(&type) TType(EbtFloat, EvqTemporary, 0, 3, 1);
John Kessenich0133c122016-05-20 12:17:26 -06001844 break;
John Kessenich87142c72016-03-12 20:24:24 -07001845 case EHTokFloat3x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001846 new(&type) TType(EbtFloat, EvqTemporary, 0, 3, 2);
John Kessenich87142c72016-03-12 20:24:24 -07001847 break;
1848 case EHTokFloat3x3:
1849 new(&type) TType(EbtFloat, EvqTemporary, 0, 3, 3);
1850 break;
1851 case EHTokFloat3x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001852 new(&type) TType(EbtFloat, EvqTemporary, 0, 3, 4);
John Kessenich87142c72016-03-12 20:24:24 -07001853 break;
John Kessenich0133c122016-05-20 12:17:26 -06001854 case EHTokFloat4x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001855 new(&type) TType(EbtFloat, EvqTemporary, 0, 4, 1);
John Kessenich0133c122016-05-20 12:17:26 -06001856 break;
John Kessenich87142c72016-03-12 20:24:24 -07001857 case EHTokFloat4x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001858 new(&type) TType(EbtFloat, EvqTemporary, 0, 4, 2);
John Kessenich87142c72016-03-12 20:24:24 -07001859 break;
1860 case EHTokFloat4x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001861 new(&type) TType(EbtFloat, EvqTemporary, 0, 4, 3);
John Kessenich87142c72016-03-12 20:24:24 -07001862 break;
1863 case EHTokFloat4x4:
1864 new(&type) TType(EbtFloat, EvqTemporary, 0, 4, 4);
1865 break;
1866
John Kessenich96f65522017-06-06 23:35:25 -06001867 case EHTokHalf1x1:
1868 new(&type) TType(half_bt, EvqTemporary, 0, 1, 1);
1869 break;
1870 case EHTokHalf1x2:
1871 new(&type) TType(half_bt, EvqTemporary, 0, 1, 2);
1872 break;
1873 case EHTokHalf1x3:
1874 new(&type) TType(half_bt, EvqTemporary, 0, 1, 3);
1875 break;
1876 case EHTokHalf1x4:
1877 new(&type) TType(half_bt, EvqTemporary, 0, 1, 4);
1878 break;
1879 case EHTokHalf2x1:
1880 new(&type) TType(half_bt, EvqTemporary, 0, 2, 1);
1881 break;
1882 case EHTokHalf2x2:
1883 new(&type) TType(half_bt, EvqTemporary, 0, 2, 2);
1884 break;
1885 case EHTokHalf2x3:
1886 new(&type) TType(half_bt, EvqTemporary, 0, 2, 3);
1887 break;
1888 case EHTokHalf2x4:
1889 new(&type) TType(half_bt, EvqTemporary, 0, 2, 4);
1890 break;
1891 case EHTokHalf3x1:
1892 new(&type) TType(half_bt, EvqTemporary, 0, 3, 1);
1893 break;
1894 case EHTokHalf3x2:
1895 new(&type) TType(half_bt, EvqTemporary, 0, 3, 2);
1896 break;
1897 case EHTokHalf3x3:
1898 new(&type) TType(half_bt, EvqTemporary, 0, 3, 3);
1899 break;
1900 case EHTokHalf3x4:
1901 new(&type) TType(half_bt, EvqTemporary, 0, 3, 4);
1902 break;
1903 case EHTokHalf4x1:
1904 new(&type) TType(half_bt, EvqTemporary, 0, 4, 1);
1905 break;
1906 case EHTokHalf4x2:
1907 new(&type) TType(half_bt, EvqTemporary, 0, 4, 2);
1908 break;
1909 case EHTokHalf4x3:
1910 new(&type) TType(half_bt, EvqTemporary, 0, 4, 3);
1911 break;
1912 case EHTokHalf4x4:
1913 new(&type) TType(half_bt, EvqTemporary, 0, 4, 4);
1914 break;
1915
John Kessenich0133c122016-05-20 12:17:26 -06001916 case EHTokDouble1x1:
1917 new(&type) TType(EbtDouble, EvqTemporary, 0, 1, 1);
1918 break;
1919 case EHTokDouble1x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001920 new(&type) TType(EbtDouble, EvqTemporary, 0, 1, 2);
John Kessenich0133c122016-05-20 12:17:26 -06001921 break;
1922 case EHTokDouble1x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001923 new(&type) TType(EbtDouble, EvqTemporary, 0, 1, 3);
John Kessenich0133c122016-05-20 12:17:26 -06001924 break;
1925 case EHTokDouble1x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001926 new(&type) TType(EbtDouble, EvqTemporary, 0, 1, 4);
John Kessenich0133c122016-05-20 12:17:26 -06001927 break;
1928 case EHTokDouble2x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001929 new(&type) TType(EbtDouble, EvqTemporary, 0, 2, 1);
John Kessenich0133c122016-05-20 12:17:26 -06001930 break;
1931 case EHTokDouble2x2:
1932 new(&type) TType(EbtDouble, EvqTemporary, 0, 2, 2);
1933 break;
1934 case EHTokDouble2x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001935 new(&type) TType(EbtDouble, EvqTemporary, 0, 2, 3);
John Kessenich0133c122016-05-20 12:17:26 -06001936 break;
1937 case EHTokDouble2x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001938 new(&type) TType(EbtDouble, EvqTemporary, 0, 2, 4);
John Kessenich0133c122016-05-20 12:17:26 -06001939 break;
1940 case EHTokDouble3x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001941 new(&type) TType(EbtDouble, EvqTemporary, 0, 3, 1);
John Kessenich0133c122016-05-20 12:17:26 -06001942 break;
1943 case EHTokDouble3x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001944 new(&type) TType(EbtDouble, EvqTemporary, 0, 3, 2);
John Kessenich0133c122016-05-20 12:17:26 -06001945 break;
1946 case EHTokDouble3x3:
1947 new(&type) TType(EbtDouble, EvqTemporary, 0, 3, 3);
1948 break;
1949 case EHTokDouble3x4:
steve-lunarg297ae212016-08-24 14:36:13 -06001950 new(&type) TType(EbtDouble, EvqTemporary, 0, 3, 4);
John Kessenich0133c122016-05-20 12:17:26 -06001951 break;
1952 case EHTokDouble4x1:
steve-lunarg297ae212016-08-24 14:36:13 -06001953 new(&type) TType(EbtDouble, EvqTemporary, 0, 4, 1);
John Kessenich0133c122016-05-20 12:17:26 -06001954 break;
1955 case EHTokDouble4x2:
steve-lunarg297ae212016-08-24 14:36:13 -06001956 new(&type) TType(EbtDouble, EvqTemporary, 0, 4, 2);
John Kessenich0133c122016-05-20 12:17:26 -06001957 break;
1958 case EHTokDouble4x3:
steve-lunarg297ae212016-08-24 14:36:13 -06001959 new(&type) TType(EbtDouble, EvqTemporary, 0, 4, 3);
John Kessenich0133c122016-05-20 12:17:26 -06001960 break;
1961 case EHTokDouble4x4:
1962 new(&type) TType(EbtDouble, EvqTemporary, 0, 4, 4);
1963 break;
1964
John Kessenich87142c72016-03-12 20:24:24 -07001965 default:
1966 return false;
1967 }
1968
1969 advanceToken();
1970
1971 return true;
1972}
1973
John Kesseniche6e74942016-06-11 16:43:14 -06001974// struct
John Kessenich3d157c52016-07-25 16:05:33 -06001975// : struct_type IDENTIFIER post_decls LEFT_BRACE struct_declaration_list RIGHT_BRACE
1976// | struct_type post_decls LEFT_BRACE struct_declaration_list RIGHT_BRACE
John Kessenich854fe242017-03-02 14:30:59 -07001977// | struct_type IDENTIFIER // use of previously declared struct type
John Kessenich3d157c52016-07-25 16:05:33 -06001978//
1979// struct_type
1980// : STRUCT
John Kessenich27ffb292017-03-03 17:01:01 -07001981// | CLASS
John Kessenich3d157c52016-07-25 16:05:33 -06001982// | CBUFFER
1983// | TBUFFER
John Kesseniche6e74942016-06-11 16:43:14 -06001984//
John Kessenich54ee28f2017-03-11 14:13:00 -07001985bool HlslGrammar::acceptStruct(TType& type, TIntermNode*& nodeList)
John Kesseniche6e74942016-06-11 16:43:14 -06001986{
John Kessenichb804de62016-09-05 12:19:18 -06001987 // This storage qualifier will tell us whether it's an AST
1988 // block type or just a generic structure type.
1989 TStorageQualifier storageQualifier = EvqTemporary;
steve-lunarg7b1dcd62017-04-20 13:16:23 -06001990 bool readonly = false;
John Kessenich3d157c52016-07-25 16:05:33 -06001991
steve-lunarg7b1dcd62017-04-20 13:16:23 -06001992 if (acceptTokenClass(EHTokCBuffer)) {
John Kessenich2fcdd642017-06-19 15:41:11 -06001993 // CBUFFER
John Kessenichb804de62016-09-05 12:19:18 -06001994 storageQualifier = EvqUniform;
steve-lunarg7b1dcd62017-04-20 13:16:23 -06001995 } else if (acceptTokenClass(EHTokTBuffer)) {
John Kessenich2fcdd642017-06-19 15:41:11 -06001996 // TBUFFER
John Kessenichb804de62016-09-05 12:19:18 -06001997 storageQualifier = EvqBuffer;
steve-lunarg7b1dcd62017-04-20 13:16:23 -06001998 readonly = true;
John Kessenich054378d2017-06-19 15:13:26 -06001999 } else if (! acceptTokenClass(EHTokClass) && ! acceptTokenClass(EHTokStruct)) {
2000 // Neither CLASS nor STRUCT
John Kesseniche6e74942016-06-11 16:43:14 -06002001 return false;
John Kessenich054378d2017-06-19 15:13:26 -06002002 }
2003
2004 // Now known to be one of CBUFFER, TBUFFER, CLASS, or STRUCT
John Kesseniche6e74942016-06-11 16:43:14 -06002005
2006 // IDENTIFIER
2007 TString structName = "";
2008 if (peekTokenClass(EHTokIdentifier)) {
2009 structName = *token.string;
2010 advanceToken();
2011 }
2012
John Kessenich3d157c52016-07-25 16:05:33 -06002013 // post_decls
John Kessenich7735b942016-09-05 12:40:06 -06002014 TQualifier postDeclQualifier;
2015 postDeclQualifier.clear();
John Kessenich854fe242017-03-02 14:30:59 -07002016 bool postDeclsFound = acceptPostDecls(postDeclQualifier);
John Kessenich3d157c52016-07-25 16:05:33 -06002017
John Kessenichf3d88bd2017-03-19 12:24:29 -06002018 // LEFT_BRACE, or
John Kessenich854fe242017-03-02 14:30:59 -07002019 // struct_type IDENTIFIER
John Kesseniche6e74942016-06-11 16:43:14 -06002020 if (! acceptTokenClass(EHTokLeftBrace)) {
John Kessenich854fe242017-03-02 14:30:59 -07002021 if (structName.size() > 0 && !postDeclsFound && parseContext.lookupUserType(structName, type) != nullptr) {
2022 // struct_type IDENTIFIER
2023 return true;
2024 } else {
2025 expected("{");
2026 return false;
2027 }
John Kesseniche6e74942016-06-11 16:43:14 -06002028 }
2029
John Kessenichf3d88bd2017-03-19 12:24:29 -06002030
John Kesseniche6e74942016-06-11 16:43:14 -06002031 // struct_declaration_list
2032 TTypeList* typeList;
John Kessenichf3d88bd2017-03-19 12:24:29 -06002033 // Save each member function so they can be processed after we have a fully formed 'this'.
2034 TVector<TFunctionDeclarator> functionDeclarators;
2035
2036 parseContext.pushNamespace(structName);
John Kessenichaa3c64c2017-03-28 09:52:38 -06002037 bool acceptedList = acceptStructDeclarationList(typeList, nodeList, functionDeclarators);
John Kessenichf3d88bd2017-03-19 12:24:29 -06002038 parseContext.popNamespace();
2039
2040 if (! acceptedList) {
John Kesseniche6e74942016-06-11 16:43:14 -06002041 expected("struct member declarations");
2042 return false;
2043 }
2044
2045 // RIGHT_BRACE
2046 if (! acceptTokenClass(EHTokRightBrace)) {
2047 expected("}");
2048 return false;
2049 }
2050
2051 // create the user-defined type
John Kessenichb804de62016-09-05 12:19:18 -06002052 if (storageQualifier == EvqTemporary)
John Kessenich3d157c52016-07-25 16:05:33 -06002053 new(&type) TType(typeList, structName);
John Kessenichb804de62016-09-05 12:19:18 -06002054 else {
John Kessenich7735b942016-09-05 12:40:06 -06002055 postDeclQualifier.storage = storageQualifier;
steve-lunarg7b1dcd62017-04-20 13:16:23 -06002056 postDeclQualifier.readonly = readonly;
John Kessenich7735b942016-09-05 12:40:06 -06002057 new(&type) TType(typeList, structName, postDeclQualifier); // sets EbtBlock
John Kessenichb804de62016-09-05 12:19:18 -06002058 }
John Kesseniche6e74942016-06-11 16:43:14 -06002059
John Kessenich727b3742017-02-03 17:57:55 -07002060 parseContext.declareStruct(token.loc, structName, type);
John Kesseniche6e74942016-06-11 16:43:14 -06002061
John Kessenich4960baa2017-03-19 18:09:59 -06002062 // For member functions: now that we know the type of 'this', go back and
2063 // - add their implicit argument with 'this' (not to the mangling, just the argument list)
2064 // - parse the functions, their tokens were saved for deferred parsing (now)
2065 for (int b = 0; b < (int)functionDeclarators.size(); ++b) {
2066 // update signature
2067 if (functionDeclarators[b].function->hasImplicitThis())
John Kessenich37789792017-03-21 23:56:40 -06002068 functionDeclarators[b].function->addThisParameter(type, intermediate.implicitThisName);
John Kessenich4960baa2017-03-19 18:09:59 -06002069 }
2070
John Kessenichf3d88bd2017-03-19 12:24:29 -06002071 // All member functions get parsed inside the class/struct namespace and with the
2072 // class/struct members in a symbol-table level.
2073 parseContext.pushNamespace(structName);
John Kessenich0a2a0cd2017-05-16 23:16:26 -06002074 parseContext.pushThisScope(type, functionDeclarators);
John Kessenichf3d88bd2017-03-19 12:24:29 -06002075 bool deferredSuccess = true;
2076 for (int b = 0; b < (int)functionDeclarators.size() && deferredSuccess; ++b) {
2077 // parse body
2078 pushTokenStream(functionDeclarators[b].body);
2079 if (! acceptFunctionBody(functionDeclarators[b], nodeList))
2080 deferredSuccess = false;
2081 popTokenStream();
2082 }
John Kessenich37789792017-03-21 23:56:40 -06002083 parseContext.popThisScope();
John Kessenichf3d88bd2017-03-19 12:24:29 -06002084 parseContext.popNamespace();
2085
2086 return deferredSuccess;
John Kesseniche6e74942016-06-11 16:43:14 -06002087}
2088
steve-lunarga766b832017-04-25 09:30:28 -06002089// constantbuffer
2090// : CONSTANTBUFFER LEFT_ANGLE type RIGHT_ANGLE
2091bool HlslGrammar::acceptConstantBufferType(TType& type)
2092{
2093 if (! acceptTokenClass(EHTokConstantBuffer))
2094 return false;
2095
2096 if (! acceptTokenClass(EHTokLeftAngle)) {
2097 expected("left angle bracket");
2098 return false;
2099 }
2100
2101 TType templateType;
2102 if (! acceptType(templateType)) {
2103 expected("type");
2104 return false;
2105 }
2106
2107 if (! acceptTokenClass(EHTokRightAngle)) {
2108 expected("right angle bracket");
2109 return false;
2110 }
2111
2112 TQualifier postDeclQualifier;
2113 postDeclQualifier.clear();
2114 postDeclQualifier.storage = EvqUniform;
2115
2116 if (templateType.isStruct()) {
2117 // Make a block from the type parsed as the template argument
2118 TTypeList* typeList = templateType.getWritableStruct();
2119 new(&type) TType(typeList, "", postDeclQualifier); // sets EbtBlock
2120
2121 type.getQualifier().storage = EvqUniform;
2122
2123 return true;
2124 } else {
2125 parseContext.error(token.loc, "non-structure type in ConstantBuffer", "", "");
2126 return false;
2127 }
2128}
2129
steve-lunarg5da1f032017-02-12 17:50:28 -07002130// struct_buffer
2131// : APPENDSTRUCTUREDBUFFER
2132// | BYTEADDRESSBUFFER
2133// | CONSUMESTRUCTUREDBUFFER
2134// | RWBYTEADDRESSBUFFER
2135// | RWSTRUCTUREDBUFFER
2136// | STRUCTUREDBUFFER
2137bool HlslGrammar::acceptStructBufferType(TType& type)
2138{
2139 const EHlslTokenClass structBuffType = peek();
2140
2141 // TODO: globallycoherent
2142 bool hasTemplateType = true;
2143 bool readonly = false;
2144
2145 TStorageQualifier storage = EvqBuffer;
steve-lunarg8e26feb2017-04-10 08:19:21 -06002146 TBuiltInVariable builtinType = EbvNone;
steve-lunarg5da1f032017-02-12 17:50:28 -07002147
2148 switch (structBuffType) {
2149 case EHTokAppendStructuredBuffer:
steve-lunarg8e26feb2017-04-10 08:19:21 -06002150 builtinType = EbvAppendConsume;
2151 break;
steve-lunarg5da1f032017-02-12 17:50:28 -07002152 case EHTokByteAddressBuffer:
2153 hasTemplateType = false;
2154 readonly = true;
steve-lunarg8e26feb2017-04-10 08:19:21 -06002155 builtinType = EbvByteAddressBuffer;
steve-lunarg5da1f032017-02-12 17:50:28 -07002156 break;
2157 case EHTokConsumeStructuredBuffer:
steve-lunarg8e26feb2017-04-10 08:19:21 -06002158 builtinType = EbvAppendConsume;
2159 break;
steve-lunarg5da1f032017-02-12 17:50:28 -07002160 case EHTokRWByteAddressBuffer:
2161 hasTemplateType = false;
steve-lunarg8e26feb2017-04-10 08:19:21 -06002162 builtinType = EbvRWByteAddressBuffer;
steve-lunarg5da1f032017-02-12 17:50:28 -07002163 break;
2164 case EHTokRWStructuredBuffer:
steve-lunarg8e26feb2017-04-10 08:19:21 -06002165 builtinType = EbvRWStructuredBuffer;
steve-lunarg5da1f032017-02-12 17:50:28 -07002166 break;
2167 case EHTokStructuredBuffer:
steve-lunarg8e26feb2017-04-10 08:19:21 -06002168 builtinType = EbvStructuredBuffer;
steve-lunarg5da1f032017-02-12 17:50:28 -07002169 readonly = true;
2170 break;
2171 default:
2172 return false; // not a structure buffer type
2173 }
2174
2175 advanceToken(); // consume the structure keyword
2176
2177 // type on which this StructedBuffer is templatized. E.g, StructedBuffer<MyStruct> ==> MyStruct
2178 TType* templateType = new TType;
2179
2180 if (hasTemplateType) {
2181 if (! acceptTokenClass(EHTokLeftAngle)) {
2182 expected("left angle bracket");
2183 return false;
2184 }
2185
2186 if (! acceptType(*templateType)) {
2187 expected("type");
2188 return false;
2189 }
2190 if (! acceptTokenClass(EHTokRightAngle)) {
2191 expected("right angle bracket");
2192 return false;
2193 }
2194 } else {
2195 // byte address buffers have no explicit type.
2196 TType uintType(EbtUint, storage);
2197 templateType->shallowCopy(uintType);
2198 }
2199
2200 // Create an unsized array out of that type.
2201 // TODO: does this work if it's already an array type?
2202 TArraySizes unsizedArray;
2203 unsizedArray.addInnerSize(UnsizedArraySize);
2204 templateType->newArraySizes(unsizedArray);
steve-lunarg40efe5c2017-03-06 12:01:44 -07002205 templateType->getQualifier().storage = storage;
steve-lunargdd8287a2017-02-23 18:04:12 -07002206
2207 // field name is canonical for all structbuffers
2208 templateType->setFieldName("@data");
steve-lunarg5da1f032017-02-12 17:50:28 -07002209
steve-lunarg5da1f032017-02-12 17:50:28 -07002210 TTypeList* blockStruct = new TTypeList;
2211 TTypeLoc member = { templateType, token.loc };
2212 blockStruct->push_back(member);
2213
steve-lunargdd8287a2017-02-23 18:04:12 -07002214 // This is the type of the buffer block (SSBO)
steve-lunarg5da1f032017-02-12 17:50:28 -07002215 TType blockType(blockStruct, "", templateType->getQualifier());
2216
steve-lunargdd8287a2017-02-23 18:04:12 -07002217 blockType.getQualifier().storage = storage;
2218 blockType.getQualifier().readonly = readonly;
steve-lunarg8e26feb2017-04-10 08:19:21 -06002219 blockType.getQualifier().builtIn = builtinType;
steve-lunargdd8287a2017-02-23 18:04:12 -07002220
2221 // We may have created an equivalent type before, in which case we should use its
2222 // deep structure.
2223 parseContext.shareStructBufferType(blockType);
2224
steve-lunarg5da1f032017-02-12 17:50:28 -07002225 type.shallowCopy(blockType);
2226
2227 return true;
2228}
2229
John Kesseniche6e74942016-06-11 16:43:14 -06002230// struct_declaration_list
2231// : struct_declaration SEMI_COLON struct_declaration SEMI_COLON ...
2232//
2233// struct_declaration
2234// : fully_specified_type struct_declarator COMMA struct_declarator ...
John Kessenich54ee28f2017-03-11 14:13:00 -07002235// | fully_specified_type IDENTIFIER function_parameters post_decls compound_statement // member-function definition
John Kesseniche6e74942016-06-11 16:43:14 -06002236//
2237// struct_declarator
John Kessenich630dd7d2016-06-12 23:52:12 -06002238// : IDENTIFIER post_decls
2239// | IDENTIFIER array_specifier post_decls
John Kessenich54ee28f2017-03-11 14:13:00 -07002240// | IDENTIFIER function_parameters post_decls // member-function prototype
John Kesseniche6e74942016-06-11 16:43:14 -06002241//
John Kessenichaa3c64c2017-03-28 09:52:38 -06002242bool HlslGrammar::acceptStructDeclarationList(TTypeList*& typeList, TIntermNode*& nodeList,
John Kessenichf3d88bd2017-03-19 12:24:29 -06002243 TVector<TFunctionDeclarator>& declarators)
John Kesseniche6e74942016-06-11 16:43:14 -06002244{
2245 typeList = new TTypeList();
steve-lunarg5ca85ad2016-12-26 18:45:52 -07002246 HlslToken idToken;
John Kesseniche6e74942016-06-11 16:43:14 -06002247
2248 do {
2249 // success on seeing the RIGHT_BRACE coming up
2250 if (peekTokenClass(EHTokRightBrace))
John Kessenichb16f7e62017-03-11 19:32:47 -07002251 break;
John Kesseniche6e74942016-06-11 16:43:14 -06002252
2253 // struct_declaration
John Kessenich54ee28f2017-03-11 14:13:00 -07002254
2255 bool declarator_list = false;
John Kesseniche6e74942016-06-11 16:43:14 -06002256
2257 // fully_specified_type
2258 TType memberType;
John Kessenich54ee28f2017-03-11 14:13:00 -07002259 if (! acceptFullySpecifiedType(memberType, nodeList)) {
John Kesseniche6e74942016-06-11 16:43:14 -06002260 expected("member type");
2261 return false;
2262 }
2263
2264 // struct_declarator COMMA struct_declarator ...
John Kessenich54ee28f2017-03-11 14:13:00 -07002265 bool functionDefinitionAccepted = false;
John Kesseniche6e74942016-06-11 16:43:14 -06002266 do {
steve-lunarg5ca85ad2016-12-26 18:45:52 -07002267 if (! acceptIdentifier(idToken)) {
John Kesseniche6e74942016-06-11 16:43:14 -06002268 expected("member name");
2269 return false;
2270 }
2271
John Kessenich54ee28f2017-03-11 14:13:00 -07002272 if (peekTokenClass(EHTokLeftParen)) {
2273 // function_parameters
2274 if (!declarator_list) {
John Kessenichb16f7e62017-03-11 19:32:47 -07002275 declarators.resize(declarators.size() + 1);
2276 // request a token stream for deferred processing
John Kessenichf3d88bd2017-03-19 12:24:29 -06002277 functionDefinitionAccepted = acceptMemberFunctionDefinition(nodeList, memberType, *idToken.string,
2278 declarators.back());
John Kessenich54ee28f2017-03-11 14:13:00 -07002279 if (functionDefinitionAccepted)
2280 break;
2281 }
2282 expected("member-function definition");
2283 return false;
2284 } else {
2285 // add it to the list of members
2286 TTypeLoc member = { new TType(EbtVoid), token.loc };
2287 member.type->shallowCopy(memberType);
2288 member.type->setFieldName(*idToken.string);
2289 typeList->push_back(member);
John Kesseniche6e74942016-06-11 16:43:14 -06002290
John Kessenich54ee28f2017-03-11 14:13:00 -07002291 // array_specifier
2292 TArraySizes* arraySizes = nullptr;
2293 acceptArraySpecifier(arraySizes);
2294 if (arraySizes)
2295 typeList->back().type->newArraySizes(*arraySizes);
John Kesseniche6e74942016-06-11 16:43:14 -06002296
John Kessenich54ee28f2017-03-11 14:13:00 -07002297 acceptPostDecls(member.type->getQualifier());
John Kessenich630dd7d2016-06-12 23:52:12 -06002298
John Kessenich54ee28f2017-03-11 14:13:00 -07002299 // EQUAL assignment_expression
2300 if (acceptTokenClass(EHTokAssign)) {
2301 parseContext.warn(idToken.loc, "struct-member initializers ignored", "typedef", "");
2302 TIntermTyped* expressionNode = nullptr;
2303 if (! acceptAssignmentExpression(expressionNode)) {
2304 expected("initializer");
2305 return false;
2306 }
John Kessenich18adbdb2017-02-02 15:16:20 -07002307 }
2308 }
John Kesseniche6e74942016-06-11 16:43:14 -06002309 // success on seeing the SEMICOLON coming up
2310 if (peekTokenClass(EHTokSemicolon))
2311 break;
2312
2313 // COMMA
John Kessenich54ee28f2017-03-11 14:13:00 -07002314 if (acceptTokenClass(EHTokComma))
2315 declarator_list = true;
2316 else {
John Kesseniche6e74942016-06-11 16:43:14 -06002317 expected(",");
2318 return false;
2319 }
2320
2321 } while (true);
2322
2323 // SEMI_COLON
John Kessenich54ee28f2017-03-11 14:13:00 -07002324 if (! functionDefinitionAccepted && ! acceptTokenClass(EHTokSemicolon)) {
John Kesseniche6e74942016-06-11 16:43:14 -06002325 expected(";");
2326 return false;
2327 }
2328
2329 } while (true);
John Kessenichb16f7e62017-03-11 19:32:47 -07002330
John Kessenichb16f7e62017-03-11 19:32:47 -07002331 return true;
John Kesseniche6e74942016-06-11 16:43:14 -06002332}
2333
John Kessenich54ee28f2017-03-11 14:13:00 -07002334// member_function_definition
2335// | function_parameters post_decls compound_statement
2336//
2337// Expects type to have EvqGlobal for a static member and
2338// EvqTemporary for non-static member.
John Kessenich9855bda2017-09-11 21:48:19 -06002339bool HlslGrammar::acceptMemberFunctionDefinition(TIntermNode*& nodeList, const TType& type, TString& memberName,
John Kessenichf3d88bd2017-03-19 12:24:29 -06002340 TFunctionDeclarator& declarator)
John Kessenich54ee28f2017-03-11 14:13:00 -07002341{
John Kessenich54ee28f2017-03-11 14:13:00 -07002342 bool accepted = false;
2343
John Kessenich9855bda2017-09-11 21:48:19 -06002344 TString* functionName = &memberName;
John Kessenich4dc835c2017-03-28 23:43:10 -06002345 parseContext.getFullNamespaceName(functionName);
John Kessenich088d52b2017-03-11 17:55:28 -07002346 declarator.function = new TFunction(functionName, type);
John Kessenich4960baa2017-03-19 18:09:59 -06002347 if (type.getQualifier().storage == EvqTemporary)
2348 declarator.function->setImplicitThis();
John Kessenich37789792017-03-21 23:56:40 -06002349 else
2350 declarator.function->setIllegalImplicitThis();
John Kessenich54ee28f2017-03-11 14:13:00 -07002351
2352 // function_parameters
John Kessenich088d52b2017-03-11 17:55:28 -07002353 if (acceptFunctionParameters(*declarator.function)) {
John Kessenich54ee28f2017-03-11 14:13:00 -07002354 // post_decls
John Kessenich088d52b2017-03-11 17:55:28 -07002355 acceptPostDecls(declarator.function->getWritableType().getQualifier());
John Kessenich54ee28f2017-03-11 14:13:00 -07002356
2357 // compound_statement (function body definition)
2358 if (peekTokenClass(EHTokLeftBrace)) {
John Kessenich088d52b2017-03-11 17:55:28 -07002359 declarator.loc = token.loc;
John Kessenichf3d88bd2017-03-19 12:24:29 -06002360 declarator.body = new TVector<HlslToken>;
2361 accepted = acceptFunctionDefinition(declarator, nodeList, declarator.body);
John Kessenich54ee28f2017-03-11 14:13:00 -07002362 }
2363 } else
2364 expected("function parameter list");
2365
John Kessenich54ee28f2017-03-11 14:13:00 -07002366 return accepted;
2367}
2368
John Kessenich5f934b02016-03-13 17:58:25 -06002369// function_parameters
John Kessenich078d7f22016-03-14 10:02:11 -06002370// : LEFT_PAREN parameter_declaration COMMA parameter_declaration ... RIGHT_PAREN
John Kessenich71351de2016-06-08 12:50:56 -06002371// | LEFT_PAREN VOID RIGHT_PAREN
John Kessenich5f934b02016-03-13 17:58:25 -06002372//
2373bool HlslGrammar::acceptFunctionParameters(TFunction& function)
2374{
John Kessenich078d7f22016-03-14 10:02:11 -06002375 // LEFT_PAREN
John Kessenich5f934b02016-03-13 17:58:25 -06002376 if (! acceptTokenClass(EHTokLeftParen))
2377 return false;
2378
John Kessenich71351de2016-06-08 12:50:56 -06002379 // VOID RIGHT_PAREN
2380 if (! acceptTokenClass(EHTokVoid)) {
2381 do {
2382 // parameter_declaration
2383 if (! acceptParameterDeclaration(function))
2384 break;
John Kessenich5f934b02016-03-13 17:58:25 -06002385
John Kessenich71351de2016-06-08 12:50:56 -06002386 // COMMA
2387 if (! acceptTokenClass(EHTokComma))
2388 break;
2389 } while (true);
2390 }
John Kessenich5f934b02016-03-13 17:58:25 -06002391
John Kessenich078d7f22016-03-14 10:02:11 -06002392 // RIGHT_PAREN
John Kessenich5f934b02016-03-13 17:58:25 -06002393 if (! acceptTokenClass(EHTokRightParen)) {
John Kessenich0d2b6de2016-06-05 11:23:11 -06002394 expected(")");
John Kessenich5f934b02016-03-13 17:58:25 -06002395 return false;
2396 }
2397
2398 return true;
2399}
2400
steve-lunarg26d31452016-12-23 18:56:57 -07002401// default_parameter_declaration
2402// : EQUAL conditional_expression
2403// : EQUAL initializer
2404bool HlslGrammar::acceptDefaultParameterDeclaration(const TType& type, TIntermTyped*& node)
2405{
2406 node = nullptr;
2407
2408 // Valid not to have a default_parameter_declaration
2409 if (!acceptTokenClass(EHTokAssign))
2410 return true;
2411
2412 if (!acceptConditionalExpression(node)) {
2413 if (!acceptInitializer(node))
2414 return false;
2415
2416 // For initializer lists, we have to const-fold into a constructor for the type, so build
2417 // that.
John Kessenichc633f642017-04-03 21:48:37 -06002418 TFunction* constructor = parseContext.makeConstructorCall(token.loc, type);
steve-lunarg26d31452016-12-23 18:56:57 -07002419 if (constructor == nullptr) // cannot construct
2420 return false;
2421
2422 TIntermTyped* arguments = nullptr;
John Kessenichecba76f2017-01-06 00:34:48 -07002423 for (int i = 0; i < int(node->getAsAggregate()->getSequence().size()); i++)
steve-lunarg26d31452016-12-23 18:56:57 -07002424 parseContext.handleFunctionArgument(constructor, arguments, node->getAsAggregate()->getSequence()[i]->getAsTyped());
John Kessenichecba76f2017-01-06 00:34:48 -07002425
steve-lunarg26d31452016-12-23 18:56:57 -07002426 node = parseContext.handleFunctionCall(token.loc, constructor, node);
2427 }
2428
2429 // If this is simply a constant, we can use it directly.
2430 if (node->getAsConstantUnion())
2431 return true;
2432
2433 // Otherwise, it has to be const-foldable.
2434 TIntermTyped* origNode = node;
2435
2436 node = intermediate.fold(node->getAsAggregate());
2437
2438 if (node != nullptr && origNode != node)
2439 return true;
2440
2441 parseContext.error(token.loc, "invalid default parameter value", "", "");
2442
2443 return false;
2444}
2445
John Kessenich5f934b02016-03-13 17:58:25 -06002446// parameter_declaration
John Kessenich77ea30b2017-09-30 14:34:50 -06002447// : attributes attributed_declaration
2448//
2449// attributed_declaration
steve-lunarg26d31452016-12-23 18:56:57 -07002450// : fully_specified_type post_decls [ = default_parameter_declaration ]
2451// | fully_specified_type identifier array_specifier post_decls [ = default_parameter_declaration ]
John Kessenich5f934b02016-03-13 17:58:25 -06002452//
2453bool HlslGrammar::acceptParameterDeclaration(TFunction& function)
2454{
John Kessenich77ea30b2017-09-30 14:34:50 -06002455 // attributes
2456 TAttributeMap attributes;
2457 acceptAttributes(attributes);
2458
John Kessenich5f934b02016-03-13 17:58:25 -06002459 // fully_specified_type
2460 TType* type = new TType;
2461 if (! acceptFullySpecifiedType(*type))
2462 return false;
2463
John Kessenich77ea30b2017-09-30 14:34:50 -06002464 parseContext.transferTypeAttributes(attributes, *type);
2465
John Kessenich5f934b02016-03-13 17:58:25 -06002466 // identifier
John Kessenichaecd4972016-03-14 10:46:34 -06002467 HlslToken idToken;
2468 acceptIdentifier(idToken);
John Kessenich5f934b02016-03-13 17:58:25 -06002469
John Kessenich19b92ff2016-06-19 11:50:34 -06002470 // array_specifier
2471 TArraySizes* arraySizes = nullptr;
2472 acceptArraySpecifier(arraySizes);
steve-lunarg265c0612016-09-27 10:57:35 -06002473 if (arraySizes) {
2474 if (arraySizes->isImplicit()) {
2475 parseContext.error(token.loc, "function parameter array cannot be implicitly sized", "", "");
2476 return false;
2477 }
2478
John Kessenich19b92ff2016-06-19 11:50:34 -06002479 type->newArraySizes(*arraySizes);
steve-lunarg265c0612016-09-27 10:57:35 -06002480 }
John Kessenich19b92ff2016-06-19 11:50:34 -06002481
2482 // post_decls
John Kessenich7735b942016-09-05 12:40:06 -06002483 acceptPostDecls(type->getQualifier());
John Kessenichc3387d32016-06-17 14:21:02 -06002484
steve-lunarg26d31452016-12-23 18:56:57 -07002485 TIntermTyped* defaultValue;
2486 if (!acceptDefaultParameterDeclaration(*type, defaultValue))
2487 return false;
2488
John Kessenich5aa59e22016-06-17 15:50:47 -06002489 parseContext.paramFix(*type);
2490
steve-lunarg26d31452016-12-23 18:56:57 -07002491 // If any prior parameters have default values, all the parameters after that must as well.
2492 if (defaultValue == nullptr && function.getDefaultParamCount() > 0) {
2493 parseContext.error(idToken.loc, "invalid parameter after default value parameters", idToken.string->c_str(), "");
2494 return false;
2495 }
2496
2497 TParameter param = { idToken.string, type, defaultValue };
John Kessenich5f934b02016-03-13 17:58:25 -06002498 function.addParameter(param);
2499
2500 return true;
2501}
2502
2503// Do the work to create the function definition in addition to
2504// parsing the body (compound_statement).
John Kessenichb16f7e62017-03-11 19:32:47 -07002505//
2506// If 'deferredTokens' are passed in, just get the token stream,
2507// don't process.
2508//
2509bool HlslGrammar::acceptFunctionDefinition(TFunctionDeclarator& declarator, TIntermNode*& nodeList,
2510 TVector<HlslToken>* deferredTokens)
John Kessenich5f934b02016-03-13 17:58:25 -06002511{
John Kessenich088d52b2017-03-11 17:55:28 -07002512 parseContext.handleFunctionDeclarator(declarator.loc, *declarator.function, false /* not prototype */);
John Kessenich5f934b02016-03-13 17:58:25 -06002513
John Kessenichb16f7e62017-03-11 19:32:47 -07002514 if (deferredTokens)
2515 return captureBlockTokens(*deferredTokens);
2516 else
John Kessenich4960baa2017-03-19 18:09:59 -06002517 return acceptFunctionBody(declarator, nodeList);
John Kessenich088d52b2017-03-11 17:55:28 -07002518}
2519
2520bool HlslGrammar::acceptFunctionBody(TFunctionDeclarator& declarator, TIntermNode*& nodeList)
2521{
2522 // we might get back an entry-point
John Kessenichca71d942017-03-07 20:44:09 -07002523 TIntermNode* entryPointNode = nullptr;
2524
John Kessenich077e0522016-06-09 02:02:17 -06002525 // This does a pushScope()
John Kessenich088d52b2017-03-11 17:55:28 -07002526 TIntermNode* functionNode = parseContext.handleFunctionDefinition(declarator.loc, *declarator.function,
2527 declarator.attributes, entryPointNode);
John Kessenich5f934b02016-03-13 17:58:25 -06002528
2529 // compound_statement
John Kessenich21472ae2016-06-04 11:46:33 -06002530 TIntermNode* functionBody = nullptr;
John Kessenich02467d82017-01-19 15:41:47 -07002531 if (! acceptCompoundStatement(functionBody))
2532 return false;
John Kessenich5f934b02016-03-13 17:58:25 -06002533
John Kessenich54ee28f2017-03-11 14:13:00 -07002534 // this does a popScope()
John Kessenich088d52b2017-03-11 17:55:28 -07002535 parseContext.handleFunctionBody(declarator.loc, *declarator.function, functionBody, functionNode);
John Kessenichca71d942017-03-07 20:44:09 -07002536
2537 // Hook up the 1 or 2 function definitions.
2538 nodeList = intermediate.growAggregate(nodeList, functionNode);
2539 nodeList = intermediate.growAggregate(nodeList, entryPointNode);
John Kessenich02467d82017-01-19 15:41:47 -07002540
2541 return true;
John Kessenich5f934b02016-03-13 17:58:25 -06002542}
2543
John Kessenich0d2b6de2016-06-05 11:23:11 -06002544// Accept an expression with parenthesis around it, where
2545// the parenthesis ARE NOT expression parenthesis, but the
John Kessenich5bc4d9a2016-06-20 01:22:38 -06002546// syntactically required ones like in "if ( expression )".
2547//
2548// Also accepts a declaration expression; "if (int a = expression)".
John Kessenich0d2b6de2016-06-05 11:23:11 -06002549//
2550// Note this one is not set up to be speculative; as it gives
2551// errors if not found.
2552//
2553bool HlslGrammar::acceptParenExpression(TIntermTyped*& expression)
2554{
2555 // LEFT_PAREN
2556 if (! acceptTokenClass(EHTokLeftParen))
2557 expected("(");
2558
John Kessenich5bc4d9a2016-06-20 01:22:38 -06002559 bool decl = false;
2560 TIntermNode* declNode = nullptr;
2561 decl = acceptControlDeclaration(declNode);
2562 if (decl) {
2563 if (declNode == nullptr || declNode->getAsTyped() == nullptr) {
2564 expected("initialized declaration");
2565 return false;
2566 } else
2567 expression = declNode->getAsTyped();
2568 } else {
2569 // no declaration
2570 if (! acceptExpression(expression)) {
2571 expected("expression");
2572 return false;
2573 }
John Kessenich0d2b6de2016-06-05 11:23:11 -06002574 }
2575
2576 // RIGHT_PAREN
2577 if (! acceptTokenClass(EHTokRightParen))
2578 expected(")");
2579
2580 return true;
2581}
2582
John Kessenich34fb0362016-05-03 23:17:20 -06002583// The top-level full expression recognizer.
2584//
John Kessenich87142c72016-03-12 20:24:24 -07002585// expression
John Kessenich34fb0362016-05-03 23:17:20 -06002586// : assignment_expression COMMA assignment_expression COMMA assignment_expression ...
John Kessenich87142c72016-03-12 20:24:24 -07002587//
2588bool HlslGrammar::acceptExpression(TIntermTyped*& node)
2589{
LoopDawgef764a22016-06-03 09:17:51 -06002590 node = nullptr;
2591
John Kessenich34fb0362016-05-03 23:17:20 -06002592 // assignment_expression
2593 if (! acceptAssignmentExpression(node))
2594 return false;
John Kessenich5f934b02016-03-13 17:58:25 -06002595
John Kessenich34fb0362016-05-03 23:17:20 -06002596 if (! peekTokenClass(EHTokComma))
2597 return true;
2598
2599 do {
2600 // ... COMMA
John Kessenich5f934b02016-03-13 17:58:25 -06002601 TSourceLoc loc = token.loc;
John Kessenich34fb0362016-05-03 23:17:20 -06002602 advanceToken();
John Kessenich5f934b02016-03-13 17:58:25 -06002603
John Kessenich34fb0362016-05-03 23:17:20 -06002604 // ... assignment_expression
2605 TIntermTyped* rightNode = nullptr;
2606 if (! acceptAssignmentExpression(rightNode)) {
2607 expected("assignment expression");
2608 return false;
John Kessenich5f934b02016-03-13 17:58:25 -06002609 }
2610
John Kessenich34fb0362016-05-03 23:17:20 -06002611 node = intermediate.addComma(node, rightNode, loc);
2612
2613 if (! peekTokenClass(EHTokComma))
2614 return true;
2615 } while (true);
2616}
2617
John Kessenich07354242016-07-01 19:58:06 -06002618// initializer
John Kessenich98ad4852016-11-27 17:39:07 -07002619// : LEFT_BRACE RIGHT_BRACE
2620// | LEFT_BRACE initializer_list RIGHT_BRACE
John Kessenich07354242016-07-01 19:58:06 -06002621//
2622// initializer_list
2623// : assignment_expression COMMA assignment_expression COMMA ...
2624//
2625bool HlslGrammar::acceptInitializer(TIntermTyped*& node)
2626{
2627 // LEFT_BRACE
2628 if (! acceptTokenClass(EHTokLeftBrace))
2629 return false;
2630
John Kessenich98ad4852016-11-27 17:39:07 -07002631 // RIGHT_BRACE
John Kessenich07354242016-07-01 19:58:06 -06002632 TSourceLoc loc = token.loc;
John Kessenich98ad4852016-11-27 17:39:07 -07002633 if (acceptTokenClass(EHTokRightBrace)) {
2634 // a zero-length initializer list
2635 node = intermediate.makeAggregate(loc);
2636 return true;
2637 }
2638
2639 // initializer_list
John Kessenich07354242016-07-01 19:58:06 -06002640 node = nullptr;
2641 do {
2642 // assignment_expression
2643 TIntermTyped* expr;
2644 if (! acceptAssignmentExpression(expr)) {
2645 expected("assignment expression in initializer list");
2646 return false;
2647 }
LoopDawg0fca0ba2017-07-10 15:43:40 -06002648
2649 const bool firstNode = (node == nullptr);
2650
John Kessenich07354242016-07-01 19:58:06 -06002651 node = intermediate.growAggregate(node, expr, loc);
2652
LoopDawg0fca0ba2017-07-10 15:43:40 -06002653 // If every sub-node in the list has qualifier EvqConst, the returned node becomes
2654 // EvqConst. Otherwise, it becomes EvqTemporary. That doesn't happen with e.g.
2655 // EvqIn or EvqPosition, since the collection isn't EvqPosition if all the members are.
2656 if (firstNode && expr->getQualifier().storage == EvqConst)
2657 node->getQualifier().storage = EvqConst;
2658 else if (expr->getQualifier().storage != EvqConst)
2659 node->getQualifier().storage = EvqTemporary;
2660
John Kessenich07354242016-07-01 19:58:06 -06002661 // COMMA
steve-lunargfe5a3ff2016-07-30 10:36:09 -06002662 if (acceptTokenClass(EHTokComma)) {
2663 if (acceptTokenClass(EHTokRightBrace)) // allow trailing comma
2664 return true;
John Kessenich07354242016-07-01 19:58:06 -06002665 continue;
steve-lunargfe5a3ff2016-07-30 10:36:09 -06002666 }
John Kessenich07354242016-07-01 19:58:06 -06002667
2668 // RIGHT_BRACE
2669 if (acceptTokenClass(EHTokRightBrace))
2670 return true;
2671
2672 expected(", or }");
2673 return false;
2674 } while (true);
2675}
2676
John Kessenich34fb0362016-05-03 23:17:20 -06002677// Accept an assignment expression, where assignment operations
John Kessenich07354242016-07-01 19:58:06 -06002678// associate right-to-left. That is, it is implicit, for example
John Kessenich34fb0362016-05-03 23:17:20 -06002679//
2680// a op (b op (c op d))
2681//
2682// assigment_expression
John Kessenich00957f82016-07-27 10:39:57 -06002683// : initializer
2684// | conditional_expression
2685// | conditional_expression assign_op conditional_expression assign_op conditional_expression ...
John Kessenich34fb0362016-05-03 23:17:20 -06002686//
2687bool HlslGrammar::acceptAssignmentExpression(TIntermTyped*& node)
2688{
John Kessenich07354242016-07-01 19:58:06 -06002689 // initializer
2690 if (peekTokenClass(EHTokLeftBrace)) {
2691 if (acceptInitializer(node))
2692 return true;
2693
2694 expected("initializer");
2695 return false;
2696 }
2697
John Kessenich00957f82016-07-27 10:39:57 -06002698 // conditional_expression
2699 if (! acceptConditionalExpression(node))
John Kessenich34fb0362016-05-03 23:17:20 -06002700 return false;
2701
John Kessenich07354242016-07-01 19:58:06 -06002702 // assignment operation?
John Kessenich34fb0362016-05-03 23:17:20 -06002703 TOperator assignOp = HlslOpMap::assignment(peek());
2704 if (assignOp == EOpNull)
2705 return true;
2706
John Kessenich00957f82016-07-27 10:39:57 -06002707 // assign_op
John Kessenich34fb0362016-05-03 23:17:20 -06002708 TSourceLoc loc = token.loc;
2709 advanceToken();
2710
John Kessenich00957f82016-07-27 10:39:57 -06002711 // conditional_expression assign_op conditional_expression ...
2712 // Done by recursing this function, which automatically
John Kessenich34fb0362016-05-03 23:17:20 -06002713 // gets the right-to-left associativity.
2714 TIntermTyped* rightNode = nullptr;
2715 if (! acceptAssignmentExpression(rightNode)) {
2716 expected("assignment expression");
John Kessenich5f934b02016-03-13 17:58:25 -06002717 return false;
John Kessenich87142c72016-03-12 20:24:24 -07002718 }
2719
John Kessenichd21baed2016-09-16 03:05:12 -06002720 node = parseContext.handleAssign(loc, assignOp, node, rightNode);
steve-lunarg90707962016-10-07 19:35:40 -06002721 node = parseContext.handleLvalue(loc, "assign", node);
2722
John Kessenichfea226b2016-07-28 17:53:56 -06002723 if (node == nullptr) {
2724 parseContext.error(loc, "could not create assignment", "", "");
2725 return false;
2726 }
John Kessenich34fb0362016-05-03 23:17:20 -06002727
2728 if (! peekTokenClass(EHTokComma))
2729 return true;
2730
2731 return true;
2732}
2733
John Kessenich00957f82016-07-27 10:39:57 -06002734// Accept a conditional expression, which associates right-to-left,
2735// accomplished by the "true" expression calling down to lower
2736// precedence levels than this level.
2737//
2738// conditional_expression
2739// : binary_expression
2740// | binary_expression QUESTION expression COLON assignment_expression
2741//
2742bool HlslGrammar::acceptConditionalExpression(TIntermTyped*& node)
2743{
2744 // binary_expression
2745 if (! acceptBinaryExpression(node, PlLogicalOr))
2746 return false;
2747
2748 if (! acceptTokenClass(EHTokQuestion))
2749 return true;
2750
John Kessenich636b62d2017-04-11 19:45:00 -06002751 node = parseContext.convertConditionalExpression(token.loc, node, false);
John Kessenich7e997e22017-03-30 22:09:30 -06002752 if (node == nullptr)
2753 return false;
2754
John Kessenichf6deacd2017-06-06 19:52:55 -06002755 ++parseContext.controlFlowNestingLevel; // this only needs to work right if no errors
2756
John Kessenich00957f82016-07-27 10:39:57 -06002757 TIntermTyped* trueNode = nullptr;
2758 if (! acceptExpression(trueNode)) {
2759 expected("expression after ?");
2760 return false;
2761 }
2762 TSourceLoc loc = token.loc;
2763
2764 if (! acceptTokenClass(EHTokColon)) {
2765 expected(":");
2766 return false;
2767 }
2768
2769 TIntermTyped* falseNode = nullptr;
2770 if (! acceptAssignmentExpression(falseNode)) {
2771 expected("expression after :");
2772 return false;
2773 }
2774
John Kessenichf6deacd2017-06-06 19:52:55 -06002775 --parseContext.controlFlowNestingLevel;
2776
John Kessenich00957f82016-07-27 10:39:57 -06002777 node = intermediate.addSelection(node, trueNode, falseNode, loc);
2778
2779 return true;
2780}
2781
John Kessenich34fb0362016-05-03 23:17:20 -06002782// Accept a binary expression, for binary operations that
2783// associate left-to-right. This is, it is implicit, for example
2784//
2785// ((a op b) op c) op d
2786//
2787// binary_expression
2788// : expression op expression op expression ...
2789//
2790// where 'expression' is the next higher level in precedence.
2791//
2792bool HlslGrammar::acceptBinaryExpression(TIntermTyped*& node, PrecedenceLevel precedenceLevel)
2793{
2794 if (precedenceLevel > PlMul)
2795 return acceptUnaryExpression(node);
2796
2797 // assignment_expression
2798 if (! acceptBinaryExpression(node, (PrecedenceLevel)(precedenceLevel + 1)))
2799 return false;
2800
John Kessenich34fb0362016-05-03 23:17:20 -06002801 do {
John Kessenich64076ed2016-07-28 21:43:17 -06002802 TOperator op = HlslOpMap::binary(peek());
2803 PrecedenceLevel tokenLevel = HlslOpMap::precedenceLevel(op);
2804 if (tokenLevel < precedenceLevel)
2805 return true;
2806
John Kessenich34fb0362016-05-03 23:17:20 -06002807 // ... op
2808 TSourceLoc loc = token.loc;
2809 advanceToken();
2810
2811 // ... expression
2812 TIntermTyped* rightNode = nullptr;
2813 if (! acceptBinaryExpression(rightNode, (PrecedenceLevel)(precedenceLevel + 1))) {
2814 expected("expression");
2815 return false;
2816 }
2817
2818 node = intermediate.addBinaryMath(op, node, rightNode, loc);
John Kessenichfea226b2016-07-28 17:53:56 -06002819 if (node == nullptr) {
2820 parseContext.error(loc, "Could not perform requested binary operation", "", "");
2821 return false;
2822 }
John Kessenich34fb0362016-05-03 23:17:20 -06002823 } while (true);
2824}
2825
2826// unary_expression
John Kessenich1cc1a282016-06-03 16:55:49 -06002827// : (type) unary_expression
2828// | + unary_expression
John Kessenich34fb0362016-05-03 23:17:20 -06002829// | - unary_expression
2830// | ! unary_expression
2831// | ~ unary_expression
2832// | ++ unary_expression
2833// | -- unary_expression
2834// | postfix_expression
2835//
2836bool HlslGrammar::acceptUnaryExpression(TIntermTyped*& node)
2837{
John Kessenich1cc1a282016-06-03 16:55:49 -06002838 // (type) unary_expression
2839 // Have to look two steps ahead, because this could be, e.g., a
2840 // postfix_expression instead, since that also starts with at "(".
2841 if (acceptTokenClass(EHTokLeftParen)) {
2842 TType castType;
2843 if (acceptType(castType)) {
John Kessenich82ae8c32017-06-13 23:13:10 -06002844 // recognize any array_specifier as part of the type
2845 TArraySizes* arraySizes = nullptr;
2846 acceptArraySpecifier(arraySizes);
2847 if (arraySizes != nullptr)
2848 castType.newArraySizes(*arraySizes);
2849 TSourceLoc loc = token.loc;
steve-lunarg5964c642016-07-30 07:38:55 -06002850 if (acceptTokenClass(EHTokRightParen)) {
2851 // We've matched "(type)" now, get the expression to cast
steve-lunarg5964c642016-07-30 07:38:55 -06002852 if (! acceptUnaryExpression(node))
2853 return false;
2854
2855 // Hook it up like a constructor
John Kessenichc633f642017-04-03 21:48:37 -06002856 TFunction* constructorFunction = parseContext.makeConstructorCall(loc, castType);
steve-lunarg5964c642016-07-30 07:38:55 -06002857 if (constructorFunction == nullptr) {
2858 expected("type that can be constructed");
2859 return false;
2860 }
2861 TIntermTyped* arguments = nullptr;
2862 parseContext.handleFunctionArgument(constructorFunction, arguments, node);
2863 node = parseContext.handleFunctionCall(loc, constructorFunction, arguments);
2864
2865 return true;
2866 } else {
2867 // This could be a parenthesized constructor, ala (int(3)), and we just accepted
2868 // the '(int' part. We must back up twice.
2869 recedeToken();
2870 recedeToken();
John Kessenich82ae8c32017-06-13 23:13:10 -06002871
2872 // Note, there are no array constructors like
2873 // (float[2](...))
2874 if (arraySizes != nullptr)
2875 parseContext.error(loc, "parenthesized array constructor not allowed", "([]())", "", "");
John Kessenich1cc1a282016-06-03 16:55:49 -06002876 }
John Kessenich1cc1a282016-06-03 16:55:49 -06002877 } else {
2878 // This isn't a type cast, but it still started "(", so if it is a
2879 // unary expression, it can only be a postfix_expression, so try that.
2880 // Back it up first.
2881 recedeToken();
2882 return acceptPostfixExpression(node);
2883 }
2884 }
2885
2886 // peek for "op unary_expression"
John Kessenich34fb0362016-05-03 23:17:20 -06002887 TOperator unaryOp = HlslOpMap::preUnary(peek());
John Kessenichecba76f2017-01-06 00:34:48 -07002888
John Kessenich1cc1a282016-06-03 16:55:49 -06002889 // postfix_expression (if no unary operator)
John Kessenich34fb0362016-05-03 23:17:20 -06002890 if (unaryOp == EOpNull)
2891 return acceptPostfixExpression(node);
2892
2893 // op unary_expression
2894 TSourceLoc loc = token.loc;
2895 advanceToken();
2896 if (! acceptUnaryExpression(node))
2897 return false;
2898
2899 // + is a no-op
2900 if (unaryOp == EOpAdd)
2901 return true;
2902
2903 node = intermediate.addUnaryMath(unaryOp, node, loc);
steve-lunarge5921f12016-10-15 10:29:58 -06002904
2905 // These unary ops require lvalues
2906 if (unaryOp == EOpPreIncrement || unaryOp == EOpPreDecrement)
2907 node = parseContext.handleLvalue(loc, "unary operator", node);
John Kessenich34fb0362016-05-03 23:17:20 -06002908
2909 return node != nullptr;
2910}
2911
2912// postfix_expression
2913// : LEFT_PAREN expression RIGHT_PAREN
2914// | literal
2915// | constructor
John Kessenich8f9fdc92017-03-30 16:22:26 -06002916// | IDENTIFIER [ COLONCOLON IDENTIFIER [ COLONCOLON IDENTIFIER ... ] ]
John Kessenich34fb0362016-05-03 23:17:20 -06002917// | function_call
2918// | postfix_expression LEFT_BRACKET integer_expression RIGHT_BRACKET
2919// | postfix_expression DOT IDENTIFIER
John Kessenich516d92d2017-03-08 20:09:03 -07002920// | postfix_expression DOT IDENTIFIER arguments
John Kessenich8f9fdc92017-03-30 16:22:26 -06002921// | postfix_expression arguments
John Kessenich34fb0362016-05-03 23:17:20 -06002922// | postfix_expression INC_OP
2923// | postfix_expression DEC_OP
2924//
2925bool HlslGrammar::acceptPostfixExpression(TIntermTyped*& node)
2926{
2927 // Not implemented as self-recursive:
John Kessenich54ee28f2017-03-11 14:13:00 -07002928 // The logical "right recursion" is done with a loop at the end
John Kessenich34fb0362016-05-03 23:17:20 -06002929
2930 // idToken will pick up either a variable or a function name in a function call
2931 HlslToken idToken;
2932
John Kessenich21472ae2016-06-04 11:46:33 -06002933 // Find something before the postfix operations, as they can't operate
2934 // on nothing. So, no "return true", they fall through, only "return false".
John Kessenich87142c72016-03-12 20:24:24 -07002935 if (acceptTokenClass(EHTokLeftParen)) {
John Kessenich21472ae2016-06-04 11:46:33 -06002936 // LEFT_PAREN expression RIGHT_PAREN
John Kessenich87142c72016-03-12 20:24:24 -07002937 if (! acceptExpression(node)) {
2938 expected("expression");
2939 return false;
2940 }
2941 if (! acceptTokenClass(EHTokRightParen)) {
John Kessenich0d2b6de2016-06-05 11:23:11 -06002942 expected(")");
John Kessenich87142c72016-03-12 20:24:24 -07002943 return false;
2944 }
John Kessenich34fb0362016-05-03 23:17:20 -06002945 } else if (acceptLiteral(node)) {
John Kessenich8f9fdc92017-03-30 16:22:26 -06002946 // literal (nothing else to do yet)
John Kessenich34fb0362016-05-03 23:17:20 -06002947 } else if (acceptConstructor(node)) {
2948 // constructor (nothing else to do yet)
2949 } else if (acceptIdentifier(idToken)) {
John Kessenich8f9fdc92017-03-30 16:22:26 -06002950 // user-type, namespace name, variable, or function name
2951 TString* fullName = idToken.string;
2952 while (acceptTokenClass(EHTokColonColon)) {
2953 // user-type or namespace name
2954 fullName = NewPoolTString(fullName->c_str());
2955 fullName->append(parseContext.scopeMangler);
2956 if (acceptIdentifier(idToken))
2957 fullName->append(*idToken.string);
2958 else {
2959 expected("identifier after ::");
John Kessenich54ee28f2017-03-11 14:13:00 -07002960 return false;
2961 }
John Kessenich8f9fdc92017-03-30 16:22:26 -06002962 }
2963 if (! peekTokenClass(EHTokLeftParen)) {
2964 node = parseContext.handleVariable(idToken.loc, fullName);
2965 } else if (acceptFunctionCall(idToken.loc, *fullName, node, nullptr)) {
John Kessenich34fb0362016-05-03 23:17:20 -06002966 // function_call (nothing else to do yet)
2967 } else {
2968 expected("function call arguments");
2969 return false;
2970 }
John Kessenich21472ae2016-06-04 11:46:33 -06002971 } else {
2972 // nothing found, can't post operate
2973 return false;
John Kessenich87142c72016-03-12 20:24:24 -07002974 }
2975
John Kessenich21472ae2016-06-04 11:46:33 -06002976 // Something was found, chain as many postfix operations as exist.
John Kessenich34fb0362016-05-03 23:17:20 -06002977 do {
2978 TSourceLoc loc = token.loc;
2979 TOperator postOp = HlslOpMap::postUnary(peek());
John Kessenich87142c72016-03-12 20:24:24 -07002980
John Kessenich34fb0362016-05-03 23:17:20 -06002981 // Consume only a valid post-unary operator, otherwise we are done.
2982 switch (postOp) {
2983 case EOpIndexDirectStruct:
2984 case EOpIndexIndirect:
2985 case EOpPostIncrement:
2986 case EOpPostDecrement:
John Kessenich54ee28f2017-03-11 14:13:00 -07002987 case EOpScoping:
John Kessenich34fb0362016-05-03 23:17:20 -06002988 advanceToken();
2989 break;
2990 default:
2991 return true;
2992 }
John Kessenich87142c72016-03-12 20:24:24 -07002993
John Kessenich34fb0362016-05-03 23:17:20 -06002994 // We have a valid post-unary operator, process it.
2995 switch (postOp) {
John Kessenich54ee28f2017-03-11 14:13:00 -07002996 case EOpScoping:
John Kessenich34fb0362016-05-03 23:17:20 -06002997 case EOpIndexDirectStruct:
John Kessenich93a162a2016-06-17 17:16:27 -06002998 {
John Kessenich19b92ff2016-06-19 11:50:34 -06002999 // DOT IDENTIFIER
John Kessenich516d92d2017-03-08 20:09:03 -07003000 // includes swizzles, member variables, and member functions
John Kessenich93a162a2016-06-17 17:16:27 -06003001 HlslToken field;
3002 if (! acceptIdentifier(field)) {
3003 expected("swizzle or member");
3004 return false;
3005 }
LoopDawg4886f692016-06-29 10:58:58 -06003006
John Kessenich516d92d2017-03-08 20:09:03 -07003007 if (peekTokenClass(EHTokLeftParen)) {
3008 // member function
3009 TIntermTyped* thisNode = node;
LoopDawg4886f692016-06-29 10:58:58 -06003010
John Kessenich516d92d2017-03-08 20:09:03 -07003011 // arguments
John Kessenich8f9fdc92017-03-30 16:22:26 -06003012 if (! acceptFunctionCall(field.loc, *field.string, node, thisNode)) {
LoopDawg4886f692016-06-29 10:58:58 -06003013 expected("function parameters");
3014 return false;
3015 }
John Kessenich516d92d2017-03-08 20:09:03 -07003016 } else
3017 node = parseContext.handleDotDereference(field.loc, node, *field.string);
LoopDawg4886f692016-06-29 10:58:58 -06003018
John Kessenich34fb0362016-05-03 23:17:20 -06003019 break;
John Kessenich93a162a2016-06-17 17:16:27 -06003020 }
John Kessenich34fb0362016-05-03 23:17:20 -06003021 case EOpIndexIndirect:
3022 {
John Kessenich19b92ff2016-06-19 11:50:34 -06003023 // LEFT_BRACKET integer_expression RIGHT_BRACKET
John Kessenich34fb0362016-05-03 23:17:20 -06003024 TIntermTyped* indexNode = nullptr;
3025 if (! acceptExpression(indexNode) ||
3026 ! peekTokenClass(EHTokRightBracket)) {
3027 expected("expression followed by ']'");
3028 return false;
3029 }
John Kessenich19b92ff2016-06-19 11:50:34 -06003030 advanceToken();
3031 node = parseContext.handleBracketDereference(indexNode->getLoc(), node, indexNode);
steve-lunarg2efd6c62017-04-06 20:22:20 -06003032 if (node == nullptr)
3033 return false;
John Kessenich19b92ff2016-06-19 11:50:34 -06003034 break;
John Kessenich34fb0362016-05-03 23:17:20 -06003035 }
3036 case EOpPostIncrement:
John Kessenich19b92ff2016-06-19 11:50:34 -06003037 // INC_OP
3038 // fall through
John Kessenich34fb0362016-05-03 23:17:20 -06003039 case EOpPostDecrement:
John Kessenich19b92ff2016-06-19 11:50:34 -06003040 // DEC_OP
John Kessenich34fb0362016-05-03 23:17:20 -06003041 node = intermediate.addUnaryMath(postOp, node, loc);
steve-lunarg07830e82016-10-10 10:00:14 -06003042 node = parseContext.handleLvalue(loc, "unary operator", node);
John Kessenich34fb0362016-05-03 23:17:20 -06003043 break;
3044 default:
3045 assert(0);
3046 break;
3047 }
3048 } while (true);
John Kessenich87142c72016-03-12 20:24:24 -07003049}
3050
John Kessenichd016be12016-03-13 11:24:20 -06003051// constructor
John Kessenich078d7f22016-03-14 10:02:11 -06003052// : type argument_list
John Kessenichd016be12016-03-13 11:24:20 -06003053//
3054bool HlslGrammar::acceptConstructor(TIntermTyped*& node)
3055{
3056 // type
3057 TType type;
3058 if (acceptType(type)) {
John Kessenichc633f642017-04-03 21:48:37 -06003059 TFunction* constructorFunction = parseContext.makeConstructorCall(token.loc, type);
John Kessenichd016be12016-03-13 11:24:20 -06003060 if (constructorFunction == nullptr)
3061 return false;
3062
3063 // arguments
John Kessenich4678ca92016-05-13 09:33:42 -06003064 TIntermTyped* arguments = nullptr;
John Kessenichd016be12016-03-13 11:24:20 -06003065 if (! acceptArguments(constructorFunction, arguments)) {
steve-lunarg5ca85ad2016-12-26 18:45:52 -07003066 // It's possible this is a type keyword used as an identifier. Put the token back
3067 // for later use.
3068 recedeToken();
John Kessenichd016be12016-03-13 11:24:20 -06003069 return false;
3070 }
3071
3072 // hook it up
3073 node = parseContext.handleFunctionCall(arguments->getLoc(), constructorFunction, arguments);
3074
3075 return true;
3076 }
3077
3078 return false;
3079}
3080
John Kessenich34fb0362016-05-03 23:17:20 -06003081// The function_call identifier was already recognized, and passed in as idToken.
3082//
3083// function_call
3084// : [idToken] arguments
3085//
John Kessenich8f9fdc92017-03-30 16:22:26 -06003086bool HlslGrammar::acceptFunctionCall(const TSourceLoc& loc, TString& name, TIntermTyped*& node, TIntermTyped* baseObject)
John Kessenich34fb0362016-05-03 23:17:20 -06003087{
John Kessenich54ee28f2017-03-11 14:13:00 -07003088 // name
3089 TString* functionName = nullptr;
John Kessenich8f9fdc92017-03-30 16:22:26 -06003090 if (baseObject == nullptr) {
3091 functionName = &name;
3092 } else if (parseContext.isBuiltInMethod(loc, baseObject, name)) {
John Kessenich4960baa2017-03-19 18:09:59 -06003093 // Built-in methods are not in the symbol table as methods, but as global functions
3094 // taking an explicit 'this' as the first argument.
steve-lunarge7d07522017-03-19 18:12:37 -06003095 functionName = NewPoolTString(BUILTIN_PREFIX);
John Kessenich8f9fdc92017-03-30 16:22:26 -06003096 functionName->append(name);
John Kessenich4960baa2017-03-19 18:09:59 -06003097 } else {
John Kessenich8f9fdc92017-03-30 16:22:26 -06003098 if (! baseObject->getType().isStruct()) {
3099 expected("structure");
3100 return false;
3101 }
John Kessenich54ee28f2017-03-11 14:13:00 -07003102 functionName = NewPoolTString("");
John Kessenich8f9fdc92017-03-30 16:22:26 -06003103 functionName->append(baseObject->getType().getTypeName());
John Kessenichf3d88bd2017-03-19 12:24:29 -06003104 parseContext.addScopeMangler(*functionName);
John Kessenich8f9fdc92017-03-30 16:22:26 -06003105 functionName->append(name);
John Kessenich5f12d2f2017-03-11 09:39:55 -07003106 }
LoopDawg4886f692016-06-29 10:58:58 -06003107
John Kessenich54ee28f2017-03-11 14:13:00 -07003108 // function
3109 TFunction* function = new TFunction(functionName, TType(EbtVoid));
3110
3111 // arguments
John Kessenich54ee28f2017-03-11 14:13:00 -07003112 TIntermTyped* arguments = nullptr;
John Kessenichdfbdd9e2017-03-19 13:10:28 -06003113 if (baseObject != nullptr) {
3114 // Non-static member functions have an implicit first argument of the base object.
John Kessenich54ee28f2017-03-11 14:13:00 -07003115 parseContext.handleFunctionArgument(function, arguments, baseObject);
John Kessenichdfbdd9e2017-03-19 13:10:28 -06003116 }
John Kessenich4678ca92016-05-13 09:33:42 -06003117 if (! acceptArguments(function, arguments))
3118 return false;
3119
John Kessenich54ee28f2017-03-11 14:13:00 -07003120 // call
John Kessenich8f9fdc92017-03-30 16:22:26 -06003121 node = parseContext.handleFunctionCall(loc, function, arguments);
John Kessenich4678ca92016-05-13 09:33:42 -06003122
3123 return true;
John Kessenich34fb0362016-05-03 23:17:20 -06003124}
3125
John Kessenich87142c72016-03-12 20:24:24 -07003126// arguments
John Kessenich078d7f22016-03-14 10:02:11 -06003127// : LEFT_PAREN expression COMMA expression COMMA ... RIGHT_PAREN
John Kessenich87142c72016-03-12 20:24:24 -07003128//
John Kessenichd016be12016-03-13 11:24:20 -06003129// The arguments are pushed onto the 'function' argument list and
3130// onto the 'arguments' aggregate.
3131//
John Kessenich4678ca92016-05-13 09:33:42 -06003132bool HlslGrammar::acceptArguments(TFunction* function, TIntermTyped*& arguments)
John Kessenich87142c72016-03-12 20:24:24 -07003133{
John Kessenich078d7f22016-03-14 10:02:11 -06003134 // LEFT_PAREN
John Kessenich87142c72016-03-12 20:24:24 -07003135 if (! acceptTokenClass(EHTokLeftParen))
3136 return false;
3137
John Kessenich2aa12b12017-04-18 14:47:33 -06003138 // RIGHT_PAREN
3139 if (acceptTokenClass(EHTokRightParen))
3140 return true;
3141
3142 // must now be at least one expression...
John Kessenich87142c72016-03-12 20:24:24 -07003143 do {
John Kessenichd016be12016-03-13 11:24:20 -06003144 // expression
John Kessenich87142c72016-03-12 20:24:24 -07003145 TIntermTyped* arg;
John Kessenich4678ca92016-05-13 09:33:42 -06003146 if (! acceptAssignmentExpression(arg))
John Kessenich2aa12b12017-04-18 14:47:33 -06003147 return false;
John Kessenichd016be12016-03-13 11:24:20 -06003148
3149 // hook it up
3150 parseContext.handleFunctionArgument(function, arguments, arg);
3151
John Kessenich078d7f22016-03-14 10:02:11 -06003152 // COMMA
John Kessenich87142c72016-03-12 20:24:24 -07003153 if (! acceptTokenClass(EHTokComma))
3154 break;
3155 } while (true);
3156
John Kessenich078d7f22016-03-14 10:02:11 -06003157 // RIGHT_PAREN
John Kessenich87142c72016-03-12 20:24:24 -07003158 if (! acceptTokenClass(EHTokRightParen)) {
John Kessenich0d2b6de2016-06-05 11:23:11 -06003159 expected(")");
John Kessenich87142c72016-03-12 20:24:24 -07003160 return false;
3161 }
3162
3163 return true;
3164}
3165
3166bool HlslGrammar::acceptLiteral(TIntermTyped*& node)
3167{
3168 switch (token.tokenClass) {
3169 case EHTokIntConstant:
John Kessenich078d7f22016-03-14 10:02:11 -06003170 node = intermediate.addConstantUnion(token.i, token.loc, true);
John Kessenich87142c72016-03-12 20:24:24 -07003171 break;
steve-lunarg2de32912016-07-28 14:49:48 -06003172 case EHTokUintConstant:
3173 node = intermediate.addConstantUnion(token.u, token.loc, true);
3174 break;
John Kessenich87142c72016-03-12 20:24:24 -07003175 case EHTokFloatConstant:
John Kessenich078d7f22016-03-14 10:02:11 -06003176 node = intermediate.addConstantUnion(token.d, EbtFloat, token.loc, true);
John Kessenich87142c72016-03-12 20:24:24 -07003177 break;
3178 case EHTokDoubleConstant:
John Kessenich078d7f22016-03-14 10:02:11 -06003179 node = intermediate.addConstantUnion(token.d, EbtDouble, token.loc, true);
John Kessenich87142c72016-03-12 20:24:24 -07003180 break;
3181 case EHTokBoolConstant:
John Kessenich078d7f22016-03-14 10:02:11 -06003182 node = intermediate.addConstantUnion(token.b, token.loc, true);
John Kessenich87142c72016-03-12 20:24:24 -07003183 break;
John Kessenich86f71382016-09-19 20:23:18 -06003184 case EHTokStringConstant:
steve-lunarg858c9282017-01-07 08:54:10 -07003185 node = intermediate.addConstantUnion(token.string, token.loc, true);
John Kessenich86f71382016-09-19 20:23:18 -06003186 break;
John Kessenich87142c72016-03-12 20:24:24 -07003187
3188 default:
3189 return false;
3190 }
3191
3192 advanceToken();
3193
3194 return true;
3195}
3196
John Kessenich0e071192017-06-06 11:37:33 -06003197// simple_statement
3198// : SEMICOLON
3199// | declaration_statement
3200// | expression SEMICOLON
3201//
3202bool HlslGrammar::acceptSimpleStatement(TIntermNode*& statement)
3203{
3204 // SEMICOLON
3205 if (acceptTokenClass(EHTokSemicolon))
3206 return true;
3207
3208 // declaration
3209 if (acceptDeclaration(statement))
3210 return true;
3211
3212 // expression
3213 TIntermTyped* node;
3214 if (acceptExpression(node))
3215 statement = node;
3216 else
3217 return false;
3218
3219 // SEMICOLON (following an expression)
3220 if (acceptTokenClass(EHTokSemicolon))
3221 return true;
3222 else {
3223 expected(";");
3224 return false;
3225 }
3226}
3227
John Kessenich5f934b02016-03-13 17:58:25 -06003228// compound_statement
John Kessenich34fb0362016-05-03 23:17:20 -06003229// : LEFT_CURLY statement statement ... RIGHT_CURLY
John Kessenich5f934b02016-03-13 17:58:25 -06003230//
John Kessenich21472ae2016-06-04 11:46:33 -06003231bool HlslGrammar::acceptCompoundStatement(TIntermNode*& retStatement)
John Kessenich87142c72016-03-12 20:24:24 -07003232{
John Kessenich21472ae2016-06-04 11:46:33 -06003233 TIntermAggregate* compoundStatement = nullptr;
3234
John Kessenich34fb0362016-05-03 23:17:20 -06003235 // LEFT_CURLY
John Kessenich5f934b02016-03-13 17:58:25 -06003236 if (! acceptTokenClass(EHTokLeftBrace))
3237 return false;
3238
3239 // statement statement ...
3240 TIntermNode* statement = nullptr;
3241 while (acceptStatement(statement)) {
John Kessenichd02dc5d2016-07-01 00:04:11 -06003242 TIntermBranch* branch = statement ? statement->getAsBranchNode() : nullptr;
3243 if (branch != nullptr && (branch->getFlowOp() == EOpCase ||
3244 branch->getFlowOp() == EOpDefault)) {
3245 // hook up individual subsequences within a switch statement
3246 parseContext.wrapupSwitchSubsequence(compoundStatement, statement);
3247 compoundStatement = nullptr;
3248 } else {
3249 // hook it up to the growing compound statement
3250 compoundStatement = intermediate.growAggregate(compoundStatement, statement);
3251 }
John Kessenich5f934b02016-03-13 17:58:25 -06003252 }
John Kessenich34fb0362016-05-03 23:17:20 -06003253 if (compoundStatement)
3254 compoundStatement->setOperator(EOpSequence);
John Kessenich5f934b02016-03-13 17:58:25 -06003255
John Kessenich21472ae2016-06-04 11:46:33 -06003256 retStatement = compoundStatement;
3257
John Kessenich34fb0362016-05-03 23:17:20 -06003258 // RIGHT_CURLY
John Kessenich5f934b02016-03-13 17:58:25 -06003259 return acceptTokenClass(EHTokRightBrace);
3260}
3261
John Kessenich0d2b6de2016-06-05 11:23:11 -06003262bool HlslGrammar::acceptScopedStatement(TIntermNode*& statement)
3263{
3264 parseContext.pushScope();
John Kessenich077e0522016-06-09 02:02:17 -06003265 bool result = acceptStatement(statement);
John Kessenich0d2b6de2016-06-05 11:23:11 -06003266 parseContext.popScope();
3267
3268 return result;
3269}
3270
John Kessenich077e0522016-06-09 02:02:17 -06003271bool HlslGrammar::acceptScopedCompoundStatement(TIntermNode*& statement)
John Kessenich0d2b6de2016-06-05 11:23:11 -06003272{
John Kessenich077e0522016-06-09 02:02:17 -06003273 parseContext.pushScope();
3274 bool result = acceptCompoundStatement(statement);
3275 parseContext.popScope();
John Kessenich0d2b6de2016-06-05 11:23:11 -06003276
3277 return result;
3278}
3279
John Kessenich5f934b02016-03-13 17:58:25 -06003280// statement
John Kessenich21472ae2016-06-04 11:46:33 -06003281// : attributes attributed_statement
3282//
3283// attributed_statement
John Kessenich5f934b02016-03-13 17:58:25 -06003284// : compound_statement
John Kessenich0e071192017-06-06 11:37:33 -06003285// | simple_statement
John Kessenich21472ae2016-06-04 11:46:33 -06003286// | selection_statement
3287// | switch_statement
3288// | case_label
John Kessenich0e071192017-06-06 11:37:33 -06003289// | default_label
John Kessenich21472ae2016-06-04 11:46:33 -06003290// | iteration_statement
3291// | jump_statement
John Kessenich5f934b02016-03-13 17:58:25 -06003292//
3293bool HlslGrammar::acceptStatement(TIntermNode*& statement)
3294{
John Kessenich21472ae2016-06-04 11:46:33 -06003295 statement = nullptr;
John Kessenich5f934b02016-03-13 17:58:25 -06003296
John Kessenich21472ae2016-06-04 11:46:33 -06003297 // attributes
steve-lunarg1868b142016-10-20 13:07:10 -06003298 TAttributeMap attributes;
3299 acceptAttributes(attributes);
John Kessenich5f934b02016-03-13 17:58:25 -06003300
John Kessenich21472ae2016-06-04 11:46:33 -06003301 // attributed_statement
3302 switch (peek()) {
3303 case EHTokLeftBrace:
John Kessenich077e0522016-06-09 02:02:17 -06003304 return acceptScopedCompoundStatement(statement);
John Kessenich5f934b02016-03-13 17:58:25 -06003305
John Kessenich21472ae2016-06-04 11:46:33 -06003306 case EHTokIf:
Rex Xu57e65922017-07-04 23:23:40 +08003307 return acceptSelectionStatement(statement, attributes);
John Kessenich5f934b02016-03-13 17:58:25 -06003308
John Kessenich21472ae2016-06-04 11:46:33 -06003309 case EHTokSwitch:
Rex Xu57e65922017-07-04 23:23:40 +08003310 return acceptSwitchStatement(statement, attributes);
John Kessenich5f934b02016-03-13 17:58:25 -06003311
John Kessenich21472ae2016-06-04 11:46:33 -06003312 case EHTokFor:
3313 case EHTokDo:
3314 case EHTokWhile:
steve-lunargf1709e72017-05-02 20:14:50 -06003315 return acceptIterationStatement(statement, attributes);
John Kessenich21472ae2016-06-04 11:46:33 -06003316
3317 case EHTokContinue:
3318 case EHTokBreak:
3319 case EHTokDiscard:
3320 case EHTokReturn:
3321 return acceptJumpStatement(statement);
3322
3323 case EHTokCase:
3324 return acceptCaseLabel(statement);
John Kessenichd02dc5d2016-07-01 00:04:11 -06003325 case EHTokDefault:
3326 return acceptDefaultLabel(statement);
John Kessenich21472ae2016-06-04 11:46:33 -06003327
John Kessenich21472ae2016-06-04 11:46:33 -06003328 case EHTokRightBrace:
3329 // Performance: not strictly necessary, but stops a bunch of hunting early,
3330 // and is how sequences of statements end.
John Kessenich5f934b02016-03-13 17:58:25 -06003331 return false;
3332
John Kessenich21472ae2016-06-04 11:46:33 -06003333 default:
John Kessenich0e071192017-06-06 11:37:33 -06003334 return acceptSimpleStatement(statement);
John Kessenich21472ae2016-06-04 11:46:33 -06003335 }
3336
John Kessenich5f934b02016-03-13 17:58:25 -06003337 return true;
John Kessenich87142c72016-03-12 20:24:24 -07003338}
3339
John Kessenich21472ae2016-06-04 11:46:33 -06003340// attributes
John Kessenich77ea30b2017-09-30 14:34:50 -06003341// : [zero or more:] bracketed-attribute
3342//
3343// bracketed-attribute:
3344// : LEFT_BRACKET scoped-attribute RIGHT_BRACKET
3345// : LEFT_BRACKET LEFT_BRACKET scoped-attribute RIGHT_BRACKET RIGHT_BRACKET
3346//
3347// scoped-attribute:
3348// : attribute
3349// | namespace COLON COLON attribute
John Kessenich21472ae2016-06-04 11:46:33 -06003350//
3351// attribute:
3352// : UNROLL
3353// | UNROLL LEFT_PAREN literal RIGHT_PAREN
3354// | FASTOPT
3355// | ALLOW_UAV_CONDITION
3356// | BRANCH
3357// | FLATTEN
3358// | FORCECASE
3359// | CALL
steve-lunarg1868b142016-10-20 13:07:10 -06003360// | DOMAIN
3361// | EARLYDEPTHSTENCIL
3362// | INSTANCE
3363// | MAXTESSFACTOR
3364// | OUTPUTCONTROLPOINTS
3365// | OUTPUTTOPOLOGY
3366// | PARTITIONING
3367// | PATCHCONSTANTFUNC
3368// | NUMTHREADS LEFT_PAREN x_size, y_size,z z_size RIGHT_PAREN
John Kessenich21472ae2016-06-04 11:46:33 -06003369//
steve-lunarg1868b142016-10-20 13:07:10 -06003370void HlslGrammar::acceptAttributes(TAttributeMap& attributes)
John Kessenich21472ae2016-06-04 11:46:33 -06003371{
steve-lunarg1868b142016-10-20 13:07:10 -06003372 // For now, accept the [ XXX(X) ] syntax, but drop all but
3373 // numthreads, which is used to set the CS local size.
John Kessenich0d2b6de2016-06-05 11:23:11 -06003374 // TODO: subset to correct set? Pass on?
3375 do {
John Kessenich77ea30b2017-09-30 14:34:50 -06003376 HlslToken attributeToken;
steve-lunarg1868b142016-10-20 13:07:10 -06003377
John Kessenich0d2b6de2016-06-05 11:23:11 -06003378 // LEFT_BRACKET?
3379 if (! acceptTokenClass(EHTokLeftBracket))
3380 return;
John Kessenich77ea30b2017-09-30 14:34:50 -06003381 // another LEFT_BRACKET?
3382 bool doubleBrackets = false;
3383 if (acceptTokenClass(EHTokLeftBracket))
3384 doubleBrackets = true;
John Kessenich0d2b6de2016-06-05 11:23:11 -06003385
John Kessenich77ea30b2017-09-30 14:34:50 -06003386 // attribute? (could be namespace; will adjust later)
3387 if (!acceptIdentifier(attributeToken)) {
3388 if (!peekTokenClass(EHTokRightBracket)) {
3389 expected("namespace or attribute identifier");
3390 advanceToken();
3391 }
3392 }
3393
3394 TString nameSpace;
3395 if (acceptTokenClass(EHTokColonColon)) {
3396 // namespace COLON COLON
3397 nameSpace = *attributeToken.string;
3398 // attribute
3399 if (!acceptIdentifier(attributeToken)) {
3400 expected("attribute identifier");
3401 return;
3402 }
John Kessenich0d2b6de2016-06-05 11:23:11 -06003403 }
3404
steve-lunarga22f7db2016-11-11 08:17:44 -07003405 TIntermAggregate* expressions = nullptr;
steve-lunarg1868b142016-10-20 13:07:10 -06003406
3407 // (x, ...)
John Kessenich0d2b6de2016-06-05 11:23:11 -06003408 if (acceptTokenClass(EHTokLeftParen)) {
steve-lunarga22f7db2016-11-11 08:17:44 -07003409 expressions = new TIntermAggregate;
steve-lunarg1868b142016-10-20 13:07:10 -06003410
John Kessenich0d2b6de2016-06-05 11:23:11 -06003411 TIntermTyped* node;
steve-lunarga22f7db2016-11-11 08:17:44 -07003412 bool expectingExpression = false;
John Kessenichecba76f2017-01-06 00:34:48 -07003413
steve-lunarga22f7db2016-11-11 08:17:44 -07003414 while (acceptAssignmentExpression(node)) {
3415 expectingExpression = false;
3416 expressions->getSequence().push_back(node);
steve-lunarg1868b142016-10-20 13:07:10 -06003417 if (acceptTokenClass(EHTokComma))
steve-lunarga22f7db2016-11-11 08:17:44 -07003418 expectingExpression = true;
steve-lunarg1868b142016-10-20 13:07:10 -06003419 }
3420
steve-lunarga22f7db2016-11-11 08:17:44 -07003421 // 'expressions' is an aggregate with the expressions in it
John Kessenich0d2b6de2016-06-05 11:23:11 -06003422 if (! acceptTokenClass(EHTokRightParen))
3423 expected(")");
steve-lunarga22f7db2016-11-11 08:17:44 -07003424
3425 // Error for partial or missing expression
3426 if (expectingExpression || expressions->getSequence().empty())
3427 expected("expression");
John Kessenich0d2b6de2016-06-05 11:23:11 -06003428 }
3429
3430 // RIGHT_BRACKET
steve-lunarg1868b142016-10-20 13:07:10 -06003431 if (!acceptTokenClass(EHTokRightBracket)) {
3432 expected("]");
3433 return;
3434 }
John Kessenich77ea30b2017-09-30 14:34:50 -06003435 // another RIGHT_BRACKET?
3436 if (doubleBrackets && !acceptTokenClass(EHTokRightBracket)) {
3437 expected("]]");
3438 return;
3439 }
John Kessenich0d2b6de2016-06-05 11:23:11 -06003440
steve-lunarg1868b142016-10-20 13:07:10 -06003441 // Add any values we found into the attribute map. This accepts
3442 // (and ignores) values not mapping to a known TAttributeType;
John Kessenich77ea30b2017-09-30 14:34:50 -06003443 attributes.setAttribute(nameSpace, attributeToken.string, expressions);
John Kessenich0d2b6de2016-06-05 11:23:11 -06003444 } while (true);
John Kessenich21472ae2016-06-04 11:46:33 -06003445}
3446
John Kessenich0d2b6de2016-06-05 11:23:11 -06003447// selection_statement
3448// : IF LEFT_PAREN expression RIGHT_PAREN statement
3449// : IF LEFT_PAREN expression RIGHT_PAREN statement ELSE statement
3450//
Rex Xu57e65922017-07-04 23:23:40 +08003451bool HlslGrammar::acceptSelectionStatement(TIntermNode*& statement, const TAttributeMap& attributes)
John Kessenich21472ae2016-06-04 11:46:33 -06003452{
John Kessenich0d2b6de2016-06-05 11:23:11 -06003453 TSourceLoc loc = token.loc;
3454
Rex Xu57e65922017-07-04 23:23:40 +08003455 const TSelectionControl control = parseContext.handleSelectionControl(attributes);
3456
John Kessenich0d2b6de2016-06-05 11:23:11 -06003457 // IF
3458 if (! acceptTokenClass(EHTokIf))
3459 return false;
3460
3461 // so that something declared in the condition is scoped to the lifetimes
3462 // of the then-else statements
3463 parseContext.pushScope();
3464
3465 // LEFT_PAREN expression RIGHT_PAREN
3466 TIntermTyped* condition;
3467 if (! acceptParenExpression(condition))
3468 return false;
John Kessenich7e997e22017-03-30 22:09:30 -06003469 condition = parseContext.convertConditionalExpression(loc, condition);
3470 if (condition == nullptr)
3471 return false;
John Kessenich0d2b6de2016-06-05 11:23:11 -06003472
3473 // create the child statements
3474 TIntermNodePair thenElse = { nullptr, nullptr };
3475
John Kessenichf6deacd2017-06-06 19:52:55 -06003476 ++parseContext.controlFlowNestingLevel; // this only needs to work right if no errors
3477
John Kessenich0d2b6de2016-06-05 11:23:11 -06003478 // then statement
3479 if (! acceptScopedStatement(thenElse.node1)) {
3480 expected("then statement");
3481 return false;
3482 }
3483
3484 // ELSE
3485 if (acceptTokenClass(EHTokElse)) {
3486 // else statement
3487 if (! acceptScopedStatement(thenElse.node2)) {
3488 expected("else statement");
3489 return false;
3490 }
3491 }
3492
3493 // Put the pieces together
Rex Xu57e65922017-07-04 23:23:40 +08003494 statement = intermediate.addSelection(condition, thenElse, loc, control);
John Kessenich0d2b6de2016-06-05 11:23:11 -06003495 parseContext.popScope();
John Kessenichf6deacd2017-06-06 19:52:55 -06003496 --parseContext.controlFlowNestingLevel;
John Kessenich0d2b6de2016-06-05 11:23:11 -06003497
3498 return true;
John Kessenich21472ae2016-06-04 11:46:33 -06003499}
3500
John Kessenichd02dc5d2016-07-01 00:04:11 -06003501// switch_statement
3502// : SWITCH LEFT_PAREN expression RIGHT_PAREN compound_statement
3503//
Rex Xu57e65922017-07-04 23:23:40 +08003504bool HlslGrammar::acceptSwitchStatement(TIntermNode*& statement, const TAttributeMap& attributes)
John Kessenich21472ae2016-06-04 11:46:33 -06003505{
John Kessenichd02dc5d2016-07-01 00:04:11 -06003506 // SWITCH
3507 TSourceLoc loc = token.loc;
Rex Xu57e65922017-07-04 23:23:40 +08003508
3509 const TSelectionControl control = parseContext.handleSelectionControl(attributes);
3510
John Kessenichd02dc5d2016-07-01 00:04:11 -06003511 if (! acceptTokenClass(EHTokSwitch))
3512 return false;
3513
3514 // LEFT_PAREN expression RIGHT_PAREN
3515 parseContext.pushScope();
3516 TIntermTyped* switchExpression;
3517 if (! acceptParenExpression(switchExpression)) {
3518 parseContext.popScope();
3519 return false;
3520 }
3521
3522 // compound_statement
3523 parseContext.pushSwitchSequence(new TIntermSequence);
John Kessenichf6deacd2017-06-06 19:52:55 -06003524
3525 ++parseContext.controlFlowNestingLevel;
John Kessenichd02dc5d2016-07-01 00:04:11 -06003526 bool statementOkay = acceptCompoundStatement(statement);
John Kessenichf6deacd2017-06-06 19:52:55 -06003527 --parseContext.controlFlowNestingLevel;
3528
John Kessenichd02dc5d2016-07-01 00:04:11 -06003529 if (statementOkay)
Rex Xu57e65922017-07-04 23:23:40 +08003530 statement = parseContext.addSwitch(loc, switchExpression, statement ? statement->getAsAggregate() : nullptr, control);
John Kessenichd02dc5d2016-07-01 00:04:11 -06003531
3532 parseContext.popSwitchSequence();
3533 parseContext.popScope();
3534
3535 return statementOkay;
John Kessenich21472ae2016-06-04 11:46:33 -06003536}
3537
John Kessenich119f8f62016-06-05 15:44:07 -06003538// iteration_statement
3539// : WHILE LEFT_PAREN condition RIGHT_PAREN statement
3540// | DO LEFT_BRACE statement RIGHT_BRACE WHILE LEFT_PAREN expression RIGHT_PAREN SEMICOLON
3541// | FOR LEFT_PAREN for_init_statement for_rest_statement RIGHT_PAREN statement
3542//
3543// Non-speculative, only call if it needs to be found; WHILE or DO or FOR already seen.
steve-lunargf1709e72017-05-02 20:14:50 -06003544bool HlslGrammar::acceptIterationStatement(TIntermNode*& statement, const TAttributeMap& attributes)
John Kessenich21472ae2016-06-04 11:46:33 -06003545{
John Kessenich119f8f62016-06-05 15:44:07 -06003546 TSourceLoc loc = token.loc;
3547 TIntermTyped* condition = nullptr;
3548
3549 EHlslTokenClass loop = peek();
3550 assert(loop == EHTokDo || loop == EHTokFor || loop == EHTokWhile);
3551
3552 // WHILE or DO or FOR
3553 advanceToken();
steve-lunargf1709e72017-05-02 20:14:50 -06003554
3555 const TLoopControl control = parseContext.handleLoopControl(attributes);
John Kessenich119f8f62016-06-05 15:44:07 -06003556
3557 switch (loop) {
3558 case EHTokWhile:
3559 // so that something declared in the condition is scoped to the lifetime
3560 // of the while sub-statement
John Kessenichf6deacd2017-06-06 19:52:55 -06003561 parseContext.pushScope(); // this only needs to work right if no errors
John Kessenich119f8f62016-06-05 15:44:07 -06003562 parseContext.nestLooping();
John Kessenichf6deacd2017-06-06 19:52:55 -06003563 ++parseContext.controlFlowNestingLevel;
John Kessenich119f8f62016-06-05 15:44:07 -06003564
3565 // LEFT_PAREN condition RIGHT_PAREN
3566 if (! acceptParenExpression(condition))
3567 return false;
John Kessenich7e997e22017-03-30 22:09:30 -06003568 condition = parseContext.convertConditionalExpression(loc, condition);
3569 if (condition == nullptr)
3570 return false;
John Kessenich119f8f62016-06-05 15:44:07 -06003571
3572 // statement
3573 if (! acceptScopedStatement(statement)) {
3574 expected("while sub-statement");
3575 return false;
3576 }
3577
3578 parseContext.unnestLooping();
3579 parseContext.popScope();
John Kessenichf6deacd2017-06-06 19:52:55 -06003580 --parseContext.controlFlowNestingLevel;
John Kessenich119f8f62016-06-05 15:44:07 -06003581
steve-lunargf1709e72017-05-02 20:14:50 -06003582 statement = intermediate.addLoop(statement, condition, nullptr, true, loc, control);
John Kessenich119f8f62016-06-05 15:44:07 -06003583
3584 return true;
3585
3586 case EHTokDo:
John Kessenichf6deacd2017-06-06 19:52:55 -06003587 parseContext.nestLooping(); // this only needs to work right if no errors
3588 ++parseContext.controlFlowNestingLevel;
John Kessenich119f8f62016-06-05 15:44:07 -06003589
John Kessenich119f8f62016-06-05 15:44:07 -06003590 // statement
John Kessenich0c6f9362017-04-20 11:08:24 -06003591 if (! acceptScopedStatement(statement)) {
John Kessenich119f8f62016-06-05 15:44:07 -06003592 expected("do sub-statement");
3593 return false;
3594 }
3595
John Kessenich119f8f62016-06-05 15:44:07 -06003596 // WHILE
3597 if (! acceptTokenClass(EHTokWhile)) {
3598 expected("while");
3599 return false;
3600 }
3601
3602 // LEFT_PAREN condition RIGHT_PAREN
3603 TIntermTyped* condition;
3604 if (! acceptParenExpression(condition))
3605 return false;
John Kessenich7e997e22017-03-30 22:09:30 -06003606 condition = parseContext.convertConditionalExpression(loc, condition);
3607 if (condition == nullptr)
3608 return false;
John Kessenich119f8f62016-06-05 15:44:07 -06003609
3610 if (! acceptTokenClass(EHTokSemicolon))
3611 expected(";");
3612
3613 parseContext.unnestLooping();
John Kessenichf6deacd2017-06-06 19:52:55 -06003614 --parseContext.controlFlowNestingLevel;
John Kessenich119f8f62016-06-05 15:44:07 -06003615
steve-lunargf1709e72017-05-02 20:14:50 -06003616 statement = intermediate.addLoop(statement, condition, 0, false, loc, control);
John Kessenich119f8f62016-06-05 15:44:07 -06003617
3618 return true;
3619
3620 case EHTokFor:
3621 {
3622 // LEFT_PAREN
3623 if (! acceptTokenClass(EHTokLeftParen))
3624 expected("(");
3625
3626 // so that something declared in the condition is scoped to the lifetime
3627 // of the for sub-statement
3628 parseContext.pushScope();
3629
John Kessenich5bc4d9a2016-06-20 01:22:38 -06003630 // initializer
3631 TIntermNode* initNode = nullptr;
John Kessenich0e071192017-06-06 11:37:33 -06003632 if (! acceptSimpleStatement(initNode))
3633 expected("for-loop initializer statement");
John Kessenich119f8f62016-06-05 15:44:07 -06003634
John Kessenichf6deacd2017-06-06 19:52:55 -06003635 parseContext.nestLooping(); // this only needs to work right if no errors
3636 ++parseContext.controlFlowNestingLevel;
John Kessenich119f8f62016-06-05 15:44:07 -06003637
3638 // condition SEMI_COLON
3639 acceptExpression(condition);
3640 if (! acceptTokenClass(EHTokSemicolon))
3641 expected(";");
John Kessenich7e997e22017-03-30 22:09:30 -06003642 if (condition != nullptr) {
3643 condition = parseContext.convertConditionalExpression(loc, condition);
3644 if (condition == nullptr)
3645 return false;
3646 }
John Kessenich119f8f62016-06-05 15:44:07 -06003647
3648 // iterator SEMI_COLON
3649 TIntermTyped* iterator = nullptr;
3650 acceptExpression(iterator);
3651 if (! acceptTokenClass(EHTokRightParen))
3652 expected(")");
3653
3654 // statement
3655 if (! acceptScopedStatement(statement)) {
3656 expected("for sub-statement");
3657 return false;
3658 }
3659
steve-lunargf1709e72017-05-02 20:14:50 -06003660 statement = intermediate.addForLoop(statement, initNode, condition, iterator, true, loc, control);
John Kessenich119f8f62016-06-05 15:44:07 -06003661
3662 parseContext.popScope();
3663 parseContext.unnestLooping();
John Kessenichf6deacd2017-06-06 19:52:55 -06003664 --parseContext.controlFlowNestingLevel;
John Kessenich119f8f62016-06-05 15:44:07 -06003665
3666 return true;
3667 }
3668
3669 default:
3670 return false;
3671 }
John Kessenich21472ae2016-06-04 11:46:33 -06003672}
3673
3674// jump_statement
3675// : CONTINUE SEMICOLON
3676// | BREAK SEMICOLON
3677// | DISCARD SEMICOLON
3678// | RETURN SEMICOLON
3679// | RETURN expression SEMICOLON
3680//
3681bool HlslGrammar::acceptJumpStatement(TIntermNode*& statement)
3682{
John Kessenich5bc4d9a2016-06-20 01:22:38 -06003683 EHlslTokenClass jump = peek();
3684 switch (jump) {
John Kessenich21472ae2016-06-04 11:46:33 -06003685 case EHTokContinue:
3686 case EHTokBreak:
3687 case EHTokDiscard:
John Kessenich21472ae2016-06-04 11:46:33 -06003688 case EHTokReturn:
John Kessenich5bc4d9a2016-06-20 01:22:38 -06003689 advanceToken();
3690 break;
John Kessenich21472ae2016-06-04 11:46:33 -06003691 default:
John Kessenich5bc4d9a2016-06-20 01:22:38 -06003692 // not something we handle in this function
John Kessenich21472ae2016-06-04 11:46:33 -06003693 return false;
3694 }
John Kessenich21472ae2016-06-04 11:46:33 -06003695
John Kessenich5bc4d9a2016-06-20 01:22:38 -06003696 switch (jump) {
3697 case EHTokContinue:
3698 statement = intermediate.addBranch(EOpContinue, token.loc);
3699 break;
3700 case EHTokBreak:
3701 statement = intermediate.addBranch(EOpBreak, token.loc);
3702 break;
3703 case EHTokDiscard:
3704 statement = intermediate.addBranch(EOpKill, token.loc);
3705 break;
3706
3707 case EHTokReturn:
3708 {
3709 // expression
3710 TIntermTyped* node;
3711 if (acceptExpression(node)) {
3712 // hook it up
steve-lunargc4a13072016-08-09 11:28:03 -06003713 statement = parseContext.handleReturnValue(token.loc, node);
John Kessenich5bc4d9a2016-06-20 01:22:38 -06003714 } else
3715 statement = intermediate.addBranch(EOpReturn, token.loc);
3716 break;
3717 }
3718
3719 default:
3720 assert(0);
3721 return false;
3722 }
3723
3724 // SEMICOLON
3725 if (! acceptTokenClass(EHTokSemicolon))
3726 expected(";");
John Kessenichecba76f2017-01-06 00:34:48 -07003727
John Kessenich5bc4d9a2016-06-20 01:22:38 -06003728 return true;
3729}
John Kessenich21472ae2016-06-04 11:46:33 -06003730
John Kessenichd02dc5d2016-07-01 00:04:11 -06003731// case_label
3732// : CASE expression COLON
3733//
John Kessenich21472ae2016-06-04 11:46:33 -06003734bool HlslGrammar::acceptCaseLabel(TIntermNode*& statement)
3735{
John Kessenichd02dc5d2016-07-01 00:04:11 -06003736 TSourceLoc loc = token.loc;
3737 if (! acceptTokenClass(EHTokCase))
3738 return false;
3739
3740 TIntermTyped* expression;
3741 if (! acceptExpression(expression)) {
3742 expected("case expression");
3743 return false;
3744 }
3745
3746 if (! acceptTokenClass(EHTokColon)) {
3747 expected(":");
3748 return false;
3749 }
3750
3751 statement = parseContext.intermediate.addBranch(EOpCase, expression, loc);
3752
3753 return true;
3754}
3755
3756// default_label
3757// : DEFAULT COLON
3758//
3759bool HlslGrammar::acceptDefaultLabel(TIntermNode*& statement)
3760{
3761 TSourceLoc loc = token.loc;
3762 if (! acceptTokenClass(EHTokDefault))
3763 return false;
3764
3765 if (! acceptTokenClass(EHTokColon)) {
3766 expected(":");
3767 return false;
3768 }
3769
3770 statement = parseContext.intermediate.addBranch(EOpDefault, loc);
3771
3772 return true;
John Kessenich21472ae2016-06-04 11:46:33 -06003773}
3774
John Kessenich19b92ff2016-06-19 11:50:34 -06003775// array_specifier
steve-lunarg7b211a32016-10-13 12:26:18 -06003776// : LEFT_BRACKET integer_expression RGHT_BRACKET ... // optional
3777// : LEFT_BRACKET RGHT_BRACKET // optional
John Kessenich19b92ff2016-06-19 11:50:34 -06003778//
3779void HlslGrammar::acceptArraySpecifier(TArraySizes*& arraySizes)
3780{
3781 arraySizes = nullptr;
3782
steve-lunarg7b211a32016-10-13 12:26:18 -06003783 // Early-out if there aren't any array dimensions
3784 if (!peekTokenClass(EHTokLeftBracket))
John Kessenich19b92ff2016-06-19 11:50:34 -06003785 return;
3786
steve-lunarg7b211a32016-10-13 12:26:18 -06003787 // If we get here, we have at least one array dimension. This will track the sizes we find.
John Kessenich19b92ff2016-06-19 11:50:34 -06003788 arraySizes = new TArraySizes;
steve-lunarg7b211a32016-10-13 12:26:18 -06003789
3790 // Collect each array dimension.
3791 while (acceptTokenClass(EHTokLeftBracket)) {
3792 TSourceLoc loc = token.loc;
3793 TIntermTyped* sizeExpr = nullptr;
3794
John Kessenich057df292017-03-06 18:18:37 -07003795 // Array sizing expression is optional. If omitted, array will be later sized by initializer list.
steve-lunarg7b211a32016-10-13 12:26:18 -06003796 const bool hasArraySize = acceptAssignmentExpression(sizeExpr);
3797
3798 if (! acceptTokenClass(EHTokRightBracket)) {
3799 expected("]");
3800 return;
3801 }
3802
3803 if (hasArraySize) {
3804 TArraySize arraySize;
3805 parseContext.arraySizeCheck(loc, sizeExpr, arraySize);
3806 arraySizes->addInnerSize(arraySize);
3807 } else {
3808 arraySizes->addInnerSize(0); // sized by initializers.
3809 }
steve-lunarg265c0612016-09-27 10:57:35 -06003810 }
John Kessenich19b92ff2016-06-19 11:50:34 -06003811}
3812
John Kessenich630dd7d2016-06-12 23:52:12 -06003813// post_decls
John Kessenichcfd7ce82016-09-05 16:03:12 -06003814// : COLON semantic // optional
3815// COLON PACKOFFSET LEFT_PAREN c[Subcomponent][.component] RIGHT_PAREN // optional
3816// COLON REGISTER LEFT_PAREN [shader_profile,] Type#[subcomp]opt (COMMA SPACEN)opt RIGHT_PAREN // optional
John Kesseniche3218e22016-09-05 14:37:03 -06003817// COLON LAYOUT layout_qualifier_list
John Kessenichcfd7ce82016-09-05 16:03:12 -06003818// annotations // optional
John Kessenich630dd7d2016-06-12 23:52:12 -06003819//
John Kessenich854fe242017-03-02 14:30:59 -07003820// Return true if any tokens were accepted. That is,
3821// false can be returned on successfully recognizing nothing,
3822// not necessarily meaning bad syntax.
3823//
3824bool HlslGrammar::acceptPostDecls(TQualifier& qualifier)
John Kessenich078d7f22016-03-14 10:02:11 -06003825{
John Kessenich854fe242017-03-02 14:30:59 -07003826 bool found = false;
3827
John Kessenich630dd7d2016-06-12 23:52:12 -06003828 do {
John Kessenichecba76f2017-01-06 00:34:48 -07003829 // COLON
John Kessenich630dd7d2016-06-12 23:52:12 -06003830 if (acceptTokenClass(EHTokColon)) {
John Kessenich854fe242017-03-02 14:30:59 -07003831 found = true;
John Kessenich630dd7d2016-06-12 23:52:12 -06003832 HlslToken idToken;
John Kesseniche3218e22016-09-05 14:37:03 -06003833 if (peekTokenClass(EHTokLayout))
3834 acceptLayoutQualifierList(qualifier);
3835 else if (acceptTokenClass(EHTokPackOffset)) {
John Kessenich96e9f472016-07-29 14:28:39 -06003836 // PACKOFFSET LEFT_PAREN c[Subcomponent][.component] RIGHT_PAREN
John Kessenich630dd7d2016-06-12 23:52:12 -06003837 if (! acceptTokenClass(EHTokLeftParen)) {
3838 expected("(");
John Kessenich854fe242017-03-02 14:30:59 -07003839 return false;
John Kessenich630dd7d2016-06-12 23:52:12 -06003840 }
John Kessenich82d6baf2016-07-29 13:03:05 -06003841 HlslToken locationToken;
3842 if (! acceptIdentifier(locationToken)) {
3843 expected("c[subcomponent][.component]");
John Kessenich854fe242017-03-02 14:30:59 -07003844 return false;
John Kessenich82d6baf2016-07-29 13:03:05 -06003845 }
3846 HlslToken componentToken;
3847 if (acceptTokenClass(EHTokDot)) {
3848 if (! acceptIdentifier(componentToken)) {
3849 expected("component");
John Kessenich854fe242017-03-02 14:30:59 -07003850 return false;
John Kessenich82d6baf2016-07-29 13:03:05 -06003851 }
3852 }
John Kessenich630dd7d2016-06-12 23:52:12 -06003853 if (! acceptTokenClass(EHTokRightParen)) {
3854 expected(")");
3855 break;
3856 }
John Kessenich7735b942016-09-05 12:40:06 -06003857 parseContext.handlePackOffset(locationToken.loc, qualifier, *locationToken.string, componentToken.string);
John Kessenich630dd7d2016-06-12 23:52:12 -06003858 } else if (! acceptIdentifier(idToken)) {
John Kesseniche3218e22016-09-05 14:37:03 -06003859 expected("layout, semantic, packoffset, or register");
John Kessenich854fe242017-03-02 14:30:59 -07003860 return false;
John Kessenich630dd7d2016-06-12 23:52:12 -06003861 } else if (*idToken.string == "register") {
John Kessenichcfd7ce82016-09-05 16:03:12 -06003862 // REGISTER LEFT_PAREN [shader_profile,] Type#[subcomp]opt (COMMA SPACEN)opt RIGHT_PAREN
3863 // LEFT_PAREN
John Kessenich630dd7d2016-06-12 23:52:12 -06003864 if (! acceptTokenClass(EHTokLeftParen)) {
3865 expected("(");
John Kessenich854fe242017-03-02 14:30:59 -07003866 return false;
John Kessenich630dd7d2016-06-12 23:52:12 -06003867 }
John Kessenichb38f0712016-07-30 10:29:54 -06003868 HlslToken registerDesc; // for Type#
3869 HlslToken profile;
John Kessenich96e9f472016-07-29 14:28:39 -06003870 if (! acceptIdentifier(registerDesc)) {
3871 expected("register number description");
John Kessenich854fe242017-03-02 14:30:59 -07003872 return false;
John Kessenich96e9f472016-07-29 14:28:39 -06003873 }
John Kessenichcfd7ce82016-09-05 16:03:12 -06003874 if (registerDesc.string->size() > 1 && !isdigit((*registerDesc.string)[1]) &&
3875 acceptTokenClass(EHTokComma)) {
John Kessenichb38f0712016-07-30 10:29:54 -06003876 // Then we didn't really see the registerDesc yet, it was
3877 // actually the profile. Adjust...
John Kessenich96e9f472016-07-29 14:28:39 -06003878 profile = registerDesc;
3879 if (! acceptIdentifier(registerDesc)) {
3880 expected("register number description");
John Kessenich854fe242017-03-02 14:30:59 -07003881 return false;
John Kessenich96e9f472016-07-29 14:28:39 -06003882 }
3883 }
John Kessenichb38f0712016-07-30 10:29:54 -06003884 int subComponent = 0;
3885 if (acceptTokenClass(EHTokLeftBracket)) {
3886 // LEFT_BRACKET subcomponent RIGHT_BRACKET
3887 if (! peekTokenClass(EHTokIntConstant)) {
3888 expected("literal integer");
John Kessenich854fe242017-03-02 14:30:59 -07003889 return false;
John Kessenichb38f0712016-07-30 10:29:54 -06003890 }
3891 subComponent = token.i;
3892 advanceToken();
3893 if (! acceptTokenClass(EHTokRightBracket)) {
3894 expected("]");
3895 break;
3896 }
3897 }
John Kessenichcfd7ce82016-09-05 16:03:12 -06003898 // (COMMA SPACEN)opt
3899 HlslToken spaceDesc;
3900 if (acceptTokenClass(EHTokComma)) {
3901 if (! acceptIdentifier(spaceDesc)) {
3902 expected ("space identifier");
John Kessenich854fe242017-03-02 14:30:59 -07003903 return false;
John Kessenichcfd7ce82016-09-05 16:03:12 -06003904 }
3905 }
3906 // RIGHT_PAREN
John Kessenich630dd7d2016-06-12 23:52:12 -06003907 if (! acceptTokenClass(EHTokRightParen)) {
3908 expected(")");
3909 break;
3910 }
John Kessenichcfd7ce82016-09-05 16:03:12 -06003911 parseContext.handleRegister(registerDesc.loc, qualifier, profile.string, *registerDesc.string, subComponent, spaceDesc.string);
John Kessenich630dd7d2016-06-12 23:52:12 -06003912 } else {
3913 // semantic, in idToken.string
John Kessenich2dd643f2017-03-14 21:50:06 -06003914 TString semanticUpperCase = *idToken.string;
3915 std::transform(semanticUpperCase.begin(), semanticUpperCase.end(), semanticUpperCase.begin(), ::toupper);
3916 parseContext.handleSemantic(idToken.loc, qualifier, mapSemantic(semanticUpperCase.c_str()), semanticUpperCase);
John Kessenich630dd7d2016-06-12 23:52:12 -06003917 }
John Kessenich854fe242017-03-02 14:30:59 -07003918 } else if (peekTokenClass(EHTokLeftAngle)) {
3919 found = true;
John Kessenicha1e2d492016-09-20 13:22:58 -06003920 acceptAnnotations(qualifier);
John Kessenich854fe242017-03-02 14:30:59 -07003921 } else
John Kessenich630dd7d2016-06-12 23:52:12 -06003922 break;
John Kessenich078d7f22016-03-14 10:02:11 -06003923
John Kessenich630dd7d2016-06-12 23:52:12 -06003924 } while (true);
John Kessenich854fe242017-03-02 14:30:59 -07003925
3926 return found;
John Kessenich078d7f22016-03-14 10:02:11 -06003927}
3928
John Kessenichb16f7e62017-03-11 19:32:47 -07003929//
3930// Get the stream of tokens from the scanner, but skip all syntactic/semantic
3931// processing.
3932//
3933bool HlslGrammar::captureBlockTokens(TVector<HlslToken>& tokens)
3934{
3935 if (! peekTokenClass(EHTokLeftBrace))
3936 return false;
3937
3938 int braceCount = 0;
3939
3940 do {
3941 switch (peek()) {
3942 case EHTokLeftBrace:
3943 ++braceCount;
3944 break;
3945 case EHTokRightBrace:
3946 --braceCount;
3947 break;
3948 case EHTokNone:
3949 // End of input before balance { } is bad...
3950 return false;
3951 default:
3952 break;
3953 }
3954
3955 tokens.push_back(token);
3956 advanceToken();
3957 } while (braceCount > 0);
3958
3959 return true;
3960}
3961
John Kessenich0320d092017-06-13 22:22:52 -06003962// Return a string for just the types that can also be declared as an identifier.
3963const char* HlslGrammar::getTypeString(EHlslTokenClass tokenClass) const
3964{
3965 switch (tokenClass) {
3966 case EHTokSample: return "sample";
3967 case EHTokHalf: return "half";
3968 case EHTokHalf1x1: return "half1x1";
3969 case EHTokHalf1x2: return "half1x2";
3970 case EHTokHalf1x3: return "half1x3";
3971 case EHTokHalf1x4: return "half1x4";
3972 case EHTokHalf2x1: return "half2x1";
3973 case EHTokHalf2x2: return "half2x2";
3974 case EHTokHalf2x3: return "half2x3";
3975 case EHTokHalf2x4: return "half2x4";
3976 case EHTokHalf3x1: return "half3x1";
3977 case EHTokHalf3x2: return "half3x2";
3978 case EHTokHalf3x3: return "half3x3";
3979 case EHTokHalf3x4: return "half3x4";
3980 case EHTokHalf4x1: return "half4x1";
3981 case EHTokHalf4x2: return "half4x2";
3982 case EHTokHalf4x3: return "half4x3";
3983 case EHTokHalf4x4: return "half4x4";
3984 case EHTokBool: return "bool";
3985 case EHTokFloat: return "float";
3986 case EHTokDouble: return "double";
3987 case EHTokInt: return "int";
3988 case EHTokUint: return "uint";
3989 case EHTokMin16float: return "min16float";
3990 case EHTokMin10float: return "min10float";
3991 case EHTokMin16int: return "min16int";
3992 case EHTokMin12int: return "min12int";
3993 default:
3994 return nullptr;
3995 }
3996}
3997
John Kesseniche01a9bc2016-03-12 20:11:22 -07003998} // end namespace glslang