mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-06 05:33:28 +00:00
This will be needed for .octa support, but we don't want to just use the existing AsmLexer::Integer for it and then have to litter all its users with explicit checks for the size, and make them use the new get APIntVal() method. So let the lexer produce an AsmLexer::Integer as before for numbers which are small enough — which appears to cover what was previously a nasty special case handling of numbers which don't fit in int64_t but *do* fit in uint64_t. Where the number is too large even for that, produce an AsmLexer::BigNum instead. We do nothing with these except complain about them for now, but that will be changed shortly... Based on a patch from PaX Team <pageexec@freemail.hu> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200613 91177308-0d34-0410-b5e6-96231b3b80d8
192 lines
5.3 KiB
C++
192 lines
5.3 KiB
C++
//===-- llvm/MC/MCAsmLexer.h - Abstract Asm Lexer Interface -----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_MC_MCPARSER_MCASMLEXER_H
|
|
#define LLVM_MC_MCPARSER_MCASMLEXER_H
|
|
|
|
#include "llvm/ADT/APInt.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/Support/Compiler.h"
|
|
#include "llvm/Support/DataTypes.h"
|
|
#include "llvm/Support/SMLoc.h"
|
|
|
|
namespace llvm {
|
|
|
|
/// AsmToken - Target independent representation for an assembler token.
|
|
class AsmToken {
|
|
public:
|
|
enum TokenKind {
|
|
// Markers
|
|
Eof, Error,
|
|
|
|
// String values.
|
|
Identifier,
|
|
String,
|
|
|
|
// Integer values.
|
|
Integer,
|
|
BigNum, // larger than 64 bits
|
|
|
|
// Real values.
|
|
Real,
|
|
|
|
// No-value.
|
|
EndOfStatement,
|
|
Colon,
|
|
Space,
|
|
Plus, Minus, Tilde,
|
|
Slash, // '/'
|
|
BackSlash, // '\'
|
|
LParen, RParen, LBrac, RBrac, LCurly, RCurly,
|
|
Star, Dot, Comma, Dollar, Equal, EqualEqual,
|
|
|
|
Pipe, PipePipe, Caret,
|
|
Amp, AmpAmp, Exclaim, ExclaimEqual, Percent, Hash,
|
|
Less, LessEqual, LessLess, LessGreater,
|
|
Greater, GreaterEqual, GreaterGreater, At
|
|
};
|
|
|
|
private:
|
|
TokenKind Kind;
|
|
|
|
/// A reference to the entire token contents; this is always a pointer into
|
|
/// a memory buffer owned by the source manager.
|
|
StringRef Str;
|
|
|
|
APInt IntVal;
|
|
|
|
public:
|
|
AsmToken() {}
|
|
AsmToken(TokenKind _Kind, StringRef _Str, APInt _IntVal)
|
|
: Kind(_Kind), Str(_Str), IntVal(_IntVal) {}
|
|
AsmToken(TokenKind _Kind, StringRef _Str, int64_t _IntVal = 0)
|
|
: Kind(_Kind), Str(_Str), IntVal(64, _IntVal, true) {}
|
|
|
|
TokenKind getKind() const { return Kind; }
|
|
bool is(TokenKind K) const { return Kind == K; }
|
|
bool isNot(TokenKind K) const { return Kind != K; }
|
|
|
|
SMLoc getLoc() const;
|
|
SMLoc getEndLoc() const;
|
|
|
|
/// getStringContents - Get the contents of a string token (without quotes).
|
|
StringRef getStringContents() const {
|
|
assert(Kind == String && "This token isn't a string!");
|
|
return Str.slice(1, Str.size() - 1);
|
|
}
|
|
|
|
/// getIdentifier - Get the identifier string for the current token, which
|
|
/// should be an identifier or a string. This gets the portion of the string
|
|
/// which should be used as the identifier, e.g., it does not include the
|
|
/// quotes on strings.
|
|
StringRef getIdentifier() const {
|
|
if (Kind == Identifier)
|
|
return getString();
|
|
return getStringContents();
|
|
}
|
|
|
|
/// getString - Get the string for the current token, this includes all
|
|
/// characters (for example, the quotes on strings) in the token.
|
|
///
|
|
/// The returned StringRef points into the source manager's memory buffer, and
|
|
/// is safe to store across calls to Lex().
|
|
StringRef getString() const { return Str; }
|
|
|
|
// FIXME: Don't compute this in advance, it makes every token larger, and is
|
|
// also not generally what we want (it is nicer for recovery etc. to lex 123br
|
|
// as a single token, then diagnose as an invalid number).
|
|
int64_t getIntVal() const {
|
|
assert(Kind == Integer && "This token isn't an integer!");
|
|
return IntVal.getZExtValue();
|
|
}
|
|
|
|
APInt getAPIntVal() const {
|
|
assert((Kind == Integer || Kind == BigNum) &&
|
|
"This token isn't an integer!");
|
|
return IntVal;
|
|
}
|
|
};
|
|
|
|
/// MCAsmLexer - Generic assembler lexer interface, for use by target specific
|
|
/// assembly lexers.
|
|
class MCAsmLexer {
|
|
/// The current token, stored in the base class for faster access.
|
|
AsmToken CurTok;
|
|
|
|
/// The location and description of the current error
|
|
SMLoc ErrLoc;
|
|
std::string Err;
|
|
|
|
MCAsmLexer(const MCAsmLexer &) LLVM_DELETED_FUNCTION;
|
|
void operator=(const MCAsmLexer &) LLVM_DELETED_FUNCTION;
|
|
protected: // Can only create subclasses.
|
|
const char *TokStart;
|
|
bool SkipSpace;
|
|
bool AllowAtInIdentifier;
|
|
|
|
MCAsmLexer();
|
|
|
|
virtual AsmToken LexToken() = 0;
|
|
|
|
void SetError(const SMLoc &errLoc, const std::string &err) {
|
|
ErrLoc = errLoc;
|
|
Err = err;
|
|
}
|
|
|
|
public:
|
|
virtual ~MCAsmLexer();
|
|
|
|
/// Lex - Consume the next token from the input stream and return it.
|
|
///
|
|
/// The lexer will continuosly return the end-of-file token once the end of
|
|
/// the main input file has been reached.
|
|
const AsmToken &Lex() {
|
|
return CurTok = LexToken();
|
|
}
|
|
|
|
virtual StringRef LexUntilEndOfStatement() = 0;
|
|
|
|
/// getLoc - Get the current source location.
|
|
SMLoc getLoc() const;
|
|
|
|
/// getTok - Get the current (last) lexed token.
|
|
const AsmToken &getTok() {
|
|
return CurTok;
|
|
}
|
|
|
|
/// getErrLoc - Get the current error location
|
|
const SMLoc &getErrLoc() {
|
|
return ErrLoc;
|
|
}
|
|
|
|
/// getErr - Get the current error string
|
|
const std::string &getErr() {
|
|
return Err;
|
|
}
|
|
|
|
/// getKind - Get the kind of current token.
|
|
AsmToken::TokenKind getKind() const { return CurTok.getKind(); }
|
|
|
|
/// is - Check if the current token has kind \p K.
|
|
bool is(AsmToken::TokenKind K) const { return CurTok.is(K); }
|
|
|
|
/// isNot - Check if the current token has kind \p K.
|
|
bool isNot(AsmToken::TokenKind K) const { return CurTok.isNot(K); }
|
|
|
|
/// setSkipSpace - Set whether spaces should be ignored by the lexer
|
|
void setSkipSpace(bool val) { SkipSpace = val; }
|
|
|
|
bool getAllowAtInIdentifier() { return AllowAtInIdentifier; }
|
|
void setAllowAtInIdentifier(bool v) { AllowAtInIdentifier = v; }
|
|
};
|
|
|
|
} // End llvm namespace
|
|
|
|
#endif
|