8992cdc63ded2399e81bf780e22945092c3113d0
[oota-llvm.git] / lib / AsmParser / Lexer.l
1 /*===-- Lexer.l - Scanner for llvm assembly files ----------------*- C++ -*--=//
2 //
3 //  This file implements the flex scanner for LLVM assembly languages files.
4 //
5 //===------------------------------------------------------------------------=*/
6
7 %option prefix="llvmAsm"
8 %option yylineno
9 %option nostdinit
10 %option never-interactive
11 %option batch
12 %option noyywrap
13 %option nodefault
14 %option 8bit
15 %option outfile="Lexer.cpp"
16 %option ecs
17 %option noreject
18 %option noyymore
19
20 %{
21 #include "ParserInternals.h"
22 #include "llvm/BasicBlock.h"
23 #include "llvm/Method.h"
24 #include "llvm/Module.h"
25 #include <list>
26 #include "llvmAsmParser.h"
27 #include <ctype.h>
28 #include <stdlib.h>
29
30 #define RET_TOK(type, Enum, sym) \
31   llvmAsmlval.type = Instruction::Enum; return sym
32
33
34 // TODO: All of the static identifiers are figured out by the lexer, 
35 // these should be hashed to reduce the lexer size
36
37
38 // atoull - Convert an ascii string of decimal digits into the unsigned long
39 // long representation... this does not have to do input error checking, 
40 // because we know that the input will be matched by a suitable regex...
41 //
42 uint64_t atoull(const char *Buffer) {
43   uint64_t Result = 0;
44   for (; *Buffer; Buffer++) {
45     uint64_t OldRes = Result;
46     Result *= 10;
47     Result += *Buffer-'0';
48     if (Result < OldRes) {  // Uh, oh, overflow detected!!!
49       ThrowException("constant bigger than 64 bits detected!");
50     }
51   }
52   return Result;
53 }
54
55
56 // UnEscapeLexed - Run through the specified buffer and change \xx codes to the
57 // appropriate character.  If AllowNull is set to false, a \00 value will cause
58 // an exception to be thrown.
59 //
60 // If AllowNull is set to true, the return value of the function points to the
61 // last character of the string in memory.
62 //
63 char *UnEscapeLexed(char *Buffer, bool AllowNull = false) {
64   char *BOut = Buffer;
65   for (char *BIn = Buffer; *BIn; ) {
66     if (BIn[0] == '\\' && isxdigit(BIn[1]) && isxdigit(BIn[2])) {
67       char Tmp = BIn[3]; BIn[3] = 0;     // Terminate string
68       *BOut = strtol(BIn+1, 0, 16);  // Convert to number
69       if (!AllowNull && !*BOut)
70         ThrowException("String literal cannot accept \\00 escape!");
71       
72       BIn[3] = Tmp;                  // Restore character
73       BIn += 3;                      // Skip over handled chars
74       ++BOut;
75     } else {
76       *BOut++ = *BIn++;
77     }
78   }
79
80   return BOut;
81 }
82
83 #define YY_NEVER_INTERACTIVE 1
84 %}
85
86
87
88 /* Comments start with a ; and go till end of line */
89 Comment    ;.*
90
91 /* Variable(Value) identifiers start with a % sign */
92 VarID       %[-a-zA-Z$._][-a-zA-Z$._0-9]*
93
94 /* Label identifiers end with a colon */
95 Label       [-a-zA-Z$._0-9]+:
96
97 /* Quoted names can contain any character except " and \ */
98 StringConstant \"[^\"]+\"
99
100
101 /* [PN]Integer: match positive and negative literal integer values that
102  * are preceeded by a '%' character.  These represent unnamed variable slots.
103  */
104 EPInteger     %[0-9]+
105 ENInteger    %-[0-9]+
106
107
108 /* E[PN]Integer: match positive and negative literal integer values */
109 PInteger   [0-9]+
110 NInteger  -[0-9]+
111
112 /* FPConstant - A Floating point constant.
113    TODO: Expand lexer to support 10e50 FP constant notation */
114 FPConstant [-+]?[0-9]+[.][0-9]*([eE][-+]?[0-9]+)?
115
116 %%
117
118 {Comment}       { /* Ignore comments for now */ }
119
120 begin           { return BEGINTOK; }
121 end             { return END; }
122 true            { return TRUE;  }
123 false           { return FALSE; }
124 declare         { return DECLARE; }
125 global          { return GLOBAL; }
126 constant        { return CONSTANT; }
127 const           { return CONST; }
128 internal        { return INTERNAL; }
129 uninitialized   { return UNINIT; }
130 implementation  { return IMPLEMENTATION; }
131 \.\.\.          { return DOTDOTDOT; }
132 string          { return STRING; }
133 null            { return NULL_TOK; }
134 to              { return TO; }
135 except          { return EXCEPT; }
136
137 void            { llvmAsmlval.PrimType = Type::VoidTy  ; return VOID;   }
138 bool            { llvmAsmlval.PrimType = Type::BoolTy  ; return BOOL;   }
139 sbyte           { llvmAsmlval.PrimType = Type::SByteTy ; return SBYTE;  }
140 ubyte           { llvmAsmlval.PrimType = Type::UByteTy ; return UBYTE;  }
141 short           { llvmAsmlval.PrimType = Type::ShortTy ; return SHORT;  }
142 ushort          { llvmAsmlval.PrimType = Type::UShortTy; return USHORT; }
143 int             { llvmAsmlval.PrimType = Type::IntTy   ; return INT;    }
144 uint            { llvmAsmlval.PrimType = Type::UIntTy  ; return UINT;   }
145 long            { llvmAsmlval.PrimType = Type::LongTy  ; return LONG;   }
146 ulong           { llvmAsmlval.PrimType = Type::ULongTy ; return ULONG;  }
147 float           { llvmAsmlval.PrimType = Type::FloatTy ; return FLOAT;  }
148 double          { llvmAsmlval.PrimType = Type::DoubleTy; return DOUBLE; }
149 type            { llvmAsmlval.PrimType = Type::TypeTy  ; return TYPE;   }
150 label           { llvmAsmlval.PrimType = Type::LabelTy ; return LABEL;  }
151 opaque          { return OPAQUE; }
152
153
154 not             { RET_TOK(UnaryOpVal, Not, NOT); }
155
156 add             { RET_TOK(BinaryOpVal, Add, ADD); }
157 sub             { RET_TOK(BinaryOpVal, Sub, SUB); }
158 mul             { RET_TOK(BinaryOpVal, Mul, MUL); }
159 div             { RET_TOK(BinaryOpVal, Div, DIV); }
160 rem             { RET_TOK(BinaryOpVal, Rem, REM); }
161 and             { RET_TOK(BinaryOpVal, And, AND); }
162 or              { RET_TOK(BinaryOpVal, Or , OR ); }
163 xor             { RET_TOK(BinaryOpVal, Xor, XOR); }
164 setne           { RET_TOK(BinaryOpVal, SetNE, SETNE); }
165 seteq           { RET_TOK(BinaryOpVal, SetEQ, SETEQ); }
166 setlt           { RET_TOK(BinaryOpVal, SetLT, SETLT); }
167 setgt           { RET_TOK(BinaryOpVal, SetGT, SETGT); }
168 setle           { RET_TOK(BinaryOpVal, SetLE, SETLE); }
169 setge           { RET_TOK(BinaryOpVal, SetGE, SETGE); }
170
171 phi             { RET_TOK(OtherOpVal, PHINode, PHI); }
172 call            { RET_TOK(OtherOpVal, Call, CALL); }
173 cast            { RET_TOK(OtherOpVal, Cast, CAST); }
174 shl             { RET_TOK(OtherOpVal, Shl, SHL); }
175 shr             { RET_TOK(OtherOpVal, Shr, SHR); }
176
177 ret             { RET_TOK(TermOpVal, Ret, RET); }
178 br              { RET_TOK(TermOpVal, Br, BR); }
179 switch          { RET_TOK(TermOpVal, Switch, SWITCH); }
180 invoke          { RET_TOK(TermOpVal, Invoke, INVOKE); }
181
182
183 malloc          { RET_TOK(MemOpVal, Malloc, MALLOC); }
184 alloca          { RET_TOK(MemOpVal, Alloca, ALLOCA); }
185 free            { RET_TOK(MemOpVal, Free, FREE); }
186 load            { RET_TOK(MemOpVal, Load, LOAD); }
187 store           { RET_TOK(MemOpVal, Store, STORE); }
188 getelementptr   { RET_TOK(MemOpVal, GetElementPtr, GETELEMENTPTR); }
189
190
191 {VarID}         {
192                   UnEscapeLexed(yytext+1);
193                   llvmAsmlval.StrVal = strdup(yytext+1);             // Skip %
194                   return VAR_ID; 
195                 }
196 {Label}         {
197                   yytext[strlen(yytext)-1] = 0;  // nuke colon
198                   UnEscapeLexed(yytext);
199                   llvmAsmlval.StrVal = strdup(yytext);
200                   return LABELSTR; 
201                 }
202
203 {StringConstant} { // Note that we cannot unescape a string constant here!  The
204                    // string constant might contain a \00 which would not be 
205                    // understood by the string stuff.  It is valid to make a
206                    // [sbyte] c"Hello World\00" constant, for example.
207                    //
208                   yytext[strlen(yytext)-1] = 0;           // nuke end quote
209                   llvmAsmlval.StrVal = strdup(yytext+1);  // Nuke start quote
210                   return STRINGCONSTANT;
211                  }
212
213
214 {PInteger}      { llvmAsmlval.UInt64Val = atoull(yytext); return EUINT64VAL; }
215 {NInteger}      { 
216                   uint64_t Val = atoull(yytext+1);
217                   // +1:  we have bigger negative range
218                   if (Val > (uint64_t)INT64_MAX+1)
219                     ThrowException("Constant too large for signed 64 bits!");
220                   llvmAsmlval.SInt64Val = -Val; 
221                   return ESINT64VAL; 
222                 }
223
224
225 {EPInteger}     { llvmAsmlval.UIntVal = atoull(yytext+1); return UINTVAL; }
226 {ENInteger}     {
227                   uint64_t Val = atoull(yytext+2);
228                   // +1:  we have bigger negative range
229                   if (Val > (uint64_t)INT32_MAX+1)
230                     ThrowException("Constant too large for signed 32 bits!");
231                   llvmAsmlval.SIntVal = -Val;
232                   return SINTVAL;
233                 }
234
235 {FPConstant}    { llvmAsmlval.FPVal = atof(yytext); return FPVAL; }
236
237 [ \t\n]         { /* Ignore whitespace */ }
238 .               { return yytext[0]; }
239
240 %%