| // 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_SEM_STATEMENT_H_ |
| #define SRC_TINT_LANG_WGSL_SEM_STATEMENT_H_ |
| |
| #include "src/tint/lang/wgsl/ast/diagnostic_control.h" |
| #include "src/tint/lang/wgsl/sem/behavior.h" |
| #include "src/tint/lang/wgsl/sem/node.h" |
| #include "src/tint/utils/containers/hashmap.h" |
| #include "src/tint/utils/symbol/symbol.h" |
| |
| // Forward declarations |
| namespace tint::ast { |
| class Statement; |
| } // namespace tint::ast |
| namespace tint::sem { |
| class BlockStatement; |
| class CompoundStatement; |
| class Function; |
| class LocalVariable; |
| } // namespace tint::sem |
| |
| namespace tint::sem { |
| namespace detail { |
| /// FindFirstParentReturn is a traits helper for determining the return type for |
| /// the template member function Statement::FindFirstParent(). |
| /// For zero or multiple template arguments, FindFirstParentReturn::type |
| /// resolves to CompoundStatement. |
| template <typename... TYPES> |
| struct FindFirstParentReturn { |
| /// The pointer type returned by Statement::FindFirstParent() |
| using type = CompoundStatement; |
| }; |
| |
| /// A specialization of FindFirstParentReturn for a single template argument. |
| /// FindFirstParentReturn::type resolves to the single template argument. |
| template <typename T> |
| struct FindFirstParentReturn<T> { |
| /// The pointer type returned by Statement::FindFirstParent() |
| using type = T; |
| }; |
| |
| template <typename... TYPES> |
| using FindFirstParentReturnType = typename FindFirstParentReturn<TYPES...>::type; |
| } // namespace detail |
| |
| /// Statement holds the semantic information for a statement. |
| class Statement : public Castable<Statement, Node> { |
| public: |
| /// Constructor |
| /// @param declaration the AST node for this statement |
| /// @param parent the owning statement |
| /// @param function the owning function |
| Statement(const ast::Statement* declaration, |
| const CompoundStatement* parent, |
| const sem::Function* function); |
| |
| /// Destructor |
| ~Statement() override; |
| |
| /// @return the AST node for this statement |
| const ast::Statement* Declaration() const { return declaration_; } |
| |
| /// @return the statement that encloses this statement |
| const CompoundStatement* Parent() const { return parent_; } |
| |
| /// @returns the closest enclosing parent that satisfies the given predicate, |
| /// which may be the statement itself, or nullptr if no match is found. |
| /// @param pred a predicate that the resulting block must satisfy |
| template <typename Pred> |
| const CompoundStatement* FindFirstParent(Pred&& pred) const; |
| |
| /// @returns the closest enclosing parent that is of one of the types in |
| /// `TYPES`, which may be the statement itself, or nullptr if no match is |
| /// found. If `TYPES` is a single template argument, the return type is a |
| /// pointer to that template argument type, otherwise a CompoundStatement |
| /// pointer is returned. |
| template <typename... TYPES> |
| const sem::detail::FindFirstParentReturnType<TYPES...>* FindFirstParent() const; |
| |
| /// @return the closest enclosing block for this statement |
| const BlockStatement* Block() const; |
| |
| /// @returns the function that owns this statement |
| const sem::Function* Function() const { return function_; } |
| |
| /// @return the behaviors of this statement |
| const sem::Behaviors& Behaviors() const { return behaviors_; } |
| |
| /// @return the behaviors of this statement |
| sem::Behaviors& Behaviors() { return behaviors_; } |
| |
| /// @returns true if this statement is reachable by control flow according to |
| /// the behavior analysis |
| bool IsReachable() const { return is_reachable_; } |
| |
| /// @param is_reachable whether this statement is reachable by control flow |
| /// according to the behavior analysis |
| void SetIsReachable(bool is_reachable) { is_reachable_ = is_reachable; } |
| |
| /// Modifies the severity of a specific diagnostic rule for this statement. |
| /// @param rule the diagnostic rule |
| /// @param severity the new diagnostic severity |
| void SetDiagnosticSeverity(wgsl::DiagnosticRule rule, wgsl::DiagnosticSeverity severity); |
| |
| /// @returns the diagnostic severity modifications applied to this statement |
| const wgsl::DiagnosticRuleSeverities& DiagnosticSeverities() const { |
| return diagnostic_severities_; |
| } |
| |
| private: |
| const ast::Statement* const declaration_; |
| const CompoundStatement* const parent_; |
| const sem::Function* const function_; |
| sem::Behaviors behaviors_{sem::Behavior::kNext}; |
| bool is_reachable_ = true; |
| wgsl::DiagnosticRuleSeverities diagnostic_severities_; |
| }; |
| |
| /// CompoundStatement is the base class of statements that can hold other |
| /// statements. |
| class CompoundStatement : public Castable<CompoundStatement, Statement> { |
| public: |
| /// Constructor |
| /// @param declaration the AST node for this statement |
| /// @param statement the owning statement |
| /// @param function the owning function |
| CompoundStatement(const ast::Statement* declaration, |
| const CompoundStatement* statement, |
| const sem::Function* function); |
| |
| /// Destructor |
| ~CompoundStatement() override; |
| |
| /// OrderedLocalVariable describes a local variable declaration, and order of declaration. |
| struct OrderedLocalVariable { |
| /// The 0-based declaration order index of the variable |
| size_t order; |
| /// The variable |
| const LocalVariable* variable; |
| }; |
| |
| /// @returns a map of variable name to variable declarations associated with this block |
| const Hashmap<Symbol, OrderedLocalVariable, 4>& Decls() const { return decls_; } |
| |
| /// Associates a declaration with this block. |
| /// @note this method must be called in variable declaration order |
| /// @param var a variable declaration to be added to the block |
| void AddDecl(const LocalVariable* var); |
| |
| private: |
| Hashmap<Symbol, OrderedLocalVariable, 4> decls_; |
| }; |
| |
| template <typename Pred> |
| const CompoundStatement* Statement::FindFirstParent(Pred&& pred) const { |
| if (auto* self = As<CompoundStatement>()) { |
| if (pred(self)) { |
| return self; |
| } |
| } |
| const auto* curr = parent_; |
| while (curr && !pred(curr)) { |
| curr = curr->Parent(); |
| } |
| return curr; |
| } |
| |
| template <typename... TYPES> |
| const sem::detail::FindFirstParentReturnType<TYPES...>* Statement::FindFirstParent() const { |
| using ReturnType = sem::detail::FindFirstParentReturnType<TYPES...>; |
| if (sizeof...(TYPES) == 1) { |
| if (auto* p = As<ReturnType>()) { |
| return p; |
| } |
| const auto* curr = parent_; |
| while (curr) { |
| if (auto* p = curr->As<ReturnType>()) { |
| return p; |
| } |
| curr = curr->Parent(); |
| } |
| } else { |
| if (IsAnyOf<TYPES...>()) { |
| return As<ReturnType>(); |
| } |
| const auto* curr = parent_; |
| while (curr) { |
| if (curr->IsAnyOf<TYPES...>()) { |
| return curr->As<ReturnType>(); |
| } |
| curr = curr->Parent(); |
| } |
| } |
| return nullptr; |
| } |
| |
| } // namespace tint::sem |
| |
| #endif // SRC_TINT_LANG_WGSL_SEM_STATEMENT_H_ |