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_LOCATION_ATTRIBUTE_H_ |
| 16 | #define SRC_TINT_AST_LOCATION_ATTRIBUTE_H_ |
| 17 | |
| 18 | #include <string> |
| 19 | |
| 20 | #include "src/tint/ast/attribute.h" |
dan sinclair | f9eeed6 | 2022-09-07 22:25:24 +0000 | [diff] [blame] | 21 | #include "src/tint/ast/expression.h" |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 22 | |
dan sinclair | 34323ac | 2022-04-07 18:39:35 +0000 | [diff] [blame] | 23 | namespace tint::ast { |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 24 | |
| 25 | /// A location attribute |
Ben Clayton | 41f8d2a | 2022-03-07 18:37:46 +0000 | [diff] [blame] | 26 | class LocationAttribute final : public Castable<LocationAttribute, Attribute> { |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 27 | public: |
| 28 | /// constructor |
| 29 | /// @param pid the identifier of the program that owns this node |
Ben Clayton | 4a92a3c | 2022-07-18 20:50:02 +0000 | [diff] [blame] | 30 | /// @param nid the unique node identifier |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 31 | /// @param src the source of this node |
dan sinclair | c4e076f | 2022-09-08 01:04:34 +0000 | [diff] [blame] | 32 | /// @param expr the location expression |
Ben Clayton | 5662f79 | 2023-02-22 00:08:55 +0000 | [diff] [blame] | 33 | LocationAttribute(ProgramID pid, NodeID nid, const Source& src, const Expression* expr); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 34 | ~LocationAttribute() override; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 35 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 36 | /// @returns the WGSL name for the attribute |
| 37 | std::string Name() const override; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 38 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 39 | /// Clones this node and all transitive child nodes using the `CloneContext` |
| 40 | /// `ctx`. |
| 41 | /// @param ctx the clone context |
| 42 | /// @return the newly cloned node |
| 43 | const LocationAttribute* Clone(CloneContext* ctx) const override; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 44 | |
dan sinclair | c4e076f | 2022-09-08 01:04:34 +0000 | [diff] [blame] | 45 | /// The location expression |
Ben Clayton | 5662f79 | 2023-02-22 00:08:55 +0000 | [diff] [blame] | 46 | const Expression* const expr; |
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_LOCATION_ATTRIBUTE_H_ |