blob: 1201edcec61f9dc30b9f781ff9fdc4fc7bdc98c3 [file] [log] [blame]
Nicolas Capens0bac2852016-05-07 06:09:58 -04001// Copyright 2016 The SwiftShader Authors. All Rights Reserved.
John Bauman66b8ab22014-05-06 15:57:45 -04002//
Nicolas Capens0bac2852016-05-07 06:09:58 -04003// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
John Bauman66b8ab22014-05-06 15:57:45 -04006//
Nicolas Capens0bac2852016-05-07 06:09:58 -04007// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
John Bauman66b8ab22014-05-06 15:57:45 -040014
Nicolas Capenscc863da2015-01-21 15:50:55 -050015#include "ParseHelper.h"
John Bauman66b8ab22014-05-06 15:57:45 -040016
17#include <stdarg.h>
18#include <stdio.h>
19
Nicolas Capenscc863da2015-01-21 15:50:55 -050020#include "glslang.h"
21#include "preprocessor/SourceLocation.h"
Alexis Hetue5246692015-06-18 12:34:52 -040022#include "ValidateGlobalInitializer.h"
Alexis Hetu76a343a2015-06-04 17:21:22 -040023#include "ValidateSwitch.h"
John Bauman66b8ab22014-05-06 15:57:45 -040024
25///////////////////////////////////////////////////////////////////////
26//
27// Sub- vector and matrix fields
28//
29////////////////////////////////////////////////////////////////////////
30
31//
32// Look at a '.' field selector string and change it into offsets
33// for a vector.
34//
Alexis Hetufe1269e2015-06-16 12:43:32 -040035bool TParseContext::parseVectorFields(const TString& compString, int vecSize, TVectorFields& fields, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -040036{
Nicolas Capens0bac2852016-05-07 06:09:58 -040037 fields.num = (int) compString.size();
38 if (fields.num > 4) {
39 error(line, "illegal vector field selection", compString.c_str());
40 return false;
41 }
John Bauman66b8ab22014-05-06 15:57:45 -040042
Nicolas Capens0bac2852016-05-07 06:09:58 -040043 enum {
44 exyzw,
45 ergba,
46 estpq
47 } fieldSet[4];
John Bauman66b8ab22014-05-06 15:57:45 -040048
Nicolas Capens0bac2852016-05-07 06:09:58 -040049 for (int i = 0; i < fields.num; ++i) {
50 switch (compString[i]) {
51 case 'x':
52 fields.offsets[i] = 0;
53 fieldSet[i] = exyzw;
54 break;
55 case 'r':
56 fields.offsets[i] = 0;
57 fieldSet[i] = ergba;
58 break;
59 case 's':
60 fields.offsets[i] = 0;
61 fieldSet[i] = estpq;
62 break;
63 case 'y':
64 fields.offsets[i] = 1;
65 fieldSet[i] = exyzw;
66 break;
67 case 'g':
68 fields.offsets[i] = 1;
69 fieldSet[i] = ergba;
70 break;
71 case 't':
72 fields.offsets[i] = 1;
73 fieldSet[i] = estpq;
74 break;
75 case 'z':
76 fields.offsets[i] = 2;
77 fieldSet[i] = exyzw;
78 break;
79 case 'b':
80 fields.offsets[i] = 2;
81 fieldSet[i] = ergba;
82 break;
83 case 'p':
84 fields.offsets[i] = 2;
85 fieldSet[i] = estpq;
86 break;
87 case 'w':
88 fields.offsets[i] = 3;
89 fieldSet[i] = exyzw;
90 break;
91 case 'a':
92 fields.offsets[i] = 3;
93 fieldSet[i] = ergba;
94 break;
95 case 'q':
96 fields.offsets[i] = 3;
97 fieldSet[i] = estpq;
98 break;
99 default:
100 error(line, "illegal vector field selection", compString.c_str());
101 return false;
102 }
103 }
John Bauman66b8ab22014-05-06 15:57:45 -0400104
Nicolas Capens0bac2852016-05-07 06:09:58 -0400105 for (int i = 0; i < fields.num; ++i) {
106 if (fields.offsets[i] >= vecSize) {
107 error(line, "vector field selection out of range", compString.c_str());
108 return false;
109 }
John Bauman66b8ab22014-05-06 15:57:45 -0400110
Nicolas Capens0bac2852016-05-07 06:09:58 -0400111 if (i > 0) {
112 if (fieldSet[i] != fieldSet[i-1]) {
113 error(line, "illegal - vector component fields not from the same set", compString.c_str());
114 return false;
115 }
116 }
117 }
John Bauman66b8ab22014-05-06 15:57:45 -0400118
Nicolas Capens0bac2852016-05-07 06:09:58 -0400119 return true;
John Bauman66b8ab22014-05-06 15:57:45 -0400120}
121
122
123//
124// Look at a '.' field selector string and change it into offsets
125// for a matrix.
126//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400127bool TParseContext::parseMatrixFields(const TString& compString, int matCols, int matRows, TMatrixFields& fields, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -0400128{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400129 fields.wholeRow = false;
130 fields.wholeCol = false;
131 fields.row = -1;
132 fields.col = -1;
John Bauman66b8ab22014-05-06 15:57:45 -0400133
Nicolas Capens0bac2852016-05-07 06:09:58 -0400134 if (compString.size() != 2) {
135 error(line, "illegal length of matrix field selection", compString.c_str());
136 return false;
137 }
John Bauman66b8ab22014-05-06 15:57:45 -0400138
Nicolas Capens0bac2852016-05-07 06:09:58 -0400139 if (compString[0] == '_') {
140 if (compString[1] < '0' || compString[1] > '3') {
141 error(line, "illegal matrix field selection", compString.c_str());
142 return false;
143 }
144 fields.wholeCol = true;
145 fields.col = compString[1] - '0';
146 } else if (compString[1] == '_') {
147 if (compString[0] < '0' || compString[0] > '3') {
148 error(line, "illegal matrix field selection", compString.c_str());
149 return false;
150 }
151 fields.wholeRow = true;
152 fields.row = compString[0] - '0';
153 } else {
154 if (compString[0] < '0' || compString[0] > '3' ||
155 compString[1] < '0' || compString[1] > '3') {
156 error(line, "illegal matrix field selection", compString.c_str());
157 return false;
158 }
159 fields.row = compString[0] - '0';
160 fields.col = compString[1] - '0';
161 }
John Bauman66b8ab22014-05-06 15:57:45 -0400162
Nicolas Capens0bac2852016-05-07 06:09:58 -0400163 if (fields.row >= matRows || fields.col >= matCols) {
164 error(line, "matrix field selection out of range", compString.c_str());
165 return false;
166 }
John Bauman66b8ab22014-05-06 15:57:45 -0400167
Nicolas Capens0bac2852016-05-07 06:09:58 -0400168 return true;
John Bauman66b8ab22014-05-06 15:57:45 -0400169}
170
171///////////////////////////////////////////////////////////////////////
172//
173// Errors
174//
175////////////////////////////////////////////////////////////////////////
176
177//
178// Track whether errors have occurred.
179//
180void TParseContext::recover()
181{
182}
183
184//
185// Used by flex/bison to output all syntax and parsing errors.
186//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400187void TParseContext::error(const TSourceLoc& loc,
Nicolas Capens0bac2852016-05-07 06:09:58 -0400188 const char* reason, const char* token,
189 const char* extraInfo)
John Bauman66b8ab22014-05-06 15:57:45 -0400190{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400191 pp::SourceLocation srcLoc(loc.first_file, loc.first_line);
192 mDiagnostics.writeInfo(pp::Diagnostics::PP_ERROR,
193 srcLoc, reason, token, extraInfo);
John Bauman66b8ab22014-05-06 15:57:45 -0400194
195}
196
Alexis Hetufe1269e2015-06-16 12:43:32 -0400197void TParseContext::warning(const TSourceLoc& loc,
Nicolas Capens0bac2852016-05-07 06:09:58 -0400198 const char* reason, const char* token,
199 const char* extraInfo) {
200 pp::SourceLocation srcLoc(loc.first_file, loc.first_line);
201 mDiagnostics.writeInfo(pp::Diagnostics::PP_WARNING,
202 srcLoc, reason, token, extraInfo);
John Bauman66b8ab22014-05-06 15:57:45 -0400203}
204
205void TParseContext::trace(const char* str)
206{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400207 mDiagnostics.writeDebug(str);
John Bauman66b8ab22014-05-06 15:57:45 -0400208}
209
210//
211// Same error message for all places assignments don't work.
212//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400213void TParseContext::assignError(const TSourceLoc &line, const char* op, TString left, TString right)
John Bauman66b8ab22014-05-06 15:57:45 -0400214{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400215 std::stringstream extraInfoStream;
216 extraInfoStream << "cannot convert from '" << right << "' to '" << left << "'";
217 std::string extraInfo = extraInfoStream.str();
218 error(line, "", op, extraInfo.c_str());
John Bauman66b8ab22014-05-06 15:57:45 -0400219}
220
221//
222// Same error message for all places unary operations don't work.
223//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400224void TParseContext::unaryOpError(const TSourceLoc &line, const char* op, TString operand)
John Bauman66b8ab22014-05-06 15:57:45 -0400225{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400226 std::stringstream extraInfoStream;
227 extraInfoStream << "no operation '" << op << "' exists that takes an operand of type " << operand
228 << " (or there is no acceptable conversion)";
229 std::string extraInfo = extraInfoStream.str();
230 error(line, " wrong operand type", op, extraInfo.c_str());
John Bauman66b8ab22014-05-06 15:57:45 -0400231}
232
233//
234// Same error message for all binary operations don't work.
235//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400236void TParseContext::binaryOpError(const TSourceLoc &line, const char* op, TString left, TString right)
John Bauman66b8ab22014-05-06 15:57:45 -0400237{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400238 std::stringstream extraInfoStream;
239 extraInfoStream << "no operation '" << op << "' exists that takes a left-hand operand of type '" << left
240 << "' and a right operand of type '" << right << "' (or there is no acceptable conversion)";
241 std::string extraInfo = extraInfoStream.str();
242 error(line, " wrong operand types ", op, extraInfo.c_str());
John Bauman66b8ab22014-05-06 15:57:45 -0400243}
244
Alexis Hetufe1269e2015-06-16 12:43:32 -0400245bool TParseContext::precisionErrorCheck(const TSourceLoc &line, TPrecision precision, TBasicType type){
Nicolas Capens0bac2852016-05-07 06:09:58 -0400246 if (!mChecksPrecisionErrors)
247 return false;
248 switch( type ){
249 case EbtFloat:
250 if( precision == EbpUndefined ){
251 error( line, "No precision specified for (float)", "" );
252 return true;
253 }
254 break;
255 case EbtInt:
256 if( precision == EbpUndefined ){
257 error( line, "No precision specified (int)", "" );
258 return true;
259 }
260 break;
261 default:
262 return false;
263 }
264 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400265}
266
267//
268// Both test and if necessary, spit out an error, to see if the node is really
269// an l-value that can be operated on this way.
270//
271// Returns true if the was an error.
272//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400273bool TParseContext::lValueErrorCheck(const TSourceLoc &line, const char* op, TIntermTyped* node)
John Bauman66b8ab22014-05-06 15:57:45 -0400274{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400275 TIntermSymbol* symNode = node->getAsSymbolNode();
276 TIntermBinary* binaryNode = node->getAsBinaryNode();
John Bauman66b8ab22014-05-06 15:57:45 -0400277
Nicolas Capens0bac2852016-05-07 06:09:58 -0400278 if (binaryNode) {
279 bool errorReturn;
John Bauman66b8ab22014-05-06 15:57:45 -0400280
Nicolas Capens0bac2852016-05-07 06:09:58 -0400281 switch(binaryNode->getOp()) {
282 case EOpIndexDirect:
283 case EOpIndexIndirect:
284 case EOpIndexDirectStruct:
285 return lValueErrorCheck(line, op, binaryNode->getLeft());
286 case EOpVectorSwizzle:
287 errorReturn = lValueErrorCheck(line, op, binaryNode->getLeft());
288 if (!errorReturn) {
289 int offset[4] = {0,0,0,0};
John Bauman66b8ab22014-05-06 15:57:45 -0400290
Nicolas Capens0bac2852016-05-07 06:09:58 -0400291 TIntermTyped* rightNode = binaryNode->getRight();
292 TIntermAggregate *aggrNode = rightNode->getAsAggregate();
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400293
Nicolas Capens0bac2852016-05-07 06:09:58 -0400294 for (TIntermSequence::iterator p = aggrNode->getSequence().begin();
295 p != aggrNode->getSequence().end(); p++) {
296 int value = (*p)->getAsTyped()->getAsConstantUnion()->getIConst(0);
297 offset[value]++;
298 if (offset[value] > 1) {
299 error(line, " l-value of swizzle cannot have duplicate components", op);
John Bauman66b8ab22014-05-06 15:57:45 -0400300
Nicolas Capens0bac2852016-05-07 06:09:58 -0400301 return true;
302 }
303 }
304 }
John Bauman66b8ab22014-05-06 15:57:45 -0400305
Nicolas Capens0bac2852016-05-07 06:09:58 -0400306 return errorReturn;
307 default:
308 break;
309 }
310 error(line, " l-value required", op);
John Bauman66b8ab22014-05-06 15:57:45 -0400311
Nicolas Capens0bac2852016-05-07 06:09:58 -0400312 return true;
313 }
John Bauman66b8ab22014-05-06 15:57:45 -0400314
315
Nicolas Capens0bac2852016-05-07 06:09:58 -0400316 const char* symbol = 0;
317 if (symNode != 0)
318 symbol = symNode->getSymbol().c_str();
John Bauman66b8ab22014-05-06 15:57:45 -0400319
Nicolas Capens0bac2852016-05-07 06:09:58 -0400320 const char* message = 0;
321 switch (node->getQualifier()) {
322 case EvqConstExpr: message = "can't modify a const"; break;
323 case EvqConstReadOnly: message = "can't modify a const"; break;
324 case EvqAttribute: message = "can't modify an attribute"; break;
325 case EvqFragmentIn: message = "can't modify an input"; break;
326 case EvqVertexIn: message = "can't modify an input"; break;
327 case EvqUniform: message = "can't modify a uniform"; break;
328 case EvqSmoothIn:
329 case EvqFlatIn:
330 case EvqCentroidIn:
331 case EvqVaryingIn: message = "can't modify a varying"; break;
332 case EvqInput: message = "can't modify an input"; break;
333 case EvqFragCoord: message = "can't modify gl_FragCoord"; break;
334 case EvqFrontFacing: message = "can't modify gl_FrontFacing"; break;
335 case EvqPointCoord: message = "can't modify gl_PointCoord"; break;
336 case EvqInstanceID: message = "can't modify gl_InstanceID"; break;
337 default:
John Bauman66b8ab22014-05-06 15:57:45 -0400338
Nicolas Capens0bac2852016-05-07 06:09:58 -0400339 //
340 // Type that can't be written to?
341 //
342 if(IsSampler(node->getBasicType()))
343 {
344 message = "can't modify a sampler";
345 }
346 else if(node->getBasicType() == EbtVoid)
347 {
348 message = "can't modify void";
349 }
350 }
John Bauman66b8ab22014-05-06 15:57:45 -0400351
Nicolas Capens0bac2852016-05-07 06:09:58 -0400352 if (message == 0 && binaryNode == 0 && symNode == 0) {
353 error(line, " l-value required", op);
John Bauman66b8ab22014-05-06 15:57:45 -0400354
Nicolas Capens0bac2852016-05-07 06:09:58 -0400355 return true;
356 }
John Bauman66b8ab22014-05-06 15:57:45 -0400357
358
Nicolas Capens0bac2852016-05-07 06:09:58 -0400359 //
360 // Everything else is okay, no error.
361 //
362 if (message == 0)
363 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400364
Nicolas Capens0bac2852016-05-07 06:09:58 -0400365 //
366 // If we get here, we have an error and a message.
367 //
368 if (symNode) {
369 std::stringstream extraInfoStream;
370 extraInfoStream << "\"" << symbol << "\" (" << message << ")";
371 std::string extraInfo = extraInfoStream.str();
372 error(line, " l-value required", op, extraInfo.c_str());
373 }
374 else {
375 std::stringstream extraInfoStream;
376 extraInfoStream << "(" << message << ")";
377 std::string extraInfo = extraInfoStream.str();
378 error(line, " l-value required", op, extraInfo.c_str());
379 }
John Bauman66b8ab22014-05-06 15:57:45 -0400380
Nicolas Capens0bac2852016-05-07 06:09:58 -0400381 return true;
John Bauman66b8ab22014-05-06 15:57:45 -0400382}
383
384//
385// Both test, and if necessary spit out an error, to see if the node is really
386// a constant.
387//
388// Returns true if the was an error.
389//
390bool TParseContext::constErrorCheck(TIntermTyped* node)
391{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400392 if (node->getQualifier() == EvqConstExpr)
393 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400394
Nicolas Capens0bac2852016-05-07 06:09:58 -0400395 error(node->getLine(), "constant expression required", "");
John Bauman66b8ab22014-05-06 15:57:45 -0400396
Nicolas Capens0bac2852016-05-07 06:09:58 -0400397 return true;
John Bauman66b8ab22014-05-06 15:57:45 -0400398}
399
400//
401// Both test, and if necessary spit out an error, to see if the node is really
402// an integer.
403//
404// Returns true if the was an error.
405//
406bool TParseContext::integerErrorCheck(TIntermTyped* node, const char* token)
407{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400408 if (node->isScalarInt())
409 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400410
Nicolas Capens0bac2852016-05-07 06:09:58 -0400411 error(node->getLine(), "integer expression required", token);
John Bauman66b8ab22014-05-06 15:57:45 -0400412
Nicolas Capens0bac2852016-05-07 06:09:58 -0400413 return true;
John Bauman66b8ab22014-05-06 15:57:45 -0400414}
415
416//
417// Both test, and if necessary spit out an error, to see if we are currently
418// globally scoped.
419//
420// Returns true if the was an error.
421//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400422bool TParseContext::globalErrorCheck(const TSourceLoc &line, bool global, const char* token)
John Bauman66b8ab22014-05-06 15:57:45 -0400423{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400424 if (global)
425 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400426
Nicolas Capens0bac2852016-05-07 06:09:58 -0400427 error(line, "only allowed at global scope", token);
John Bauman66b8ab22014-05-06 15:57:45 -0400428
Nicolas Capens0bac2852016-05-07 06:09:58 -0400429 return true;
John Bauman66b8ab22014-05-06 15:57:45 -0400430}
431
432//
433// For now, keep it simple: if it starts "gl_", it's reserved, independent
434// of scope. Except, if the symbol table is at the built-in push-level,
435// which is when we are parsing built-ins.
436// Also checks for "webgl_" and "_webgl_" reserved identifiers if parsing a
437// webgl shader.
438//
439// Returns true if there was an error.
440//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400441bool TParseContext::reservedErrorCheck(const TSourceLoc &line, const TString& identifier)
John Bauman66b8ab22014-05-06 15:57:45 -0400442{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400443 static const char* reservedErrMsg = "reserved built-in name";
444 if (!symbolTable.atBuiltInLevel()) {
445 if (identifier.compare(0, 3, "gl_") == 0) {
446 error(line, reservedErrMsg, "gl_");
447 return true;
448 }
449 if (identifier.find("__") != TString::npos) {
450 error(line, "identifiers containing two consecutive underscores (__) are reserved as possible future keywords", identifier.c_str());
451 return true;
452 }
453 }
John Bauman66b8ab22014-05-06 15:57:45 -0400454
Nicolas Capens0bac2852016-05-07 06:09:58 -0400455 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400456}
457
458//
459// Make sure there is enough data provided to the constructor to build
460// something of the type of the constructor. Also returns the type of
461// the constructor.
462//
463// Returns true if there was an error in construction.
464//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400465bool TParseContext::constructorErrorCheck(const TSourceLoc &line, TIntermNode* node, TFunction& function, TOperator op, TType* type)
John Bauman66b8ab22014-05-06 15:57:45 -0400466{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400467 *type = function.getReturnType();
John Bauman66b8ab22014-05-06 15:57:45 -0400468
Nicolas Capens0bac2852016-05-07 06:09:58 -0400469 bool constructingMatrix = false;
470 switch(op) {
471 case EOpConstructMat2:
472 case EOpConstructMat2x3:
473 case EOpConstructMat2x4:
474 case EOpConstructMat3x2:
475 case EOpConstructMat3:
476 case EOpConstructMat3x4:
477 case EOpConstructMat4x2:
478 case EOpConstructMat4x3:
479 case EOpConstructMat4:
480 constructingMatrix = true;
481 break;
482 default:
483 break;
484 }
John Bauman66b8ab22014-05-06 15:57:45 -0400485
Nicolas Capens0bac2852016-05-07 06:09:58 -0400486 //
487 // Note: It's okay to have too many components available, but not okay to have unused
488 // arguments. 'full' will go to true when enough args have been seen. If we loop
489 // again, there is an extra argument, so 'overfull' will become true.
490 //
John Bauman66b8ab22014-05-06 15:57:45 -0400491
Nicolas Capens0bac2852016-05-07 06:09:58 -0400492 size_t size = 0;
493 bool full = false;
494 bool overFull = false;
495 bool matrixInMatrix = false;
496 bool arrayArg = false;
497 for (size_t i = 0; i < function.getParamCount(); ++i) {
498 const TParameter& param = function.getParam(i);
499 size += param.type->getObjectSize();
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400500
Nicolas Capens0bac2852016-05-07 06:09:58 -0400501 if (constructingMatrix && param.type->isMatrix())
502 matrixInMatrix = true;
503 if (full)
504 overFull = true;
505 if (op != EOpConstructStruct && !type->isArray() && size >= type->getObjectSize())
506 full = true;
507 if (param.type->isArray())
508 arrayArg = true;
509 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400510
Nicolas Capens0bac2852016-05-07 06:09:58 -0400511 if(type->isArray()) {
512 if(type->getArraySize() == 0) {
513 type->setArraySize(function.getParamCount());
514 } else if(type->getArraySize() != (int)function.getParamCount()) {
515 error(line, "array constructor needs one argument per array element", "constructor");
516 return true;
517 }
518 }
John Bauman66b8ab22014-05-06 15:57:45 -0400519
Nicolas Capens0bac2852016-05-07 06:09:58 -0400520 if (arrayArg && op != EOpConstructStruct) {
521 error(line, "constructing from a non-dereferenced array", "constructor");
522 return true;
523 }
John Bauman66b8ab22014-05-06 15:57:45 -0400524
Nicolas Capens0bac2852016-05-07 06:09:58 -0400525 if (matrixInMatrix && !type->isArray()) {
526 if (function.getParamCount() != 1) {
527 error(line, "constructing matrix from matrix can only take one argument", "constructor");
528 return true;
529 }
530 }
John Bauman66b8ab22014-05-06 15:57:45 -0400531
Nicolas Capens0bac2852016-05-07 06:09:58 -0400532 if (overFull) {
533 error(line, "too many arguments", "constructor");
534 return true;
535 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400536
Nicolas Capens0bac2852016-05-07 06:09:58 -0400537 if (op == EOpConstructStruct && !type->isArray() && type->getStruct()->fields().size() != function.getParamCount()) {
538 error(line, "Number of constructor parameters does not match the number of structure fields", "constructor");
539 return true;
540 }
John Bauman66b8ab22014-05-06 15:57:45 -0400541
Nicolas Capens0bac2852016-05-07 06:09:58 -0400542 if (!type->isMatrix() || !matrixInMatrix) {
543 if ((op != EOpConstructStruct && size != 1 && size < type->getObjectSize()) ||
544 (op == EOpConstructStruct && size < type->getObjectSize())) {
545 error(line, "not enough data provided for construction", "constructor");
546 return true;
547 }
548 }
John Bauman66b8ab22014-05-06 15:57:45 -0400549
Nicolas Capens0bac2852016-05-07 06:09:58 -0400550 TIntermTyped *typed = node ? node->getAsTyped() : 0;
551 if (typed == 0) {
552 error(line, "constructor argument does not have a type", "constructor");
553 return true;
554 }
555 if (op != EOpConstructStruct && IsSampler(typed->getBasicType())) {
556 error(line, "cannot convert a sampler", "constructor");
557 return true;
558 }
559 if (typed->getBasicType() == EbtVoid) {
560 error(line, "cannot convert a void", "constructor");
561 return true;
562 }
John Bauman66b8ab22014-05-06 15:57:45 -0400563
Nicolas Capens0bac2852016-05-07 06:09:58 -0400564 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400565}
566
567// This function checks to see if a void variable has been declared and raise an error message for such a case
568//
569// returns true in case of an error
570//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400571bool TParseContext::voidErrorCheck(const TSourceLoc &line, const TString& identifier, const TBasicType& type)
John Bauman66b8ab22014-05-06 15:57:45 -0400572{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400573 if(type == EbtVoid) {
574 error(line, "illegal use of type 'void'", identifier.c_str());
575 return true;
576 }
John Bauman66b8ab22014-05-06 15:57:45 -0400577
Nicolas Capens0bac2852016-05-07 06:09:58 -0400578 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400579}
580
581// This function checks to see if the node (for the expression) contains a scalar boolean expression or not
582//
583// returns true in case of an error
584//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400585bool TParseContext::boolErrorCheck(const TSourceLoc &line, const TIntermTyped* type)
John Bauman66b8ab22014-05-06 15:57:45 -0400586{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400587 if (type->getBasicType() != EbtBool || type->isArray() || type->isMatrix() || type->isVector()) {
588 error(line, "boolean expression expected", "");
589 return true;
590 }
John Bauman66b8ab22014-05-06 15:57:45 -0400591
Nicolas Capens0bac2852016-05-07 06:09:58 -0400592 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400593}
594
595// This function checks to see if the node (for the expression) contains a scalar boolean expression or not
596//
597// returns true in case of an error
598//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400599bool TParseContext::boolErrorCheck(const TSourceLoc &line, const TPublicType& pType)
John Bauman66b8ab22014-05-06 15:57:45 -0400600{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400601 if (pType.type != EbtBool || pType.array || (pType.primarySize > 1) || (pType.secondarySize > 1)) {
602 error(line, "boolean expression expected", "");
603 return true;
604 }
John Bauman66b8ab22014-05-06 15:57:45 -0400605
Nicolas Capens0bac2852016-05-07 06:09:58 -0400606 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400607}
608
Alexis Hetufe1269e2015-06-16 12:43:32 -0400609bool TParseContext::samplerErrorCheck(const TSourceLoc &line, const TPublicType& pType, const char* reason)
John Bauman66b8ab22014-05-06 15:57:45 -0400610{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400611 if (pType.type == EbtStruct) {
612 if (containsSampler(*pType.userDef)) {
613 error(line, reason, getBasicString(pType.type), "(structure contains a sampler)");
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400614
Nicolas Capens0bac2852016-05-07 06:09:58 -0400615 return true;
616 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400617
Nicolas Capens0bac2852016-05-07 06:09:58 -0400618 return false;
619 } else if (IsSampler(pType.type)) {
620 error(line, reason, getBasicString(pType.type));
John Bauman66b8ab22014-05-06 15:57:45 -0400621
Nicolas Capens0bac2852016-05-07 06:09:58 -0400622 return true;
623 }
John Bauman66b8ab22014-05-06 15:57:45 -0400624
Nicolas Capens0bac2852016-05-07 06:09:58 -0400625 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400626}
627
Alexis Hetufe1269e2015-06-16 12:43:32 -0400628bool TParseContext::structQualifierErrorCheck(const TSourceLoc &line, const TPublicType& pType)
John Bauman66b8ab22014-05-06 15:57:45 -0400629{
Alexis Hetu55a2cbc2015-04-16 10:49:45 -0400630 switch(pType.qualifier)
631 {
632 case EvqVaryingOut:
633 case EvqSmooth:
634 case EvqFlat:
635 case EvqCentroidOut:
636 case EvqVaryingIn:
637 case EvqSmoothIn:
638 case EvqFlatIn:
639 case EvqCentroidIn:
640 case EvqAttribute:
Alexis Hetu42ff6b12015-06-03 16:03:48 -0400641 case EvqVertexIn:
642 case EvqFragmentOut:
Alexis Hetu55a2cbc2015-04-16 10:49:45 -0400643 if(pType.type == EbtStruct)
644 {
645 error(line, "cannot be used with a structure", getQualifierString(pType.qualifier));
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400646
Alexis Hetu55a2cbc2015-04-16 10:49:45 -0400647 return true;
648 }
649 break;
650 default:
651 break;
652 }
John Bauman66b8ab22014-05-06 15:57:45 -0400653
Nicolas Capens0bac2852016-05-07 06:09:58 -0400654 if (pType.qualifier != EvqUniform && samplerErrorCheck(line, pType, "samplers must be uniform"))
655 return true;
John Bauman66b8ab22014-05-06 15:57:45 -0400656
Alexis Hetu42ff6b12015-06-03 16:03:48 -0400657 // check for layout qualifier issues
Alexis Hetu42ff6b12015-06-03 16:03:48 -0400658 if (pType.qualifier != EvqVertexIn && pType.qualifier != EvqFragmentOut &&
Nicolas Capens0bac2852016-05-07 06:09:58 -0400659 layoutLocationErrorCheck(line, pType.layoutQualifier))
Alexis Hetu42ff6b12015-06-03 16:03:48 -0400660 {
661 return true;
662 }
663
Nicolas Capens0bac2852016-05-07 06:09:58 -0400664 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400665}
666
Alexis Hetudd7ff7a2015-06-11 08:25:30 -0400667// These checks are common for all declarations starting a declarator list, and declarators that follow an empty
668// declaration.
669//
670bool TParseContext::singleDeclarationErrorCheck(const TPublicType &publicType, const TSourceLoc &identifierLocation)
671{
672 switch(publicType.qualifier)
673 {
674 case EvqVaryingIn:
675 case EvqVaryingOut:
676 case EvqAttribute:
677 case EvqVertexIn:
678 case EvqFragmentOut:
679 if(publicType.type == EbtStruct)
680 {
681 error(identifierLocation, "cannot be used with a structure",
682 getQualifierString(publicType.qualifier));
683 return true;
684 }
685
686 default: break;
687 }
688
689 if(publicType.qualifier != EvqUniform && samplerErrorCheck(identifierLocation, publicType,
690 "samplers must be uniform"))
691 {
692 return true;
693 }
694
695 // check for layout qualifier issues
696 const TLayoutQualifier layoutQualifier = publicType.layoutQualifier;
697
698 if(layoutQualifier.matrixPacking != EmpUnspecified)
699 {
700 error(identifierLocation, "layout qualifier", getMatrixPackingString(layoutQualifier.matrixPacking),
701 "only valid for interface blocks");
702 return true;
703 }
704
705 if(layoutQualifier.blockStorage != EbsUnspecified)
706 {
707 error(identifierLocation, "layout qualifier", getBlockStorageString(layoutQualifier.blockStorage),
708 "only valid for interface blocks");
709 return true;
710 }
711
712 if(publicType.qualifier != EvqVertexIn && publicType.qualifier != EvqFragmentOut &&
713 layoutLocationErrorCheck(identifierLocation, publicType.layoutQualifier))
714 {
715 return true;
716 }
717
718 return false;
719}
720
Nicolas Capens3713cd42015-06-22 10:41:54 -0400721bool TParseContext::layoutLocationErrorCheck(const TSourceLoc &location, const TLayoutQualifier &layoutQualifier)
722{
723 if(layoutQualifier.location != -1)
724 {
725 error(location, "invalid layout qualifier:", "location", "only valid on program inputs and outputs");
726 return true;
727 }
728
729 return false;
730}
Alexis Hetu42ff6b12015-06-03 16:03:48 -0400731
Alexis Hetudd7ff7a2015-06-11 08:25:30 -0400732bool TParseContext::locationDeclaratorListCheck(const TSourceLoc& line, const TPublicType &pType)
733{
734 if(pType.layoutQualifier.location != -1)
735 {
736 error(line, "location must only be specified for a single input or output variable", "location");
737 return true;
738 }
739
740 return false;
741}
742
Alexis Hetufe1269e2015-06-16 12:43:32 -0400743bool TParseContext::parameterSamplerErrorCheck(const TSourceLoc &line, TQualifier qualifier, const TType& type)
John Bauman66b8ab22014-05-06 15:57:45 -0400744{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400745 if ((qualifier == EvqOut || qualifier == EvqInOut) &&
746 type.getBasicType() != EbtStruct && IsSampler(type.getBasicType())) {
747 error(line, "samplers cannot be output parameters", type.getBasicString());
748 return true;
749 }
John Bauman66b8ab22014-05-06 15:57:45 -0400750
Nicolas Capens0bac2852016-05-07 06:09:58 -0400751 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400752}
753
754bool TParseContext::containsSampler(TType& type)
755{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400756 if (IsSampler(type.getBasicType()))
757 return true;
John Bauman66b8ab22014-05-06 15:57:45 -0400758
Nicolas Capens0bac2852016-05-07 06:09:58 -0400759 if (type.getBasicType() == EbtStruct) {
760 const TFieldList& fields = type.getStruct()->fields();
761 for(unsigned int i = 0; i < fields.size(); ++i) {
762 if (containsSampler(*fields[i]->type()))
763 return true;
764 }
765 }
John Bauman66b8ab22014-05-06 15:57:45 -0400766
Nicolas Capens0bac2852016-05-07 06:09:58 -0400767 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400768}
769
770//
771// Do size checking for an array type's size.
772//
773// Returns true if there was an error.
774//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400775bool TParseContext::arraySizeErrorCheck(const TSourceLoc &line, TIntermTyped* expr, int& size)
John Bauman66b8ab22014-05-06 15:57:45 -0400776{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400777 TIntermConstantUnion* constant = expr->getAsConstantUnion();
Nicolas Capens3c20f802015-02-17 17:17:20 -0500778
Nicolas Capens0bac2852016-05-07 06:09:58 -0400779 if (constant == 0 || !constant->isScalarInt())
780 {
781 error(line, "array size must be a constant integer expression", "");
782 return true;
783 }
John Bauman66b8ab22014-05-06 15:57:45 -0400784
Nicolas Capens0bac2852016-05-07 06:09:58 -0400785 if (constant->getBasicType() == EbtUInt)
786 {
787 unsigned int uintSize = constant->getUConst(0);
788 if (uintSize > static_cast<unsigned int>(std::numeric_limits<int>::max()))
789 {
790 error(line, "array size too large", "");
791 size = 1;
792 return true;
793 }
John Bauman66b8ab22014-05-06 15:57:45 -0400794
Nicolas Capens0bac2852016-05-07 06:09:58 -0400795 size = static_cast<int>(uintSize);
796 }
797 else
798 {
799 size = constant->getIConst(0);
Nicolas Capens3c20f802015-02-17 17:17:20 -0500800
Nicolas Capens0bac2852016-05-07 06:09:58 -0400801 if (size <= 0)
802 {
803 error(line, "array size must be a positive integer", "");
804 size = 1;
805 return true;
806 }
807 }
John Bauman66b8ab22014-05-06 15:57:45 -0400808
Nicolas Capens0bac2852016-05-07 06:09:58 -0400809 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400810}
811
812//
813// See if this qualifier can be an array.
814//
815// Returns true if there is an error.
816//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400817bool TParseContext::arrayQualifierErrorCheck(const TSourceLoc &line, TPublicType type)
John Bauman66b8ab22014-05-06 15:57:45 -0400818{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400819 if ((type.qualifier == EvqAttribute) || (type.qualifier == EvqVertexIn) || (type.qualifier == EvqConstExpr)) {
820 error(line, "cannot declare arrays of this qualifier", TType(type).getCompleteString().c_str());
821 return true;
822 }
John Bauman66b8ab22014-05-06 15:57:45 -0400823
Nicolas Capens0bac2852016-05-07 06:09:58 -0400824 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400825}
826
827//
828// See if this type can be an array.
829//
830// Returns true if there is an error.
831//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400832bool TParseContext::arrayTypeErrorCheck(const TSourceLoc &line, TPublicType type)
John Bauman66b8ab22014-05-06 15:57:45 -0400833{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400834 //
835 // Can the type be an array?
836 //
837 if (type.array) {
838 error(line, "cannot declare arrays of arrays", TType(type).getCompleteString().c_str());
839 return true;
840 }
John Bauman66b8ab22014-05-06 15:57:45 -0400841
Nicolas Capens0bac2852016-05-07 06:09:58 -0400842 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400843}
844
Alexis Hetufe1269e2015-06-16 12:43:32 -0400845bool TParseContext::arraySetMaxSize(TIntermSymbol *node, TType* type, int size, bool updateFlag, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -0400846{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400847 bool builtIn = false;
848 TSymbol* symbol = symbolTable.find(node->getSymbol(), mShaderVersion, &builtIn);
849 if (symbol == 0) {
850 error(line, " undeclared identifier", node->getSymbol().c_str());
851 return true;
852 }
853 TVariable* variable = static_cast<TVariable*>(symbol);
John Bauman66b8ab22014-05-06 15:57:45 -0400854
Nicolas Capens0bac2852016-05-07 06:09:58 -0400855 type->setArrayInformationType(variable->getArrayInformationType());
856 variable->updateArrayInformationType(type);
John Bauman66b8ab22014-05-06 15:57:45 -0400857
Nicolas Capens0bac2852016-05-07 06:09:58 -0400858 // special casing to test index value of gl_FragData. If the accessed index is >= gl_MaxDrawBuffers
859 // its an error
860 if (node->getSymbol() == "gl_FragData") {
861 TSymbol* fragData = symbolTable.find("gl_MaxDrawBuffers", mShaderVersion, &builtIn);
862 ASSERT(fragData);
John Bauman66b8ab22014-05-06 15:57:45 -0400863
Nicolas Capens0bac2852016-05-07 06:09:58 -0400864 int fragDataValue = static_cast<TVariable*>(fragData)->getConstPointer()[0].getIConst();
865 if (fragDataValue <= size) {
866 error(line, "", "[", "gl_FragData can only have a max array size of up to gl_MaxDrawBuffers");
867 return true;
868 }
869 }
John Bauman66b8ab22014-05-06 15:57:45 -0400870
Nicolas Capens0bac2852016-05-07 06:09:58 -0400871 // we dont want to update the maxArraySize when this flag is not set, we just want to include this
872 // node type in the chain of node types so that its updated when a higher maxArraySize comes in.
873 if (!updateFlag)
874 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400875
Nicolas Capens0bac2852016-05-07 06:09:58 -0400876 size++;
877 variable->getType().setMaxArraySize(size);
878 type->setMaxArraySize(size);
879 TType* tt = type;
John Bauman66b8ab22014-05-06 15:57:45 -0400880
Nicolas Capens0bac2852016-05-07 06:09:58 -0400881 while(tt->getArrayInformationType() != 0) {
882 tt = tt->getArrayInformationType();
883 tt->setMaxArraySize(size);
884 }
John Bauman66b8ab22014-05-06 15:57:45 -0400885
Nicolas Capens0bac2852016-05-07 06:09:58 -0400886 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400887}
888
889//
890// Enforce non-initializer type/qualifier rules.
891//
892// Returns true if there was an error.
893//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400894bool TParseContext::nonInitConstErrorCheck(const TSourceLoc &line, TString& identifier, TPublicType& type, bool array)
John Bauman66b8ab22014-05-06 15:57:45 -0400895{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400896 if (type.qualifier == EvqConstExpr)
897 {
898 // Make the qualifier make sense.
899 type.qualifier = EvqTemporary;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400900
Nicolas Capens0bac2852016-05-07 06:09:58 -0400901 if (array)
902 {
903 error(line, "arrays may not be declared constant since they cannot be initialized", identifier.c_str());
904 }
905 else if (type.isStructureContainingArrays())
906 {
907 error(line, "structures containing arrays may not be declared constant since they cannot be initialized", identifier.c_str());
908 }
909 else
910 {
911 error(line, "variables with qualifier 'const' must be initialized", identifier.c_str());
912 }
John Bauman66b8ab22014-05-06 15:57:45 -0400913
Nicolas Capens0bac2852016-05-07 06:09:58 -0400914 return true;
915 }
John Bauman66b8ab22014-05-06 15:57:45 -0400916
Nicolas Capens0bac2852016-05-07 06:09:58 -0400917 return false;
John Bauman66b8ab22014-05-06 15:57:45 -0400918}
919
920//
921// Do semantic checking for a variable declaration that has no initializer,
922// and update the symbol table.
923//
924// Returns true if there was an error.
925//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400926bool TParseContext::nonInitErrorCheck(const TSourceLoc &line, const TString& identifier, TPublicType& type)
John Bauman66b8ab22014-05-06 15:57:45 -0400927{
Alexis Hetudd7ff7a2015-06-11 08:25:30 -0400928 if(type.qualifier == EvqConstExpr)
929 {
930 // Make the qualifier make sense.
931 type.qualifier = EvqTemporary;
John Bauman66b8ab22014-05-06 15:57:45 -0400932
Alexis Hetudd7ff7a2015-06-11 08:25:30 -0400933 // Generate informative error messages for ESSL1.
934 // In ESSL3 arrays and structures containing arrays can be constant.
Alexis Hetu0a655842015-06-22 16:52:11 -0400935 if(mShaderVersion < 300 && type.isStructureContainingArrays())
Alexis Hetudd7ff7a2015-06-11 08:25:30 -0400936 {
937 error(line,
938 "structures containing arrays may not be declared constant since they cannot be initialized",
939 identifier.c_str());
940 }
941 else
942 {
943 error(line, "variables with qualifier 'const' must be initialized", identifier.c_str());
944 }
John Bauman66b8ab22014-05-06 15:57:45 -0400945
Alexis Hetudd7ff7a2015-06-11 08:25:30 -0400946 return true;
947 }
948 if(type.isUnsizedArray())
949 {
950 error(line, "implicitly sized arrays need to be initialized", identifier.c_str());
951 return true;
952 }
953 return false;
954}
John Bauman66b8ab22014-05-06 15:57:45 -0400955
Alexis Hetudd7ff7a2015-06-11 08:25:30 -0400956// Do some simple checks that are shared between all variable declarations,
957// and update the symbol table.
958//
959// Returns true if declaring the variable succeeded.
960//
961bool TParseContext::declareVariable(const TSourceLoc &line, const TString &identifier, const TType &type,
962 TVariable **variable)
963{
964 ASSERT((*variable) == nullptr);
John Bauman66b8ab22014-05-06 15:57:45 -0400965
Alexis Hetudd7ff7a2015-06-11 08:25:30 -0400966 // gl_LastFragData may be redeclared with a new precision qualifier
967 if(type.isArray() && identifier.compare(0, 15, "gl_LastFragData") == 0)
968 {
969 const TVariable *maxDrawBuffers =
Alexis Hetu0a655842015-06-22 16:52:11 -0400970 static_cast<const TVariable *>(symbolTable.findBuiltIn("gl_MaxDrawBuffers", mShaderVersion));
Alexis Hetudd7ff7a2015-06-11 08:25:30 -0400971 if(type.getArraySize() != maxDrawBuffers->getConstPointer()->getIConst())
972 {
973 error(line, "redeclaration of gl_LastFragData with size != gl_MaxDrawBuffers", identifier.c_str());
974 return false;
975 }
976 }
977
978 if(reservedErrorCheck(line, identifier))
979 return false;
980
981 (*variable) = new TVariable(&identifier, type);
982 if(!symbolTable.declare(**variable))
983 {
984 error(line, "redefinition", identifier.c_str());
985 delete (*variable);
986 (*variable) = nullptr;
987 return false;
988 }
989
990 if(voidErrorCheck(line, identifier, type.getBasicType()))
991 return false;
992
993 return true;
John Bauman66b8ab22014-05-06 15:57:45 -0400994}
995
Alexis Hetufe1269e2015-06-16 12:43:32 -0400996bool TParseContext::paramErrorCheck(const TSourceLoc &line, TQualifier qualifier, TQualifier paramQualifier, TType* type)
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400997{
Nicolas Capens0bac2852016-05-07 06:09:58 -0400998 if (qualifier != EvqConstReadOnly && qualifier != EvqTemporary) {
999 error(line, "qualifier not allowed on function parameter", getQualifierString(qualifier));
1000 return true;
1001 }
1002 if (qualifier == EvqConstReadOnly && paramQualifier != EvqIn) {
1003 error(line, "qualifier not allowed with ", getQualifierString(qualifier), getQualifierString(paramQualifier));
1004 return true;
1005 }
John Bauman66b8ab22014-05-06 15:57:45 -04001006
Nicolas Capens0bac2852016-05-07 06:09:58 -04001007 if (qualifier == EvqConstReadOnly)
1008 type->setQualifier(EvqConstReadOnly);
1009 else
1010 type->setQualifier(paramQualifier);
John Bauman66b8ab22014-05-06 15:57:45 -04001011
Nicolas Capens0bac2852016-05-07 06:09:58 -04001012 return false;
John Bauman66b8ab22014-05-06 15:57:45 -04001013}
1014
Alexis Hetufe1269e2015-06-16 12:43:32 -04001015bool TParseContext::extensionErrorCheck(const TSourceLoc &line, const TString& extension)
John Bauman66b8ab22014-05-06 15:57:45 -04001016{
Nicolas Capens0bac2852016-05-07 06:09:58 -04001017 const TExtensionBehavior& extBehavior = extensionBehavior();
1018 TExtensionBehavior::const_iterator iter = extBehavior.find(extension.c_str());
1019 if (iter == extBehavior.end()) {
1020 error(line, "extension", extension.c_str(), "is not supported");
1021 return true;
1022 }
1023 // In GLSL ES, an extension's default behavior is "disable".
1024 if (iter->second == EBhDisable || iter->second == EBhUndefined) {
1025 error(line, "extension", extension.c_str(), "is disabled");
1026 return true;
1027 }
1028 if (iter->second == EBhWarn) {
1029 warning(line, "extension", extension.c_str(), "is being used");
1030 return false;
1031 }
John Bauman66b8ab22014-05-06 15:57:45 -04001032
Nicolas Capens0bac2852016-05-07 06:09:58 -04001033 return false;
John Bauman66b8ab22014-05-06 15:57:45 -04001034}
1035
Alexis Hetuad6b8752015-06-09 16:15:30 -04001036bool TParseContext::functionCallLValueErrorCheck(const TFunction *fnCandidate, TIntermAggregate *aggregate)
1037{
1038 for(size_t i = 0; i < fnCandidate->getParamCount(); ++i)
1039 {
1040 TQualifier qual = fnCandidate->getParam(i).type->getQualifier();
1041 if(qual == EvqOut || qual == EvqInOut)
1042 {
1043 TIntermTyped *node = (aggregate->getSequence())[i]->getAsTyped();
1044 if(lValueErrorCheck(node->getLine(), "assign", node))
1045 {
1046 error(node->getLine(),
1047 "Constant value cannot be passed for 'out' or 'inout' parameters.", "Error");
1048 recover();
1049 return true;
1050 }
1051 }
1052 }
1053 return false;
1054}
1055
Alexis Hetuad527752015-07-07 13:31:44 -04001056void TParseContext::es3InvariantErrorCheck(const TQualifier qualifier, const TSourceLoc &invariantLocation)
1057{
1058 switch(qualifier)
1059 {
1060 case EvqVaryingOut:
1061 case EvqSmoothOut:
1062 case EvqFlatOut:
1063 case EvqCentroidOut:
1064 case EvqVertexOut:
1065 case EvqFragmentOut:
1066 break;
1067 default:
1068 error(invariantLocation, "Only out variables can be invariant.", "invariant");
1069 recover();
1070 break;
1071 }
1072}
1073
John Bauman66b8ab22014-05-06 15:57:45 -04001074bool TParseContext::supportsExtension(const char* extension)
1075{
Nicolas Capens0bac2852016-05-07 06:09:58 -04001076 const TExtensionBehavior& extbehavior = extensionBehavior();
1077 TExtensionBehavior::const_iterator iter = extbehavior.find(extension);
1078 return (iter != extbehavior.end());
John Bauman66b8ab22014-05-06 15:57:45 -04001079}
1080
Alexis Hetufe1269e2015-06-16 12:43:32 -04001081void TParseContext::handleExtensionDirective(const TSourceLoc &line, const char* extName, const char* behavior)
John Bauman66b8ab22014-05-06 15:57:45 -04001082{
Nicolas Capens0bac2852016-05-07 06:09:58 -04001083 pp::SourceLocation loc(line.first_file, line.first_line);
1084 mDirectiveHandler.handleExtension(loc, extName, behavior);
John Bauman66b8ab22014-05-06 15:57:45 -04001085}
1086
Alexis Hetufe1269e2015-06-16 12:43:32 -04001087void TParseContext::handlePragmaDirective(const TSourceLoc &line, const char* name, const char* value)
John Bauman66b8ab22014-05-06 15:57:45 -04001088{
Nicolas Capens0bac2852016-05-07 06:09:58 -04001089 pp::SourceLocation loc(line.first_file, line.first_line);
1090 mDirectiveHandler.handlePragma(loc, name, value);
John Bauman66b8ab22014-05-06 15:57:45 -04001091}
1092
1093/////////////////////////////////////////////////////////////////////////////////
1094//
1095// Non-Errors.
1096//
1097/////////////////////////////////////////////////////////////////////////////////
1098
Alexis Hetudd7ff7a2015-06-11 08:25:30 -04001099const TVariable *TParseContext::getNamedVariable(const TSourceLoc &location,
1100 const TString *name,
1101 const TSymbol *symbol)
1102{
Nicolas Capens0bac2852016-05-07 06:09:58 -04001103 const TVariable *variable = nullptr;
Alexis Hetudd7ff7a2015-06-11 08:25:30 -04001104
1105 if(!symbol)
1106 {
1107 error(location, "undeclared identifier", name->c_str());
1108 recover();
1109 }
1110 else if(!symbol->isVariable())
1111 {
1112 error(location, "variable expected", name->c_str());
1113 recover();
1114 }
1115 else
1116 {
1117 variable = static_cast<const TVariable*>(symbol);
1118
Alexis Hetu0a655842015-06-22 16:52:11 -04001119 if(symbolTable.findBuiltIn(variable->getName(), mShaderVersion))
Alexis Hetudd7ff7a2015-06-11 08:25:30 -04001120 {
1121 recover();
1122 }
1123
1124 // Reject shaders using both gl_FragData and gl_FragColor
1125 TQualifier qualifier = variable->getType().getQualifier();
1126 if(qualifier == EvqFragData)
1127 {
1128 mUsesFragData = true;
1129 }
1130 else if(qualifier == EvqFragColor)
1131 {
1132 mUsesFragColor = true;
1133 }
1134
1135 // This validation is not quite correct - it's only an error to write to
1136 // both FragData and FragColor. For simplicity, and because users shouldn't
Nicolas Capens8b124c12016-04-18 14:09:37 -04001137 // be rewarded for reading from undefined variables, return an error
Alexis Hetudd7ff7a2015-06-11 08:25:30 -04001138 // if they are both referenced, rather than assigned.
1139 if(mUsesFragData && mUsesFragColor)
1140 {
1141 error(location, "cannot use both gl_FragData and gl_FragColor", name->c_str());
1142 recover();
1143 }
1144 }
1145
1146 if(!variable)
1147 {
1148 TType type(EbtFloat, EbpUndefined);
1149 TVariable *fakeVariable = new TVariable(name, type);
1150 symbolTable.declare(*fakeVariable);
1151 variable = fakeVariable;
1152 }
1153
1154 return variable;
1155}
1156
John Bauman66b8ab22014-05-06 15:57:45 -04001157//
1158// Look up a function name in the symbol table, and make sure it is a function.
1159//
1160// Return the function symbol if found, otherwise 0.
1161//
Alexis Hetufe1269e2015-06-16 12:43:32 -04001162const TFunction* TParseContext::findFunction(const TSourceLoc &line, TFunction* call, bool *builtIn)
John Bauman66b8ab22014-05-06 15:57:45 -04001163{
Nicolas Capens0bac2852016-05-07 06:09:58 -04001164 // First find by unmangled name to check whether the function name has been
1165 // hidden by a variable name or struct typename.
1166 const TSymbol* symbol = symbolTable.find(call->getName(), mShaderVersion, builtIn);
1167 if (symbol == 0) {
1168 symbol = symbolTable.find(call->getMangledName(), mShaderVersion, builtIn);
1169 }
John Bauman66b8ab22014-05-06 15:57:45 -04001170
Nicolas Capens0bac2852016-05-07 06:09:58 -04001171 if (symbol == 0) {
1172 error(line, "no matching overloaded function found", call->getName().c_str());
1173 return 0;
1174 }
John Bauman66b8ab22014-05-06 15:57:45 -04001175
Nicolas Capens0bac2852016-05-07 06:09:58 -04001176 if (!symbol->isFunction()) {
1177 error(line, "function name expected", call->getName().c_str());
1178 return 0;
1179 }
John Bauman66b8ab22014-05-06 15:57:45 -04001180
Nicolas Capens0bac2852016-05-07 06:09:58 -04001181 return static_cast<const TFunction*>(symbol);
John Bauman66b8ab22014-05-06 15:57:45 -04001182}
1183
1184//
1185// Initializers show up in several places in the grammar. Have one set of
1186// code to handle them here.
1187//
Alexis Hetufe1269e2015-06-16 12:43:32 -04001188bool TParseContext::executeInitializer(const TSourceLoc& line, const TString& identifier, const TPublicType& pType,
Nicolas Capens0bac2852016-05-07 06:09:58 -04001189 TIntermTyped *initializer, TIntermNode **intermNode)
John Bauman66b8ab22014-05-06 15:57:45 -04001190{
Alexis Hetue5246692015-06-18 12:34:52 -04001191 ASSERT(intermNode != nullptr);
1192 TType type = TType(pType);
John Bauman66b8ab22014-05-06 15:57:45 -04001193
Alexis Hetue5246692015-06-18 12:34:52 -04001194 if(type.isArray() && (type.getArraySize() == 0))
1195 {
1196 type.setArraySize(initializer->getArraySize());
1197 }
Nicolas Capens0863f0d2016-04-10 00:30:02 -04001198
1199 TVariable *variable = nullptr;
Alexis Hetue5246692015-06-18 12:34:52 -04001200 if(!declareVariable(line, identifier, type, &variable))
1201 {
1202 return true;
1203 }
John Bauman66b8ab22014-05-06 15:57:45 -04001204
Alexis Hetue5246692015-06-18 12:34:52 -04001205 bool globalInitWarning = false;
1206 if(symbolTable.atGlobalLevel() && !ValidateGlobalInitializer(initializer, this, &globalInitWarning))
1207 {
1208 // Error message does not completely match behavior with ESSL 1.00, but
1209 // we want to steer developers towards only using constant expressions.
1210 error(line, "global variable initializers must be constant expressions", "=");
1211 return true;
1212 }
1213 if(globalInitWarning)
1214 {
1215 warning(line, "global variable initializers should be constant expressions "
1216 "(uniforms and globals are allowed in global initializers for legacy compatibility)", "=");
Nicolas Capens0bac2852016-05-07 06:09:58 -04001217 }
John Bauman66b8ab22014-05-06 15:57:45 -04001218
Nicolas Capens0bac2852016-05-07 06:09:58 -04001219 //
1220 // identifier must be of type constant, a global, or a temporary
1221 //
1222 TQualifier qualifier = type.getQualifier();
1223 if ((qualifier != EvqTemporary) && (qualifier != EvqGlobal) && (qualifier != EvqConstExpr)) {
1224 error(line, " cannot initialize this type of qualifier ", variable->getType().getQualifierString());
1225 return true;
1226 }
1227 //
1228 // test for and propagate constant
1229 //
John Bauman66b8ab22014-05-06 15:57:45 -04001230
Nicolas Capens0bac2852016-05-07 06:09:58 -04001231 if (qualifier == EvqConstExpr) {
1232 if (qualifier != initializer->getQualifier()) {
1233 std::stringstream extraInfoStream;
1234 extraInfoStream << "'" << variable->getType().getCompleteString() << "'";
1235 std::string extraInfo = extraInfoStream.str();
1236 error(line, " assigning non-constant to", "=", extraInfo.c_str());
1237 variable->getType().setQualifier(EvqTemporary);
1238 return true;
1239 }
Nicolas Capens0863f0d2016-04-10 00:30:02 -04001240
Nicolas Capens0bac2852016-05-07 06:09:58 -04001241 if (type != initializer->getType()) {
1242 error(line, " non-matching types for const initializer ",
1243 variable->getType().getQualifierString());
1244 variable->getType().setQualifier(EvqTemporary);
1245 return true;
1246 }
Nicolas Capens0863f0d2016-04-10 00:30:02 -04001247
Nicolas Capens0bac2852016-05-07 06:09:58 -04001248 if (initializer->getAsConstantUnion()) {
1249 variable->shareConstPointer(initializer->getAsConstantUnion()->getUnionArrayPointer());
1250 } else if (initializer->getAsSymbolNode()) {
1251 const TSymbol* symbol = symbolTable.find(initializer->getAsSymbolNode()->getSymbol(), 0);
1252 const TVariable* tVar = static_cast<const TVariable*>(symbol);
John Bauman66b8ab22014-05-06 15:57:45 -04001253
Nicolas Capens0bac2852016-05-07 06:09:58 -04001254 ConstantUnion* constArray = tVar->getConstPointer();
1255 variable->shareConstPointer(constArray);
1256 }
1257 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04001258
Nicolas Capens0bac2852016-05-07 06:09:58 -04001259 if (!variable->isConstant()) {
1260 TIntermSymbol* intermSymbol = intermediate.addSymbol(variable->getUniqueId(), variable->getName(), variable->getType(), line);
1261 *intermNode = createAssign(EOpInitialize, intermSymbol, initializer, line);
1262 if(*intermNode == nullptr) {
1263 assignError(line, "=", intermSymbol->getCompleteString(), initializer->getCompleteString());
1264 return true;
1265 }
1266 } else
1267 *intermNode = nullptr;
John Bauman66b8ab22014-05-06 15:57:45 -04001268
Nicolas Capens0bac2852016-05-07 06:09:58 -04001269 return false;
John Bauman66b8ab22014-05-06 15:57:45 -04001270}
1271
Alexis Hetu42ff6b12015-06-03 16:03:48 -04001272TPublicType TParseContext::addFullySpecifiedType(TQualifier qualifier, bool invariant, TLayoutQualifier layoutQualifier, const TPublicType &typeSpecifier)
1273{
1274 TPublicType returnType = typeSpecifier;
1275 returnType.qualifier = qualifier;
1276 returnType.invariant = invariant;
1277 returnType.layoutQualifier = layoutQualifier;
1278
1279 if(typeSpecifier.array)
1280 {
1281 error(typeSpecifier.line, "not supported", "first-class array");
1282 recover();
1283 returnType.clearArrayness();
1284 }
1285
Alexis Hetu0a655842015-06-22 16:52:11 -04001286 if(mShaderVersion < 300)
Alexis Hetu42ff6b12015-06-03 16:03:48 -04001287 {
1288 if(qualifier == EvqAttribute && (typeSpecifier.type == EbtBool || typeSpecifier.type == EbtInt))
1289 {
1290 error(typeSpecifier.line, "cannot be bool or int", getQualifierString(qualifier));
1291 recover();
1292 }
1293
1294 if((qualifier == EvqVaryingIn || qualifier == EvqVaryingOut) &&
1295 (typeSpecifier.type == EbtBool || typeSpecifier.type == EbtInt))
1296 {
1297 error(typeSpecifier.line, "cannot be bool or int", getQualifierString(qualifier));
1298 recover();
1299 }
1300 }
1301 else
1302 {
1303 switch(qualifier)
1304 {
1305 case EvqSmoothIn:
1306 case EvqSmoothOut:
1307 case EvqVertexOut:
1308 case EvqFragmentIn:
1309 case EvqCentroidOut:
1310 case EvqCentroidIn:
1311 if(typeSpecifier.type == EbtBool)
1312 {
1313 error(typeSpecifier.line, "cannot be bool", getQualifierString(qualifier));
1314 recover();
1315 }
1316 if(typeSpecifier.type == EbtInt || typeSpecifier.type == EbtUInt)
1317 {
1318 error(typeSpecifier.line, "must use 'flat' interpolation here", getQualifierString(qualifier));
1319 recover();
1320 }
1321 break;
1322
1323 case EvqVertexIn:
1324 case EvqFragmentOut:
1325 case EvqFlatIn:
1326 case EvqFlatOut:
1327 if(typeSpecifier.type == EbtBool)
1328 {
1329 error(typeSpecifier.line, "cannot be bool", getQualifierString(qualifier));
1330 recover();
1331 }
1332 break;
1333
1334 default: break;
1335 }
1336 }
1337
1338 return returnType;
1339}
1340
Alexis Hetudd7ff7a2015-06-11 08:25:30 -04001341TIntermAggregate *TParseContext::parseSingleDeclaration(TPublicType &publicType,
1342 const TSourceLoc &identifierOrTypeLocation,
1343 const TString &identifier)
1344{
1345 TIntermSymbol *symbol = intermediate.addSymbol(0, identifier, TType(publicType), identifierOrTypeLocation);
1346
1347 bool emptyDeclaration = (identifier == "");
1348
1349 mDeferredSingleDeclarationErrorCheck = emptyDeclaration;
1350
1351 if(emptyDeclaration)
1352 {
1353 if(publicType.isUnsizedArray())
1354 {
1355 // ESSL3 spec section 4.1.9: Array declaration which leaves the size unspecified is an error.
1356 // It is assumed that this applies to empty declarations as well.
1357 error(identifierOrTypeLocation, "empty array declaration needs to specify a size", identifier.c_str());
1358 }
1359 }
1360 else
1361 {
1362 if(singleDeclarationErrorCheck(publicType, identifierOrTypeLocation))
1363 recover();
1364
1365 if(nonInitErrorCheck(identifierOrTypeLocation, identifier, publicType))
1366 recover();
1367
1368 TVariable *variable = nullptr;
1369 if(!declareVariable(identifierOrTypeLocation, identifier, TType(publicType), &variable))
1370 recover();
1371
1372 if(variable && symbol)
1373 symbol->setId(variable->getUniqueId());
1374 }
1375
1376 return intermediate.makeAggregate(symbol, identifierOrTypeLocation);
1377}
1378
1379TIntermAggregate *TParseContext::parseSingleArrayDeclaration(TPublicType &publicType,
1380 const TSourceLoc &identifierLocation,
1381 const TString &identifier,
1382 const TSourceLoc &indexLocation,
1383 TIntermTyped *indexExpression)
1384{
1385 mDeferredSingleDeclarationErrorCheck = false;
1386
1387 if(singleDeclarationErrorCheck(publicType, identifierLocation))
1388 recover();
1389
1390 if(nonInitErrorCheck(identifierLocation, identifier, publicType))
1391 recover();
1392
1393 if(arrayTypeErrorCheck(indexLocation, publicType) || arrayQualifierErrorCheck(indexLocation, publicType))
1394 {
1395 recover();
1396 }
1397
1398 TType arrayType(publicType);
1399
1400 int size;
1401 if(arraySizeErrorCheck(identifierLocation, indexExpression, size))
1402 {
1403 recover();
1404 }
1405 // Make the type an array even if size check failed.
1406 // This ensures useless error messages regarding the variable's non-arrayness won't follow.
1407 arrayType.setArraySize(size);
1408
1409 TVariable *variable = nullptr;
1410 if(!declareVariable(identifierLocation, identifier, arrayType, &variable))
1411 recover();
1412
1413 TIntermSymbol *symbol = intermediate.addSymbol(0, identifier, arrayType, identifierLocation);
1414 if(variable && symbol)
1415 symbol->setId(variable->getUniqueId());
1416
1417 return intermediate.makeAggregate(symbol, identifierLocation);
1418}
1419
1420TIntermAggregate *TParseContext::parseSingleInitDeclaration(const TPublicType &publicType,
1421 const TSourceLoc &identifierLocation,
1422 const TString &identifier,
1423 const TSourceLoc &initLocation,
1424 TIntermTyped *initializer)
1425{
1426 mDeferredSingleDeclarationErrorCheck = false;
1427
1428 if(singleDeclarationErrorCheck(publicType, identifierLocation))
1429 recover();
1430
1431 TIntermNode *intermNode = nullptr;
Alexis Hetue5246692015-06-18 12:34:52 -04001432 if(!executeInitializer(identifierLocation, identifier, publicType, initializer, &intermNode))
Alexis Hetudd7ff7a2015-06-11 08:25:30 -04001433 {
1434 //
1435 // Build intermediate representation
1436 //
1437 return intermNode ? intermediate.makeAggregate(intermNode, initLocation) : nullptr;
1438 }
1439 else
1440 {
1441 recover();
1442 return nullptr;
1443 }
1444}
1445
1446TIntermAggregate *TParseContext::parseSingleArrayInitDeclaration(TPublicType &publicType,
1447 const TSourceLoc &identifierLocation,
1448 const TString &identifier,
1449 const TSourceLoc &indexLocation,
1450 TIntermTyped *indexExpression,
1451 const TSourceLoc &initLocation,
1452 TIntermTyped *initializer)
1453{
1454 mDeferredSingleDeclarationErrorCheck = false;
1455
1456 if(singleDeclarationErrorCheck(publicType, identifierLocation))
1457 recover();
1458
1459 if(arrayTypeErrorCheck(indexLocation, publicType) || arrayQualifierErrorCheck(indexLocation, publicType))
1460 {
1461 recover();
1462 }
1463
1464 TPublicType arrayType(publicType);
1465
1466 int size = 0;
1467 // If indexExpression is nullptr, then the array will eventually get its size implicitly from the initializer.
1468 if(indexExpression != nullptr && arraySizeErrorCheck(identifierLocation, indexExpression, size))
1469 {
1470 recover();
1471 }
1472 // Make the type an array even if size check failed.
1473 // This ensures useless error messages regarding the variable's non-arrayness won't follow.
1474 arrayType.setArray(true, size);
1475
1476 // initNode will correspond to the whole of "type b[n] = initializer".
1477 TIntermNode *initNode = nullptr;
Alexis Hetue5246692015-06-18 12:34:52 -04001478 if(!executeInitializer(identifierLocation, identifier, arrayType, initializer, &initNode))
Alexis Hetudd7ff7a2015-06-11 08:25:30 -04001479 {
1480 return initNode ? intermediate.makeAggregate(initNode, initLocation) : nullptr;
1481 }
1482 else
1483 {
1484 recover();
1485 return nullptr;
1486 }
1487}
1488
1489TIntermAggregate *TParseContext::parseInvariantDeclaration(const TSourceLoc &invariantLoc,
1490 const TSourceLoc &identifierLoc,
1491 const TString *identifier,
1492 const TSymbol *symbol)
1493{
1494 // invariant declaration
1495 if(globalErrorCheck(invariantLoc, symbolTable.atGlobalLevel(), "invariant varying"))
1496 {
1497 recover();
1498 }
1499
1500 if(!symbol)
1501 {
1502 error(identifierLoc, "undeclared identifier declared as invariant", identifier->c_str());
1503 recover();
1504 return nullptr;
1505 }
1506 else
1507 {
1508 const TString kGlFrontFacing("gl_FrontFacing");
1509 if(*identifier == kGlFrontFacing)
1510 {
1511 error(identifierLoc, "identifier should not be declared as invariant", identifier->c_str());
1512 recover();
1513 return nullptr;
1514 }
1515 symbolTable.addInvariantVarying(std::string(identifier->c_str()));
1516 const TVariable *variable = getNamedVariable(identifierLoc, identifier, symbol);
1517 ASSERT(variable);
1518 const TType &type = variable->getType();
1519 TIntermSymbol *intermSymbol = intermediate.addSymbol(variable->getUniqueId(),
1520 *identifier, type, identifierLoc);
1521
1522 TIntermAggregate *aggregate = intermediate.makeAggregate(intermSymbol, identifierLoc);
1523 aggregate->setOp(EOpInvariantDeclaration);
1524 return aggregate;
1525 }
1526}
1527
1528TIntermAggregate *TParseContext::parseDeclarator(TPublicType &publicType, TIntermAggregate *aggregateDeclaration,
1529 const TSourceLoc &identifierLocation, const TString &identifier)
1530{
1531 // If the declaration starting this declarator list was empty (example: int,), some checks were not performed.
1532 if(mDeferredSingleDeclarationErrorCheck)
1533 {
1534 if(singleDeclarationErrorCheck(publicType, identifierLocation))
1535 recover();
1536 mDeferredSingleDeclarationErrorCheck = false;
1537 }
1538
1539 if(locationDeclaratorListCheck(identifierLocation, publicType))
1540 recover();
1541
1542 if(nonInitErrorCheck(identifierLocation, identifier, publicType))
1543 recover();
1544
1545 TVariable *variable = nullptr;
1546 if(!declareVariable(identifierLocation, identifier, TType(publicType), &variable))
1547 recover();
1548
1549 TIntermSymbol *symbol = intermediate.addSymbol(0, identifier, TType(publicType), identifierLocation);
1550 if(variable && symbol)
1551 symbol->setId(variable->getUniqueId());
1552
1553 return intermediate.growAggregate(aggregateDeclaration, symbol, identifierLocation);
1554}
1555
1556TIntermAggregate *TParseContext::parseArrayDeclarator(TPublicType &publicType, TIntermAggregate *aggregateDeclaration,
1557 const TSourceLoc &identifierLocation, const TString &identifier,
1558 const TSourceLoc &arrayLocation, TIntermTyped *indexExpression)
1559{
1560 // If the declaration starting this declarator list was empty (example: int,), some checks were not performed.
1561 if(mDeferredSingleDeclarationErrorCheck)
1562 {
1563 if(singleDeclarationErrorCheck(publicType, identifierLocation))
1564 recover();
1565 mDeferredSingleDeclarationErrorCheck = false;
1566 }
1567
1568 if(locationDeclaratorListCheck(identifierLocation, publicType))
1569 recover();
1570
1571 if(nonInitErrorCheck(identifierLocation, identifier, publicType))
1572 recover();
1573
1574 if(arrayTypeErrorCheck(arrayLocation, publicType) || arrayQualifierErrorCheck(arrayLocation, publicType))
1575 {
1576 recover();
1577 }
1578 else
1579 {
1580 TType arrayType = TType(publicType);
1581 int size;
1582 if(arraySizeErrorCheck(arrayLocation, indexExpression, size))
1583 {
1584 recover();
1585 }
1586 arrayType.setArraySize(size);
1587
1588 TVariable *variable = nullptr;
1589 if(!declareVariable(identifierLocation, identifier, arrayType, &variable))
1590 recover();
1591
1592 TIntermSymbol *symbol = intermediate.addSymbol(0, identifier, arrayType, identifierLocation);
1593 if(variable && symbol)
1594 symbol->setId(variable->getUniqueId());
1595
1596 return intermediate.growAggregate(aggregateDeclaration, symbol, identifierLocation);
1597 }
1598
1599 return nullptr;
1600}
1601
1602TIntermAggregate *TParseContext::parseInitDeclarator(const TPublicType &publicType, TIntermAggregate *aggregateDeclaration,
1603 const TSourceLoc &identifierLocation, const TString &identifier,
1604 const TSourceLoc &initLocation, TIntermTyped *initializer)
1605{
1606 // If the declaration starting this declarator list was empty (example: int,), some checks were not performed.
1607 if(mDeferredSingleDeclarationErrorCheck)
1608 {
1609 if(singleDeclarationErrorCheck(publicType, identifierLocation))
1610 recover();
1611 mDeferredSingleDeclarationErrorCheck = false;
1612 }
1613
1614 if(locationDeclaratorListCheck(identifierLocation, publicType))
1615 recover();
1616
1617 TIntermNode *intermNode = nullptr;
Alexis Hetue5246692015-06-18 12:34:52 -04001618 if(!executeInitializer(identifierLocation, identifier, publicType, initializer, &intermNode))
Alexis Hetudd7ff7a2015-06-11 08:25:30 -04001619 {
1620 //
1621 // build the intermediate representation
1622 //
1623 if(intermNode)
1624 {
1625 return intermediate.growAggregate(aggregateDeclaration, intermNode, initLocation);
1626 }
1627 else
1628 {
1629 return aggregateDeclaration;
1630 }
1631 }
1632 else
1633 {
1634 recover();
1635 return nullptr;
1636 }
1637}
1638
1639TIntermAggregate *TParseContext::parseArrayInitDeclarator(const TPublicType &publicType,
1640 TIntermAggregate *aggregateDeclaration,
1641 const TSourceLoc &identifierLocation,
1642 const TString &identifier,
1643 const TSourceLoc &indexLocation,
1644 TIntermTyped *indexExpression,
1645 const TSourceLoc &initLocation, TIntermTyped *initializer)
1646{
1647 // If the declaration starting this declarator list was empty (example: int,), some checks were not performed.
1648 if(mDeferredSingleDeclarationErrorCheck)
1649 {
1650 if(singleDeclarationErrorCheck(publicType, identifierLocation))
1651 recover();
1652 mDeferredSingleDeclarationErrorCheck = false;
1653 }
1654
1655 if(locationDeclaratorListCheck(identifierLocation, publicType))
1656 recover();
1657
1658 if(arrayTypeErrorCheck(indexLocation, publicType) || arrayQualifierErrorCheck(indexLocation, publicType))
1659 {
1660 recover();
1661 }
1662
1663 TPublicType arrayType(publicType);
1664
1665 int size = 0;
1666 // If indexExpression is nullptr, then the array will eventually get its size implicitly from the initializer.
1667 if(indexExpression != nullptr && arraySizeErrorCheck(identifierLocation, indexExpression, size))
1668 {
1669 recover();
1670 }
1671 // Make the type an array even if size check failed.
1672 // This ensures useless error messages regarding the variable's non-arrayness won't follow.
1673 arrayType.setArray(true, size);
1674
1675 // initNode will correspond to the whole of "b[n] = initializer".
1676 TIntermNode *initNode = nullptr;
Alexis Hetue5246692015-06-18 12:34:52 -04001677 if(!executeInitializer(identifierLocation, identifier, arrayType, initializer, &initNode))
Alexis Hetudd7ff7a2015-06-11 08:25:30 -04001678 {
1679 if(initNode)
1680 {
1681 return intermediate.growAggregate(aggregateDeclaration, initNode, initLocation);
1682 }
1683 else
1684 {
1685 return aggregateDeclaration;
1686 }
1687 }
1688 else
1689 {
1690 recover();
1691 return nullptr;
1692 }
1693}
1694
Alexis Hetua35d8232015-06-11 17:11:06 -04001695void TParseContext::parseGlobalLayoutQualifier(const TPublicType &typeQualifier)
1696{
Alexis Hetu0a655842015-06-22 16:52:11 -04001697 if(mShaderVersion < 300)
Alexis Hetua35d8232015-06-11 17:11:06 -04001698 {
1699 error(typeQualifier.line, "layout qualifiers supported in GLSL ES 3.00 only", "layout");
1700 recover();
1701 return;
1702 }
1703
1704 if(typeQualifier.qualifier != EvqUniform)
1705 {
1706 error(typeQualifier.line, "invalid qualifier:", getQualifierString(typeQualifier.qualifier), "global layout must be uniform");
1707 recover();
1708 return;
1709 }
1710
1711 const TLayoutQualifier layoutQualifier = typeQualifier.layoutQualifier;
1712 ASSERT(!layoutQualifier.isEmpty());
1713
1714 if(layoutLocationErrorCheck(typeQualifier.line, typeQualifier.layoutQualifier))
1715 {
1716 recover();
1717 return;
1718 }
1719
1720 if(layoutQualifier.matrixPacking != EmpUnspecified)
1721 {
Alexis Hetu0a655842015-06-22 16:52:11 -04001722 mDefaultMatrixPacking = layoutQualifier.matrixPacking;
Alexis Hetua35d8232015-06-11 17:11:06 -04001723 }
1724
1725 if(layoutQualifier.blockStorage != EbsUnspecified)
1726 {
Alexis Hetu0a655842015-06-22 16:52:11 -04001727 mDefaultBlockStorage = layoutQualifier.blockStorage;
Alexis Hetua35d8232015-06-11 17:11:06 -04001728 }
1729}
1730
Alexis Hetu407813b2016-02-24 16:46:13 -05001731TIntermAggregate *TParseContext::addFunctionPrototypeDeclaration(const TFunction &function, const TSourceLoc &location)
1732{
1733 // Note: symbolTableFunction could be the same as function if this is the first declaration.
1734 // Either way the instance in the symbol table is used to track whether the function is declared
1735 // multiple times.
1736 TFunction *symbolTableFunction =
1737 static_cast<TFunction *>(symbolTable.find(function.getMangledName(), getShaderVersion()));
1738 if(symbolTableFunction->hasPrototypeDeclaration() && mShaderVersion == 100)
1739 {
1740 // ESSL 1.00.17 section 4.2.7.
1741 // Doesn't apply to ESSL 3.00.4: see section 4.2.3.
1742 error(location, "duplicate function prototype declarations are not allowed", "function");
1743 recover();
1744 }
1745 symbolTableFunction->setHasPrototypeDeclaration();
1746
1747 TIntermAggregate *prototype = new TIntermAggregate;
1748 prototype->setType(function.getReturnType());
1749 prototype->setName(function.getMangledName());
1750
1751 for(size_t i = 0; i < function.getParamCount(); i++)
1752 {
1753 const TParameter &param = function.getParam(i);
1754 if(param.name != 0)
1755 {
1756 TVariable variable(param.name, *param.type);
1757
1758 TIntermSymbol *paramSymbol = intermediate.addSymbol(
1759 variable.getUniqueId(), variable.getName(), variable.getType(), location);
1760 prototype = intermediate.growAggregate(prototype, paramSymbol, location);
1761 }
1762 else
1763 {
1764 TIntermSymbol *paramSymbol = intermediate.addSymbol(0, "", *param.type, location);
1765 prototype = intermediate.growAggregate(prototype, paramSymbol, location);
1766 }
1767 }
1768
1769 prototype->setOp(EOpPrototype);
1770
1771 symbolTable.pop();
1772
1773 if(!symbolTable.atGlobalLevel())
1774 {
1775 // ESSL 3.00.4 section 4.2.4.
1776 error(location, "local function prototype declarations are not allowed", "function");
1777 recover();
1778 }
1779
1780 return prototype;
1781}
1782
1783TIntermAggregate *TParseContext::addFunctionDefinition(const TFunction &function, TIntermAggregate *functionPrototype, TIntermAggregate *functionBody, const TSourceLoc &location)
1784{
1785 //?? Check that all paths return a value if return type != void ?
1786 // May be best done as post process phase on intermediate code
1787 if(mCurrentFunctionType->getBasicType() != EbtVoid && !mFunctionReturnsValue)
1788 {
1789 error(location, "function does not return a value:", "", function.getName().c_str());
1790 recover();
1791 }
1792
1793 TIntermAggregate *aggregate = intermediate.growAggregate(functionPrototype, functionBody, location);
1794 intermediate.setAggregateOperator(aggregate, EOpFunction, location);
1795 aggregate->setName(function.getMangledName().c_str());
1796 aggregate->setType(function.getReturnType());
1797
Nicolas Capens0863f0d2016-04-10 00:30:02 -04001798 // store the pragma information for debug and optimize and other vendor specific
1799 // information. This information can be queried from the parse tree
1800 aggregate->setOptimize(pragma().optimize);
Alexis Hetu407813b2016-02-24 16:46:13 -05001801 aggregate->setDebug(pragma().debug);
1802
Nicolas Capens0863f0d2016-04-10 00:30:02 -04001803 if(functionBody && functionBody->getAsAggregate())
Alexis Hetu407813b2016-02-24 16:46:13 -05001804 aggregate->setEndLine(functionBody->getAsAggregate()->getEndLine());
1805
1806 symbolTable.pop();
1807 return aggregate;
1808}
1809
1810void TParseContext::parseFunctionPrototype(const TSourceLoc &location, TFunction *function, TIntermAggregate **aggregateOut)
1811{
1812 const TSymbol *builtIn = symbolTable.findBuiltIn(function->getMangledName(), getShaderVersion());
1813
1814 if(builtIn)
1815 {
1816 error(location, "built-in functions cannot be redefined", function->getName().c_str());
1817 recover();
1818 }
1819
1820 TFunction *prevDec = static_cast<TFunction *>(symbolTable.find(function->getMangledName(), getShaderVersion()));
1821 //
1822 // Note: 'prevDec' could be 'function' if this is the first time we've seen function
1823 // as it would have just been put in the symbol table. Otherwise, we're looking up
1824 // an earlier occurance.
1825 //
1826 if(prevDec->isDefined())
1827 {
1828 // Then this function already has a body.
1829 error(location, "function already has a body", function->getName().c_str());
1830 recover();
1831 }
1832 prevDec->setDefined();
1833 //
1834 // Overload the unique ID of the definition to be the same unique ID as the declaration.
1835 // Eventually we will probably want to have only a single definition and just swap the
1836 // arguments to be the definition's arguments.
1837 //
1838 function->setUniqueId(prevDec->getUniqueId());
1839
1840 // Raise error message if main function takes any parameters or return anything other than void
1841 if(function->getName() == "main")
1842 {
1843 if(function->getParamCount() > 0)
1844 {
1845 error(location, "function cannot take any parameter(s)", function->getName().c_str());
1846 recover();
1847 }
1848 if(function->getReturnType().getBasicType() != EbtVoid)
1849 {
1850 error(location, "", function->getReturnType().getBasicString(), "main function cannot return a value");
1851 recover();
1852 }
1853 }
1854
1855 //
1856 // Remember the return type for later checking for RETURN statements.
1857 //
1858 mCurrentFunctionType = &(prevDec->getReturnType());
1859 mFunctionReturnsValue = false;
1860
1861 //
1862 // Insert parameters into the symbol table.
1863 // If the parameter has no name, it's not an error, just don't insert it
1864 // (could be used for unused args).
1865 //
1866 // Also, accumulate the list of parameters into the HIL, so lower level code
1867 // knows where to find parameters.
1868 //
1869 TIntermAggregate *paramNodes = new TIntermAggregate;
1870 for(size_t i = 0; i < function->getParamCount(); i++)
1871 {
1872 const TParameter &param = function->getParam(i);
1873 if(param.name != 0)
1874 {
1875 TVariable *variable = new TVariable(param.name, *param.type);
1876 //
1877 // Insert the parameters with name in the symbol table.
1878 //
1879 if(!symbolTable.declare(*variable))
1880 {
1881 error(location, "redefinition", variable->getName().c_str());
1882 recover();
1883 paramNodes = intermediate.growAggregate(
1884 paramNodes, intermediate.addSymbol(0, "", *param.type, location), location);
1885 continue;
1886 }
1887
1888 //
1889 // Add the parameter to the HIL
1890 //
1891 TIntermSymbol *symbol = intermediate.addSymbol(
1892 variable->getUniqueId(), variable->getName(), variable->getType(), location);
1893
1894 paramNodes = intermediate.growAggregate(paramNodes, symbol, location);
1895 }
1896 else
1897 {
1898 paramNodes = intermediate.growAggregate(
1899 paramNodes, intermediate.addSymbol(0, "", *param.type, location), location);
1900 }
1901 }
1902 intermediate.setAggregateOperator(paramNodes, EOpParameters, location);
1903 *aggregateOut = paramNodes;
1904 setLoopNestingLevel(0);
1905}
1906
1907TFunction *TParseContext::parseFunctionDeclarator(const TSourceLoc &location, TFunction *function)
1908{
1909 //
1910 // We don't know at this point whether this is a function definition or a prototype.
1911 // The definition production code will check for redefinitions.
1912 // In the case of ESSL 1.00 the prototype production code will also check for redeclarations.
1913 //
1914 // Return types and parameter qualifiers must match in all redeclarations, so those are checked
1915 // here.
1916 //
1917 TFunction *prevDec = static_cast<TFunction *>(symbolTable.find(function->getMangledName(), getShaderVersion()));
1918 if(prevDec)
1919 {
1920 if(prevDec->getReturnType() != function->getReturnType())
1921 {
1922 error(location, "overloaded functions must have the same return type",
1923 function->getReturnType().getBasicString());
1924 recover();
1925 }
1926 for(size_t i = 0; i < prevDec->getParamCount(); ++i)
1927 {
1928 if(prevDec->getParam(i).type->getQualifier() != function->getParam(i).type->getQualifier())
1929 {
1930 error(location, "overloaded functions must have the same parameter qualifiers",
1931 function->getParam(i).type->getQualifierString());
1932 recover();
1933 }
1934 }
1935 }
1936
1937 //
1938 // Check for previously declared variables using the same name.
1939 //
1940 TSymbol *prevSym = symbolTable.find(function->getName(), getShaderVersion());
1941 if(prevSym)
1942 {
1943 if(!prevSym->isFunction())
1944 {
1945 error(location, "redefinition", function->getName().c_str(), "function");
1946 recover();
1947 }
1948 }
1949
1950 // We're at the inner scope level of the function's arguments and body statement.
1951 // Add the function prototype to the surrounding scope instead.
1952 symbolTable.getOuterLevel()->insert(*function);
1953
1954 //
1955 // If this is a redeclaration, it could also be a definition, in which case, we want to use the
1956 // variable names from this one, and not the one that's
1957 // being redeclared. So, pass back up this declaration, not the one in the symbol table.
1958 //
1959 return function;
1960}
1961
Alexis Hetue5246692015-06-18 12:34:52 -04001962TFunction *TParseContext::addConstructorFunc(const TPublicType &publicTypeIn)
1963{
1964 TPublicType publicType = publicTypeIn;
1965 TOperator op = EOpNull;
1966 if(publicType.userDef)
1967 {
1968 op = EOpConstructStruct;
1969 }
1970 else
1971 {
1972 switch(publicType.type)
1973 {
Nicolas Capens5d961882016-01-01 23:18:14 -05001974 case EbtFloat:
1975 if(publicType.isMatrix())
1976 {
1977 switch(publicType.getCols())
1978 {
1979 case 2:
1980 switch(publicType.getRows())
1981 {
1982 case 2: op = EOpConstructMat2; break;
1983 case 3: op = EOpConstructMat2x3; break;
1984 case 4: op = EOpConstructMat2x4; break;
1985 }
1986 break;
1987 case 3:
1988 switch(publicType.getRows())
1989 {
1990 case 2: op = EOpConstructMat3x2; break;
1991 case 3: op = EOpConstructMat3; break;
1992 case 4: op = EOpConstructMat3x4; break;
1993 }
1994 break;
1995 case 4:
1996 switch(publicType.getRows())
1997 {
1998 case 2: op = EOpConstructMat4x2; break;
1999 case 3: op = EOpConstructMat4x3; break;
2000 case 4: op = EOpConstructMat4; break;
2001 }
2002 break;
2003 }
2004 }
2005 else
2006 {
2007 switch(publicType.getNominalSize())
2008 {
2009 case 1: op = EOpConstructFloat; break;
2010 case 2: op = EOpConstructVec2; break;
2011 case 3: op = EOpConstructVec3; break;
2012 case 4: op = EOpConstructVec4; break;
2013 }
2014 }
Alexis Hetue5246692015-06-18 12:34:52 -04002015 break;
2016
2017 case EbtInt:
2018 switch(publicType.getNominalSize())
2019 {
2020 case 1: op = EOpConstructInt; break;
2021 case 2: op = EOpConstructIVec2; break;
2022 case 3: op = EOpConstructIVec3; break;
2023 case 4: op = EOpConstructIVec4; break;
2024 }
2025 break;
2026
2027 case EbtUInt:
2028 switch(publicType.getNominalSize())
2029 {
2030 case 1: op = EOpConstructUInt; break;
2031 case 2: op = EOpConstructUVec2; break;
2032 case 3: op = EOpConstructUVec3; break;
2033 case 4: op = EOpConstructUVec4; break;
2034 }
2035 break;
2036
2037 case EbtBool:
2038 switch(publicType.getNominalSize())
2039 {
2040 case 1: op = EOpConstructBool; break;
2041 case 2: op = EOpConstructBVec2; break;
2042 case 3: op = EOpConstructBVec3; break;
2043 case 4: op = EOpConstructBVec4; break;
2044 }
2045 break;
2046
2047 default: break;
2048 }
2049
2050 if(op == EOpNull)
2051 {
2052 error(publicType.line, "cannot construct this type", getBasicString(publicType.type));
2053 recover();
2054 publicType.type = EbtFloat;
2055 op = EOpConstructFloat;
2056 }
2057 }
2058
2059 TString tempString;
2060 TType type(publicType);
2061 return new TFunction(&tempString, type, op);
2062}
2063
John Bauman66b8ab22014-05-06 15:57:45 -04002064// This function is used to test for the correctness of the parameters passed to various constructor functions
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002065// and also convert them to the right datatype if it is allowed and required.
John Bauman66b8ab22014-05-06 15:57:45 -04002066//
2067// Returns 0 for an error or the constructed node (aggregate or typed) for no error.
2068//
Alexis Hetufe1269e2015-06-16 12:43:32 -04002069TIntermTyped* TParseContext::addConstructor(TIntermNode* arguments, const TType* type, TOperator op, TFunction* fnCall, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -04002070{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002071 TIntermAggregate *aggregateArguments = arguments->getAsAggregate();
John Bauman66b8ab22014-05-06 15:57:45 -04002072
Nicolas Capens0bac2852016-05-07 06:09:58 -04002073 if(!aggregateArguments)
2074 {
2075 aggregateArguments = new TIntermAggregate;
2076 aggregateArguments->getSequence().push_back(arguments);
2077 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002078
Nicolas Capens0bac2852016-05-07 06:09:58 -04002079 if(op == EOpConstructStruct)
2080 {
2081 const TFieldList &fields = type->getStruct()->fields();
2082 TIntermSequence &args = aggregateArguments->getSequence();
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002083
Nicolas Capens0bac2852016-05-07 06:09:58 -04002084 for(size_t i = 0; i < fields.size(); i++)
2085 {
2086 if(args[i]->getAsTyped()->getType() != *fields[i]->type())
2087 {
2088 error(line, "Structure constructor arguments do not match structure fields", "Error");
2089 recover();
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002090
Nicolas Capens0bac2852016-05-07 06:09:58 -04002091 return 0;
2092 }
2093 }
2094 }
John Bauman66b8ab22014-05-06 15:57:45 -04002095
Nicolas Capens0bac2852016-05-07 06:09:58 -04002096 // Turn the argument list itself into a constructor
2097 TIntermAggregate *constructor = intermediate.setAggregateOperator(aggregateArguments, op, line);
2098 TIntermTyped *constConstructor = foldConstConstructor(constructor, *type);
2099 if(constConstructor)
2100 {
2101 return constConstructor;
2102 }
John Bauman66b8ab22014-05-06 15:57:45 -04002103
Nicolas Capens0bac2852016-05-07 06:09:58 -04002104 return constructor;
John Bauman66b8ab22014-05-06 15:57:45 -04002105}
2106
2107TIntermTyped* TParseContext::foldConstConstructor(TIntermAggregate* aggrNode, const TType& type)
2108{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002109 aggrNode->setType(type);
2110 if (aggrNode->isConstantFoldable()) {
2111 bool returnVal = false;
2112 ConstantUnion* unionArray = new ConstantUnion[type.getObjectSize()];
2113 if (aggrNode->getSequence().size() == 1) {
2114 returnVal = intermediate.parseConstTree(aggrNode->getLine(), aggrNode, unionArray, aggrNode->getOp(), type, true);
2115 }
2116 else {
2117 returnVal = intermediate.parseConstTree(aggrNode->getLine(), aggrNode, unionArray, aggrNode->getOp(), type);
2118 }
2119 if (returnVal)
2120 return 0;
John Bauman66b8ab22014-05-06 15:57:45 -04002121
Nicolas Capens0bac2852016-05-07 06:09:58 -04002122 return intermediate.addConstantUnion(unionArray, type, aggrNode->getLine());
2123 }
John Bauman66b8ab22014-05-06 15:57:45 -04002124
Nicolas Capens0bac2852016-05-07 06:09:58 -04002125 return 0;
John Bauman66b8ab22014-05-06 15:57:45 -04002126}
2127
John Bauman66b8ab22014-05-06 15:57:45 -04002128//
2129// This function returns the tree representation for the vector field(s) being accessed from contant vector.
2130// If only one component of vector is accessed (v.x or v[0] where v is a contant vector), then a contant node is
2131// returned, else an aggregate node is returned (for v.xy). The input to this function could either be the symbol
Nicolas Capens0863f0d2016-04-10 00:30:02 -04002132// node or it could be the intermediate tree representation of accessing fields in a constant structure or column of
John Bauman66b8ab22014-05-06 15:57:45 -04002133// a constant matrix.
2134//
Alexis Hetufe1269e2015-06-16 12:43:32 -04002135TIntermTyped* TParseContext::addConstVectorNode(TVectorFields& fields, TIntermTyped* node, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -04002136{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002137 TIntermTyped* typedNode;
2138 TIntermConstantUnion* tempConstantNode = node->getAsConstantUnion();
John Bauman66b8ab22014-05-06 15:57:45 -04002139
Nicolas Capens0bac2852016-05-07 06:09:58 -04002140 ConstantUnion *unionArray;
2141 if (tempConstantNode) {
2142 unionArray = tempConstantNode->getUnionArrayPointer();
John Bauman66b8ab22014-05-06 15:57:45 -04002143
Nicolas Capens0bac2852016-05-07 06:09:58 -04002144 if (!unionArray) {
2145 return node;
2146 }
2147 } else { // The node has to be either a symbol node or an aggregate node or a tempConstant node, else, its an error
2148 error(line, "Cannot offset into the vector", "Error");
2149 recover();
John Bauman66b8ab22014-05-06 15:57:45 -04002150
Nicolas Capens0bac2852016-05-07 06:09:58 -04002151 return 0;
2152 }
John Bauman66b8ab22014-05-06 15:57:45 -04002153
Nicolas Capens0bac2852016-05-07 06:09:58 -04002154 ConstantUnion* constArray = new ConstantUnion[fields.num];
John Bauman66b8ab22014-05-06 15:57:45 -04002155
Nicolas Capens0bac2852016-05-07 06:09:58 -04002156 for (int i = 0; i < fields.num; i++) {
2157 if (fields.offsets[i] >= node->getType().getObjectSize()) {
2158 std::stringstream extraInfoStream;
2159 extraInfoStream << "vector field selection out of range '" << fields.offsets[i] << "'";
2160 std::string extraInfo = extraInfoStream.str();
2161 error(line, "", "[", extraInfo.c_str());
2162 recover();
2163 fields.offsets[i] = 0;
2164 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002165
Nicolas Capens0bac2852016-05-07 06:09:58 -04002166 constArray[i] = unionArray[fields.offsets[i]];
John Bauman66b8ab22014-05-06 15:57:45 -04002167
Nicolas Capens0bac2852016-05-07 06:09:58 -04002168 }
2169 typedNode = intermediate.addConstantUnion(constArray, node->getType(), line);
2170 return typedNode;
John Bauman66b8ab22014-05-06 15:57:45 -04002171}
2172
2173//
2174// This function returns the column being accessed from a constant matrix. The values are retrieved from
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002175// the symbol table and parse-tree is built for a vector (each column of a matrix is a vector). The input
2176// to the function could either be a symbol node (m[0] where m is a constant matrix)that represents a
John Bauman66b8ab22014-05-06 15:57:45 -04002177// constant matrix or it could be the tree representation of the constant matrix (s.m1[0] where s is a constant structure)
2178//
Alexis Hetufe1269e2015-06-16 12:43:32 -04002179TIntermTyped* TParseContext::addConstMatrixNode(int index, TIntermTyped* node, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -04002180{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002181 TIntermTyped* typedNode;
2182 TIntermConstantUnion* tempConstantNode = node->getAsConstantUnion();
John Bauman66b8ab22014-05-06 15:57:45 -04002183
Nicolas Capens0bac2852016-05-07 06:09:58 -04002184 if (index >= node->getType().getNominalSize()) {
2185 std::stringstream extraInfoStream;
2186 extraInfoStream << "matrix field selection out of range '" << index << "'";
2187 std::string extraInfo = extraInfoStream.str();
2188 error(line, "", "[", extraInfo.c_str());
2189 recover();
2190 index = 0;
2191 }
John Bauman66b8ab22014-05-06 15:57:45 -04002192
Nicolas Capens0bac2852016-05-07 06:09:58 -04002193 if (tempConstantNode) {
2194 ConstantUnion* unionArray = tempConstantNode->getUnionArrayPointer();
2195 int size = tempConstantNode->getType().getNominalSize();
2196 typedNode = intermediate.addConstantUnion(&unionArray[size*index], tempConstantNode->getType(), line);
2197 } else {
2198 error(line, "Cannot offset into the matrix", "Error");
2199 recover();
John Bauman66b8ab22014-05-06 15:57:45 -04002200
Nicolas Capens0bac2852016-05-07 06:09:58 -04002201 return 0;
2202 }
John Bauman66b8ab22014-05-06 15:57:45 -04002203
Nicolas Capens0bac2852016-05-07 06:09:58 -04002204 return typedNode;
John Bauman66b8ab22014-05-06 15:57:45 -04002205}
2206
2207
2208//
2209// This function returns an element of an array accessed from a constant array. The values are retrieved from
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002210// the symbol table and parse-tree is built for the type of the element. The input
2211// to the function could either be a symbol node (a[0] where a is a constant array)that represents a
John Bauman66b8ab22014-05-06 15:57:45 -04002212// constant array or it could be the tree representation of the constant array (s.a1[0] where s is a constant structure)
2213//
Alexis Hetufe1269e2015-06-16 12:43:32 -04002214TIntermTyped* TParseContext::addConstArrayNode(int index, TIntermTyped* node, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -04002215{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002216 TIntermTyped* typedNode;
2217 TIntermConstantUnion* tempConstantNode = node->getAsConstantUnion();
2218 TType arrayElementType = node->getType();
2219 arrayElementType.clearArrayness();
John Bauman66b8ab22014-05-06 15:57:45 -04002220
Nicolas Capens0bac2852016-05-07 06:09:58 -04002221 if (index >= node->getType().getArraySize()) {
2222 std::stringstream extraInfoStream;
2223 extraInfoStream << "array field selection out of range '" << index << "'";
2224 std::string extraInfo = extraInfoStream.str();
2225 error(line, "", "[", extraInfo.c_str());
2226 recover();
2227 index = 0;
2228 }
John Bauman66b8ab22014-05-06 15:57:45 -04002229
Nicolas Capens0bac2852016-05-07 06:09:58 -04002230 size_t arrayElementSize = arrayElementType.getObjectSize();
John Bauman66b8ab22014-05-06 15:57:45 -04002231
Nicolas Capens0bac2852016-05-07 06:09:58 -04002232 if (tempConstantNode) {
2233 ConstantUnion* unionArray = tempConstantNode->getUnionArrayPointer();
2234 typedNode = intermediate.addConstantUnion(&unionArray[arrayElementSize * index], tempConstantNode->getType(), line);
2235 } else {
2236 error(line, "Cannot offset into the array", "Error");
2237 recover();
John Bauman66b8ab22014-05-06 15:57:45 -04002238
Nicolas Capens0bac2852016-05-07 06:09:58 -04002239 return 0;
2240 }
John Bauman66b8ab22014-05-06 15:57:45 -04002241
Nicolas Capens0bac2852016-05-07 06:09:58 -04002242 return typedNode;
John Bauman66b8ab22014-05-06 15:57:45 -04002243}
2244
2245
2246//
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002247// This function returns the value of a particular field inside a constant structure from the symbol table.
John Bauman66b8ab22014-05-06 15:57:45 -04002248// If there is an embedded/nested struct, it appropriately calls addConstStructNested or addConstStructFromAggr
2249// function and returns the parse-tree with the values of the embedded/nested struct.
2250//
Alexis Hetufe1269e2015-06-16 12:43:32 -04002251TIntermTyped* TParseContext::addConstStruct(const TString& identifier, TIntermTyped* node, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -04002252{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002253 const TFieldList &fields = node->getType().getStruct()->fields();
2254 TIntermTyped *typedNode;
2255 size_t instanceSize = 0;
2256 TIntermConstantUnion *tempConstantNode = node->getAsConstantUnion();
John Bauman66b8ab22014-05-06 15:57:45 -04002257
Nicolas Capens0bac2852016-05-07 06:09:58 -04002258 for(size_t index = 0; index < fields.size(); ++index) {
2259 if (fields[index]->name() == identifier) {
2260 break;
2261 } else {
2262 instanceSize += fields[index]->type()->getObjectSize();
2263 }
2264 }
John Bauman66b8ab22014-05-06 15:57:45 -04002265
Nicolas Capens0bac2852016-05-07 06:09:58 -04002266 if (tempConstantNode) {
2267 ConstantUnion* constArray = tempConstantNode->getUnionArrayPointer();
John Bauman66b8ab22014-05-06 15:57:45 -04002268
Nicolas Capens0bac2852016-05-07 06:09:58 -04002269 typedNode = intermediate.addConstantUnion(constArray+instanceSize, tempConstantNode->getType(), line); // type will be changed in the calling function
2270 } else {
2271 error(line, "Cannot offset into the structure", "Error");
2272 recover();
John Bauman66b8ab22014-05-06 15:57:45 -04002273
Nicolas Capens0bac2852016-05-07 06:09:58 -04002274 return 0;
2275 }
John Bauman66b8ab22014-05-06 15:57:45 -04002276
Nicolas Capens0bac2852016-05-07 06:09:58 -04002277 return typedNode;
John Bauman66b8ab22014-05-06 15:57:45 -04002278}
2279
Alexis Hetuad6b8752015-06-09 16:15:30 -04002280//
Alexis Hetua35d8232015-06-11 17:11:06 -04002281// Interface/uniform blocks
2282//
2283TIntermAggregate* TParseContext::addInterfaceBlock(const TPublicType& typeQualifier, const TSourceLoc& nameLine, const TString& blockName, TFieldList* fieldList,
Nicolas Capens0bac2852016-05-07 06:09:58 -04002284 const TString* instanceName, const TSourceLoc& instanceLine, TIntermTyped* arrayIndex, const TSourceLoc& arrayIndexLine)
Alexis Hetua35d8232015-06-11 17:11:06 -04002285{
2286 if(reservedErrorCheck(nameLine, blockName))
2287 recover();
2288
2289 if(typeQualifier.qualifier != EvqUniform)
2290 {
2291 error(typeQualifier.line, "invalid qualifier:", getQualifierString(typeQualifier.qualifier), "interface blocks must be uniform");
2292 recover();
2293 }
2294
2295 TLayoutQualifier blockLayoutQualifier = typeQualifier.layoutQualifier;
2296 if(layoutLocationErrorCheck(typeQualifier.line, blockLayoutQualifier))
2297 {
2298 recover();
2299 }
2300
2301 if(blockLayoutQualifier.matrixPacking == EmpUnspecified)
2302 {
Alexis Hetu0a655842015-06-22 16:52:11 -04002303 blockLayoutQualifier.matrixPacking = mDefaultMatrixPacking;
Alexis Hetua35d8232015-06-11 17:11:06 -04002304 }
2305
2306 if(blockLayoutQualifier.blockStorage == EbsUnspecified)
2307 {
Alexis Hetu0a655842015-06-22 16:52:11 -04002308 blockLayoutQualifier.blockStorage = mDefaultBlockStorage;
Alexis Hetua35d8232015-06-11 17:11:06 -04002309 }
2310
2311 TSymbol* blockNameSymbol = new TSymbol(&blockName);
2312 if(!symbolTable.declare(*blockNameSymbol)) {
2313 error(nameLine, "redefinition", blockName.c_str(), "interface block name");
2314 recover();
2315 }
2316
2317 // check for sampler types and apply layout qualifiers
2318 for(size_t memberIndex = 0; memberIndex < fieldList->size(); ++memberIndex) {
2319 TField* field = (*fieldList)[memberIndex];
2320 TType* fieldType = field->type();
2321 if(IsSampler(fieldType->getBasicType())) {
2322 error(field->line(), "unsupported type", fieldType->getBasicString(), "sampler types are not allowed in interface blocks");
2323 recover();
2324 }
2325
2326 const TQualifier qualifier = fieldType->getQualifier();
2327 switch(qualifier)
2328 {
2329 case EvqGlobal:
2330 case EvqUniform:
2331 break;
2332 default:
2333 error(field->line(), "invalid qualifier on interface block member", getQualifierString(qualifier));
2334 recover();
2335 break;
2336 }
2337
2338 // check layout qualifiers
2339 TLayoutQualifier fieldLayoutQualifier = fieldType->getLayoutQualifier();
2340 if(layoutLocationErrorCheck(field->line(), fieldLayoutQualifier))
2341 {
2342 recover();
2343 }
2344
2345 if(fieldLayoutQualifier.blockStorage != EbsUnspecified)
2346 {
2347 error(field->line(), "invalid layout qualifier:", getBlockStorageString(fieldLayoutQualifier.blockStorage), "cannot be used here");
2348 recover();
2349 }
2350
2351 if(fieldLayoutQualifier.matrixPacking == EmpUnspecified)
2352 {
2353 fieldLayoutQualifier.matrixPacking = blockLayoutQualifier.matrixPacking;
2354 }
2355 else if(!fieldType->isMatrix())
2356 {
2357 error(field->line(), "invalid layout qualifier:", getMatrixPackingString(fieldLayoutQualifier.matrixPacking), "can only be used on matrix types");
2358 recover();
2359 }
2360
2361 fieldType->setLayoutQualifier(fieldLayoutQualifier);
2362 }
2363
2364 // add array index
2365 int arraySize = 0;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002366 if(arrayIndex)
Alexis Hetua35d8232015-06-11 17:11:06 -04002367 {
2368 if(arraySizeErrorCheck(arrayIndexLine, arrayIndex, arraySize))
2369 recover();
2370 }
2371
2372 TInterfaceBlock* interfaceBlock = new TInterfaceBlock(&blockName, fieldList, instanceName, arraySize, blockLayoutQualifier);
2373 TType interfaceBlockType(interfaceBlock, typeQualifier.qualifier, blockLayoutQualifier, arraySize);
2374
2375 TString symbolName = "";
2376 int symbolId = 0;
2377
2378 if(!instanceName)
2379 {
2380 // define symbols for the members of the interface block
2381 for(size_t memberIndex = 0; memberIndex < fieldList->size(); ++memberIndex)
2382 {
2383 TField* field = (*fieldList)[memberIndex];
2384 TType* fieldType = field->type();
2385
2386 // set parent pointer of the field variable
2387 fieldType->setInterfaceBlock(interfaceBlock);
2388
2389 TVariable* fieldVariable = new TVariable(&field->name(), *fieldType);
2390 fieldVariable->setQualifier(typeQualifier.qualifier);
2391
2392 if(!symbolTable.declare(*fieldVariable)) {
2393 error(field->line(), "redefinition", field->name().c_str(), "interface block member name");
2394 recover();
2395 }
2396 }
2397 }
2398 else
2399 {
2400 // add a symbol for this interface block
2401 TVariable* instanceTypeDef = new TVariable(instanceName, interfaceBlockType, false);
2402 instanceTypeDef->setQualifier(typeQualifier.qualifier);
2403
2404 if(!symbolTable.declare(*instanceTypeDef)) {
2405 error(instanceLine, "redefinition", instanceName->c_str(), "interface block instance name");
2406 recover();
2407 }
2408
2409 symbolId = instanceTypeDef->getUniqueId();
2410 symbolName = instanceTypeDef->getName();
2411 }
2412
2413 TIntermAggregate *aggregate = intermediate.makeAggregate(intermediate.addSymbol(symbolId, symbolName, interfaceBlockType, typeQualifier.line), nameLine);
2414 aggregate->setOp(EOpDeclaration);
2415
2416 exitStructDeclaration();
2417 return aggregate;
2418}
2419
2420//
Alexis Hetuad6b8752015-06-09 16:15:30 -04002421// Parse an array index expression
2422//
2423TIntermTyped *TParseContext::addIndexExpression(TIntermTyped *baseExpression, const TSourceLoc &location, TIntermTyped *indexExpression)
2424{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002425 TIntermTyped *indexedExpression = nullptr;
Alexis Hetuad6b8752015-06-09 16:15:30 -04002426
2427 if(!baseExpression->isArray() && !baseExpression->isMatrix() && !baseExpression->isVector())
2428 {
2429 if(baseExpression->getAsSymbolNode())
2430 {
2431 error(location, " left of '[' is not of type array, matrix, or vector ",
2432 baseExpression->getAsSymbolNode()->getSymbol().c_str());
2433 }
2434 else
2435 {
2436 error(location, " left of '[' is not of type array, matrix, or vector ", "expression");
2437 }
2438 recover();
2439 }
2440
2441 TIntermConstantUnion *indexConstantUnion = indexExpression->getAsConstantUnion();
2442
2443 if(indexExpression->getQualifier() == EvqConstExpr && indexConstantUnion)
2444 {
2445 int index = indexConstantUnion->getIConst(0);
2446 if(index < 0)
2447 {
2448 std::stringstream infoStream;
2449 infoStream << index;
2450 std::string info = infoStream.str();
2451 error(location, "negative index", info.c_str());
2452 recover();
2453 index = 0;
2454 }
2455 if(baseExpression->getType().getQualifier() == EvqConstExpr)
2456 {
2457 if(baseExpression->isArray())
2458 {
2459 // constant folding for arrays
2460 indexedExpression = addConstArrayNode(index, baseExpression, location);
2461 }
2462 else if(baseExpression->isVector())
2463 {
2464 // constant folding for vectors
2465 TVectorFields fields;
2466 fields.num = 1;
2467 fields.offsets[0] = index; // need to do it this way because v.xy sends fields integer array
2468 indexedExpression = addConstVectorNode(fields, baseExpression, location);
2469 }
2470 else if(baseExpression->isMatrix())
2471 {
2472 // constant folding for matrices
2473 indexedExpression = addConstMatrixNode(index, baseExpression, location);
2474 }
2475 }
2476 else
2477 {
2478 int safeIndex = -1;
2479
2480 if(baseExpression->isArray())
2481 {
2482 if(index >= baseExpression->getType().getArraySize())
2483 {
2484 std::stringstream extraInfoStream;
2485 extraInfoStream << "array index out of range '" << index << "'";
2486 std::string extraInfo = extraInfoStream.str();
2487 error(location, "", "[", extraInfo.c_str());
2488 recover();
2489 safeIndex = baseExpression->getType().getArraySize() - 1;
2490 }
2491 }
2492 else if((baseExpression->isVector() || baseExpression->isMatrix()) &&
2493 baseExpression->getType().getNominalSize() <= index)
2494 {
2495 std::stringstream extraInfoStream;
2496 extraInfoStream << "field selection out of range '" << index << "'";
2497 std::string extraInfo = extraInfoStream.str();
2498 error(location, "", "[", extraInfo.c_str());
2499 recover();
2500 safeIndex = baseExpression->getType().getNominalSize() - 1;
2501 }
2502
2503 // Don't modify the data of the previous constant union, because it can point
2504 // to builtins, like gl_MaxDrawBuffers. Instead use a new sanitized object.
2505 if(safeIndex != -1)
2506 {
2507 ConstantUnion *safeConstantUnion = new ConstantUnion();
2508 safeConstantUnion->setIConst(safeIndex);
2509 indexConstantUnion->replaceConstantUnion(safeConstantUnion);
2510 }
2511
2512 indexedExpression = intermediate.addIndex(EOpIndexDirect, baseExpression, indexExpression, location);
2513 }
2514 }
2515 else
2516 {
2517 if(baseExpression->isInterfaceBlock())
2518 {
2519 error(location, "",
2520 "[", "array indexes for interface blocks arrays must be constant integral expressions");
2521 recover();
2522 }
Alexis Hetuad6b8752015-06-09 16:15:30 -04002523 else if(baseExpression->getQualifier() == EvqFragmentOut)
2524 {
2525 error(location, "", "[", "array indexes for fragment outputs must be constant integral expressions");
2526 recover();
2527 }
Alexis Hetuad6b8752015-06-09 16:15:30 -04002528
2529 indexedExpression = intermediate.addIndex(EOpIndexIndirect, baseExpression, indexExpression, location);
2530 }
2531
2532 if(indexedExpression == 0)
2533 {
2534 ConstantUnion *unionArray = new ConstantUnion[1];
2535 unionArray->setFConst(0.0f);
2536 indexedExpression = intermediate.addConstantUnion(unionArray, TType(EbtFloat, EbpHigh, EvqConstExpr), location);
2537 }
2538 else if(baseExpression->isArray())
2539 {
2540 const TType &baseType = baseExpression->getType();
2541 if(baseType.getStruct())
2542 {
2543 TType copyOfType(baseType.getStruct());
2544 indexedExpression->setType(copyOfType);
2545 }
2546 else if(baseType.isInterfaceBlock())
2547 {
Alexis Hetu6c7ac3c2016-01-12 16:13:37 -05002548 TType copyOfType(baseType.getInterfaceBlock(), EvqTemporary, baseType.getLayoutQualifier(), 0);
Alexis Hetuad6b8752015-06-09 16:15:30 -04002549 indexedExpression->setType(copyOfType);
2550 }
2551 else
2552 {
2553 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision(),
2554 EvqTemporary, static_cast<unsigned char>(baseExpression->getNominalSize()),
2555 static_cast<unsigned char>(baseExpression->getSecondarySize())));
2556 }
2557
2558 if(baseExpression->getType().getQualifier() == EvqConstExpr)
2559 {
2560 indexedExpression->getTypePointer()->setQualifier(EvqConstExpr);
2561 }
2562 }
2563 else if(baseExpression->isMatrix())
2564 {
2565 TQualifier qualifier = baseExpression->getType().getQualifier() == EvqConstExpr ? EvqConstExpr : EvqTemporary;
2566 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision(),
2567 qualifier, static_cast<unsigned char>(baseExpression->getSecondarySize())));
2568 }
2569 else if(baseExpression->isVector())
2570 {
2571 TQualifier qualifier = baseExpression->getType().getQualifier() == EvqConstExpr ? EvqConstExpr : EvqTemporary;
2572 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision(), qualifier));
2573 }
2574 else
2575 {
2576 indexedExpression->setType(baseExpression->getType());
2577 }
2578
2579 return indexedExpression;
2580}
2581
2582TIntermTyped *TParseContext::addFieldSelectionExpression(TIntermTyped *baseExpression, const TSourceLoc &dotLocation,
2583 const TString &fieldString, const TSourceLoc &fieldLocation)
2584{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002585 TIntermTyped *indexedExpression = nullptr;
Alexis Hetuad6b8752015-06-09 16:15:30 -04002586
2587 if(baseExpression->isArray())
2588 {
2589 error(fieldLocation, "cannot apply dot operator to an array", ".");
2590 recover();
2591 }
2592
2593 if(baseExpression->isVector())
2594 {
2595 TVectorFields fields;
2596 if(!parseVectorFields(fieldString, baseExpression->getNominalSize(), fields, fieldLocation))
2597 {
2598 fields.num = 1;
2599 fields.offsets[0] = 0;
2600 recover();
2601 }
2602
Nicolas Capens0863f0d2016-04-10 00:30:02 -04002603 if(baseExpression->getAsConstantUnion())
Alexis Hetuad6b8752015-06-09 16:15:30 -04002604 {
2605 // constant folding for vector fields
2606 indexedExpression = addConstVectorNode(fields, baseExpression, fieldLocation);
2607 if(indexedExpression == 0)
2608 {
2609 recover();
2610 indexedExpression = baseExpression;
2611 }
2612 else
2613 {
2614 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision(),
2615 EvqConstExpr, (unsigned char)(fieldString).size()));
2616 }
2617 }
2618 else
2619 {
2620 TString vectorString = fieldString;
2621 TIntermTyped *index = intermediate.addSwizzle(fields, fieldLocation);
2622 indexedExpression = intermediate.addIndex(EOpVectorSwizzle, baseExpression, index, dotLocation);
2623 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision(),
Nicolas Capens341afbb2016-04-10 01:54:50 -04002624 baseExpression->getQualifier() == EvqConstExpr ? EvqConstExpr : EvqTemporary, (unsigned char)vectorString.size()));
Alexis Hetuad6b8752015-06-09 16:15:30 -04002625 }
2626 }
2627 else if(baseExpression->isMatrix())
2628 {
2629 TMatrixFields fields;
2630 if(!parseMatrixFields(fieldString, baseExpression->getNominalSize(), baseExpression->getSecondarySize(), fields, fieldLocation))
2631 {
2632 fields.wholeRow = false;
2633 fields.wholeCol = false;
2634 fields.row = 0;
2635 fields.col = 0;
2636 recover();
2637 }
2638
2639 if(fields.wholeRow || fields.wholeCol)
2640 {
2641 error(dotLocation, " non-scalar fields not implemented yet", ".");
2642 recover();
2643 ConstantUnion *unionArray = new ConstantUnion[1];
2644 unionArray->setIConst(0);
2645 TIntermTyped *index = intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConstExpr),
2646 fieldLocation);
2647 indexedExpression = intermediate.addIndex(EOpIndexDirect, baseExpression, index, dotLocation);
2648 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision(),
2649 EvqTemporary, static_cast<unsigned char>(baseExpression->getNominalSize()),
2650 static_cast<unsigned char>(baseExpression->getSecondarySize())));
2651 }
2652 else
2653 {
2654 ConstantUnion *unionArray = new ConstantUnion[1];
2655 unionArray->setIConst(fields.col * baseExpression->getSecondarySize() + fields.row);
2656 TIntermTyped *index = intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConstExpr),
2657 fieldLocation);
2658 indexedExpression = intermediate.addIndex(EOpIndexDirect, baseExpression, index, dotLocation);
2659 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision()));
2660 }
2661 }
2662 else if(baseExpression->getBasicType() == EbtStruct)
2663 {
2664 bool fieldFound = false;
2665 const TFieldList &fields = baseExpression->getType().getStruct()->fields();
2666 if(fields.empty())
2667 {
2668 error(dotLocation, "structure has no fields", "Internal Error");
2669 recover();
2670 indexedExpression = baseExpression;
2671 }
2672 else
2673 {
2674 unsigned int i;
2675 for(i = 0; i < fields.size(); ++i)
2676 {
2677 if(fields[i]->name() == fieldString)
2678 {
2679 fieldFound = true;
2680 break;
2681 }
2682 }
2683 if(fieldFound)
2684 {
2685 if(baseExpression->getType().getQualifier() == EvqConstExpr)
2686 {
2687 indexedExpression = addConstStruct(fieldString, baseExpression, dotLocation);
2688 if(indexedExpression == 0)
2689 {
2690 recover();
2691 indexedExpression = baseExpression;
2692 }
2693 else
2694 {
2695 indexedExpression->setType(*fields[i]->type());
2696 // change the qualifier of the return type, not of the structure field
2697 // as the structure definition is shared between various structures.
2698 indexedExpression->getTypePointer()->setQualifier(EvqConstExpr);
2699 }
2700 }
2701 else
2702 {
2703 ConstantUnion *unionArray = new ConstantUnion[1];
2704 unionArray->setIConst(i);
2705 TIntermTyped *index = intermediate.addConstantUnion(unionArray, *fields[i]->type(), fieldLocation);
2706 indexedExpression = intermediate.addIndex(EOpIndexDirectStruct, baseExpression, index, dotLocation);
2707 indexedExpression->setType(*fields[i]->type());
2708 }
2709 }
2710 else
2711 {
2712 error(dotLocation, " no such field in structure", fieldString.c_str());
2713 recover();
2714 indexedExpression = baseExpression;
2715 }
2716 }
2717 }
2718 else if(baseExpression->isInterfaceBlock())
2719 {
2720 bool fieldFound = false;
2721 const TFieldList &fields = baseExpression->getType().getInterfaceBlock()->fields();
2722 if(fields.empty())
2723 {
2724 error(dotLocation, "interface block has no fields", "Internal Error");
2725 recover();
2726 indexedExpression = baseExpression;
2727 }
2728 else
2729 {
2730 unsigned int i;
2731 for(i = 0; i < fields.size(); ++i)
2732 {
2733 if(fields[i]->name() == fieldString)
2734 {
2735 fieldFound = true;
2736 break;
2737 }
2738 }
2739 if(fieldFound)
2740 {
2741 ConstantUnion *unionArray = new ConstantUnion[1];
2742 unionArray->setIConst(i);
2743 TIntermTyped *index = intermediate.addConstantUnion(unionArray, *fields[i]->type(), fieldLocation);
2744 indexedExpression = intermediate.addIndex(EOpIndexDirectInterfaceBlock, baseExpression, index,
2745 dotLocation);
2746 indexedExpression->setType(*fields[i]->type());
2747 }
2748 else
2749 {
2750 error(dotLocation, " no such field in interface block", fieldString.c_str());
2751 recover();
2752 indexedExpression = baseExpression;
2753 }
2754 }
2755 }
2756 else
2757 {
Alexis Hetu0a655842015-06-22 16:52:11 -04002758 if(mShaderVersion < 300)
Alexis Hetuad6b8752015-06-09 16:15:30 -04002759 {
2760 error(dotLocation, " field selection requires structure, vector, or matrix on left hand side",
2761 fieldString.c_str());
2762 }
2763 else
2764 {
2765 error(dotLocation,
2766 " field selection requires structure, vector, matrix, or interface block on left hand side",
2767 fieldString.c_str());
2768 }
2769 recover();
2770 indexedExpression = baseExpression;
2771 }
2772
2773 return indexedExpression;
2774}
2775
Nicolas Capens7d626792015-02-17 17:58:31 -05002776TLayoutQualifier TParseContext::parseLayoutQualifier(const TString &qualifierType, const TSourceLoc& qualifierTypeLine)
2777{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002778 TLayoutQualifier qualifier;
Nicolas Capens7d626792015-02-17 17:58:31 -05002779
Nicolas Capens0bac2852016-05-07 06:09:58 -04002780 qualifier.location = -1;
Alexis Hetuad6b8752015-06-09 16:15:30 -04002781 qualifier.matrixPacking = EmpUnspecified;
2782 qualifier.blockStorage = EbsUnspecified;
Nicolas Capens7d626792015-02-17 17:58:31 -05002783
Alexis Hetuad6b8752015-06-09 16:15:30 -04002784 if(qualifierType == "shared")
2785 {
2786 qualifier.blockStorage = EbsShared;
2787 }
2788 else if(qualifierType == "packed")
2789 {
2790 qualifier.blockStorage = EbsPacked;
2791 }
2792 else if(qualifierType == "std140")
2793 {
2794 qualifier.blockStorage = EbsStd140;
2795 }
2796 else if(qualifierType == "row_major")
2797 {
2798 qualifier.matrixPacking = EmpRowMajor;
2799 }
2800 else if(qualifierType == "column_major")
2801 {
2802 qualifier.matrixPacking = EmpColumnMajor;
2803 }
2804 else if(qualifierType == "location")
Nicolas Capens0bac2852016-05-07 06:09:58 -04002805 {
2806 error(qualifierTypeLine, "invalid layout qualifier", qualifierType.c_str(), "location requires an argument");
2807 recover();
2808 }
2809 else
2810 {
2811 error(qualifierTypeLine, "invalid layout qualifier", qualifierType.c_str());
2812 recover();
2813 }
Nicolas Capens7d626792015-02-17 17:58:31 -05002814
Nicolas Capens0bac2852016-05-07 06:09:58 -04002815 return qualifier;
Nicolas Capens7d626792015-02-17 17:58:31 -05002816}
2817
2818TLayoutQualifier TParseContext::parseLayoutQualifier(const TString &qualifierType, const TSourceLoc& qualifierTypeLine, const TString &intValueString, int intValue, const TSourceLoc& intValueLine)
2819{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002820 TLayoutQualifier qualifier;
Nicolas Capens7d626792015-02-17 17:58:31 -05002821
Nicolas Capens0bac2852016-05-07 06:09:58 -04002822 qualifier.location = -1;
2823 qualifier.matrixPacking = EmpUnspecified;
2824 qualifier.blockStorage = EbsUnspecified;
Nicolas Capens7d626792015-02-17 17:58:31 -05002825
Nicolas Capens0bac2852016-05-07 06:09:58 -04002826 if (qualifierType != "location")
2827 {
2828 error(qualifierTypeLine, "invalid layout qualifier", qualifierType.c_str(), "only location may have arguments");
2829 recover();
2830 }
2831 else
2832 {
2833 // must check that location is non-negative
2834 if (intValue < 0)
2835 {
2836 error(intValueLine, "out of range:", intValueString.c_str(), "location must be non-negative");
2837 recover();
2838 }
2839 else
2840 {
2841 qualifier.location = intValue;
2842 }
2843 }
Nicolas Capens7d626792015-02-17 17:58:31 -05002844
Nicolas Capens0bac2852016-05-07 06:09:58 -04002845 return qualifier;
Nicolas Capens7d626792015-02-17 17:58:31 -05002846}
2847
2848TLayoutQualifier TParseContext::joinLayoutQualifiers(TLayoutQualifier leftQualifier, TLayoutQualifier rightQualifier)
2849{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002850 TLayoutQualifier joinedQualifier = leftQualifier;
Nicolas Capens7d626792015-02-17 17:58:31 -05002851
Nicolas Capens0bac2852016-05-07 06:09:58 -04002852 if (rightQualifier.location != -1)
2853 {
2854 joinedQualifier.location = rightQualifier.location;
2855 }
Alexis Hetuad6b8752015-06-09 16:15:30 -04002856 if(rightQualifier.matrixPacking != EmpUnspecified)
2857 {
2858 joinedQualifier.matrixPacking = rightQualifier.matrixPacking;
2859 }
2860 if(rightQualifier.blockStorage != EbsUnspecified)
2861 {
2862 joinedQualifier.blockStorage = rightQualifier.blockStorage;
2863 }
Nicolas Capens7d626792015-02-17 17:58:31 -05002864
Nicolas Capens0bac2852016-05-07 06:09:58 -04002865 return joinedQualifier;
Nicolas Capens7d626792015-02-17 17:58:31 -05002866}
2867
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002868
2869TPublicType TParseContext::joinInterpolationQualifiers(const TSourceLoc &interpolationLoc, TQualifier interpolationQualifier,
2870 const TSourceLoc &storageLoc, TQualifier storageQualifier)
2871{
2872 TQualifier mergedQualifier = EvqSmoothIn;
2873
Alexis Hetu42ff6b12015-06-03 16:03:48 -04002874 if(storageQualifier == EvqFragmentIn) {
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002875 if(interpolationQualifier == EvqSmooth)
2876 mergedQualifier = EvqSmoothIn;
2877 else if(interpolationQualifier == EvqFlat)
2878 mergedQualifier = EvqFlatIn;
Nicolas Capens3713cd42015-06-22 10:41:54 -04002879 else UNREACHABLE(interpolationQualifier);
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002880 }
2881 else if(storageQualifier == EvqCentroidIn) {
2882 if(interpolationQualifier == EvqSmooth)
2883 mergedQualifier = EvqCentroidIn;
2884 else if(interpolationQualifier == EvqFlat)
2885 mergedQualifier = EvqFlatIn;
Nicolas Capens3713cd42015-06-22 10:41:54 -04002886 else UNREACHABLE(interpolationQualifier);
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002887 }
Alexis Hetu42ff6b12015-06-03 16:03:48 -04002888 else if(storageQualifier == EvqVertexOut) {
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002889 if(interpolationQualifier == EvqSmooth)
2890 mergedQualifier = EvqSmoothOut;
2891 else if(interpolationQualifier == EvqFlat)
2892 mergedQualifier = EvqFlatOut;
Nicolas Capens3713cd42015-06-22 10:41:54 -04002893 else UNREACHABLE(interpolationQualifier);
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002894 }
2895 else if(storageQualifier == EvqCentroidOut) {
2896 if(interpolationQualifier == EvqSmooth)
2897 mergedQualifier = EvqCentroidOut;
2898 else if(interpolationQualifier == EvqFlat)
2899 mergedQualifier = EvqFlatOut;
Nicolas Capens3713cd42015-06-22 10:41:54 -04002900 else UNREACHABLE(interpolationQualifier);
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002901 }
2902 else {
2903 error(interpolationLoc, "interpolation qualifier requires a fragment 'in' or vertex 'out' storage qualifier", getQualifierString(interpolationQualifier));
2904 recover();
2905
2906 mergedQualifier = storageQualifier;
2907 }
2908
2909 TPublicType type;
2910 type.setBasic(EbtVoid, mergedQualifier, storageLoc);
2911 return type;
2912}
2913
Alexis Hetuad6b8752015-06-09 16:15:30 -04002914TFieldList *TParseContext::addStructDeclaratorList(const TPublicType &typeSpecifier, TFieldList *fieldList)
2915{
Alexis Hetudd7ff7a2015-06-11 08:25:30 -04002916 if(voidErrorCheck(typeSpecifier.line, (*fieldList)[0]->name(), typeSpecifier.type))
Alexis Hetuad6b8752015-06-09 16:15:30 -04002917 {
2918 recover();
2919 }
2920
2921 for(unsigned int i = 0; i < fieldList->size(); ++i)
2922 {
2923 //
2924 // Careful not to replace already known aspects of type, like array-ness
2925 //
2926 TType *type = (*fieldList)[i]->type();
2927 type->setBasicType(typeSpecifier.type);
2928 type->setNominalSize(typeSpecifier.primarySize);
2929 type->setSecondarySize(typeSpecifier.secondarySize);
2930 type->setPrecision(typeSpecifier.precision);
2931 type->setQualifier(typeSpecifier.qualifier);
2932 type->setLayoutQualifier(typeSpecifier.layoutQualifier);
2933
2934 // don't allow arrays of arrays
2935 if(type->isArray())
2936 {
2937 if(arrayTypeErrorCheck(typeSpecifier.line, typeSpecifier))
2938 recover();
2939 }
2940 if(typeSpecifier.array)
2941 type->setArraySize(typeSpecifier.arraySize);
2942 if(typeSpecifier.userDef)
2943 {
2944 type->setStruct(typeSpecifier.userDef->getStruct());
2945 }
2946
2947 if(structNestingErrorCheck(typeSpecifier.line, *(*fieldList)[i]))
2948 {
2949 recover();
2950 }
2951 }
2952
2953 return fieldList;
2954}
2955
2956TPublicType TParseContext::addStructure(const TSourceLoc &structLine, const TSourceLoc &nameLine,
2957 const TString *structName, TFieldList *fieldList)
2958{
2959 TStructure *structure = new TStructure(structName, fieldList);
2960 TType *structureType = new TType(structure);
2961
2962 // Store a bool in the struct if we're at global scope, to allow us to
2963 // skip the local struct scoping workaround in HLSL.
2964 structure->setUniqueId(TSymbolTableLevel::nextUniqueId());
2965 structure->setAtGlobalScope(symbolTable.atGlobalLevel());
2966
2967 if(!structName->empty())
2968 {
2969 if(reservedErrorCheck(nameLine, *structName))
2970 {
2971 recover();
2972 }
2973 TVariable *userTypeDef = new TVariable(structName, *structureType, true);
2974 if(!symbolTable.declare(*userTypeDef))
2975 {
2976 error(nameLine, "redefinition", structName->c_str(), "struct");
2977 recover();
2978 }
2979 }
2980
2981 // ensure we do not specify any storage qualifiers on the struct members
2982 for(unsigned int typeListIndex = 0; typeListIndex < fieldList->size(); typeListIndex++)
2983 {
2984 const TField &field = *(*fieldList)[typeListIndex];
2985 const TQualifier qualifier = field.type()->getQualifier();
2986 switch(qualifier)
2987 {
2988 case EvqGlobal:
2989 case EvqTemporary:
2990 break;
2991 default:
2992 error(field.line(), "invalid qualifier on struct member", getQualifierString(qualifier));
2993 recover();
2994 break;
2995 }
2996 }
2997
2998 TPublicType publicType;
2999 publicType.setBasic(EbtStruct, EvqTemporary, structLine);
3000 publicType.userDef = structureType;
3001 exitStructDeclaration();
3002
3003 return publicType;
3004}
3005
Alexis Hetufe1269e2015-06-16 12:43:32 -04003006bool TParseContext::enterStructDeclaration(const TSourceLoc &line, const TString& identifier)
John Bauman66b8ab22014-05-06 15:57:45 -04003007{
Nicolas Capens0bac2852016-05-07 06:09:58 -04003008 ++mStructNestingLevel;
John Bauman66b8ab22014-05-06 15:57:45 -04003009
Nicolas Capens0bac2852016-05-07 06:09:58 -04003010 // Embedded structure definitions are not supported per GLSL ES spec.
3011 // They aren't allowed in GLSL either, but we need to detect this here
3012 // so we don't rely on the GLSL compiler to catch it.
3013 if (mStructNestingLevel > 1) {
3014 error(line, "", "Embedded struct definitions are not allowed");
3015 return true;
3016 }
John Bauman66b8ab22014-05-06 15:57:45 -04003017
Nicolas Capens0bac2852016-05-07 06:09:58 -04003018 return false;
John Bauman66b8ab22014-05-06 15:57:45 -04003019}
3020
3021void TParseContext::exitStructDeclaration()
3022{
Nicolas Capens0bac2852016-05-07 06:09:58 -04003023 --mStructNestingLevel;
John Bauman66b8ab22014-05-06 15:57:45 -04003024}
3025
Alexis Hetuad6b8752015-06-09 16:15:30 -04003026bool TParseContext::structNestingErrorCheck(const TSourceLoc &line, const TField &field)
3027{
3028 static const int kWebGLMaxStructNesting = 4;
3029
3030 if(field.type()->getBasicType() != EbtStruct)
3031 {
3032 return false;
3033 }
3034
3035 // We're already inside a structure definition at this point, so add
3036 // one to the field's struct nesting.
3037 if(1 + field.type()->getDeepestStructNesting() > kWebGLMaxStructNesting)
3038 {
3039 std::stringstream reasonStream;
3040 reasonStream << "Reference of struct type "
3041 << field.type()->getStruct()->name().c_str()
3042 << " exceeds maximum allowed nesting level of "
3043 << kWebGLMaxStructNesting;
3044 std::string reason = reasonStream.str();
3045 error(line, reason.c_str(), field.name().c_str(), "");
3046 return true;
3047 }
3048
3049 return false;
3050}
3051
3052TIntermTyped *TParseContext::createUnaryMath(TOperator op, TIntermTyped *child, const TSourceLoc &loc, const TType *funcReturnType)
3053{
3054 if(child == nullptr)
3055 {
3056 return nullptr;
3057 }
3058
3059 switch(op)
3060 {
3061 case EOpLogicalNot:
3062 if(child->getBasicType() != EbtBool ||
3063 child->isMatrix() ||
3064 child->isArray() ||
3065 child->isVector())
3066 {
3067 return nullptr;
3068 }
3069 break;
3070 case EOpBitwiseNot:
3071 if((child->getBasicType() != EbtInt && child->getBasicType() != EbtUInt) ||
3072 child->isMatrix() ||
3073 child->isArray())
3074 {
3075 return nullptr;
3076 }
3077 break;
3078 case EOpPostIncrement:
3079 case EOpPreIncrement:
3080 case EOpPostDecrement:
3081 case EOpPreDecrement:
3082 case EOpNegative:
3083 if(child->getBasicType() == EbtStruct ||
3084 child->getBasicType() == EbtBool ||
3085 child->isArray())
3086 {
3087 return nullptr;
3088 }
3089 // Operators for built-ins are already type checked against their prototype.
3090 default:
3091 break;
3092 }
3093
Nicolas Capensd3d9b9c2016-04-10 01:53:59 -04003094 return intermediate.addUnaryMath(op, child, loc, funcReturnType);
Alexis Hetuad6b8752015-06-09 16:15:30 -04003095}
3096
3097TIntermTyped *TParseContext::addUnaryMath(TOperator op, TIntermTyped *child, const TSourceLoc &loc)
3098{
3099 TIntermTyped *node = createUnaryMath(op, child, loc, nullptr);
3100 if(node == nullptr)
3101 {
3102 unaryOpError(loc, getOperatorString(op), child->getCompleteString());
3103 recover();
3104 return child;
3105 }
3106 return node;
3107}
3108
3109TIntermTyped *TParseContext::addUnaryMathLValue(TOperator op, TIntermTyped *child, const TSourceLoc &loc)
3110{
3111 if(lValueErrorCheck(loc, getOperatorString(op), child))
3112 recover();
3113 return addUnaryMath(op, child, loc);
3114}
3115
3116bool TParseContext::binaryOpCommonCheck(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc)
3117{
3118 if(left->isArray() || right->isArray())
3119 {
Alexis Hetu0a655842015-06-22 16:52:11 -04003120 if(mShaderVersion < 300)
Alexis Hetuad6b8752015-06-09 16:15:30 -04003121 {
3122 error(loc, "Invalid operation for arrays", getOperatorString(op));
3123 return false;
3124 }
3125
3126 if(left->isArray() != right->isArray())
3127 {
3128 error(loc, "array / non-array mismatch", getOperatorString(op));
3129 return false;
3130 }
3131
3132 switch(op)
3133 {
3134 case EOpEqual:
3135 case EOpNotEqual:
3136 case EOpAssign:
3137 case EOpInitialize:
3138 break;
3139 default:
3140 error(loc, "Invalid operation for arrays", getOperatorString(op));
3141 return false;
3142 }
3143 // At this point, size of implicitly sized arrays should be resolved.
3144 if(left->getArraySize() != right->getArraySize())
3145 {
3146 error(loc, "array size mismatch", getOperatorString(op));
3147 return false;
3148 }
3149 }
3150
3151 // Check ops which require integer / ivec parameters
3152 bool isBitShift = false;
3153 switch(op)
3154 {
3155 case EOpBitShiftLeft:
3156 case EOpBitShiftRight:
3157 case EOpBitShiftLeftAssign:
3158 case EOpBitShiftRightAssign:
3159 // Unsigned can be bit-shifted by signed and vice versa, but we need to
3160 // check that the basic type is an integer type.
3161 isBitShift = true;
3162 if(!IsInteger(left->getBasicType()) || !IsInteger(right->getBasicType()))
3163 {
3164 return false;
3165 }
3166 break;
3167 case EOpBitwiseAnd:
3168 case EOpBitwiseXor:
3169 case EOpBitwiseOr:
3170 case EOpBitwiseAndAssign:
3171 case EOpBitwiseXorAssign:
3172 case EOpBitwiseOrAssign:
3173 // It is enough to check the type of only one operand, since later it
3174 // is checked that the operand types match.
3175 if(!IsInteger(left->getBasicType()))
3176 {
3177 return false;
3178 }
3179 break;
3180 default:
3181 break;
3182 }
3183
3184 // GLSL ES 1.00 and 3.00 do not support implicit type casting.
3185 // So the basic type should usually match.
3186 if(!isBitShift && left->getBasicType() != right->getBasicType())
3187 {
3188 return false;
3189 }
3190
3191 // Check that type sizes match exactly on ops that require that.
3192 // Also check restrictions for structs that contain arrays or samplers.
3193 switch(op)
3194 {
3195 case EOpAssign:
3196 case EOpInitialize:
3197 case EOpEqual:
3198 case EOpNotEqual:
3199 // ESSL 1.00 sections 5.7, 5.8, 5.9
Alexis Hetu0a655842015-06-22 16:52:11 -04003200 if(mShaderVersion < 300 && left->getType().isStructureContainingArrays())
Alexis Hetuad6b8752015-06-09 16:15:30 -04003201 {
3202 error(loc, "undefined operation for structs containing arrays", getOperatorString(op));
3203 return false;
3204 }
3205 // Samplers as l-values are disallowed also in ESSL 3.00, see section 4.1.7,
3206 // we interpret the spec so that this extends to structs containing samplers,
3207 // similarly to ESSL 1.00 spec.
Alexis Hetu0a655842015-06-22 16:52:11 -04003208 if((mShaderVersion < 300 || op == EOpAssign || op == EOpInitialize) &&
Alexis Hetuad6b8752015-06-09 16:15:30 -04003209 left->getType().isStructureContainingSamplers())
3210 {
3211 error(loc, "undefined operation for structs containing samplers", getOperatorString(op));
3212 return false;
3213 }
3214 case EOpLessThan:
3215 case EOpGreaterThan:
3216 case EOpLessThanEqual:
3217 case EOpGreaterThanEqual:
3218 if((left->getNominalSize() != right->getNominalSize()) ||
3219 (left->getSecondarySize() != right->getSecondarySize()))
3220 {
3221 return false;
3222 }
3223 default:
3224 break;
3225 }
3226
3227 return true;
3228}
3229
Alexis Hetu76a343a2015-06-04 17:21:22 -04003230TIntermSwitch *TParseContext::addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const TSourceLoc &loc)
3231{
3232 TBasicType switchType = init->getBasicType();
3233 if((switchType != EbtInt && switchType != EbtUInt) ||
3234 init->isMatrix() ||
3235 init->isArray() ||
3236 init->isVector())
3237 {
3238 error(init->getLine(), "init-expression in a switch statement must be a scalar integer", "switch");
3239 recover();
3240 return nullptr;
3241 }
3242
3243 if(statementList)
3244 {
3245 if(!ValidateSwitch::validate(switchType, this, statementList, loc))
3246 {
3247 recover();
3248 return nullptr;
3249 }
3250 }
3251
3252 TIntermSwitch *node = intermediate.addSwitch(init, statementList, loc);
3253 if(node == nullptr)
3254 {
3255 error(loc, "erroneous switch statement", "switch");
3256 recover();
3257 return nullptr;
3258 }
3259 return node;
3260}
3261
3262TIntermCase *TParseContext::addCase(TIntermTyped *condition, const TSourceLoc &loc)
3263{
Alexis Hetu0a655842015-06-22 16:52:11 -04003264 if(mSwitchNestingLevel == 0)
Alexis Hetu76a343a2015-06-04 17:21:22 -04003265 {
3266 error(loc, "case labels need to be inside switch statements", "case");
3267 recover();
3268 return nullptr;
3269 }
3270 if(condition == nullptr)
3271 {
3272 error(loc, "case label must have a condition", "case");
3273 recover();
3274 return nullptr;
3275 }
3276 if((condition->getBasicType() != EbtInt && condition->getBasicType() != EbtUInt) ||
3277 condition->isMatrix() ||
3278 condition->isArray() ||
3279 condition->isVector())
3280 {
3281 error(condition->getLine(), "case label must be a scalar integer", "case");
3282 recover();
3283 }
3284 TIntermConstantUnion *conditionConst = condition->getAsConstantUnion();
3285 if(conditionConst == nullptr)
3286 {
3287 error(condition->getLine(), "case label must be constant", "case");
3288 recover();
3289 }
3290 TIntermCase *node = intermediate.addCase(condition, loc);
3291 if(node == nullptr)
3292 {
3293 error(loc, "erroneous case statement", "case");
3294 recover();
3295 return nullptr;
3296 }
3297 return node;
3298}
3299
3300TIntermCase *TParseContext::addDefault(const TSourceLoc &loc)
3301{
Alexis Hetu0a655842015-06-22 16:52:11 -04003302 if(mSwitchNestingLevel == 0)
Alexis Hetu76a343a2015-06-04 17:21:22 -04003303 {
3304 error(loc, "default labels need to be inside switch statements", "default");
3305 recover();
3306 return nullptr;
3307 }
3308 TIntermCase *node = intermediate.addCase(nullptr, loc);
3309 if(node == nullptr)
3310 {
3311 error(loc, "erroneous default statement", "default");
3312 recover();
3313 return nullptr;
3314 }
3315 return node;
3316}
Alexis Hetue5246692015-06-18 12:34:52 -04003317TIntermTyped *TParseContext::createAssign(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc)
3318{
3319 if(binaryOpCommonCheck(op, left, right, loc))
3320 {
3321 return intermediate.addAssign(op, left, right, loc);
3322 }
3323 return nullptr;
3324}
3325
3326TIntermTyped *TParseContext::addAssign(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc)
3327{
3328 TIntermTyped *node = createAssign(op, left, right, loc);
3329 if(node == nullptr)
3330 {
3331 assignError(loc, "assign", left->getCompleteString(), right->getCompleteString());
3332 recover();
3333 return left;
3334 }
3335 return node;
3336}
Alexis Hetu76a343a2015-06-04 17:21:22 -04003337
Alexis Hetub4769582015-06-16 12:19:50 -04003338TIntermTyped *TParseContext::addBinaryMathInternal(TOperator op, TIntermTyped *left, TIntermTyped *right,
3339 const TSourceLoc &loc)
3340{
3341 if(!binaryOpCommonCheck(op, left, right, loc))
3342 return nullptr;
3343
3344 switch(op)
3345 {
3346 case EOpEqual:
3347 case EOpNotEqual:
3348 break;
3349 case EOpLessThan:
3350 case EOpGreaterThan:
3351 case EOpLessThanEqual:
3352 case EOpGreaterThanEqual:
3353 ASSERT(!left->isArray() && !right->isArray());
3354 if(left->isMatrix() || left->isVector() ||
3355 left->getBasicType() == EbtStruct)
3356 {
3357 return nullptr;
3358 }
3359 break;
3360 case EOpLogicalOr:
3361 case EOpLogicalXor:
3362 case EOpLogicalAnd:
3363 ASSERT(!left->isArray() && !right->isArray());
3364 if(left->getBasicType() != EbtBool ||
3365 left->isMatrix() || left->isVector())
3366 {
3367 return nullptr;
3368 }
3369 break;
3370 case EOpAdd:
3371 case EOpSub:
3372 case EOpDiv:
3373 case EOpMul:
3374 ASSERT(!left->isArray() && !right->isArray());
3375 if(left->getBasicType() == EbtStruct || left->getBasicType() == EbtBool)
3376 {
3377 return nullptr;
3378 }
3379 break;
3380 case EOpIMod:
3381 ASSERT(!left->isArray() && !right->isArray());
3382 // Note that this is only for the % operator, not for mod()
3383 if(left->getBasicType() == EbtStruct || left->getBasicType() == EbtBool || left->getBasicType() == EbtFloat)
3384 {
3385 return nullptr;
3386 }
3387 break;
3388 // Note that for bitwise ops, type checking is done in promote() to
3389 // share code between ops and compound assignment
3390 default:
3391 break;
3392 }
3393
3394 return intermediate.addBinaryMath(op, left, right, loc);
3395}
3396
3397TIntermTyped *TParseContext::addBinaryMath(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc)
3398{
3399 TIntermTyped *node = addBinaryMathInternal(op, left, right, loc);
3400 if(node == 0)
3401 {
3402 binaryOpError(loc, getOperatorString(op), left->getCompleteString(), right->getCompleteString());
3403 recover();
3404 return left;
3405 }
3406 return node;
3407}
3408
3409TIntermTyped *TParseContext::addBinaryMathBooleanResult(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc)
3410{
3411 TIntermTyped *node = addBinaryMathInternal(op, left, right, loc);
3412 if(node == 0)
3413 {
3414 binaryOpError(loc, getOperatorString(op), left->getCompleteString(), right->getCompleteString());
3415 recover();
3416 ConstantUnion *unionArray = new ConstantUnion[1];
3417 unionArray->setBConst(false);
3418 return intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), loc);
3419 }
3420 return node;
3421}
3422
Alexis Hetu76a343a2015-06-04 17:21:22 -04003423TIntermBranch *TParseContext::addBranch(TOperator op, const TSourceLoc &loc)
3424{
3425 switch(op)
3426 {
3427 case EOpContinue:
Alexis Hetu0a655842015-06-22 16:52:11 -04003428 if(mLoopNestingLevel <= 0)
Alexis Hetu76a343a2015-06-04 17:21:22 -04003429 {
3430 error(loc, "continue statement only allowed in loops", "");
3431 recover();
3432 }
3433 break;
3434 case EOpBreak:
Alexis Hetu0a655842015-06-22 16:52:11 -04003435 if(mLoopNestingLevel <= 0 && mSwitchNestingLevel <= 0)
Alexis Hetu76a343a2015-06-04 17:21:22 -04003436 {
3437 error(loc, "break statement only allowed in loops and switch statements", "");
3438 recover();
3439 }
3440 break;
3441 case EOpReturn:
Alexis Hetu0a655842015-06-22 16:52:11 -04003442 if(mCurrentFunctionType->getBasicType() != EbtVoid)
Alexis Hetu76a343a2015-06-04 17:21:22 -04003443 {
3444 error(loc, "non-void function must return a value", "return");
3445 recover();
3446 }
3447 break;
3448 default:
3449 // No checks for discard
3450 break;
3451 }
3452 return intermediate.addBranch(op, loc);
3453}
3454
3455TIntermBranch *TParseContext::addBranch(TOperator op, TIntermTyped *returnValue, const TSourceLoc &loc)
3456{
3457 ASSERT(op == EOpReturn);
Alexis Hetu0a655842015-06-22 16:52:11 -04003458 mFunctionReturnsValue = true;
3459 if(mCurrentFunctionType->getBasicType() == EbtVoid)
Alexis Hetu76a343a2015-06-04 17:21:22 -04003460 {
3461 error(loc, "void function cannot return a value", "return");
3462 recover();
3463 }
Alexis Hetu0a655842015-06-22 16:52:11 -04003464 else if(*mCurrentFunctionType != returnValue->getType())
Alexis Hetu76a343a2015-06-04 17:21:22 -04003465 {
3466 error(loc, "function return is not matching type:", "return");
3467 recover();
3468 }
3469 return intermediate.addBranch(op, returnValue, loc);
3470}
3471
Alexis Hetub3ff42c2015-07-03 18:19:57 -04003472TIntermTyped *TParseContext::addFunctionCallOrMethod(TFunction *fnCall, TIntermNode *paramNode, TIntermNode *thisNode, const TSourceLoc &loc, bool *fatalError)
3473{
3474 *fatalError = false;
3475 TOperator op = fnCall->getBuiltInOp();
3476 TIntermTyped *callNode = nullptr;
3477
3478 if(thisNode != nullptr)
3479 {
3480 ConstantUnion *unionArray = new ConstantUnion[1];
3481 int arraySize = 0;
3482 TIntermTyped *typedThis = thisNode->getAsTyped();
3483 if(fnCall->getName() != "length")
3484 {
3485 error(loc, "invalid method", fnCall->getName().c_str());
3486 recover();
3487 }
3488 else if(paramNode != nullptr)
3489 {
3490 error(loc, "method takes no parameters", "length");
3491 recover();
3492 }
3493 else if(typedThis == nullptr || !typedThis->isArray())
3494 {
3495 error(loc, "length can only be called on arrays", "length");
3496 recover();
3497 }
3498 else
3499 {
3500 arraySize = typedThis->getArraySize();
3501 if(typedThis->getAsSymbolNode() == nullptr)
3502 {
3503 // This code path can be hit with expressions like these:
3504 // (a = b).length()
3505 // (func()).length()
3506 // (int[3](0, 1, 2)).length()
3507 // ESSL 3.00 section 5.9 defines expressions so that this is not actually a valid expression.
3508 // It allows "An array name with the length method applied" in contrast to GLSL 4.4 spec section 5.9
3509 // which allows "An array, vector or matrix expression with the length method applied".
3510 error(loc, "length can only be called on array names, not on array expressions", "length");
3511 recover();
3512 }
3513 }
3514 unionArray->setIConst(arraySize);
3515 callNode = intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConstExpr), loc);
3516 }
3517 else if(op != EOpNull)
3518 {
3519 //
3520 // Then this should be a constructor.
3521 // Don't go through the symbol table for constructors.
3522 // Their parameters will be verified algorithmically.
3523 //
3524 TType type(EbtVoid, EbpUndefined); // use this to get the type back
3525 if(!constructorErrorCheck(loc, paramNode, *fnCall, op, &type))
3526 {
3527 //
3528 // It's a constructor, of type 'type'.
3529 //
3530 callNode = addConstructor(paramNode, &type, op, fnCall, loc);
3531 }
3532
3533 if(callNode == nullptr)
3534 {
3535 recover();
3536 callNode = intermediate.setAggregateOperator(nullptr, op, loc);
3537 }
Alexis Hetub3ff42c2015-07-03 18:19:57 -04003538 }
3539 else
3540 {
3541 //
3542 // Not a constructor. Find it in the symbol table.
3543 //
3544 const TFunction *fnCandidate;
3545 bool builtIn;
3546 fnCandidate = findFunction(loc, fnCall, &builtIn);
3547 if(fnCandidate)
3548 {
3549 //
3550 // A declared function.
3551 //
3552 if(builtIn && !fnCandidate->getExtension().empty() &&
3553 extensionErrorCheck(loc, fnCandidate->getExtension()))
3554 {
3555 recover();
3556 }
3557 op = fnCandidate->getBuiltInOp();
3558 if(builtIn && op != EOpNull)
3559 {
3560 //
3561 // A function call mapped to a built-in operation.
3562 //
3563 if(fnCandidate->getParamCount() == 1)
3564 {
3565 //
3566 // Treat it like a built-in unary operator.
3567 //
3568 callNode = createUnaryMath(op, paramNode->getAsTyped(), loc, &fnCandidate->getReturnType());
3569 if(callNode == nullptr)
3570 {
3571 std::stringstream extraInfoStream;
3572 extraInfoStream << "built in unary operator function. Type: "
3573 << static_cast<TIntermTyped*>(paramNode)->getCompleteString();
3574 std::string extraInfo = extraInfoStream.str();
3575 error(paramNode->getLine(), " wrong operand type", "Internal Error", extraInfo.c_str());
3576 *fatalError = true;
3577 return nullptr;
3578 }
3579 }
3580 else
3581 {
3582 TIntermAggregate *aggregate = intermediate.setAggregateOperator(paramNode, op, loc);
3583 aggregate->setType(fnCandidate->getReturnType());
3584
3585 // Some built-in functions have out parameters too.
3586 functionCallLValueErrorCheck(fnCandidate, aggregate);
3587
3588 callNode = aggregate;
Nicolas Capens91dfb972016-04-09 23:45:12 -04003589
3590 if(fnCandidate->getParamCount() == 2)
3591 {
3592 TIntermSequence &parameters = paramNode->getAsAggregate()->getSequence();
3593 TIntermTyped *left = parameters[0]->getAsTyped();
3594 TIntermTyped *right = parameters[1]->getAsTyped();
3595
3596 TIntermConstantUnion *leftTempConstant = left->getAsConstantUnion();
3597 TIntermConstantUnion *rightTempConstant = right->getAsConstantUnion();
3598 if (leftTempConstant && rightTempConstant)
3599 {
3600 TIntermTyped *typedReturnNode = leftTempConstant->fold(op, rightTempConstant, infoSink());
3601
3602 if(typedReturnNode)
3603 {
3604 callNode = typedReturnNode;
3605 }
3606 }
3607 }
Alexis Hetub3ff42c2015-07-03 18:19:57 -04003608 }
3609 }
3610 else
3611 {
3612 // This is a real function call
3613
3614 TIntermAggregate *aggregate = intermediate.setAggregateOperator(paramNode, EOpFunctionCall, loc);
3615 aggregate->setType(fnCandidate->getReturnType());
3616
3617 // this is how we know whether the given function is a builtIn function or a user defined function
3618 // if builtIn == false, it's a userDefined -> could be an overloaded builtIn function also
3619 // if builtIn == true, it's definitely a builtIn function with EOpNull
3620 if(!builtIn)
3621 aggregate->setUserDefined();
3622 aggregate->setName(fnCandidate->getMangledName());
3623
3624 callNode = aggregate;
3625
3626 functionCallLValueErrorCheck(fnCandidate, aggregate);
3627 }
Alexis Hetub3ff42c2015-07-03 18:19:57 -04003628 }
3629 else
3630 {
3631 // error message was put out by findFunction()
3632 // Put on a dummy node for error recovery
3633 ConstantUnion *unionArray = new ConstantUnion[1];
3634 unionArray->setFConst(0.0f);
3635 callNode = intermediate.addConstantUnion(unionArray, TType(EbtFloat, EbpUndefined, EvqConstExpr), loc);
3636 recover();
3637 }
3638 }
3639 delete fnCall;
3640 return callNode;
3641}
3642
Alexis Hetueee212e2015-07-07 17:13:30 -04003643TIntermTyped *TParseContext::addTernarySelection(TIntermTyped *cond, TIntermTyped *trueBlock, TIntermTyped *falseBlock, const TSourceLoc &loc)
3644{
3645 if(boolErrorCheck(loc, cond))
3646 recover();
3647
3648 if(trueBlock->getType() != falseBlock->getType())
3649 {
3650 binaryOpError(loc, ":", trueBlock->getCompleteString(), falseBlock->getCompleteString());
3651 recover();
3652 return falseBlock;
3653 }
3654 // ESSL1 sections 5.2 and 5.7:
3655 // ESSL3 section 5.7:
3656 // Ternary operator is not among the operators allowed for structures/arrays.
3657 if(trueBlock->isArray() || trueBlock->getBasicType() == EbtStruct)
3658 {
3659 error(loc, "ternary operator is not allowed for structures or arrays", ":");
3660 recover();
3661 return falseBlock;
3662 }
3663 return intermediate.addSelection(cond, trueBlock, falseBlock, loc);
3664}
3665
John Bauman66b8ab22014-05-06 15:57:45 -04003666//
3667// Parse an array of strings using yyparse.
3668//
3669// Returns 0 for success.
3670//
3671int PaParseStrings(int count, const char* const string[], const int length[],
Nicolas Capens0bac2852016-05-07 06:09:58 -04003672 TParseContext* context) {
3673 if ((count == 0) || !string)
3674 return 1;
John Bauman66b8ab22014-05-06 15:57:45 -04003675
Nicolas Capens0bac2852016-05-07 06:09:58 -04003676 if (glslang_initialize(context))
3677 return 1;
John Bauman66b8ab22014-05-06 15:57:45 -04003678
Nicolas Capens0bac2852016-05-07 06:09:58 -04003679 int error = glslang_scan(count, string, length, context);
3680 if (!error)
3681 error = glslang_parse(context);
John Bauman66b8ab22014-05-06 15:57:45 -04003682
Nicolas Capens0bac2852016-05-07 06:09:58 -04003683 glslang_finalize(context);
John Bauman66b8ab22014-05-06 15:57:45 -04003684
Nicolas Capens0bac2852016-05-07 06:09:58 -04003685 return (error == 0) && (context->numErrors() == 0) ? 0 : 1;
John Bauman66b8ab22014-05-06 15:57:45 -04003686}
3687
3688
3689