| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef SKSL_COMPILER | 8 #ifndef SKSL_COMPILER |
| 9 #define SKSL_COMPILER | 9 #define SKSL_COMPILER |
| 10 | 10 |
| 11 #include <vector> | 11 #include <vector> |
| 12 #include "ir/SkSLProgram.h" | 12 #include "ir/SkSLProgram.h" |
| 13 #include "ir/SkSLSymbolTable.h" | 13 #include "ir/SkSLSymbolTable.h" |
| 14 #include "SkSLContext.h" | 14 #include "SkSLContext.h" |
| 15 #include "SkSLErrorReporter.h" | 15 #include "SkSLErrorReporter.h" |
| 16 #include "SkSLGLSLCodeGenerator.h" | 16 #include "SkSLGLSLCodeGenerator.h" |
| 17 | 17 |
| 18 #define SK_FRAGCOLOR_BUILTIN 10001 | |
| 19 | |
| 20 namespace SkSL { | 18 namespace SkSL { |
| 21 | 19 |
| 22 class IRGenerator; | 20 class IRGenerator; |
| 23 | 21 |
| 24 /** | 22 /** |
| 25 * Main compiler entry point. This is a traditional compiler design which first
parses the .sksl | 23 * Main compiler entry point. This is a traditional compiler design which first
parses the .sksl |
| 26 * file into an abstract syntax tree (a tree of ASTNodes), then performs semanti
c analysis to | 24 * file into an abstract syntax tree (a tree of ASTNodes), then performs semanti
c analysis to |
| 27 * produce a Program (a tree of IRNodes), then feeds the Program into a CodeGene
rator to produce | 25 * produce a Program (a tree of IRNodes), then feeds the Program into a CodeGene
rator to produce |
| 28 * compiled output. | 26 * compiled output. |
| 29 * | |
| 30 * See the README for information about SkSL. | |
| 31 */ | 27 */ |
| 32 class Compiler : public ErrorReporter { | 28 class Compiler : public ErrorReporter { |
| 33 public: | 29 public: |
| 34 Compiler(); | 30 Compiler(); |
| 35 | 31 |
| 36 ~Compiler(); | 32 ~Compiler(); |
| 37 | 33 |
| 38 std::unique_ptr<Program> convertProgram(Program::Kind kind, std::string text
); | 34 std::unique_ptr<Program> convertProgram(Program::Kind kind, std::string text
); |
| 39 | 35 |
| 40 bool toSPIRV(Program::Kind kind, const std::string& text, std::ostream& out)
; | 36 bool toSPIRV(Program::Kind kind, const std::string& text, std::ostream& out)
; |
| 41 | 37 |
| 42 bool toSPIRV(Program::Kind kind, const std::string& text, std::string* out); | 38 bool toSPIRV(Program::Kind kind, const std::string& text, std::string* out); |
| 43 | 39 |
| 44 bool toGLSL(Program::Kind kind, const std::string& text, GLCaps caps, std::o
stream& out); | 40 bool toGLSL(Program::Kind kind, const std::string& text, GLCaps caps, std::o
stream& out); |
| 45 | 41 |
| 46 bool toGLSL(Program::Kind kind, const std::string& text, GLCaps caps, std::s
tring* out); | 42 bool toGLSL(Program::Kind kind, const std::string& text, GLCaps caps, std::s
tring* out); |
| 47 | 43 |
| 48 void error(Position position, std::string msg) override; | 44 void error(Position position, std::string msg) override; |
| 49 | 45 |
| 50 std::string errorText(); | 46 std::string errorText(); |
| 51 | 47 |
| 52 void writeErrorCount(); | 48 void writeErrorCount(); |
| 53 | 49 |
| 54 private: | 50 private: |
| 55 | 51 |
| 56 void internalConvertProgram(std::string text, | 52 void internalConvertProgram(std::string text, |
| 57 Modifiers::Flag* defaultPrecision, | |
| 58 std::vector<std::unique_ptr<ProgramElement>>* re
sult); | 53 std::vector<std::unique_ptr<ProgramElement>>* re
sult); |
| 59 | 54 |
| 60 std::shared_ptr<SymbolTable> fTypes; | 55 std::shared_ptr<SymbolTable> fTypes; |
| 61 IRGenerator* fIRGenerator; | 56 IRGenerator* fIRGenerator; |
| 62 std::string fSkiaVertText; // FIXME store parsed version instead | 57 std::string fSkiaVertText; // FIXME store parsed version instead |
| 63 | 58 |
| 64 Context fContext; | 59 Context fContext; |
| 65 int fErrorCount; | 60 int fErrorCount; |
| 66 std::string fErrorText; | 61 std::string fErrorText; |
| 67 }; | 62 }; |
| 68 | 63 |
| 69 } // namespace | 64 } // namespace |
| 70 | 65 |
| 71 #endif | 66 #endif |
| OLD | NEW |