blob: fae7ca48a92230d6ce82ccb740d2c7fdf65d8d89 [file] [log] [blame]
Chris Lattnera8058742007-11-18 02:57:27 +00001//===- TGLexer.cpp - Lexer for TableGen -----------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Implement the Lexer for TableGen.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner6aaca042007-11-18 05:25:45 +000014#include "TGLexer.h"
Chris Lattnera8058742007-11-18 02:57:27 +000015#include "llvm/Support/Streams.h"
Chris Lattnera8058742007-11-18 02:57:27 +000016#include "llvm/Support/MemoryBuffer.h"
Chris Lattnerf4601652007-11-22 20:49:04 +000017#include <ostream>
Chuck Rose III8b0ec642007-11-21 19:36:25 +000018#include "llvm/Config/config.h"
Chris Lattnera8058742007-11-18 02:57:27 +000019#include <cctype>
20using namespace llvm;
21
Chris Lattnera8058742007-11-18 02:57:27 +000022TGLexer::TGLexer(MemoryBuffer *StartBuf) : CurLineNo(1), CurBuf(StartBuf) {
23 CurPtr = CurBuf->getBufferStart();
Chris Lattner56a9fcf2007-11-19 07:43:52 +000024 TokStart = 0;
Chris Lattnera8058742007-11-18 02:57:27 +000025}
26
27TGLexer::~TGLexer() {
28 while (!IncludeStack.empty()) {
29 delete IncludeStack.back().Buffer;
30 IncludeStack.pop_back();
31 }
32 delete CurBuf;
33}
34
Chris Lattnerc8a9bbc2007-11-19 07:38:58 +000035/// ReturnError - Set the error to the specified string at the specified
Chris Lattnerf4601652007-11-22 20:49:04 +000036/// location. This is defined to always return tgtok::Error.
37tgtok::TokKind TGLexer::ReturnError(const char *Loc, const std::string &Msg) {
Chris Lattnerc8a9bbc2007-11-19 07:38:58 +000038 PrintError(Loc, Msg);
Chris Lattnerf4601652007-11-22 20:49:04 +000039 return tgtok::Error;
Chris Lattnerc8a9bbc2007-11-19 07:38:58 +000040}
Chris Lattnera8058742007-11-18 02:57:27 +000041
Chris Lattnerc8a9bbc2007-11-19 07:38:58 +000042void TGLexer::PrintIncludeStack(std::ostream &OS) const {
Chris Lattnera8058742007-11-18 02:57:27 +000043 for (unsigned i = 0, e = IncludeStack.size(); i != e; ++i)
44 OS << "Included from " << IncludeStack[i].Buffer->getBufferIdentifier()
45 << ":" << IncludeStack[i].LineNo << ":\n";
46 OS << "Parsing " << CurBuf->getBufferIdentifier() << ":"
47 << CurLineNo << ": ";
48}
49
Chris Lattnerc8a9bbc2007-11-19 07:38:58 +000050/// PrintError - Print the error at the specified location.
51void TGLexer::PrintError(const char *ErrorLoc, const std::string &Msg) const {
Chris Lattnerf4601652007-11-22 20:49:04 +000052 PrintIncludeStack(*cerr.stream());
53 cerr << Msg << "\n";
Chris Lattnerc8a9bbc2007-11-19 07:38:58 +000054 assert(ErrorLoc && "Location not specified!");
55
56 // Scan backward to find the start of the line.
57 const char *LineStart = ErrorLoc;
58 while (LineStart != CurBuf->getBufferStart() &&
59 LineStart[-1] != '\n' && LineStart[-1] != '\r')
60 --LineStart;
61 // Get the end of the line.
62 const char *LineEnd = ErrorLoc;
63 while (LineEnd != CurBuf->getBufferEnd() &&
64 LineEnd[0] != '\n' && LineEnd[0] != '\r')
65 ++LineEnd;
66 // Print out the line.
67 cerr << std::string(LineStart, LineEnd) << "\n";
68 // Print out spaces before the carat.
Chris Lattner56a9fcf2007-11-19 07:43:52 +000069 for (const char *Pos = LineStart; Pos != ErrorLoc; ++Pos)
Chris Lattnerc8a9bbc2007-11-19 07:38:58 +000070 cerr << (*Pos == '\t' ? '\t' : ' ');
71 cerr << "^\n";
72}
73
Chris Lattnera8058742007-11-18 02:57:27 +000074int TGLexer::getNextChar() {
75 char CurChar = *CurPtr++;
76 switch (CurChar) {
77 default:
Chris Lattnerc1819182007-11-18 05:48:46 +000078 return (unsigned char)CurChar;
Chris Lattnera8058742007-11-18 02:57:27 +000079 case 0:
80 // A nul character in the stream is either the end of the current buffer or
81 // a random nul in the file. Disambiguate that here.
82 if (CurPtr-1 != CurBuf->getBufferEnd())
83 return 0; // Just whitespace.
84
85 // If this is the end of an included file, pop the parent file off the
86 // include stack.
87 if (!IncludeStack.empty()) {
88 delete CurBuf;
89 CurBuf = IncludeStack.back().Buffer;
90 CurLineNo = IncludeStack.back().LineNo;
91 CurPtr = IncludeStack.back().CurPtr;
92 IncludeStack.pop_back();
93 return getNextChar();
94 }
95
96 // Otherwise, return end of file.
97 --CurPtr; // Another call to lex will return EOF again.
98 return EOF;
99 case '\n':
100 case '\r':
101 // Handle the newline character by ignoring it and incrementing the line
102 // count. However, be careful about 'dos style' files with \n\r in them.
103 // Only treat a \n\r or \r\n as a single line.
104 if ((*CurPtr == '\n' || (*CurPtr == '\r')) &&
105 *CurPtr != CurChar)
Chris Lattnerc1819182007-11-18 05:48:46 +0000106 ++CurPtr; // Eat the two char newline sequence.
Chris Lattnera8058742007-11-18 02:57:27 +0000107
108 ++CurLineNo;
109 return '\n';
110 }
111}
112
Chris Lattnerf4601652007-11-22 20:49:04 +0000113tgtok::TokKind TGLexer::LexToken() {
Chris Lattner56a9fcf2007-11-19 07:43:52 +0000114 TokStart = CurPtr;
Chris Lattnera8058742007-11-18 02:57:27 +0000115 // This always consumes at least one character.
116 int CurChar = getNextChar();
117
118 switch (CurChar) {
119 default:
120 // Handle letters: [a-zA-Z_]
121 if (isalpha(CurChar) || CurChar == '_')
122 return LexIdentifier();
123
Chris Lattnerf4601652007-11-22 20:49:04 +0000124 // Unknown character, emit an error.
125 return ReturnError(TokStart, "Unexpected character");
126 case EOF: return tgtok::Eof;
127 case ':': return tgtok::colon;
128 case ';': return tgtok::semi;
129 case '.': return tgtok::period;
130 case ',': return tgtok::comma;
131 case '<': return tgtok::less;
132 case '>': return tgtok::greater;
133 case ']': return tgtok::r_square;
134 case '{': return tgtok::l_brace;
135 case '}': return tgtok::r_brace;
136 case '(': return tgtok::l_paren;
137 case ')': return tgtok::r_paren;
138 case '=': return tgtok::equal;
139 case '?': return tgtok::question;
140
Chris Lattnera8058742007-11-18 02:57:27 +0000141 case 0:
142 case ' ':
143 case '\t':
144 case '\n':
145 case '\r':
146 // Ignore whitespace.
147 return LexToken();
148 case '/':
149 // If this is the start of a // comment, skip until the end of the line or
150 // the end of the buffer.
151 if (*CurPtr == '/')
152 SkipBCPLComment();
153 else if (*CurPtr == '*') {
154 if (SkipCComment())
Chris Lattnerf4601652007-11-22 20:49:04 +0000155 return tgtok::Error;
156 } else // Otherwise, this is an error.
157 return ReturnError(TokStart, "Unexpected character");
Chris Lattnera8058742007-11-18 02:57:27 +0000158 return LexToken();
159 case '-': case '+':
160 case '0': case '1': case '2': case '3': case '4': case '5': case '6':
161 case '7': case '8': case '9':
162 return LexNumber();
163 case '"': return LexString();
164 case '$': return LexVarName();
165 case '[': return LexBracket();
166 case '!': return LexExclaim();
167 }
168}
169
170/// LexString - Lex "[^"]*"
Chris Lattnerf4601652007-11-22 20:49:04 +0000171tgtok::TokKind TGLexer::LexString() {
Chris Lattnera8058742007-11-18 02:57:27 +0000172 const char *StrStart = CurPtr;
173
174 while (*CurPtr != '"') {
175 // If we hit the end of the buffer, report an error.
Chris Lattnerc8a9bbc2007-11-19 07:38:58 +0000176 if (*CurPtr == 0 && CurPtr == CurBuf->getBufferEnd())
177 return ReturnError(StrStart, "End of file in string literal");
178
179 if (*CurPtr == '\n' || *CurPtr == '\r')
180 return ReturnError(StrStart, "End of line in string literal");
Chris Lattnera8058742007-11-18 02:57:27 +0000181
182 ++CurPtr;
183 }
184
Chris Lattnerf4601652007-11-22 20:49:04 +0000185 CurStrVal.assign(StrStart, CurPtr);
Chris Lattnera8058742007-11-18 02:57:27 +0000186 ++CurPtr;
Chris Lattnerf4601652007-11-22 20:49:04 +0000187 return tgtok::StrVal;
Chris Lattnera8058742007-11-18 02:57:27 +0000188}
189
Chris Lattnerf4601652007-11-22 20:49:04 +0000190tgtok::TokKind TGLexer::LexVarName() {
Chris Lattnera8058742007-11-18 02:57:27 +0000191 if (!isalpha(CurPtr[0]) && CurPtr[0] != '_')
Chris Lattnerf4601652007-11-22 20:49:04 +0000192 return ReturnError(TokStart, "Invalid variable name");
Chris Lattnera8058742007-11-18 02:57:27 +0000193
194 // Otherwise, we're ok, consume the rest of the characters.
195 const char *VarNameStart = CurPtr++;
196
197 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_')
198 ++CurPtr;
199
Chris Lattnerf4601652007-11-22 20:49:04 +0000200 CurStrVal.assign(VarNameStart, CurPtr);
201 return tgtok::VarName;
Chris Lattnera8058742007-11-18 02:57:27 +0000202}
203
204
Chris Lattnerf4601652007-11-22 20:49:04 +0000205tgtok::TokKind TGLexer::LexIdentifier() {
Chris Lattnera8058742007-11-18 02:57:27 +0000206 // The first letter is [a-zA-Z_].
Chris Lattnerf4601652007-11-22 20:49:04 +0000207 const char *IdentStart = TokStart;
Chris Lattnera8058742007-11-18 02:57:27 +0000208
209 // Match the rest of the identifier regex: [0-9a-zA-Z_]*
210 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_')
211 ++CurPtr;
212
213 // Check to see if this identifier is a keyword.
214 unsigned Len = CurPtr-IdentStart;
215
Chris Lattnerf4601652007-11-22 20:49:04 +0000216 if (Len == 3 && !memcmp(IdentStart, "int", 3)) return tgtok::Int;
217 if (Len == 3 && !memcmp(IdentStart, "bit", 3)) return tgtok::Bit;
218 if (Len == 4 && !memcmp(IdentStart, "bits", 4)) return tgtok::Bits;
219 if (Len == 6 && !memcmp(IdentStart, "string", 6)) return tgtok::String;
220 if (Len == 4 && !memcmp(IdentStart, "list", 4)) return tgtok::List;
221 if (Len == 4 && !memcmp(IdentStart, "code", 4)) return tgtok::Code;
222 if (Len == 3 && !memcmp(IdentStart, "dag", 3)) return tgtok::Dag;
Chris Lattnera8058742007-11-18 02:57:27 +0000223
Chris Lattnerf4601652007-11-22 20:49:04 +0000224 if (Len == 5 && !memcmp(IdentStart, "class", 5)) return tgtok::Class;
225 if (Len == 3 && !memcmp(IdentStart, "def", 3)) return tgtok::Def;
226 if (Len == 4 && !memcmp(IdentStart, "defm", 4)) return tgtok::Defm;
227 if (Len == 10 && !memcmp(IdentStart, "multiclass", 10))
228 return tgtok::MultiClass;
229 if (Len == 5 && !memcmp(IdentStart, "field", 5)) return tgtok::Field;
230 if (Len == 3 && !memcmp(IdentStart, "let", 3)) return tgtok::Let;
231 if (Len == 2 && !memcmp(IdentStart, "in", 2)) return tgtok::In;
Chris Lattnera8058742007-11-18 02:57:27 +0000232
233 if (Len == 7 && !memcmp(IdentStart, "include", 7)) {
Chris Lattnerf4601652007-11-22 20:49:04 +0000234 if (LexInclude()) return tgtok::Error;
235 return Lex();
Chris Lattnera8058742007-11-18 02:57:27 +0000236 }
237
Chris Lattnerf4601652007-11-22 20:49:04 +0000238 CurStrVal.assign(IdentStart, CurPtr);
239 return tgtok::Id;
Chris Lattnera8058742007-11-18 02:57:27 +0000240}
241
242/// LexInclude - We just read the "include" token. Get the string token that
243/// comes next and enter the include.
244bool TGLexer::LexInclude() {
245 // The token after the include must be a string.
Chris Lattnerf4601652007-11-22 20:49:04 +0000246 tgtok::TokKind Tok = LexToken();
247 if (Tok == tgtok::Error) return true;
248 if (Tok != tgtok::StrVal) {
249 PrintError(getLoc(), "Expected filename after include");
Chris Lattnera8058742007-11-18 02:57:27 +0000250 return true;
251 }
252
253 // Get the string.
Chris Lattnerf4601652007-11-22 20:49:04 +0000254 std::string Filename = CurStrVal;
Chris Lattnera8058742007-11-18 02:57:27 +0000255
256 // Try to find the file.
257 MemoryBuffer *NewBuf = MemoryBuffer::getFile(&Filename[0], Filename.size());
258
259 // If the file didn't exist directly, see if it's in an include path.
260 for (unsigned i = 0, e = IncludeDirectories.size(); i != e && !NewBuf; ++i) {
261 std::string IncFile = IncludeDirectories[i] + "/" + Filename;
262 NewBuf = MemoryBuffer::getFile(&IncFile[0], IncFile.size());
263 }
264
265 if (NewBuf == 0) {
Chris Lattnerf4601652007-11-22 20:49:04 +0000266 PrintError(getLoc(), "Could not find include file '" + Filename + "'");
Chris Lattnera8058742007-11-18 02:57:27 +0000267 return true;
268 }
269
270 // Save the line number and lex buffer of the includer.
271 IncludeStack.push_back(IncludeRec(CurBuf, CurPtr, CurLineNo));
272
273 CurLineNo = 1; // Reset line numbering.
274 CurBuf = NewBuf;
275 CurPtr = CurBuf->getBufferStart();
276 return false;
277}
278
279void TGLexer::SkipBCPLComment() {
280 ++CurPtr; // skip the second slash.
281 while (1) {
282 switch (*CurPtr) {
283 case '\n':
284 case '\r':
285 return; // Newline is end of comment.
286 case 0:
287 // If this is the end of the buffer, end the comment.
288 if (CurPtr == CurBuf->getBufferEnd())
289 return;
290 break;
291 }
292 // Otherwise, skip the character.
293 ++CurPtr;
294 }
295}
296
297/// SkipCComment - This skips C-style /**/ comments. The only difference from C
298/// is that we allow nesting.
299bool TGLexer::SkipCComment() {
300 ++CurPtr; // skip the star.
301 unsigned CommentDepth = 1;
302
303 while (1) {
304 int CurChar = getNextChar();
305 switch (CurChar) {
306 case EOF:
Chris Lattnerf4601652007-11-22 20:49:04 +0000307 PrintError(TokStart, "Unterminated comment!");
Chris Lattnera8058742007-11-18 02:57:27 +0000308 return true;
309 case '*':
310 // End of the comment?
311 if (CurPtr[0] != '/') break;
312
313 ++CurPtr; // End the */.
314 if (--CommentDepth == 0)
315 return false;
316 break;
317 case '/':
318 // Start of a nested comment?
319 if (CurPtr[0] != '*') break;
320 ++CurPtr;
321 ++CommentDepth;
322 break;
323 }
324 }
325}
326
327/// LexNumber - Lex:
328/// [-+]?[0-9]+
329/// 0x[0-9a-fA-F]+
330/// 0b[01]+
Chris Lattnerf4601652007-11-22 20:49:04 +0000331tgtok::TokKind TGLexer::LexNumber() {
Chris Lattnera8058742007-11-18 02:57:27 +0000332 if (CurPtr[-1] == '0') {
333 if (CurPtr[0] == 'x') {
334 ++CurPtr;
Chris Lattnerf4601652007-11-22 20:49:04 +0000335 const char *NumStart = CurPtr;
Chris Lattnera8058742007-11-18 02:57:27 +0000336 while (isxdigit(CurPtr[0]))
337 ++CurPtr;
338
Chris Lattnerc8a9bbc2007-11-19 07:38:58 +0000339 // Requires at least one hex digit.
340 if (CurPtr == NumStart)
341 return ReturnError(CurPtr-2, "Invalid hexadecimal number");
342
Chris Lattnerf4601652007-11-22 20:49:04 +0000343 CurIntVal = strtoll(NumStart, 0, 16);
344 return tgtok::IntVal;
Chris Lattnera8058742007-11-18 02:57:27 +0000345 } else if (CurPtr[0] == 'b') {
346 ++CurPtr;
Chris Lattnerf4601652007-11-22 20:49:04 +0000347 const char *NumStart = CurPtr;
Chris Lattnera8058742007-11-18 02:57:27 +0000348 while (CurPtr[0] == '0' || CurPtr[0] == '1')
349 ++CurPtr;
Chris Lattnerc8a9bbc2007-11-19 07:38:58 +0000350
351 // Requires at least one binary digit.
352 if (CurPtr == NumStart)
353 return ReturnError(CurPtr-2, "Invalid binary number");
Chris Lattnerf4601652007-11-22 20:49:04 +0000354 CurIntVal = strtoll(NumStart, 0, 2);
355 return tgtok::IntVal;
Chris Lattnera8058742007-11-18 02:57:27 +0000356 }
357 }
358
359 // Check for a sign without a digit.
Chris Lattnerf4601652007-11-22 20:49:04 +0000360 if (!isdigit(CurPtr[0])) {
361 if (CurPtr[-1] == '-')
362 return tgtok::minus;
363 else if (CurPtr[-1] == '+')
364 return tgtok::plus;
Chris Lattnera8058742007-11-18 02:57:27 +0000365 }
366
367 while (isdigit(CurPtr[0]))
368 ++CurPtr;
Chris Lattnerf4601652007-11-22 20:49:04 +0000369 CurIntVal = strtoll(TokStart, 0, 10);
370 return tgtok::IntVal;
Chris Lattnera8058742007-11-18 02:57:27 +0000371}
372
373/// LexBracket - We just read '['. If this is a code block, return it,
374/// otherwise return the bracket. Match: '[' and '[{ ( [^}]+ | }[^]] )* }]'
Chris Lattnerf4601652007-11-22 20:49:04 +0000375tgtok::TokKind TGLexer::LexBracket() {
Chris Lattnera8058742007-11-18 02:57:27 +0000376 if (CurPtr[0] != '{')
Chris Lattnerf4601652007-11-22 20:49:04 +0000377 return tgtok::l_square;
Chris Lattnera8058742007-11-18 02:57:27 +0000378 ++CurPtr;
379 const char *CodeStart = CurPtr;
380 while (1) {
381 int Char = getNextChar();
382 if (Char == EOF) break;
383
384 if (Char != '}') continue;
385
386 Char = getNextChar();
387 if (Char == EOF) break;
388 if (Char == ']') {
Chris Lattnerf4601652007-11-22 20:49:04 +0000389 CurStrVal.assign(CodeStart, CurPtr-2);
390 return tgtok::CodeFragment;
Chris Lattnera8058742007-11-18 02:57:27 +0000391 }
392 }
393
Chris Lattnerc8a9bbc2007-11-19 07:38:58 +0000394 return ReturnError(CodeStart-2, "Unterminated Code Block");
Chris Lattnera8058742007-11-18 02:57:27 +0000395}
396
397/// LexExclaim - Lex '!' and '![a-zA-Z]+'.
Chris Lattnerf4601652007-11-22 20:49:04 +0000398tgtok::TokKind TGLexer::LexExclaim() {
Chris Lattnera8058742007-11-18 02:57:27 +0000399 if (!isalpha(*CurPtr))
Chris Lattnerf4601652007-11-22 20:49:04 +0000400 return ReturnError(CurPtr-1, "Invalid \"!operator\"");
Chris Lattnera8058742007-11-18 02:57:27 +0000401
402 const char *Start = CurPtr++;
403 while (isalpha(*CurPtr))
404 ++CurPtr;
405
406 // Check to see which operator this is.
407 unsigned Len = CurPtr-Start;
408
Chris Lattnerf4601652007-11-22 20:49:04 +0000409 if (Len == 3 && !memcmp(Start, "con", 3)) return tgtok::XConcat;
410 if (Len == 3 && !memcmp(Start, "sra", 3)) return tgtok::XSRA;
411 if (Len == 3 && !memcmp(Start, "srl", 3)) return tgtok::XSRL;
412 if (Len == 3 && !memcmp(Start, "shl", 3)) return tgtok::XSHL;
413 if (Len == 9 && !memcmp(Start, "strconcat", 9)) return tgtok::XStrConcat;
Chris Lattnera8058742007-11-18 02:57:27 +0000414
Chris Lattnerc8a9bbc2007-11-19 07:38:58 +0000415 return ReturnError(Start-1, "Unknown operator");
Chris Lattnera8058742007-11-18 02:57:27 +0000416}
417