diff options
| author | Alex Lorenz <arphaman@gmail.com> | 2015-06-23 23:42:28 +0000 |
|---|---|---|
| committer | Alex Lorenz <arphaman@gmail.com> | 2015-06-23 23:42:28 +0000 |
| commit | 240fc1e0aab8558ed9fa5da1ee74530a9262e7d5 (patch) | |
| tree | 3effc1129db461b93703c506d591ddfb9596af74 /llvm/lib/CodeGen/MIRParser | |
| parent | 6a24811d8781081535598a274061a8768e7c850e (diff) | |
| download | bcm5719-llvm-240fc1e0aab8558ed9fa5da1ee74530a9262e7d5.tar.gz bcm5719-llvm-240fc1e0aab8558ed9fa5da1ee74530a9262e7d5.zip | |
MIR Serialization: Serialize immediate machine operands.
Reviewers: Duncan P. N. Exon Smith
Differential Revision: http://reviews.llvm.org/D10573
llvm-svn: 240481
Diffstat (limited to 'llvm/lib/CodeGen/MIRParser')
| -rw-r--r-- | llvm/lib/CodeGen/MIRParser/MILexer.cpp | 14 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/MIRParser/MILexer.h | 12 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/MIRParser/MIParser.cpp | 14 |
3 files changed, 38 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MIRParser/MILexer.cpp b/llvm/lib/CodeGen/MIRParser/MILexer.cpp index 1cc5956d9fb..b836221d9f0 100644 --- a/llvm/lib/CodeGen/MIRParser/MILexer.cpp +++ b/llvm/lib/CodeGen/MIRParser/MILexer.cpp @@ -33,7 +33,7 @@ public: bool isEOF() const { return Ptr == End; } - char peek() const { return isEOF() ? 0 : *Ptr; } + char peek(unsigned I = 0) const { return End - Ptr <= I ? 0 : Ptr[I]; } void advance() { ++Ptr; } @@ -77,6 +77,16 @@ static Cursor lexPercent(Cursor C, MIToken &Token) { return C; } +static Cursor lexIntegerLiteral(Cursor C, MIToken &Token) { + auto Range = C; + C.advance(); + while (isdigit(C.peek())) + C.advance(); + StringRef StrVal = Range.upto(C); + Token = MIToken(MIToken::IntegerLiteral, StrVal, APSInt(StrVal)); + return C; +} + static MIToken::TokenKind symbolToken(char C) { switch (C) { case ',': @@ -109,6 +119,8 @@ StringRef llvm::lexMIToken( return lexIdentifier(C, Token).remaining(); if (Char == '%') return lexPercent(C, Token).remaining(); + if (isdigit(Char) || (Char == '-' && isdigit(C.peek(1)))) + return lexIntegerLiteral(C, Token).remaining(); MIToken::TokenKind Kind = symbolToken(Char); if (Kind != MIToken::Error) return lexSymbol(C, Kind, Token).remaining(); diff --git a/llvm/lib/CodeGen/MIRParser/MILexer.h b/llvm/lib/CodeGen/MIRParser/MILexer.h index 24cbf7d72f3..df8b6cb2026 100644 --- a/llvm/lib/CodeGen/MIRParser/MILexer.h +++ b/llvm/lib/CodeGen/MIRParser/MILexer.h @@ -15,6 +15,7 @@ #ifndef LLVM_LIB_CODEGEN_MIRPARSER_MILEXER_H #define LLVM_LIB_CODEGEN_MIRPARSER_MILEXER_H +#include "llvm/ADT/APSInt.h" #include "llvm/ADT/StringRef.h" #include "llvm/ADT/STLExtras.h" #include <functional> @@ -36,16 +37,23 @@ struct MIToken { // Identifier tokens Identifier, - NamedRegister + NamedRegister, + + // Other tokens + IntegerLiteral }; private: TokenKind Kind; StringRef Range; + APSInt IntVal; public: MIToken(TokenKind Kind, StringRef Range) : Kind(Kind), Range(Range) {} + MIToken(TokenKind Kind, StringRef Range, const APSInt &IntVal) + : Kind(Kind), Range(Range), IntVal(IntVal) {} + TokenKind kind() const { return Kind; } bool isError() const { return Kind == Error; } @@ -59,6 +67,8 @@ public: StringRef::iterator location() const { return Range.begin(); } StringRef stringValue() const { return Range; } + + const APSInt &integerValue() const { return IntVal; } }; /// Consume a single machine instruction token in the given source and return diff --git a/llvm/lib/CodeGen/MIRParser/MIParser.cpp b/llvm/lib/CodeGen/MIRParser/MIParser.cpp index 029732a853e..33f306945cb 100644 --- a/llvm/lib/CodeGen/MIRParser/MIParser.cpp +++ b/llvm/lib/CodeGen/MIRParser/MIParser.cpp @@ -57,6 +57,7 @@ public: bool parseRegister(unsigned &Reg); bool parseRegisterOperand(MachineOperand &Dest, bool IsDef = false); + bool parseImmediateOperand(MachineOperand &Dest); bool parseMachineOperand(MachineOperand &Dest); private: @@ -197,10 +198,23 @@ bool MIParser::parseRegisterOperand(MachineOperand &Dest, bool IsDef) { return false; } +bool MIParser::parseImmediateOperand(MachineOperand &Dest) { + assert(Token.is(MIToken::IntegerLiteral)); + const APSInt &Int = Token.integerValue(); + if (Int.getMinSignedBits() > 64) + // TODO: Replace this with an error when we can parse CIMM Machine Operands. + llvm_unreachable("Can't parse large integer literals yet!"); + Dest = MachineOperand::CreateImm(Int.getExtValue()); + lex(); + return false; +} + bool MIParser::parseMachineOperand(MachineOperand &Dest) { switch (Token.kind()) { case MIToken::NamedRegister: return parseRegisterOperand(Dest); + case MIToken::IntegerLiteral: + return parseImmediateOperand(Dest); case MIToken::Error: return true; default: |

