Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 1 | // Copyright 2020 The Tint Authors. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | #ifndef SRC_TINT_AST_TYPE_H_ |
| 16 | #define SRC_TINT_AST_TYPE_H_ |
| 17 | |
| 18 | #include <string> |
| 19 | |
| 20 | #include "src/tint/ast/node.h" |
| 21 | #include "src/tint/clone_context.h" |
| 22 | |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 23 | // Forward declarations |
dan sinclair | 34323ac | 2022-04-07 18:39:35 +0000 | [diff] [blame] | 24 | namespace tint { |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 25 | class ProgramBuilder; |
| 26 | class SymbolTable; |
dan sinclair | 34323ac | 2022-04-07 18:39:35 +0000 | [diff] [blame] | 27 | } // namespace tint |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 28 | |
dan sinclair | 34323ac | 2022-04-07 18:39:35 +0000 | [diff] [blame] | 29 | namespace tint::ast { |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 30 | /// Base class for a type in the system |
| 31 | class Type : public Castable<Type, Node> { |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 32 | public: |
| 33 | /// Move constructor |
| 34 | Type(Type&&); |
| 35 | ~Type() override; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 36 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 37 | /// @param symbols the program's symbol table |
| 38 | /// @returns the name for this type that closely resembles how it would be |
| 39 | /// declared in WGSL. |
| 40 | virtual std::string FriendlyName(const SymbolTable& symbols) const = 0; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 41 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 42 | protected: |
| 43 | /// Constructor |
| 44 | /// @param pid the identifier of the program that owns this node |
| 45 | /// @param src the source of this node |
| 46 | Type(ProgramID pid, const Source& src); |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 47 | }; |
| 48 | |
dan sinclair | 34323ac | 2022-04-07 18:39:35 +0000 | [diff] [blame] | 49 | } // namespace tint::ast |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 50 | |
| 51 | #endif // SRC_TINT_AST_TYPE_H_ |