These classes only need a StringRef, not a MemoryBuffer.
[oota-llvm.git] / lib / AsmParser / LLLexer.cpp
1 //===- LLLexer.cpp - Lexer for .ll 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 // Implement the Lexer for .ll files.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "LLLexer.h"
15 #include "llvm/ADT/StringExtras.h"
16 #include "llvm/ADT/Twine.h"
17 #include "llvm/AsmParser/Parser.h"
18 #include "llvm/IR/DerivedTypes.h"
19 #include "llvm/IR/Instruction.h"
20 #include "llvm/IR/LLVMContext.h"
21 #include "llvm/Support/ErrorHandling.h"
22 #include "llvm/Support/MathExtras.h"
23 #include "llvm/Support/MemoryBuffer.h"
24 #include "llvm/Support/SourceMgr.h"
25 #include "llvm/Support/raw_ostream.h"
26 #include <cctype>
27 #include <cstdio>
28 #include <cstdlib>
29 #include <cstring>
30 using namespace llvm;
31
32 bool LLLexer::Error(LocTy ErrorLoc, const Twine &Msg) const {
33   ErrorInfo = SM.GetMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
34   return true;
35 }
36
37 void LLLexer::Warning(LocTy WarningLoc, const Twine &Msg) const {
38   SM.PrintMessage(WarningLoc, SourceMgr::DK_Warning, Msg);
39 }
40
41 //===----------------------------------------------------------------------===//
42 // Helper functions.
43 //===----------------------------------------------------------------------===//
44
45 // atoull - Convert an ascii string of decimal digits into the unsigned long
46 // long representation... this does not have to do input error checking,
47 // because we know that the input will be matched by a suitable regex...
48 //
49 uint64_t LLLexer::atoull(const char *Buffer, const char *End) {
50   uint64_t Result = 0;
51   for (; Buffer != End; Buffer++) {
52     uint64_t OldRes = Result;
53     Result *= 10;
54     Result += *Buffer-'0';
55     if (Result < OldRes) {  // Uh, oh, overflow detected!!!
56       Error("constant bigger than 64 bits detected!");
57       return 0;
58     }
59   }
60   return Result;
61 }
62
63 uint64_t LLLexer::HexIntToVal(const char *Buffer, const char *End) {
64   uint64_t Result = 0;
65   for (; Buffer != End; ++Buffer) {
66     uint64_t OldRes = Result;
67     Result *= 16;
68     Result += hexDigitValue(*Buffer);
69
70     if (Result < OldRes) {   // Uh, oh, overflow detected!!!
71       Error("constant bigger than 64 bits detected!");
72       return 0;
73     }
74   }
75   return Result;
76 }
77
78 void LLLexer::HexToIntPair(const char *Buffer, const char *End,
79                            uint64_t Pair[2]) {
80   Pair[0] = 0;
81   for (int i=0; i<16; i++, Buffer++) {
82     assert(Buffer != End);
83     Pair[0] *= 16;
84     Pair[0] += hexDigitValue(*Buffer);
85   }
86   Pair[1] = 0;
87   for (int i=0; i<16 && Buffer != End; i++, Buffer++) {
88     Pair[1] *= 16;
89     Pair[1] += hexDigitValue(*Buffer);
90   }
91   if (Buffer != End)
92     Error("constant bigger than 128 bits detected!");
93 }
94
95 /// FP80HexToIntPair - translate an 80 bit FP80 number (20 hexits) into
96 /// { low64, high16 } as usual for an APInt.
97 void LLLexer::FP80HexToIntPair(const char *Buffer, const char *End,
98                            uint64_t Pair[2]) {
99   Pair[1] = 0;
100   for (int i=0; i<4 && Buffer != End; i++, Buffer++) {
101     assert(Buffer != End);
102     Pair[1] *= 16;
103     Pair[1] += hexDigitValue(*Buffer);
104   }
105   Pair[0] = 0;
106   for (int i=0; i<16; i++, Buffer++) {
107     Pair[0] *= 16;
108     Pair[0] += hexDigitValue(*Buffer);
109   }
110   if (Buffer != End)
111     Error("constant bigger than 128 bits detected!");
112 }
113
114 // UnEscapeLexed - Run through the specified buffer and change \xx codes to the
115 // appropriate character.
116 static void UnEscapeLexed(std::string &Str) {
117   if (Str.empty()) return;
118
119   char *Buffer = &Str[0], *EndBuffer = Buffer+Str.size();
120   char *BOut = Buffer;
121   for (char *BIn = Buffer; BIn != EndBuffer; ) {
122     if (BIn[0] == '\\') {
123       if (BIn < EndBuffer-1 && BIn[1] == '\\') {
124         *BOut++ = '\\'; // Two \ becomes one
125         BIn += 2;
126       } else if (BIn < EndBuffer-2 &&
127                  isxdigit(static_cast<unsigned char>(BIn[1])) &&
128                  isxdigit(static_cast<unsigned char>(BIn[2]))) {
129         *BOut = hexDigitValue(BIn[1]) * 16 + hexDigitValue(BIn[2]);
130         BIn += 3;                           // Skip over handled chars
131         ++BOut;
132       } else {
133         *BOut++ = *BIn++;
134       }
135     } else {
136       *BOut++ = *BIn++;
137     }
138   }
139   Str.resize(BOut-Buffer);
140 }
141
142 /// isLabelChar - Return true for [-a-zA-Z$._0-9].
143 static bool isLabelChar(char C) {
144   return isalnum(static_cast<unsigned char>(C)) || C == '-' || C == '$' ||
145          C == '.' || C == '_';
146 }
147
148
149 /// isLabelTail - Return true if this pointer points to a valid end of a label.
150 static const char *isLabelTail(const char *CurPtr) {
151   while (1) {
152     if (CurPtr[0] == ':') return CurPtr+1;
153     if (!isLabelChar(CurPtr[0])) return nullptr;
154     ++CurPtr;
155   }
156 }
157
158
159
160 //===----------------------------------------------------------------------===//
161 // Lexer definition.
162 //===----------------------------------------------------------------------===//
163
164 LLLexer::LLLexer(StringRef StartBuf, SourceMgr &sm, SMDiagnostic &Err,
165                  LLVMContext &C)
166   : CurBuf(StartBuf), ErrorInfo(Err), SM(sm), Context(C), APFloatVal(0.0) {
167   CurPtr = CurBuf.begin();
168 }
169
170 int LLLexer::getNextChar() {
171   char CurChar = *CurPtr++;
172   switch (CurChar) {
173   default: return (unsigned char)CurChar;
174   case 0:
175     // A nul character in the stream is either the end of the current buffer or
176     // a random nul in the file.  Disambiguate that here.
177     if (CurPtr-1 != CurBuf.end())
178       return 0;  // Just whitespace.
179
180     // Otherwise, return end of file.
181     --CurPtr;  // Another call to lex will return EOF again.
182     return EOF;
183   }
184 }
185
186
187 lltok::Kind LLLexer::LexToken() {
188   TokStart = CurPtr;
189
190   int CurChar = getNextChar();
191   switch (CurChar) {
192   default:
193     // Handle letters: [a-zA-Z_]
194     if (isalpha(static_cast<unsigned char>(CurChar)) || CurChar == '_')
195       return LexIdentifier();
196
197     return lltok::Error;
198   case EOF: return lltok::Eof;
199   case 0:
200   case ' ':
201   case '\t':
202   case '\n':
203   case '\r':
204     // Ignore whitespace.
205     return LexToken();
206   case '+': return LexPositive();
207   case '@': return LexAt();
208   case '$': return LexDollar();
209   case '%': return LexPercent();
210   case '"': return LexQuote();
211   case '.':
212     if (const char *Ptr = isLabelTail(CurPtr)) {
213       CurPtr = Ptr;
214       StrVal.assign(TokStart, CurPtr-1);
215       return lltok::LabelStr;
216     }
217     if (CurPtr[0] == '.' && CurPtr[1] == '.') {
218       CurPtr += 2;
219       return lltok::dotdotdot;
220     }
221     return lltok::Error;
222   case ';':
223     SkipLineComment();
224     return LexToken();
225   case '!': return LexExclaim();
226   case '#': return LexHash();
227   case '0': case '1': case '2': case '3': case '4':
228   case '5': case '6': case '7': case '8': case '9':
229   case '-':
230     return LexDigitOrNegative();
231   case '=': return lltok::equal;
232   case '[': return lltok::lsquare;
233   case ']': return lltok::rsquare;
234   case '{': return lltok::lbrace;
235   case '}': return lltok::rbrace;
236   case '<': return lltok::less;
237   case '>': return lltok::greater;
238   case '(': return lltok::lparen;
239   case ')': return lltok::rparen;
240   case ',': return lltok::comma;
241   case '*': return lltok::star;
242   case '\\': return lltok::backslash;
243   }
244 }
245
246 void LLLexer::SkipLineComment() {
247   while (1) {
248     if (CurPtr[0] == '\n' || CurPtr[0] == '\r' || getNextChar() == EOF)
249       return;
250   }
251 }
252
253 /// LexAt - Lex all tokens that start with an @ character:
254 ///   GlobalVar   @\"[^\"]*\"
255 ///   GlobalVar   @[-a-zA-Z$._][-a-zA-Z$._0-9]*
256 ///   GlobalVarID @[0-9]+
257 lltok::Kind LLLexer::LexAt() {
258   // Handle AtStringConstant: @\"[^\"]*\"
259   if (CurPtr[0] == '"') {
260     ++CurPtr;
261
262     while (1) {
263       int CurChar = getNextChar();
264
265       if (CurChar == EOF) {
266         Error("end of file in global variable name");
267         return lltok::Error;
268       }
269       if (CurChar == '"') {
270         StrVal.assign(TokStart+2, CurPtr-1);
271         UnEscapeLexed(StrVal);
272         if (StringRef(StrVal).find_first_of(0) != StringRef::npos) {
273           Error("Null bytes are not allowed in names");
274           return lltok::Error;
275         }
276         return lltok::GlobalVar;
277       }
278     }
279   }
280
281   // Handle GlobalVarName: @[-a-zA-Z$._][-a-zA-Z$._0-9]*
282   if (ReadVarName())
283     return lltok::GlobalVar;
284
285   // Handle GlobalVarID: @[0-9]+
286   if (isdigit(static_cast<unsigned char>(CurPtr[0]))) {
287     for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr)
288       /*empty*/;
289
290     uint64_t Val = atoull(TokStart+1, CurPtr);
291     if ((unsigned)Val != Val)
292       Error("invalid value number (too large)!");
293     UIntVal = unsigned(Val);
294     return lltok::GlobalID;
295   }
296
297   return lltok::Error;
298 }
299
300 lltok::Kind LLLexer::LexDollar() {
301   if (const char *Ptr = isLabelTail(TokStart)) {
302     CurPtr = Ptr;
303     StrVal.assign(TokStart, CurPtr - 1);
304     return lltok::LabelStr;
305   }
306
307   // Handle DollarStringConstant: $\"[^\"]*\"
308   if (CurPtr[0] == '"') {
309     ++CurPtr;
310
311     while (1) {
312       int CurChar = getNextChar();
313
314       if (CurChar == EOF) {
315         Error("end of file in COMDAT variable name");
316         return lltok::Error;
317       }
318       if (CurChar == '"') {
319         StrVal.assign(TokStart + 2, CurPtr - 1);
320         UnEscapeLexed(StrVal);
321         if (StringRef(StrVal).find_first_of(0) != StringRef::npos) {
322           Error("Null bytes are not allowed in names");
323           return lltok::Error;
324         }
325         return lltok::ComdatVar;
326       }
327     }
328   }
329
330   // Handle ComdatVarName: $[-a-zA-Z$._][-a-zA-Z$._0-9]*
331   if (ReadVarName())
332     return lltok::ComdatVar;
333
334   return lltok::Error;
335 }
336
337 /// ReadString - Read a string until the closing quote.
338 lltok::Kind LLLexer::ReadString(lltok::Kind kind) {
339   const char *Start = CurPtr;
340   while (1) {
341     int CurChar = getNextChar();
342
343     if (CurChar == EOF) {
344       Error("end of file in string constant");
345       return lltok::Error;
346     }
347     if (CurChar == '"') {
348       StrVal.assign(Start, CurPtr-1);
349       UnEscapeLexed(StrVal);
350       return kind;
351     }
352   }
353 }
354
355 /// ReadVarName - Read the rest of a token containing a variable name.
356 bool LLLexer::ReadVarName() {
357   const char *NameStart = CurPtr;
358   if (isalpha(static_cast<unsigned char>(CurPtr[0])) ||
359       CurPtr[0] == '-' || CurPtr[0] == '$' ||
360       CurPtr[0] == '.' || CurPtr[0] == '_') {
361     ++CurPtr;
362     while (isalnum(static_cast<unsigned char>(CurPtr[0])) ||
363            CurPtr[0] == '-' || CurPtr[0] == '$' ||
364            CurPtr[0] == '.' || CurPtr[0] == '_')
365       ++CurPtr;
366
367     StrVal.assign(NameStart, CurPtr);
368     return true;
369   }
370   return false;
371 }
372
373 /// LexPercent - Lex all tokens that start with a % character:
374 ///   LocalVar   ::= %\"[^\"]*\"
375 ///   LocalVar   ::= %[-a-zA-Z$._][-a-zA-Z$._0-9]*
376 ///   LocalVarID ::= %[0-9]+
377 lltok::Kind LLLexer::LexPercent() {
378   // Handle LocalVarName: %\"[^\"]*\"
379   if (CurPtr[0] == '"') {
380     ++CurPtr;
381     return ReadString(lltok::LocalVar);
382   }
383
384   // Handle LocalVarName: %[-a-zA-Z$._][-a-zA-Z$._0-9]*
385   if (ReadVarName())
386     return lltok::LocalVar;
387
388   // Handle LocalVarID: %[0-9]+
389   if (isdigit(static_cast<unsigned char>(CurPtr[0]))) {
390     for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr)
391       /*empty*/;
392
393     uint64_t Val = atoull(TokStart+1, CurPtr);
394     if ((unsigned)Val != Val)
395       Error("invalid value number (too large)!");
396     UIntVal = unsigned(Val);
397     return lltok::LocalVarID;
398   }
399
400   return lltok::Error;
401 }
402
403 /// LexQuote - Lex all tokens that start with a " character:
404 ///   QuoteLabel        "[^"]+":
405 ///   StringConstant    "[^"]*"
406 lltok::Kind LLLexer::LexQuote() {
407   lltok::Kind kind = ReadString(lltok::StringConstant);
408   if (kind == lltok::Error || kind == lltok::Eof)
409     return kind;
410
411   if (CurPtr[0] == ':') {
412     ++CurPtr;
413     kind = lltok::LabelStr;
414   }
415
416   return kind;
417 }
418
419 /// LexExclaim:
420 ///    !foo
421 ///    !
422 lltok::Kind LLLexer::LexExclaim() {
423   // Lex a metadata name as a MetadataVar.
424   if (isalpha(static_cast<unsigned char>(CurPtr[0])) ||
425       CurPtr[0] == '-' || CurPtr[0] == '$' ||
426       CurPtr[0] == '.' || CurPtr[0] == '_' || CurPtr[0] == '\\') {
427     ++CurPtr;
428     while (isalnum(static_cast<unsigned char>(CurPtr[0])) ||
429            CurPtr[0] == '-' || CurPtr[0] == '$' ||
430            CurPtr[0] == '.' || CurPtr[0] == '_' || CurPtr[0] == '\\')
431       ++CurPtr;
432
433     StrVal.assign(TokStart+1, CurPtr);   // Skip !
434     UnEscapeLexed(StrVal);
435     return lltok::MetadataVar;
436   }
437   return lltok::exclaim;
438 }
439
440 /// LexHash - Lex all tokens that start with a # character:
441 ///    AttrGrpID ::= #[0-9]+
442 lltok::Kind LLLexer::LexHash() {
443   // Handle AttrGrpID: #[0-9]+
444   if (isdigit(static_cast<unsigned char>(CurPtr[0]))) {
445     for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr)
446       /*empty*/;
447
448     uint64_t Val = atoull(TokStart+1, CurPtr);
449     if ((unsigned)Val != Val)
450       Error("invalid value number (too large)!");
451     UIntVal = unsigned(Val);
452     return lltok::AttrGrpID;
453   }
454
455   return lltok::Error;
456 }
457
458 /// LexIdentifier: Handle several related productions:
459 ///    Label           [-a-zA-Z$._0-9]+:
460 ///    IntegerType     i[0-9]+
461 ///    Keyword         sdiv, float, ...
462 ///    HexIntConstant  [us]0x[0-9A-Fa-f]+
463 lltok::Kind LLLexer::LexIdentifier() {
464   const char *StartChar = CurPtr;
465   const char *IntEnd = CurPtr[-1] == 'i' ? nullptr : StartChar;
466   const char *KeywordEnd = nullptr;
467
468   for (; isLabelChar(*CurPtr); ++CurPtr) {
469     // If we decide this is an integer, remember the end of the sequence.
470     if (!IntEnd && !isdigit(static_cast<unsigned char>(*CurPtr)))
471       IntEnd = CurPtr;
472     if (!KeywordEnd && !isalnum(static_cast<unsigned char>(*CurPtr)) &&
473         *CurPtr != '_')
474       KeywordEnd = CurPtr;
475   }
476
477   // If we stopped due to a colon, this really is a label.
478   if (*CurPtr == ':') {
479     StrVal.assign(StartChar-1, CurPtr++);
480     return lltok::LabelStr;
481   }
482
483   // Otherwise, this wasn't a label.  If this was valid as an integer type,
484   // return it.
485   if (!IntEnd) IntEnd = CurPtr;
486   if (IntEnd != StartChar) {
487     CurPtr = IntEnd;
488     uint64_t NumBits = atoull(StartChar, CurPtr);
489     if (NumBits < IntegerType::MIN_INT_BITS ||
490         NumBits > IntegerType::MAX_INT_BITS) {
491       Error("bitwidth for integer type out of range!");
492       return lltok::Error;
493     }
494     TyVal = IntegerType::get(Context, NumBits);
495     return lltok::Type;
496   }
497
498   // Otherwise, this was a letter sequence.  See which keyword this is.
499   if (!KeywordEnd) KeywordEnd = CurPtr;
500   CurPtr = KeywordEnd;
501   --StartChar;
502   unsigned Len = CurPtr-StartChar;
503 #define KEYWORD(STR)                                                    \
504   do {                                                                  \
505     if (Len == strlen(#STR) && !memcmp(StartChar, #STR, strlen(#STR)))  \
506       return lltok::kw_##STR;                                           \
507   } while (0)
508
509   KEYWORD(true);    KEYWORD(false);
510   KEYWORD(declare); KEYWORD(define);
511   KEYWORD(global);  KEYWORD(constant);
512
513   KEYWORD(private);
514   KEYWORD(internal);
515   KEYWORD(available_externally);
516   KEYWORD(linkonce);
517   KEYWORD(linkonce_odr);
518   KEYWORD(weak); // Use as a linkage, and a modifier for "cmpxchg".
519   KEYWORD(weak_odr);
520   KEYWORD(appending);
521   KEYWORD(dllimport);
522   KEYWORD(dllexport);
523   KEYWORD(common);
524   KEYWORD(default);
525   KEYWORD(hidden);
526   KEYWORD(protected);
527   KEYWORD(unnamed_addr);
528   KEYWORD(externally_initialized);
529   KEYWORD(extern_weak);
530   KEYWORD(external);
531   KEYWORD(thread_local);
532   KEYWORD(localdynamic);
533   KEYWORD(initialexec);
534   KEYWORD(localexec);
535   KEYWORD(zeroinitializer);
536   KEYWORD(undef);
537   KEYWORD(null);
538   KEYWORD(to);
539   KEYWORD(tail);
540   KEYWORD(musttail);
541   KEYWORD(target);
542   KEYWORD(triple);
543   KEYWORD(unwind);
544   KEYWORD(deplibs);             // FIXME: Remove in 4.0.
545   KEYWORD(datalayout);
546   KEYWORD(volatile);
547   KEYWORD(atomic);
548   KEYWORD(unordered);
549   KEYWORD(monotonic);
550   KEYWORD(acquire);
551   KEYWORD(release);
552   KEYWORD(acq_rel);
553   KEYWORD(seq_cst);
554   KEYWORD(singlethread);
555
556   KEYWORD(nnan);
557   KEYWORD(ninf);
558   KEYWORD(nsz);
559   KEYWORD(arcp);
560   KEYWORD(fast);
561   KEYWORD(nuw);
562   KEYWORD(nsw);
563   KEYWORD(exact);
564   KEYWORD(inbounds);
565   KEYWORD(align);
566   KEYWORD(addrspace);
567   KEYWORD(section);
568   KEYWORD(alias);
569   KEYWORD(module);
570   KEYWORD(asm);
571   KEYWORD(sideeffect);
572   KEYWORD(alignstack);
573   KEYWORD(inteldialect);
574   KEYWORD(gc);
575   KEYWORD(prefix);
576
577   KEYWORD(ccc);
578   KEYWORD(fastcc);
579   KEYWORD(coldcc);
580   KEYWORD(x86_stdcallcc);
581   KEYWORD(x86_fastcallcc);
582   KEYWORD(x86_thiscallcc);
583   KEYWORD(arm_apcscc);
584   KEYWORD(arm_aapcscc);
585   KEYWORD(arm_aapcs_vfpcc);
586   KEYWORD(msp430_intrcc);
587   KEYWORD(ptx_kernel);
588   KEYWORD(ptx_device);
589   KEYWORD(spir_kernel);
590   KEYWORD(spir_func);
591   KEYWORD(intel_ocl_bicc);
592   KEYWORD(x86_64_sysvcc);
593   KEYWORD(x86_64_win64cc);
594   KEYWORD(webkit_jscc);
595   KEYWORD(anyregcc);
596   KEYWORD(preserve_mostcc);
597   KEYWORD(preserve_allcc);
598
599   KEYWORD(cc);
600   KEYWORD(c);
601
602   KEYWORD(attributes);
603
604   KEYWORD(alwaysinline);
605   KEYWORD(builtin);
606   KEYWORD(byval);
607   KEYWORD(inalloca);
608   KEYWORD(cold);
609   KEYWORD(dereferenceable);
610   KEYWORD(inlinehint);
611   KEYWORD(inreg);
612   KEYWORD(jumptable);
613   KEYWORD(minsize);
614   KEYWORD(naked);
615   KEYWORD(nest);
616   KEYWORD(noalias);
617   KEYWORD(nobuiltin);
618   KEYWORD(nocapture);
619   KEYWORD(noduplicate);
620   KEYWORD(noimplicitfloat);
621   KEYWORD(noinline);
622   KEYWORD(nonlazybind);
623   KEYWORD(nonnull);
624   KEYWORD(noredzone);
625   KEYWORD(noreturn);
626   KEYWORD(nounwind);
627   KEYWORD(optnone);
628   KEYWORD(optsize);
629   KEYWORD(readnone);
630   KEYWORD(readonly);
631   KEYWORD(returned);
632   KEYWORD(returns_twice);
633   KEYWORD(signext);
634   KEYWORD(sret);
635   KEYWORD(ssp);
636   KEYWORD(sspreq);
637   KEYWORD(sspstrong);
638   KEYWORD(sanitize_address);
639   KEYWORD(sanitize_thread);
640   KEYWORD(sanitize_memory);
641   KEYWORD(uwtable);
642   KEYWORD(zeroext);
643
644   KEYWORD(type);
645   KEYWORD(opaque);
646
647   KEYWORD(comdat);
648
649   // Comdat types
650   KEYWORD(any);
651   KEYWORD(exactmatch);
652   KEYWORD(largest);
653   KEYWORD(noduplicates);
654   KEYWORD(samesize);
655
656   KEYWORD(eq); KEYWORD(ne); KEYWORD(slt); KEYWORD(sgt); KEYWORD(sle);
657   KEYWORD(sge); KEYWORD(ult); KEYWORD(ugt); KEYWORD(ule); KEYWORD(uge);
658   KEYWORD(oeq); KEYWORD(one); KEYWORD(olt); KEYWORD(ogt); KEYWORD(ole);
659   KEYWORD(oge); KEYWORD(ord); KEYWORD(uno); KEYWORD(ueq); KEYWORD(une);
660
661   KEYWORD(xchg); KEYWORD(nand); KEYWORD(max); KEYWORD(min); KEYWORD(umax);
662   KEYWORD(umin);
663
664   KEYWORD(x);
665   KEYWORD(blockaddress);
666
667   KEYWORD(personality);
668   KEYWORD(cleanup);
669   KEYWORD(catch);
670   KEYWORD(filter);
671 #undef KEYWORD
672
673   // Keywords for types.
674 #define TYPEKEYWORD(STR, LLVMTY) \
675   if (Len == strlen(STR) && !memcmp(StartChar, STR, strlen(STR))) { \
676     TyVal = LLVMTY; return lltok::Type; }
677   TYPEKEYWORD("void",      Type::getVoidTy(Context));
678   TYPEKEYWORD("half",      Type::getHalfTy(Context));
679   TYPEKEYWORD("float",     Type::getFloatTy(Context));
680   TYPEKEYWORD("double",    Type::getDoubleTy(Context));
681   TYPEKEYWORD("x86_fp80",  Type::getX86_FP80Ty(Context));
682   TYPEKEYWORD("fp128",     Type::getFP128Ty(Context));
683   TYPEKEYWORD("ppc_fp128", Type::getPPC_FP128Ty(Context));
684   TYPEKEYWORD("label",     Type::getLabelTy(Context));
685   TYPEKEYWORD("metadata",  Type::getMetadataTy(Context));
686   TYPEKEYWORD("x86_mmx",   Type::getX86_MMXTy(Context));
687 #undef TYPEKEYWORD
688
689   // Keywords for instructions.
690 #define INSTKEYWORD(STR, Enum) \
691   if (Len == strlen(#STR) && !memcmp(StartChar, #STR, strlen(#STR))) { \
692     UIntVal = Instruction::Enum; return lltok::kw_##STR; }
693
694   INSTKEYWORD(add,   Add);  INSTKEYWORD(fadd,   FAdd);
695   INSTKEYWORD(sub,   Sub);  INSTKEYWORD(fsub,   FSub);
696   INSTKEYWORD(mul,   Mul);  INSTKEYWORD(fmul,   FMul);
697   INSTKEYWORD(udiv,  UDiv); INSTKEYWORD(sdiv,  SDiv); INSTKEYWORD(fdiv,  FDiv);
698   INSTKEYWORD(urem,  URem); INSTKEYWORD(srem,  SRem); INSTKEYWORD(frem,  FRem);
699   INSTKEYWORD(shl,   Shl);  INSTKEYWORD(lshr,  LShr); INSTKEYWORD(ashr,  AShr);
700   INSTKEYWORD(and,   And);  INSTKEYWORD(or,    Or);   INSTKEYWORD(xor,   Xor);
701   INSTKEYWORD(icmp,  ICmp); INSTKEYWORD(fcmp,  FCmp);
702
703   INSTKEYWORD(phi,         PHI);
704   INSTKEYWORD(call,        Call);
705   INSTKEYWORD(trunc,       Trunc);
706   INSTKEYWORD(zext,        ZExt);
707   INSTKEYWORD(sext,        SExt);
708   INSTKEYWORD(fptrunc,     FPTrunc);
709   INSTKEYWORD(fpext,       FPExt);
710   INSTKEYWORD(uitofp,      UIToFP);
711   INSTKEYWORD(sitofp,      SIToFP);
712   INSTKEYWORD(fptoui,      FPToUI);
713   INSTKEYWORD(fptosi,      FPToSI);
714   INSTKEYWORD(inttoptr,    IntToPtr);
715   INSTKEYWORD(ptrtoint,    PtrToInt);
716   INSTKEYWORD(bitcast,     BitCast);
717   INSTKEYWORD(addrspacecast, AddrSpaceCast);
718   INSTKEYWORD(select,      Select);
719   INSTKEYWORD(va_arg,      VAArg);
720   INSTKEYWORD(ret,         Ret);
721   INSTKEYWORD(br,          Br);
722   INSTKEYWORD(switch,      Switch);
723   INSTKEYWORD(indirectbr,  IndirectBr);
724   INSTKEYWORD(invoke,      Invoke);
725   INSTKEYWORD(resume,      Resume);
726   INSTKEYWORD(unreachable, Unreachable);
727
728   INSTKEYWORD(alloca,      Alloca);
729   INSTKEYWORD(load,        Load);
730   INSTKEYWORD(store,       Store);
731   INSTKEYWORD(cmpxchg,     AtomicCmpXchg);
732   INSTKEYWORD(atomicrmw,   AtomicRMW);
733   INSTKEYWORD(fence,       Fence);
734   INSTKEYWORD(getelementptr, GetElementPtr);
735
736   INSTKEYWORD(extractelement, ExtractElement);
737   INSTKEYWORD(insertelement,  InsertElement);
738   INSTKEYWORD(shufflevector,  ShuffleVector);
739   INSTKEYWORD(extractvalue,   ExtractValue);
740   INSTKEYWORD(insertvalue,    InsertValue);
741   INSTKEYWORD(landingpad,     LandingPad);
742 #undef INSTKEYWORD
743
744   // Check for [us]0x[0-9A-Fa-f]+ which are Hexadecimal constant generated by
745   // the CFE to avoid forcing it to deal with 64-bit numbers.
746   if ((TokStart[0] == 'u' || TokStart[0] == 's') &&
747       TokStart[1] == '0' && TokStart[2] == 'x' &&
748       isxdigit(static_cast<unsigned char>(TokStart[3]))) {
749     int len = CurPtr-TokStart-3;
750     uint32_t bits = len * 4;
751     APInt Tmp(bits, StringRef(TokStart+3, len), 16);
752     uint32_t activeBits = Tmp.getActiveBits();
753     if (activeBits > 0 && activeBits < bits)
754       Tmp = Tmp.trunc(activeBits);
755     APSIntVal = APSInt(Tmp, TokStart[0] == 'u');
756     return lltok::APSInt;
757   }
758
759   // If this is "cc1234", return this as just "cc".
760   if (TokStart[0] == 'c' && TokStart[1] == 'c') {
761     CurPtr = TokStart+2;
762     return lltok::kw_cc;
763   }
764
765   // Finally, if this isn't known, return an error.
766   CurPtr = TokStart+1;
767   return lltok::Error;
768 }
769
770
771 /// Lex0x: Handle productions that start with 0x, knowing that it matches and
772 /// that this is not a label:
773 ///    HexFPConstant     0x[0-9A-Fa-f]+
774 ///    HexFP80Constant   0xK[0-9A-Fa-f]+
775 ///    HexFP128Constant  0xL[0-9A-Fa-f]+
776 ///    HexPPC128Constant 0xM[0-9A-Fa-f]+
777 ///    HexHalfConstant   0xH[0-9A-Fa-f]+
778 lltok::Kind LLLexer::Lex0x() {
779   CurPtr = TokStart + 2;
780
781   char Kind;
782   if ((CurPtr[0] >= 'K' && CurPtr[0] <= 'M') || CurPtr[0] == 'H') {
783     Kind = *CurPtr++;
784   } else {
785     Kind = 'J';
786   }
787
788   if (!isxdigit(static_cast<unsigned char>(CurPtr[0]))) {
789     // Bad token, return it as an error.
790     CurPtr = TokStart+1;
791     return lltok::Error;
792   }
793
794   while (isxdigit(static_cast<unsigned char>(CurPtr[0])))
795     ++CurPtr;
796
797   if (Kind == 'J') {
798     // HexFPConstant - Floating point constant represented in IEEE format as a
799     // hexadecimal number for when exponential notation is not precise enough.
800     // Half, Float, and double only.
801     APFloatVal = APFloat(BitsToDouble(HexIntToVal(TokStart+2, CurPtr)));
802     return lltok::APFloat;
803   }
804
805   uint64_t Pair[2];
806   switch (Kind) {
807   default: llvm_unreachable("Unknown kind!");
808   case 'K':
809     // F80HexFPConstant - x87 long double in hexadecimal format (10 bytes)
810     FP80HexToIntPair(TokStart+3, CurPtr, Pair);
811     APFloatVal = APFloat(APFloat::x87DoubleExtended, APInt(80, Pair));
812     return lltok::APFloat;
813   case 'L':
814     // F128HexFPConstant - IEEE 128-bit in hexadecimal format (16 bytes)
815     HexToIntPair(TokStart+3, CurPtr, Pair);
816     APFloatVal = APFloat(APFloat::IEEEquad, APInt(128, Pair));
817     return lltok::APFloat;
818   case 'M':
819     // PPC128HexFPConstant - PowerPC 128-bit in hexadecimal format (16 bytes)
820     HexToIntPair(TokStart+3, CurPtr, Pair);
821     APFloatVal = APFloat(APFloat::PPCDoubleDouble, APInt(128, Pair));
822     return lltok::APFloat;
823   case 'H':
824     APFloatVal = APFloat(APFloat::IEEEhalf,
825                          APInt(16,HexIntToVal(TokStart+3, CurPtr)));
826     return lltok::APFloat;
827   }
828 }
829
830 /// LexIdentifier: Handle several related productions:
831 ///    Label             [-a-zA-Z$._0-9]+:
832 ///    NInteger          -[0-9]+
833 ///    FPConstant        [-+]?[0-9]+[.][0-9]*([eE][-+]?[0-9]+)?
834 ///    PInteger          [0-9]+
835 ///    HexFPConstant     0x[0-9A-Fa-f]+
836 ///    HexFP80Constant   0xK[0-9A-Fa-f]+
837 ///    HexFP128Constant  0xL[0-9A-Fa-f]+
838 ///    HexPPC128Constant 0xM[0-9A-Fa-f]+
839 lltok::Kind LLLexer::LexDigitOrNegative() {
840   // If the letter after the negative is not a number, this is probably a label.
841   if (!isdigit(static_cast<unsigned char>(TokStart[0])) &&
842       !isdigit(static_cast<unsigned char>(CurPtr[0]))) {
843     // Okay, this is not a number after the -, it's probably a label.
844     if (const char *End = isLabelTail(CurPtr)) {
845       StrVal.assign(TokStart, End-1);
846       CurPtr = End;
847       return lltok::LabelStr;
848     }
849
850     return lltok::Error;
851   }
852
853   // At this point, it is either a label, int or fp constant.
854
855   // Skip digits, we have at least one.
856   for (; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr)
857     /*empty*/;
858
859   // Check to see if this really is a label afterall, e.g. "-1:".
860   if (isLabelChar(CurPtr[0]) || CurPtr[0] == ':') {
861     if (const char *End = isLabelTail(CurPtr)) {
862       StrVal.assign(TokStart, End-1);
863       CurPtr = End;
864       return lltok::LabelStr;
865     }
866   }
867
868   // If the next character is a '.', then it is a fp value, otherwise its
869   // integer.
870   if (CurPtr[0] != '.') {
871     if (TokStart[0] == '0' && TokStart[1] == 'x')
872       return Lex0x();
873     unsigned Len = CurPtr-TokStart;
874     uint32_t numBits = ((Len * 64) / 19) + 2;
875     APInt Tmp(numBits, StringRef(TokStart, Len), 10);
876     if (TokStart[0] == '-') {
877       uint32_t minBits = Tmp.getMinSignedBits();
878       if (minBits > 0 && minBits < numBits)
879         Tmp = Tmp.trunc(minBits);
880       APSIntVal = APSInt(Tmp, false);
881     } else {
882       uint32_t activeBits = Tmp.getActiveBits();
883       if (activeBits > 0 && activeBits < numBits)
884         Tmp = Tmp.trunc(activeBits);
885       APSIntVal = APSInt(Tmp, true);
886     }
887     return lltok::APSInt;
888   }
889
890   ++CurPtr;
891
892   // Skip over [0-9]*([eE][-+]?[0-9]+)?
893   while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr;
894
895   if (CurPtr[0] == 'e' || CurPtr[0] == 'E') {
896     if (isdigit(static_cast<unsigned char>(CurPtr[1])) ||
897         ((CurPtr[1] == '-' || CurPtr[1] == '+') &&
898           isdigit(static_cast<unsigned char>(CurPtr[2])))) {
899       CurPtr += 2;
900       while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr;
901     }
902   }
903
904   APFloatVal = APFloat(std::atof(TokStart));
905   return lltok::APFloat;
906 }
907
908 ///    FPConstant  [-+]?[0-9]+[.][0-9]*([eE][-+]?[0-9]+)?
909 lltok::Kind LLLexer::LexPositive() {
910   // If the letter after the negative is a number, this is probably not a
911   // label.
912   if (!isdigit(static_cast<unsigned char>(CurPtr[0])))
913     return lltok::Error;
914
915   // Skip digits.
916   for (++CurPtr; isdigit(static_cast<unsigned char>(CurPtr[0])); ++CurPtr)
917     /*empty*/;
918
919   // At this point, we need a '.'.
920   if (CurPtr[0] != '.') {
921     CurPtr = TokStart+1;
922     return lltok::Error;
923   }
924
925   ++CurPtr;
926
927   // Skip over [0-9]*([eE][-+]?[0-9]+)?
928   while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr;
929
930   if (CurPtr[0] == 'e' || CurPtr[0] == 'E') {
931     if (isdigit(static_cast<unsigned char>(CurPtr[1])) ||
932         ((CurPtr[1] == '-' || CurPtr[1] == '+') &&
933         isdigit(static_cast<unsigned char>(CurPtr[2])))) {
934       CurPtr += 2;
935       while (isdigit(static_cast<unsigned char>(CurPtr[0]))) ++CurPtr;
936     }
937   }
938
939   APFloatVal = APFloat(std::atof(TokStart));
940   return lltok::APFloat;
941 }