Down with trailing whitespace!
[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/DerivedTypes.h"
16 #include "llvm/Instruction.h"
17 #include "llvm/Support/MemoryBuffer.h"
18 #include "llvm/Support/MathExtras.h"
19 #include "llvm/Support/raw_ostream.h"
20 #include "llvm/Assembly/Parser.h"
21 #include <cstring>
22 #include <cstdlib>
23 using namespace llvm;
24
25 bool LLLexer::Error(LocTy ErrorLoc, const std::string &Msg) const {
26   // Scan backward to find the start of the line.
27   const char *LineStart = ErrorLoc;
28   while (LineStart != CurBuf->getBufferStart() &&
29          LineStart[-1] != '\n' && LineStart[-1] != '\r')
30     --LineStart;
31   // Get the end of the line.
32   const char *LineEnd = ErrorLoc;
33   while (LineEnd != CurBuf->getBufferEnd() &&
34          LineEnd[0] != '\n' && LineEnd[0] != '\r')
35     ++LineEnd;
36
37   unsigned LineNo = 1;
38   for (const char *FP = CurBuf->getBufferStart(); FP != ErrorLoc; ++FP)
39     if (*FP == '\n') ++LineNo;
40
41   std::string LineContents(LineStart, LineEnd);
42   ErrorInfo.setError(Msg, LineNo, ErrorLoc-LineStart, LineContents);
43   return true;
44 }
45
46 //===----------------------------------------------------------------------===//
47 // Helper functions.
48 //===----------------------------------------------------------------------===//
49
50 // atoull - Convert an ascii string of decimal digits into the unsigned long
51 // long representation... this does not have to do input error checking,
52 // because we know that the input will be matched by a suitable regex...
53 //
54 uint64_t LLLexer::atoull(const char *Buffer, const char *End) {
55   uint64_t Result = 0;
56   for (; Buffer != End; Buffer++) {
57     uint64_t OldRes = Result;
58     Result *= 10;
59     Result += *Buffer-'0';
60     if (Result < OldRes) {  // Uh, oh, overflow detected!!!
61       Error("constant bigger than 64 bits detected!");
62       return 0;
63     }
64   }
65   return Result;
66 }
67
68 uint64_t LLLexer::HexIntToVal(const char *Buffer, const char *End) {
69   uint64_t Result = 0;
70   for (; Buffer != End; ++Buffer) {
71     uint64_t OldRes = Result;
72     Result *= 16;
73     char C = *Buffer;
74     if (C >= '0' && C <= '9')
75       Result += C-'0';
76     else if (C >= 'A' && C <= 'F')
77       Result += C-'A'+10;
78     else if (C >= 'a' && C <= 'f')
79       Result += C-'a'+10;
80
81     if (Result < OldRes) {   // Uh, oh, overflow detected!!!
82       Error("constant bigger than 64 bits detected!");
83       return 0;
84     }
85   }
86   return Result;
87 }
88
89 void LLLexer::HexToIntPair(const char *Buffer, const char *End,
90                            uint64_t Pair[2]) {
91   Pair[0] = 0;
92   for (int i=0; i<16; i++, Buffer++) {
93     assert(Buffer != End);
94     Pair[0] *= 16;
95     char C = *Buffer;
96     if (C >= '0' && C <= '9')
97       Pair[0] += C-'0';
98     else if (C >= 'A' && C <= 'F')
99       Pair[0] += C-'A'+10;
100     else if (C >= 'a' && C <= 'f')
101       Pair[0] += C-'a'+10;
102   }
103   Pair[1] = 0;
104   for (int i=0; i<16 && Buffer != End; i++, Buffer++) {
105     Pair[1] *= 16;
106     char C = *Buffer;
107     if (C >= '0' && C <= '9')
108       Pair[1] += C-'0';
109     else if (C >= 'A' && C <= 'F')
110       Pair[1] += C-'A'+10;
111     else if (C >= 'a' && C <= 'f')
112       Pair[1] += C-'a'+10;
113   }
114   if (Buffer != End)
115     Error("constant bigger than 128 bits detected!");
116 }
117
118 // UnEscapeLexed - Run through the specified buffer and change \xx codes to the
119 // appropriate character.
120 static void UnEscapeLexed(std::string &Str) {
121   if (Str.empty()) return;
122
123   char *Buffer = &Str[0], *EndBuffer = Buffer+Str.size();
124   char *BOut = Buffer;
125   for (char *BIn = Buffer; BIn != EndBuffer; ) {
126     if (BIn[0] == '\\') {
127       if (BIn < EndBuffer-1 && BIn[1] == '\\') {
128         *BOut++ = '\\'; // Two \ becomes one
129         BIn += 2;
130       } else if (BIn < EndBuffer-2 && isxdigit(BIn[1]) && isxdigit(BIn[2])) {
131         char Tmp = BIn[3]; BIn[3] = 0;      // Terminate string
132         *BOut = (char)strtol(BIn+1, 0, 16); // Convert to number
133         BIn[3] = Tmp;                       // Restore character
134         BIn += 3;                           // Skip over handled chars
135         ++BOut;
136       } else {
137         *BOut++ = *BIn++;
138       }
139     } else {
140       *BOut++ = *BIn++;
141     }
142   }
143   Str.resize(BOut-Buffer);
144 }
145
146 /// isLabelChar - Return true for [-a-zA-Z$._0-9].
147 static bool isLabelChar(char C) {
148   return isalnum(C) || C == '-' || C == '$' || C == '.' || C == '_';
149 }
150
151
152 /// isLabelTail - Return true if this pointer points to a valid end of a label.
153 static const char *isLabelTail(const char *CurPtr) {
154   while (1) {
155     if (CurPtr[0] == ':') return CurPtr+1;
156     if (!isLabelChar(CurPtr[0])) return 0;
157     ++CurPtr;
158   }
159 }
160
161
162
163 //===----------------------------------------------------------------------===//
164 // Lexer definition.
165 //===----------------------------------------------------------------------===//
166
167 LLLexer::LLLexer(MemoryBuffer *StartBuf, ParseError &Err)
168   : CurBuf(StartBuf), ErrorInfo(Err), APFloatVal(0.0) {
169   CurPtr = CurBuf->getBufferStart();
170 }
171
172 std::string LLLexer::getFilename() const {
173   return CurBuf->getBufferIdentifier();
174 }
175
176 int LLLexer::getNextChar() {
177   char CurChar = *CurPtr++;
178   switch (CurChar) {
179   default: return (unsigned char)CurChar;
180   case 0:
181     // A nul character in the stream is either the end of the current buffer or
182     // a random nul in the file.  Disambiguate that here.
183     if (CurPtr-1 != CurBuf->getBufferEnd())
184       return 0;  // Just whitespace.
185
186     // Otherwise, return end of file.
187     --CurPtr;  // Another call to lex will return EOF again.
188     return EOF;
189   }
190 }
191
192
193 lltok::Kind LLLexer::LexToken() {
194   TokStart = CurPtr;
195
196   int CurChar = getNextChar();
197   switch (CurChar) {
198   default:
199     // Handle letters: [a-zA-Z_]
200     if (isalpha(CurChar) || CurChar == '_')
201       return LexIdentifier();
202
203     return lltok::Error;
204   case EOF: return lltok::Eof;
205   case 0:
206   case ' ':
207   case '\t':
208   case '\n':
209   case '\r':
210     // Ignore whitespace.
211     return LexToken();
212   case '+': return LexPositive();
213   case '@': return LexAt();
214   case '%': return LexPercent();
215   case '"': return LexQuote();
216   case '.':
217     if (const char *Ptr = isLabelTail(CurPtr)) {
218       CurPtr = Ptr;
219       StrVal.assign(TokStart, CurPtr-1);
220       return lltok::LabelStr;
221     }
222     if (CurPtr[0] == '.' && CurPtr[1] == '.') {
223       CurPtr += 2;
224       return lltok::dotdotdot;
225     }
226     return lltok::Error;
227   case '$':
228     if (const char *Ptr = isLabelTail(CurPtr)) {
229       CurPtr = Ptr;
230       StrVal.assign(TokStart, CurPtr-1);
231       return lltok::LabelStr;
232     }
233     return lltok::Error;
234   case ';':
235     SkipLineComment();
236     return LexToken();
237   case '0': case '1': case '2': case '3': case '4':
238   case '5': case '6': case '7': case '8': case '9':
239   case '-':
240     return LexDigitOrNegative();
241   case '=': return lltok::equal;
242   case '[': return lltok::lsquare;
243   case ']': return lltok::rsquare;
244   case '{': return lltok::lbrace;
245   case '}': return lltok::rbrace;
246   case '<': return lltok::less;
247   case '>': return lltok::greater;
248   case '(': return lltok::lparen;
249   case ')': return lltok::rparen;
250   case ',': return lltok::comma;
251   case '*': return lltok::star;
252   case '\\': return lltok::backslash;
253   }
254 }
255
256 void LLLexer::SkipLineComment() {
257   while (1) {
258     if (CurPtr[0] == '\n' || CurPtr[0] == '\r' || getNextChar() == EOF)
259       return;
260   }
261 }
262
263 /// LexAt - Lex all tokens that start with an @ character:
264 ///   GlobalVar   @\"[^\"]*\"
265 ///   GlobalVar   @[-a-zA-Z$._][-a-zA-Z$._0-9]*
266 ///   GlobalVarID @[0-9]+
267 lltok::Kind LLLexer::LexAt() {
268   // Handle AtStringConstant: @\"[^\"]*\"
269   if (CurPtr[0] == '"') {
270     ++CurPtr;
271
272     while (1) {
273       int CurChar = getNextChar();
274
275       if (CurChar == EOF) {
276         Error("end of file in global variable name");
277         return lltok::Error;
278       }
279       if (CurChar == '"') {
280         StrVal.assign(TokStart+2, CurPtr-1);
281         UnEscapeLexed(StrVal);
282         return lltok::GlobalVar;
283       }
284     }
285   }
286
287   // Handle GlobalVarName: @[-a-zA-Z$._][-a-zA-Z$._0-9]*
288   if (isalpha(CurPtr[0]) || CurPtr[0] == '-' || CurPtr[0] == '$' ||
289       CurPtr[0] == '.' || CurPtr[0] == '_') {
290     ++CurPtr;
291     while (isalnum(CurPtr[0]) || CurPtr[0] == '-' || CurPtr[0] == '$' ||
292            CurPtr[0] == '.' || CurPtr[0] == '_')
293       ++CurPtr;
294
295     StrVal.assign(TokStart+1, CurPtr);   // Skip @
296     return lltok::GlobalVar;
297   }
298
299   // Handle GlobalVarID: @[0-9]+
300   if (isdigit(CurPtr[0])) {
301     for (++CurPtr; isdigit(CurPtr[0]); ++CurPtr)
302       /*empty*/;
303
304     uint64_t Val = atoull(TokStart+1, CurPtr);
305     if ((unsigned)Val != Val)
306       Error("invalid value number (too large)!");
307     UIntVal = unsigned(Val);
308     return lltok::GlobalID;
309   }
310
311   return lltok::Error;
312 }
313
314
315 /// LexPercent - Lex all tokens that start with a % character:
316 ///   LocalVar   ::= %\"[^\"]*\"
317 ///   LocalVar   ::= %[-a-zA-Z$._][-a-zA-Z$._0-9]*
318 ///   LocalVarID ::= %[0-9]+
319 lltok::Kind LLLexer::LexPercent() {
320   // Handle LocalVarName: %\"[^\"]*\"
321   if (CurPtr[0] == '"') {
322     ++CurPtr;
323
324     while (1) {
325       int CurChar = getNextChar();
326
327       if (CurChar == EOF) {
328         Error("end of file in string constant");
329         return lltok::Error;
330       }
331       if (CurChar == '"') {
332         StrVal.assign(TokStart+2, CurPtr-1);
333         UnEscapeLexed(StrVal);
334         return lltok::LocalVar;
335       }
336     }
337   }
338
339   // Handle LocalVarName: %[-a-zA-Z$._][-a-zA-Z$._0-9]*
340   if (isalpha(CurPtr[0]) || CurPtr[0] == '-' || CurPtr[0] == '$' ||
341       CurPtr[0] == '.' || CurPtr[0] == '_') {
342     ++CurPtr;
343     while (isalnum(CurPtr[0]) || CurPtr[0] == '-' || CurPtr[0] == '$' ||
344            CurPtr[0] == '.' || CurPtr[0] == '_')
345       ++CurPtr;
346
347     StrVal.assign(TokStart+1, CurPtr);   // Skip %
348     return lltok::LocalVar;
349   }
350
351   // Handle LocalVarID: %[0-9]+
352   if (isdigit(CurPtr[0])) {
353     for (++CurPtr; isdigit(CurPtr[0]); ++CurPtr)
354       /*empty*/;
355
356     uint64_t Val = atoull(TokStart+1, CurPtr);
357     if ((unsigned)Val != Val)
358       Error("invalid value number (too large)!");
359     UIntVal = unsigned(Val);
360     return lltok::LocalVarID;
361   }
362
363   return lltok::Error;
364 }
365
366 /// LexQuote - Lex all tokens that start with a " character:
367 ///   QuoteLabel        "[^"]+":
368 ///   StringConstant    "[^"]*"
369 lltok::Kind LLLexer::LexQuote() {
370   while (1) {
371     int CurChar = getNextChar();
372
373     if (CurChar == EOF) {
374       Error("end of file in quoted string");
375       return lltok::Error;
376     }
377
378     if (CurChar != '"') continue;
379
380     if (CurPtr[0] != ':') {
381       StrVal.assign(TokStart+1, CurPtr-1);
382       UnEscapeLexed(StrVal);
383       return lltok::StringConstant;
384     }
385
386     ++CurPtr;
387     StrVal.assign(TokStart+1, CurPtr-2);
388     UnEscapeLexed(StrVal);
389     return lltok::LabelStr;
390   }
391 }
392
393 static bool JustWhitespaceNewLine(const char *&Ptr) {
394   const char *ThisPtr = Ptr;
395   while (*ThisPtr == ' ' || *ThisPtr == '\t')
396     ++ThisPtr;
397   if (*ThisPtr == '\n' || *ThisPtr == '\r') {
398     Ptr = ThisPtr;
399     return true;
400   }
401   return false;
402 }
403
404
405 /// LexIdentifier: Handle several related productions:
406 ///    Label           [-a-zA-Z$._0-9]+:
407 ///    IntegerType     i[0-9]+
408 ///    Keyword         sdiv, float, ...
409 ///    HexIntConstant  [us]0x[0-9A-Fa-f]+
410 lltok::Kind LLLexer::LexIdentifier() {
411   const char *StartChar = CurPtr;
412   const char *IntEnd = CurPtr[-1] == 'i' ? 0 : StartChar;
413   const char *KeywordEnd = 0;
414
415   for (; isLabelChar(*CurPtr); ++CurPtr) {
416     // If we decide this is an integer, remember the end of the sequence.
417     if (!IntEnd && !isdigit(*CurPtr)) IntEnd = CurPtr;
418     if (!KeywordEnd && !isalnum(*CurPtr) && *CurPtr != '_') KeywordEnd = CurPtr;
419   }
420
421   // If we stopped due to a colon, this really is a label.
422   if (*CurPtr == ':') {
423     StrVal.assign(StartChar-1, CurPtr++);
424     return lltok::LabelStr;
425   }
426
427   // Otherwise, this wasn't a label.  If this was valid as an integer type,
428   // return it.
429   if (IntEnd == 0) IntEnd = CurPtr;
430   if (IntEnd != StartChar) {
431     CurPtr = IntEnd;
432     uint64_t NumBits = atoull(StartChar, CurPtr);
433     if (NumBits < IntegerType::MIN_INT_BITS ||
434         NumBits > IntegerType::MAX_INT_BITS) {
435       Error("bitwidth for integer type out of range!");
436       return lltok::Error;
437     }
438     TyVal = IntegerType::get(NumBits);
439     return lltok::Type;
440   }
441
442   // Otherwise, this was a letter sequence.  See which keyword this is.
443   if (KeywordEnd == 0) KeywordEnd = CurPtr;
444   CurPtr = KeywordEnd;
445   --StartChar;
446   unsigned Len = CurPtr-StartChar;
447 #define KEYWORD(STR) \
448   if (Len == strlen(#STR) && !memcmp(StartChar, #STR, strlen(#STR))) \
449     return lltok::kw_##STR;
450
451   KEYWORD(begin);   KEYWORD(end);
452   KEYWORD(true);    KEYWORD(false);
453   KEYWORD(declare); KEYWORD(define);
454   KEYWORD(global);  KEYWORD(constant);
455
456   KEYWORD(internal);
457   KEYWORD(linkonce);
458   KEYWORD(weak);
459   KEYWORD(appending);
460   KEYWORD(dllimport);
461   KEYWORD(dllexport);
462   KEYWORD(common);
463   KEYWORD(default);
464   KEYWORD(hidden);
465   KEYWORD(protected);
466   KEYWORD(extern_weak);
467   KEYWORD(external);
468   KEYWORD(thread_local);
469   KEYWORD(zeroinitializer);
470   KEYWORD(undef);
471   KEYWORD(null);
472   KEYWORD(to);
473   KEYWORD(tail);
474   KEYWORD(target);
475   KEYWORD(triple);
476   KEYWORD(deplibs);
477   KEYWORD(datalayout);
478   KEYWORD(volatile);
479   KEYWORD(align);
480   KEYWORD(addrspace);
481   KEYWORD(section);
482   KEYWORD(alias);
483   KEYWORD(module);
484   KEYWORD(asm);
485   KEYWORD(sideeffect);
486   KEYWORD(gc);
487
488   KEYWORD(ccc);
489   KEYWORD(fastcc);
490   KEYWORD(coldcc);
491   KEYWORD(x86_stdcallcc);
492   KEYWORD(x86_fastcallcc);
493   KEYWORD(cc);
494   KEYWORD(c);
495
496   KEYWORD(signext);
497   KEYWORD(zeroext);
498   KEYWORD(inreg);
499   KEYWORD(sret);
500   KEYWORD(nounwind);
501   KEYWORD(noreturn);
502   KEYWORD(noalias);
503   KEYWORD(nocapture);
504   KEYWORD(byval);
505   KEYWORD(nest);
506   KEYWORD(readnone);
507   KEYWORD(readonly);
508
509   KEYWORD(noinline);
510   KEYWORD(alwaysinline);
511   KEYWORD(optsize);
512   KEYWORD(ssp);
513   KEYWORD(sspreq);
514
515   KEYWORD(type);
516   KEYWORD(opaque);
517
518   KEYWORD(eq); KEYWORD(ne); KEYWORD(slt); KEYWORD(sgt); KEYWORD(sle);
519   KEYWORD(sge); KEYWORD(ult); KEYWORD(ugt); KEYWORD(ule); KEYWORD(uge);
520   KEYWORD(oeq); KEYWORD(one); KEYWORD(olt); KEYWORD(ogt); KEYWORD(ole);
521   KEYWORD(oge); KEYWORD(ord); KEYWORD(uno); KEYWORD(ueq); KEYWORD(une);
522
523   KEYWORD(x);
524 #undef KEYWORD
525
526   // Keywords for types.
527 #define TYPEKEYWORD(STR, LLVMTY) \
528   if (Len == strlen(STR) && !memcmp(StartChar, STR, strlen(STR))) { \
529     TyVal = LLVMTY; return lltok::Type; }
530   TYPEKEYWORD("void",      Type::VoidTy);
531   TYPEKEYWORD("float",     Type::FloatTy);
532   TYPEKEYWORD("double",    Type::DoubleTy);
533   TYPEKEYWORD("x86_fp80",  Type::X86_FP80Ty);
534   TYPEKEYWORD("fp128",     Type::FP128Ty);
535   TYPEKEYWORD("ppc_fp128", Type::PPC_FP128Ty);
536   TYPEKEYWORD("label",     Type::LabelTy);
537 #undef TYPEKEYWORD
538
539   // Handle special forms for autoupgrading.  Drop these in LLVM 3.0.  This is
540   // to avoid conflicting with the sext/zext instructions, below.
541   if (Len == 4 && !memcmp(StartChar, "sext", 4)) {
542     // Scan CurPtr ahead, seeing if there is just whitespace before the newline.
543     if (JustWhitespaceNewLine(CurPtr))
544       return lltok::kw_signext;
545   } else if (Len == 4 && !memcmp(StartChar, "zext", 4)) {
546     // Scan CurPtr ahead, seeing if there is just whitespace before the newline.
547     if (JustWhitespaceNewLine(CurPtr))
548       return lltok::kw_zeroext;
549   }
550
551   // Keywords for instructions.
552 #define INSTKEYWORD(STR, Enum) \
553   if (Len == strlen(#STR) && !memcmp(StartChar, #STR, strlen(#STR))) { \
554     UIntVal = Instruction::Enum; return lltok::kw_##STR; }
555
556   INSTKEYWORD(add,   Add);  INSTKEYWORD(sub,   Sub);  INSTKEYWORD(mul,   Mul);
557   INSTKEYWORD(udiv,  UDiv); INSTKEYWORD(sdiv,  SDiv); INSTKEYWORD(fdiv,  FDiv);
558   INSTKEYWORD(urem,  URem); INSTKEYWORD(srem,  SRem); INSTKEYWORD(frem,  FRem);
559   INSTKEYWORD(shl,   Shl);  INSTKEYWORD(lshr,  LShr); INSTKEYWORD(ashr,  AShr);
560   INSTKEYWORD(and,   And);  INSTKEYWORD(or,    Or);   INSTKEYWORD(xor,   Xor);
561   INSTKEYWORD(icmp,  ICmp); INSTKEYWORD(fcmp,  FCmp);
562   INSTKEYWORD(vicmp, VICmp); INSTKEYWORD(vfcmp, VFCmp);
563
564   INSTKEYWORD(phi,         PHI);
565   INSTKEYWORD(call,        Call);
566   INSTKEYWORD(trunc,       Trunc);
567   INSTKEYWORD(zext,        ZExt);
568   INSTKEYWORD(sext,        SExt);
569   INSTKEYWORD(fptrunc,     FPTrunc);
570   INSTKEYWORD(fpext,       FPExt);
571   INSTKEYWORD(uitofp,      UIToFP);
572   INSTKEYWORD(sitofp,      SIToFP);
573   INSTKEYWORD(fptoui,      FPToUI);
574   INSTKEYWORD(fptosi,      FPToSI);
575   INSTKEYWORD(inttoptr,    IntToPtr);
576   INSTKEYWORD(ptrtoint,    PtrToInt);
577   INSTKEYWORD(bitcast,     BitCast);
578   INSTKEYWORD(select,      Select);
579   INSTKEYWORD(va_arg,      VAArg);
580   INSTKEYWORD(ret,         Ret);
581   INSTKEYWORD(br,          Br);
582   INSTKEYWORD(switch,      Switch);
583   INSTKEYWORD(invoke,      Invoke);
584   INSTKEYWORD(unwind,      Unwind);
585   INSTKEYWORD(unreachable, Unreachable);
586
587   INSTKEYWORD(malloc,      Malloc);
588   INSTKEYWORD(alloca,      Alloca);
589   INSTKEYWORD(free,        Free);
590   INSTKEYWORD(load,        Load);
591   INSTKEYWORD(store,       Store);
592   INSTKEYWORD(getelementptr, GetElementPtr);
593
594   INSTKEYWORD(extractelement, ExtractElement);
595   INSTKEYWORD(insertelement,  InsertElement);
596   INSTKEYWORD(shufflevector,  ShuffleVector);
597   INSTKEYWORD(getresult,      ExtractValue);
598   INSTKEYWORD(extractvalue,   ExtractValue);
599   INSTKEYWORD(insertvalue,    InsertValue);
600 #undef INSTKEYWORD
601
602   // Check for [us]0x[0-9A-Fa-f]+ which are Hexadecimal constant generated by
603   // the CFE to avoid forcing it to deal with 64-bit numbers.
604   if ((TokStart[0] == 'u' || TokStart[0] == 's') &&
605       TokStart[1] == '0' && TokStart[2] == 'x' && isxdigit(TokStart[3])) {
606     int len = CurPtr-TokStart-3;
607     uint32_t bits = len * 4;
608     APInt Tmp(bits, TokStart+3, len, 16);
609     uint32_t activeBits = Tmp.getActiveBits();
610     if (activeBits > 0 && activeBits < bits)
611       Tmp.trunc(activeBits);
612     APSIntVal = APSInt(Tmp, TokStart[0] == 'u');
613     return lltok::APSInt;
614   }
615
616   // If this is "cc1234", return this as just "cc".
617   if (TokStart[0] == 'c' && TokStart[1] == 'c') {
618     CurPtr = TokStart+2;
619     return lltok::kw_cc;
620   }
621
622   // If this starts with "call", return it as CALL.  This is to support old
623   // broken .ll files.  FIXME: remove this with LLVM 3.0.
624   if (CurPtr-TokStart > 4 && !memcmp(TokStart, "call", 4)) {
625     CurPtr = TokStart+4;
626     UIntVal = Instruction::Call;
627     return lltok::kw_call;
628   }
629
630   // Finally, if this isn't known, return an error.
631   CurPtr = TokStart+1;
632   return lltok::Error;
633 }
634
635
636 /// Lex0x: Handle productions that start with 0x, knowing that it matches and
637 /// that this is not a label:
638 ///    HexFPConstant     0x[0-9A-Fa-f]+
639 ///    HexFP80Constant   0xK[0-9A-Fa-f]+
640 ///    HexFP128Constant  0xL[0-9A-Fa-f]+
641 ///    HexPPC128Constant 0xM[0-9A-Fa-f]+
642 lltok::Kind LLLexer::Lex0x() {
643   CurPtr = TokStart + 2;
644
645   char Kind;
646   if (CurPtr[0] >= 'K' && CurPtr[0] <= 'M') {
647     Kind = *CurPtr++;
648   } else {
649     Kind = 'J';
650   }
651
652   if (!isxdigit(CurPtr[0])) {
653     // Bad token, return it as an error.
654     CurPtr = TokStart+1;
655     return lltok::Error;
656   }
657
658   while (isxdigit(CurPtr[0]))
659     ++CurPtr;
660
661   if (Kind == 'J') {
662     // HexFPConstant - Floating point constant represented in IEEE format as a
663     // hexadecimal number for when exponential notation is not precise enough.
664     // Float and double only.
665     APFloatVal = APFloat(BitsToDouble(HexIntToVal(TokStart+2, CurPtr)));
666     return lltok::APFloat;
667   }
668
669   uint64_t Pair[2];
670   HexToIntPair(TokStart+3, CurPtr, Pair);
671   switch (Kind) {
672   default: assert(0 && "Unknown kind!");
673   case 'K':
674     // F80HexFPConstant - x87 long double in hexadecimal format (10 bytes)
675     APFloatVal = APFloat(APInt(80, 2, Pair));
676     return lltok::APFloat;
677   case 'L':
678     // F128HexFPConstant - IEEE 128-bit in hexadecimal format (16 bytes)
679     APFloatVal = APFloat(APInt(128, 2, Pair), true);
680     return lltok::APFloat;
681   case 'M':
682     // PPC128HexFPConstant - PowerPC 128-bit in hexadecimal format (16 bytes)
683     APFloatVal = APFloat(APInt(128, 2, Pair));
684     return lltok::APFloat;
685   }
686 }
687
688 /// LexIdentifier: Handle several related productions:
689 ///    Label             [-a-zA-Z$._0-9]+:
690 ///    NInteger          -[0-9]+
691 ///    FPConstant        [-+]?[0-9]+[.][0-9]*([eE][-+]?[0-9]+)?
692 ///    PInteger          [0-9]+
693 ///    HexFPConstant     0x[0-9A-Fa-f]+
694 ///    HexFP80Constant   0xK[0-9A-Fa-f]+
695 ///    HexFP128Constant  0xL[0-9A-Fa-f]+
696 ///    HexPPC128Constant 0xM[0-9A-Fa-f]+
697 lltok::Kind LLLexer::LexDigitOrNegative() {
698   // If the letter after the negative is a number, this is probably a label.
699   if (!isdigit(TokStart[0]) && !isdigit(CurPtr[0])) {
700     // Okay, this is not a number after the -, it's probably a label.
701     if (const char *End = isLabelTail(CurPtr)) {
702       StrVal.assign(TokStart, End-1);
703       CurPtr = End;
704       return lltok::LabelStr;
705     }
706
707     return lltok::Error;
708   }
709
710   // At this point, it is either a label, int or fp constant.
711
712   // Skip digits, we have at least one.
713   for (; isdigit(CurPtr[0]); ++CurPtr)
714     /*empty*/;
715
716   // Check to see if this really is a label afterall, e.g. "-1:".
717   if (isLabelChar(CurPtr[0]) || CurPtr[0] == ':') {
718     if (const char *End = isLabelTail(CurPtr)) {
719       StrVal.assign(TokStart, End-1);
720       CurPtr = End;
721       return lltok::LabelStr;
722     }
723   }
724
725   // If the next character is a '.', then it is a fp value, otherwise its
726   // integer.
727   if (CurPtr[0] != '.') {
728     if (TokStart[0] == '0' && TokStart[1] == 'x')
729       return Lex0x();
730     unsigned Len = CurPtr-TokStart;
731     uint32_t numBits = ((Len * 64) / 19) + 2;
732     APInt Tmp(numBits, TokStart, Len, 10);
733     if (TokStart[0] == '-') {
734       uint32_t minBits = Tmp.getMinSignedBits();
735       if (minBits > 0 && minBits < numBits)
736         Tmp.trunc(minBits);
737       APSIntVal = APSInt(Tmp, false);
738     } else {
739       uint32_t activeBits = Tmp.getActiveBits();
740       if (activeBits > 0 && activeBits < numBits)
741         Tmp.trunc(activeBits);
742       APSIntVal = APSInt(Tmp, true);
743     }
744     return lltok::APSInt;
745   }
746
747   ++CurPtr;
748
749   // Skip over [0-9]*([eE][-+]?[0-9]+)?
750   while (isdigit(CurPtr[0])) ++CurPtr;
751
752   if (CurPtr[0] == 'e' || CurPtr[0] == 'E') {
753     if (isdigit(CurPtr[1]) ||
754         ((CurPtr[1] == '-' || CurPtr[1] == '+') && isdigit(CurPtr[2]))) {
755       CurPtr += 2;
756       while (isdigit(CurPtr[0])) ++CurPtr;
757     }
758   }
759
760   APFloatVal = APFloat(atof(TokStart));
761   return lltok::APFloat;
762 }
763
764 ///    FPConstant  [-+]?[0-9]+[.][0-9]*([eE][-+]?[0-9]+)?
765 lltok::Kind LLLexer::LexPositive() {
766   // If the letter after the negative is a number, this is probably not a
767   // label.
768   if (!isdigit(CurPtr[0]))
769     return lltok::Error;
770
771   // Skip digits.
772   for (++CurPtr; isdigit(CurPtr[0]); ++CurPtr)
773     /*empty*/;
774
775   // At this point, we need a '.'.
776   if (CurPtr[0] != '.') {
777     CurPtr = TokStart+1;
778     return lltok::Error;
779   }
780
781   ++CurPtr;
782
783   // Skip over [0-9]*([eE][-+]?[0-9]+)?
784   while (isdigit(CurPtr[0])) ++CurPtr;
785
786   if (CurPtr[0] == 'e' || CurPtr[0] == 'E') {
787     if (isdigit(CurPtr[1]) ||
788         ((CurPtr[1] == '-' || CurPtr[1] == '+') && isdigit(CurPtr[2]))) {
789       CurPtr += 2;
790       while (isdigit(CurPtr[0])) ++CurPtr;
791     }
792   }
793
794   APFloatVal = APFloat(atof(TokStart));
795   return lltok::APFloat;
796 }