blob: f2757c45dbde4b21eedb4fe45c08ab0803fbe322 [file] [log] [blame]
Reid Spencer96839be2006-11-30 16:50:26 +00001/*===-- UpgradeLexer.l - Scanner for 1.9 assembly files --------*- C++ -*--===//
Reid Spencere7c3c602006-11-30 06:36:44 +00002//
3// The LLVM Compiler Infrastructure
4//
Reid Spencer96839be2006-11-30 16:50:26 +00005// This file was developed by Reid Spencer and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
Reid Spencere7c3c602006-11-30 06:36:44 +00007//
8//===----------------------------------------------------------------------===//
9//
Reid Spencer96839be2006-11-30 16:50:26 +000010// This file implements the flex scanner for LLVM 1.9 assembly languages files.
Reid Spencere7c3c602006-11-30 06:36:44 +000011//
12//===----------------------------------------------------------------------===*/
13
14%option prefix="Upgrade"
15%option yylineno
16%option nostdinit
17%option never-interactive
18%option batch
19%option noyywrap
20%option nodefault
21%option 8bit
22%option outfile="UpgradeLexer.cpp"
23%option ecs
24%option noreject
25%option noyymore
26
27%{
Reid Spencer319a7302007-01-05 17:20:02 +000028#include "UpgradeInternals.h"
Reid Spencer950bf602007-01-26 08:19:09 +000029#include "llvm/Module.h"
30#include <list>
Reid Spencere7c3c602006-11-30 06:36:44 +000031#include "UpgradeParser.h"
32#include <cctype>
33#include <cstdlib>
34
Reid Spencer96839be2006-11-30 16:50:26 +000035#define YY_INPUT(buf,result,max_size) \
36{ \
37 if (LexInput->good() && !LexInput->eof()) { \
38 LexInput->read(buf,max_size); \
39 result = LexInput->gcount(); \
40 } else {\
41 result = YY_NULL; \
42 } \
43}
44
Reid Spencer950bf602007-01-26 08:19:09 +000045#define YY_NEVER_INTERACTIVE 1
Reid Spencer96839be2006-11-30 16:50:26 +000046
Reid Spencere7c3c602006-11-30 06:36:44 +000047// Construct a token value for a non-obsolete token
Reid Spencer950bf602007-01-26 08:19:09 +000048#define RET_TOK(type, Enum, sym) \
49 Upgradelval.type = Enum; \
Reid Spencere77e35e2006-12-01 20:26:20 +000050 return sym
51
Reid Spencer950bf602007-01-26 08:19:09 +000052#define RET_TY(sym,NewTY,sign) \
53 Upgradelval.PrimType.T = NewTY; \
54 Upgradelval.PrimType.S = sign; \
Reid Spencere7c3c602006-11-30 06:36:44 +000055 return sym
56
Reid Spencer950bf602007-01-26 08:19:09 +000057namespace llvm {
58
59// TODO: All of the static identifiers are figured out by the lexer,
60// these should be hashed to reduce the lexer size
61
62// UnEscapeLexed - Run through the specified buffer and change \xx codes to the
63// appropriate character. If AllowNull is set to false, a \00 value will cause
64// an exception to be thrown.
65//
66// If AllowNull is set to true, the return value of the function points to the
67// last character of the string in memory.
68//
69char *UnEscapeLexed(char *Buffer, bool AllowNull) {
70 char *BOut = Buffer;
71 for (char *BIn = Buffer; *BIn; ) {
72 if (BIn[0] == '\\' && isxdigit(BIn[1]) && isxdigit(BIn[2])) {
73 char Tmp = BIn[3]; BIn[3] = 0; // Terminate string
74 *BOut = (char)strtol(BIn+1, 0, 16); // Convert to number
75 if (!AllowNull && !*BOut)
76 error("String literal cannot accept \\00 escape!");
77
78 BIn[3] = Tmp; // Restore character
79 BIn += 3; // Skip over handled chars
80 ++BOut;
81 } else {
82 *BOut++ = *BIn++;
83 }
84 }
85
86 return BOut;
87}
88
89// atoull - Convert an ascii string of decimal digits into the unsigned long
90// long representation... this does not have to do input error checking,
91// because we know that the input will be matched by a suitable regex...
92//
93static uint64_t atoull(const char *Buffer) {
94 uint64_t Result = 0;
95 for (; *Buffer; Buffer++) {
96 uint64_t OldRes = Result;
97 Result *= 10;
98 Result += *Buffer-'0';
99 if (Result < OldRes) // Uh, oh, overflow detected!!!
100 error("constant bigger than 64 bits detected!");
101 }
102 return Result;
103}
104
105static uint64_t HexIntToVal(const char *Buffer) {
106 uint64_t Result = 0;
107 for (; *Buffer; ++Buffer) {
108 uint64_t OldRes = Result;
109 Result *= 16;
110 char C = *Buffer;
111 if (C >= '0' && C <= '9')
112 Result += C-'0';
113 else if (C >= 'A' && C <= 'F')
114 Result += C-'A'+10;
115 else if (C >= 'a' && C <= 'f')
116 Result += C-'a'+10;
117
118 if (Result < OldRes) // Uh, oh, overflow detected!!!
119 error("constant bigger than 64 bits detected!");
120 }
121 return Result;
122}
123
124
125// HexToFP - Convert the ascii string in hexidecimal format to the floating
126// point representation of it.
127//
128static double HexToFP(const char *Buffer) {
129 // Behave nicely in the face of C TBAA rules... see:
130 // http://www.nullstone.com/htmls/category/aliastyp.htm
131 union {
132 uint64_t UI;
133 double FP;
134 } UIntToFP;
135 UIntToFP.UI = HexIntToVal(Buffer);
136
137 assert(sizeof(double) == sizeof(uint64_t) &&
138 "Data sizes incompatible on this target!");
139 return UIntToFP.FP; // Cast Hex constant to double
140}
141
142
143} // End llvm namespace
144
145using namespace llvm;
146
Reid Spencere7c3c602006-11-30 06:36:44 +0000147%}
148
149
150
151/* Comments start with a ; and go till end of line */
152Comment ;.*
153
154/* Variable(Value) identifiers start with a % sign */
155VarID %[-a-zA-Z$._][-a-zA-Z$._0-9]*
156
157/* Label identifiers end with a colon */
158Label [-a-zA-Z$._0-9]+:
159QuoteLabel \"[^\"]+\":
160
161/* Quoted names can contain any character except " and \ */
162StringConstant \"[^\"]*\"
163
164
165/* [PN]Integer: match positive and negative literal integer values that
166 * are preceeded by a '%' character. These represent unnamed variable slots.
167 */
168EPInteger %[0-9]+
169ENInteger %-[0-9]+
170
171
172/* E[PN]Integer: match positive and negative literal integer values */
173PInteger [0-9]+
174NInteger -[0-9]+
175
176/* FPConstant - A Floating point constant.
177 */
178FPConstant [-+]?[0-9]+[.][0-9]*([eE][-+]?[0-9]+)?
179
180/* HexFPConstant - Floating point constant represented in IEEE format as a
181 * hexadecimal number for when exponential notation is not precise enough.
182 */
183HexFPConstant 0x[0-9A-Fa-f]+
184
185/* HexIntConstant - Hexadecimal constant generated by the CFE to avoid forcing
186 * it to deal with 64 bit numbers.
187 */
188HexIntConstant [us]0x[0-9A-Fa-f]+
189%%
190
191{Comment} { /* Ignore comments for now */ }
192
Reid Spencer950bf602007-01-26 08:19:09 +0000193begin { return BEGINTOK; }
194end { return ENDTOK; }
195true { return TRUETOK; }
196false { return FALSETOK; }
197declare { return DECLARE; }
198global { return GLOBAL; }
199constant { return CONSTANT; }
200internal { return INTERNAL; }
201linkonce { return LINKONCE; }
202weak { return WEAK; }
203appending { return APPENDING; }
204dllimport { return DLLIMPORT; }
205dllexport { return DLLEXPORT; }
206extern_weak { return EXTERN_WEAK; }
207uninitialized { return EXTERNAL; } /* Deprecated, turn into external */
208external { return EXTERNAL; }
209implementation { return IMPLEMENTATION; }
210zeroinitializer { return ZEROINITIALIZER; }
211\.\.\. { return DOTDOTDOT; }
212undef { return UNDEF; }
213null { return NULL_TOK; }
214to { return TO; }
215except { return EXCEPT; }
216not { return NOT; } /* Deprecated, turned into XOR */
217tail { return TAIL; }
218target { return TARGET; }
219triple { return TRIPLE; }
220deplibs { return DEPLIBS; }
221endian { return ENDIAN; }
222pointersize { return POINTERSIZE; }
223datalayout { return DATALAYOUT; }
224little { return LITTLE; }
225big { return BIG; }
226volatile { return VOLATILE; }
227align { return ALIGN; }
228section { return SECTION; }
229module { return MODULE; }
230asm { return ASM_TOK; }
231sideeffect { return SIDEEFFECT; }
Reid Spencere7c3c602006-11-30 06:36:44 +0000232
Reid Spencer950bf602007-01-26 08:19:09 +0000233cc { return CC_TOK; }
234ccc { return CCC_TOK; }
235csretcc { return CSRETCC_TOK; }
236fastcc { return FASTCC_TOK; }
237coldcc { return COLDCC_TOK; }
238x86_stdcallcc { return X86_STDCALLCC_TOK; }
239x86_fastcallcc { return X86_FASTCALLCC_TOK; }
Reid Spencere7c3c602006-11-30 06:36:44 +0000240
Reid Spencer950bf602007-01-26 08:19:09 +0000241sbyte { RET_TY(SBYTE, Type::Int8Ty, Signed); }
242ubyte { RET_TY(UBYTE, Type::Int8Ty, Unsigned); }
243short { RET_TY(SHORT, Type::Int16Ty, Signed); }
244ushort { RET_TY(USHORT, Type::Int16Ty, Unsigned); }
245int { RET_TY(INT, Type::Int32Ty, Signed); }
246uint { RET_TY(UINT, Type::Int32Ty, Unsigned); }
247long { RET_TY(LONG, Type::Int64Ty, Signed); }
248ulong { RET_TY(ULONG, Type::Int64Ty, Unsigned); }
249void { RET_TY(VOID, Type::VoidTy, Signless ); }
250bool { RET_TY(BOOL, Type::Int1Ty, Unsigned ); }
251float { RET_TY(FLOAT, Type::FloatTy, Signless ); }
252double { RET_TY(DOUBLE, Type::DoubleTy,Signless); }
253label { RET_TY(LABEL, Type::LabelTy, Signless ); }
254type { return TYPE; }
255opaque { return OPAQUE; }
Reid Spencere7c3c602006-11-30 06:36:44 +0000256
Reid Spencer950bf602007-01-26 08:19:09 +0000257add { RET_TOK(BinaryOpVal, AddOp, ADD); }
258sub { RET_TOK(BinaryOpVal, SubOp, SUB); }
259mul { RET_TOK(BinaryOpVal, MulOp, MUL); }
260div { RET_TOK(BinaryOpVal, DivOp, DIV); }
261udiv { RET_TOK(BinaryOpVal, UDivOp, UDIV); }
262sdiv { RET_TOK(BinaryOpVal, SDivOp, SDIV); }
263fdiv { RET_TOK(BinaryOpVal, FDivOp, FDIV); }
264rem { RET_TOK(BinaryOpVal, RemOp, REM); }
265urem { RET_TOK(BinaryOpVal, URemOp, UREM); }
266srem { RET_TOK(BinaryOpVal, SRemOp, SREM); }
267frem { RET_TOK(BinaryOpVal, FRemOp, FREM); }
268and { RET_TOK(BinaryOpVal, AndOp, AND); }
269or { RET_TOK(BinaryOpVal, OrOp , OR ); }
270xor { RET_TOK(BinaryOpVal, XorOp, XOR); }
271setne { RET_TOK(BinaryOpVal, SetNE, SETNE); }
272seteq { RET_TOK(BinaryOpVal, SetEQ, SETEQ); }
273setlt { RET_TOK(BinaryOpVal, SetLT, SETLT); }
274setgt { RET_TOK(BinaryOpVal, SetGT, SETGT); }
275setle { RET_TOK(BinaryOpVal, SetLE, SETLE); }
276setge { RET_TOK(BinaryOpVal, SetGE, SETGE); }
Reid Spencer832254e2007-02-02 02:16:23 +0000277shl { RET_TOK(BinaryOpVal, ShlOp, SHL); }
278shr { RET_TOK(BinaryOpVal, ShrOp, SHR); }
279lshr { RET_TOK(BinaryOpVal, LShrOp, LSHR); }
280ashr { RET_TOK(BinaryOpVal, AShrOp, ASHR); }
281
Reid Spencer950bf602007-01-26 08:19:09 +0000282icmp { RET_TOK(OtherOpVal, ICmpOp, ICMP); }
283fcmp { RET_TOK(OtherOpVal, FCmpOp, FCMP); }
Reid Spencere7c3c602006-11-30 06:36:44 +0000284
Reid Spencer950bf602007-01-26 08:19:09 +0000285eq { return EQ; }
286ne { return NE; }
287slt { return SLT; }
288sgt { return SGT; }
289sle { return SLE; }
290sge { return SGE; }
291ult { return ULT; }
292ugt { return UGT; }
293ule { return ULE; }
294uge { return UGE; }
295oeq { return OEQ; }
296one { return ONE; }
297olt { return OLT; }
298ogt { return OGT; }
299ole { return OLE; }
300oge { return OGE; }
301ord { return ORD; }
302uno { return UNO; }
303ueq { return UEQ; }
304une { return UNE; }
Reid Spencere7c3c602006-11-30 06:36:44 +0000305
Reid Spencer950bf602007-01-26 08:19:09 +0000306phi { RET_TOK(OtherOpVal, PHIOp, PHI_TOK); }
307call { RET_TOK(OtherOpVal, CallOp, CALL); }
308cast { RET_TOK(CastOpVal, CastOp, CAST); }
309trunc { RET_TOK(CastOpVal, TruncOp, TRUNC); }
310zext { RET_TOK(CastOpVal, ZExtOp , ZEXT); }
311sext { RET_TOK(CastOpVal, SExtOp, SEXT); }
312fptrunc { RET_TOK(CastOpVal, FPTruncOp, FPTRUNC); }
313fpext { RET_TOK(CastOpVal, FPExtOp, FPEXT); }
314fptoui { RET_TOK(CastOpVal, FPToUIOp, FPTOUI); }
315fptosi { RET_TOK(CastOpVal, FPToSIOp, FPTOSI); }
316uitofp { RET_TOK(CastOpVal, UIToFPOp, UITOFP); }
317sitofp { RET_TOK(CastOpVal, SIToFPOp, SITOFP); }
318ptrtoint { RET_TOK(CastOpVal, PtrToIntOp, PTRTOINT); }
319inttoptr { RET_TOK(CastOpVal, IntToPtrOp, INTTOPTR); }
320bitcast { RET_TOK(CastOpVal, BitCastOp, BITCAST); }
321select { RET_TOK(OtherOpVal, SelectOp, SELECT); }
Reid Spencer950bf602007-01-26 08:19:09 +0000322vanext { return VANEXT_old; }
323vaarg { return VAARG_old; }
324va_arg { RET_TOK(OtherOpVal, VAArg , VAARG); }
325ret { RET_TOK(TermOpVal, RetOp, RET); }
326br { RET_TOK(TermOpVal, BrOp, BR); }
327switch { RET_TOK(TermOpVal, SwitchOp, SWITCH); }
328invoke { RET_TOK(TermOpVal, InvokeOp, INVOKE); }
329unwind { return UNWIND; }
330unreachable { RET_TOK(TermOpVal, UnreachableOp, UNREACHABLE); }
Reid Spencere7c3c602006-11-30 06:36:44 +0000331
Reid Spencer950bf602007-01-26 08:19:09 +0000332malloc { RET_TOK(MemOpVal, MallocOp, MALLOC); }
333alloca { RET_TOK(MemOpVal, AllocaOp, ALLOCA); }
334free { RET_TOK(MemOpVal, FreeOp, FREE); }
335load { RET_TOK(MemOpVal, LoadOp, LOAD); }
336store { RET_TOK(MemOpVal, StoreOp, STORE); }
337getelementptr { RET_TOK(MemOpVal, GetElementPtrOp, GETELEMENTPTR); }
338
339extractelement { RET_TOK(OtherOpVal, ExtractElementOp, EXTRACTELEMENT); }
340insertelement { RET_TOK(OtherOpVal, InsertElementOp, INSERTELEMENT); }
341shufflevector { RET_TOK(OtherOpVal, ShuffleVectorOp, SHUFFLEVECTOR); }
Reid Spencere7c3c602006-11-30 06:36:44 +0000342
343
Reid Spencer950bf602007-01-26 08:19:09 +0000344{VarID} {
345 UnEscapeLexed(yytext+1);
346 Upgradelval.StrVal = strdup(yytext+1); // Skip %
347 return VAR_ID;
348 }
349{Label} {
350 yytext[strlen(yytext)-1] = 0; // nuke colon
351 UnEscapeLexed(yytext);
352 Upgradelval.StrVal = strdup(yytext);
353 return LABELSTR;
354 }
355{QuoteLabel} {
356 yytext[strlen(yytext)-2] = 0; // nuke colon, end quote
357 UnEscapeLexed(yytext+1);
358 Upgradelval.StrVal = strdup(yytext+1);
359 return LABELSTR;
360 }
361
362{StringConstant} { // Note that we cannot unescape a string constant here! The
363 // string constant might contain a \00 which would not be
364 // understood by the string stuff. It is valid to make a
365 // [sbyte] c"Hello World\00" constant, for example.
366 //
367 yytext[strlen(yytext)-1] = 0; // nuke end quote
368 Upgradelval.StrVal = strdup(yytext+1); // Nuke start quote
369 return STRINGCONSTANT;
370 }
371
372
373{PInteger} { Upgradelval.UInt64Val = atoull(yytext); return EUINT64VAL; }
374{NInteger} {
375 uint64_t Val = atoull(yytext+1);
376 // +1: we have bigger negative range
377 if (Val > (uint64_t)INT64_MAX+1)
378 error("Constant too large for signed 64 bits!");
379 Upgradelval.SInt64Val = -Val;
380 return ESINT64VAL;
381 }
382{HexIntConstant} {
383 Upgradelval.UInt64Val = HexIntToVal(yytext+3);
384 return yytext[0] == 's' ? ESINT64VAL : EUINT64VAL;
385 }
386
387{EPInteger} {
388 uint64_t Val = atoull(yytext+1);
389 if ((unsigned)Val != Val)
390 error("Invalid value number (too large)!");
391 Upgradelval.UIntVal = unsigned(Val);
392 return UINTVAL;
393 }
394{ENInteger} {
395 uint64_t Val = atoull(yytext+2);
396 // +1: we have bigger negative range
397 if (Val > (uint64_t)INT32_MAX+1)
398 error("Constant too large for signed 32 bits!");
399 Upgradelval.SIntVal = (int)-Val;
400 return SINTVAL;
401 }
402
403{FPConstant} { Upgradelval.FPVal = atof(yytext); return FPVAL; }
404{HexFPConstant} { Upgradelval.FPVal = HexToFP(yytext); return FPVAL; }
405
406<<EOF>> {
Reid Spencere7c3c602006-11-30 06:36:44 +0000407 /* Make sure to free the internal buffers for flex when we are
408 * done reading our input!
409 */
410 yy_delete_buffer(YY_CURRENT_BUFFER);
411 return EOF;
412 }
413
414[ \r\t\n] { /* Ignore whitespace */ }
415. { return yytext[0]; }
416
417%%