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_SEM_I32_TYPE_H_ 16 #define SRC_SEM_I32_TYPE_H_ 17 18 #include <string> 19 20 #include "src/sem/type.h" 21 22 namespace tint { 23 namespace sem { 24 25 /// A signed int 32 type. 26 class I32 : public Castable<I32, Type> { 27 public: 28 /// Constructor 29 I32(); 30 /// Move constructor 31 I32(I32&&); 32 ~I32() override; 33 34 /// @returns the name for this type 35 std::string type_name() const override; 36 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 std::string FriendlyName(const SymbolTable& symbols) const override; 41 42 /// @returns true if constructible as per 43 /// https://gpuweb.github.io/gpuweb/wgsl/#constructible-types 44 bool IsConstructible() const override; 45 46 /// @returns the size in bytes of the type. 47 uint32_t Size() const override; 48 49 /// @returns the alignment in bytes of the type. 50 uint32_t Align() const override; 51 }; 52 53 } // namespace sem 54 } // namespace tint 55 56 #endif // SRC_SEM_I32_TYPE_H_ 57