blob: 517f2355be0d548a92e9b7bed8298838da634029 [file] [log] [blame]
Chris Lattner8e3a8e02007-11-18 08:46:26 +00001//===- LLLexer.cpp - Lexer for .ll Files ----------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner8e3a8e02007-11-18 08:46:26 +00007//
8//===----------------------------------------------------------------------===//
9//
10// Implement the Lexer for .ll files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "LLLexer.h"
15#include "ParserInternals.h"
16#include "llvm/Support/MemoryBuffer.h"
Chris Lattnerd185f642007-12-08 19:03:30 +000017#include "llvm/Support/MathExtras.h"
Chris Lattner8e3a8e02007-11-18 08:46:26 +000018
19#include <list>
20#include "llvmAsmParser.h"
21using namespace llvm;
22
23//===----------------------------------------------------------------------===//
24// Helper functions.
25//===----------------------------------------------------------------------===//
26
27// atoull - Convert an ascii string of decimal digits into the unsigned long
28// long representation... this does not have to do input error checking,
29// because we know that the input will be matched by a suitable regex...
30//
31static uint64_t atoull(const char *Buffer, const char *End) {
32 uint64_t Result = 0;
33 for (; Buffer != End; Buffer++) {
34 uint64_t OldRes = Result;
35 Result *= 10;
36 Result += *Buffer-'0';
37 if (Result < OldRes) { // Uh, oh, overflow detected!!!
38 GenerateError("constant bigger than 64 bits detected!");
39 return 0;
40 }
41 }
42 return Result;
43}
44
45static uint64_t HexIntToVal(const char *Buffer, const char *End) {
46 uint64_t Result = 0;
47 for (; Buffer != End; ++Buffer) {
48 uint64_t OldRes = Result;
49 Result *= 16;
50 char C = *Buffer;
51 if (C >= '0' && C <= '9')
52 Result += C-'0';
53 else if (C >= 'A' && C <= 'F')
54 Result += C-'A'+10;
55 else if (C >= 'a' && C <= 'f')
56 Result += C-'a'+10;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +000057
Chris Lattner8e3a8e02007-11-18 08:46:26 +000058 if (Result < OldRes) { // Uh, oh, overflow detected!!!
59 GenerateError("constant bigger than 64 bits detected!");
60 return 0;
61 }
62 }
63 return Result;
64}
65
66// HexToFP - Convert the ascii string in hexadecimal format to the floating
67// point representation of it.
68//
69static double HexToFP(const char *Buffer, const char *End) {
70 return BitsToDouble(HexIntToVal(Buffer, End)); // Cast Hex constant to double
71}
72
73static void HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]){
74 Pair[0] = 0;
75 for (int i=0; i<16; i++, Buffer++) {
76 assert(Buffer != End);
77 Pair[0] *= 16;
78 char C = *Buffer;
79 if (C >= '0' && C <= '9')
80 Pair[0] += C-'0';
81 else if (C >= 'A' && C <= 'F')
82 Pair[0] += C-'A'+10;
83 else if (C >= 'a' && C <= 'f')
84 Pair[0] += C-'a'+10;
85 }
86 Pair[1] = 0;
87 for (int i=0; i<16 && Buffer != End; i++, Buffer++) {
88 Pair[1] *= 16;
89 char C = *Buffer;
90 if (C >= '0' && C <= '9')
91 Pair[1] += C-'0';
92 else if (C >= 'A' && C <= 'F')
93 Pair[1] += C-'A'+10;
94 else if (C >= 'a' && C <= 'f')
95 Pair[1] += C-'a'+10;
96 }
Chris Lattnerd343c6b2007-11-18 18:25:18 +000097 if (Buffer != End)
Chris Lattner8e3a8e02007-11-18 08:46:26 +000098 GenerateError("constant bigger than 128 bits detected!");
99}
100
101// UnEscapeLexed - Run through the specified buffer and change \xx codes to the
102// appropriate character.
103static void UnEscapeLexed(std::string &Str) {
104 if (Str.empty()) return;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000105
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000106 char *Buffer = &Str[0], *EndBuffer = Buffer+Str.size();
107 char *BOut = Buffer;
108 for (char *BIn = Buffer; BIn != EndBuffer; ) {
109 if (BIn[0] == '\\') {
110 if (BIn < EndBuffer-1 && BIn[1] == '\\') {
111 *BOut++ = '\\'; // Two \ becomes one
112 BIn += 2;
113 } else if (BIn < EndBuffer-2 && isxdigit(BIn[1]) && isxdigit(BIn[2])) {
114 char Tmp = BIn[3]; BIn[3] = 0; // Terminate string
115 *BOut = (char)strtol(BIn+1, 0, 16); // Convert to number
116 BIn[3] = Tmp; // Restore character
117 BIn += 3; // Skip over handled chars
118 ++BOut;
119 } else {
120 *BOut++ = *BIn++;
121 }
122 } else {
123 *BOut++ = *BIn++;
124 }
125 }
126 Str.resize(BOut-Buffer);
127}
128
129/// isLabelChar - Return true for [-a-zA-Z$._0-9].
130static bool isLabelChar(char C) {
131 return isalnum(C) || C == '-' || C == '$' || C == '.' || C == '_';
132}
133
134
135/// isLabelTail - Return true if this pointer points to a valid end of a label.
136static const char *isLabelTail(const char *CurPtr) {
137 while (1) {
138 if (CurPtr[0] == ':') return CurPtr+1;
139 if (!isLabelChar(CurPtr[0])) return 0;
140 ++CurPtr;
141 }
142}
143
144
145
146//===----------------------------------------------------------------------===//
147// Lexer definition.
148//===----------------------------------------------------------------------===//
149
150// FIXME: REMOVE THIS.
151#define YYEOF 0
152#define YYERROR -2
153
154LLLexer::LLLexer(MemoryBuffer *StartBuf) : CurLineNo(1), CurBuf(StartBuf) {
155 CurPtr = CurBuf->getBufferStart();
156}
157
158std::string LLLexer::getFilename() const {
159 return CurBuf->getBufferIdentifier();
160}
161
162int LLLexer::getNextChar() {
163 char CurChar = *CurPtr++;
164 switch (CurChar) {
165 default: return (unsigned char)CurChar;
166 case 0:
167 // A nul character in the stream is either the end of the current buffer or
168 // a random nul in the file. Disambiguate that here.
169 if (CurPtr-1 != CurBuf->getBufferEnd())
170 return 0; // Just whitespace.
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000171
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000172 // Otherwise, return end of file.
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000173 --CurPtr; // Another call to lex will return EOF again.
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000174 return EOF;
175 case '\n':
176 case '\r':
177 // Handle the newline character by ignoring it and incrementing the line
178 // count. However, be careful about 'dos style' files with \n\r in them.
179 // Only treat a \n\r or \r\n as a single line.
180 if ((*CurPtr == '\n' || (*CurPtr == '\r')) &&
181 *CurPtr != CurChar)
182 ++CurPtr; // Eat the two char newline sequence.
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000183
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000184 ++CurLineNo;
185 return '\n';
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000186 }
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000187}
188
189
190int LLLexer::LexToken() {
191 TokStart = CurPtr;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000192
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000193 int CurChar = getNextChar();
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000194
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000195 switch (CurChar) {
196 default:
197 // Handle letters: [a-zA-Z_]
198 if (isalpha(CurChar) || CurChar == '_')
199 return LexIdentifier();
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000200
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000201 return CurChar;
202 case EOF: return YYEOF;
203 case 0:
204 case ' ':
205 case '\t':
206 case '\n':
207 case '\r':
208 // Ignore whitespace.
209 return LexToken();
210 case '+': return LexPositive();
211 case '@': return LexAt();
212 case '%': return LexPercent();
213 case '"': return LexQuote();
214 case '.':
215 if (const char *Ptr = isLabelTail(CurPtr)) {
216 CurPtr = Ptr;
217 llvmAsmlval.StrVal = new std::string(TokStart, CurPtr-1);
218 return LABELSTR;
219 }
220 if (CurPtr[0] == '.' && CurPtr[1] == '.') {
221 CurPtr += 2;
222 return DOTDOTDOT;
223 }
224 return '.';
225 case '$':
226 if (const char *Ptr = isLabelTail(CurPtr)) {
227 CurPtr = Ptr;
228 llvmAsmlval.StrVal = new std::string(TokStart, CurPtr-1);
229 return LABELSTR;
230 }
231 return '$';
232 case ';':
233 SkipLineComment();
234 return LexToken();
235 case '0': case '1': case '2': case '3': case '4':
236 case '5': case '6': case '7': case '8': case '9':
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000237 case '-':
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000238 return LexDigitOrNegative();
239 }
240}
241
242void LLLexer::SkipLineComment() {
243 while (1) {
244 if (CurPtr[0] == '\n' || CurPtr[0] == '\r' || getNextChar() == EOF)
245 return;
246 }
247}
248
249/// LexAt - Lex all tokens that start with an @ character:
250/// AtStringConstant @\"[^\"]*\"
251/// GlobalVarName @[-a-zA-Z$._][-a-zA-Z$._0-9]*
252/// GlobalVarID @[0-9]+
253int LLLexer::LexAt() {
254 // Handle AtStringConstant: @\"[^\"]*\"
255 if (CurPtr[0] == '"') {
256 ++CurPtr;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000257
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000258 while (1) {
259 int CurChar = getNextChar();
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000260
261 if (CurChar == EOF) {
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000262 GenerateError("End of file in global variable name");
263 return YYERROR;
264 }
265 if (CurChar == '"') {
266 llvmAsmlval.StrVal = new std::string(TokStart+2, CurPtr-1);
267 UnEscapeLexed(*llvmAsmlval.StrVal);
268 return ATSTRINGCONSTANT;
269 }
270 }
271 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000272
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000273 // Handle GlobalVarName: @[-a-zA-Z$._][-a-zA-Z$._0-9]*
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000274 if (isalpha(CurPtr[0]) || CurPtr[0] == '-' || CurPtr[0] == '$' ||
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000275 CurPtr[0] == '.' || CurPtr[0] == '_') {
276 ++CurPtr;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000277 while (isalnum(CurPtr[0]) || CurPtr[0] == '-' || CurPtr[0] == '$' ||
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000278 CurPtr[0] == '.' || CurPtr[0] == '_')
279 ++CurPtr;
280
281 llvmAsmlval.StrVal = new std::string(TokStart+1, CurPtr); // Skip @
282 return GLOBALVAR;
283 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000284
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000285 // Handle GlobalVarID: @[0-9]+
286 if (isdigit(CurPtr[0])) {
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000287 for (++CurPtr; isdigit(CurPtr[0]); ++CurPtr)
288 /*empty*/;
289
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000290 uint64_t Val = atoull(TokStart+1, CurPtr);
291 if ((unsigned)Val != Val)
292 GenerateError("Invalid value number (too large)!");
293 llvmAsmlval.UIntVal = unsigned(Val);
294 return GLOBALVAL_ID;
295 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000296
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000297 return '@';
298}
299
300
301/// LexPercent - Lex all tokens that start with a % character:
302/// PctStringConstant %\"[^\"]*\"
303/// LocalVarName %[-a-zA-Z$._][-a-zA-Z$._0-9]*
304/// LocalVarID %[0-9]+
305int LLLexer::LexPercent() {
306 // Handle PctStringConstant: %\"[^\"]*\"
307 if (CurPtr[0] == '"') {
308 ++CurPtr;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000309
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000310 while (1) {
311 int CurChar = getNextChar();
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000312
313 if (CurChar == EOF) {
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000314 GenerateError("End of file in local variable name");
315 return YYERROR;
316 }
317 if (CurChar == '"') {
318 llvmAsmlval.StrVal = new std::string(TokStart+2, CurPtr-1);
319 UnEscapeLexed(*llvmAsmlval.StrVal);
320 return PCTSTRINGCONSTANT;
321 }
322 }
323 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000324
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000325 // Handle LocalVarName: %[-a-zA-Z$._][-a-zA-Z$._0-9]*
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000326 if (isalpha(CurPtr[0]) || CurPtr[0] == '-' || CurPtr[0] == '$' ||
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000327 CurPtr[0] == '.' || CurPtr[0] == '_') {
328 ++CurPtr;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000329 while (isalnum(CurPtr[0]) || CurPtr[0] == '-' || CurPtr[0] == '$' ||
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000330 CurPtr[0] == '.' || CurPtr[0] == '_')
331 ++CurPtr;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000332
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000333 llvmAsmlval.StrVal = new std::string(TokStart+1, CurPtr); // Skip %
334 return LOCALVAR;
335 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000336
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000337 // Handle LocalVarID: %[0-9]+
338 if (isdigit(CurPtr[0])) {
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000339 for (++CurPtr; isdigit(CurPtr[0]); ++CurPtr)
340 /*empty*/;
341
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000342 uint64_t Val = atoull(TokStart+1, CurPtr);
343 if ((unsigned)Val != Val)
344 GenerateError("Invalid value number (too large)!");
345 llvmAsmlval.UIntVal = unsigned(Val);
346 return LOCALVAL_ID;
347 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000348
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000349 return '%';
350}
351
352/// LexQuote - Lex all tokens that start with a " character:
353/// QuoteLabel "[^"]+":
354/// StringConstant "[^"]*"
355int LLLexer::LexQuote() {
356 while (1) {
357 int CurChar = getNextChar();
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000358
359 if (CurChar == EOF) {
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000360 GenerateError("End of file in quoted string");
361 return YYERROR;
362 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000363
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000364 if (CurChar != '"') continue;
365
366 if (CurPtr[0] != ':') {
367 llvmAsmlval.StrVal = new std::string(TokStart+1, CurPtr-1);
368 UnEscapeLexed(*llvmAsmlval.StrVal);
369 return STRINGCONSTANT;
370 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000371
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000372 ++CurPtr;
373 llvmAsmlval.StrVal = new std::string(TokStart+1, CurPtr-2);
374 UnEscapeLexed(*llvmAsmlval.StrVal);
375 return LABELSTR;
376 }
377}
378
379static bool JustWhitespaceNewLine(const char *&Ptr) {
380 const char *ThisPtr = Ptr;
381 while (*ThisPtr == ' ' || *ThisPtr == '\t')
382 ++ThisPtr;
383 if (*ThisPtr == '\n' || *ThisPtr == '\r') {
384 Ptr = ThisPtr;
385 return true;
386 }
387 return false;
388}
389
390
391/// LexIdentifier: Handle several related productions:
392/// Label [-a-zA-Z$._0-9]+:
393/// IntegerType i[0-9]+
394/// Keyword sdiv, float, ...
395/// HexIntConstant [us]0x[0-9A-Fa-f]+
396int LLLexer::LexIdentifier() {
397 const char *StartChar = CurPtr;
398 const char *IntEnd = CurPtr[-1] == 'i' ? 0 : StartChar;
399 const char *KeywordEnd = 0;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000400
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000401 for (; isLabelChar(*CurPtr); ++CurPtr) {
402 // If we decide this is an integer, remember the end of the sequence.
403 if (!IntEnd && !isdigit(*CurPtr)) IntEnd = CurPtr;
404 if (!KeywordEnd && !isalnum(*CurPtr) && *CurPtr != '_') KeywordEnd = CurPtr;
405 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000406
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000407 // If we stopped due to a colon, this really is a label.
408 if (*CurPtr == ':') {
409 llvmAsmlval.StrVal = new std::string(StartChar-1, CurPtr++);
410 return LABELSTR;
411 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000412
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000413 // Otherwise, this wasn't a label. If this was valid as an integer type,
414 // return it.
415 if (IntEnd == 0) IntEnd = CurPtr;
416 if (IntEnd != StartChar) {
417 CurPtr = IntEnd;
418 uint64_t NumBits = atoull(StartChar, CurPtr);
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000419 if (NumBits < IntegerType::MIN_INT_BITS ||
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000420 NumBits > IntegerType::MAX_INT_BITS) {
421 GenerateError("Bitwidth for integer type out of range!");
422 return YYERROR;
423 }
424 const Type* Ty = IntegerType::get(NumBits);
425 llvmAsmlval.PrimType = Ty;
426 return INTTYPE;
427 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000428
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000429 // Otherwise, this was a letter sequence. See which keyword this is.
430 if (KeywordEnd == 0) KeywordEnd = CurPtr;
431 CurPtr = KeywordEnd;
432 --StartChar;
433 unsigned Len = CurPtr-StartChar;
434#define KEYWORD(STR, TOK) \
435 if (Len == strlen(STR) && !memcmp(StartChar, STR, strlen(STR))) return TOK;
436
437 KEYWORD("begin", BEGINTOK);
438 KEYWORD("end", ENDTOK);
439 KEYWORD("true", TRUETOK);
440 KEYWORD("false", FALSETOK);
441 KEYWORD("declare", DECLARE);
442 KEYWORD("define", DEFINE);
443 KEYWORD("global", GLOBAL);
444 KEYWORD("constant", CONSTANT);
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000445
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000446 KEYWORD("internal", INTERNAL);
447 KEYWORD("linkonce", LINKONCE);
448 KEYWORD("weak", WEAK);
449 KEYWORD("appending", APPENDING);
450 KEYWORD("dllimport", DLLIMPORT);
451 KEYWORD("dllexport", DLLEXPORT);
452 KEYWORD("hidden", HIDDEN);
453 KEYWORD("protected", PROTECTED);
454 KEYWORD("extern_weak", EXTERN_WEAK);
455 KEYWORD("external", EXTERNAL);
456 KEYWORD("thread_local", THREAD_LOCAL);
457 KEYWORD("zeroinitializer", ZEROINITIALIZER);
458 KEYWORD("undef", UNDEF);
459 KEYWORD("null", NULL_TOK);
460 KEYWORD("to", TO);
461 KEYWORD("tail", TAIL);
462 KEYWORD("target", TARGET);
463 KEYWORD("triple", TRIPLE);
464 KEYWORD("deplibs", DEPLIBS);
465 KEYWORD("datalayout", DATALAYOUT);
466 KEYWORD("volatile", VOLATILE);
467 KEYWORD("align", ALIGN);
Christopher Lambfe63fb92007-12-11 08:59:05 +0000468 KEYWORD("addrspace", ADDRSPACE);
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000469 KEYWORD("section", SECTION);
470 KEYWORD("alias", ALIAS);
471 KEYWORD("module", MODULE);
472 KEYWORD("asm", ASM_TOK);
473 KEYWORD("sideeffect", SIDEEFFECT);
Gordon Henriksen80a75bf2007-12-10 03:18:06 +0000474 KEYWORD("gc", GC);
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000475
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000476 KEYWORD("cc", CC_TOK);
477 KEYWORD("ccc", CCC_TOK);
478 KEYWORD("fastcc", FASTCC_TOK);
479 KEYWORD("coldcc", COLDCC_TOK);
480 KEYWORD("x86_stdcallcc", X86_STDCALLCC_TOK);
481 KEYWORD("x86_fastcallcc", X86_FASTCALLCC_TOK);
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000482
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000483 KEYWORD("signext", SIGNEXT);
484 KEYWORD("zeroext", ZEROEXT);
485 KEYWORD("inreg", INREG);
486 KEYWORD("sret", SRET);
487 KEYWORD("nounwind", NOUNWIND);
488 KEYWORD("noreturn", NORETURN);
489 KEYWORD("noalias", NOALIAS);
490 KEYWORD("byval", BYVAL);
491 KEYWORD("nest", NEST);
Duncan Sandsed4a2f12007-11-22 20:23:04 +0000492 KEYWORD("readnone", READNONE);
493 KEYWORD("readonly", READONLY);
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000494
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000495 KEYWORD("type", TYPE);
496 KEYWORD("opaque", OPAQUE);
497
498 KEYWORD("eq" , EQ);
499 KEYWORD("ne" , NE);
500 KEYWORD("slt", SLT);
501 KEYWORD("sgt", SGT);
502 KEYWORD("sle", SLE);
503 KEYWORD("sge", SGE);
504 KEYWORD("ult", ULT);
505 KEYWORD("ugt", UGT);
506 KEYWORD("ule", ULE);
507 KEYWORD("uge", UGE);
508 KEYWORD("oeq", OEQ);
509 KEYWORD("one", ONE);
510 KEYWORD("olt", OLT);
511 KEYWORD("ogt", OGT);
512 KEYWORD("ole", OLE);
513 KEYWORD("oge", OGE);
514 KEYWORD("ord", ORD);
515 KEYWORD("uno", UNO);
516 KEYWORD("ueq", UEQ);
517 KEYWORD("une", UNE);
518#undef KEYWORD
519
520 // Keywords for types.
521#define TYPEKEYWORD(STR, LLVMTY, TOK) \
522 if (Len == strlen(STR) && !memcmp(StartChar, STR, strlen(STR))) { \
523 llvmAsmlval.PrimType = LLVMTY; return TOK; }
524 TYPEKEYWORD("void", Type::VoidTy, VOID);
525 TYPEKEYWORD("float", Type::FloatTy, FLOAT);
526 TYPEKEYWORD("double", Type::DoubleTy, DOUBLE);
527 TYPEKEYWORD("x86_fp80", Type::X86_FP80Ty, X86_FP80);
528 TYPEKEYWORD("fp128", Type::FP128Ty, FP128);
529 TYPEKEYWORD("ppc_fp128", Type::PPC_FP128Ty, PPC_FP128);
530 TYPEKEYWORD("label", Type::LabelTy, LABEL);
531#undef TYPEKEYWORD
532
533 // Handle special forms for autoupgrading. Drop these in LLVM 3.0. This is
534 // to avoid conflicting with the sext/zext instructions, below.
535 if (Len == 4 && !memcmp(StartChar, "sext", 4)) {
536 // Scan CurPtr ahead, seeing if there is just whitespace before the newline.
537 if (JustWhitespaceNewLine(CurPtr))
538 return SIGNEXT;
539 } else if (Len == 4 && !memcmp(StartChar, "zext", 4)) {
540 // Scan CurPtr ahead, seeing if there is just whitespace before the newline.
541 if (JustWhitespaceNewLine(CurPtr))
542 return ZEROEXT;
543 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000544
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000545 // Keywords for instructions.
546#define INSTKEYWORD(STR, type, Enum, TOK) \
547 if (Len == strlen(STR) && !memcmp(StartChar, STR, strlen(STR))) { \
548 llvmAsmlval.type = Instruction::Enum; return TOK; }
549
550 INSTKEYWORD("add", BinaryOpVal, Add, ADD);
551 INSTKEYWORD("sub", BinaryOpVal, Sub, SUB);
552 INSTKEYWORD("mul", BinaryOpVal, Mul, MUL);
553 INSTKEYWORD("udiv", BinaryOpVal, UDiv, UDIV);
554 INSTKEYWORD("sdiv", BinaryOpVal, SDiv, SDIV);
555 INSTKEYWORD("fdiv", BinaryOpVal, FDiv, FDIV);
556 INSTKEYWORD("urem", BinaryOpVal, URem, UREM);
557 INSTKEYWORD("srem", BinaryOpVal, SRem, SREM);
558 INSTKEYWORD("frem", BinaryOpVal, FRem, FREM);
559 INSTKEYWORD("shl", BinaryOpVal, Shl, SHL);
560 INSTKEYWORD("lshr", BinaryOpVal, LShr, LSHR);
561 INSTKEYWORD("ashr", BinaryOpVal, AShr, ASHR);
562 INSTKEYWORD("and", BinaryOpVal, And, AND);
563 INSTKEYWORD("or", BinaryOpVal, Or , OR );
564 INSTKEYWORD("xor", BinaryOpVal, Xor, XOR);
565 INSTKEYWORD("icmp", OtherOpVal, ICmp, ICMP);
566 INSTKEYWORD("fcmp", OtherOpVal, FCmp, FCMP);
567
568 INSTKEYWORD("phi", OtherOpVal, PHI, PHI_TOK);
569 INSTKEYWORD("call", OtherOpVal, Call, CALL);
570 INSTKEYWORD("trunc", CastOpVal, Trunc, TRUNC);
571 INSTKEYWORD("zext", CastOpVal, ZExt, ZEXT);
572 INSTKEYWORD("sext", CastOpVal, SExt, SEXT);
573 INSTKEYWORD("fptrunc", CastOpVal, FPTrunc, FPTRUNC);
574 INSTKEYWORD("fpext", CastOpVal, FPExt, FPEXT);
575 INSTKEYWORD("uitofp", CastOpVal, UIToFP, UITOFP);
576 INSTKEYWORD("sitofp", CastOpVal, SIToFP, SITOFP);
577 INSTKEYWORD("fptoui", CastOpVal, FPToUI, FPTOUI);
578 INSTKEYWORD("fptosi", CastOpVal, FPToSI, FPTOSI);
579 INSTKEYWORD("inttoptr", CastOpVal, IntToPtr, INTTOPTR);
580 INSTKEYWORD("ptrtoint", CastOpVal, PtrToInt, PTRTOINT);
581 INSTKEYWORD("bitcast", CastOpVal, BitCast, BITCAST);
582 INSTKEYWORD("select", OtherOpVal, Select, SELECT);
583 INSTKEYWORD("va_arg", OtherOpVal, VAArg , VAARG);
584 INSTKEYWORD("ret", TermOpVal, Ret, RET);
585 INSTKEYWORD("br", TermOpVal, Br, BR);
586 INSTKEYWORD("switch", TermOpVal, Switch, SWITCH);
587 INSTKEYWORD("invoke", TermOpVal, Invoke, INVOKE);
588 INSTKEYWORD("unwind", TermOpVal, Unwind, UNWIND);
589 INSTKEYWORD("unreachable", TermOpVal, Unreachable, UNREACHABLE);
590
591 INSTKEYWORD("malloc", MemOpVal, Malloc, MALLOC);
592 INSTKEYWORD("alloca", MemOpVal, Alloca, ALLOCA);
593 INSTKEYWORD("free", MemOpVal, Free, FREE);
594 INSTKEYWORD("load", MemOpVal, Load, LOAD);
595 INSTKEYWORD("store", MemOpVal, Store, STORE);
596 INSTKEYWORD("getelementptr", MemOpVal, GetElementPtr, GETELEMENTPTR);
597
598 INSTKEYWORD("extractelement", OtherOpVal, ExtractElement, EXTRACTELEMENT);
599 INSTKEYWORD("insertelement", OtherOpVal, InsertElement, INSERTELEMENT);
600 INSTKEYWORD("shufflevector", OtherOpVal, ShuffleVector, SHUFFLEVECTOR);
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000601#undef INSTKEYWORD
602
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000603 // Check for [us]0x[0-9A-Fa-f]+ which are Hexadecimal constant generated by
604 // the CFE to avoid forcing it to deal with 64-bit numbers.
605 if ((TokStart[0] == 'u' || TokStart[0] == 's') &&
606 TokStart[1] == '0' && TokStart[2] == 'x' && isxdigit(TokStart[3])) {
607 int len = CurPtr-TokStart-3;
608 uint32_t bits = len * 4;
609 APInt Tmp(bits, TokStart+3, len, 16);
610 uint32_t activeBits = Tmp.getActiveBits();
611 if (activeBits > 0 && activeBits < bits)
612 Tmp.trunc(activeBits);
613 if (Tmp.getBitWidth() > 64) {
614 llvmAsmlval.APIntVal = new APInt(Tmp);
615 return TokStart[0] == 's' ? ESAPINTVAL : EUAPINTVAL;
616 } else if (TokStart[0] == 's') {
617 llvmAsmlval.SInt64Val = Tmp.getSExtValue();
618 return ESINT64VAL;
619 } else {
620 llvmAsmlval.UInt64Val = Tmp.getZExtValue();
621 return EUINT64VAL;
622 }
623 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000624
Chris Lattner4ce0df62007-11-18 18:43:24 +0000625 // If this is "cc1234", return this as just "cc".
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000626 if (TokStart[0] == 'c' && TokStart[1] == 'c') {
627 CurPtr = TokStart+2;
628 return CC_TOK;
629 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000630
Chris Lattner4ce0df62007-11-18 18:43:24 +0000631 // If this starts with "call", return it as CALL. This is to support old
632 // broken .ll files. FIXME: remove this with LLVM 3.0.
633 if (CurPtr-TokStart > 4 && !memcmp(TokStart, "call", 4)) {
634 CurPtr = TokStart+4;
635 llvmAsmlval.OtherOpVal = Instruction::Call;
636 return CALL;
637 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000638
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000639 // Finally, if this isn't known, return just a single character.
640 CurPtr = TokStart+1;
641 return TokStart[0];
642}
643
644
645/// Lex0x: Handle productions that start with 0x, knowing that it matches and
646/// that this is not a label:
647/// HexFPConstant 0x[0-9A-Fa-f]+
648/// HexFP80Constant 0xK[0-9A-Fa-f]+
649/// HexFP128Constant 0xL[0-9A-Fa-f]+
650/// HexPPC128Constant 0xM[0-9A-Fa-f]+
651int LLLexer::Lex0x() {
652 CurPtr = TokStart + 2;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000653
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000654 char Kind;
655 if (CurPtr[0] >= 'K' && CurPtr[0] <= 'M') {
656 Kind = *CurPtr++;
657 } else {
658 Kind = 'J';
659 }
660
661 if (!isxdigit(CurPtr[0])) {
662 // Bad token, return it as just zero.
663 CurPtr = TokStart+1;
664 return '0';
665 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000666
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000667 while (isxdigit(CurPtr[0]))
668 ++CurPtr;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000669
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000670 if (Kind == 'J') {
671 // HexFPConstant - Floating point constant represented in IEEE format as a
672 // hexadecimal number for when exponential notation is not precise enough.
673 // Float and double only.
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000674 llvmAsmlval.FPVal = new APFloat(HexToFP(TokStart+2, CurPtr));
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000675 return FPVAL;
676 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000677
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000678 uint64_t Pair[2];
679 HexToIntPair(TokStart+3, CurPtr, Pair);
680 switch (Kind) {
681 default: assert(0 && "Unknown kind!");
682 case 'K':
683 // F80HexFPConstant - x87 long double in hexadecimal format (10 bytes)
684 llvmAsmlval.FPVal = new APFloat(APInt(80, 2, Pair));
685 return FPVAL;
686 case 'L':
687 // F128HexFPConstant - IEEE 128-bit in hexadecimal format (16 bytes)
688 llvmAsmlval.FPVal = new APFloat(APInt(128, 2, Pair), true);
689 return FPVAL;
690 case 'M':
691 // PPC128HexFPConstant - PowerPC 128-bit in hexadecimal format (16 bytes)
692 llvmAsmlval.FPVal = new APFloat(APInt(128, 2, Pair));
693 return FPVAL;
694 }
695}
696
697/// LexIdentifier: Handle several related productions:
698/// Label [-a-zA-Z$._0-9]+:
699/// NInteger -[0-9]+
700/// FPConstant [-+]?[0-9]+[.][0-9]*([eE][-+]?[0-9]+)?
701/// PInteger [0-9]+
702/// HexFPConstant 0x[0-9A-Fa-f]+
703/// HexFP80Constant 0xK[0-9A-Fa-f]+
704/// HexFP128Constant 0xL[0-9A-Fa-f]+
705/// HexPPC128Constant 0xM[0-9A-Fa-f]+
706int LLLexer::LexDigitOrNegative() {
707 // If the letter after the negative is a number, this is probably a label.
708 if (!isdigit(TokStart[0]) && !isdigit(CurPtr[0])) {
709 // Okay, this is not a number after the -, it's probably a label.
710 if (const char *End = isLabelTail(CurPtr)) {
711 llvmAsmlval.StrVal = new std::string(TokStart, End-1);
712 CurPtr = End;
713 return LABELSTR;
714 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000715
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000716 return CurPtr[-1];
717 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000718
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000719 // At this point, it is either a label, int or fp constant.
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000720
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000721 // Skip digits, we have at least one.
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000722 for (; isdigit(CurPtr[0]); ++CurPtr)
723 /*empty*/;
724
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000725 // Check to see if this really is a label afterall, e.g. "-1:".
726 if (isLabelChar(CurPtr[0]) || CurPtr[0] == ':') {
727 if (const char *End = isLabelTail(CurPtr)) {
728 llvmAsmlval.StrVal = new std::string(TokStart, End-1);
729 CurPtr = End;
730 return LABELSTR;
731 }
732 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000733
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000734 // If the next character is a '.', then it is a fp value, otherwise its
735 // integer.
736 if (CurPtr[0] != '.') {
737 if (TokStart[0] == '0' && TokStart[1] == 'x')
738 return Lex0x();
739 unsigned Len = CurPtr-TokStart;
740 uint32_t numBits = ((Len * 64) / 19) + 2;
741 APInt Tmp(numBits, TokStart, Len, 10);
742 if (TokStart[0] == '-') {
743 uint32_t minBits = Tmp.getMinSignedBits();
744 if (minBits > 0 && minBits < numBits)
745 Tmp.trunc(minBits);
746 if (Tmp.getBitWidth() > 64) {
747 llvmAsmlval.APIntVal = new APInt(Tmp);
748 return ESAPINTVAL;
749 } else {
750 llvmAsmlval.SInt64Val = Tmp.getSExtValue();
751 return ESINT64VAL;
752 }
753 } else {
754 uint32_t activeBits = Tmp.getActiveBits();
755 if (activeBits > 0 && activeBits < numBits)
756 Tmp.trunc(activeBits);
757 if (Tmp.getBitWidth() > 64) {
758 llvmAsmlval.APIntVal = new APInt(Tmp);
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000759 return EUAPINTVAL;
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000760 } else {
761 llvmAsmlval.UInt64Val = Tmp.getZExtValue();
762 return EUINT64VAL;
763 }
764 }
765 }
766
767 ++CurPtr;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000768
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000769 // Skip over [0-9]*([eE][-+]?[0-9]+)?
770 while (isdigit(CurPtr[0])) ++CurPtr;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000771
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000772 if (CurPtr[0] == 'e' || CurPtr[0] == 'E') {
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000773 if (isdigit(CurPtr[1]) ||
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000774 ((CurPtr[1] == '-' || CurPtr[1] == '+') && isdigit(CurPtr[2]))) {
775 CurPtr += 2;
776 while (isdigit(CurPtr[0])) ++CurPtr;
777 }
778 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000779
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000780 llvmAsmlval.FPVal = new APFloat(atof(TokStart));
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000781 return FPVAL;
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000782}
783
784/// FPConstant [-+]?[0-9]+[.][0-9]*([eE][-+]?[0-9]+)?
785int LLLexer::LexPositive() {
786 // If the letter after the negative is a number, this is probably not a
787 // label.
788 if (!isdigit(CurPtr[0]))
789 return CurPtr[-1];
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000790
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000791 // Skip digits.
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000792 for (++CurPtr; isdigit(CurPtr[0]); ++CurPtr)
793 /*empty*/;
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000794
795 // At this point, we need a '.'.
796 if (CurPtr[0] != '.') {
797 CurPtr = TokStart+1;
798 return TokStart[0];
799 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000800
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000801 ++CurPtr;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000802
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000803 // Skip over [0-9]*([eE][-+]?[0-9]+)?
804 while (isdigit(CurPtr[0])) ++CurPtr;
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000805
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000806 if (CurPtr[0] == 'e' || CurPtr[0] == 'E') {
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000807 if (isdigit(CurPtr[1]) ||
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000808 ((CurPtr[1] == '-' || CurPtr[1] == '+') && isdigit(CurPtr[2]))) {
809 CurPtr += 2;
810 while (isdigit(CurPtr[0])) ++CurPtr;
811 }
812 }
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000813
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000814 llvmAsmlval.FPVal = new APFloat(atof(TokStart));
Bill Wendling2c6fd8c2007-12-16 09:16:12 +0000815 return FPVAL;
Chris Lattner8e3a8e02007-11-18 08:46:26 +0000816}
817
818
819//===----------------------------------------------------------------------===//
820// Define the interface to this file.
821//===----------------------------------------------------------------------===//
822
823static LLLexer *TheLexer;
824
825void InitLLLexer(llvm::MemoryBuffer *MB) {
826 assert(TheLexer == 0 && "LL Lexer isn't reentrant yet");
827 TheLexer = new LLLexer(MB);
828}
829
830int llvmAsmlex() {
831 return TheLexer->LexToken();
832}
833const char *LLLgetTokenStart() { return TheLexer->getTokStart(); }
834unsigned LLLgetTokenLength() { return TheLexer->getTokLength(); }
835std::string LLLgetFilename() { return TheLexer->getFilename(); }
836unsigned LLLgetLineNo() { return TheLexer->getLineNo(); }
837
838void FreeLexer() {
839 delete TheLexer;
840 TheLexer = 0;
841}