blob: a7de64f32e2bbd39917566c7b5c1899c8acc7666 [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';
182 CurPtr = isHex || !FirstHex ? LookAhead : FirstHex;
183 if (isHex)
184 return 16;
185 return DefaultRadix;
186}
187
Chris Lattner4651bca2009-06-21 19:21:25 +0000188/// LexDigit: First character is [0-9].
189/// Local Label: [0-9][:]
190/// Forward/Backward Label: [0-9][fb]
191/// Binary integer: 0b[01]+
192/// Octal integer: 0[0-7]+
Chad Rosierd556fd12013-02-12 01:00:01 +0000193/// Hex integer: 0x[0-9a-fA-F]+ or [0x]?[0-9][0-9a-fA-F]*[hH]
Chris Lattner4651bca2009-06-21 19:21:25 +0000194/// Decimal integer: [1-9][0-9]*
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000195AsmToken AsmLexer::LexDigit() {
Chris Lattner4651bca2009-06-21 19:21:25 +0000196 // Decimal integer: [1-9][0-9]*
Daniel Dunbarfacb34b2010-09-24 17:10:26 +0000197 if (CurPtr[-1] != '0' || CurPtr[0] == '.') {
Chad Rosierd556fd12013-02-12 01:00:01 +0000198 unsigned Radix = doLookAhead(CurPtr, 10);
199 bool isHex = Radix == 16;
Daniel Dunbar54f0a622010-09-24 01:59:31 +0000200 // Check for floating point literals.
Chad Rosierd556fd12013-02-12 01:00:01 +0000201 if (!isHex && (*CurPtr == '.' || *CurPtr == 'e')) {
Daniel Dunbar54f0a622010-09-24 01:59:31 +0000202 ++CurPtr;
Daniel Dunbar4f2afe32010-09-27 20:12:52 +0000203 return LexFloatLiteral();
Daniel Dunbar54f0a622010-09-24 01:59:31 +0000204 }
205
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000206 StringRef Result(TokStart, CurPtr - TokStart);
Chris Lattnera78c67e2010-08-24 00:43:25 +0000207
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000208 long long Value;
Chad Rosierd556fd12013-02-12 01:00:01 +0000209 if (Result.getAsInteger(Radix, Value)) {
Chris Lattner7ab3cc32010-12-25 21:36:35 +0000210 // Allow positive values that are too large to fit into a signed 64-bit
211 // integer, but that do fit in an unsigned one, we just convert them over.
212 unsigned long long UValue;
Chad Rosierd556fd12013-02-12 01:00:01 +0000213 if (Result.getAsInteger(Radix, UValue))
214 return ReturnError(TokStart, !isHex ? "invalid decimal number" :
215 "invalid hexdecimal number");
Chris Lattner7ab3cc32010-12-25 21:36:35 +0000216 Value = (long long)UValue;
Chris Lattner3a151be2010-03-13 19:25:13 +0000217 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000218
Chad Rosierd556fd12013-02-12 01:00:01 +0000219 // Consume the [bB][hH].
220 if (Radix == 2 || Radix == 16)
221 ++CurPtr;
222
Chris Lattnera78c67e2010-08-24 00:43:25 +0000223 // The darwin/x86 (and x86-64) assembler accepts and ignores ULL and LL
224 // suffixes on integer literals.
225 SkipIgnoredIntegerSuffix(CurPtr);
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000226
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000227 return AsmToken(AsmToken::Integer, Result, Value);
Chris Lattner4651bca2009-06-21 19:21:25 +0000228 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000229
Chris Lattner4651bca2009-06-21 19:21:25 +0000230 if (*CurPtr == 'b') {
231 ++CurPtr;
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000232 // See if we actually have "0b" as part of something like "jmp 0b\n"
Kevin Enderby9f2ad112010-05-18 18:09:20 +0000233 if (!isdigit(CurPtr[0])) {
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000234 --CurPtr;
235 StringRef Result(TokStart, CurPtr - TokStart);
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000236 return AsmToken(AsmToken::Integer, Result, 0);
237 }
Chris Lattner4651bca2009-06-21 19:21:25 +0000238 const char *NumStart = CurPtr;
239 while (CurPtr[0] == '0' || CurPtr[0] == '1')
240 ++CurPtr;
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000241
Chris Lattner4651bca2009-06-21 19:21:25 +0000242 // Requires at least one binary digit.
243 if (CurPtr == NumStart)
Eric Christopher05f9e4e2011-04-12 00:18:03 +0000244 return ReturnError(TokStart, "invalid binary number");
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000245
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000246 StringRef Result(TokStart, CurPtr - TokStart);
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000247
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000248 long long Value;
Chris Lattnera78c67e2010-08-24 00:43:25 +0000249 if (Result.substr(2).getAsInteger(2, Value))
Eric Christopher05f9e4e2011-04-12 00:18:03 +0000250 return ReturnError(TokStart, "invalid binary number");
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000251
Chris Lattnera78c67e2010-08-24 00:43:25 +0000252 // The darwin/x86 (and x86-64) assembler accepts and ignores ULL and LL
253 // suffixes on integer literals.
254 SkipIgnoredIntegerSuffix(CurPtr);
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000255
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000256 return AsmToken(AsmToken::Integer, Result, Value);
Chris Lattner4651bca2009-06-21 19:21:25 +0000257 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000258
Chris Lattner4651bca2009-06-21 19:21:25 +0000259 if (*CurPtr == 'x') {
260 ++CurPtr;
261 const char *NumStart = CurPtr;
262 while (isxdigit(CurPtr[0]))
263 ++CurPtr;
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000264
Chris Lattner4651bca2009-06-21 19:21:25 +0000265 // Requires at least one hex digit.
266 if (CurPtr == NumStart)
Eric Christopher05f9e4e2011-04-12 00:18:03 +0000267 return ReturnError(CurPtr-2, "invalid hexadecimal number");
Chris Lattner03949c92010-01-22 01:17:12 +0000268
269 unsigned long long Result;
270 if (StringRef(TokStart, CurPtr - TokStart).getAsInteger(0, Result))
Eric Christopher05f9e4e2011-04-12 00:18:03 +0000271 return ReturnError(TokStart, "invalid hexadecimal number");
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000272
Chad Rosierd556fd12013-02-12 01:00:01 +0000273 // Consume the optional [hH].
274 if (*CurPtr == 'h' || *CurPtr == 'H')
275 ++CurPtr;
276
Chris Lattnera78c67e2010-08-24 00:43:25 +0000277 // The darwin/x86 (and x86-64) assembler accepts and ignores ULL and LL
278 // suffixes on integer literals.
279 SkipIgnoredIntegerSuffix(CurPtr);
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000280
Daniel Dunbar3f872332009-07-28 16:08:33 +0000281 return AsmToken(AsmToken::Integer, StringRef(TokStart, CurPtr - TokStart),
Chris Lattner03949c92010-01-22 01:17:12 +0000282 (int64_t)Result);
Chris Lattner4651bca2009-06-21 19:21:25 +0000283 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000284
Chad Rosierd556fd12013-02-12 01:00:01 +0000285 // Either octal or hexidecimal.
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000286 long long Value;
Chad Rosierd556fd12013-02-12 01:00:01 +0000287 unsigned Radix = doLookAhead(CurPtr, 8);
288 StringRef Result(TokStart, CurPtr - TokStart);
289 if (Result.getAsInteger(Radix, Value))
Eric Christopher05f9e4e2011-04-12 00:18:03 +0000290 return ReturnError(TokStart, "invalid octal number");
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000291
Chad Rosierd556fd12013-02-12 01:00:01 +0000292 // Consume the [hH].
293 if (Radix == 16)
294 ++CurPtr;
295
Chris Lattnera78c67e2010-08-24 00:43:25 +0000296 // The darwin/x86 (and x86-64) assembler accepts and ignores ULL and LL
297 // suffixes on integer literals.
298 SkipIgnoredIntegerSuffix(CurPtr);
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000299
Chris Lattnerd5a7e352010-01-22 07:34:12 +0000300 return AsmToken(AsmToken::Integer, Result, Value);
Chris Lattner4651bca2009-06-21 19:21:25 +0000301}
302
Roman Divacky7529b162010-12-18 08:56:37 +0000303/// LexSingleQuote: Integer: 'b'
304AsmToken AsmLexer::LexSingleQuote() {
305 int CurChar = getNextChar();
306
307 if (CurChar == '\\')
308 CurChar = getNextChar();
309
310 if (CurChar == EOF)
311 return ReturnError(TokStart, "unterminated single quote");
312
313 CurChar = getNextChar();
314
315 if (CurChar != '\'')
316 return ReturnError(TokStart, "single quote way too long");
317
318 // The idea here being that 'c' is basically just an integral
319 // constant.
320 StringRef Res = StringRef(TokStart,CurPtr - TokStart);
321 long long Value;
322
323 if (Res.startswith("\'\\")) {
324 char theChar = Res[2];
325 switch (theChar) {
326 default: Value = theChar; break;
327 case '\'': Value = '\''; break;
328 case 't': Value = '\t'; break;
329 case 'n': Value = '\n'; break;
330 case 'b': Value = '\b'; break;
331 }
332 } else
333 Value = TokStart[1];
334
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000335 return AsmToken(AsmToken::Integer, Res, Value);
Roman Divacky7529b162010-12-18 08:56:37 +0000336}
337
338
Chris Lattner10a907d2009-06-21 19:56:35 +0000339/// LexQuote: String: "..."
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000340AsmToken AsmLexer::LexQuote() {
Chris Lattner10a907d2009-06-21 19:56:35 +0000341 int CurChar = getNextChar();
342 // TODO: does gas allow multiline string constants?
343 while (CurChar != '"') {
344 if (CurChar == '\\') {
345 // Allow \", etc.
346 CurChar = getNextChar();
347 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000348
Chris Lattner14ee48a2009-06-21 21:22:11 +0000349 if (CurChar == EOF)
350 return ReturnError(TokStart, "unterminated string constant");
Chris Lattner10a907d2009-06-21 19:56:35 +0000351
352 CurChar = getNextChar();
353 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000354
Daniel Dunbar3f872332009-07-28 16:08:33 +0000355 return AsmToken(AsmToken::String, StringRef(TokStart, CurPtr - TokStart));
Chris Lattner10a907d2009-06-21 19:56:35 +0000356}
357
Chris Lattnerff4bc462009-08-10 01:39:42 +0000358StringRef AsmLexer::LexUntilEndOfStatement() {
359 TokStart = CurPtr;
360
Jim Grosbachd31d3042011-03-24 18:46:34 +0000361 while (!isAtStartOfComment(*CurPtr) && // Start of line comment.
362 !isAtStatementSeparator(CurPtr) && // End of statement marker.
Chris Lattnerff4bc462009-08-10 01:39:42 +0000363 *CurPtr != '\n' &&
364 *CurPtr != '\r' &&
Kevin Enderby9823ca92009-09-04 21:45:34 +0000365 (*CurPtr != 0 || CurPtr != CurBuf->getBufferEnd())) {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000366 ++CurPtr;
Kevin Enderby9823ca92009-09-04 21:45:34 +0000367 }
Chris Lattnerff4bc462009-08-10 01:39:42 +0000368 return StringRef(TokStart, CurPtr-TokStart);
369}
Chris Lattner4651bca2009-06-21 19:21:25 +0000370
Kevin Enderbyf1c21a82011-09-13 23:45:18 +0000371StringRef AsmLexer::LexUntilEndOfLine() {
372 TokStart = CurPtr;
373
374 while (*CurPtr != '\n' &&
375 *CurPtr != '\r' &&
376 (*CurPtr != 0 || CurPtr != CurBuf->getBufferEnd())) {
377 ++CurPtr;
378 }
379 return StringRef(TokStart, CurPtr-TokStart);
380}
381
Kevin Enderbyb5db8302009-09-16 18:08:00 +0000382bool AsmLexer::isAtStartOfComment(char Char) {
Chris Lattnercec54502009-09-27 19:38:39 +0000383 // FIXME: This won't work for multi-character comment indicators like "//".
384 return Char == *MAI.getCommentString();
Kevin Enderbyb5db8302009-09-16 18:08:00 +0000385}
386
Jim Grosbachd31d3042011-03-24 18:46:34 +0000387bool AsmLexer::isAtStatementSeparator(const char *Ptr) {
388 return strncmp(Ptr, MAI.getSeparatorString(),
389 strlen(MAI.getSeparatorString())) == 0;
390}
391
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000392AsmToken AsmLexer::LexToken() {
Chris Lattnera59e8772009-06-21 07:19:10 +0000393 TokStart = CurPtr;
394 // This always consumes at least one character.
395 int CurChar = getNextChar();
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000396
Kevin Enderbyf1c21a82011-09-13 23:45:18 +0000397 if (isAtStartOfComment(CurChar)) {
398 // If this comment starts with a '#', then return the Hash token and let
399 // the assembler parser see if it can be parsed as a cpp line filename
400 // comment. We do this only if we are at the start of a line.
401 if (CurChar == '#' && isAtStartOfLine)
402 return AsmToken(AsmToken::Hash, StringRef(TokStart, 1));
403 isAtStartOfLine = true;
Kevin Enderbyb5db8302009-09-16 18:08:00 +0000404 return LexLineComment();
Kevin Enderbyf1c21a82011-09-13 23:45:18 +0000405 }
Jim Grosbachd31d3042011-03-24 18:46:34 +0000406 if (isAtStatementSeparator(TokStart)) {
407 CurPtr += strlen(MAI.getSeparatorString()) - 1;
408 return AsmToken(AsmToken::EndOfStatement,
409 StringRef(TokStart, strlen(MAI.getSeparatorString())));
410 }
Kevin Enderby9823ca92009-09-04 21:45:34 +0000411
Jim Grosbach70796ca2011-09-15 16:52:06 +0000412 // If we're missing a newline at EOF, make sure we still get an
413 // EndOfStatement token before the Eof token.
414 if (CurChar == EOF && !isAtStartOfLine) {
415 isAtStartOfLine = true;
416 return AsmToken(AsmToken::EndOfStatement, StringRef(TokStart, 1));
417 }
418
419 isAtStartOfLine = false;
Chris Lattnera59e8772009-06-21 07:19:10 +0000420 switch (CurChar) {
421 default:
Daniel Dunbar5fe03c02010-05-06 14:46:38 +0000422 // Handle identifier: [a-zA-Z_.][a-zA-Z0-9_$.@]*
423 if (isalpha(CurChar) || CurChar == '_' || CurChar == '.')
Chris Lattner4651bca2009-06-21 19:21:25 +0000424 return LexIdentifier();
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000425
Chris Lattnera59e8772009-06-21 07:19:10 +0000426 // Unknown character, emit an error.
Chris Lattner27aa7d22009-06-21 20:16:42 +0000427 return ReturnError(TokStart, "invalid character in input");
Daniel Dunbar3f872332009-07-28 16:08:33 +0000428 case EOF: return AsmToken(AsmToken::Eof, StringRef(TokStart, 0));
Chris Lattnera59e8772009-06-21 07:19:10 +0000429 case 0:
430 case ' ':
431 case '\t':
Preston Gurd7b6f2032012-09-19 20:36:12 +0000432 if (SkipSpace) {
433 // Ignore whitespace.
434 return LexToken();
435 } else {
436 int len = 1;
437 while (*CurPtr==' ' || *CurPtr=='\t') {
438 CurPtr++;
439 len++;
440 }
441 return AsmToken(AsmToken::Space, StringRef(TokStart, len));
442 }
Chris Lattner4651bca2009-06-21 19:21:25 +0000443 case '\n': // FALL THROUGH.
Jim Grosbachd31d3042011-03-24 18:46:34 +0000444 case '\r':
Kevin Enderbyf1c21a82011-09-13 23:45:18 +0000445 isAtStartOfLine = true;
Jim Grosbachd31d3042011-03-24 18:46:34 +0000446 return AsmToken(AsmToken::EndOfStatement, StringRef(TokStart, 1));
Daniel Dunbar3f872332009-07-28 16:08:33 +0000447 case ':': return AsmToken(AsmToken::Colon, StringRef(TokStart, 1));
448 case '+': return AsmToken(AsmToken::Plus, StringRef(TokStart, 1));
449 case '-': return AsmToken(AsmToken::Minus, StringRef(TokStart, 1));
450 case '~': return AsmToken(AsmToken::Tilde, StringRef(TokStart, 1));
451 case '(': return AsmToken(AsmToken::LParen, StringRef(TokStart, 1));
452 case ')': return AsmToken(AsmToken::RParen, StringRef(TokStart, 1));
Kevin Enderbyfb0f0de2009-09-04 22:40:31 +0000453 case '[': return AsmToken(AsmToken::LBrac, StringRef(TokStart, 1));
454 case ']': return AsmToken(AsmToken::RBrac, StringRef(TokStart, 1));
455 case '{': return AsmToken(AsmToken::LCurly, StringRef(TokStart, 1));
456 case '}': return AsmToken(AsmToken::RCurly, StringRef(TokStart, 1));
Daniel Dunbar3f872332009-07-28 16:08:33 +0000457 case '*': return AsmToken(AsmToken::Star, StringRef(TokStart, 1));
458 case ',': return AsmToken(AsmToken::Comma, StringRef(TokStart, 1));
Daniel Dunbar5fe03c02010-05-06 14:46:38 +0000459 case '$': return AsmToken(AsmToken::Dollar, StringRef(TokStart, 1));
Matt Fleming924c5e52010-05-21 11:36:59 +0000460 case '@': return AsmToken(AsmToken::At, StringRef(TokStart, 1));
Rafael Espindola65366442011-06-05 02:43:45 +0000461 case '\\': return AsmToken(AsmToken::BackSlash, StringRef(TokStart, 1));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000462 case '=':
Daniel Dunbar475839e2009-06-29 20:37:27 +0000463 if (*CurPtr == '=')
Daniel Dunbar3f872332009-07-28 16:08:33 +0000464 return ++CurPtr, AsmToken(AsmToken::EqualEqual, StringRef(TokStart, 2));
465 return AsmToken(AsmToken::Equal, StringRef(TokStart, 1));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000466 case '|':
Daniel Dunbar475839e2009-06-29 20:37:27 +0000467 if (*CurPtr == '|')
Daniel Dunbar3f872332009-07-28 16:08:33 +0000468 return ++CurPtr, AsmToken(AsmToken::PipePipe, StringRef(TokStart, 2));
469 return AsmToken(AsmToken::Pipe, StringRef(TokStart, 1));
470 case '^': return AsmToken(AsmToken::Caret, StringRef(TokStart, 1));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000471 case '&':
Daniel Dunbar475839e2009-06-29 20:37:27 +0000472 if (*CurPtr == '&')
Daniel Dunbar3f872332009-07-28 16:08:33 +0000473 return ++CurPtr, AsmToken(AsmToken::AmpAmp, StringRef(TokStart, 2));
474 return AsmToken(AsmToken::Amp, StringRef(TokStart, 1));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000475 case '!':
Daniel Dunbar475839e2009-06-29 20:37:27 +0000476 if (*CurPtr == '=')
Daniel Dunbar3f872332009-07-28 16:08:33 +0000477 return ++CurPtr, AsmToken(AsmToken::ExclaimEqual, StringRef(TokStart, 2));
478 return AsmToken(AsmToken::Exclaim, StringRef(TokStart, 1));
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000479 case '%': return AsmToken(AsmToken::Percent, StringRef(TokStart, 1));
Chris Lattner4651bca2009-06-21 19:21:25 +0000480 case '/': return LexSlash();
Kevin Enderby9823ca92009-09-04 21:45:34 +0000481 case '#': return AsmToken(AsmToken::Hash, StringRef(TokStart, 1));
Roman Divacky7529b162010-12-18 08:56:37 +0000482 case '\'': return LexSingleQuote();
Chris Lattner10a907d2009-06-21 19:56:35 +0000483 case '"': return LexQuote();
Chris Lattner4651bca2009-06-21 19:21:25 +0000484 case '0': case '1': case '2': case '3': case '4':
485 case '5': case '6': case '7': case '8': case '9':
486 return LexDigit();
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000487 case '<':
Daniel Dunbar475839e2009-06-29 20:37:27 +0000488 switch (*CurPtr) {
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000489 case '<': return ++CurPtr, AsmToken(AsmToken::LessLess,
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000490 StringRef(TokStart, 2));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000491 case '=': return ++CurPtr, AsmToken(AsmToken::LessEqual,
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000492 StringRef(TokStart, 2));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000493 case '>': return ++CurPtr, AsmToken(AsmToken::LessGreater,
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000494 StringRef(TokStart, 2));
Daniel Dunbar3f872332009-07-28 16:08:33 +0000495 default: return AsmToken(AsmToken::Less, StringRef(TokStart, 1));
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000496 }
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000497 case '>':
Daniel Dunbar475839e2009-06-29 20:37:27 +0000498 switch (*CurPtr) {
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000499 case '>': return ++CurPtr, AsmToken(AsmToken::GreaterGreater,
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000500 StringRef(TokStart, 2));
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000501 case '=': return ++CurPtr, AsmToken(AsmToken::GreaterEqual,
Daniel Dunbarcb358b62009-07-28 03:00:54 +0000502 StringRef(TokStart, 2));
Daniel Dunbar3f872332009-07-28 16:08:33 +0000503 default: return AsmToken(AsmToken::Greater, StringRef(TokStart, 1));
Chris Lattner8dfbe6c2009-06-23 05:57:07 +0000504 }
Jim Grosbachde2f5f42011-02-11 19:05:56 +0000505
Chris Lattner4651bca2009-06-21 19:21:25 +0000506 // TODO: Quoted identifiers (objc methods etc)
507 // local labels: [0-9][:]
508 // Forward/backward labels: [0-9][fb]
509 // Integers, fp constants, character constants.
Chris Lattnera59e8772009-06-21 07:19:10 +0000510 }
Duncan Sands66b9f292009-06-22 06:59:32 +0000511}