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_FLOAT_LITERAL_EXPRESSION_H_ |
| 16 | #define SRC_TINT_AST_FLOAT_LITERAL_EXPRESSION_H_ |
| 17 | |
| 18 | #include <string> |
| 19 | |
| 20 | #include "src/tint/ast/literal_expression.h" |
| 21 | |
dan sinclair | 34323ac | 2022-04-07 18:39:35 +0000 | [diff] [blame] | 22 | namespace tint::ast { |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 23 | |
| 24 | /// A float literal |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 25 | class FloatLiteralExpression final : public Castable<FloatLiteralExpression, LiteralExpression> { |
| 26 | public: |
Ben Clayton | 41285aa | 2022-05-10 14:55:34 +0000 | [diff] [blame] | 27 | /// Literal suffix |
| 28 | enum class Suffix { |
| 29 | /// No suffix |
| 30 | kNone, |
| 31 | /// 'f' suffix (f32) |
| 32 | kF, |
Zhaoming Jiang | 62bfd31 | 2022-05-13 12:01:11 +0000 | [diff] [blame] | 33 | /// 'h' suffix (f16) |
| 34 | kH, |
Ben Clayton | 41285aa | 2022-05-10 14:55:34 +0000 | [diff] [blame] | 35 | }; |
| 36 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 37 | /// Constructor |
| 38 | /// @param pid the identifier of the program that owns this node |
| 39 | /// @param src the source of this node |
Ben Clayton | 41285aa | 2022-05-10 14:55:34 +0000 | [diff] [blame] | 40 | /// @param val the literal value |
| 41 | /// @param suf the literal suffix |
| 42 | FloatLiteralExpression(ProgramID pid, const Source& src, double val, Suffix suf); |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 43 | ~FloatLiteralExpression() override; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 44 | |
dan sinclair | 41e4d9a | 2022-05-01 14:40:55 +0000 | [diff] [blame] | 45 | /// Clones this node and all transitive child nodes using the `CloneContext` |
| 46 | /// `ctx`. |
| 47 | /// @param ctx the clone context |
| 48 | /// @return the newly cloned node |
| 49 | const FloatLiteralExpression* Clone(CloneContext* ctx) const override; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 50 | |
Ben Clayton | 41285aa | 2022-05-10 14:55:34 +0000 | [diff] [blame] | 51 | /// The literal value |
| 52 | const double value; |
| 53 | |
| 54 | /// The literal suffix |
| 55 | const Suffix suffix; |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 56 | }; |
| 57 | |
Ben Clayton | 8bd5fec | 2022-05-31 20:45:59 +0000 | [diff] [blame] | 58 | /// Writes the float literal suffix to the std::ostream. |
| 59 | /// @param out the std::ostream to write to |
| 60 | /// @param suffix the suffix to write |
| 61 | /// @returns out so calls can be chained |
| 62 | std::ostream& operator<<(std::ostream& out, FloatLiteralExpression::Suffix suffix); |
| 63 | |
dan sinclair | 34323ac | 2022-04-07 18:39:35 +0000 | [diff] [blame] | 64 | } // namespace tint::ast |
Ryan Harrison | dbc13af | 2022-02-21 15:19:07 +0000 | [diff] [blame] | 65 | |
| 66 | #endif // SRC_TINT_AST_FLOAT_LITERAL_EXPRESSION_H_ |