Austin Eng | cc2516a | 2023-10-17 20:57:54 +0000 | [diff] [blame] | 1 | // Copyright 2020 The Dawn & Tint Authors |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 2 | // |
Austin Eng | cc2516a | 2023-10-17 20:57:54 +0000 | [diff] [blame] | 3 | // Redistribution and use in source and binary forms, with or without |
| 4 | // modification, are permitted provided that the following conditions are met: |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 5 | // |
Austin Eng | cc2516a | 2023-10-17 20:57:54 +0000 | [diff] [blame] | 6 | // 1. Redistributions of source code must retain the above copyright notice, this |
| 7 | // list of conditions and the following disclaimer. |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 8 | // |
Austin Eng | cc2516a | 2023-10-17 20:57:54 +0000 | [diff] [blame] | 9 | // 2. Redistributions in binary form must reproduce the above copyright notice, |
| 10 | // this list of conditions and the following disclaimer in the documentation |
| 11 | // and/or other materials provided with the distribution. |
| 12 | // |
| 13 | // 3. Neither the name of the copyright holder nor the names of its |
| 14 | // contributors may be used to endorse or promote products derived from |
| 15 | // this software without specific prior written permission. |
| 16 | // |
| 17 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 18 | // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 19 | // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 20 | // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| 21 | // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 22 | // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 23 | // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 24 | // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 25 | // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 27 | |
dan sinclair | cff24fc | 2023-07-24 21:04:39 +0000 | [diff] [blame] | 28 | #ifndef SRC_TINT_LANG_WGSL_AST_CLONE_CONTEXT_H_ |
| 29 | #define SRC_TINT_LANG_WGSL_AST_CLONE_CONTEXT_H_ |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 30 | |
| 31 | #include <algorithm> |
| 32 | #include <functional> |
Peter Kasting | d3921b8 | 2022-05-05 17:00:31 +0000 | [diff] [blame] | 33 | #include <type_traits> |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 34 | #include <utility> |
| 35 | #include <vector> |
| 36 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 37 | #include "src/tint/lang/wgsl/ast/builder.h" |
dan sinclair | 22b4dd2 | 2023-07-21 00:40:07 +0000 | [diff] [blame] | 38 | #include "src/tint/utils/containers/hashmap.h" |
| 39 | #include "src/tint/utils/containers/hashset.h" |
| 40 | #include "src/tint/utils/containers/vector.h" |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 41 | #include "src/tint/utils/diagnostic/diagnostic.h" |
| 42 | #include "src/tint/utils/diagnostic/source.h" |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 43 | #include "src/tint/utils/ice/ice.h" |
Ben Clayton | 67fc590 | 2023-08-01 00:37:35 +0000 | [diff] [blame] | 44 | #include "src/tint/utils/id/generation_id.h" |
dan sinclair | 22b4dd2 | 2023-07-21 00:40:07 +0000 | [diff] [blame] | 45 | #include "src/tint/utils/macros/compiler.h" |
| 46 | #include "src/tint/utils/rtti/castable.h" |
Ben Clayton | dc68d5c | 2023-08-01 00:37:35 +0000 | [diff] [blame] | 47 | #include "src/tint/utils/symbol/symbol.h" |
dan sinclair | 22b4dd2 | 2023-07-21 00:40:07 +0000 | [diff] [blame] | 48 | #include "src/tint/utils/traits/traits.h" |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 49 | |
dan sinclair | 8155b9d | 2022-04-07 19:10:25 +0000 | [diff] [blame] | 50 | // Forward declarations |
| 51 | namespace tint::ast { |
| 52 | class FunctionList; |
| 53 | class Node; |
Ben Clayton | 971318f | 2023-02-14 13:52:43 +0000 | [diff] [blame] | 54 | struct Type; |
dan sinclair | 8155b9d | 2022-04-07 19:10:25 +0000 | [diff] [blame] | 55 | } // namespace tint::ast |
| 56 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 57 | namespace tint::ast { |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 58 | |
| 59 | /// CloneContext holds the state used while cloning AST nodes. |
| 60 | class CloneContext { |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 61 | /// ParamTypeIsPtrOf<F, T> is true iff the first parameter of |
| 62 | /// F is a pointer of (or derives from) type T. |
| 63 | template <typename F, typename T> |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 64 | static constexpr bool ParamTypeIsPtrOf = tint::traits:: |
| 65 | IsTypeOrDerived<typename std::remove_pointer<tint::traits::ParameterType<F, 0>>::type, T>; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 66 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 67 | public: |
| 68 | /// SymbolTransform is a function that takes a symbol and returns a new |
| 69 | /// symbol. |
| 70 | using SymbolTransform = std::function<Symbol(Symbol)>; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 71 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 72 | /// Constructor for cloning objects from `from` into `to`. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 73 | /// @param to the target Builder to clone into |
| 74 | /// @param from the generation ID of the source program being cloned |
| 75 | CloneContext(Builder* to, GenerationID from); |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 76 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 77 | /// Destructor |
| 78 | ~CloneContext(); |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 79 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 80 | /// Clones the Node or type::Type @p object into the Builder #dst if @p object is not null. If |
| 81 | /// @p object is null, then Clone() returns null. |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 82 | /// |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 83 | /// Clone() may use a function registered with ReplaceAll() to create a transformed version of |
| 84 | /// the object. See ReplaceAll() for more information. |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 85 | /// |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 86 | /// If the CloneContext is cloning from a Program to a Builder, then the Node or type::Type @p |
| 87 | /// object must be owned by the source program. |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 88 | /// |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 89 | /// @param object the type deriving from Node to clone |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 90 | /// @return the cloned node |
| 91 | template <typename T> |
| 92 | const T* Clone(const T* object) { |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 93 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(src_id, object); |
| 94 | if (auto* cloned = CloneNode(object)) { |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 95 | auto* out = CheckedCast<T>(cloned); |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 96 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(dst, out); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 97 | return out; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 98 | } |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 99 | return nullptr; |
| 100 | } |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 101 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 102 | /// Clones the Node or type::Type @p object into the Builder #dst if @p object is not null. If |
| 103 | /// @p object is null, then Clone() returns null. |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 104 | /// |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 105 | /// Unlike Clone(), this method does not invoke or use any transformations registered by |
| 106 | /// ReplaceAll(). |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 107 | /// |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 108 | /// If the CloneContext is cloning from a Program to a Builder, then the Node or type::Type @p |
| 109 | /// object must be owned by the source program. |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 110 | /// |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 111 | /// @param a the type deriving from Node to clone |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 112 | /// @return the cloned node |
| 113 | template <typename T> |
| 114 | const T* CloneWithoutTransform(const T* a) { |
| 115 | // If the input is nullptr, there's nothing to clone - just return nullptr. |
| 116 | if (a == nullptr) { |
| 117 | return nullptr; |
| 118 | } |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 119 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(src_id, a); |
| 120 | auto* c = a->Clone(*this); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 121 | return CheckedCast<T>(c); |
| 122 | } |
| 123 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 124 | /// Clones the ast::Type `ty` into the Builder #dst |
Ben Clayton | 971318f | 2023-02-14 13:52:43 +0000 | [diff] [blame] | 125 | /// @param ty the AST type. |
| 126 | /// @return the cloned node |
| 127 | ast::Type Clone(const ast::Type& ty); |
| 128 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 129 | /// Clones the Source `s` into #dst |
Ben Clayton | e9ab1b6 | 2024-04-15 17:21:30 +0000 | [diff] [blame] | 130 | /// @note this 'clone' is a shallow copy. |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 131 | /// @param s the `Source` to clone |
| 132 | /// @return the cloned source |
| 133 | Source Clone(const Source& s) const { return s; } |
| 134 | |
| 135 | /// Clones the Symbol `s` into #dst |
| 136 | /// |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 137 | /// The Symbol `s` must be owned by the source program. |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 138 | /// |
| 139 | /// @param s the Symbol to clone |
| 140 | /// @return the cloned source |
| 141 | Symbol Clone(Symbol s); |
| 142 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 143 | /// Clones each of the elements of the vector `v` into the Builder |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 144 | /// #dst. |
| 145 | /// |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 146 | /// All the elements of the vector `v` must be owned by the source program. |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 147 | /// |
| 148 | /// @param v the vector to clone |
| 149 | /// @return the cloned vector |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 150 | template <typename T, size_t N> |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 151 | tint::Vector<T, N> Clone(const tint::Vector<T, N>& v) { |
| 152 | tint::Vector<T, N> out; |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 153 | out.reserve(v.size()); |
| 154 | for (auto& el : v) { |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 155 | out.Push(Clone(el)); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 156 | } |
| 157 | return out; |
| 158 | } |
| 159 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 160 | /// Clones each of the elements of the vector `v` using the Builder |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 161 | /// #dst, inserting any additional elements into the list that were registered |
| 162 | /// with calls to InsertBefore(). |
| 163 | /// |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 164 | /// All the elements of the vector `v` must be owned by the source program. |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 165 | /// |
| 166 | /// @param v the vector to clone |
| 167 | /// @return the cloned vector |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 168 | template <typename T, size_t N> |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 169 | tint::Vector<T*, N> Clone(const tint::Vector<T*, N>& v) { |
| 170 | tint::Vector<T*, N> out; |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 171 | Clone(out, v); |
| 172 | return out; |
| 173 | } |
| 174 | |
| 175 | /// Clones each of the elements of the vector `from` into the vector `to`, |
| 176 | /// inserting any additional elements into the list that were registered with |
| 177 | /// calls to InsertBefore(). |
| 178 | /// |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 179 | /// All the elements of the vector `from` must be owned by the source program. |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 180 | /// |
| 181 | /// @param from the vector to clone |
| 182 | /// @param to the cloned result |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 183 | template <typename T, size_t N> |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 184 | void Clone(tint::Vector<T*, N>& to, const tint::Vector<T*, N>& from) { |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 185 | to.Reserve(from.Length()); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 186 | |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 187 | auto transforms = list_transforms_.Get(&from); |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 188 | |
| 189 | if (transforms) { |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 190 | for (auto& builder : transforms->insert_front_) { |
| 191 | to.Push(CheckedCast<T>(builder())); |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 192 | } |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 193 | for (auto& el : from) { |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 194 | if (auto insert_before = transforms->insert_before_.Get(el)) { |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 195 | for (auto& builder : *insert_before) { |
| 196 | to.Push(CheckedCast<T>(builder())); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 197 | } |
| 198 | } |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 199 | if (!transforms->remove_.Contains(el)) { |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 200 | to.Push(Clone(el)); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 201 | } |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 202 | if (auto insert_after = transforms->insert_after_.Get(el)) { |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 203 | for (auto& builder : *insert_after) { |
| 204 | to.Push(CheckedCast<T>(builder())); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 205 | } |
| 206 | } |
| 207 | } |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 208 | for (auto& builder : transforms->insert_back_) { |
| 209 | to.Push(CheckedCast<T>(builder())); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 210 | } |
| 211 | } else { |
| 212 | for (auto& el : from) { |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 213 | to.Push(Clone(el)); |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 214 | |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 215 | if (!transforms) { |
| 216 | // Clone(el) may have create a transformation list |
| 217 | transforms = list_transforms_.Get(&from); |
| 218 | } |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 219 | if (transforms) { |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 220 | if (auto insert_after = transforms->insert_after_.Get(el)) { |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 221 | for (auto& builder : *insert_after) { |
| 222 | to.Push(CheckedCast<T>(builder())); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 223 | } |
| 224 | } |
| 225 | } |
| 226 | } |
| 227 | |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 228 | if (!transforms) { |
| 229 | // Clone(el) may have create a transformation list |
| 230 | transforms = list_transforms_.Get(&from); |
| 231 | } |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 232 | if (transforms) { |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 233 | for (auto& builder : transforms->insert_back_) { |
| 234 | to.Push(CheckedCast<T>(builder())); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 235 | } |
| 236 | } |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 237 | } |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 238 | } |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 239 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 240 | /// Clones each of the elements of the vector `v` into the Builder |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 241 | /// #dst. |
| 242 | /// |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 243 | /// All the elements of the vector `v` must be owned by the source program. |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 244 | /// |
| 245 | /// @param v the vector to clone |
| 246 | /// @return the cloned vector |
| 247 | ast::FunctionList Clone(const ast::FunctionList& v); |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 248 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 249 | /// ReplaceAll() registers `replacer` to be called whenever the Clone() method |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 250 | /// is called with a Node type that matches (or derives from) the type of |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 251 | /// the single parameter of `replacer`. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 252 | /// The returned Node of `replacer` will be used as the replacement for |
| 253 | /// all references to the object that's being cloned. This returned Node |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 254 | /// must be owned by the Program #dst. |
| 255 | /// |
| 256 | /// `replacer` must be function-like with the signature: `T* (T*)` |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 257 | /// where `T` is a type deriving from Node. |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 258 | /// |
| 259 | /// If `replacer` returns a nullptr then Clone() will call `T::Clone()` to |
| 260 | /// clone the object. |
| 261 | /// |
| 262 | /// Example: |
| 263 | /// |
| 264 | /// ``` |
| 265 | /// // Replace all ast::UintLiteralExpressions with the number 42 |
| 266 | /// CloneCtx ctx(&out, in); |
| 267 | /// ctx.ReplaceAll([&] (ast::UintLiteralExpression* l) { |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 268 | /// return ctx.dst->create<ast::UintLiteralExpression>( |
| 269 | /// ctx.Clone(l->source), |
| 270 | /// ctx.Clone(l->type), |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 271 | /// 42); |
| 272 | /// }); |
| 273 | /// ctx.Clone(); |
| 274 | /// ``` |
| 275 | /// |
| 276 | /// @warning a single handler can only be registered for any given type. |
| 277 | /// Attempting to register two handlers for the same type will result in an |
| 278 | /// ICE. |
| 279 | /// @warning The replacement object must be of the correct type for all |
| 280 | /// references of the original object. A type mismatch will result in an |
| 281 | /// assertion in debug builds, and undefined behavior in release builds. |
| 282 | /// @param replacer a function or function-like object with the signature |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 283 | /// `T* (T*)`, where `T` derives from Node |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 284 | /// @returns this CloneContext so calls can be chained |
| 285 | template <typename F> |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 286 | traits::EnableIf<ParamTypeIsPtrOf<F, ast::Node>, CloneContext>& ReplaceAll(F&& replacer) { |
| 287 | using TPtr = traits::ParameterType<F, 0>; |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 288 | using T = typename std::remove_pointer<TPtr>::type; |
| 289 | for (auto& transform : transforms_) { |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 290 | bool already_registered = transform.typeinfo->Is(&tint::TypeInfo::Of<T>()) || |
| 291 | tint::TypeInfo::Of<T>().Is(transform.typeinfo); |
Ben Clayton | 884f952 | 2023-01-12 22:52:57 +0000 | [diff] [blame] | 292 | if (TINT_UNLIKELY(already_registered)) { |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 293 | TINT_ICE() << "ReplaceAll() called with a handler for type " |
| 294 | << TypeInfo::Of<T>().name |
| 295 | << " that is already handled by a handler for type " |
| 296 | << transform.typeinfo->name; |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 297 | return *this; |
| 298 | } |
| 299 | } |
| 300 | CloneableTransform transform; |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 301 | transform.typeinfo = &TypeInfo::Of<T>(); |
| 302 | transform.function = [=](const ast::Node* in) { return replacer(in->As<T>()); }; |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 303 | transforms_.Push(std::move(transform)); |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 304 | return *this; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 305 | } |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 306 | |
| 307 | /// ReplaceAll() registers `replacer` to be called whenever the Clone() method |
| 308 | /// is called with a Symbol. |
| 309 | /// The returned symbol of `replacer` will be used as the replacement for |
| 310 | /// all references to the symbol that's being cloned. This returned Symbol |
| 311 | /// must be owned by the Program #dst. |
| 312 | /// @param replacer a function the signature `Symbol(Symbol)`. |
| 313 | /// @warning a SymbolTransform can only be registered once. Attempting to |
| 314 | /// register a SymbolTransform more than once will result in an ICE. |
| 315 | /// @returns this CloneContext so calls can be chained |
| 316 | CloneContext& ReplaceAll(const SymbolTransform& replacer) { |
Ben Clayton | 884f952 | 2023-01-12 22:52:57 +0000 | [diff] [blame] | 317 | if (TINT_UNLIKELY(symbol_transform_)) { |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 318 | TINT_ICE() << "ReplaceAll(const SymbolTransform&) called multiple times on the same " |
| 319 | "CloneContext"; |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 320 | } |
| 321 | symbol_transform_ = replacer; |
| 322 | return *this; |
| 323 | } |
| 324 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 325 | /// Replace replaces all occurrences of `what` in the source program with the pointer `with` |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 326 | /// in #dst when calling Clone(). |
| 327 | /// [DEPRECATED]: This function cannot handle nested replacements. Use the |
| 328 | /// overload of Replace() that take a function for the `WITH` argument. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 329 | /// @param what a pointer to the object in the source program that will be replaced with |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 330 | /// `with` |
| 331 | /// @param with a pointer to the replacement object owned by #dst that will be |
| 332 | /// used as a replacement for `what` |
| 333 | /// @warning The replacement object must be of the correct type for all |
| 334 | /// references of the original object. A type mismatch will result in an |
| 335 | /// assertion in debug builds, and undefined behavior in release builds. |
| 336 | /// @returns this CloneContext so calls can be chained |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 337 | template <typename WHAT, typename WITH, typename = traits::EnableIfIsType<WITH, ast::Node>> |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 338 | CloneContext& Replace(const WHAT* what, const WITH* with) { |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 339 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(src_id, what); |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 340 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(dst, with); |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 341 | replacements_.Replace(what, [with]() -> const ast::Node* { return with; }); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 342 | return *this; |
| 343 | } |
| 344 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 345 | /// Replace replaces all occurrences of `what` in the source program with the result of the |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 346 | /// function `with` in #dst when calling Clone(). `with` will be called each |
| 347 | /// time `what` is cloned by this context. If `what` is not cloned, then |
| 348 | /// `with` may never be called. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 349 | /// @param what a pointer to the object in the source program that will be replaced with |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 350 | /// `with` |
| 351 | /// @param with a function that takes no arguments and returns a pointer to |
| 352 | /// the replacement object owned by #dst. The returned pointer will be used as |
| 353 | /// a replacement for `what`. |
| 354 | /// @warning The replacement object must be of the correct type for all |
| 355 | /// references of the original object. A type mismatch will result in an |
| 356 | /// assertion in debug builds, and undefined behavior in release builds. |
| 357 | /// @returns this CloneContext so calls can be chained |
Peter Kasting | d3921b8 | 2022-05-05 17:00:31 +0000 | [diff] [blame] | 358 | template <typename WHAT, typename WITH, typename = std::invoke_result_t<WITH>> |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 359 | CloneContext& Replace(const WHAT* what, WITH&& with) { |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 360 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(src_id, what); |
Ben Clayton | 57be2ff | 2023-03-02 17:45:21 +0000 | [diff] [blame] | 361 | replacements_.Replace(what, with); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 362 | return *this; |
| 363 | } |
| 364 | |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 365 | /// Removes @p object from the cloned copy of @p vector. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 366 | /// @param vector the vector in the source program |
| 367 | /// @param object a pointer to the object in the source program that will be omitted from |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 368 | /// the cloned vector. |
| 369 | /// @returns this CloneContext so calls can be chained |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 370 | template <typename T, size_t N, typename OBJECT> |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 371 | CloneContext& Remove(const Vector<T, N>& vector, OBJECT* object) { |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 372 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(src_id, object); |
Ben Clayton | 884f952 | 2023-01-12 22:52:57 +0000 | [diff] [blame] | 373 | if (TINT_UNLIKELY((std::find(vector.begin(), vector.end(), object) == vector.end()))) { |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 374 | TINT_ICE() << "CloneContext::Remove() vector does not contain object"; |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 375 | return *this; |
| 376 | } |
| 377 | |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 378 | list_transforms_.GetOrAddZero(&vector).remove_.Add(object); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 379 | return *this; |
| 380 | } |
| 381 | |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 382 | /// Inserts @p object before any other objects of @p vector, when the vector is cloned. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 383 | /// @param vector the vector in the source program |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 384 | /// @param object a pointer to the object in #dst that will be inserted at the |
| 385 | /// front of the vector |
| 386 | /// @returns this CloneContext so calls can be chained |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 387 | template <typename T, size_t N, typename OBJECT> |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 388 | CloneContext& InsertFront(const Vector<T, N>& vector, OBJECT* object) { |
| 389 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(dst, object); |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 390 | return InsertFront(vector, [object] { return object; }); |
| 391 | } |
| 392 | |
| 393 | /// Inserts a lazily built object before any other objects of @p vector, when the vector is |
| 394 | /// cloned. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 395 | /// @param vector the vector in the source program |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 396 | /// @param builder a builder of the object that will be inserted at the front of the vector. |
| 397 | /// @returns this CloneContext so calls can be chained |
| 398 | template <typename T, size_t N, typename BUILDER> |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 399 | CloneContext& InsertFront(const tint::Vector<T, N>& vector, BUILDER&& builder) { |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 400 | list_transforms_.GetOrAddZero(&vector).insert_front_.Push(std::forward<BUILDER>(builder)); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 401 | return *this; |
| 402 | } |
| 403 | |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 404 | /// Inserts @p object after any other objects of @p vector, when the vector is cloned. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 405 | /// @param vector the vector in the source program |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 406 | /// @param object a pointer to the object in #dst that will be inserted at the |
| 407 | /// end of the vector |
| 408 | /// @returns this CloneContext so calls can be chained |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 409 | template <typename T, size_t N, typename OBJECT> |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 410 | CloneContext& InsertBack(const Vector<T, N>& vector, OBJECT* object) { |
| 411 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(dst, object); |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 412 | return InsertBack(vector, [object] { return object; }); |
| 413 | } |
| 414 | |
| 415 | /// Inserts a lazily built object after any other objects of @p vector, when the vector is |
| 416 | /// cloned. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 417 | /// @param vector the vector in the source program |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 418 | /// @param builder the builder of the object in #dst that will be inserted at the end of the |
| 419 | /// vector. |
| 420 | /// @returns this CloneContext so calls can be chained |
| 421 | template <typename T, size_t N, typename BUILDER> |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 422 | CloneContext& InsertBack(const tint::Vector<T, N>& vector, BUILDER&& builder) { |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 423 | list_transforms_.GetOrAddZero(&vector).insert_back_.Push(std::forward<BUILDER>(builder)); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 424 | return *this; |
| 425 | } |
| 426 | |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 427 | /// Inserts @p object before @p before whenever @p vector is cloned. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 428 | /// @param vector the vector in the source program |
| 429 | /// @param before a pointer to the object in the source program |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 430 | /// @param object a pointer to the object in #dst that will be inserted before |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 431 | /// any occurrence of the clone of @p before |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 432 | /// @returns this CloneContext so calls can be chained |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 433 | template <typename T, size_t N, typename BEFORE, typename OBJECT> |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 434 | CloneContext& InsertBefore(const tint::Vector<T, N>& vector, |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 435 | const BEFORE* before, |
| 436 | const OBJECT* object) { |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 437 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(src_id, before); |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 438 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(dst, object); |
Ben Clayton | 884f952 | 2023-01-12 22:52:57 +0000 | [diff] [blame] | 439 | if (TINT_UNLIKELY((std::find(vector.begin(), vector.end(), before) == vector.end()))) { |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 440 | TINT_ICE() << "CloneContext::InsertBefore() vector does not contain before"; |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 441 | return *this; |
| 442 | } |
| 443 | |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 444 | list_transforms_.GetOrAddZero(&vector).insert_before_.GetOrAddZero(before).Push( |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 445 | [object] { return object; }); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 446 | return *this; |
| 447 | } |
| 448 | |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 449 | /// Inserts a lazily created object before @p before whenever @p vector is cloned. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 450 | /// @param vector the vector in the source program |
| 451 | /// @param before a pointer to the object in the source program |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 452 | /// @param builder the builder of the object in #dst that will be inserted before any occurrence |
| 453 | /// of the clone of @p before |
| 454 | /// @returns this CloneContext so calls can be chained |
| 455 | template <typename T, |
| 456 | size_t N, |
| 457 | typename BEFORE, |
| 458 | typename BUILDER, |
| 459 | typename _ = std::enable_if_t<!std::is_pointer_v<std::decay_t<BUILDER>>>> |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 460 | CloneContext& InsertBefore(const tint::Vector<T, N>& vector, |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 461 | const BEFORE* before, |
| 462 | BUILDER&& builder) { |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 463 | list_transforms_.GetOrAddZero(&vector).insert_before_.GetOrAddZero(before).Push( |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 464 | std::forward<BUILDER>(builder)); |
| 465 | return *this; |
| 466 | } |
| 467 | |
| 468 | /// Inserts @p object after @p after whenever @p vector is cloned. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 469 | /// @param vector the vector in the source program |
| 470 | /// @param after a pointer to the object in the source program |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 471 | /// @param object a pointer to the object in #dst that will be inserted after |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 472 | /// any occurrence of the clone of @p after |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 473 | /// @returns this CloneContext so calls can be chained |
Ben Clayton | 783b169 | 2022-08-02 17:03:35 +0000 | [diff] [blame] | 474 | template <typename T, size_t N, typename AFTER, typename OBJECT> |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 475 | CloneContext& InsertAfter(const tint::Vector<T, N>& vector, |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 476 | const AFTER* after, |
| 477 | const OBJECT* object) { |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 478 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(src_id, after); |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 479 | TINT_ASSERT_GENERATION_IDS_EQUAL_IF_VALID(dst, object); |
Ben Clayton | 884f952 | 2023-01-12 22:52:57 +0000 | [diff] [blame] | 480 | if (TINT_UNLIKELY((std::find(vector.begin(), vector.end(), after) == vector.end()))) { |
Ben Clayton | f848af2 | 2023-07-28 16:37:32 +0000 | [diff] [blame] | 481 | TINT_ICE() << "CloneContext::InsertAfter() vector does not contain after"; |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 482 | return *this; |
| 483 | } |
| 484 | |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 485 | list_transforms_.GetOrAddZero(&vector).insert_after_.GetOrAddZero(after).Push( |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 486 | [object] { return object; }); |
| 487 | return *this; |
| 488 | } |
| 489 | |
| 490 | /// Inserts a lazily created object after @p after whenever @p vector is cloned. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 491 | /// @param vector the vector in the source program |
| 492 | /// @param after a pointer to the object in the source program |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 493 | /// @param builder the builder of the object in #dst that will be inserted after any occurrence |
| 494 | /// of the clone of @p after |
| 495 | /// @returns this CloneContext so calls can be chained |
| 496 | template <typename T, |
| 497 | size_t N, |
| 498 | typename AFTER, |
| 499 | typename BUILDER, |
| 500 | typename _ = std::enable_if_t<!std::is_pointer_v<std::decay_t<BUILDER>>>> |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 501 | CloneContext& InsertAfter(const tint::Vector<T, N>& vector, |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 502 | const AFTER* after, |
| 503 | BUILDER&& builder) { |
Ben Clayton | 7a27d6c | 2024-01-31 19:44:28 +0000 | [diff] [blame] | 504 | list_transforms_.GetOrAddZero(&vector).insert_after_.GetOrAddZero(after).Push( |
Ben Clayton | 2d63e32 | 2022-11-02 13:40:41 +0000 | [diff] [blame] | 505 | std::forward<BUILDER>(builder)); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 506 | return *this; |
| 507 | } |
| 508 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 509 | /// The target Builder to clone into. |
| 510 | Builder* const dst; |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 511 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 512 | /// The source Program generation identifier. |
| 513 | GenerationID const src_id; |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 514 | |
| 515 | private: |
| 516 | struct CloneableTransform { |
| 517 | /// Constructor |
| 518 | CloneableTransform(); |
| 519 | /// Copy constructor |
| 520 | /// @param other the CloneableTransform to copy |
| 521 | CloneableTransform(const CloneableTransform& other); |
| 522 | /// Destructor |
| 523 | ~CloneableTransform(); |
| 524 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 525 | // TypeInfo of the Node that the transform operates on |
| 526 | const TypeInfo* typeinfo; |
| 527 | std::function<const ast::Node*(const ast::Node*)> function; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 528 | }; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 529 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 530 | /// A vector of const ast::Node* |
| 531 | using NodeBuilderList = Vector<std::function<const ast::Node*()>, 4>; |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 532 | |
| 533 | /// Transformations to be applied to a list (vector) |
| 534 | struct ListTransforms { |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 535 | /// A map of object in the source program to omit when cloned into #dst. |
| 536 | Hashset<const ast::Node*, 4> remove_; |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 537 | |
| 538 | /// A list of objects in #dst to insert before any others when the vector is cloned. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 539 | NodeBuilderList insert_front_; |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 540 | |
| 541 | /// A list of objects in #dst to insert after all others when the vector is cloned. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 542 | NodeBuilderList insert_back_; |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 543 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 544 | /// A map of object in the source program to the list of cloned objects in #dst. |
| 545 | /// Clone(const Vector<T*>& v) will use this to insert the map-value |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 546 | /// list into the target vector before cloning and inserting the map-key. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 547 | Hashmap<const ast::Node*, NodeBuilderList, 4> insert_before_; |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 548 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 549 | /// A map of object in the source program to the list of cloned objects in #dst. |
| 550 | /// Clone(const Vector<T*>& v) will use this to insert the map-value |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 551 | /// list into the target vector after cloning and inserting the map-key. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 552 | Hashmap<const ast::Node*, NodeBuilderList, 4> insert_after_; |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 553 | }; |
| 554 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 555 | CloneContext(const CloneContext&) = delete; |
| 556 | CloneContext& operator=(const CloneContext&) = delete; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 557 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 558 | /// Cast `obj` from type `FROM` to type `TO`, returning the cast object. |
| 559 | /// Reports an internal compiler error if the cast failed. |
| 560 | template <typename TO, typename FROM> |
| 561 | const TO* CheckedCast(const FROM* obj) { |
| 562 | if (obj == nullptr) { |
| 563 | return nullptr; |
| 564 | } |
Ben Clayton | 884f952 | 2023-01-12 22:52:57 +0000 | [diff] [blame] | 565 | const TO* cast = obj->template As<TO>(); |
| 566 | if (TINT_LIKELY(cast)) { |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 567 | return cast; |
| 568 | } |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 569 | CheckedCastFailure(obj, tint::TypeInfo::Of<TO>()); |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 570 | } |
| 571 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 572 | /// Clones a Node object, using any replacements or transforms that have |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 573 | /// been configured. |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 574 | const ast::Node* CloneNode(const ast::Node* object); |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 575 | |
Ben Clayton | 7cdaffe | 2024-05-08 16:24:07 +0000 | [diff] [blame] | 576 | /// Aborts with an ICE describing that the cloned object type was not as required. |
| 577 | [[noreturn]] void CheckedCastFailure(const ast::Node* got, const TypeInfo& expected); |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 578 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 579 | /// @returns the diagnostic list of #dst |
| 580 | diag::List& Diagnostics() const; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 581 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 582 | /// A map of object in the source program to functions that create their replacement in #dst |
| 583 | Hashmap<const ast::Node*, std::function<const ast::Node*()>, 8> replacements_; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 584 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 585 | /// A map of symbol in the source program to their cloned equivalent in #dst |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 586 | Hashmap<Symbol, Symbol, 32> cloned_symbols_; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 587 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 588 | /// Node transform functions registered with ReplaceAll() |
| 589 | Vector<CloneableTransform, 8> transforms_; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 590 | |
Ben Clayton | 18dc315 | 2022-08-23 18:38:35 +0000 | [diff] [blame] | 591 | /// Transformations to apply to vectors |
dan sinclair | bae54e7 | 2023-07-28 15:01:54 +0000 | [diff] [blame] | 592 | Hashmap<const void*, ListTransforms, 4> list_transforms_; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 593 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 594 | /// Symbol transform registered with ReplaceAll() |
| 595 | SymbolTransform symbol_transform_; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 596 | }; |
| 597 | |
Ben Clayton | ae18c41 | 2023-07-29 13:00:40 +0000 | [diff] [blame] | 598 | } // namespace tint::ast |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 599 | |
dan sinclair | cff24fc | 2023-07-24 21:04:39 +0000 | [diff] [blame] | 600 | #endif // SRC_TINT_LANG_WGSL_AST_CLONE_CONTEXT_H_ |