blob: d8efe5d78e318cd919e5251f68c340d30ed6dcd4 [file] [log] [blame]
John Bauman66b8ab22014-05-06 15:57:45 -04001//
John Baumand4ae8632014-05-06 16:18:33 -04002// Copyright (c) 2002-2013 The ANGLE Project Authors. All rights reserved.
John Bauman66b8ab22014-05-06 15:57:45 -04003// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6
Nicolas Capenscc863da2015-01-21 15:50:55 -05007#include "ParseHelper.h"
John Bauman66b8ab22014-05-06 15:57:45 -04008
9#include <stdarg.h>
10#include <stdio.h>
11
Nicolas Capenscc863da2015-01-21 15:50:55 -050012#include "glslang.h"
13#include "preprocessor/SourceLocation.h"
Alexis Hetue5246692015-06-18 12:34:52 -040014#include "ValidateGlobalInitializer.h"
Alexis Hetu76a343a2015-06-04 17:21:22 -040015#include "ValidateSwitch.h"
John Bauman66b8ab22014-05-06 15:57:45 -040016
17///////////////////////////////////////////////////////////////////////
18//
19// Sub- vector and matrix fields
20//
21////////////////////////////////////////////////////////////////////////
22
23//
24// Look at a '.' field selector string and change it into offsets
25// for a vector.
26//
Alexis Hetufe1269e2015-06-16 12:43:32 -040027bool TParseContext::parseVectorFields(const TString& compString, int vecSize, TVectorFields& fields, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -040028{
29 fields.num = (int) compString.size();
30 if (fields.num > 4) {
31 error(line, "illegal vector field selection", compString.c_str());
32 return false;
33 }
34
35 enum {
36 exyzw,
37 ergba,
John Baumand4ae8632014-05-06 16:18:33 -040038 estpq
John Bauman66b8ab22014-05-06 15:57:45 -040039 } fieldSet[4];
40
41 for (int i = 0; i < fields.num; ++i) {
42 switch (compString[i]) {
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -040043 case 'x':
John Bauman66b8ab22014-05-06 15:57:45 -040044 fields.offsets[i] = 0;
45 fieldSet[i] = exyzw;
46 break;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -040047 case 'r':
John Bauman66b8ab22014-05-06 15:57:45 -040048 fields.offsets[i] = 0;
49 fieldSet[i] = ergba;
50 break;
51 case 's':
52 fields.offsets[i] = 0;
53 fieldSet[i] = estpq;
54 break;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -040055 case 'y':
John Bauman66b8ab22014-05-06 15:57:45 -040056 fields.offsets[i] = 1;
57 fieldSet[i] = exyzw;
58 break;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -040059 case 'g':
John Bauman66b8ab22014-05-06 15:57:45 -040060 fields.offsets[i] = 1;
61 fieldSet[i] = ergba;
62 break;
63 case 't':
64 fields.offsets[i] = 1;
65 fieldSet[i] = estpq;
66 break;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -040067 case 'z':
John Bauman66b8ab22014-05-06 15:57:45 -040068 fields.offsets[i] = 2;
69 fieldSet[i] = exyzw;
70 break;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -040071 case 'b':
John Bauman66b8ab22014-05-06 15:57:45 -040072 fields.offsets[i] = 2;
73 fieldSet[i] = ergba;
74 break;
75 case 'p':
76 fields.offsets[i] = 2;
77 fieldSet[i] = estpq;
78 break;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -040079 case 'w':
John Bauman66b8ab22014-05-06 15:57:45 -040080 fields.offsets[i] = 3;
81 fieldSet[i] = exyzw;
82 break;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -040083 case 'a':
John Bauman66b8ab22014-05-06 15:57:45 -040084 fields.offsets[i] = 3;
85 fieldSet[i] = ergba;
86 break;
87 case 'q':
88 fields.offsets[i] = 3;
89 fieldSet[i] = estpq;
90 break;
91 default:
92 error(line, "illegal vector field selection", compString.c_str());
93 return false;
94 }
95 }
96
97 for (int i = 0; i < fields.num; ++i) {
98 if (fields.offsets[i] >= vecSize) {
99 error(line, "vector field selection out of range", compString.c_str());
100 return false;
101 }
102
103 if (i > 0) {
104 if (fieldSet[i] != fieldSet[i-1]) {
105 error(line, "illegal - vector component fields not from the same set", compString.c_str());
106 return false;
107 }
108 }
109 }
110
111 return true;
112}
113
114
115//
116// Look at a '.' field selector string and change it into offsets
117// for a matrix.
118//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400119bool TParseContext::parseMatrixFields(const TString& compString, int matCols, int matRows, TMatrixFields& fields, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -0400120{
121 fields.wholeRow = false;
122 fields.wholeCol = false;
123 fields.row = -1;
124 fields.col = -1;
125
126 if (compString.size() != 2) {
127 error(line, "illegal length of matrix field selection", compString.c_str());
128 return false;
129 }
130
131 if (compString[0] == '_') {
132 if (compString[1] < '0' || compString[1] > '3') {
133 error(line, "illegal matrix field selection", compString.c_str());
134 return false;
135 }
136 fields.wholeCol = true;
137 fields.col = compString[1] - '0';
138 } else if (compString[1] == '_') {
139 if (compString[0] < '0' || compString[0] > '3') {
140 error(line, "illegal matrix field selection", compString.c_str());
141 return false;
142 }
143 fields.wholeRow = true;
144 fields.row = compString[0] - '0';
145 } else {
146 if (compString[0] < '0' || compString[0] > '3' ||
147 compString[1] < '0' || compString[1] > '3') {
148 error(line, "illegal matrix field selection", compString.c_str());
149 return false;
150 }
151 fields.row = compString[0] - '0';
152 fields.col = compString[1] - '0';
153 }
154
Alexis Hetu00106d42015-04-23 11:45:35 -0400155 if (fields.row >= matRows || fields.col >= matCols) {
John Bauman66b8ab22014-05-06 15:57:45 -0400156 error(line, "matrix field selection out of range", compString.c_str());
157 return false;
158 }
159
160 return true;
161}
162
163///////////////////////////////////////////////////////////////////////
164//
165// Errors
166//
167////////////////////////////////////////////////////////////////////////
168
169//
170// Track whether errors have occurred.
171//
172void TParseContext::recover()
173{
174}
175
176//
177// Used by flex/bison to output all syntax and parsing errors.
178//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400179void TParseContext::error(const TSourceLoc& loc,
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400180 const char* reason, const char* token,
John Bauman66b8ab22014-05-06 15:57:45 -0400181 const char* extraInfo)
182{
Alexis Hetu253fdd12015-07-07 15:12:46 -0400183 pp::SourceLocation srcLoc(loc.first_file, loc.first_line);
Alexis Hetu0a655842015-06-22 16:52:11 -0400184 mDiagnostics.writeInfo(pp::Diagnostics::PP_ERROR,
185 srcLoc, reason, token, extraInfo);
John Bauman66b8ab22014-05-06 15:57:45 -0400186
187}
188
Alexis Hetufe1269e2015-06-16 12:43:32 -0400189void TParseContext::warning(const TSourceLoc& loc,
John Bauman66b8ab22014-05-06 15:57:45 -0400190 const char* reason, const char* token,
191 const char* extraInfo) {
Alexis Hetu253fdd12015-07-07 15:12:46 -0400192 pp::SourceLocation srcLoc(loc.first_file, loc.first_line);
Alexis Hetu0a655842015-06-22 16:52:11 -0400193 mDiagnostics.writeInfo(pp::Diagnostics::PP_WARNING,
194 srcLoc, reason, token, extraInfo);
John Bauman66b8ab22014-05-06 15:57:45 -0400195}
196
197void TParseContext::trace(const char* str)
198{
Alexis Hetu0a655842015-06-22 16:52:11 -0400199 mDiagnostics.writeDebug(str);
John Bauman66b8ab22014-05-06 15:57:45 -0400200}
201
202//
203// Same error message for all places assignments don't work.
204//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400205void TParseContext::assignError(const TSourceLoc &line, const char* op, TString left, TString right)
John Bauman66b8ab22014-05-06 15:57:45 -0400206{
207 std::stringstream extraInfoStream;
208 extraInfoStream << "cannot convert from '" << right << "' to '" << left << "'";
209 std::string extraInfo = extraInfoStream.str();
210 error(line, "", op, extraInfo.c_str());
211}
212
213//
214// Same error message for all places unary operations don't work.
215//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400216void TParseContext::unaryOpError(const TSourceLoc &line, const char* op, TString operand)
John Bauman66b8ab22014-05-06 15:57:45 -0400217{
218 std::stringstream extraInfoStream;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400219 extraInfoStream << "no operation '" << op << "' exists that takes an operand of type " << operand
John Bauman66b8ab22014-05-06 15:57:45 -0400220 << " (or there is no acceptable conversion)";
221 std::string extraInfo = extraInfoStream.str();
222 error(line, " wrong operand type", op, extraInfo.c_str());
223}
224
225//
226// Same error message for all binary operations don't work.
227//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400228void TParseContext::binaryOpError(const TSourceLoc &line, const char* op, TString left, TString right)
John Bauman66b8ab22014-05-06 15:57:45 -0400229{
230 std::stringstream extraInfoStream;
Nicolas Capens0863f0d2016-04-10 00:30:02 -0400231 extraInfoStream << "no operation '" << op << "' exists that takes a left-hand operand of type '" << left
John Bauman66b8ab22014-05-06 15:57:45 -0400232 << "' and a right operand of type '" << right << "' (or there is no acceptable conversion)";
233 std::string extraInfo = extraInfoStream.str();
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400234 error(line, " wrong operand types ", op, extraInfo.c_str());
John Bauman66b8ab22014-05-06 15:57:45 -0400235}
236
Alexis Hetufe1269e2015-06-16 12:43:32 -0400237bool TParseContext::precisionErrorCheck(const TSourceLoc &line, TPrecision precision, TBasicType type){
Alexis Hetu0a655842015-06-22 16:52:11 -0400238 if (!mChecksPrecisionErrors)
John Bauman66b8ab22014-05-06 15:57:45 -0400239 return false;
240 switch( type ){
241 case EbtFloat:
242 if( precision == EbpUndefined ){
243 error( line, "No precision specified for (float)", "" );
244 return true;
245 }
246 break;
247 case EbtInt:
248 if( precision == EbpUndefined ){
249 error( line, "No precision specified (int)", "" );
250 return true;
251 }
252 break;
253 default:
254 return false;
255 }
256 return false;
257}
258
259//
260// Both test and if necessary, spit out an error, to see if the node is really
261// an l-value that can be operated on this way.
262//
263// Returns true if the was an error.
264//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400265bool TParseContext::lValueErrorCheck(const TSourceLoc &line, const char* op, TIntermTyped* node)
John Bauman66b8ab22014-05-06 15:57:45 -0400266{
267 TIntermSymbol* symNode = node->getAsSymbolNode();
268 TIntermBinary* binaryNode = node->getAsBinaryNode();
269
270 if (binaryNode) {
271 bool errorReturn;
272
273 switch(binaryNode->getOp()) {
274 case EOpIndexDirect:
275 case EOpIndexIndirect:
276 case EOpIndexDirectStruct:
277 return lValueErrorCheck(line, op, binaryNode->getLeft());
278 case EOpVectorSwizzle:
279 errorReturn = lValueErrorCheck(line, op, binaryNode->getLeft());
280 if (!errorReturn) {
281 int offset[4] = {0,0,0,0};
282
283 TIntermTyped* rightNode = binaryNode->getRight();
284 TIntermAggregate *aggrNode = rightNode->getAsAggregate();
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400285
286 for (TIntermSequence::iterator p = aggrNode->getSequence().begin();
John Bauman66b8ab22014-05-06 15:57:45 -0400287 p != aggrNode->getSequence().end(); p++) {
Nicolas Capens198529d2015-02-10 13:54:19 -0500288 int value = (*p)->getAsTyped()->getAsConstantUnion()->getIConst(0);
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400289 offset[value]++;
John Bauman66b8ab22014-05-06 15:57:45 -0400290 if (offset[value] > 1) {
291 error(line, " l-value of swizzle cannot have duplicate components", op);
292
293 return true;
294 }
295 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400296 }
John Bauman66b8ab22014-05-06 15:57:45 -0400297
298 return errorReturn;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400299 default:
John Bauman66b8ab22014-05-06 15:57:45 -0400300 break;
301 }
302 error(line, " l-value required", op);
303
304 return true;
305 }
306
307
308 const char* symbol = 0;
309 if (symNode != 0)
310 symbol = symNode->getSymbol().c_str();
311
312 const char* message = 0;
313 switch (node->getQualifier()) {
Nicolas Capens31ad2aa2015-02-26 13:14:27 -0500314 case EvqConstExpr: message = "can't modify a const"; break;
John Bauman66b8ab22014-05-06 15:57:45 -0400315 case EvqConstReadOnly: message = "can't modify a const"; break;
316 case EvqAttribute: message = "can't modify an attribute"; break;
Alexis Hetu42ff6b12015-06-03 16:03:48 -0400317 case EvqFragmentIn: message = "can't modify an input"; break;
318 case EvqVertexIn: message = "can't modify an input"; break;
John Bauman66b8ab22014-05-06 15:57:45 -0400319 case EvqUniform: message = "can't modify a uniform"; break;
Alexis Hetu55a2cbc2015-04-16 10:49:45 -0400320 case EvqSmoothIn:
321 case EvqFlatIn:
322 case EvqCentroidIn:
John Bauman66b8ab22014-05-06 15:57:45 -0400323 case EvqVaryingIn: message = "can't modify a varying"; break;
324 case EvqInput: message = "can't modify an input"; break;
325 case EvqFragCoord: message = "can't modify gl_FragCoord"; break;
326 case EvqFrontFacing: message = "can't modify gl_FrontFacing"; break;
327 case EvqPointCoord: message = "can't modify gl_PointCoord"; break;
Alexis Hetu6743bbf2015-04-21 17:06:14 -0400328 case EvqInstanceID: message = "can't modify gl_InstanceID"; break;
John Bauman66b8ab22014-05-06 15:57:45 -0400329 default:
330
331 //
332 // Type that can't be written to?
333 //
Nicolas Capense9c5e4f2014-05-28 22:46:43 -0400334 if(IsSampler(node->getBasicType()))
335 {
John Bauman66b8ab22014-05-06 15:57:45 -0400336 message = "can't modify a sampler";
Nicolas Capense9c5e4f2014-05-28 22:46:43 -0400337 }
338 else if(node->getBasicType() == EbtVoid)
339 {
John Bauman66b8ab22014-05-06 15:57:45 -0400340 message = "can't modify void";
John Bauman66b8ab22014-05-06 15:57:45 -0400341 }
342 }
343
344 if (message == 0 && binaryNode == 0 && symNode == 0) {
345 error(line, " l-value required", op);
346
347 return true;
348 }
349
350
351 //
352 // Everything else is okay, no error.
353 //
354 if (message == 0)
355 return false;
356
357 //
358 // If we get here, we have an error and a message.
359 //
360 if (symNode) {
361 std::stringstream extraInfoStream;
362 extraInfoStream << "\"" << symbol << "\" (" << message << ")";
363 std::string extraInfo = extraInfoStream.str();
364 error(line, " l-value required", op, extraInfo.c_str());
365 }
366 else {
367 std::stringstream extraInfoStream;
368 extraInfoStream << "(" << message << ")";
369 std::string extraInfo = extraInfoStream.str();
370 error(line, " l-value required", op, extraInfo.c_str());
371 }
372
373 return true;
374}
375
376//
377// Both test, and if necessary spit out an error, to see if the node is really
378// a constant.
379//
380// Returns true if the was an error.
381//
382bool TParseContext::constErrorCheck(TIntermTyped* node)
383{
Nicolas Capens31ad2aa2015-02-26 13:14:27 -0500384 if (node->getQualifier() == EvqConstExpr)
John Bauman66b8ab22014-05-06 15:57:45 -0400385 return false;
386
387 error(node->getLine(), "constant expression required", "");
388
389 return true;
390}
391
392//
393// Both test, and if necessary spit out an error, to see if the node is really
394// an integer.
395//
396// Returns true if the was an error.
397//
398bool TParseContext::integerErrorCheck(TIntermTyped* node, const char* token)
399{
Nicolas Capens3c20f802015-02-17 17:17:20 -0500400 if (node->isScalarInt())
John Bauman66b8ab22014-05-06 15:57:45 -0400401 return false;
402
403 error(node->getLine(), "integer expression required", token);
404
405 return true;
406}
407
408//
409// Both test, and if necessary spit out an error, to see if we are currently
410// globally scoped.
411//
412// Returns true if the was an error.
413//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400414bool TParseContext::globalErrorCheck(const TSourceLoc &line, bool global, const char* token)
John Bauman66b8ab22014-05-06 15:57:45 -0400415{
416 if (global)
417 return false;
418
419 error(line, "only allowed at global scope", token);
420
421 return true;
422}
423
424//
425// For now, keep it simple: if it starts "gl_", it's reserved, independent
426// of scope. Except, if the symbol table is at the built-in push-level,
427// which is when we are parsing built-ins.
428// Also checks for "webgl_" and "_webgl_" reserved identifiers if parsing a
429// webgl shader.
430//
431// Returns true if there was an error.
432//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400433bool TParseContext::reservedErrorCheck(const TSourceLoc &line, const TString& identifier)
John Bauman66b8ab22014-05-06 15:57:45 -0400434{
435 static const char* reservedErrMsg = "reserved built-in name";
436 if (!symbolTable.atBuiltInLevel()) {
437 if (identifier.compare(0, 3, "gl_") == 0) {
438 error(line, reservedErrMsg, "gl_");
439 return true;
440 }
John Bauman66b8ab22014-05-06 15:57:45 -0400441 if (identifier.find("__") != TString::npos) {
442 error(line, "identifiers containing two consecutive underscores (__) are reserved as possible future keywords", identifier.c_str());
443 return true;
444 }
445 }
446
447 return false;
448}
449
450//
451// Make sure there is enough data provided to the constructor to build
452// something of the type of the constructor. Also returns the type of
453// the constructor.
454//
455// Returns true if there was an error in construction.
456//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400457bool TParseContext::constructorErrorCheck(const TSourceLoc &line, TIntermNode* node, TFunction& function, TOperator op, TType* type)
John Bauman66b8ab22014-05-06 15:57:45 -0400458{
459 *type = function.getReturnType();
460
461 bool constructingMatrix = false;
462 switch(op) {
463 case EOpConstructMat2:
Alexis Hetue5246692015-06-18 12:34:52 -0400464 case EOpConstructMat2x3:
465 case EOpConstructMat2x4:
466 case EOpConstructMat3x2:
John Bauman66b8ab22014-05-06 15:57:45 -0400467 case EOpConstructMat3:
Alexis Hetue5246692015-06-18 12:34:52 -0400468 case EOpConstructMat3x4:
469 case EOpConstructMat4x2:
470 case EOpConstructMat4x3:
John Bauman66b8ab22014-05-06 15:57:45 -0400471 case EOpConstructMat4:
472 constructingMatrix = true;
473 break;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400474 default:
John Bauman66b8ab22014-05-06 15:57:45 -0400475 break;
476 }
477
478 //
479 // Note: It's okay to have too many components available, but not okay to have unused
480 // arguments. 'full' will go to true when enough args have been seen. If we loop
481 // again, there is an extra argument, so 'overfull' will become true.
482 //
483
484 int size = 0;
485 bool constType = true;
486 bool full = false;
487 bool overFull = false;
488 bool matrixInMatrix = false;
489 bool arrayArg = false;
Alexis Hetua818c452015-06-11 13:06:58 -0400490 for (size_t i = 0; i < function.getParamCount(); ++i) {
John Bauman66b8ab22014-05-06 15:57:45 -0400491 const TParameter& param = function.getParam(i);
492 size += param.type->getObjectSize();
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400493
John Bauman66b8ab22014-05-06 15:57:45 -0400494 if (constructingMatrix && param.type->isMatrix())
495 matrixInMatrix = true;
496 if (full)
497 overFull = true;
498 if (op != EOpConstructStruct && !type->isArray() && size >= type->getObjectSize())
499 full = true;
Nicolas Capens31ad2aa2015-02-26 13:14:27 -0500500 if (param.type->getQualifier() != EvqConstExpr)
John Bauman66b8ab22014-05-06 15:57:45 -0400501 constType = false;
502 if (param.type->isArray())
503 arrayArg = true;
504 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400505
John Bauman66b8ab22014-05-06 15:57:45 -0400506 if (constType)
Nicolas Capens31ad2aa2015-02-26 13:14:27 -0500507 type->setQualifier(EvqConstExpr);
John Bauman66b8ab22014-05-06 15:57:45 -0400508
Alexis Hetue5246692015-06-18 12:34:52 -0400509 if(type->isArray()) {
510 if(type->getArraySize() == 0) {
511 type->setArraySize(function.getParamCount());
Nicolas Capens5d961882016-01-01 23:18:14 -0500512 } else if(type->getArraySize() != (int)function.getParamCount()) {
Alexis Hetue5246692015-06-18 12:34:52 -0400513 error(line, "array constructor needs one argument per array element", "constructor");
514 return true;
515 }
John Bauman66b8ab22014-05-06 15:57:45 -0400516 }
517
518 if (arrayArg && op != EOpConstructStruct) {
519 error(line, "constructing from a non-dereferenced array", "constructor");
520 return true;
521 }
522
523 if (matrixInMatrix && !type->isArray()) {
524 if (function.getParamCount() != 1) {
525 error(line, "constructing matrix from matrix can only take one argument", "constructor");
526 return true;
527 }
528 }
529
530 if (overFull) {
531 error(line, "too many arguments", "constructor");
532 return true;
533 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400534
Nicolas Capens5d961882016-01-01 23:18:14 -0500535 if (op == EOpConstructStruct && !type->isArray() && type->getStruct()->fields().size() != function.getParamCount()) {
John Bauman66b8ab22014-05-06 15:57:45 -0400536 error(line, "Number of constructor parameters does not match the number of structure fields", "constructor");
537 return true;
538 }
539
540 if (!type->isMatrix() || !matrixInMatrix) {
541 if ((op != EOpConstructStruct && size != 1 && size < type->getObjectSize()) ||
542 (op == EOpConstructStruct && size < type->getObjectSize())) {
543 error(line, "not enough data provided for construction", "constructor");
544 return true;
545 }
546 }
547
548 TIntermTyped *typed = node ? node->getAsTyped() : 0;
549 if (typed == 0) {
550 error(line, "constructor argument does not have a type", "constructor");
551 return true;
552 }
553 if (op != EOpConstructStruct && IsSampler(typed->getBasicType())) {
554 error(line, "cannot convert a sampler", "constructor");
555 return true;
556 }
557 if (typed->getBasicType() == EbtVoid) {
558 error(line, "cannot convert a void", "constructor");
559 return true;
560 }
561
562 return false;
563}
564
565// This function checks to see if a void variable has been declared and raise an error message for such a case
566//
567// returns true in case of an error
568//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400569bool TParseContext::voidErrorCheck(const TSourceLoc &line, const TString& identifier, const TBasicType& type)
John Bauman66b8ab22014-05-06 15:57:45 -0400570{
Alexis Hetudd7ff7a2015-06-11 08:25:30 -0400571 if(type == EbtVoid) {
John Bauman66b8ab22014-05-06 15:57:45 -0400572 error(line, "illegal use of type 'void'", identifier.c_str());
573 return true;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400574 }
John Bauman66b8ab22014-05-06 15:57:45 -0400575
576 return false;
577}
578
579// This function checks to see if the node (for the expression) contains a scalar boolean expression or not
580//
581// returns true in case of an error
582//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400583bool TParseContext::boolErrorCheck(const TSourceLoc &line, const TIntermTyped* type)
John Bauman66b8ab22014-05-06 15:57:45 -0400584{
585 if (type->getBasicType() != EbtBool || type->isArray() || type->isMatrix() || type->isVector()) {
586 error(line, "boolean expression expected", "");
587 return true;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400588 }
John Bauman66b8ab22014-05-06 15:57:45 -0400589
590 return false;
591}
592
593// This function checks to see if the node (for the expression) contains a scalar boolean expression or not
594//
595// returns true in case of an error
596//
Alexis Hetufe1269e2015-06-16 12:43:32 -0400597bool TParseContext::boolErrorCheck(const TSourceLoc &line, const TPublicType& pType)
John Bauman66b8ab22014-05-06 15:57:45 -0400598{
Alexis Hetub14178b2015-04-13 13:23:20 -0400599 if (pType.type != EbtBool || pType.array || (pType.primarySize > 1) || (pType.secondarySize > 1)) {
John Bauman66b8ab22014-05-06 15:57:45 -0400600 error(line, "boolean expression expected", "");
601 return true;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400602 }
John Bauman66b8ab22014-05-06 15:57:45 -0400603
604 return false;
605}
606
Alexis Hetufe1269e2015-06-16 12:43:32 -0400607bool TParseContext::samplerErrorCheck(const TSourceLoc &line, const TPublicType& pType, const char* reason)
John Bauman66b8ab22014-05-06 15:57:45 -0400608{
609 if (pType.type == EbtStruct) {
610 if (containsSampler(*pType.userDef)) {
611 error(line, reason, getBasicString(pType.type), "(structure contains a sampler)");
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400612
John Bauman66b8ab22014-05-06 15:57:45 -0400613 return true;
614 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400615
John Bauman66b8ab22014-05-06 15:57:45 -0400616 return false;
617 } else if (IsSampler(pType.type)) {
618 error(line, reason, getBasicString(pType.type));
619
620 return true;
621 }
622
623 return false;
624}
625
Alexis Hetufe1269e2015-06-16 12:43:32 -0400626bool TParseContext::structQualifierErrorCheck(const TSourceLoc &line, const TPublicType& pType)
John Bauman66b8ab22014-05-06 15:57:45 -0400627{
Alexis Hetu55a2cbc2015-04-16 10:49:45 -0400628 switch(pType.qualifier)
629 {
630 case EvqVaryingOut:
631 case EvqSmooth:
632 case EvqFlat:
633 case EvqCentroidOut:
634 case EvqVaryingIn:
635 case EvqSmoothIn:
636 case EvqFlatIn:
637 case EvqCentroidIn:
638 case EvqAttribute:
Alexis Hetu42ff6b12015-06-03 16:03:48 -0400639 case EvqVertexIn:
640 case EvqFragmentOut:
Alexis Hetu55a2cbc2015-04-16 10:49:45 -0400641 if(pType.type == EbtStruct)
642 {
643 error(line, "cannot be used with a structure", getQualifierString(pType.qualifier));
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400644
Alexis Hetu55a2cbc2015-04-16 10:49:45 -0400645 return true;
646 }
647 break;
648 default:
649 break;
650 }
John Bauman66b8ab22014-05-06 15:57:45 -0400651
652 if (pType.qualifier != EvqUniform && samplerErrorCheck(line, pType, "samplers must be uniform"))
653 return true;
654
Alexis Hetu42ff6b12015-06-03 16:03:48 -0400655 // check for layout qualifier issues
656 const TLayoutQualifier layoutQualifier = pType.layoutQualifier;
657
658 if (pType.qualifier != EvqVertexIn && pType.qualifier != EvqFragmentOut &&
659 layoutLocationErrorCheck(line, pType.layoutQualifier))
660 {
661 return true;
662 }
663
John Bauman66b8ab22014-05-06 15:57:45 -0400664 return false;
665}
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 Capens7c0ec1e2014-06-12 12:18:44 -0400745 if ((qualifier == EvqOut || qualifier == EvqInOut) &&
John Bauman66b8ab22014-05-06 15:57:45 -0400746 type.getBasicType() != EbtStruct && IsSampler(type.getBasicType())) {
747 error(line, "samplers cannot be output parameters", type.getBasicString());
748 return true;
749 }
750
751 return false;
752}
753
754bool TParseContext::containsSampler(TType& type)
755{
756 if (IsSampler(type.getBasicType()))
757 return true;
758
759 if (type.getBasicType() == EbtStruct) {
Alexis Hetua8b364b2015-06-10 11:48:40 -0400760 const TFieldList& fields = type.getStruct()->fields();
761 for(unsigned int i = 0; i < fields.size(); ++i) {
762 if (containsSampler(*fields[i]->type()))
John Bauman66b8ab22014-05-06 15:57:45 -0400763 return true;
764 }
765 }
766
767 return false;
768}
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{
777 TIntermConstantUnion* constant = expr->getAsConstantUnion();
Nicolas Capens3c20f802015-02-17 17:17:20 -0500778
779 if (constant == 0 || !constant->isScalarInt())
780 {
John Bauman66b8ab22014-05-06 15:57:45 -0400781 error(line, "array size must be a constant integer expression", "");
782 return true;
783 }
784
Nicolas Capens3c20f802015-02-17 17:17:20 -0500785 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 Capens3c20f802015-02-17 17:17:20 -0500795 size = static_cast<int>(uintSize);
796 }
797 else
798 {
799 size = constant->getIConst(0);
800
801 if (size <= 0)
802 {
803 error(line, "array size must be a positive integer", "");
804 size = 1;
805 return true;
806 }
John Bauman66b8ab22014-05-06 15:57:45 -0400807 }
808
809 return false;
810}
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{
Alexis Hetu42ff6b12015-06-03 16:03:48 -0400819 if ((type.qualifier == EvqAttribute) || (type.qualifier == EvqVertexIn) || (type.qualifier == EvqConstExpr)) {
John Bauman66b8ab22014-05-06 15:57:45 -0400820 error(line, "cannot declare arrays of this qualifier", TType(type).getCompleteString().c_str());
821 return true;
822 }
823
824 return false;
825}
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{
834 //
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 }
841
842 return false;
843}
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{
847 bool builtIn = false;
Alexis Hetu0a655842015-06-22 16:52:11 -0400848 TSymbol* symbol = symbolTable.find(node->getSymbol(), mShaderVersion, &builtIn);
John Bauman66b8ab22014-05-06 15:57:45 -0400849 if (symbol == 0) {
850 error(line, " undeclared identifier", node->getSymbol().c_str());
851 return true;
852 }
853 TVariable* variable = static_cast<TVariable*>(symbol);
854
855 type->setArrayInformationType(variable->getArrayInformationType());
856 variable->updateArrayInformationType(type);
857
858 // 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") {
Alexis Hetu0a655842015-06-22 16:52:11 -0400861 TSymbol* fragData = symbolTable.find("gl_MaxDrawBuffers", mShaderVersion, &builtIn);
John Bauman66b8ab22014-05-06 15:57:45 -0400862 ASSERT(fragData);
863
864 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 }
870
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400871 // we dont want to update the maxArraySize when this flag is not set, we just want to include this
John Bauman66b8ab22014-05-06 15:57:45 -0400872 // node type in the chain of node types so that its updated when a higher maxArraySize comes in.
873 if (!updateFlag)
874 return false;
875
876 size++;
877 variable->getType().setMaxArraySize(size);
878 type->setMaxArraySize(size);
879 TType* tt = type;
880
881 while(tt->getArrayInformationType() != 0) {
882 tt = tt->getArrayInformationType();
883 tt->setMaxArraySize(size);
884 }
885
886 return false;
887}
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 Capens31ad2aa2015-02-26 13:14:27 -0500896 if (type.qualifier == EvqConstExpr)
John Bauman66b8ab22014-05-06 15:57:45 -0400897 {
898 // Make the qualifier make sense.
899 type.qualifier = EvqTemporary;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -0400900
John Bauman66b8ab22014-05-06 15:57:45 -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 }
913
914 return true;
915 }
916
917 return false;
918}
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 Capensb1e911a2015-02-26 13:16:00 -0500998 if (qualifier != EvqConstReadOnly && qualifier != EvqTemporary) {
John Bauman66b8ab22014-05-06 15:57:45 -0400999 error(line, "qualifier not allowed on function parameter", getQualifierString(qualifier));
1000 return true;
1001 }
Nicolas Capensb1e911a2015-02-26 13:16:00 -05001002 if (qualifier == EvqConstReadOnly && paramQualifier != EvqIn) {
John Bauman66b8ab22014-05-06 15:57:45 -04001003 error(line, "qualifier not allowed with ", getQualifierString(qualifier), getQualifierString(paramQualifier));
1004 return true;
1005 }
1006
Nicolas Capensb1e911a2015-02-26 13:16:00 -05001007 if (qualifier == EvqConstReadOnly)
John Bauman66b8ab22014-05-06 15:57:45 -04001008 type->setQualifier(EvqConstReadOnly);
1009 else
1010 type->setQualifier(paramQualifier);
1011
1012 return false;
1013}
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{
1017 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 }
1032
1033 return false;
1034}
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{
1076 const TExtensionBehavior& extbehavior = extensionBehavior();
1077 TExtensionBehavior::const_iterator iter = extbehavior.find(extension);
1078 return (iter != extbehavior.end());
1079}
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{
Alexis Hetu253fdd12015-07-07 15:12:46 -04001083 pp::SourceLocation loc(line.first_file, line.first_line);
Alexis Hetu0a655842015-06-22 16:52:11 -04001084 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{
Alexis Hetu253fdd12015-07-07 15:12:46 -04001089 pp::SourceLocation loc(line.first_file, line.first_line);
Alexis Hetu0a655842015-06-22 16:52:11 -04001090 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{
1103 const TVariable *variable = NULL;
1104
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
1137 // be rewarded for reading from undefined varaibles, return an error
1138 // 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{
1164 // First find by unmangled name to check whether the function name has been
1165 // hidden by a variable name or struct typename.
Alexis Hetu0a655842015-06-22 16:52:11 -04001166 const TSymbol* symbol = symbolTable.find(call->getName(), mShaderVersion, builtIn);
John Bauman66b8ab22014-05-06 15:57:45 -04001167 if (symbol == 0) {
Alexis Hetu0a655842015-06-22 16:52:11 -04001168 symbol = symbolTable.find(call->getMangledName(), mShaderVersion, builtIn);
John Bauman66b8ab22014-05-06 15:57:45 -04001169 }
1170
1171 if (symbol == 0) {
1172 error(line, "no matching overloaded function found", call->getName().c_str());
1173 return 0;
1174 }
1175
1176 if (!symbol->isFunction()) {
1177 error(line, "function name expected", call->getName().c_str());
1178 return 0;
1179 }
1180
1181 return static_cast<const TFunction*>(symbol);
1182}
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,
Alexis Hetue5246692015-06-18 12:34:52 -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)", "=");
John Bauman66b8ab22014-05-06 15:57:45 -04001217 }
1218
1219 //
1220 // identifier must be of type constant, a global, or a temporary
1221 //
Nicolas Capens0863f0d2016-04-10 00:30:02 -04001222 TQualifier qualifier = type.getQualifier();
Nicolas Capens31ad2aa2015-02-26 13:14:27 -05001223 if ((qualifier != EvqTemporary) && (qualifier != EvqGlobal) && (qualifier != EvqConstExpr)) {
John Bauman66b8ab22014-05-06 15:57:45 -04001224 error(line, " cannot initialize this type of qualifier ", variable->getType().getQualifierString());
1225 return true;
1226 }
1227 //
1228 // test for and propagate constant
1229 //
1230
Nicolas Capens31ad2aa2015-02-26 13:14:27 -05001231 if (qualifier == EvqConstExpr) {
Nicolas Capens0863f0d2016-04-10 00:30:02 -04001232 if (qualifier != initializer->getQualifier()) {
John Bauman66b8ab22014-05-06 15:57:45 -04001233 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
John Bauman66b8ab22014-05-06 15:57:45 -04001241 if (type != initializer->getType()) {
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04001242 error(line, " non-matching types for const initializer ",
John Bauman66b8ab22014-05-06 15:57:45 -04001243 variable->getType().getQualifierString());
1244 variable->getType().setQualifier(EvqTemporary);
1245 return true;
1246 }
Nicolas Capens0863f0d2016-04-10 00:30:02 -04001247
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04001248 if (initializer->getAsConstantUnion()) {
Alexis Hetue5246692015-06-18 12:34:52 -04001249 variable->shareConstPointer(initializer->getAsConstantUnion()->getUnionArrayPointer());
John Bauman66b8ab22014-05-06 15:57:45 -04001250 } else if (initializer->getAsSymbolNode()) {
Alexis Hetue5246692015-06-18 12:34:52 -04001251 const TSymbol* symbol = symbolTable.find(initializer->getAsSymbolNode()->getSymbol(), 0);
John Bauman66b8ab22014-05-06 15:57:45 -04001252 const TVariable* tVar = static_cast<const TVariable*>(symbol);
1253
1254 ConstantUnion* constArray = tVar->getConstPointer();
1255 variable->shareConstPointer(constArray);
John Bauman66b8ab22014-05-06 15:57:45 -04001256 }
1257 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04001258
Nicolas Capens0863f0d2016-04-10 00:30:02 -04001259 if (!variable->isConstant()) {
John Bauman66b8ab22014-05-06 15:57:45 -04001260 TIntermSymbol* intermSymbol = intermediate.addSymbol(variable->getUniqueId(), variable->getName(), variable->getType(), line);
Alexis Hetue5246692015-06-18 12:34:52 -04001261 *intermNode = createAssign(EOpInitialize, intermSymbol, initializer, line);
1262 if(*intermNode == nullptr) {
John Bauman66b8ab22014-05-06 15:57:45 -04001263 assignError(line, "=", intermSymbol->getCompleteString(), initializer->getCompleteString());
1264 return true;
1265 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04001266 } else
Alexis Hetue5246692015-06-18 12:34:52 -04001267 *intermNode = nullptr;
John Bauman66b8ab22014-05-06 15:57:45 -04001268
1269 return false;
1270}
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 Capens7c0ec1e2014-06-12 12:18:44 -04002071 TIntermAggregate *aggregateArguments = arguments->getAsAggregate();
John Bauman66b8ab22014-05-06 15:57:45 -04002072
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002073 if(!aggregateArguments)
2074 {
2075 aggregateArguments = new TIntermAggregate;
2076 aggregateArguments->getSequence().push_back(arguments);
John Bauman66b8ab22014-05-06 15:57:45 -04002077 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002078
2079 if(op == EOpConstructStruct)
2080 {
Alexis Hetua8b364b2015-06-10 11:48:40 -04002081 const TFieldList &fields = type->getStruct()->fields();
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002082 TIntermSequence &args = aggregateArguments->getSequence();
2083
2084 for(size_t i = 0; i < fields.size(); i++)
2085 {
Alexis Hetua8b364b2015-06-10 11:48:40 -04002086 if(args[i]->getAsTyped()->getType() != *fields[i]->type())
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002087 {
2088 error(line, "Structure constructor arguments do not match structure fields", "Error");
2089 recover();
2090
2091 return 0;
2092 }
John Bauman66b8ab22014-05-06 15:57:45 -04002093 }
2094 }
2095
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002096 // Turn the argument list itself into a constructor
Nicolas Capens0863f0d2016-04-10 00:30:02 -04002097 TIntermAggregate *constructor = intermediate.setAggregateOperator(aggregateArguments, op, line);
2098 TIntermTyped *constConstructor = foldConstConstructor(constructor, *type);
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002099 if(constConstructor)
2100 {
John Bauman66b8ab22014-05-06 15:57:45 -04002101 return constConstructor;
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002102 }
John Bauman66b8ab22014-05-06 15:57:45 -04002103
2104 return constructor;
2105}
2106
2107TIntermTyped* TParseContext::foldConstConstructor(TIntermAggregate* aggrNode, const TType& type)
2108{
John Bauman66b8ab22014-05-06 15:57:45 -04002109 aggrNode->setType(type);
Nicolas Capens0863f0d2016-04-10 00:30:02 -04002110 if (aggrNode->isConstantFoldable()) {
John Bauman66b8ab22014-05-06 15:57:45 -04002111 bool returnVal = false;
2112 ConstantUnion* unionArray = new ConstantUnion[type.getObjectSize()];
2113 if (aggrNode->getSequence().size() == 1) {
John Baumand4ae8632014-05-06 16:18:33 -04002114 returnVal = intermediate.parseConstTree(aggrNode->getLine(), aggrNode, unionArray, aggrNode->getOp(), type, true);
John Bauman66b8ab22014-05-06 15:57:45 -04002115 }
2116 else {
John Baumand4ae8632014-05-06 16:18:33 -04002117 returnVal = intermediate.parseConstTree(aggrNode->getLine(), aggrNode, unionArray, aggrNode->getOp(), type);
John Bauman66b8ab22014-05-06 15:57:45 -04002118 }
2119 if (returnVal)
2120 return 0;
2121
2122 return intermediate.addConstantUnion(unionArray, type, aggrNode->getLine());
2123 }
2124
2125 return 0;
2126}
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{
2137 TIntermTyped* typedNode;
2138 TIntermConstantUnion* tempConstantNode = node->getAsConstantUnion();
2139
2140 ConstantUnion *unionArray;
2141 if (tempConstantNode) {
2142 unionArray = tempConstantNode->getUnionArrayPointer();
John Bauman66b8ab22014-05-06 15:57:45 -04002143
2144 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();
2150
2151 return 0;
2152 }
2153
2154 ConstantUnion* constArray = new ConstantUnion[fields.num];
2155
2156 for (int i = 0; i < fields.num; i++) {
2157 if (fields.offsets[i] >= node->getType().getObjectSize()) {
2158 std::stringstream extraInfoStream;
2159 extraInfoStream << "vector field selection out of range '" << fields.offsets[i] << "'";
2160 std::string extraInfo = extraInfoStream.str();
2161 error(line, "", "[", extraInfo.c_str());
2162 recover();
2163 fields.offsets[i] = 0;
2164 }
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002165
John Bauman66b8ab22014-05-06 15:57:45 -04002166 constArray[i] = unionArray[fields.offsets[i]];
2167
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002168 }
John Bauman66b8ab22014-05-06 15:57:45 -04002169 typedNode = intermediate.addConstantUnion(constArray, node->getType(), line);
2170 return typedNode;
2171}
2172
2173//
2174// This function returns the column being accessed from a constant matrix. The values are retrieved from
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002175// the symbol table and parse-tree is built for a vector (each column of a matrix is a vector). The input
2176// to the function could either be a symbol node (m[0] where m is a constant matrix)that represents a
John Bauman66b8ab22014-05-06 15:57:45 -04002177// constant matrix or it could be the tree representation of the constant matrix (s.m1[0] where s is a constant structure)
2178//
Alexis Hetufe1269e2015-06-16 12:43:32 -04002179TIntermTyped* TParseContext::addConstMatrixNode(int index, TIntermTyped* node, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -04002180{
2181 TIntermTyped* typedNode;
2182 TIntermConstantUnion* tempConstantNode = node->getAsConstantUnion();
2183
2184 if (index >= node->getType().getNominalSize()) {
2185 std::stringstream extraInfoStream;
2186 extraInfoStream << "matrix field selection out of range '" << index << "'";
2187 std::string extraInfo = extraInfoStream.str();
2188 error(line, "", "[", extraInfo.c_str());
2189 recover();
2190 index = 0;
2191 }
2192
2193 if (tempConstantNode) {
2194 ConstantUnion* unionArray = tempConstantNode->getUnionArrayPointer();
2195 int size = tempConstantNode->getType().getNominalSize();
2196 typedNode = intermediate.addConstantUnion(&unionArray[size*index], tempConstantNode->getType(), line);
2197 } else {
2198 error(line, "Cannot offset into the matrix", "Error");
2199 recover();
2200
2201 return 0;
2202 }
2203
2204 return typedNode;
2205}
2206
2207
2208//
2209// This function returns an element of an array accessed from a constant array. The values are retrieved from
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002210// the symbol table and parse-tree is built for the type of the element. The input
2211// to the function could either be a symbol node (a[0] where a is a constant array)that represents a
John Bauman66b8ab22014-05-06 15:57:45 -04002212// constant array or it could be the tree representation of the constant array (s.a1[0] where s is a constant structure)
2213//
Alexis Hetufe1269e2015-06-16 12:43:32 -04002214TIntermTyped* TParseContext::addConstArrayNode(int index, TIntermTyped* node, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -04002215{
2216 TIntermTyped* typedNode;
2217 TIntermConstantUnion* tempConstantNode = node->getAsConstantUnion();
2218 TType arrayElementType = node->getType();
2219 arrayElementType.clearArrayness();
2220
2221 if (index >= node->getType().getArraySize()) {
2222 std::stringstream extraInfoStream;
2223 extraInfoStream << "array field selection out of range '" << index << "'";
2224 std::string extraInfo = extraInfoStream.str();
2225 error(line, "", "[", extraInfo.c_str());
2226 recover();
2227 index = 0;
2228 }
2229
2230 int arrayElementSize = arrayElementType.getObjectSize();
2231
2232 if (tempConstantNode) {
2233 ConstantUnion* unionArray = tempConstantNode->getUnionArrayPointer();
2234 typedNode = intermediate.addConstantUnion(&unionArray[arrayElementSize * index], tempConstantNode->getType(), line);
2235 } else {
2236 error(line, "Cannot offset into the array", "Error");
2237 recover();
2238
2239 return 0;
2240 }
2241
2242 return typedNode;
2243}
2244
2245
2246//
Nicolas Capens7c0ec1e2014-06-12 12:18:44 -04002247// This function returns the value of a particular field inside a constant structure from the symbol table.
John Bauman66b8ab22014-05-06 15:57:45 -04002248// If there is an embedded/nested struct, it appropriately calls addConstStructNested or addConstStructFromAggr
2249// function and returns the parse-tree with the values of the embedded/nested struct.
2250//
Alexis Hetufe1269e2015-06-16 12:43:32 -04002251TIntermTyped* TParseContext::addConstStruct(const TString& identifier, TIntermTyped* node, const TSourceLoc &line)
John Bauman66b8ab22014-05-06 15:57:45 -04002252{
Alexis Hetua8b364b2015-06-10 11:48:40 -04002253 const TFieldList &fields = node->getType().getStruct()->fields();
John Bauman66b8ab22014-05-06 15:57:45 -04002254 TIntermTyped *typedNode;
2255 int instanceSize = 0;
2256 unsigned int index = 0;
2257 TIntermConstantUnion *tempConstantNode = node->getAsConstantUnion();
2258
Alexis Hetua8b364b2015-06-10 11:48:40 -04002259 for ( index = 0; index < fields.size(); ++index) {
2260 if (fields[index]->name() == identifier) {
John Bauman66b8ab22014-05-06 15:57:45 -04002261 break;
2262 } else {
Alexis Hetua8b364b2015-06-10 11:48:40 -04002263 instanceSize += fields[index]->type()->getObjectSize();
John Bauman66b8ab22014-05-06 15:57:45 -04002264 }
2265 }
2266
2267 if (tempConstantNode) {
2268 ConstantUnion* constArray = tempConstantNode->getUnionArrayPointer();
2269
2270 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();
2274
2275 return 0;
2276 }
2277
2278 return typedNode;
2279}
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,
2285 const TString* instanceName, const TSourceLoc& instanceLine, TIntermTyped* arrayIndex, const TSourceLoc& arrayIndexLine)
2286{
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;
2367 if(arrayIndex != NULL)
2368 {
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{
2426 TIntermTyped *indexedExpression = NULL;
2427
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{
2586 TIntermTyped *indexedExpression = NULL;
2587
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(),
2625 EvqTemporary, (unsigned char)vectorString.size()));
2626 }
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{
2779 TLayoutQualifier qualifier;
2780
2781 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 Capens7d626792015-02-17 17:58:31 -05002806 {
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 }
2815
2816 return qualifier;
2817}
2818
2819TLayoutQualifier TParseContext::parseLayoutQualifier(const TString &qualifierType, const TSourceLoc& qualifierTypeLine, const TString &intValueString, int intValue, const TSourceLoc& intValueLine)
2820{
2821 TLayoutQualifier qualifier;
2822
2823 qualifier.location = -1;
Alexis Hetuad6b8752015-06-09 16:15:30 -04002824 qualifier.matrixPacking = EmpUnspecified;
2825 qualifier.blockStorage = EbsUnspecified;
Nicolas Capens7d626792015-02-17 17:58:31 -05002826
2827 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 }
2845
2846 return qualifier;
2847}
2848
2849TLayoutQualifier TParseContext::joinLayoutQualifiers(TLayoutQualifier leftQualifier, TLayoutQualifier rightQualifier)
2850{
2851 TLayoutQualifier joinedQualifier = leftQualifier;
2852
2853 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
2866 return joinedQualifier;
2867}
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{
Alexis Hetu0a655842015-06-22 16:52:11 -04003009 ++mStructNestingLevel;
John Bauman66b8ab22014-05-06 15:57:45 -04003010
3011 // 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.
Alexis Hetu0a655842015-06-22 16:52:11 -04003014 if (mStructNestingLevel > 1) {
John Bauman66b8ab22014-05-06 15:57:45 -04003015 error(line, "", "Embedded struct definitions are not allowed");
3016 return true;
3017 }
3018
3019 return false;
3020}
3021
3022void TParseContext::exitStructDeclaration()
3023{
Alexis Hetu0a655842015-06-22 16:52:11 -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
3095 return intermediate.addUnaryMath(op, child, loc); // FIXME , funcReturnType);
3096}
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 }
3539 callNode->setType(type);
3540 }
3541 else
3542 {
3543 //
3544 // Not a constructor. Find it in the symbol table.
3545 //
3546 const TFunction *fnCandidate;
3547 bool builtIn;
3548 fnCandidate = findFunction(loc, fnCall, &builtIn);
3549 if(fnCandidate)
3550 {
3551 //
3552 // A declared function.
3553 //
3554 if(builtIn && !fnCandidate->getExtension().empty() &&
3555 extensionErrorCheck(loc, fnCandidate->getExtension()))
3556 {
3557 recover();
3558 }
3559 op = fnCandidate->getBuiltInOp();
3560 if(builtIn && op != EOpNull)
3561 {
3562 //
3563 // A function call mapped to a built-in operation.
3564 //
3565 if(fnCandidate->getParamCount() == 1)
3566 {
3567 //
3568 // Treat it like a built-in unary operator.
3569 //
3570 callNode = createUnaryMath(op, paramNode->getAsTyped(), loc, &fnCandidate->getReturnType());
3571 if(callNode == nullptr)
3572 {
3573 std::stringstream extraInfoStream;
3574 extraInfoStream << "built in unary operator function. Type: "
3575 << static_cast<TIntermTyped*>(paramNode)->getCompleteString();
3576 std::string extraInfo = extraInfoStream.str();
3577 error(paramNode->getLine(), " wrong operand type", "Internal Error", extraInfo.c_str());
3578 *fatalError = true;
3579 return nullptr;
3580 }
3581 }
3582 else
3583 {
3584 TIntermAggregate *aggregate = intermediate.setAggregateOperator(paramNode, op, loc);
3585 aggregate->setType(fnCandidate->getReturnType());
3586
3587 // Some built-in functions have out parameters too.
3588 functionCallLValueErrorCheck(fnCandidate, aggregate);
3589
3590 callNode = aggregate;
3591 }
3592 }
3593 else
3594 {
3595 // This is a real function call
3596
3597 TIntermAggregate *aggregate = intermediate.setAggregateOperator(paramNode, EOpFunctionCall, loc);
3598 aggregate->setType(fnCandidate->getReturnType());
3599
3600 // this is how we know whether the given function is a builtIn function or a user defined function
3601 // if builtIn == false, it's a userDefined -> could be an overloaded builtIn function also
3602 // if builtIn == true, it's definitely a builtIn function with EOpNull
3603 if(!builtIn)
3604 aggregate->setUserDefined();
3605 aggregate->setName(fnCandidate->getMangledName());
3606
3607 callNode = aggregate;
3608
3609 functionCallLValueErrorCheck(fnCandidate, aggregate);
3610 }
3611 callNode->setType(fnCandidate->getReturnType());
3612 }
3613 else
3614 {
3615 // error message was put out by findFunction()
3616 // Put on a dummy node for error recovery
3617 ConstantUnion *unionArray = new ConstantUnion[1];
3618 unionArray->setFConst(0.0f);
3619 callNode = intermediate.addConstantUnion(unionArray, TType(EbtFloat, EbpUndefined, EvqConstExpr), loc);
3620 recover();
3621 }
3622 }
3623 delete fnCall;
3624 return callNode;
3625}
3626
Alexis Hetueee212e2015-07-07 17:13:30 -04003627TIntermTyped *TParseContext::addTernarySelection(TIntermTyped *cond, TIntermTyped *trueBlock, TIntermTyped *falseBlock, const TSourceLoc &loc)
3628{
3629 if(boolErrorCheck(loc, cond))
3630 recover();
3631
3632 if(trueBlock->getType() != falseBlock->getType())
3633 {
3634 binaryOpError(loc, ":", trueBlock->getCompleteString(), falseBlock->getCompleteString());
3635 recover();
3636 return falseBlock;
3637 }
3638 // ESSL1 sections 5.2 and 5.7:
3639 // ESSL3 section 5.7:
3640 // Ternary operator is not among the operators allowed for structures/arrays.
3641 if(trueBlock->isArray() || trueBlock->getBasicType() == EbtStruct)
3642 {
3643 error(loc, "ternary operator is not allowed for structures or arrays", ":");
3644 recover();
3645 return falseBlock;
3646 }
3647 return intermediate.addSelection(cond, trueBlock, falseBlock, loc);
3648}
3649
John Bauman66b8ab22014-05-06 15:57:45 -04003650//
3651// Parse an array of strings using yyparse.
3652//
3653// Returns 0 for success.
3654//
3655int PaParseStrings(int count, const char* const string[], const int length[],
3656 TParseContext* context) {
3657 if ((count == 0) || (string == NULL))
3658 return 1;
3659
3660 if (glslang_initialize(context))
3661 return 1;
3662
3663 int error = glslang_scan(count, string, length, context);
3664 if (!error)
3665 error = glslang_parse(context);
3666
3667 glslang_finalize(context);
3668
3669 return (error == 0) && (context->numErrors() == 0) ? 0 : 1;
3670}
3671
3672
3673