daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 1 | // |
daniel@transgaming.com | 8abd0b7 | 2012-09-27 17:46:07 +0000 | [diff] [blame] | 2 | // Copyright (c) 2002-2012 The ANGLE Project Authors. All rights reserved. |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 3 | // 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 | |
alokp@chromium.org | 8b851c6 | 2012-06-15 16:25:11 +0000 | [diff] [blame] | 9 | #include "compiler/Diagnostics.h" |
| 10 | #include "compiler/DirectiveHandler.h" |
alokp@chromium.org | ad771eb | 2010-09-07 17:36:23 +0000 | [diff] [blame] | 11 | #include "compiler/localintermediate.h" |
daniel@transgaming.com | b401a92 | 2012-10-26 18:58:24 +0000 | [diff] [blame] | 12 | #include "compiler/preprocessor/Preprocessor.h" |
daniel@transgaming.com | bbf56f7 | 2010-04-20 18:52:13 +0000 | [diff] [blame] | 13 | #include "compiler/ShHandle.h" |
| 14 | #include "compiler/SymbolTable.h" |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 15 | |
| 16 | struct TMatrixFields { |
daniel@transgaming.com | 0578f81 | 2010-05-17 09:58:39 +0000 | [diff] [blame] | 17 | bool wholeRow; |
| 18 | bool wholeCol; |
| 19 | int row; |
| 20 | int col; |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 21 | }; |
| 22 | |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 23 | // |
| 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 | // |
| 27 | struct TParseContext { |
zmo@google.com | dc4b4f8 | 2011-06-17 00:42:53 +0000 | [diff] [blame] | 28 | TParseContext(TSymbolTable& symt, TExtensionBehavior& ext, TIntermediate& interm, ShShaderType type, ShShaderSpec spec, int options, bool checksPrecErrors, const char* sourcePath, TInfoSink& is) : |
kbr@chromium.org | 476541f | 2011-10-27 21:14:51 +0000 | [diff] [blame] | 29 | intermediate(interm), |
| 30 | symbolTable(symt), |
kbr@chromium.org | 476541f | 2011-10-27 21:14:51 +0000 | [diff] [blame] | 31 | shaderType(type), |
| 32 | shaderSpec(spec), |
| 33 | compileOptions(options), |
| 34 | sourcePath(sourcePath), |
| 35 | treeRoot(0), |
kbr@chromium.org | 476541f | 2011-10-27 21:14:51 +0000 | [diff] [blame] | 36 | lexAfterType(false), |
| 37 | loopNestingLevel(0), |
| 38 | structNestingLevel(0), |
| 39 | inTypeParen(false), |
| 40 | currentFunctionType(NULL), |
| 41 | functionReturnsValue(false), |
| 42 | checksPrecisionErrors(checksPrecErrors), |
alokp@chromium.org | 73bc298 | 2012-06-19 18:48:05 +0000 | [diff] [blame] | 43 | diagnostics(is), |
| 44 | directiveHandler(ext, diagnostics), |
| 45 | preprocessor(&diagnostics, &directiveHandler), |
kbr@chromium.org | 476541f | 2011-10-27 21:14:51 +0000 | [diff] [blame] | 46 | scanner(NULL) { } |
daniel@transgaming.com | 0578f81 | 2010-05-17 09:58:39 +0000 | [diff] [blame] | 47 | TIntermediate& intermediate; // to hold and build a parse tree |
| 48 | TSymbolTable& symbolTable; // symbol table that goes with the language currently being parsed |
alokp@chromium.org | 4888ceb | 2010-10-01 21:13:12 +0000 | [diff] [blame] | 49 | ShShaderType shaderType; // vertex or fragment language (future: pack or unpack) |
| 50 | ShShaderSpec shaderSpec; // The language specification compiler conforms to - GLES2 or WebGL. |
apatrick@chromium.org | 0f4cefe | 2011-01-26 19:30:57 +0000 | [diff] [blame] | 51 | int compileOptions; |
| 52 | const char* sourcePath; // Path of source file or NULL. |
daniel@transgaming.com | 0578f81 | 2010-05-17 09:58:39 +0000 | [diff] [blame] | 53 | TIntermNode* treeRoot; // root of parse tree being created |
daniel@transgaming.com | 0578f81 | 2010-05-17 09:58:39 +0000 | [diff] [blame] | 54 | bool lexAfterType; // true if we've recognized a type, so can only be looking for an identifier |
| 55 | int loopNestingLevel; // 0 if outside all loops |
kbr@chromium.org | 476541f | 2011-10-27 21:14:51 +0000 | [diff] [blame] | 56 | int structNestingLevel; // incremented while parsing a struct declaration |
daniel@transgaming.com | 0578f81 | 2010-05-17 09:58:39 +0000 | [diff] [blame] | 57 | bool inTypeParen; // true if in parentheses, looking only for an identifier |
| 58 | 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.com | dc4b4f8 | 2011-06-17 00:42:53 +0000 | [diff] [blame] | 60 | bool checksPrecisionErrors; // true if an error will be generated when a variable is declared without precision, explicit or implicit. |
shannon.woods%transgaming.com@gtempaccount.com | cbb6b6a | 2013-04-13 03:27:47 +0000 | [diff] [blame^] | 61 | bool fragmentPrecisionHigh; // true if highp precision is supported in the fragment language. |
alokp@chromium.org | 75fe6b7 | 2011-08-14 05:31:22 +0000 | [diff] [blame] | 62 | TString HashErrMsg; |
| 63 | bool AfterEOF; |
alokp@chromium.org | 73bc298 | 2012-06-19 18:48:05 +0000 | [diff] [blame] | 64 | TDiagnostics diagnostics; |
| 65 | TDirectiveHandler directiveHandler; |
| 66 | pp::Preprocessor preprocessor; |
alokp@chromium.org | 75fe6b7 | 2011-08-14 05:31:22 +0000 | [diff] [blame] | 67 | void* scanner; |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 68 | |
alokp@chromium.org | 6b49571 | 2012-06-29 00:06:58 +0000 | [diff] [blame] | 69 | int numErrors() const { return diagnostics.numErrors(); } |
alokp@chromium.org | 646ea1e | 2012-06-15 17:36:31 +0000 | [diff] [blame] | 70 | TInfoSink& infoSink() { return diagnostics.infoSink(); } |
alokp@chromium.org | 044a5cf | 2010-11-12 15:42:16 +0000 | [diff] [blame] | 71 | void error(TSourceLoc loc, const char *reason, const char* token, |
maxvujovic@gmail.com | c6b3b3c | 2012-06-27 22:49:39 +0000 | [diff] [blame] | 72 | const char* extraInfo=""); |
alokp@chromium.org | 044a5cf | 2010-11-12 15:42:16 +0000 | [diff] [blame] | 73 | void warning(TSourceLoc loc, const char* reason, const char* token, |
maxvujovic@gmail.com | c6b3b3c | 2012-06-27 22:49:39 +0000 | [diff] [blame] | 74 | const char* extraInfo=""); |
alokp@chromium.org | 8b851c6 | 2012-06-15 16:25:11 +0000 | [diff] [blame] | 75 | void trace(const char* str); |
daniel@transgaming.com | 0578f81 | 2010-05-17 09:58:39 +0000 | [diff] [blame] | 76 | void recover(); |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 77 | |
daniel@transgaming.com | 0578f81 | 2010-05-17 09:58:39 +0000 | [diff] [blame] | 78 | bool parseVectorFields(const TString&, int vecSize, TVectorFields&, int line); |
| 79 | bool parseMatrixFields(const TString&, int matSize, TMatrixFields&, int line); |
alokp@chromium.org | 75fe6b7 | 2011-08-14 05:31:22 +0000 | [diff] [blame] | 80 | |
| 81 | bool reservedErrorCheck(int line, const TString& identifier); |
daniel@transgaming.com | 0578f81 | 2010-05-17 09:58:39 +0000 | [diff] [blame] | 82 | void assignError(int line, const char* op, TString left, TString right); |
| 83 | void unaryOpError(int line, const char* op, TString operand); |
| 84 | void binaryOpError(int line, const char* op, TString left, TString right); |
daniel@transgaming.com | a5d7623 | 2010-05-17 09:58:47 +0000 | [diff] [blame] | 85 | bool precisionErrorCheck(int line, TPrecision precision, TBasicType type); |
daniel@transgaming.com | 0578f81 | 2010-05-17 09:58:39 +0000 | [diff] [blame] | 86 | bool lValueErrorCheck(int line, const char* op, TIntermTyped*); |
| 87 | bool constErrorCheck(TIntermTyped* node); |
| 88 | bool integerErrorCheck(TIntermTyped* node, const char* token); |
| 89 | bool globalErrorCheck(int line, bool global, const char* token); |
| 90 | bool constructorErrorCheck(int line, TIntermNode*, TFunction&, TOperator, TType*); |
| 91 | bool arraySizeErrorCheck(int line, TIntermTyped* expr, int& size); |
| 92 | bool arrayQualifierErrorCheck(int line, TPublicType type); |
| 93 | bool arrayTypeErrorCheck(int line, TPublicType type); |
| 94 | bool arrayErrorCheck(int line, TString& identifier, TPublicType type, TVariable*& variable); |
| 95 | bool voidErrorCheck(int, const TString&, const TPublicType&); |
| 96 | bool boolErrorCheck(int, const TIntermTyped*); |
| 97 | bool boolErrorCheck(int, const TPublicType&); |
| 98 | bool samplerErrorCheck(int line, const TPublicType& pType, const char* reason); |
| 99 | bool structQualifierErrorCheck(int line, const TPublicType& pType); |
| 100 | bool parameterSamplerErrorCheck(int line, TQualifier qualifier, const TType& type); |
daniel@transgaming.com | 8abd0b7 | 2012-09-27 17:46:07 +0000 | [diff] [blame] | 101 | bool nonInitConstErrorCheck(int line, TString& identifier, TPublicType& type, bool array); |
zmo@google.com | fd747b8 | 2011-04-23 01:30:07 +0000 | [diff] [blame] | 102 | bool nonInitErrorCheck(int line, TString& identifier, TPublicType& type, TVariable*& variable); |
daniel@transgaming.com | 0578f81 | 2010-05-17 09:58:39 +0000 | [diff] [blame] | 103 | bool paramErrorCheck(int line, TQualifier qualifier, TQualifier paramQualifier, TType* type); |
alokp@chromium.org | 8815d7f | 2010-09-09 17:30:03 +0000 | [diff] [blame] | 104 | bool extensionErrorCheck(int line, const TString&); |
alokp@chromium.org | 8b851c6 | 2012-06-15 16:25:11 +0000 | [diff] [blame] | 105 | |
alokp@chromium.org | 73bc298 | 2012-06-19 18:48:05 +0000 | [diff] [blame] | 106 | const TExtensionBehavior& extensionBehavior() const { return directiveHandler.extensionBehavior(); } |
zmo@google.com | 09c323a | 2011-08-12 18:22:25 +0000 | [diff] [blame] | 107 | bool supportsExtension(const char* extension); |
alokp@chromium.org | 8b851c6 | 2012-06-15 16:25:11 +0000 | [diff] [blame] | 108 | void handleExtensionDirective(int line, const char* extName, const char* behavior); |
| 109 | |
| 110 | const TPragma& pragma() const { return directiveHandler.pragma(); } |
| 111 | void handlePragmaDirective(int line, const char* name, const char* value); |
alokp@chromium.org | 75fe6b7 | 2011-08-14 05:31:22 +0000 | [diff] [blame] | 112 | |
| 113 | bool containsSampler(TType& type); |
| 114 | bool areAllChildConst(TIntermAggregate* aggrNode); |
daniel@transgaming.com | 0578f81 | 2010-05-17 09:58:39 +0000 | [diff] [blame] | 115 | const TFunction* findFunction(int line, TFunction* pfnCall, bool *builtIn = 0); |
| 116 | bool executeInitializer(TSourceLoc line, TString& identifier, TPublicType& pType, |
| 117 | TIntermTyped* initializer, TIntermNode*& intermNode, TVariable* variable = 0); |
alokp@chromium.org | 75fe6b7 | 2011-08-14 05:31:22 +0000 | [diff] [blame] | 118 | bool arraySetMaxSize(TIntermSymbol*, TType*, int, bool, TSourceLoc); |
| 119 | |
daniel@transgaming.com | 0578f81 | 2010-05-17 09:58:39 +0000 | [diff] [blame] | 120 | TIntermTyped* addConstructor(TIntermNode*, const TType*, TOperator, TFunction*, TSourceLoc); |
| 121 | TIntermTyped* foldConstConstructor(TIntermAggregate* aggrNode, const TType& type); |
| 122 | TIntermTyped* constructStruct(TIntermNode*, TType*, int, TSourceLoc, bool subset); |
| 123 | TIntermTyped* constructBuiltIn(const TType*, TOperator, TIntermNode*, TSourceLoc, bool subset); |
| 124 | TIntermTyped* addConstVectorNode(TVectorFields&, TIntermTyped*, TSourceLoc); |
| 125 | TIntermTyped* addConstMatrixNode(int , TIntermTyped*, TSourceLoc); |
| 126 | TIntermTyped* addConstArrayNode(int index, TIntermTyped* node, TSourceLoc line); |
| 127 | TIntermTyped* addConstStruct(TString& , TIntermTyped*, TSourceLoc); |
kbr@chromium.org | 476541f | 2011-10-27 21:14:51 +0000 | [diff] [blame] | 128 | |
| 129 | // Performs an error check for embedded struct declarations. |
| 130 | // Returns true if an error was raised due to the declaration of |
| 131 | // this struct. |
| 132 | bool enterStructDeclaration(TSourceLoc line, const TString& identifier); |
| 133 | void exitStructDeclaration(); |
| 134 | |
| 135 | bool structNestingErrorCheck(TSourceLoc line, const TType& fieldType); |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 136 | }; |
| 137 | |
shannon.woods@transgaming.com | d64b3da | 2013-02-28 23:19:26 +0000 | [diff] [blame] | 138 | int PaParseStrings(size_t count, const char* const string[], const int length[], |
alokp@chromium.org | 044a5cf | 2010-11-12 15:42:16 +0000 | [diff] [blame] | 139 | TParseContext* context); |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 140 | |
daniel@transgaming.com | 4f39fd9 | 2010-03-08 20:26:45 +0000 | [diff] [blame] | 141 | #endif // _PARSER_HELPER_INCLUDED_ |