blob: a15fb0f88af8b7697576c56783fad47dedd42b78 [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
Alexis Hetub34591a2016-06-28 15:48:35 -04002156 int objSize = static_cast<int>(node->getType().getObjectSize());
Nicolas Capens0bac2852016-05-07 06:09:58 -04002157 for (int i = 0; i < fields.num; i++) {
Alexis Hetub34591a2016-06-28 15:48:35 -04002158 if (fields.offsets[i] >= objSize) {
Nicolas Capens0bac2852016-05-07 06:09:58 -04002159 std::stringstream extraInfoStream;
2160 extraInfoStream << "vector field selection out of range '" << fields.offsets[i] << "'";
2161 std::string extraInfo = extraInfoStream.str();
2162 error(line, "", "[", extraInfo.c_str());
2163 recover();
2164 fields.offsets[i] = 0;
2165 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002166
Nicolas Capens0bac2852016-05-07 06:09:58 -04002167 constArray[i] = unionArray[fields.offsets[i]];
John Bauman66b8ab22014-05-06 15:57:45 -04002168
Nicolas Capens0bac2852016-05-07 06:09:58 -04002169 }
2170 typedNode = intermediate.addConstantUnion(constArray, node->getType(), line);
2171 return typedNode;
John Bauman66b8ab22014-05-06 15:57:45 -04002172}
2173
2174//
2175// This function returns the column being accessed from a constant matrix. The values are retrieved from
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002176// the symbol table and parse-tree is built for a vector (each column of a matrix is a vector). The input
2177// 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 -04002178// constant matrix or it could be the tree representation of the constant matrix (s.m1[0] where s is a constant structure)
2179//
Alexis Hetufe1269e2015-06-16 12:43:32 -04002180TIntermTyped* TParseContext::addConstMatrixNode(int index, TIntermTyped* node, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -04002181{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002182 TIntermTyped* typedNode;
2183 TIntermConstantUnion* tempConstantNode = node->getAsConstantUnion();
John Bauman66b8ab22014-05-06 15:57:45 -04002184
Nicolas Capens0bac2852016-05-07 06:09:58 -04002185 if (index >= node->getType().getNominalSize()) {
2186 std::stringstream extraInfoStream;
2187 extraInfoStream << "matrix field selection out of range '" << index << "'";
2188 std::string extraInfo = extraInfoStream.str();
2189 error(line, "", "[", extraInfo.c_str());
2190 recover();
2191 index = 0;
2192 }
John Bauman66b8ab22014-05-06 15:57:45 -04002193
Nicolas Capens0bac2852016-05-07 06:09:58 -04002194 if (tempConstantNode) {
2195 ConstantUnion* unionArray = tempConstantNode->getUnionArrayPointer();
2196 int size = tempConstantNode->getType().getNominalSize();
2197 typedNode = intermediate.addConstantUnion(&unionArray[size*index], tempConstantNode->getType(), line);
2198 } else {
2199 error(line, "Cannot offset into the matrix", "Error");
2200 recover();
John Bauman66b8ab22014-05-06 15:57:45 -04002201
Nicolas Capens0bac2852016-05-07 06:09:58 -04002202 return 0;
2203 }
John Bauman66b8ab22014-05-06 15:57:45 -04002204
Nicolas Capens0bac2852016-05-07 06:09:58 -04002205 return typedNode;
John Bauman66b8ab22014-05-06 15:57:45 -04002206}
2207
2208
2209//
2210// 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 -04002211// the symbol table and parse-tree is built for the type of the element. The input
2212// 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 -04002213// constant array or it could be the tree representation of the constant array (s.a1[0] where s is a constant structure)
2214//
Alexis Hetufe1269e2015-06-16 12:43:32 -04002215TIntermTyped* TParseContext::addConstArrayNode(int index, TIntermTyped* node, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -04002216{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002217 TIntermTyped* typedNode;
2218 TIntermConstantUnion* tempConstantNode = node->getAsConstantUnion();
2219 TType arrayElementType = node->getType();
2220 arrayElementType.clearArrayness();
John Bauman66b8ab22014-05-06 15:57:45 -04002221
Nicolas Capens0bac2852016-05-07 06:09:58 -04002222 if (index >= node->getType().getArraySize()) {
2223 std::stringstream extraInfoStream;
2224 extraInfoStream << "array field selection out of range '" << index << "'";
2225 std::string extraInfo = extraInfoStream.str();
2226 error(line, "", "[", extraInfo.c_str());
2227 recover();
2228 index = 0;
2229 }
John Bauman66b8ab22014-05-06 15:57:45 -04002230
Nicolas Capens0bac2852016-05-07 06:09:58 -04002231 size_t arrayElementSize = arrayElementType.getObjectSize();
John Bauman66b8ab22014-05-06 15:57:45 -04002232
Nicolas Capens0bac2852016-05-07 06:09:58 -04002233 if (tempConstantNode) {
2234 ConstantUnion* unionArray = tempConstantNode->getUnionArrayPointer();
2235 typedNode = intermediate.addConstantUnion(&unionArray[arrayElementSize * index], tempConstantNode->getType(), line);
2236 } else {
2237 error(line, "Cannot offset into the array", "Error");
2238 recover();
John Bauman66b8ab22014-05-06 15:57:45 -04002239
Nicolas Capens0bac2852016-05-07 06:09:58 -04002240 return 0;
2241 }
John Bauman66b8ab22014-05-06 15:57:45 -04002242
Nicolas Capens0bac2852016-05-07 06:09:58 -04002243 return typedNode;
John Bauman66b8ab22014-05-06 15:57:45 -04002244}
2245
2246
2247//
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002248// This function returns the value of a particular field inside a constant structure from the symbol table.
John Bauman66b8ab22014-05-06 15:57:45 -04002249// If there is an embedded/nested struct, it appropriately calls addConstStructNested or addConstStructFromAggr
2250// function and returns the parse-tree with the values of the embedded/nested struct.
2251//
Alexis Hetufe1269e2015-06-16 12:43:32 -04002252TIntermTyped* TParseContext::addConstStruct(const TString& identifier, TIntermTyped* node, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -04002253{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002254 const TFieldList &fields = node->getType().getStruct()->fields();
2255 TIntermTyped *typedNode;
2256 size_t instanceSize = 0;
2257 TIntermConstantUnion *tempConstantNode = node->getAsConstantUnion();
John Bauman66b8ab22014-05-06 15:57:45 -04002258
Nicolas Capens0bac2852016-05-07 06:09:58 -04002259 for(size_t index = 0; index < fields.size(); ++index) {
2260 if (fields[index]->name() == identifier) {
2261 break;
2262 } else {
2263 instanceSize += fields[index]->type()->getObjectSize();
2264 }
2265 }
John Bauman66b8ab22014-05-06 15:57:45 -04002266
Nicolas Capens0bac2852016-05-07 06:09:58 -04002267 if (tempConstantNode) {
2268 ConstantUnion* constArray = tempConstantNode->getUnionArrayPointer();
John Bauman66b8ab22014-05-06 15:57:45 -04002269
Nicolas Capens0bac2852016-05-07 06:09:58 -04002270 typedNode = intermediate.addConstantUnion(constArray+instanceSize, tempConstantNode->getType(), line); // type will be changed in the calling function
2271 } else {
2272 error(line, "Cannot offset into the structure", "Error");
2273 recover();
John Bauman66b8ab22014-05-06 15:57:45 -04002274
Nicolas Capens0bac2852016-05-07 06:09:58 -04002275 return 0;
2276 }
John Bauman66b8ab22014-05-06 15:57:45 -04002277
Nicolas Capens0bac2852016-05-07 06:09:58 -04002278 return typedNode;
John Bauman66b8ab22014-05-06 15:57:45 -04002279}
2280
Alexis Hetuad6b8752015-06-09 16:15:30 -04002281//
Alexis Hetua35d8232015-06-11 17:11:06 -04002282// Interface/uniform blocks
2283//
2284TIntermAggregate* TParseContext::addInterfaceBlock(const TPublicType& typeQualifier, const TSourceLoc& nameLine, const TString& blockName, TFieldList* fieldList,
Nicolas Capens0bac2852016-05-07 06:09:58 -04002285 const TString* instanceName, const TSourceLoc& instanceLine, TIntermTyped* arrayIndex, const TSourceLoc& arrayIndexLine)
Alexis Hetua35d8232015-06-11 17:11:06 -04002286{
2287 if(reservedErrorCheck(nameLine, blockName))
2288 recover();
2289
2290 if(typeQualifier.qualifier != EvqUniform)
2291 {
2292 error(typeQualifier.line, "invalid qualifier:", getQualifierString(typeQualifier.qualifier), "interface blocks must be uniform");
2293 recover();
2294 }
2295
2296 TLayoutQualifier blockLayoutQualifier = typeQualifier.layoutQualifier;
2297 if(layoutLocationErrorCheck(typeQualifier.line, blockLayoutQualifier))
2298 {
2299 recover();
2300 }
2301
2302 if(blockLayoutQualifier.matrixPacking == EmpUnspecified)
2303 {
Alexis Hetu0a655842015-06-22 16:52:11 -04002304 blockLayoutQualifier.matrixPacking = mDefaultMatrixPacking;
Alexis Hetua35d8232015-06-11 17:11:06 -04002305 }
2306
2307 if(blockLayoutQualifier.blockStorage == EbsUnspecified)
2308 {
Alexis Hetu0a655842015-06-22 16:52:11 -04002309 blockLayoutQualifier.blockStorage = mDefaultBlockStorage;
Alexis Hetua35d8232015-06-11 17:11:06 -04002310 }
2311
2312 TSymbol* blockNameSymbol = new TSymbol(&blockName);
2313 if(!symbolTable.declare(*blockNameSymbol)) {
2314 error(nameLine, "redefinition", blockName.c_str(), "interface block name");
2315 recover();
2316 }
2317
2318 // check for sampler types and apply layout qualifiers
2319 for(size_t memberIndex = 0; memberIndex < fieldList->size(); ++memberIndex) {
2320 TField* field = (*fieldList)[memberIndex];
2321 TType* fieldType = field->type();
2322 if(IsSampler(fieldType->getBasicType())) {
2323 error(field->line(), "unsupported type", fieldType->getBasicString(), "sampler types are not allowed in interface blocks");
2324 recover();
2325 }
2326
2327 const TQualifier qualifier = fieldType->getQualifier();
2328 switch(qualifier)
2329 {
2330 case EvqGlobal:
2331 case EvqUniform:
2332 break;
2333 default:
2334 error(field->line(), "invalid qualifier on interface block member", getQualifierString(qualifier));
2335 recover();
2336 break;
2337 }
2338
2339 // check layout qualifiers
2340 TLayoutQualifier fieldLayoutQualifier = fieldType->getLayoutQualifier();
2341 if(layoutLocationErrorCheck(field->line(), fieldLayoutQualifier))
2342 {
2343 recover();
2344 }
2345
2346 if(fieldLayoutQualifier.blockStorage != EbsUnspecified)
2347 {
2348 error(field->line(), "invalid layout qualifier:", getBlockStorageString(fieldLayoutQualifier.blockStorage), "cannot be used here");
2349 recover();
2350 }
2351
2352 if(fieldLayoutQualifier.matrixPacking == EmpUnspecified)
2353 {
2354 fieldLayoutQualifier.matrixPacking = blockLayoutQualifier.matrixPacking;
2355 }
2356 else if(!fieldType->isMatrix())
2357 {
2358 error(field->line(), "invalid layout qualifier:", getMatrixPackingString(fieldLayoutQualifier.matrixPacking), "can only be used on matrix types");
2359 recover();
2360 }
2361
2362 fieldType->setLayoutQualifier(fieldLayoutQualifier);
2363 }
2364
2365 // add array index
2366 int arraySize = 0;
Nicolas Capens0bac2852016-05-07 06:09:58 -04002367 if(arrayIndex)
Alexis Hetua35d8232015-06-11 17:11:06 -04002368 {
2369 if(arraySizeErrorCheck(arrayIndexLine, arrayIndex, arraySize))
2370 recover();
2371 }
2372
2373 TInterfaceBlock* interfaceBlock = new TInterfaceBlock(&blockName, fieldList, instanceName, arraySize, blockLayoutQualifier);
2374 TType interfaceBlockType(interfaceBlock, typeQualifier.qualifier, blockLayoutQualifier, arraySize);
2375
2376 TString symbolName = "";
2377 int symbolId = 0;
2378
2379 if(!instanceName)
2380 {
2381 // define symbols for the members of the interface block
2382 for(size_t memberIndex = 0; memberIndex < fieldList->size(); ++memberIndex)
2383 {
2384 TField* field = (*fieldList)[memberIndex];
2385 TType* fieldType = field->type();
2386
2387 // set parent pointer of the field variable
2388 fieldType->setInterfaceBlock(interfaceBlock);
2389
2390 TVariable* fieldVariable = new TVariable(&field->name(), *fieldType);
2391 fieldVariable->setQualifier(typeQualifier.qualifier);
2392
2393 if(!symbolTable.declare(*fieldVariable)) {
2394 error(field->line(), "redefinition", field->name().c_str(), "interface block member name");
2395 recover();
2396 }
2397 }
2398 }
2399 else
2400 {
2401 // add a symbol for this interface block
2402 TVariable* instanceTypeDef = new TVariable(instanceName, interfaceBlockType, false);
2403 instanceTypeDef->setQualifier(typeQualifier.qualifier);
2404
2405 if(!symbolTable.declare(*instanceTypeDef)) {
2406 error(instanceLine, "redefinition", instanceName->c_str(), "interface block instance name");
2407 recover();
2408 }
2409
2410 symbolId = instanceTypeDef->getUniqueId();
2411 symbolName = instanceTypeDef->getName();
2412 }
2413
2414 TIntermAggregate *aggregate = intermediate.makeAggregate(intermediate.addSymbol(symbolId, symbolName, interfaceBlockType, typeQualifier.line), nameLine);
2415 aggregate->setOp(EOpDeclaration);
2416
2417 exitStructDeclaration();
2418 return aggregate;
2419}
2420
2421//
Alexis Hetuad6b8752015-06-09 16:15:30 -04002422// Parse an array index expression
2423//
2424TIntermTyped *TParseContext::addIndexExpression(TIntermTyped *baseExpression, const TSourceLoc &location, TIntermTyped *indexExpression)
2425{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002426 TIntermTyped *indexedExpression = nullptr;
Alexis Hetuad6b8752015-06-09 16:15:30 -04002427
2428 if(!baseExpression->isArray() && !baseExpression->isMatrix() && !baseExpression->isVector())
2429 {
2430 if(baseExpression->getAsSymbolNode())
2431 {
2432 error(location, " left of '[' is not of type array, matrix, or vector ",
2433 baseExpression->getAsSymbolNode()->getSymbol().c_str());
2434 }
2435 else
2436 {
2437 error(location, " left of '[' is not of type array, matrix, or vector ", "expression");
2438 }
2439 recover();
2440 }
2441
2442 TIntermConstantUnion *indexConstantUnion = indexExpression->getAsConstantUnion();
2443
2444 if(indexExpression->getQualifier() == EvqConstExpr && indexConstantUnion)
2445 {
2446 int index = indexConstantUnion->getIConst(0);
2447 if(index < 0)
2448 {
2449 std::stringstream infoStream;
2450 infoStream << index;
2451 std::string info = infoStream.str();
2452 error(location, "negative index", info.c_str());
2453 recover();
2454 index = 0;
2455 }
2456 if(baseExpression->getType().getQualifier() == EvqConstExpr)
2457 {
2458 if(baseExpression->isArray())
2459 {
2460 // constant folding for arrays
2461 indexedExpression = addConstArrayNode(index, baseExpression, location);
2462 }
2463 else if(baseExpression->isVector())
2464 {
2465 // constant folding for vectors
2466 TVectorFields fields;
2467 fields.num = 1;
2468 fields.offsets[0] = index; // need to do it this way because v.xy sends fields integer array
2469 indexedExpression = addConstVectorNode(fields, baseExpression, location);
2470 }
2471 else if(baseExpression->isMatrix())
2472 {
2473 // constant folding for matrices
2474 indexedExpression = addConstMatrixNode(index, baseExpression, location);
2475 }
2476 }
2477 else
2478 {
2479 int safeIndex = -1;
2480
2481 if(baseExpression->isArray())
2482 {
2483 if(index >= baseExpression->getType().getArraySize())
2484 {
2485 std::stringstream extraInfoStream;
2486 extraInfoStream << "array index out of range '" << index << "'";
2487 std::string extraInfo = extraInfoStream.str();
2488 error(location, "", "[", extraInfo.c_str());
2489 recover();
2490 safeIndex = baseExpression->getType().getArraySize() - 1;
2491 }
2492 }
2493 else if((baseExpression->isVector() || baseExpression->isMatrix()) &&
2494 baseExpression->getType().getNominalSize() <= index)
2495 {
2496 std::stringstream extraInfoStream;
2497 extraInfoStream << "field selection out of range '" << index << "'";
2498 std::string extraInfo = extraInfoStream.str();
2499 error(location, "", "[", extraInfo.c_str());
2500 recover();
2501 safeIndex = baseExpression->getType().getNominalSize() - 1;
2502 }
2503
2504 // Don't modify the data of the previous constant union, because it can point
2505 // to builtins, like gl_MaxDrawBuffers. Instead use a new sanitized object.
2506 if(safeIndex != -1)
2507 {
2508 ConstantUnion *safeConstantUnion = new ConstantUnion();
2509 safeConstantUnion->setIConst(safeIndex);
2510 indexConstantUnion->replaceConstantUnion(safeConstantUnion);
2511 }
2512
2513 indexedExpression = intermediate.addIndex(EOpIndexDirect, baseExpression, indexExpression, location);
2514 }
2515 }
2516 else
2517 {
2518 if(baseExpression->isInterfaceBlock())
2519 {
2520 error(location, "",
2521 "[", "array indexes for interface blocks arrays must be constant integral expressions");
2522 recover();
2523 }
Alexis Hetuad6b8752015-06-09 16:15:30 -04002524 else if(baseExpression->getQualifier() == EvqFragmentOut)
2525 {
2526 error(location, "", "[", "array indexes for fragment outputs must be constant integral expressions");
2527 recover();
2528 }
Alexis Hetuad6b8752015-06-09 16:15:30 -04002529
2530 indexedExpression = intermediate.addIndex(EOpIndexIndirect, baseExpression, indexExpression, location);
2531 }
2532
2533 if(indexedExpression == 0)
2534 {
2535 ConstantUnion *unionArray = new ConstantUnion[1];
2536 unionArray->setFConst(0.0f);
2537 indexedExpression = intermediate.addConstantUnion(unionArray, TType(EbtFloat, EbpHigh, EvqConstExpr), location);
2538 }
2539 else if(baseExpression->isArray())
2540 {
2541 const TType &baseType = baseExpression->getType();
2542 if(baseType.getStruct())
2543 {
2544 TType copyOfType(baseType.getStruct());
2545 indexedExpression->setType(copyOfType);
2546 }
2547 else if(baseType.isInterfaceBlock())
2548 {
Alexis Hetu6c7ac3c2016-01-12 16:13:37 -05002549 TType copyOfType(baseType.getInterfaceBlock(), EvqTemporary, baseType.getLayoutQualifier(), 0);
Alexis Hetuad6b8752015-06-09 16:15:30 -04002550 indexedExpression->setType(copyOfType);
2551 }
2552 else
2553 {
2554 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision(),
2555 EvqTemporary, static_cast<unsigned char>(baseExpression->getNominalSize()),
2556 static_cast<unsigned char>(baseExpression->getSecondarySize())));
2557 }
2558
2559 if(baseExpression->getType().getQualifier() == EvqConstExpr)
2560 {
2561 indexedExpression->getTypePointer()->setQualifier(EvqConstExpr);
2562 }
2563 }
2564 else if(baseExpression->isMatrix())
2565 {
2566 TQualifier qualifier = baseExpression->getType().getQualifier() == EvqConstExpr ? EvqConstExpr : EvqTemporary;
2567 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision(),
2568 qualifier, static_cast<unsigned char>(baseExpression->getSecondarySize())));
2569 }
2570 else if(baseExpression->isVector())
2571 {
2572 TQualifier qualifier = baseExpression->getType().getQualifier() == EvqConstExpr ? EvqConstExpr : EvqTemporary;
2573 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision(), qualifier));
2574 }
2575 else
2576 {
2577 indexedExpression->setType(baseExpression->getType());
2578 }
2579
2580 return indexedExpression;
2581}
2582
2583TIntermTyped *TParseContext::addFieldSelectionExpression(TIntermTyped *baseExpression, const TSourceLoc &dotLocation,
2584 const TString &fieldString, const TSourceLoc &fieldLocation)
2585{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002586 TIntermTyped *indexedExpression = nullptr;
Alexis Hetuad6b8752015-06-09 16:15:30 -04002587
2588 if(baseExpression->isArray())
2589 {
2590 error(fieldLocation, "cannot apply dot operator to an array", ".");
2591 recover();
2592 }
2593
2594 if(baseExpression->isVector())
2595 {
2596 TVectorFields fields;
2597 if(!parseVectorFields(fieldString, baseExpression->getNominalSize(), fields, fieldLocation))
2598 {
2599 fields.num = 1;
2600 fields.offsets[0] = 0;
2601 recover();
2602 }
2603
Nicolas Capens0863f0d2016-04-10 00:30:02 -04002604 if(baseExpression->getAsConstantUnion())
Alexis Hetuad6b8752015-06-09 16:15:30 -04002605 {
2606 // constant folding for vector fields
2607 indexedExpression = addConstVectorNode(fields, baseExpression, fieldLocation);
2608 if(indexedExpression == 0)
2609 {
2610 recover();
2611 indexedExpression = baseExpression;
2612 }
2613 else
2614 {
2615 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision(),
2616 EvqConstExpr, (unsigned char)(fieldString).size()));
2617 }
2618 }
2619 else
2620 {
2621 TString vectorString = fieldString;
2622 TIntermTyped *index = intermediate.addSwizzle(fields, fieldLocation);
2623 indexedExpression = intermediate.addIndex(EOpVectorSwizzle, baseExpression, index, dotLocation);
2624 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision(),
Nicolas Capens341afbb2016-04-10 01:54:50 -04002625 baseExpression->getQualifier() == EvqConstExpr ? EvqConstExpr : EvqTemporary, (unsigned char)vectorString.size()));
Alexis Hetuad6b8752015-06-09 16:15:30 -04002626 }
2627 }
2628 else if(baseExpression->isMatrix())
2629 {
2630 TMatrixFields fields;
2631 if(!parseMatrixFields(fieldString, baseExpression->getNominalSize(), baseExpression->getSecondarySize(), fields, fieldLocation))
2632 {
2633 fields.wholeRow = false;
2634 fields.wholeCol = false;
2635 fields.row = 0;
2636 fields.col = 0;
2637 recover();
2638 }
2639
2640 if(fields.wholeRow || fields.wholeCol)
2641 {
2642 error(dotLocation, " non-scalar fields not implemented yet", ".");
2643 recover();
2644 ConstantUnion *unionArray = new ConstantUnion[1];
2645 unionArray->setIConst(0);
2646 TIntermTyped *index = intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConstExpr),
2647 fieldLocation);
2648 indexedExpression = intermediate.addIndex(EOpIndexDirect, baseExpression, index, dotLocation);
2649 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision(),
2650 EvqTemporary, static_cast<unsigned char>(baseExpression->getNominalSize()),
2651 static_cast<unsigned char>(baseExpression->getSecondarySize())));
2652 }
2653 else
2654 {
2655 ConstantUnion *unionArray = new ConstantUnion[1];
2656 unionArray->setIConst(fields.col * baseExpression->getSecondarySize() + fields.row);
2657 TIntermTyped *index = intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConstExpr),
2658 fieldLocation);
2659 indexedExpression = intermediate.addIndex(EOpIndexDirect, baseExpression, index, dotLocation);
2660 indexedExpression->setType(TType(baseExpression->getBasicType(), baseExpression->getPrecision()));
2661 }
2662 }
2663 else if(baseExpression->getBasicType() == EbtStruct)
2664 {
2665 bool fieldFound = false;
2666 const TFieldList &fields = baseExpression->getType().getStruct()->fields();
2667 if(fields.empty())
2668 {
2669 error(dotLocation, "structure has no fields", "Internal Error");
2670 recover();
2671 indexedExpression = baseExpression;
2672 }
2673 else
2674 {
2675 unsigned int i;
2676 for(i = 0; i < fields.size(); ++i)
2677 {
2678 if(fields[i]->name() == fieldString)
2679 {
2680 fieldFound = true;
2681 break;
2682 }
2683 }
2684 if(fieldFound)
2685 {
2686 if(baseExpression->getType().getQualifier() == EvqConstExpr)
2687 {
2688 indexedExpression = addConstStruct(fieldString, baseExpression, dotLocation);
2689 if(indexedExpression == 0)
2690 {
2691 recover();
2692 indexedExpression = baseExpression;
2693 }
2694 else
2695 {
2696 indexedExpression->setType(*fields[i]->type());
2697 // change the qualifier of the return type, not of the structure field
2698 // as the structure definition is shared between various structures.
2699 indexedExpression->getTypePointer()->setQualifier(EvqConstExpr);
2700 }
2701 }
2702 else
2703 {
2704 ConstantUnion *unionArray = new ConstantUnion[1];
2705 unionArray->setIConst(i);
2706 TIntermTyped *index = intermediate.addConstantUnion(unionArray, *fields[i]->type(), fieldLocation);
2707 indexedExpression = intermediate.addIndex(EOpIndexDirectStruct, baseExpression, index, dotLocation);
2708 indexedExpression->setType(*fields[i]->type());
2709 }
2710 }
2711 else
2712 {
2713 error(dotLocation, " no such field in structure", fieldString.c_str());
2714 recover();
2715 indexedExpression = baseExpression;
2716 }
2717 }
2718 }
2719 else if(baseExpression->isInterfaceBlock())
2720 {
2721 bool fieldFound = false;
2722 const TFieldList &fields = baseExpression->getType().getInterfaceBlock()->fields();
2723 if(fields.empty())
2724 {
2725 error(dotLocation, "interface block has no fields", "Internal Error");
2726 recover();
2727 indexedExpression = baseExpression;
2728 }
2729 else
2730 {
2731 unsigned int i;
2732 for(i = 0; i < fields.size(); ++i)
2733 {
2734 if(fields[i]->name() == fieldString)
2735 {
2736 fieldFound = true;
2737 break;
2738 }
2739 }
2740 if(fieldFound)
2741 {
2742 ConstantUnion *unionArray = new ConstantUnion[1];
2743 unionArray->setIConst(i);
2744 TIntermTyped *index = intermediate.addConstantUnion(unionArray, *fields[i]->type(), fieldLocation);
2745 indexedExpression = intermediate.addIndex(EOpIndexDirectInterfaceBlock, baseExpression, index,
2746 dotLocation);
2747 indexedExpression->setType(*fields[i]->type());
2748 }
2749 else
2750 {
2751 error(dotLocation, " no such field in interface block", fieldString.c_str());
2752 recover();
2753 indexedExpression = baseExpression;
2754 }
2755 }
2756 }
2757 else
2758 {
Alexis Hetu0a655842015-06-22 16:52:11 -04002759 if(mShaderVersion < 300)
Alexis Hetuad6b8752015-06-09 16:15:30 -04002760 {
2761 error(dotLocation, " field selection requires structure, vector, or matrix on left hand side",
2762 fieldString.c_str());
2763 }
2764 else
2765 {
2766 error(dotLocation,
2767 " field selection requires structure, vector, matrix, or interface block on left hand side",
2768 fieldString.c_str());
2769 }
2770 recover();
2771 indexedExpression = baseExpression;
2772 }
2773
2774 return indexedExpression;
2775}
2776
Nicolas Capens7d626792015-02-17 17:58:31 -05002777TLayoutQualifier TParseContext::parseLayoutQualifier(const TString &qualifierType, const TSourceLoc& qualifierTypeLine)
2778{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002779 TLayoutQualifier qualifier;
Nicolas Capens7d626792015-02-17 17:58:31 -05002780
Nicolas Capens0bac2852016-05-07 06:09:58 -04002781 qualifier.location = -1;
Alexis Hetuad6b8752015-06-09 16:15:30 -04002782 qualifier.matrixPacking = EmpUnspecified;
2783 qualifier.blockStorage = EbsUnspecified;
Nicolas Capens7d626792015-02-17 17:58:31 -05002784
Alexis Hetuad6b8752015-06-09 16:15:30 -04002785 if(qualifierType == "shared")
2786 {
2787 qualifier.blockStorage = EbsShared;
2788 }
2789 else if(qualifierType == "packed")
2790 {
2791 qualifier.blockStorage = EbsPacked;
2792 }
2793 else if(qualifierType == "std140")
2794 {
2795 qualifier.blockStorage = EbsStd140;
2796 }
2797 else if(qualifierType == "row_major")
2798 {
2799 qualifier.matrixPacking = EmpRowMajor;
2800 }
2801 else if(qualifierType == "column_major")
2802 {
2803 qualifier.matrixPacking = EmpColumnMajor;
2804 }
2805 else if(qualifierType == "location")
Nicolas Capens0bac2852016-05-07 06:09:58 -04002806 {
2807 error(qualifierTypeLine, "invalid layout qualifier", qualifierType.c_str(), "location requires an argument");
2808 recover();
2809 }
2810 else
2811 {
2812 error(qualifierTypeLine, "invalid layout qualifier", qualifierType.c_str());
2813 recover();
2814 }
Nicolas Capens7d626792015-02-17 17:58:31 -05002815
Nicolas Capens0bac2852016-05-07 06:09:58 -04002816 return qualifier;
Nicolas Capens7d626792015-02-17 17:58:31 -05002817}
2818
2819TLayoutQualifier TParseContext::parseLayoutQualifier(const TString &qualifierType, const TSourceLoc& qualifierTypeLine, const TString &intValueString, int intValue, const TSourceLoc& intValueLine)
2820{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002821 TLayoutQualifier qualifier;
Nicolas Capens7d626792015-02-17 17:58:31 -05002822
Nicolas Capens0bac2852016-05-07 06:09:58 -04002823 qualifier.location = -1;
2824 qualifier.matrixPacking = EmpUnspecified;
2825 qualifier.blockStorage = EbsUnspecified;
Nicolas Capens7d626792015-02-17 17:58:31 -05002826
Nicolas Capens0bac2852016-05-07 06:09:58 -04002827 if (qualifierType != "location")
2828 {
2829 error(qualifierTypeLine, "invalid layout qualifier", qualifierType.c_str(), "only location may have arguments");
2830 recover();
2831 }
2832 else
2833 {
2834 // must check that location is non-negative
2835 if (intValue < 0)
2836 {
2837 error(intValueLine, "out of range:", intValueString.c_str(), "location must be non-negative");
2838 recover();
2839 }
2840 else
2841 {
2842 qualifier.location = intValue;
2843 }
2844 }
Nicolas Capens7d626792015-02-17 17:58:31 -05002845
Nicolas Capens0bac2852016-05-07 06:09:58 -04002846 return qualifier;
Nicolas Capens7d626792015-02-17 17:58:31 -05002847}
2848
2849TLayoutQualifier TParseContext::joinLayoutQualifiers(TLayoutQualifier leftQualifier, TLayoutQualifier rightQualifier)
2850{
Nicolas Capens0bac2852016-05-07 06:09:58 -04002851 TLayoutQualifier joinedQualifier = leftQualifier;
Nicolas Capens7d626792015-02-17 17:58:31 -05002852
Nicolas Capens0bac2852016-05-07 06:09:58 -04002853 if (rightQualifier.location != -1)
2854 {
2855 joinedQualifier.location = rightQualifier.location;
2856 }
Alexis Hetuad6b8752015-06-09 16:15:30 -04002857 if(rightQualifier.matrixPacking != EmpUnspecified)
2858 {
2859 joinedQualifier.matrixPacking = rightQualifier.matrixPacking;
2860 }
2861 if(rightQualifier.blockStorage != EbsUnspecified)
2862 {
2863 joinedQualifier.blockStorage = rightQualifier.blockStorage;
2864 }
Nicolas Capens7d626792015-02-17 17:58:31 -05002865
Nicolas Capens0bac2852016-05-07 06:09:58 -04002866 return joinedQualifier;
Nicolas Capens7d626792015-02-17 17:58:31 -05002867}
2868
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002869
2870TPublicType TParseContext::joinInterpolationQualifiers(const TSourceLoc &interpolationLoc, TQualifier interpolationQualifier,
2871 const TSourceLoc &storageLoc, TQualifier storageQualifier)
2872{
2873 TQualifier mergedQualifier = EvqSmoothIn;
2874
Alexis Hetu42ff6b12015-06-03 16:03:48 -04002875 if(storageQualifier == EvqFragmentIn) {
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002876 if(interpolationQualifier == EvqSmooth)
2877 mergedQualifier = EvqSmoothIn;
2878 else if(interpolationQualifier == EvqFlat)
2879 mergedQualifier = EvqFlatIn;
Nicolas Capens3713cd42015-06-22 10:41:54 -04002880 else UNREACHABLE(interpolationQualifier);
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002881 }
2882 else if(storageQualifier == EvqCentroidIn) {
2883 if(interpolationQualifier == EvqSmooth)
2884 mergedQualifier = EvqCentroidIn;
2885 else if(interpolationQualifier == EvqFlat)
2886 mergedQualifier = EvqFlatIn;
Nicolas Capens3713cd42015-06-22 10:41:54 -04002887 else UNREACHABLE(interpolationQualifier);
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002888 }
Alexis Hetu42ff6b12015-06-03 16:03:48 -04002889 else if(storageQualifier == EvqVertexOut) {
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002890 if(interpolationQualifier == EvqSmooth)
2891 mergedQualifier = EvqSmoothOut;
2892 else if(interpolationQualifier == EvqFlat)
2893 mergedQualifier = EvqFlatOut;
Nicolas Capens3713cd42015-06-22 10:41:54 -04002894 else UNREACHABLE(interpolationQualifier);
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002895 }
2896 else if(storageQualifier == EvqCentroidOut) {
2897 if(interpolationQualifier == EvqSmooth)
2898 mergedQualifier = EvqCentroidOut;
2899 else if(interpolationQualifier == EvqFlat)
2900 mergedQualifier = EvqFlatOut;
Nicolas Capens3713cd42015-06-22 10:41:54 -04002901 else UNREACHABLE(interpolationQualifier);
Alexis Hetu55a2cbc2015-04-16 10:49:45 -04002902 }
2903 else {
2904 error(interpolationLoc, "interpolation qualifier requires a fragment 'in' or vertex 'out' storage qualifier", getQualifierString(interpolationQualifier));
2905 recover();
2906
2907 mergedQualifier = storageQualifier;
2908 }
2909
2910 TPublicType type;
2911 type.setBasic(EbtVoid, mergedQualifier, storageLoc);
2912 return type;
2913}
2914
Alexis Hetuad6b8752015-06-09 16:15:30 -04002915TFieldList *TParseContext::addStructDeclaratorList(const TPublicType &typeSpecifier, TFieldList *fieldList)
2916{
Alexis Hetudd7ff7a2015-06-11 08:25:30 -04002917 if(voidErrorCheck(typeSpecifier.line, (*fieldList)[0]->name(), typeSpecifier.type))
Alexis Hetuad6b8752015-06-09 16:15:30 -04002918 {
2919 recover();
2920 }
2921
2922 for(unsigned int i = 0; i < fieldList->size(); ++i)
2923 {
2924 //
2925 // Careful not to replace already known aspects of type, like array-ness
2926 //
2927 TType *type = (*fieldList)[i]->type();
2928 type->setBasicType(typeSpecifier.type);
2929 type->setNominalSize(typeSpecifier.primarySize);
2930 type->setSecondarySize(typeSpecifier.secondarySize);
2931 type->setPrecision(typeSpecifier.precision);
2932 type->setQualifier(typeSpecifier.qualifier);
2933 type->setLayoutQualifier(typeSpecifier.layoutQualifier);
2934
2935 // don't allow arrays of arrays
2936 if(type->isArray())
2937 {
2938 if(arrayTypeErrorCheck(typeSpecifier.line, typeSpecifier))
2939 recover();
2940 }
2941 if(typeSpecifier.array)
2942 type->setArraySize(typeSpecifier.arraySize);
2943 if(typeSpecifier.userDef)
2944 {
2945 type->setStruct(typeSpecifier.userDef->getStruct());
2946 }
2947
2948 if(structNestingErrorCheck(typeSpecifier.line, *(*fieldList)[i]))
2949 {
2950 recover();
2951 }
2952 }
2953
2954 return fieldList;
2955}
2956
2957TPublicType TParseContext::addStructure(const TSourceLoc &structLine, const TSourceLoc &nameLine,
2958 const TString *structName, TFieldList *fieldList)
2959{
2960 TStructure *structure = new TStructure(structName, fieldList);
2961 TType *structureType = new TType(structure);
2962
2963 // Store a bool in the struct if we're at global scope, to allow us to
2964 // skip the local struct scoping workaround in HLSL.
2965 structure->setUniqueId(TSymbolTableLevel::nextUniqueId());
2966 structure->setAtGlobalScope(symbolTable.atGlobalLevel());
2967
2968 if(!structName->empty())
2969 {
2970 if(reservedErrorCheck(nameLine, *structName))
2971 {
2972 recover();
2973 }
2974 TVariable *userTypeDef = new TVariable(structName, *structureType, true);
2975 if(!symbolTable.declare(*userTypeDef))
2976 {
2977 error(nameLine, "redefinition", structName->c_str(), "struct");
2978 recover();
2979 }
2980 }
2981
2982 // ensure we do not specify any storage qualifiers on the struct members
2983 for(unsigned int typeListIndex = 0; typeListIndex < fieldList->size(); typeListIndex++)
2984 {
2985 const TField &field = *(*fieldList)[typeListIndex];
2986 const TQualifier qualifier = field.type()->getQualifier();
2987 switch(qualifier)
2988 {
2989 case EvqGlobal:
2990 case EvqTemporary:
2991 break;
2992 default:
2993 error(field.line(), "invalid qualifier on struct member", getQualifierString(qualifier));
2994 recover();
2995 break;
2996 }
2997 }
2998
2999 TPublicType publicType;
3000 publicType.setBasic(EbtStruct, EvqTemporary, structLine);
3001 publicType.userDef = structureType;
3002 exitStructDeclaration();
3003
3004 return publicType;
3005}
3006
Alexis Hetufe1269e2015-06-16 12:43:32 -04003007bool TParseContext::enterStructDeclaration(const TSourceLoc &line, const TString& identifier)
John Bauman66b8ab22014-05-06 15:57:45 -04003008{
Nicolas Capens0bac2852016-05-07 06:09:58 -04003009 ++mStructNestingLevel;
John Bauman66b8ab22014-05-06 15:57:45 -04003010
Nicolas Capens0bac2852016-05-07 06:09:58 -04003011 // Embedded structure definitions are not supported per GLSL ES spec.
3012 // They aren't allowed in GLSL either, but we need to detect this here
3013 // so we don't rely on the GLSL compiler to catch it.
3014 if (mStructNestingLevel > 1) {
3015 error(line, "", "Embedded struct definitions are not allowed");
3016 return true;
3017 }
John Bauman66b8ab22014-05-06 15:57:45 -04003018
Nicolas Capens0bac2852016-05-07 06:09:58 -04003019 return false;
John Bauman66b8ab22014-05-06 15:57:45 -04003020}
3021
3022void TParseContext::exitStructDeclaration()
3023{
Nicolas Capens0bac2852016-05-07 06:09:58 -04003024 --mStructNestingLevel;
John Bauman66b8ab22014-05-06 15:57:45 -04003025}
3026
Alexis Hetuad6b8752015-06-09 16:15:30 -04003027bool TParseContext::structNestingErrorCheck(const TSourceLoc &line, const TField &field)
3028{
3029 static const int kWebGLMaxStructNesting = 4;
3030
3031 if(field.type()->getBasicType() != EbtStruct)
3032 {
3033 return false;
3034 }
3035
3036 // We're already inside a structure definition at this point, so add
3037 // one to the field's struct nesting.
3038 if(1 + field.type()->getDeepestStructNesting() > kWebGLMaxStructNesting)
3039 {
3040 std::stringstream reasonStream;
3041 reasonStream << "Reference of struct type "
3042 << field.type()->getStruct()->name().c_str()
3043 << " exceeds maximum allowed nesting level of "
3044 << kWebGLMaxStructNesting;
3045 std::string reason = reasonStream.str();
3046 error(line, reason.c_str(), field.name().c_str(), "");
3047 return true;
3048 }
3049
3050 return false;
3051}
3052
3053TIntermTyped *TParseContext::createUnaryMath(TOperator op, TIntermTyped *child, const TSourceLoc &loc, const TType *funcReturnType)
3054{
3055 if(child == nullptr)
3056 {
3057 return nullptr;
3058 }
3059
3060 switch(op)
3061 {
3062 case EOpLogicalNot:
3063 if(child->getBasicType() != EbtBool ||
3064 child->isMatrix() ||
3065 child->isArray() ||
3066 child->isVector())
3067 {
3068 return nullptr;
3069 }
3070 break;
3071 case EOpBitwiseNot:
3072 if((child->getBasicType() != EbtInt && child->getBasicType() != EbtUInt) ||
3073 child->isMatrix() ||
3074 child->isArray())
3075 {
3076 return nullptr;
3077 }
3078 break;
3079 case EOpPostIncrement:
3080 case EOpPreIncrement:
3081 case EOpPostDecrement:
3082 case EOpPreDecrement:
3083 case EOpNegative:
3084 if(child->getBasicType() == EbtStruct ||
3085 child->getBasicType() == EbtBool ||
3086 child->isArray())
3087 {
3088 return nullptr;
3089 }
3090 // Operators for built-ins are already type checked against their prototype.
3091 default:
3092 break;
3093 }
3094
Nicolas Capensd3d9b9c2016-04-10 01:53:59 -04003095 return intermediate.addUnaryMath(op, child, loc, funcReturnType);
Alexis Hetuad6b8752015-06-09 16:15:30 -04003096}
3097
3098TIntermTyped *TParseContext::addUnaryMath(TOperator op, TIntermTyped *child, const TSourceLoc &loc)
3099{
3100 TIntermTyped *node = createUnaryMath(op, child, loc, nullptr);
3101 if(node == nullptr)
3102 {
3103 unaryOpError(loc, getOperatorString(op), child->getCompleteString());
3104 recover();
3105 return child;
3106 }
3107 return node;
3108}
3109
3110TIntermTyped *TParseContext::addUnaryMathLValue(TOperator op, TIntermTyped *child, const TSourceLoc &loc)
3111{
3112 if(lValueErrorCheck(loc, getOperatorString(op), child))
3113 recover();
3114 return addUnaryMath(op, child, loc);
3115}
3116
3117bool TParseContext::binaryOpCommonCheck(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc)
3118{
3119 if(left->isArray() || right->isArray())
3120 {
Alexis Hetu0a655842015-06-22 16:52:11 -04003121 if(mShaderVersion < 300)
Alexis Hetuad6b8752015-06-09 16:15:30 -04003122 {
3123 error(loc, "Invalid operation for arrays", getOperatorString(op));
3124 return false;
3125 }
3126
3127 if(left->isArray() != right->isArray())
3128 {
3129 error(loc, "array / non-array mismatch", getOperatorString(op));
3130 return false;
3131 }
3132
3133 switch(op)
3134 {
3135 case EOpEqual:
3136 case EOpNotEqual:
3137 case EOpAssign:
3138 case EOpInitialize:
3139 break;
3140 default:
3141 error(loc, "Invalid operation for arrays", getOperatorString(op));
3142 return false;
3143 }
3144 // At this point, size of implicitly sized arrays should be resolved.
3145 if(left->getArraySize() != right->getArraySize())
3146 {
3147 error(loc, "array size mismatch", getOperatorString(op));
3148 return false;
3149 }
3150 }
3151
3152 // Check ops which require integer / ivec parameters
3153 bool isBitShift = false;
3154 switch(op)
3155 {
3156 case EOpBitShiftLeft:
3157 case EOpBitShiftRight:
3158 case EOpBitShiftLeftAssign:
3159 case EOpBitShiftRightAssign:
3160 // Unsigned can be bit-shifted by signed and vice versa, but we need to
3161 // check that the basic type is an integer type.
3162 isBitShift = true;
3163 if(!IsInteger(left->getBasicType()) || !IsInteger(right->getBasicType()))
3164 {
3165 return false;
3166 }
3167 break;
3168 case EOpBitwiseAnd:
3169 case EOpBitwiseXor:
3170 case EOpBitwiseOr:
3171 case EOpBitwiseAndAssign:
3172 case EOpBitwiseXorAssign:
3173 case EOpBitwiseOrAssign:
3174 // It is enough to check the type of only one operand, since later it
3175 // is checked that the operand types match.
3176 if(!IsInteger(left->getBasicType()))
3177 {
3178 return false;
3179 }
3180 break;
3181 default:
3182 break;
3183 }
3184
3185 // GLSL ES 1.00 and 3.00 do not support implicit type casting.
3186 // So the basic type should usually match.
3187 if(!isBitShift && left->getBasicType() != right->getBasicType())
3188 {
3189 return false;
3190 }
3191
3192 // Check that type sizes match exactly on ops that require that.
3193 // Also check restrictions for structs that contain arrays or samplers.
3194 switch(op)
3195 {
3196 case EOpAssign:
3197 case EOpInitialize:
3198 case EOpEqual:
3199 case EOpNotEqual:
3200 // ESSL 1.00 sections 5.7, 5.8, 5.9
Alexis Hetu0a655842015-06-22 16:52:11 -04003201 if(mShaderVersion < 300 && left->getType().isStructureContainingArrays())
Alexis Hetuad6b8752015-06-09 16:15:30 -04003202 {
3203 error(loc, "undefined operation for structs containing arrays", getOperatorString(op));
3204 return false;
3205 }
3206 // Samplers as l-values are disallowed also in ESSL 3.00, see section 4.1.7,
3207 // we interpret the spec so that this extends to structs containing samplers,
3208 // similarly to ESSL 1.00 spec.
Alexis Hetu0a655842015-06-22 16:52:11 -04003209 if((mShaderVersion < 300 || op == EOpAssign || op == EOpInitialize) &&
Alexis Hetuad6b8752015-06-09 16:15:30 -04003210 left->getType().isStructureContainingSamplers())
3211 {
3212 error(loc, "undefined operation for structs containing samplers", getOperatorString(op));
3213 return false;
3214 }
3215 case EOpLessThan:
3216 case EOpGreaterThan:
3217 case EOpLessThanEqual:
3218 case EOpGreaterThanEqual:
3219 if((left->getNominalSize() != right->getNominalSize()) ||
3220 (left->getSecondarySize() != right->getSecondarySize()))
3221 {
3222 return false;
3223 }
3224 default:
3225 break;
3226 }
3227
3228 return true;
3229}
3230
Alexis Hetu76a343a2015-06-04 17:21:22 -04003231TIntermSwitch *TParseContext::addSwitch(TIntermTyped *init, TIntermAggregate *statementList, const TSourceLoc &loc)
3232{
3233 TBasicType switchType = init->getBasicType();
3234 if((switchType != EbtInt && switchType != EbtUInt) ||
3235 init->isMatrix() ||
3236 init->isArray() ||
3237 init->isVector())
3238 {
3239 error(init->getLine(), "init-expression in a switch statement must be a scalar integer", "switch");
3240 recover();
3241 return nullptr;
3242 }
3243
3244 if(statementList)
3245 {
3246 if(!ValidateSwitch::validate(switchType, this, statementList, loc))
3247 {
3248 recover();
3249 return nullptr;
3250 }
3251 }
3252
3253 TIntermSwitch *node = intermediate.addSwitch(init, statementList, loc);
3254 if(node == nullptr)
3255 {
3256 error(loc, "erroneous switch statement", "switch");
3257 recover();
3258 return nullptr;
3259 }
3260 return node;
3261}
3262
3263TIntermCase *TParseContext::addCase(TIntermTyped *condition, const TSourceLoc &loc)
3264{
Alexis Hetu0a655842015-06-22 16:52:11 -04003265 if(mSwitchNestingLevel == 0)
Alexis Hetu76a343a2015-06-04 17:21:22 -04003266 {
3267 error(loc, "case labels need to be inside switch statements", "case");
3268 recover();
3269 return nullptr;
3270 }
3271 if(condition == nullptr)
3272 {
3273 error(loc, "case label must have a condition", "case");
3274 recover();
3275 return nullptr;
3276 }
3277 if((condition->getBasicType() != EbtInt && condition->getBasicType() != EbtUInt) ||
3278 condition->isMatrix() ||
3279 condition->isArray() ||
3280 condition->isVector())
3281 {
3282 error(condition->getLine(), "case label must be a scalar integer", "case");
3283 recover();
3284 }
3285 TIntermConstantUnion *conditionConst = condition->getAsConstantUnion();
3286 if(conditionConst == nullptr)
3287 {
3288 error(condition->getLine(), "case label must be constant", "case");
3289 recover();
3290 }
3291 TIntermCase *node = intermediate.addCase(condition, loc);
3292 if(node == nullptr)
3293 {
3294 error(loc, "erroneous case statement", "case");
3295 recover();
3296 return nullptr;
3297 }
3298 return node;
3299}
3300
3301TIntermCase *TParseContext::addDefault(const TSourceLoc &loc)
3302{
Alexis Hetu0a655842015-06-22 16:52:11 -04003303 if(mSwitchNestingLevel == 0)
Alexis Hetu76a343a2015-06-04 17:21:22 -04003304 {
3305 error(loc, "default labels need to be inside switch statements", "default");
3306 recover();
3307 return nullptr;
3308 }
3309 TIntermCase *node = intermediate.addCase(nullptr, loc);
3310 if(node == nullptr)
3311 {
3312 error(loc, "erroneous default statement", "default");
3313 recover();
3314 return nullptr;
3315 }
3316 return node;
3317}
Alexis Hetue5246692015-06-18 12:34:52 -04003318TIntermTyped *TParseContext::createAssign(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc)
3319{
3320 if(binaryOpCommonCheck(op, left, right, loc))
3321 {
3322 return intermediate.addAssign(op, left, right, loc);
3323 }
3324 return nullptr;
3325}
3326
3327TIntermTyped *TParseContext::addAssign(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc)
3328{
3329 TIntermTyped *node = createAssign(op, left, right, loc);
3330 if(node == nullptr)
3331 {
3332 assignError(loc, "assign", left->getCompleteString(), right->getCompleteString());
3333 recover();
3334 return left;
3335 }
3336 return node;
3337}
Alexis Hetu76a343a2015-06-04 17:21:22 -04003338
Alexis Hetub4769582015-06-16 12:19:50 -04003339TIntermTyped *TParseContext::addBinaryMathInternal(TOperator op, TIntermTyped *left, TIntermTyped *right,
3340 const TSourceLoc &loc)
3341{
3342 if(!binaryOpCommonCheck(op, left, right, loc))
3343 return nullptr;
3344
3345 switch(op)
3346 {
3347 case EOpEqual:
3348 case EOpNotEqual:
3349 break;
3350 case EOpLessThan:
3351 case EOpGreaterThan:
3352 case EOpLessThanEqual:
3353 case EOpGreaterThanEqual:
3354 ASSERT(!left->isArray() && !right->isArray());
3355 if(left->isMatrix() || left->isVector() ||
3356 left->getBasicType() == EbtStruct)
3357 {
3358 return nullptr;
3359 }
3360 break;
3361 case EOpLogicalOr:
3362 case EOpLogicalXor:
3363 case EOpLogicalAnd:
3364 ASSERT(!left->isArray() && !right->isArray());
3365 if(left->getBasicType() != EbtBool ||
3366 left->isMatrix() || left->isVector())
3367 {
3368 return nullptr;
3369 }
3370 break;
3371 case EOpAdd:
3372 case EOpSub:
3373 case EOpDiv:
3374 case EOpMul:
3375 ASSERT(!left->isArray() && !right->isArray());
3376 if(left->getBasicType() == EbtStruct || left->getBasicType() == EbtBool)
3377 {
3378 return nullptr;
3379 }
3380 break;
3381 case EOpIMod:
3382 ASSERT(!left->isArray() && !right->isArray());
3383 // Note that this is only for the % operator, not for mod()
3384 if(left->getBasicType() == EbtStruct || left->getBasicType() == EbtBool || left->getBasicType() == EbtFloat)
3385 {
3386 return nullptr;
3387 }
3388 break;
3389 // Note that for bitwise ops, type checking is done in promote() to
3390 // share code between ops and compound assignment
3391 default:
3392 break;
3393 }
3394
3395 return intermediate.addBinaryMath(op, left, right, loc);
3396}
3397
3398TIntermTyped *TParseContext::addBinaryMath(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc)
3399{
3400 TIntermTyped *node = addBinaryMathInternal(op, left, right, loc);
3401 if(node == 0)
3402 {
3403 binaryOpError(loc, getOperatorString(op), left->getCompleteString(), right->getCompleteString());
3404 recover();
3405 return left;
3406 }
3407 return node;
3408}
3409
3410TIntermTyped *TParseContext::addBinaryMathBooleanResult(TOperator op, TIntermTyped *left, TIntermTyped *right, const TSourceLoc &loc)
3411{
3412 TIntermTyped *node = addBinaryMathInternal(op, left, right, loc);
3413 if(node == 0)
3414 {
3415 binaryOpError(loc, getOperatorString(op), left->getCompleteString(), right->getCompleteString());
3416 recover();
3417 ConstantUnion *unionArray = new ConstantUnion[1];
3418 unionArray->setBConst(false);
3419 return intermediate.addConstantUnion(unionArray, TType(EbtBool, EbpUndefined, EvqConstExpr), loc);
3420 }
3421 return node;
3422}
3423
Alexis Hetu76a343a2015-06-04 17:21:22 -04003424TIntermBranch *TParseContext::addBranch(TOperator op, const TSourceLoc &loc)
3425{
3426 switch(op)
3427 {
3428 case EOpContinue:
Alexis Hetu0a655842015-06-22 16:52:11 -04003429 if(mLoopNestingLevel <= 0)
Alexis Hetu76a343a2015-06-04 17:21:22 -04003430 {
3431 error(loc, "continue statement only allowed in loops", "");
3432 recover();
3433 }
3434 break;
3435 case EOpBreak:
Alexis Hetu0a655842015-06-22 16:52:11 -04003436 if(mLoopNestingLevel <= 0 && mSwitchNestingLevel <= 0)
Alexis Hetu76a343a2015-06-04 17:21:22 -04003437 {
3438 error(loc, "break statement only allowed in loops and switch statements", "");
3439 recover();
3440 }
3441 break;
3442 case EOpReturn:
Alexis Hetu0a655842015-06-22 16:52:11 -04003443 if(mCurrentFunctionType->getBasicType() != EbtVoid)
Alexis Hetu76a343a2015-06-04 17:21:22 -04003444 {
3445 error(loc, "non-void function must return a value", "return");
3446 recover();
3447 }
3448 break;
3449 default:
3450 // No checks for discard
3451 break;
3452 }
3453 return intermediate.addBranch(op, loc);
3454}
3455
3456TIntermBranch *TParseContext::addBranch(TOperator op, TIntermTyped *returnValue, const TSourceLoc &loc)
3457{
3458 ASSERT(op == EOpReturn);
Alexis Hetu0a655842015-06-22 16:52:11 -04003459 mFunctionReturnsValue = true;
3460 if(mCurrentFunctionType->getBasicType() == EbtVoid)
Alexis Hetu76a343a2015-06-04 17:21:22 -04003461 {
3462 error(loc, "void function cannot return a value", "return");
3463 recover();
3464 }
Alexis Hetu0a655842015-06-22 16:52:11 -04003465 else if(*mCurrentFunctionType != returnValue->getType())
Alexis Hetu76a343a2015-06-04 17:21:22 -04003466 {
3467 error(loc, "function return is not matching type:", "return");
3468 recover();
3469 }
3470 return intermediate.addBranch(op, returnValue, loc);
3471}
3472
Alexis Hetub3ff42c2015-07-03 18:19:57 -04003473TIntermTyped *TParseContext::addFunctionCallOrMethod(TFunction *fnCall, TIntermNode *paramNode, TIntermNode *thisNode, const TSourceLoc &loc, bool *fatalError)
3474{
3475 *fatalError = false;
3476 TOperator op = fnCall->getBuiltInOp();
3477 TIntermTyped *callNode = nullptr;
3478
3479 if(thisNode != nullptr)
3480 {
3481 ConstantUnion *unionArray = new ConstantUnion[1];
3482 int arraySize = 0;
3483 TIntermTyped *typedThis = thisNode->getAsTyped();
3484 if(fnCall->getName() != "length")
3485 {
3486 error(loc, "invalid method", fnCall->getName().c_str());
3487 recover();
3488 }
3489 else if(paramNode != nullptr)
3490 {
3491 error(loc, "method takes no parameters", "length");
3492 recover();
3493 }
3494 else if(typedThis == nullptr || !typedThis->isArray())
3495 {
3496 error(loc, "length can only be called on arrays", "length");
3497 recover();
3498 }
3499 else
3500 {
3501 arraySize = typedThis->getArraySize();
3502 if(typedThis->getAsSymbolNode() == nullptr)
3503 {
3504 // This code path can be hit with expressions like these:
3505 // (a = b).length()
3506 // (func()).length()
3507 // (int[3](0, 1, 2)).length()
3508 // ESSL 3.00 section 5.9 defines expressions so that this is not actually a valid expression.
3509 // It allows "An array name with the length method applied" in contrast to GLSL 4.4 spec section 5.9
3510 // which allows "An array, vector or matrix expression with the length method applied".
3511 error(loc, "length can only be called on array names, not on array expressions", "length");
3512 recover();
3513 }
3514 }
3515 unionArray->setIConst(arraySize);
3516 callNode = intermediate.addConstantUnion(unionArray, TType(EbtInt, EbpUndefined, EvqConstExpr), loc);
3517 }
3518 else if(op != EOpNull)
3519 {
3520 //
3521 // Then this should be a constructor.
3522 // Don't go through the symbol table for constructors.
3523 // Their parameters will be verified algorithmically.
3524 //
3525 TType type(EbtVoid, EbpUndefined); // use this to get the type back
3526 if(!constructorErrorCheck(loc, paramNode, *fnCall, op, &type))
3527 {
3528 //
3529 // It's a constructor, of type 'type'.
3530 //
3531 callNode = addConstructor(paramNode, &type, op, fnCall, loc);
3532 }
3533
3534 if(callNode == nullptr)
3535 {
3536 recover();
3537 callNode = intermediate.setAggregateOperator(nullptr, op, loc);
3538 }
Alexis Hetub3ff42c2015-07-03 18:19:57 -04003539 }
3540 else
3541 {
3542 //
3543 // Not a constructor. Find it in the symbol table.
3544 //
3545 const TFunction *fnCandidate;
3546 bool builtIn;
3547 fnCandidate = findFunction(loc, fnCall, &builtIn);
3548 if(fnCandidate)
3549 {
3550 //
3551 // A declared function.
3552 //
3553 if(builtIn && !fnCandidate->getExtension().empty() &&
3554 extensionErrorCheck(loc, fnCandidate->getExtension()))
3555 {
3556 recover();
3557 }
3558 op = fnCandidate->getBuiltInOp();
3559 if(builtIn && op != EOpNull)
3560 {
3561 //
3562 // A function call mapped to a built-in operation.
3563 //
3564 if(fnCandidate->getParamCount() == 1)
3565 {
3566 //
3567 // Treat it like a built-in unary operator.
3568 //
3569 callNode = createUnaryMath(op, paramNode->getAsTyped(), loc, &fnCandidate->getReturnType());
3570 if(callNode == nullptr)
3571 {
3572 std::stringstream extraInfoStream;
3573 extraInfoStream << "built in unary operator function. Type: "
3574 << static_cast<TIntermTyped*>(paramNode)->getCompleteString();
3575 std::string extraInfo = extraInfoStream.str();
3576 error(paramNode->getLine(), " wrong operand type", "Internal Error", extraInfo.c_str());
3577 *fatalError = true;
3578 return nullptr;
3579 }
3580 }
3581 else
3582 {
3583 TIntermAggregate *aggregate = intermediate.setAggregateOperator(paramNode, op, loc);
3584 aggregate->setType(fnCandidate->getReturnType());
3585
3586 // Some built-in functions have out parameters too.
3587 functionCallLValueErrorCheck(fnCandidate, aggregate);
3588
3589 callNode = aggregate;
Nicolas Capens91dfb972016-04-09 23:45:12 -04003590
3591 if(fnCandidate->getParamCount() == 2)
3592 {
3593 TIntermSequence &parameters = paramNode->getAsAggregate()->getSequence();
3594 TIntermTyped *left = parameters[0]->getAsTyped();
3595 TIntermTyped *right = parameters[1]->getAsTyped();
3596
3597 TIntermConstantUnion *leftTempConstant = left->getAsConstantUnion();
3598 TIntermConstantUnion *rightTempConstant = right->getAsConstantUnion();
3599 if (leftTempConstant && rightTempConstant)
3600 {
3601 TIntermTyped *typedReturnNode = leftTempConstant->fold(op, rightTempConstant, infoSink());
3602
3603 if(typedReturnNode)
3604 {
3605 callNode = typedReturnNode;
3606 }
3607 }
3608 }
Alexis Hetub3ff42c2015-07-03 18:19:57 -04003609 }
3610 }
3611 else
3612 {
3613 // This is a real function call
3614
3615 TIntermAggregate *aggregate = intermediate.setAggregateOperator(paramNode, EOpFunctionCall, loc);
3616 aggregate->setType(fnCandidate->getReturnType());
3617
3618 // this is how we know whether the given function is a builtIn function or a user defined function
3619 // if builtIn == false, it's a userDefined -> could be an overloaded builtIn function also
3620 // if builtIn == true, it's definitely a builtIn function with EOpNull
3621 if(!builtIn)
3622 aggregate->setUserDefined();
3623 aggregate->setName(fnCandidate->getMangledName());
3624
3625 callNode = aggregate;
3626
3627 functionCallLValueErrorCheck(fnCandidate, aggregate);
3628 }
Alexis Hetub3ff42c2015-07-03 18:19:57 -04003629 }
3630 else
3631 {
3632 // error message was put out by findFunction()
3633 // Put on a dummy node for error recovery
3634 ConstantUnion *unionArray = new ConstantUnion[1];
3635 unionArray->setFConst(0.0f);
3636 callNode = intermediate.addConstantUnion(unionArray, TType(EbtFloat, EbpUndefined, EvqConstExpr), loc);
3637 recover();
3638 }
3639 }
3640 delete fnCall;
3641 return callNode;
3642}
3643
Alexis Hetueee212e2015-07-07 17:13:30 -04003644TIntermTyped *TParseContext::addTernarySelection(TIntermTyped *cond, TIntermTyped *trueBlock, TIntermTyped *falseBlock, const TSourceLoc &loc)
3645{
3646 if(boolErrorCheck(loc, cond))
3647 recover();
3648
3649 if(trueBlock->getType() != falseBlock->getType())
3650 {
3651 binaryOpError(loc, ":", trueBlock->getCompleteString(), falseBlock->getCompleteString());
3652 recover();
3653 return falseBlock;
3654 }
3655 // ESSL1 sections 5.2 and 5.7:
3656 // ESSL3 section 5.7:
3657 // Ternary operator is not among the operators allowed for structures/arrays.
3658 if(trueBlock->isArray() || trueBlock->getBasicType() == EbtStruct)
3659 {
3660 error(loc, "ternary operator is not allowed for structures or arrays", ":");
3661 recover();
3662 return falseBlock;
3663 }
3664 return intermediate.addSelection(cond, trueBlock, falseBlock, loc);
3665}
3666
John Bauman66b8ab22014-05-06 15:57:45 -04003667//
3668// Parse an array of strings using yyparse.
3669//
3670// Returns 0 for success.
3671//
3672int PaParseStrings(int count, const char* const string[], const int length[],
Nicolas Capens0bac2852016-05-07 06:09:58 -04003673 TParseContext* context) {
3674 if ((count == 0) || !string)
3675 return 1;
John Bauman66b8ab22014-05-06 15:57:45 -04003676
Nicolas Capens0bac2852016-05-07 06:09:58 -04003677 if (glslang_initialize(context))
3678 return 1;
John Bauman66b8ab22014-05-06 15:57:45 -04003679
Nicolas Capens0bac2852016-05-07 06:09:58 -04003680 int error = glslang_scan(count, string, length, context);
3681 if (!error)
3682 error = glslang_parse(context);
John Bauman66b8ab22014-05-06 15:57:45 -04003683
Nicolas Capens0bac2852016-05-07 06:09:58 -04003684 glslang_finalize(context);
John Bauman66b8ab22014-05-06 15:57:45 -04003685
Nicolas Capens0bac2852016-05-07 06:09:58 -04003686 return (error == 0) && (context->numErrors() == 0) ? 0 : 1;
John Bauman66b8ab22014-05-06 15:57:45 -04003687}
3688
3689
3690