blob: 1f4cbdeba9590008991c7498b29e4b73adb6bece [file] [log] [blame]
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001//
Nicolas Capens16004fc2014-06-11 11:29:11 -04002// Copyright (c) 2002-2014 The ANGLE Project Authors. All rights reserved.
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6#ifndef _PARSER_HELPER_INCLUDED_
7#define _PARSER_HELPER_INCLUDED_
8
Jamie Madilld4a3a312014-06-25 16:04:56 -04009#include "compiler/translator/Compiler.h"
Geoff Lang17732822013-08-29 13:46:49 -040010#include "compiler/translator/Diagnostics.h"
11#include "compiler/translator/DirectiveHandler.h"
Jamie Madillb1a85f42014-08-19 15:23:24 -040012#include "compiler/translator/Intermediate.h"
Geoff Lang17732822013-08-29 13:46:49 -040013#include "compiler/translator/SymbolTable.h"
daniel@transgaming.comb401a922012-10-26 18:58:24 +000014#include "compiler/preprocessor/Preprocessor.h"
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000015
16struct TMatrixFields {
daniel@transgaming.com0578f812010-05-17 09:58:39 +000017 bool wholeRow;
18 bool wholeCol;
19 int row;
20 int col;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000021};
22
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000023//
24// The following are extra variables needed during parsing, grouped together so
25// they can be passed to the parser without needing a global.
26//
27struct TParseContext {
Jamie Madill183bde52014-07-02 15:31:19 -040028 TParseContext(TSymbolTable& symt, TExtensionBehavior& ext, TIntermediate& interm, sh::GLenum type, ShShaderSpec spec, int options, bool checksPrecErrors, const char* sourcePath, TInfoSink& is) :
kbr@chromium.org476541f2011-10-27 21:14:51 +000029 intermediate(interm),
30 symbolTable(symt),
kbr@chromium.org476541f2011-10-27 21:14:51 +000031 shaderType(type),
32 shaderSpec(spec),
33 compileOptions(options),
34 sourcePath(sourcePath),
35 treeRoot(0),
kbr@chromium.org476541f2011-10-27 21:14:51 +000036 loopNestingLevel(0),
37 structNestingLevel(0),
kbr@chromium.org476541f2011-10-27 21:14:51 +000038 currentFunctionType(NULL),
39 functionReturnsValue(false),
40 checksPrecisionErrors(checksPrecErrors),
Jamie Madill099c0f32013-06-20 11:55:52 -040041 defaultMatrixPacking(EmpColumnMajor),
Jamie Madill1566ef72013-06-20 11:55:54 -040042 defaultBlockStorage(EbsShared),
alokp@chromium.org73bc2982012-06-19 18:48:05 +000043 diagnostics(is),
shannon.woods%transgaming.com@gtempaccount.com5524db02013-04-13 03:38:16 +000044 shaderVersion(100),
45 directiveHandler(ext, diagnostics, shaderVersion),
alokp@chromium.org73bc2982012-06-19 18:48:05 +000046 preprocessor(&diagnostics, &directiveHandler),
kbr@chromium.org476541f2011-10-27 21:14:51 +000047 scanner(NULL) { }
daniel@transgaming.com0578f812010-05-17 09:58:39 +000048 TIntermediate& intermediate; // to hold and build a parse tree
49 TSymbolTable& symbolTable; // symbol table that goes with the language currently being parsed
Jamie Madill183bde52014-07-02 15:31:19 -040050 sh::GLenum shaderType; // vertex or fragment language (future: pack or unpack)
alokp@chromium.org4888ceb2010-10-01 21:13:12 +000051 ShShaderSpec shaderSpec; // The language specification compiler conforms to - GLES2 or WebGL.
shannon.woods%transgaming.com@gtempaccount.com5524db02013-04-13 03:38:16 +000052 int shaderVersion;
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +000053 int compileOptions;
54 const char* sourcePath; // Path of source file or NULL.
daniel@transgaming.com0578f812010-05-17 09:58:39 +000055 TIntermNode* treeRoot; // root of parse tree being created
daniel@transgaming.com0578f812010-05-17 09:58:39 +000056 int loopNestingLevel; // 0 if outside all loops
kbr@chromium.org476541f2011-10-27 21:14:51 +000057 int structNestingLevel; // incremented while parsing a struct declaration
daniel@transgaming.com0578f812010-05-17 09:58:39 +000058 const TType* currentFunctionType; // the return type of the function that's currently being parsed
59 bool functionReturnsValue; // true if a non-void function has a return
zmo@google.comdc4b4f82011-06-17 00:42:53 +000060 bool checksPrecisionErrors; // true if an error will be generated when a variable is declared without precision, explicit or implicit.
shannon.woods%transgaming.com@gtempaccount.comcbb6b6a2013-04-13 03:27:47 +000061 bool fragmentPrecisionHigh; // true if highp precision is supported in the fragment language.
Jamie Madill099c0f32013-06-20 11:55:52 -040062 TLayoutMatrixPacking defaultMatrixPacking;
Jamie Madill1566ef72013-06-20 11:55:54 -040063 TLayoutBlockStorage defaultBlockStorage;
alokp@chromium.org75fe6b72011-08-14 05:31:22 +000064 TString HashErrMsg;
alokp@chromium.org73bc2982012-06-19 18:48:05 +000065 TDiagnostics diagnostics;
66 TDirectiveHandler directiveHandler;
67 pp::Preprocessor preprocessor;
alokp@chromium.org75fe6b72011-08-14 05:31:22 +000068 void* scanner;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000069
shannon.woods%transgaming.com@gtempaccount.com5524db02013-04-13 03:38:16 +000070 int getShaderVersion() const { return shaderVersion; }
alokp@chromium.org6b495712012-06-29 00:06:58 +000071 int numErrors() const { return diagnostics.numErrors(); }
alokp@chromium.org646ea1e2012-06-15 17:36:31 +000072 TInfoSink& infoSink() { return diagnostics.infoSink(); }
Jamie Madill075edd82013-07-08 13:30:19 -040073 void error(const TSourceLoc& loc, const char *reason, const char* token,
maxvujovic@gmail.comc6b3b3c2012-06-27 22:49:39 +000074 const char* extraInfo="");
Jamie Madill075edd82013-07-08 13:30:19 -040075 void warning(const TSourceLoc& loc, const char* reason, const char* token,
maxvujovic@gmail.comc6b3b3c2012-06-27 22:49:39 +000076 const char* extraInfo="");
alokp@chromium.org8b851c62012-06-15 16:25:11 +000077 void trace(const char* str);
daniel@transgaming.com0578f812010-05-17 09:58:39 +000078 void recover();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000079
Jamie Madill5c097022014-08-20 16:38:32 -040080 // This method is guaranteed to succeed, even if no variable with 'name' exists.
81 const TVariable *getNamedVariable(const TSourceLoc &location, const TString *name, const TSymbol *symbol);
82
Jamie Madill075edd82013-07-08 13:30:19 -040083 bool parseVectorFields(const TString&, int vecSize, TVectorFields&, const TSourceLoc& line);
84 bool parseMatrixFields(const TString&, int matCols, int matRows, TMatrixFields&, const TSourceLoc& line);
alokp@chromium.org75fe6b72011-08-14 05:31:22 +000085
Jamie Madill075edd82013-07-08 13:30:19 -040086 bool reservedErrorCheck(const TSourceLoc& line, const TString& identifier);
87 void assignError(const TSourceLoc& line, const char* op, TString left, TString right);
88 void unaryOpError(const TSourceLoc& line, const char* op, TString operand);
89 void binaryOpError(const TSourceLoc& line, const char* op, TString left, TString right);
90 bool precisionErrorCheck(const TSourceLoc& line, TPrecision precision, TBasicType type);
91 bool lValueErrorCheck(const TSourceLoc& line, const char* op, TIntermTyped*);
daniel@transgaming.com0578f812010-05-17 09:58:39 +000092 bool constErrorCheck(TIntermTyped* node);
93 bool integerErrorCheck(TIntermTyped* node, const char* token);
Jamie Madill075edd82013-07-08 13:30:19 -040094 bool globalErrorCheck(const TSourceLoc& line, bool global, const char* token);
95 bool constructorErrorCheck(const TSourceLoc& line, TIntermNode*, TFunction&, TOperator, TType*);
96 bool arraySizeErrorCheck(const TSourceLoc& line, TIntermTyped* expr, int& size);
97 bool arrayQualifierErrorCheck(const TSourceLoc& line, TPublicType type);
98 bool arrayTypeErrorCheck(const TSourceLoc& line, TPublicType type);
99 bool arrayErrorCheck(const TSourceLoc& line, const TString& identifier, const TPublicType &type, TVariable*& variable);
100 bool voidErrorCheck(const TSourceLoc&, const TString&, const TPublicType&);
101 bool boolErrorCheck(const TSourceLoc&, const TIntermTyped*);
102 bool boolErrorCheck(const TSourceLoc&, const TPublicType&);
103 bool samplerErrorCheck(const TSourceLoc& line, const TPublicType& pType, const char* reason);
104 bool structQualifierErrorCheck(const TSourceLoc& line, const TPublicType& pType);
105 bool locationDeclaratorListCheck(const TSourceLoc& line, const TPublicType &pType);
106 bool parameterSamplerErrorCheck(const TSourceLoc& line, TQualifier qualifier, const TType& type);
107 bool nonInitConstErrorCheck(const TSourceLoc& line, const TString& identifier, TPublicType& type, bool array);
108 bool nonInitErrorCheck(const TSourceLoc& line, const TString& identifier, const TPublicType& type, TVariable*& variable);
109 bool paramErrorCheck(const TSourceLoc& line, TQualifier qualifier, TQualifier paramQualifier, TType* type);
110 bool extensionErrorCheck(const TSourceLoc& line, const TString&);
111 bool singleDeclarationErrorCheck(TPublicType &publicType, const TSourceLoc& identifierLocation, const TString &identifier);
112 bool layoutLocationErrorCheck(const TSourceLoc& location, const TLayoutQualifier &layoutQualifier);
alokp@chromium.org8b851c62012-06-15 16:25:11 +0000113
Jamie Madill7a217de2013-07-08 15:10:00 -0400114 const TPragma& pragma() const { return directiveHandler.pragma(); }
alokp@chromium.org73bc2982012-06-19 18:48:05 +0000115 const TExtensionBehavior& extensionBehavior() const { return directiveHandler.extensionBehavior(); }
zmo@google.com09c323a2011-08-12 18:22:25 +0000116 bool supportsExtension(const char* extension);
Jamie Madill5d287f52013-07-12 15:38:19 -0400117 bool isExtensionEnabled(const char* extension) const;
Jamie Madill075edd82013-07-08 13:30:19 -0400118 void handleExtensionDirective(const TSourceLoc& loc, const char* extName, const char* behavior);
119 void handlePragmaDirective(const TSourceLoc& loc, const char* name, const char* value);
alokp@chromium.org75fe6b72011-08-14 05:31:22 +0000120
121 bool containsSampler(TType& type);
122 bool areAllChildConst(TIntermAggregate* aggrNode);
Jamie Madill075edd82013-07-08 13:30:19 -0400123 const TFunction* findFunction(const TSourceLoc& line, TFunction* pfnCall, int shaderVersion, bool *builtIn = 0);
124 bool executeInitializer(const TSourceLoc& line, const TString& identifier, TPublicType& pType,
daniel@transgaming.com0578f812010-05-17 09:58:39 +0000125 TIntermTyped* initializer, TIntermNode*& intermNode, TVariable* variable = 0);
alokp@chromium.org75fe6b72011-08-14 05:31:22 +0000126
shannonwoods@chromium.org0f376ca2013-05-30 00:19:23 +0000127 TPublicType addFullySpecifiedType(TQualifier qualifier, const TPublicType& typeSpecifier);
Jamie Madilla5efff92013-06-06 11:56:47 -0400128 TPublicType addFullySpecifiedType(TQualifier qualifier, TLayoutQualifier layoutQualifier, const TPublicType& typeSpecifier);
Jamie Madill075edd82013-07-08 13:30:19 -0400129 TIntermAggregate* parseSingleDeclaration(TPublicType &publicType, const TSourceLoc& identifierLocation, const TString &identifier);
130 TIntermAggregate* parseSingleArrayDeclaration(TPublicType &publicType, const TSourceLoc& identifierLocation, const TString &identifier, const TSourceLoc& indexLocation, TIntermTyped *indexExpression);
131 TIntermAggregate* parseSingleInitDeclaration(TPublicType &publicType, const TSourceLoc& identifierLocation, const TString &identifier, const TSourceLoc& initLocation, TIntermTyped *initializer);
Jamie Madill47e3ec02014-08-20 16:38:33 -0400132 TIntermAggregate* parseInvariantDeclaration(const TSourceLoc &invariantLoc, const TSourceLoc &identifierLoc, const TString *identifier, const TSymbol *symbol);
133
Jamie Madill075edd82013-07-08 13:30:19 -0400134 TIntermAggregate* parseDeclarator(TPublicType &publicType, TIntermAggregate *aggregateDeclaration, TSymbol *identifierSymbol, const TSourceLoc& identifierLocation, const TString &identifier);
135 TIntermAggregate* parseArrayDeclarator(TPublicType &publicType, const TSourceLoc& identifierLocation, const TString &identifier, const TSourceLoc& arrayLocation, TIntermNode *declaratorList, TIntermTyped *indexExpression);
136 TIntermAggregate* parseInitDeclarator(TPublicType &publicType, TIntermAggregate *declaratorList, const TSourceLoc& identifierLocation, const TString &identifier, const TSourceLoc& initLocation, TIntermTyped *initializer);
Jamie Madilla295edf2013-06-06 11:56:48 -0400137 void parseGlobalLayoutQualifier(const TPublicType &typeQualifier);
shannonwoods@chromium.org18851132013-05-30 00:19:54 +0000138 TFunction *addConstructorFunc(TPublicType publicType);
Jamie Madill075edd82013-07-08 13:30:19 -0400139 TIntermTyped* addConstructor(TIntermNode*, const TType*, TOperator, TFunction*, const TSourceLoc&);
daniel@transgaming.com0578f812010-05-17 09:58:39 +0000140 TIntermTyped* foldConstConstructor(TIntermAggregate* aggrNode, const TType& type);
Jamie Madill075edd82013-07-08 13:30:19 -0400141 TIntermTyped* addConstVectorNode(TVectorFields&, TIntermTyped*, const TSourceLoc&);
142 TIntermTyped* addConstMatrixNode(int , TIntermTyped*, const TSourceLoc&);
143 TIntermTyped* addConstArrayNode(int index, TIntermTyped* node, const TSourceLoc& line);
144 TIntermTyped* addConstStruct(const TString &identifier, TIntermTyped *node, const TSourceLoc& line);
145 TIntermTyped* addIndexExpression(TIntermTyped *baseExpression, const TSourceLoc& location, TIntermTyped *indexExpression);
146 TIntermTyped* addFieldSelectionExpression(TIntermTyped *baseExpression, const TSourceLoc& dotLocation, const TString &fieldString, const TSourceLoc& fieldLocation);
shannonwoods@chromium.orga9100882013-05-30 00:11:39 +0000147
Jamie Madill98493dd2013-07-08 14:39:03 -0400148 TFieldList *addStructDeclaratorList(const TPublicType& typeSpecifier, TFieldList *fieldList);
149 TPublicType addStructure(const TSourceLoc& structLine, const TSourceLoc& nameLine, const TString *structName, TFieldList* fieldList);
kbr@chromium.org476541f2011-10-27 21:14:51 +0000150
Jamie Madill98493dd2013-07-08 14:39:03 -0400151 TIntermAggregate* addInterfaceBlock(const TPublicType& typeQualifier, const TSourceLoc& nameLine, const TString& blockName, TFieldList* fieldList,
152 const TString* instanceName, const TSourceLoc& instanceLine, TIntermTyped* arrayIndex, const TSourceLoc& arrayIndexLine);
shannonwoods@chromium.org5668c5d2013-05-30 00:11:48 +0000153
Jamie Madill075edd82013-07-08 13:30:19 -0400154 TLayoutQualifier parseLayoutQualifier(const TString &qualifierType, const TSourceLoc& qualifierTypeLine);
155 TLayoutQualifier parseLayoutQualifier(const TString &qualifierType, const TSourceLoc& qualifierTypeLine, const TString &intValueString, int intValue, const TSourceLoc& intValueLine);
Jamie Madilla5efff92013-06-06 11:56:47 -0400156 TLayoutQualifier joinLayoutQualifiers(TLayoutQualifier leftQualifier, TLayoutQualifier rightQualifier);
Jamie Madillf2e0f9b2013-08-26 16:39:42 -0400157 TPublicType joinInterpolationQualifiers(const TSourceLoc &interpolationLoc, TQualifier interpolationQualifier,
158 const TSourceLoc &storageLoc, TQualifier storageQualifier);
shannonwoods@chromium.org302adfe2013-05-30 00:21:06 +0000159
kbr@chromium.org476541f2011-10-27 21:14:51 +0000160 // Performs an error check for embedded struct declarations.
161 // Returns true if an error was raised due to the declaration of
162 // this struct.
Jamie Madill075edd82013-07-08 13:30:19 -0400163 bool enterStructDeclaration(const TSourceLoc& line, const TString& identifier);
kbr@chromium.org476541f2011-10-27 21:14:51 +0000164 void exitStructDeclaration();
165
Jamie Madill98493dd2013-07-08 14:39:03 -0400166 bool structNestingErrorCheck(const TSourceLoc& line, const TField& field);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000167};
168
shannon.woods@transgaming.comd64b3da2013-02-28 23:19:26 +0000169int PaParseStrings(size_t count, const char* const string[], const int length[],
alokp@chromium.org044a5cf2010-11-12 15:42:16 +0000170 TParseContext* context);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000171
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000172#endif // _PARSER_HELPER_INCLUDED_