1 //===- TGLexer.cpp - Lexer for TableGen -----------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // Implement the Lexer for TableGen.
12 //===----------------------------------------------------------------------===//
16 #include "llvm/Support/SourceMgr.h"
17 #include "llvm/Support/MemoryBuffer.h"
18 #include "llvm/Config/config.h"
19 #include "llvm/ADT/StringSwitch.h"
20 #include "llvm/ADT/Twine.h"
28 TGLexer::TGLexer(SourceMgr
&SM
) : SrcMgr(SM
) {
30 CurBuf
= SrcMgr
.getMemoryBuffer(CurBuffer
);
31 CurPtr
= CurBuf
->getBufferStart();
35 SMLoc
TGLexer::getLoc() const {
36 return SMLoc::getFromPointer(TokStart
);
39 /// ReturnError - Set the error to the specified string at the specified
40 /// location. This is defined to always return tgtok::Error.
41 tgtok::TokKind
TGLexer::ReturnError(const char *Loc
, const Twine
&Msg
) {
46 int TGLexer::getNextChar() {
47 char CurChar
= *CurPtr
++;
50 return (unsigned char)CurChar
;
52 // A nul character in the stream is either the end of the current buffer or
53 // a random nul in the file. Disambiguate that here.
54 if (CurPtr
-1 != CurBuf
->getBufferEnd())
55 return 0; // Just whitespace.
57 // If this is the end of an included file, pop the parent file off the
59 SMLoc ParentIncludeLoc
= SrcMgr
.getParentIncludeLoc(CurBuffer
);
60 if (ParentIncludeLoc
!= SMLoc()) {
61 CurBuffer
= SrcMgr
.FindBufferContainingLoc(ParentIncludeLoc
);
62 CurBuf
= SrcMgr
.getMemoryBuffer(CurBuffer
);
63 CurPtr
= ParentIncludeLoc
.getPointer();
67 // Otherwise, return end of file.
68 --CurPtr
; // Another call to lex will return EOF again.
73 // Handle the newline character by ignoring it and incrementing the line
74 // count. However, be careful about 'dos style' files with \n\r in them.
75 // Only treat a \n\r or \r\n as a single line.
76 if ((*CurPtr
== '\n' || (*CurPtr
== '\r')) &&
78 ++CurPtr
; // Eat the two char newline sequence.
83 tgtok::TokKind
TGLexer::LexToken() {
85 // This always consumes at least one character.
86 int CurChar
= getNextChar();
90 // Handle letters: [a-zA-Z_#]
91 if (isalpha(CurChar
) || CurChar
== '_' || CurChar
== '#')
92 return LexIdentifier();
94 // Unknown character, emit an error.
95 return ReturnError(TokStart
, "Unexpected character");
96 case EOF
: return tgtok::Eof
;
97 case ':': return tgtok::colon
;
98 case ';': return tgtok::semi
;
99 case '.': return tgtok::period
;
100 case ',': return tgtok::comma
;
101 case '<': return tgtok::less
;
102 case '>': return tgtok::greater
;
103 case ']': return tgtok::r_square
;
104 case '{': return tgtok::l_brace
;
105 case '}': return tgtok::r_brace
;
106 case '(': return tgtok::l_paren
;
107 case ')': return tgtok::r_paren
;
108 case '=': return tgtok::equal
;
109 case '?': return tgtok::question
;
116 // Ignore whitespace.
119 // If this is the start of a // comment, skip until the end of the line or
120 // the end of the buffer.
123 else if (*CurPtr
== '*') {
126 } else // Otherwise, this is an error.
127 return ReturnError(TokStart
, "Unexpected character");
130 case '0': case '1': case '2': case '3': case '4': case '5': case '6':
131 case '7': case '8': case '9':
133 case '"': return LexString();
134 case '$': return LexVarName();
135 case '[': return LexBracket();
136 case '!': return LexExclaim();
140 /// LexString - Lex "[^"]*"
141 tgtok::TokKind
TGLexer::LexString() {
142 const char *StrStart
= CurPtr
;
146 while (*CurPtr
!= '"') {
147 // If we hit the end of the buffer, report an error.
148 if (*CurPtr
== 0 && CurPtr
== CurBuf
->getBufferEnd())
149 return ReturnError(StrStart
, "End of file in string literal");
151 if (*CurPtr
== '\n' || *CurPtr
== '\r')
152 return ReturnError(StrStart
, "End of line in string literal");
154 if (*CurPtr
!= '\\') {
155 CurStrVal
+= *CurPtr
++;
162 case '\\': case '\'': case '"':
163 // These turn into their literal character.
164 CurStrVal
+= *CurPtr
++;
177 return ReturnError(CurPtr
, "escaped newlines not supported in tblgen");
179 // If we hit the end of the buffer, report an error.
181 if (CurPtr
== CurBuf
->getBufferEnd())
182 return ReturnError(StrStart
, "End of file in string literal");
185 return ReturnError(CurPtr
, "invalid escape in string literal");
190 return tgtok::StrVal
;
193 tgtok::TokKind
TGLexer::LexVarName() {
194 if (!isalpha(CurPtr
[0]) && CurPtr
[0] != '_')
195 return ReturnError(TokStart
, "Invalid variable name");
197 // Otherwise, we're ok, consume the rest of the characters.
198 const char *VarNameStart
= CurPtr
++;
200 while (isalpha(*CurPtr
) || isdigit(*CurPtr
) || *CurPtr
== '_')
203 CurStrVal
.assign(VarNameStart
, CurPtr
);
204 return tgtok::VarName
;
208 tgtok::TokKind
TGLexer::LexIdentifier() {
209 // The first letter is [a-zA-Z_#].
210 const char *IdentStart
= TokStart
;
212 // Match the rest of the identifier regex: [0-9a-zA-Z_#]*
213 while (isalpha(*CurPtr
) || isdigit(*CurPtr
) || *CurPtr
== '_' ||
218 // Check to see if this identifier is a keyword.
219 unsigned Len
= CurPtr
-IdentStart
;
221 if (Len
== 3 && !memcmp(IdentStart
, "int", 3)) return tgtok::Int
;
222 if (Len
== 3 && !memcmp(IdentStart
, "bit", 3)) return tgtok::Bit
;
223 if (Len
== 4 && !memcmp(IdentStart
, "bits", 4)) return tgtok::Bits
;
224 if (Len
== 6 && !memcmp(IdentStart
, "string", 6)) return tgtok::String
;
225 if (Len
== 4 && !memcmp(IdentStart
, "list", 4)) return tgtok::List
;
226 if (Len
== 4 && !memcmp(IdentStart
, "code", 4)) return tgtok::Code
;
227 if (Len
== 3 && !memcmp(IdentStart
, "dag", 3)) return tgtok::Dag
;
229 if (Len
== 5 && !memcmp(IdentStart
, "class", 5)) return tgtok::Class
;
230 if (Len
== 3 && !memcmp(IdentStart
, "def", 3)) return tgtok::Def
;
231 if (Len
== 4 && !memcmp(IdentStart
, "defm", 4)) return tgtok::Defm
;
232 if (Len
== 10 && !memcmp(IdentStart
, "multiclass", 10))
233 return tgtok::MultiClass
;
234 if (Len
== 5 && !memcmp(IdentStart
, "field", 5)) return tgtok::Field
;
235 if (Len
== 3 && !memcmp(IdentStart
, "let", 3)) return tgtok::Let
;
236 if (Len
== 2 && !memcmp(IdentStart
, "in", 2)) return tgtok::In
;
238 if (Len
== 7 && !memcmp(IdentStart
, "include", 7)) {
239 if (LexInclude()) return tgtok::Error
;
243 CurStrVal
.assign(IdentStart
, CurPtr
);
247 /// LexInclude - We just read the "include" token. Get the string token that
248 /// comes next and enter the include.
249 bool TGLexer::LexInclude() {
250 // The token after the include must be a string.
251 tgtok::TokKind Tok
= LexToken();
252 if (Tok
== tgtok::Error
) return true;
253 if (Tok
!= tgtok::StrVal
) {
254 PrintError(getLoc(), "Expected filename after include");
259 std::string Filename
= CurStrVal
;
260 std::string IncludedFile
;
263 CurBuffer
= SrcMgr
.AddIncludeFile(Filename
, SMLoc::getFromPointer(CurPtr
),
265 if (CurBuffer
== -1) {
266 PrintError(getLoc(), "Could not find include file '" + Filename
+ "'");
270 Dependencies
.push_back(IncludedFile
);
271 // Save the line number and lex buffer of the includer.
272 CurBuf
= SrcMgr
.getMemoryBuffer(CurBuffer
);
273 CurPtr
= CurBuf
->getBufferStart();
277 void TGLexer::SkipBCPLComment() {
278 ++CurPtr
; // skip the second slash.
283 return; // Newline is end of comment.
285 // If this is the end of the buffer, end the comment.
286 if (CurPtr
== CurBuf
->getBufferEnd())
290 // Otherwise, skip the character.
295 /// SkipCComment - This skips C-style /**/ comments. The only difference from C
296 /// is that we allow nesting.
297 bool TGLexer::SkipCComment() {
298 ++CurPtr
; // skip the star.
299 unsigned CommentDepth
= 1;
302 int CurChar
= getNextChar();
305 PrintError(TokStart
, "Unterminated comment!");
308 // End of the comment?
309 if (CurPtr
[0] != '/') break;
311 ++CurPtr
; // End the */.
312 if (--CommentDepth
== 0)
316 // Start of a nested comment?
317 if (CurPtr
[0] != '*') break;
329 tgtok::TokKind
TGLexer::LexNumber() {
330 if (CurPtr
[-1] == '0') {
331 if (CurPtr
[0] == 'x') {
333 const char *NumStart
= CurPtr
;
334 while (isxdigit(CurPtr
[0]))
337 // Requires at least one hex digit.
338 if (CurPtr
== NumStart
)
339 return ReturnError(TokStart
, "Invalid hexadecimal number");
342 CurIntVal
= strtoll(NumStart
, 0, 16);
344 return ReturnError(TokStart
, "Invalid hexadecimal number");
345 if (errno
== ERANGE
) {
347 CurIntVal
= (int64_t)strtoull(NumStart
, 0, 16);
349 return ReturnError(TokStart
, "Invalid hexadecimal number");
351 return ReturnError(TokStart
, "Hexadecimal number out of range");
353 return tgtok::IntVal
;
354 } else if (CurPtr
[0] == 'b') {
356 const char *NumStart
= CurPtr
;
357 while (CurPtr
[0] == '0' || CurPtr
[0] == '1')
360 // Requires at least one binary digit.
361 if (CurPtr
== NumStart
)
362 return ReturnError(CurPtr
-2, "Invalid binary number");
363 CurIntVal
= strtoll(NumStart
, 0, 2);
364 return tgtok::IntVal
;
368 // Check for a sign without a digit.
369 if (!isdigit(CurPtr
[0])) {
370 if (CurPtr
[-1] == '-')
372 else if (CurPtr
[-1] == '+')
376 while (isdigit(CurPtr
[0]))
378 CurIntVal
= strtoll(TokStart
, 0, 10);
379 return tgtok::IntVal
;
382 /// LexBracket - We just read '['. If this is a code block, return it,
383 /// otherwise return the bracket. Match: '[' and '[{ ( [^}]+ | }[^]] )* }]'
384 tgtok::TokKind
TGLexer::LexBracket() {
385 if (CurPtr
[0] != '{')
386 return tgtok::l_square
;
388 const char *CodeStart
= CurPtr
;
390 int Char
= getNextChar();
391 if (Char
== EOF
) break;
393 if (Char
!= '}') continue;
395 Char
= getNextChar();
396 if (Char
== EOF
) break;
398 CurStrVal
.assign(CodeStart
, CurPtr
-2);
399 return tgtok::CodeFragment
;
403 return ReturnError(CodeStart
-2, "Unterminated Code Block");
406 /// LexExclaim - Lex '!' and '![a-zA-Z]+'.
407 tgtok::TokKind
TGLexer::LexExclaim() {
408 if (!isalpha(*CurPtr
))
409 return ReturnError(CurPtr
- 1, "Invalid \"!operator\"");
411 const char *Start
= CurPtr
++;
412 while (isalpha(*CurPtr
))
415 // Check to see which operator this is.
416 tgtok::TokKind Kind
=
417 StringSwitch
<tgtok::TokKind
>(StringRef(Start
, CurPtr
- Start
))
418 .Case("eq", tgtok::XEq
)
419 .Case("if", tgtok::XIf
)
420 .Case("head", tgtok::XHead
)
421 .Case("tail", tgtok::XTail
)
422 .Case("con", tgtok::XConcat
)
423 .Case("shl", tgtok::XSHL
)
424 .Case("sra", tgtok::XSRA
)
425 .Case("srl", tgtok::XSRL
)
426 .Case("cast", tgtok::XCast
)
427 .Case("empty", tgtok::XEmpty
)
428 .Case("subst", tgtok::XSubst
)
429 .Case("foreach", tgtok::XForEach
)
430 .Case("strconcat", tgtok::XStrConcat
)
431 .Default(tgtok::Error
);
433 return Kind
!= tgtok::Error
? Kind
: ReturnError(Start
-1, "Unknown operator");