| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- #ifndef CARBON_TOOLCHAIN_LEXER_NUMERIC_LITERAL_H_
- #define CARBON_TOOLCHAIN_LEXER_NUMERIC_LITERAL_H_
- #include <optional>
- #include <utility>
- #include <variant>
- #include "llvm/ADT/APInt.h"
- #include "llvm/ADT/StringRef.h"
- #include "toolchain/diagnostics/diagnostic_emitter.h"
- namespace Carbon {
- // A numeric literal token that has been extracted from a source buffer.
- class LexedNumericLiteral {
- public:
- enum class Radix : int8_t { Binary = 2, Decimal = 10, Hexadecimal = 16 };
- // Value of an integer literal.
- struct IntegerValue {
- // An unsigned literal value.
- llvm::APInt value;
- };
- // Value of a real literal.
- struct RealValue {
- // The radix of the exponent, either Binary or Decimal.
- Radix radix;
- // The mantissa, represented as a variable-width unsigned integer.
- llvm::APInt mantissa;
- // The exponent, represented as a variable-width signed integer.
- llvm::APInt exponent;
- };
- struct UnrecoverableError {};
- using Value = std::variant<IntegerValue, RealValue, UnrecoverableError>;
- // Extract a numeric literal from the given text, if it has a suitable form.
- //
- // The supplied `source_text` must outlive the return value.
- static auto Lex(llvm::StringRef source_text)
- -> std::optional<LexedNumericLiteral>;
- // Compute the value of the token, if possible. Emit diagnostics to the given
- // emitter if the token is not valid.
- auto ComputeValue(DiagnosticEmitter<const char*>& emitter) const -> Value;
- // Get the text corresponding to this literal.
- [[nodiscard]] auto text() const -> llvm::StringRef { return text_; }
- private:
- class Parser;
- LexedNumericLiteral() = default;
- // The text of the token.
- llvm::StringRef text_;
- // The offset of the '.'. Set to text.size() if none is present.
- int radix_point_;
- // The offset of the alphabetical character introducing the exponent. In a
- // valid literal, this will be an 'e' or a 'p', and may be followed by a '+'
- // or a '-', but for error recovery, this may simply be the last lowercase
- // letter in the invalid token. Always greater than or equal to radix_point.
- // Set to text.size() if none is present.
- int exponent_;
- };
- } // namespace Carbon
- #endif // CARBON_TOOLCHAIN_LEXER_NUMERIC_LITERAL_H_
|