|
LLVM 22.0.0git
|
#include "llvm/MC/MCParser/AsmLexer.h"#include "llvm/ADT/APInt.h"#include "llvm/ADT/ArrayRef.h"#include "llvm/ADT/StringExtras.h"#include "llvm/ADT/StringRef.h"#include "llvm/MC/MCAsmInfo.h"#include "llvm/Support/Compiler.h"#include "llvm/Support/SMLoc.h"#include "llvm/Support/SaveAndRestore.h"#include "llvm/Support/raw_ostream.h"#include <cassert>#include <cctype>#include <cstdio>#include <cstring>#include <string>Go to the source code of this file.
Functions | |
| static bool | isIdentifierChar (char C, bool AllowAt, bool AllowHash) |
| LexIdentifier: [a-zA-Z_$.?][a-zA-Z0-9_$.#?]*. | |
| static void | SkipIgnoredIntegerSuffix (const char *&CurPtr) |
| static unsigned | doHexLookAhead (const char *&CurPtr, unsigned DefaultRadix, bool LexHex) |
| static const char * | findLastDigit (const char *CurPtr, unsigned DefaultRadix) |
| static AsmToken | intToken (StringRef Ref, APInt &Value) |
| static std::string | radixName (unsigned Radix) |
Definition at line 344 of file AsmLexer.cpp.
References llvm::isDigit(), and llvm::isHexDigit().
Definition at line 369 of file AsmLexer.cpp.
References llvm::hexDigitValue().
Definition at line 376 of file AsmLexer.cpp.
References llvm::AsmToken::BigNum, llvm::AsmToken::Integer, and llvm::Ref.
LexIdentifier: [a-zA-Z_$.?][a-zA-Z0-9_$.#?]*.
Definition at line 227 of file AsmLexer.cpp.
References llvm::CallingConv::C, and llvm::isAlnum().
|
static |
Definition at line 382 of file AsmLexer.cpp.
Definition at line 332 of file AsmLexer.cpp.