| // Copyright 2021 The Dawn & Tint Authors |
| // |
| // Redistribution and use in source and binary forms, with or without |
| // modification, are permitted provided that the following conditions are met: |
| // |
| // 1. Redistributions of source code must retain the above copyright notice, this |
| // list of conditions and the following disclaimer. |
| // |
| // 2. Redistributions in binary form must reproduce the above copyright notice, |
| // this list of conditions and the following disclaimer in the documentation |
| // and/or other materials provided with the distribution. |
| // |
| // 3. Neither the name of the copyright holder nor the names of its |
| // contributors may be used to endorse or promote products derived from |
| // this software without specific prior written permission. |
| // |
| // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| |
| #ifndef SRC_TINT_LANG_WGSL_PROGRAM_PROGRAM_H_ |
| #define SRC_TINT_LANG_WGSL_PROGRAM_PROGRAM_H_ |
| |
| #include <string> |
| #include <unordered_set> |
| |
| #include "src/tint/lang/core/constant/manager.h" |
| #include "src/tint/lang/core/type/manager.h" |
| #include "src/tint/lang/wgsl/ast/function.h" |
| #include "src/tint/lang/wgsl/sem/info.h" |
| #include "src/tint/utils/id/generation_id.h" |
| #include "src/tint/utils/symbol/symbol_table.h" |
| |
| // Forward Declarations |
| namespace tint::ast { |
| class Module; |
| } // namespace tint::ast |
| |
| namespace tint { |
| |
| /// Program holds the AST, Type information and SymbolTable for a tint program. |
| class Program { |
| public: |
| /// ASTNodeAllocator is an alias to BlockAllocator<ast::Node> |
| using ASTNodeAllocator = BlockAllocator<ast::Node>; |
| |
| /// SemNodeAllocator is an alias to BlockAllocator<sem::Node> |
| using SemNodeAllocator = BlockAllocator<sem::Node>; |
| |
| /// Constructor |
| Program(); |
| |
| /// Move constructor |
| /// @param rhs the Program to move |
| Program(Program&& rhs); |
| |
| /// Move constructor from builder |
| /// @param builder the builder used to construct the program |
| explicit Program(ProgramBuilder&& builder); |
| |
| /// Destructor |
| ~Program(); |
| |
| /// Move assignment operator |
| /// @param rhs the Program to move |
| /// @return this Program |
| Program& operator=(Program&& rhs); |
| |
| /// @returns the unique identifier for this program |
| GenerationID ID() const { return id_; } |
| |
| /// @returns the last allocated (numerically highest) AST node identifier. |
| ast::NodeID HighestASTNodeID() const { return highest_node_id_; } |
| |
| /// @returns a reference to the program's constants |
| const core::constant::Manager& Constants() const { |
| AssertNotMoved(); |
| return constants_; |
| } |
| |
| /// @returns a reference to the program's types |
| const core::type::Manager& Types() const { |
| AssertNotMoved(); |
| return constants_.types; |
| } |
| |
| /// @returns a reference to the program's AST nodes storage |
| const ASTNodeAllocator& ASTNodes() const { |
| AssertNotMoved(); |
| return ast_nodes_; |
| } |
| |
| /// @returns a reference to the program's semantic nodes storage |
| const SemNodeAllocator& SemNodes() const { |
| AssertNotMoved(); |
| return sem_nodes_; |
| } |
| |
| /// @returns a reference to the program's AST root Module |
| const ast::Module& AST() const { |
| AssertNotMoved(); |
| return *ast_; |
| } |
| |
| /// @returns a reference to the program's semantic info |
| const sem::Info& Sem() const { |
| AssertNotMoved(); |
| return sem_; |
| } |
| |
| /// @returns a reference to the program's SymbolTable |
| const SymbolTable& Symbols() const { |
| AssertNotMoved(); |
| return symbols_; |
| } |
| |
| /// @returns a reference to the program's diagnostics |
| const diag::List& Diagnostics() const { |
| AssertNotMoved(); |
| return diagnostics_; |
| } |
| |
| /// Performs a deep clone of this program. |
| /// The returned Program will contain no pointers to objects owned by this |
| /// Program, and so after calling, this Program can be safely destructed. |
| /// @return a new Program copied from this Program |
| Program Clone() const; |
| |
| /// Performs a deep clone of this Program's AST nodes, types and symbols into |
| /// a new ProgramBuilder. Semantic nodes are not cloned, as these will be |
| /// rebuilt when the ProgramBuilder builds its Program. |
| /// The returned ProgramBuilder will contain no pointers to objects owned by |
| /// this Program, and so after calling, this Program can be safely destructed. |
| /// @return a new ProgramBuilder copied from this Program |
| ProgramBuilder CloneAsBuilder() const; |
| |
| /// @returns true if the program has no error diagnostics and is not missing |
| /// information |
| bool IsValid() const; |
| |
| /// Helper for returning the resolved semantic type of the expression `expr`. |
| /// @param expr the AST expression |
| /// @return the resolved semantic type for the expression, or nullptr if the |
| /// expression has no resolved type. |
| const core::type::Type* TypeOf(const ast::Expression* expr) const; |
| |
| /// Helper for returning the resolved semantic type of the variable `var`. |
| /// @param var the AST variable |
| /// @return the resolved semantic type for the variable, or nullptr if the |
| /// variable has no resolved type. |
| const core::type::Type* TypeOf(const ast::Variable* var) const; |
| |
| /// Helper for returning the resolved semantic type of the AST type |
| /// declaration `type_decl`. |
| /// @param type_decl the AST type declaration |
| /// @return the resolved semantic type for the type declaration, or nullptr if |
| /// the type declaration has no resolved type. |
| const core::type::Type* TypeOf(const ast::TypeDecl* type_decl) const; |
| |
| /// A function that can be used to print a program |
| using Printer = std::string (*)(const Program&); |
| |
| /// The Program printer used for testing and debugging. |
| static Printer printer; |
| |
| private: |
| Program(const Program&) = delete; |
| |
| /// Asserts that the program has not been moved. |
| void AssertNotMoved() const; |
| |
| GenerationID id_; |
| ast::NodeID highest_node_id_; |
| core::constant::Manager constants_; |
| ASTNodeAllocator ast_nodes_; |
| SemNodeAllocator sem_nodes_; |
| ast::Module* ast_ = nullptr; |
| sem::Info sem_; |
| SymbolTable symbols_{id_}; |
| diag::List diagnostics_; |
| bool is_valid_ = false; // Not valid until it is built |
| bool moved_ = false; |
| }; |
| |
| /// @param program the Program |
| /// @returns the GenerationID of the Program |
| inline GenerationID GenerationIDOf(const Program& program) { |
| return program.ID(); |
| } |
| |
| } // namespace tint |
| |
| #endif // SRC_TINT_LANG_WGSL_PROGRAM_PROGRAM_H_ |