blob: 8fcc264d688212c9135ebc625fc922372071139c [file] [log] [blame]
Chris Lattnera59e8772009-06-21 07:19:10 +00001//===- AsmLexer.cpp - Lexer for Assembly Files ----------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This class implements the lexer for assembly files.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattnerbe343b32010-01-22 01:58:08 +000014#include "llvm/MC/MCParser/AsmLexer.h"
Kevin Enderby9823ca92009-09-04 21:45:34 +000015#include "llvm/MC/MCAsmInfo.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000016#include "llvm/Support/MemoryBuffer.h"
17#include "llvm/Support/SMLoc.h"
Nick Lewycky476b2422010-12-19 20:43:38 +000018#include <cctype>
Chris Lattner4651bca2009-06-21 19:21:25 +000019#include <cerrno>
Duncan Sands66b9f292009-06-22 06:59:32 +000020#include <cstdio>
Chris Lattner4506bd22009-06-21 19:43:50 +000021#include <cstdlib>
Chris Lattnera59e8772009-06-21 07:19:10 +000022using namespace llvm;
23
Sean Callananfd0b0282010-01-21 00:19:58 +000024AsmLexer::AsmLexer(const MCAsmInfo &_MAI) : MAI(_MAI) {
25 CurBuf = NULL;
26 CurPtr = NULL;
Jim Grosbach61482252011-09-14 16:37:04 +000027 isAtStartOfLine = true;
Chris Lattnerfaf32c12009-06-24 00:33:19 +000028}
29
30AsmLexer::~AsmLexer() {
Chris Lattnera59e8772009-06-21 07:19:10 +000031}
32
Sean Callananfd0b0282010-01-21 00:19:58 +000033void AsmLexer::setBuffer(const MemoryBuffer *buf, const char *ptr) {
34 CurBuf = buf;
Jim Grosbachde2f5f42011-02-11 19:05:56 +000035
Sean Callananfd0b0282010-01-21 00:19:58 +000036 if (ptr)
37 CurPtr = ptr;
38 else
39 CurPtr = CurBuf->getBufferStart();
Jim Grosbachde2f5f42011-02-11 19:05:56 +000040
Sean Callananfd0b0282010-01-21 00:19:58 +000041 TokStart = 0;
42}
43
Chris Lattner4651bca2009-06-21 19:21:25 +000044/// ReturnError - Set the error to the specified string at the specified
Daniel Dunbar3f872332009-07-28 16:08:33 +000045/// location. This is defined to always return AsmToken::Error.
Daniel Dunbarcb358b62009-07-28 03:00:54 +000046AsmToken AsmLexer::ReturnError(const char *Loc, const std::string &Msg) {
Sean Callanan79036e42010-01-20 22:18:24 +000047 SetError(SMLoc::getFromPointer(Loc), Msg);
Jim Grosbachde2f5f42011-02-11 19:05:56 +000048
Daniel Dunbar3f872332009-07-28 16:08:33 +000049 return AsmToken(AsmToken::Error, StringRef(Loc, 0));
Chris Lattner4651bca2009-06-21 19:21:25 +000050}
51
Chris Lattnera59e8772009-06-21 07:19:10 +000052int AsmLexer::getNextChar() {
53 char CurChar = *CurPtr++;
54 switch (CurChar) {
55 default:
56 return (unsigned char)CurChar;
Sean Callananfd0b0282010-01-21 00:19:58 +000057 case 0:
Chris Lattnera59e8772009-06-21 07:19:10 +000058 // A nul character in the stream is either the end of the current buffer or
59 // a random nul in the file. Disambiguate that here.
60 if (CurPtr-1 != CurBuf->getBufferEnd())
61 return 0; // Just whitespace.
Jim Grosbachde2f5f42011-02-11 19:05:56 +000062
Chris Lattnera59e8772009-06-21 07:19:10 +000063 // Otherwise, return end of file.
Jim Grosbachde2f5f42011-02-11 19:05:56 +000064 --CurPtr; // Another call to lex will return EOF again.
Chris Lattnera59e8772009-06-21 07:19:10 +000065 return EOF;
66 }
Chris Lattnera59e8772009-06-21 07:19:10 +000067}
68
Daniel Dunbar4f2afe32010-09-27 20:12:52 +000069/// LexFloatLiteral: [0-9]*[.][0-9]*([eE][+-]?[0-9]*)?
70///
71/// The leading integral digit sequence and dot should have already been
72/// consumed, some or all of the fractional digit sequence *can* have been
73/// consumed.
74AsmToken AsmLexer::LexFloatLiteral() {
75 // Skip the fractional digit sequence.
76 while (isdigit(*CurPtr))
77 ++CurPtr;
78
79 // Check for exponent; we intentionally accept a slighlty wider set of
80 // literals here and rely on the upstream client to reject invalid ones (e.g.,
81 // "1e+").
82 if (*CurPtr == 'e' || *CurPtr == 'E') {
83 ++CurPtr;
84 if (*CurPtr == '-' || *CurPtr == '+')
85 ++CurPtr;
86 while (isdigit(*CurPtr))
87 ++CurPtr;
88 }
89
90 return AsmToken(AsmToken::Real,
91 StringRef(TokStart, CurPtr - TokStart));
92}
93
Daniel Dunbar5fe03c02010-05-06 14:46:38 +000094/// LexIdentifier: [a-zA-Z_.][a-zA-Z0-9_$.@]*
Daniel Dunbar54f0a622010-09-24 01:59:31 +000095static bool IsIdentifierChar(char c) {
96 return isalnum(c) || c == '_' || c == '$' || c == '.' || c == '@';
97}
Daniel Dunbarcb358b62009-07-28 03:00:54 +000098AsmToken AsmLexer::LexIdentifier() {
Daniel Dunbar54f0a622010-09-24 01:59:31 +000099 // Check for floating point literals.
100 if (CurPtr[-1] == '.' && isdigit(*CurPtr)) {
Daniel Dunbar4f2afe32010-09-27 20:12:52 +0000101 // Disambiguate a .1243foo identifier from a floating literal.
Daniel Dunbar54f0a622010-09-24 01:59:31 +0000102 while (isdigit(*CurPtr))
103 ++CurPtr;
Daniel Dunbar4f2afe32010-09-27 20:12:52 +0000104 if (*CurPtr == 'e' || *CurPtr == 'E' || !IsIdentifierChar(*CurPtr))
105 return LexFloatLiteral();
Daniel Dunbar54f0a622010-09-24 01:59:31 +0000106 }
107
108 while (IsIdentifierChar(*CurPtr))
Chris Lattner4651bca2009-06-21 19:21:25 +0000109 ++CurPtr;
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000110
Chris Lattnerd3050352010-04-14 04:40:28 +0000111 // Handle . as a special case.
Daniel Dunbar5fe03c02010-05-06 14:46:38 +0000112 if (CurPtr == TokStart+1 && TokStart[0] == '.')
113 return AsmToken(AsmToken::Dot, StringRef(TokStart, 1));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000114
Daniel Dunbar3f872332009-07-28 16:08:33 +0000115 return AsmToken(AsmToken::Identifier, StringRef(TokStart, CurPtr - TokStart));
Chris Lattner4651bca2009-06-21 19:21:25 +0000116}
117
Chris Lattner4651bca2009-06-21 19:21:25 +0000118/// LexSlash: Slash: /
119/// C-Style Comment: /* ... */
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000120AsmToken AsmLexer::LexSlash() {
Daniel Dunbar383a4a82009-06-29 21:58:22 +0000121 switch (*CurPtr) {
122 case '*': break; // C style comment.
123 case '/': return ++CurPtr, LexLineComment();
Daniel Dunbarbdf90d62010-10-25 20:18:53 +0000124 default: return AsmToken(AsmToken::Slash, StringRef(CurPtr-1, 1));
Daniel Dunbar383a4a82009-06-29 21:58:22 +0000125 }
Chris Lattner4651bca2009-06-21 19:21:25 +0000126
127 // C Style comment.
128 ++CurPtr; // skip the star.
129 while (1) {
130 int CurChar = getNextChar();
131 switch (CurChar) {
132 case EOF:
Chris Lattner27aa7d22009-06-21 20:16:42 +0000133 return ReturnError(TokStart, "unterminated comment");
Chris Lattner4651bca2009-06-21 19:21:25 +0000134 case '*':
135 // End of the comment?
136 if (CurPtr[0] != '/') break;
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000137
Chris Lattner4651bca2009-06-21 19:21:25 +0000138 ++CurPtr; // End the */.
139 return LexToken();
140 }
141 }
142}
143
Daniel Dunbar383a4a82009-06-29 21:58:22 +0000144/// LexLineComment: Comment: #[^\n]*
145/// : //[^\n]*
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000146AsmToken AsmLexer::LexLineComment() {
147 // FIXME: This is broken if we happen to a comment at the end of a file, which
148 // was .included, and which doesn't end with a newline.
Chris Lattner4651bca2009-06-21 19:21:25 +0000149 int CurChar = getNextChar();
Chris Lattner0ecd8252011-08-04 19:31:26 +0000150 while (CurChar != '\n' && CurChar != '\r' && CurChar != EOF)
Chris Lattner4651bca2009-06-21 19:21:25 +0000151 CurChar = getNextChar();
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000152
Chris Lattner4651bca2009-06-21 19:21:25 +0000153 if (CurChar == EOF)
Daniel Dunbar3f872332009-07-28 16:08:33 +0000154 return AsmToken(AsmToken::Eof, StringRef(CurPtr, 0));
155 return AsmToken(AsmToken::EndOfStatement, StringRef(CurPtr, 0));
Chris Lattner4651bca2009-06-21 19:21:25 +0000156}
157
Chris Lattnera78c67e2010-08-24 00:43:25 +0000158static void SkipIgnoredIntegerSuffix(const char *&CurPtr) {
159 if (CurPtr[0] == 'L' && CurPtr[1] == 'L')
160 CurPtr += 2;
161 if (CurPtr[0] == 'U' && CurPtr[1] == 'L' && CurPtr[2] == 'L')
162 CurPtr += 3;
163}
164
Chad Rosierd556fd12013-02-12 01:00:01 +0000165// Look ahead to search for first non-hex digit, if it's [hH], then we treat the
166// integer as a hexadecimal, possibly with leading zeroes.
167static unsigned doLookAhead(const char *&CurPtr, unsigned DefaultRadix) {
168 const char *FirstHex = 0;
169 const char *LookAhead = CurPtr;
170 while (1) {
171 if (isdigit(*LookAhead)) {
172 ++LookAhead;
173 } else if (isxdigit(*LookAhead)) {
174 if (!FirstHex)
175 FirstHex = LookAhead;
176 ++LookAhead;
177 } else {
178 break;
179 }
180 }
181 bool isHex = *LookAhead == 'h' || *LookAhead == 'H';
Chad Rosier8915e272013-02-12 18:29:02 +0000182 bool isBinary = LookAhead[-1] == 'b' || LookAhead[-1] == 'B';
183 CurPtr = (isBinary || isHex || !FirstHex) ? LookAhead : FirstHex;
Chad Rosierd556fd12013-02-12 01:00:01 +0000184 if (isHex)
185 return 16;
Chad Rosier8915e272013-02-12 18:29:02 +0000186 if (isBinary) {
187 --CurPtr;
188 return 2;
189 }
Chad Rosierd556fd12013-02-12 01:00:01 +0000190 return DefaultRadix;
191}
192
Chris Lattner4651bca2009-06-21 19:21:25 +0000193/// LexDigit: First character is [0-9].
194/// Local Label: [0-9][:]
Chad Rosier8915e272013-02-12 18:29:02 +0000195/// Forward/Backward Label: [0-9]+f or [0-9]b
196/// Binary integer: 0b[01]+ or [01][bB]
Chris Lattner4651bca2009-06-21 19:21:25 +0000197/// Octal integer: 0[0-7]+
Chad Rosierd556fd12013-02-12 01:00:01 +0000198/// Hex integer: 0x[0-9a-fA-F]+ or [0x]?[0-9][0-9a-fA-F]*[hH]
Chris Lattner4651bca2009-06-21 19:21:25 +0000199/// Decimal integer: [1-9][0-9]*
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000200AsmToken AsmLexer::LexDigit() {
Chad Rosier8915e272013-02-12 18:29:02 +0000201
202 // Backward Label: [0-9]b
203 if (*CurPtr == 'b') {
204 // See if we actually have "0b" as part of something like "jmp 0b\n"
205 if (!isdigit(CurPtr[1])) {
206 long long Value;
207 StringRef Result(TokStart, CurPtr - TokStart);
208 if (Result.getAsInteger(10, Value))
209 return ReturnError(TokStart, "invalid backward label");
210
211 return AsmToken(AsmToken::Integer, Result, Value);
212 }
213 }
214
215 // Binary integer: 1[01]*[bB]
Chris Lattner4651bca2009-06-21 19:21:25 +0000216 // Decimal integer: [1-9][0-9]*
Chad Rosier8915e272013-02-12 18:29:02 +0000217 // Hexidecimal integer: [1-9][0-9a-fA-F]*[hH]
Daniel Dunbarfacb34b2010-09-24 17:10:26 +0000218 if (CurPtr[-1] != '0' || CurPtr[0] == '.') {
Chad Rosierd556fd12013-02-12 01:00:01 +0000219 unsigned Radix = doLookAhead(CurPtr, 10);
Chad Rosier8915e272013-02-12 18:29:02 +0000220 bool isDecimal = Radix == 10;
221
Daniel Dunbar54f0a622010-09-24 01:59:31 +0000222 // Check for floating point literals.
Chad Rosier8915e272013-02-12 18:29:02 +0000223 if (isDecimal && (*CurPtr == '.' || *CurPtr == 'e')) {
Daniel Dunbar54f0a622010-09-24 01:59:31 +0000224 ++CurPtr;
Daniel Dunbar4f2afe32010-09-27 20:12:52 +0000225 return LexFloatLiteral();
Daniel Dunbar54f0a622010-09-24 01:59:31 +0000226 }
227
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000228 StringRef Result(TokStart, CurPtr - TokStart);
Chris Lattnera78c67e2010-08-24 00:43:25 +0000229
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000230 long long Value;
Chad Rosierd556fd12013-02-12 01:00:01 +0000231 if (Result.getAsInteger(Radix, Value)) {
Chris Lattner7ab3cc32010-12-25 21:36:35 +0000232 // Allow positive values that are too large to fit into a signed 64-bit
233 // integer, but that do fit in an unsigned one, we just convert them over.
234 unsigned long long UValue;
Chad Rosierd556fd12013-02-12 01:00:01 +0000235 if (Result.getAsInteger(Radix, UValue))
Chad Rosier8915e272013-02-12 18:29:02 +0000236 return ReturnError(TokStart, isDecimal ? "invalid decimal number" :
Chad Rosierd556fd12013-02-12 01:00:01 +0000237 "invalid hexdecimal number");
Chris Lattner7ab3cc32010-12-25 21:36:35 +0000238 Value = (long long)UValue;
Chris Lattner3a151be2010-03-13 19:25:13 +0000239 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000240
Chad Rosierd556fd12013-02-12 01:00:01 +0000241 // Consume the [bB][hH].
242 if (Radix == 2 || Radix == 16)
243 ++CurPtr;
244
Chris Lattnera78c67e2010-08-24 00:43:25 +0000245 // The darwin/x86 (and x86-64) assembler accepts and ignores ULL and LL
246 // suffixes on integer literals.
247 SkipIgnoredIntegerSuffix(CurPtr);
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000248
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000249 return AsmToken(AsmToken::Integer, Result, Value);
Chris Lattner4651bca2009-06-21 19:21:25 +0000250 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000251
Chad Rosier8915e272013-02-12 18:29:02 +0000252 // Binary integer: 0b[01]+
Chris Lattner4651bca2009-06-21 19:21:25 +0000253 if (*CurPtr == 'b') {
Chad Rosier8915e272013-02-12 18:29:02 +0000254 const char *NumStart = ++CurPtr;
Chris Lattner4651bca2009-06-21 19:21:25 +0000255 while (CurPtr[0] == '0' || CurPtr[0] == '1')
256 ++CurPtr;
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000257
Chris Lattner4651bca2009-06-21 19:21:25 +0000258 // Requires at least one binary digit.
259 if (CurPtr == NumStart)
Eric Christopher05f9e4e2011-04-12 00:18:03 +0000260 return ReturnError(TokStart, "invalid binary number");
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000261
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000262 StringRef Result(TokStart, CurPtr - TokStart);
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000263
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000264 long long Value;
Chris Lattnera78c67e2010-08-24 00:43:25 +0000265 if (Result.substr(2).getAsInteger(2, Value))
Eric Christopher05f9e4e2011-04-12 00:18:03 +0000266 return ReturnError(TokStart, "invalid binary number");
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000267
Chris Lattnera78c67e2010-08-24 00:43:25 +0000268 // The darwin/x86 (and x86-64) assembler accepts and ignores ULL and LL
269 // suffixes on integer literals.
270 SkipIgnoredIntegerSuffix(CurPtr);
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000271
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000272 return AsmToken(AsmToken::Integer, Result, Value);
Chris Lattner4651bca2009-06-21 19:21:25 +0000273 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000274
Chad Rosier8915e272013-02-12 18:29:02 +0000275 // Hex integer: 0x[0-9a-fA-F]+
Chris Lattner4651bca2009-06-21 19:21:25 +0000276 if (*CurPtr == 'x') {
277 ++CurPtr;
278 const char *NumStart = CurPtr;
279 while (isxdigit(CurPtr[0]))
280 ++CurPtr;
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000281
Chris Lattner4651bca2009-06-21 19:21:25 +0000282 // Requires at least one hex digit.
283 if (CurPtr == NumStart)
Eric Christopher05f9e4e2011-04-12 00:18:03 +0000284 return ReturnError(CurPtr-2, "invalid hexadecimal number");
Chris Lattner03949c92010-01-22 01:17:12 +0000285
286 unsigned long long Result;
287 if (StringRef(TokStart, CurPtr - TokStart).getAsInteger(0, Result))
Eric Christopher05f9e4e2011-04-12 00:18:03 +0000288 return ReturnError(TokStart, "invalid hexadecimal number");
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000289
Chad Rosierd556fd12013-02-12 01:00:01 +0000290 // Consume the optional [hH].
291 if (*CurPtr == 'h' || *CurPtr == 'H')
292 ++CurPtr;
293
Chris Lattnera78c67e2010-08-24 00:43:25 +0000294 // The darwin/x86 (and x86-64) assembler accepts and ignores ULL and LL
295 // suffixes on integer literals.
296 SkipIgnoredIntegerSuffix(CurPtr);
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000297
Daniel Dunbar3f872332009-07-28 16:08:33 +0000298 return AsmToken(AsmToken::Integer, StringRef(TokStart, CurPtr - TokStart),
Chris Lattner03949c92010-01-22 01:17:12 +0000299 (int64_t)Result);
Chris Lattner4651bca2009-06-21 19:21:25 +0000300 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000301
Chad Rosier8915e272013-02-12 18:29:02 +0000302 // Binary: 0[01]*[Bb], but not 0b.
303 // Octal: 0[0-7]*
304 // Hexidecimal: [0][0-9a-fA-F]*[hH]
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000305 long long Value;
Chad Rosierd556fd12013-02-12 01:00:01 +0000306 unsigned Radix = doLookAhead(CurPtr, 8);
Chad Rosier8915e272013-02-12 18:29:02 +0000307 bool isBinary = Radix == 2;
308 bool isOctal = Radix == 8;
Chad Rosierd556fd12013-02-12 01:00:01 +0000309 StringRef Result(TokStart, CurPtr - TokStart);
310 if (Result.getAsInteger(Radix, Value))
Chad Rosier8915e272013-02-12 18:29:02 +0000311 return ReturnError(TokStart, isOctal ? "invalid octal number" :
312 isBinary ? "invalid binary number" :
Chad Rosier53e5bb72013-02-12 01:12:24 +0000313 "invalid hexdecimal number");
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000314
Chad Rosier8915e272013-02-12 18:29:02 +0000315 // Consume the [bB][hH].
316 if (Radix == 2 || Radix == 16)
Chad Rosierd556fd12013-02-12 01:00:01 +0000317 ++CurPtr;
318
Chris Lattnera78c67e2010-08-24 00:43:25 +0000319 // The darwin/x86 (and x86-64) assembler accepts and ignores ULL and LL
320 // suffixes on integer literals.
321 SkipIgnoredIntegerSuffix(CurPtr);
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000322
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000323 return AsmToken(AsmToken::Integer, Result, Value);
Chris Lattner4651bca2009-06-21 19:21:25 +0000324}
325
Roman Divacky7529b162010-12-18 08:56:37 +0000326/// LexSingleQuote: Integer: 'b'
327AsmToken AsmLexer::LexSingleQuote() {
328 int CurChar = getNextChar();
329
330 if (CurChar == '\\')
331 CurChar = getNextChar();
332
333 if (CurChar == EOF)
334 return ReturnError(TokStart, "unterminated single quote");
335
336 CurChar = getNextChar();
337
338 if (CurChar != '\'')
339 return ReturnError(TokStart, "single quote way too long");
340
341 // The idea here being that 'c' is basically just an integral
342 // constant.
343 StringRef Res = StringRef(TokStart,CurPtr - TokStart);
344 long long Value;
345
346 if (Res.startswith("\'\\")) {
347 char theChar = Res[2];
348 switch (theChar) {
349 default: Value = theChar; break;
350 case '\'': Value = '\''; break;
351 case 't': Value = '\t'; break;
352 case 'n': Value = '\n'; break;
353 case 'b': Value = '\b'; break;
354 }
355 } else
356 Value = TokStart[1];
357
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000358 return AsmToken(AsmToken::Integer, Res, Value);
Roman Divacky7529b162010-12-18 08:56:37 +0000359}
360
361
Chris Lattner10a907d2009-06-21 19:56:35 +0000362/// LexQuote: String: "..."
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000363AsmToken AsmLexer::LexQuote() {
Chris Lattner10a907d2009-06-21 19:56:35 +0000364 int CurChar = getNextChar();
365 // TODO: does gas allow multiline string constants?
366 while (CurChar != '"') {
367 if (CurChar == '\\') {
368 // Allow \", etc.
369 CurChar = getNextChar();
370 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000371
Chris Lattner14ee48a2009-06-21 21:22:11 +0000372 if (CurChar == EOF)
373 return ReturnError(TokStart, "unterminated string constant");
Chris Lattner10a907d2009-06-21 19:56:35 +0000374
375 CurChar = getNextChar();
376 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000377
Daniel Dunbar3f872332009-07-28 16:08:33 +0000378 return AsmToken(AsmToken::String, StringRef(TokStart, CurPtr - TokStart));
Chris Lattner10a907d2009-06-21 19:56:35 +0000379}
380
Chris Lattnerff4bc462009-08-10 01:39:42 +0000381StringRef AsmLexer::LexUntilEndOfStatement() {
382 TokStart = CurPtr;
383
Jim Grosbachd31d3042011-03-24 18:46:34 +0000384 while (!isAtStartOfComment(*CurPtr) && // Start of line comment.
385 !isAtStatementSeparator(CurPtr) && // End of statement marker.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000386 *CurPtr != '\n' &&
387 *CurPtr != '\r' &&
Kevin Enderby9823ca92009-09-04 21:45:34 +0000388 (*CurPtr != 0 || CurPtr != CurBuf->getBufferEnd())) {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000389 ++CurPtr;
Kevin Enderby9823ca92009-09-04 21:45:34 +0000390 }
Chris Lattnerff4bc462009-08-10 01:39:42 +0000391 return StringRef(TokStart, CurPtr-TokStart);
392}
Chris Lattner4651bca2009-06-21 19:21:25 +0000393
Kevin Enderbyf1c21a82011-09-13 23:45:18 +0000394StringRef AsmLexer::LexUntilEndOfLine() {
395 TokStart = CurPtr;
396
397 while (*CurPtr != '\n' &&
398 *CurPtr != '\r' &&
399 (*CurPtr != 0 || CurPtr != CurBuf->getBufferEnd())) {
400 ++CurPtr;
401 }
402 return StringRef(TokStart, CurPtr-TokStart);
403}
404
Kevin Enderbyb5db8302009-09-16 18:08:00 +0000405bool AsmLexer::isAtStartOfComment(char Char) {
Chris Lattnercec54502009-09-27 19:38:39 +0000406 // FIXME: This won't work for multi-character comment indicators like "//".
407 return Char == *MAI.getCommentString();
Kevin Enderbyb5db8302009-09-16 18:08:00 +0000408}
409
Jim Grosbachd31d3042011-03-24 18:46:34 +0000410bool AsmLexer::isAtStatementSeparator(const char *Ptr) {
411 return strncmp(Ptr, MAI.getSeparatorString(),
412 strlen(MAI.getSeparatorString())) == 0;
413}
414
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000415AsmToken AsmLexer::LexToken() {
Chris Lattnera59e8772009-06-21 07:19:10 +0000416 TokStart = CurPtr;
417 // This always consumes at least one character.
418 int CurChar = getNextChar();
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000419
Kevin Enderbyf1c21a82011-09-13 23:45:18 +0000420 if (isAtStartOfComment(CurChar)) {
421 // If this comment starts with a '#', then return the Hash token and let
422 // the assembler parser see if it can be parsed as a cpp line filename
423 // comment. We do this only if we are at the start of a line.
424 if (CurChar == '#' && isAtStartOfLine)
425 return AsmToken(AsmToken::Hash, StringRef(TokStart, 1));
426 isAtStartOfLine = true;
Kevin Enderbyb5db8302009-09-16 18:08:00 +0000427 return LexLineComment();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +0000428 }
Jim Grosbachd31d3042011-03-24 18:46:34 +0000429 if (isAtStatementSeparator(TokStart)) {
430 CurPtr += strlen(MAI.getSeparatorString()) - 1;
431 return AsmToken(AsmToken::EndOfStatement,
432 StringRef(TokStart, strlen(MAI.getSeparatorString())));
433 }
Kevin Enderby9823ca92009-09-04 21:45:34 +0000434
Jim Grosbach70796ca2011-09-15 16:52:06 +0000435 // If we're missing a newline at EOF, make sure we still get an
436 // EndOfStatement token before the Eof token.
437 if (CurChar == EOF && !isAtStartOfLine) {
438 isAtStartOfLine = true;
439 return AsmToken(AsmToken::EndOfStatement, StringRef(TokStart, 1));
440 }
441
442 isAtStartOfLine = false;
Chris Lattnera59e8772009-06-21 07:19:10 +0000443 switch (CurChar) {
444 default:
Daniel Dunbar5fe03c02010-05-06 14:46:38 +0000445 // Handle identifier: [a-zA-Z_.][a-zA-Z0-9_$.@]*
446 if (isalpha(CurChar) || CurChar == '_' || CurChar == '.')
Chris Lattner4651bca2009-06-21 19:21:25 +0000447 return LexIdentifier();
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000448
Chris Lattnera59e8772009-06-21 07:19:10 +0000449 // Unknown character, emit an error.
Chris Lattner27aa7d22009-06-21 20:16:42 +0000450 return ReturnError(TokStart, "invalid character in input");
Daniel Dunbar3f872332009-07-28 16:08:33 +0000451 case EOF: return AsmToken(AsmToken::Eof, StringRef(TokStart, 0));
Chris Lattnera59e8772009-06-21 07:19:10 +0000452 case 0:
453 case ' ':
454 case '\t':
Preston Gurd7b6f2032012-09-19 20:36:12 +0000455 if (SkipSpace) {
456 // Ignore whitespace.
457 return LexToken();
458 } else {
459 int len = 1;
460 while (*CurPtr==' ' || *CurPtr=='\t') {
461 CurPtr++;
462 len++;
463 }
464 return AsmToken(AsmToken::Space, StringRef(TokStart, len));
465 }
Chris Lattner4651bca2009-06-21 19:21:25 +0000466 case '\n': // FALL THROUGH.
Jim Grosbachd31d3042011-03-24 18:46:34 +0000467 case '\r':
Kevin Enderbyf1c21a82011-09-13 23:45:18 +0000468 isAtStartOfLine = true;
Jim Grosbachd31d3042011-03-24 18:46:34 +0000469 return AsmToken(AsmToken::EndOfStatement, StringRef(TokStart, 1));
Daniel Dunbar3f872332009-07-28 16:08:33 +0000470 case ':': return AsmToken(AsmToken::Colon, StringRef(TokStart, 1));
471 case '+': return AsmToken(AsmToken::Plus, StringRef(TokStart, 1));
472 case '-': return AsmToken(AsmToken::Minus, StringRef(TokStart, 1));
473 case '~': return AsmToken(AsmToken::Tilde, StringRef(TokStart, 1));
474 case '(': return AsmToken(AsmToken::LParen, StringRef(TokStart, 1));
475 case ')': return AsmToken(AsmToken::RParen, StringRef(TokStart, 1));
Kevin Enderbyfb0f0de2009-09-04 22:40:31 +0000476 case '[': return AsmToken(AsmToken::LBrac, StringRef(TokStart, 1));
477 case ']': return AsmToken(AsmToken::RBrac, StringRef(TokStart, 1));
478 case '{': return AsmToken(AsmToken::LCurly, StringRef(TokStart, 1));
479 case '}': return AsmToken(AsmToken::RCurly, StringRef(TokStart, 1));
Daniel Dunbar3f872332009-07-28 16:08:33 +0000480 case '*': return AsmToken(AsmToken::Star, StringRef(TokStart, 1));
481 case ',': return AsmToken(AsmToken::Comma, StringRef(TokStart, 1));
Daniel Dunbar5fe03c02010-05-06 14:46:38 +0000482 case '$': return AsmToken(AsmToken::Dollar, StringRef(TokStart, 1));
Matt Fleming924c5e52010-05-21 11:36:59 +0000483 case '@': return AsmToken(AsmToken::At, StringRef(TokStart, 1));
Rafael Espindola65366442011-06-05 02:43:45 +0000484 case '\\': return AsmToken(AsmToken::BackSlash, StringRef(TokStart, 1));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000485 case '=':
Daniel Dunbar475839e2009-06-29 20:37:27 +0000486 if (*CurPtr == '=')
Daniel Dunbar3f872332009-07-28 16:08:33 +0000487 return ++CurPtr, AsmToken(AsmToken::EqualEqual, StringRef(TokStart, 2));
488 return AsmToken(AsmToken::Equal, StringRef(TokStart, 1));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000489 case '|':
Daniel Dunbar475839e2009-06-29 20:37:27 +0000490 if (*CurPtr == '|')
Daniel Dunbar3f872332009-07-28 16:08:33 +0000491 return ++CurPtr, AsmToken(AsmToken::PipePipe, StringRef(TokStart, 2));
492 return AsmToken(AsmToken::Pipe, StringRef(TokStart, 1));
493 case '^': return AsmToken(AsmToken::Caret, StringRef(TokStart, 1));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000494 case '&':
Daniel Dunbar475839e2009-06-29 20:37:27 +0000495 if (*CurPtr == '&')
Daniel Dunbar3f872332009-07-28 16:08:33 +0000496 return ++CurPtr, AsmToken(AsmToken::AmpAmp, StringRef(TokStart, 2));
497 return AsmToken(AsmToken::Amp, StringRef(TokStart, 1));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000498 case '!':
Daniel Dunbar475839e2009-06-29 20:37:27 +0000499 if (*CurPtr == '=')
Daniel Dunbar3f872332009-07-28 16:08:33 +0000500 return ++CurPtr, AsmToken(AsmToken::ExclaimEqual, StringRef(TokStart, 2));
501 return AsmToken(AsmToken::Exclaim, StringRef(TokStart, 1));
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000502 case '%': return AsmToken(AsmToken::Percent, StringRef(TokStart, 1));
Chris Lattner4651bca2009-06-21 19:21:25 +0000503 case '/': return LexSlash();
Kevin Enderby9823ca92009-09-04 21:45:34 +0000504 case '#': return AsmToken(AsmToken::Hash, StringRef(TokStart, 1));
Roman Divacky7529b162010-12-18 08:56:37 +0000505 case '\'': return LexSingleQuote();
Chris Lattner10a907d2009-06-21 19:56:35 +0000506 case '"': return LexQuote();
Chris Lattner4651bca2009-06-21 19:21:25 +0000507 case '0': case '1': case '2': case '3': case '4':
508 case '5': case '6': case '7': case '8': case '9':
509 return LexDigit();
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000510 case '<':
Daniel Dunbar475839e2009-06-29 20:37:27 +0000511 switch (*CurPtr) {
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000512 case '<': return ++CurPtr, AsmToken(AsmToken::LessLess,
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000513 StringRef(TokStart, 2));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000514 case '=': return ++CurPtr, AsmToken(AsmToken::LessEqual,
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000515 StringRef(TokStart, 2));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000516 case '>': return ++CurPtr, AsmToken(AsmToken::LessGreater,
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000517 StringRef(TokStart, 2));
Daniel Dunbar3f872332009-07-28 16:08:33 +0000518 default: return AsmToken(AsmToken::Less, StringRef(TokStart, 1));
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000519 }
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000520 case '>':
Daniel Dunbar475839e2009-06-29 20:37:27 +0000521 switch (*CurPtr) {
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000522 case '>': return ++CurPtr, AsmToken(AsmToken::GreaterGreater,
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000523 StringRef(TokStart, 2));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000524 case '=': return ++CurPtr, AsmToken(AsmToken::GreaterEqual,
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000525 StringRef(TokStart, 2));
Daniel Dunbar3f872332009-07-28 16:08:33 +0000526 default: return AsmToken(AsmToken::Greater, StringRef(TokStart, 1));
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000527 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000528
Chris Lattner4651bca2009-06-21 19:21:25 +0000529 // TODO: Quoted identifiers (objc methods etc)
530 // local labels: [0-9][:]
531 // Forward/backward labels: [0-9][fb]
532 // Integers, fp constants, character constants.
Chris Lattnera59e8772009-06-21 07:19:10 +0000533 }
Duncan Sands66b9f292009-06-22 06:59:32 +0000534}