14#ifndef LLVM_CLANG_LEX_LITERALSUPPORT_H
15#define LLVM_CLANG_LEX_LITERALSUPPORT_H
21#include "llvm/ADT/APFloat.h"
22#include "llvm/ADT/ArrayRef.h"
23#include "llvm/ADT/SmallString.h"
24#include "llvm/ADT/StringRef.h"
25#include "llvm/Support/DataTypes.h"
26#include "llvm/Support/TextEncoding.h"
58 const char *
const ThisTokBegin;
59 const char *
const ThisTokEnd;
60 const char *DigitsBegin, *SuffixBegin;
65 bool saw_exponent, saw_period, saw_ud_suffix, saw_fixed_point_suffix;
91 return (saw_period || saw_exponent) && saw_fixed_point_suffix;
102 return saw_ud_suffix;
105 assert(saw_ud_suffix);
109 assert(saw_ud_suffix);
110 return SuffixBegin - ThisTokBegin;
126 llvm::RoundingMode RM);
137 assert(!
hadError &&
"cannot reliably get the literal digits with an error");
138 return StringRef(DigitsBegin, SuffixBegin - DigitsBegin);
146 static bool isDigitSeparator(
char C) {
return C ==
'\''; }
150 bool containsDigits(
const char *Start,
const char *End) {
151 return Start != End && (Start + 1 != End || !isDigitSeparator(Start[0]));
154 enum CheckSeparatorKind { CSK_BeforeDigits, CSK_AfterDigits };
157 void checkSeparator(SourceLocation TokLoc,
const char *Pos,
158 CheckSeparatorKind IsAfterDigits);
162 const char *SkipHexDigits(
const char *ptr) {
163 while (ptr != ThisTokEnd && (
isHexDigit(*ptr) || isDigitSeparator(*ptr)))
170 const char *SkipOctalDigits(
const char *ptr) {
171 while (ptr != ThisTokEnd &&
172 ((*ptr >=
'0' && *ptr <=
'7') || isDigitSeparator(*ptr)))
179 const char *SkipDigits(
const char *ptr) {
180 while (ptr != ThisTokEnd && (
isDigit(*ptr) || isDigitSeparator(*ptr)))
187 const char *SkipBinaryDigits(
const char *ptr) {
188 while (ptr != ThisTokEnd &&
189 (*ptr ==
'0' || *ptr ==
'1' || isDigitSeparator(*ptr)))
204 unsigned UDSuffixOffset;
211 bool isOrdinary()
const {
return Kind == tok::char_constant; }
212 bool isWide()
const {
return Kind == tok::wide_char_constant; }
213 bool isUTF8()
const {
return Kind == tok::utf8_char_constant; }
214 bool isUTF16()
const {
return Kind == tok::utf16_char_constant; }
215 bool isUTF32()
const {
return Kind == tok::utf32_char_constant; }
220 assert(!UDSuffixBuf.empty() &&
"no ud-suffix");
221 return UDSuffixOffset;
240 unsigned MaxTokenLength;
242 unsigned CharByteWidth;
247 unsigned UDSuffixToken;
248 unsigned UDSuffixOffset;
259 : SM(sm), Features(features), Target(target), Diags(diags), TE(
nullptr),
260 MaxTokenLength(0), SizeBound(0), CharByteWidth(0), Kind(
tok::unknown),
261 ResultPtr(ResultBuf.data()),
286 bool isOrdinary()
const {
return Kind == tok::string_literal; }
287 bool isWide()
const {
return Kind == tok::wide_string_literal; }
288 bool isUTF8()
const {
return Kind == tok::utf8_string_literal; }
289 bool isUTF16()
const {
return Kind == tok::utf16_string_literal; }
290 bool isUTF32()
const {
return Kind == tok::utf32_string_literal; }
300 assert(!UDSuffixBuf.empty() &&
"no ud-suffix");
301 return UDSuffixToken;
305 assert(!UDSuffixBuf.empty() &&
"no ud-suffix");
306 return UDSuffixOffset;
313 bool CopyStringFragment(
const Token &
Tok,
const char *TokBegin,
315 llvm::TextEncodingConverter *Converter);
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
*collection of selector each with an associated kind and an ordered *collection of selectors A selector has a kind
Defines the clang::TokenKind enum and support functions.
unsigned getUDSuffixOffset() const
StringRef getUDSuffix() const
uint64_t getValue() const
CharLiteralParser(const char *begin, const char *end, SourceLocation Loc, Preprocessor &PP, tok::TokenKind kind)
Concrete class used by the front-end to report problems and issues.
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
NumericLiteralParser(StringRef TokSpelling, SourceLocation TokLoc, const SourceManager &SM, const LangOptions &LangOpts, const TargetInfo &Target, DiagnosticsEngine &Diags)
integer-constant: [C99 6.4.4.1] decimal-constant integer-suffix octal-constant integer-suffix hexadec...
StringRef getUDSuffix() const
bool isFixedPointLiteral() const
bool isFloatingLiteral() const
unsigned getRadix() const
bool isIntegerLiteral() const
llvm::APFloat::opStatus GetFloatValue(llvm::APFloat &Result, llvm::RoundingMode RM)
Convert this numeric literal to a floating value, using the specified APFloat fltSemantics (specifyin...
static bool isValidUDSuffix(const LangOptions &LangOpts, StringRef Suffix)
Determine whether a suffix is a valid ud-suffix.
bool GetIntegerValue(llvm::APInt &Val)
GetIntegerValue - Convert this numeric literal value to an APInt that matches Val's input width.
unsigned getUDSuffixOffset() const
StringRef getLiteralDigits() const
Get the digits that comprise the literal.
bool GetFixedPointValue(llvm::APInt &StoreVal, unsigned Scale)
GetFixedPointValue - Convert this numeric literal value into a scaled integer that represents this va...
Engages in a tight little dance with the lexer to efficiently preprocess tokens.
Encodes a location in the source.
This class handles loading and caching of source files into memory.
unsigned getUDSuffixToken() const
Get the index of a token containing a ud-suffix.
unsigned getUDSuffixOffset() const
Get the spelling offset of the first byte of the ud-suffix.
unsigned getOffsetOfStringByte(const Token &TheTok, unsigned ByteNo) const
getOffsetOfStringByte - This function returns the offset of the specified byte of the string data rep...
bool isUnevaluated() const
StringRef getUDSuffix() const
StringLiteralParser(ArrayRef< Token > StringToks, Preprocessor &PP, StringLiteralEvalMethod StringMethod=StringLiteralEvalMethod::Evaluated, ConversionAction Action=CA_NoConversion)
unsigned GetStringLength() const
StringLiteralParser(ArrayRef< Token > StringToks, const SourceManager &sm, const LangOptions &features, const TargetInfo &target, DiagnosticsEngine *diags=nullptr)
static bool isValidUDSuffix(const LangOptions &LangOpts, StringRef Suffix)
Determine whether a suffix is a valid ud-suffix.
unsigned GetNumStringChars() const
StringRef GetString() const
Exposes information about the current target.
Token - This structure provides full information about a lexed token.
TokenKind
Provides a simple uniform namespace for tokens from all C languages.
The JSON file list parser is used to communicate input to InstallAPI.
void expandUCNs(SmallVectorImpl< char > &Buf, StringRef Input)
Copy characters from Input to Buf, expanding any UCNs.
bool tokenIsLikeStringLiteral(const Token &Tok, const LangOptions &LO)
Return true if the token is a string literal, or a function local predefined macro,...
nullptr
This class represents a compute construct, representing a 'Kind' of ‘parallel’, 'serial',...
@ Result
The result type of a method or function.
LLVM_READONLY bool isDigit(unsigned char c)
Return true if this character is an ASCII digit: [0-9].
bool isFunctionLocalStringLiteralMacro(tok::TokenKind K, const LangOptions &LO)
Return true if the token corresponds to a function local predefined macro, which expands to a string ...
LLVM_READONLY bool isHexDigit(unsigned char c)
Return true if this character is an ASCII hex digit: [0-9a-fA-F].
__packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 uint8_t