2002-08-14 17:12:33 +00:00
|
|
|
/*===-- Lexer.l - Scanner for llvm assembly files --------------*- C++ -*--===//
|
2005-05-10 22:02:28 +00:00
|
|
|
//
|
2003-10-21 15:17:13 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-05-10 22:02:28 +00:00
|
|
|
//
|
2003-10-21 15:17:13 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
// This file implements the flex scanner for LLVM assembly languages files.
|
|
|
|
//
|
2002-08-14 17:12:33 +00:00
|
|
|
//===----------------------------------------------------------------------===*/
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
%option prefix="llvmAsm"
|
|
|
|
%option yylineno
|
|
|
|
%option nostdinit
|
|
|
|
%option never-interactive
|
|
|
|
%option batch
|
|
|
|
%option noyywrap
|
|
|
|
%option nodefault
|
|
|
|
%option 8bit
|
|
|
|
%option outfile="Lexer.cpp"
|
|
|
|
%option ecs
|
|
|
|
%option noreject
|
|
|
|
%option noyymore
|
|
|
|
|
|
|
|
%{
|
|
|
|
#include "ParserInternals.h"
|
2003-04-22 19:07:06 +00:00
|
|
|
#include "llvm/Module.h"
|
2001-06-06 20:29:01 +00:00
|
|
|
#include <list>
|
|
|
|
#include "llvmAsmParser.h"
|
2003-10-10 19:12:08 +00:00
|
|
|
#include <cctype>
|
|
|
|
#include <cstdlib>
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2005-05-20 03:25:47 +00:00
|
|
|
void set_scan_file(FILE * F){
|
|
|
|
yy_switch_to_buffer(yy_create_buffer( F, YY_BUF_SIZE ) );
|
|
|
|
}
|
|
|
|
void set_scan_string (const char * str) {
|
|
|
|
yy_scan_string (str);
|
|
|
|
}
|
|
|
|
|
2006-10-26 06:15:43 +00:00
|
|
|
// Construct a token value for a non-obsolete token
|
2001-06-06 20:29:01 +00:00
|
|
|
#define RET_TOK(type, Enum, sym) \
|
2006-12-03 05:45:44 +00:00
|
|
|
llvmAsmlval.type = Instruction::Enum; \
|
2006-10-26 06:15:43 +00:00
|
|
|
return sym
|
|
|
|
|
2006-11-19 23:07:00 +00:00
|
|
|
// Construct a token value for an obsolete token
|
2006-12-03 05:45:44 +00:00
|
|
|
#define RET_TY(CTYPE, SYM) \
|
|
|
|
llvmAsmlval.PrimType = CTYPE;\
|
2006-11-28 07:28:14 +00:00
|
|
|
return SYM
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2005-05-10 22:02:28 +00:00
|
|
|
// TODO: All of the static identifiers are figured out by the lexer,
|
2001-09-07 16:32:43 +00:00
|
|
|
// these should be hashed to reduce the lexer size
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
// atoull - Convert an ascii string of decimal digits into the unsigned long
|
2005-05-10 22:02:28 +00:00
|
|
|
// long representation... this does not have to do input error checking,
|
2001-06-06 20:29:01 +00:00
|
|
|
// because we know that the input will be matched by a suitable regex...
|
|
|
|
//
|
2002-04-07 08:10:41 +00:00
|
|
|
static uint64_t atoull(const char *Buffer) {
|
2001-06-06 20:29:01 +00:00
|
|
|
uint64_t Result = 0;
|
|
|
|
for (; *Buffer; Buffer++) {
|
|
|
|
uint64_t OldRes = Result;
|
|
|
|
Result *= 10;
|
|
|
|
Result += *Buffer-'0';
|
2002-04-07 08:10:41 +00:00
|
|
|
if (Result < OldRes) // Uh, oh, overflow detected!!!
|
2006-08-18 08:43:06 +00:00
|
|
|
GenerateError("constant bigger than 64 bits detected!");
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2003-04-17 22:17:32 +00:00
|
|
|
static uint64_t HexIntToVal(const char *Buffer) {
|
2002-04-07 08:10:41 +00:00
|
|
|
uint64_t Result = 0;
|
|
|
|
for (; *Buffer; ++Buffer) {
|
|
|
|
uint64_t OldRes = Result;
|
|
|
|
Result *= 16;
|
|
|
|
char C = *Buffer;
|
|
|
|
if (C >= '0' && C <= '9')
|
|
|
|
Result += C-'0';
|
|
|
|
else if (C >= 'A' && C <= 'F')
|
|
|
|
Result += C-'A'+10;
|
|
|
|
else if (C >= 'a' && C <= 'f')
|
|
|
|
Result += C-'a'+10;
|
|
|
|
|
|
|
|
if (Result < OldRes) // Uh, oh, overflow detected!!!
|
2006-08-18 08:43:06 +00:00
|
|
|
GenerateError("constant bigger than 64 bits detected!");
|
2002-04-07 08:10:41 +00:00
|
|
|
}
|
2003-04-17 22:17:32 +00:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// HexToFP - Convert the ascii string in hexidecimal format to the floating
|
|
|
|
// point representation of it.
|
|
|
|
//
|
|
|
|
static double HexToFP(const char *Buffer) {
|
2002-04-07 08:31:26 +00:00
|
|
|
// Behave nicely in the face of C TBAA rules... see:
|
|
|
|
// http://www.nullstone.com/htmls/category/aliastyp.htm
|
2003-04-22 20:20:28 +00:00
|
|
|
union {
|
|
|
|
uint64_t UI;
|
|
|
|
double FP;
|
|
|
|
} UIntToFP;
|
|
|
|
UIntToFP.UI = HexIntToVal(Buffer);
|
|
|
|
|
|
|
|
assert(sizeof(double) == sizeof(uint64_t) &&
|
|
|
|
"Data sizes incompatible on this target!");
|
|
|
|
return UIntToFP.FP; // Cast Hex constant to double
|
2002-04-07 08:10:41 +00:00
|
|
|
}
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-07-28 17:48:55 +00:00
|
|
|
// UnEscapeLexed - Run through the specified buffer and change \xx codes to the
|
|
|
|
// appropriate character. If AllowNull is set to false, a \00 value will cause
|
|
|
|
// an exception to be thrown.
|
|
|
|
//
|
|
|
|
// If AllowNull is set to true, the return value of the function points to the
|
|
|
|
// last character of the string in memory.
|
|
|
|
//
|
2002-07-25 06:17:42 +00:00
|
|
|
char *UnEscapeLexed(char *Buffer, bool AllowNull) {
|
2001-07-28 17:48:55 +00:00
|
|
|
char *BOut = Buffer;
|
|
|
|
for (char *BIn = Buffer; *BIn; ) {
|
|
|
|
if (BIn[0] == '\\' && isxdigit(BIn[1]) && isxdigit(BIn[2])) {
|
|
|
|
char Tmp = BIn[3]; BIn[3] = 0; // Terminate string
|
2005-01-08 20:07:03 +00:00
|
|
|
*BOut = (char)strtol(BIn+1, 0, 16); // Convert to number
|
2001-07-28 17:48:55 +00:00
|
|
|
if (!AllowNull && !*BOut)
|
2006-08-18 08:43:06 +00:00
|
|
|
GenerateError("String literal cannot accept \\00 escape!");
|
2005-05-10 22:02:28 +00:00
|
|
|
|
2001-07-28 17:48:55 +00:00
|
|
|
BIn[3] = Tmp; // Restore character
|
|
|
|
BIn += 3; // Skip over handled chars
|
|
|
|
++BOut;
|
|
|
|
} else {
|
|
|
|
*BOut++ = *BIn++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return BOut;
|
|
|
|
}
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
#define YY_NEVER_INTERACTIVE 1
|
|
|
|
%}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Comments start with a ; and go till end of line */
|
|
|
|
Comment ;.*
|
|
|
|
|
2001-07-15 06:35:53 +00:00
|
|
|
/* Variable(Value) identifiers start with a % sign */
|
2001-12-04 04:31:30 +00:00
|
|
|
VarID %[-a-zA-Z$._][-a-zA-Z$._0-9]*
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
/* Label identifiers end with a colon */
|
2001-12-04 04:31:30 +00:00
|
|
|
Label [-a-zA-Z$._0-9]+:
|
2004-12-10 05:40:19 +00:00
|
|
|
QuoteLabel \"[^\"]+\":
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
/* Quoted names can contain any character except " and \ */
|
2003-10-18 05:53:13 +00:00
|
|
|
StringConstant \"[^\"]*\"
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* [PN]Integer: match positive and negative literal integer values that
|
|
|
|
* are preceeded by a '%' character. These represent unnamed variable slots.
|
|
|
|
*/
|
|
|
|
EPInteger %[0-9]+
|
|
|
|
ENInteger %-[0-9]+
|
|
|
|
|
|
|
|
|
|
|
|
/* E[PN]Integer: match positive and negative literal integer values */
|
|
|
|
PInteger [0-9]+
|
|
|
|
NInteger -[0-9]+
|
|
|
|
|
2001-07-15 00:17:01 +00:00
|
|
|
/* FPConstant - A Floating point constant.
|
2002-04-07 08:10:41 +00:00
|
|
|
*/
|
2001-11-01 22:06:08 +00:00
|
|
|
FPConstant [-+]?[0-9]+[.][0-9]*([eE][-+]?[0-9]+)?
|
2001-07-15 00:17:01 +00:00
|
|
|
|
2002-04-07 08:10:41 +00:00
|
|
|
/* HexFPConstant - Floating point constant represented in IEEE format as a
|
|
|
|
* hexadecimal number for when exponential notation is not precise enough.
|
|
|
|
*/
|
|
|
|
HexFPConstant 0x[0-9A-Fa-f]+
|
2003-04-17 22:17:32 +00:00
|
|
|
|
|
|
|
/* HexIntConstant - Hexadecimal constant generated by the CFE to avoid forcing
|
|
|
|
* it to deal with 64 bit numbers.
|
|
|
|
*/
|
|
|
|
HexIntConstant [us]0x[0-9A-Fa-f]+
|
2001-06-06 20:29:01 +00:00
|
|
|
%%
|
|
|
|
|
|
|
|
{Comment} { /* Ignore comments for now */ }
|
|
|
|
|
|
|
|
begin { return BEGINTOK; }
|
2002-05-03 18:23:48 +00:00
|
|
|
end { return ENDTOK; }
|
2004-03-31 03:49:47 +00:00
|
|
|
true { return TRUETOK; }
|
|
|
|
false { return FALSETOK; }
|
2001-06-06 20:29:01 +00:00
|
|
|
declare { return DECLARE; }
|
2001-09-10 07:58:01 +00:00
|
|
|
global { return GLOBAL; }
|
2001-09-18 04:00:54 +00:00
|
|
|
constant { return CONSTANT; }
|
2001-11-26 18:54:16 +00:00
|
|
|
internal { return INTERNAL; }
|
2003-04-16 20:28:45 +00:00
|
|
|
linkonce { return LINKONCE; }
|
2003-10-10 04:54:02 +00:00
|
|
|
weak { return WEAK; }
|
2003-04-16 20:28:45 +00:00
|
|
|
appending { return APPENDING; }
|
2006-09-14 18:23:27 +00:00
|
|
|
dllimport { return DLLIMPORT; }
|
|
|
|
dllexport { return DLLEXPORT; }
|
|
|
|
extern_weak { return EXTERN_WEAK; }
|
2002-10-06 22:45:09 +00:00
|
|
|
external { return EXTERNAL; }
|
2001-06-06 20:29:01 +00:00
|
|
|
implementation { return IMPLEMENTATION; }
|
2003-06-28 20:01:34 +00:00
|
|
|
zeroinitializer { return ZEROINITIALIZER; }
|
2001-07-25 22:47:46 +00:00
|
|
|
\.\.\. { return DOTDOTDOT; }
|
2004-10-16 18:17:13 +00:00
|
|
|
undef { return UNDEF; }
|
2001-09-30 22:46:54 +00:00
|
|
|
null { return NULL_TOK; }
|
2001-10-13 06:37:14 +00:00
|
|
|
to { return TO; }
|
2005-05-06 06:20:33 +00:00
|
|
|
tail { return TAIL; }
|
2003-04-22 19:07:06 +00:00
|
|
|
target { return TARGET; }
|
2004-07-25 17:56:00 +00:00
|
|
|
triple { return TRIPLE; }
|
|
|
|
deplibs { return DEPLIBS; }
|
2003-04-22 19:07:06 +00:00
|
|
|
endian { return ENDIAN; }
|
|
|
|
pointersize { return POINTERSIZE; }
|
2006-10-22 06:07:41 +00:00
|
|
|
datalayout { return DATALAYOUT; }
|
2003-04-22 19:07:06 +00:00
|
|
|
little { return LITTLE; }
|
|
|
|
big { return BIG; }
|
2003-09-08 18:20:29 +00:00
|
|
|
volatile { return VOLATILE; }
|
2005-11-12 00:11:30 +00:00
|
|
|
align { return ALIGN; }
|
|
|
|
section { return SECTION; }
|
2006-01-24 00:40:17 +00:00
|
|
|
module { return MODULE; }
|
2006-01-23 23:05:15 +00:00
|
|
|
asm { return ASM_TOK; }
|
2006-01-25 22:26:43 +00:00
|
|
|
sideeffect { return SIDEEFFECT; }
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2005-05-06 20:27:19 +00:00
|
|
|
cc { return CC_TOK; }
|
|
|
|
ccc { return CCC_TOK; }
|
2006-05-19 21:28:34 +00:00
|
|
|
csretcc { return CSRETCC_TOK; }
|
2005-05-06 20:27:19 +00:00
|
|
|
fastcc { return FASTCC_TOK; }
|
|
|
|
coldcc { return COLDCC_TOK; }
|
2006-09-17 20:25:45 +00:00
|
|
|
x86_stdcallcc { return X86_STDCALLCC_TOK; }
|
|
|
|
x86_fastcallcc { return X86_FASTCALLCC_TOK; }
|
2005-05-06 20:27:19 +00:00
|
|
|
|
2006-12-03 05:45:44 +00:00
|
|
|
void { RET_TY(Type::VoidTy, VOID); }
|
|
|
|
bool { RET_TY(Type::BoolTy, BOOL); }
|
|
|
|
sbyte { RET_TY(Type::SByteTy, SBYTE); }
|
|
|
|
ubyte { RET_TY(Type::UByteTy, UBYTE); }
|
|
|
|
short { RET_TY(Type::ShortTy, SHORT); }
|
|
|
|
ushort { RET_TY(Type::UShortTy,USHORT);}
|
|
|
|
int { RET_TY(Type::IntTy, INT); }
|
|
|
|
uint { RET_TY(Type::UIntTy, UINT); }
|
|
|
|
long { RET_TY(Type::LongTy, LONG); }
|
|
|
|
ulong { RET_TY(Type::ULongTy, ULONG); }
|
|
|
|
float { RET_TY(Type::FloatTy, FLOAT); }
|
|
|
|
double { RET_TY(Type::DoubleTy,DOUBLE);}
|
|
|
|
label { RET_TY(Type::LabelTy, LABEL); }
|
2004-07-04 12:17:44 +00:00
|
|
|
type { return TYPE; }
|
2002-04-04 19:22:17 +00:00
|
|
|
opaque { return OPAQUE; }
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
add { RET_TOK(BinaryOpVal, Add, ADD); }
|
|
|
|
sub { RET_TOK(BinaryOpVal, Sub, SUB); }
|
|
|
|
mul { RET_TOK(BinaryOpVal, Mul, MUL); }
|
2006-10-26 06:15:43 +00:00
|
|
|
udiv { RET_TOK(BinaryOpVal, UDiv, UDIV); }
|
|
|
|
sdiv { RET_TOK(BinaryOpVal, SDiv, SDIV); }
|
|
|
|
fdiv { RET_TOK(BinaryOpVal, FDiv, FDIV); }
|
2006-11-02 01:53:59 +00:00
|
|
|
urem { RET_TOK(BinaryOpVal, URem, UREM); }
|
|
|
|
srem { RET_TOK(BinaryOpVal, SRem, SREM); }
|
|
|
|
frem { RET_TOK(BinaryOpVal, FRem, FREM); }
|
2001-10-20 09:32:59 +00:00
|
|
|
and { RET_TOK(BinaryOpVal, And, AND); }
|
|
|
|
or { RET_TOK(BinaryOpVal, Or , OR ); }
|
|
|
|
xor { RET_TOK(BinaryOpVal, Xor, XOR); }
|
2006-12-03 05:45:44 +00:00
|
|
|
icmp { RET_TOK(OtherOpVal, ICmp, ICMP); }
|
|
|
|
fcmp { RET_TOK(OtherOpVal, FCmp, FCMP); }
|
2006-12-03 06:58:07 +00:00
|
|
|
eq { return EQ; }
|
|
|
|
ne { return NE; }
|
|
|
|
slt { return SLT; }
|
|
|
|
sgt { return SGT; }
|
|
|
|
sle { return SLE; }
|
|
|
|
sge { return SGE; }
|
|
|
|
ult { return ULT; }
|
|
|
|
ugt { return UGT; }
|
|
|
|
ule { return ULE; }
|
|
|
|
uge { return UGE; }
|
|
|
|
oeq { return OEQ; }
|
|
|
|
one { return ONE; }
|
|
|
|
olt { return OLT; }
|
|
|
|
ogt { return OGT; }
|
|
|
|
ole { return OLE; }
|
|
|
|
oge { return OGE; }
|
|
|
|
ord { return ORD; }
|
|
|
|
uno { return UNO; }
|
|
|
|
ueq { return UEQ; }
|
|
|
|
une { return UNE; }
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2003-10-19 21:34:28 +00:00
|
|
|
phi { RET_TOK(OtherOpVal, PHI, PHI_TOK); }
|
2001-07-08 21:10:27 +00:00
|
|
|
call { RET_TOK(OtherOpVal, Call, CALL); }
|
2006-11-27 01:05:10 +00:00
|
|
|
trunc { RET_TOK(CastOpVal, Trunc, TRUNC); }
|
|
|
|
zext { RET_TOK(CastOpVal, ZExt, ZEXT); }
|
|
|
|
sext { RET_TOK(CastOpVal, SExt, SEXT); }
|
|
|
|
fptrunc { RET_TOK(CastOpVal, FPTrunc, FPTRUNC); }
|
|
|
|
fpext { RET_TOK(CastOpVal, FPExt, FPEXT); }
|
|
|
|
uitofp { RET_TOK(CastOpVal, UIToFP, UITOFP); }
|
|
|
|
sitofp { RET_TOK(CastOpVal, SIToFP, SITOFP); }
|
|
|
|
fptoui { RET_TOK(CastOpVal, FPToUI, FPTOUI); }
|
|
|
|
fptosi { RET_TOK(CastOpVal, FPToSI, FPTOSI); }
|
|
|
|
inttoptr { RET_TOK(CastOpVal, IntToPtr, INTTOPTR); }
|
|
|
|
ptrtoint { RET_TOK(CastOpVal, PtrToInt, PTRTOINT); }
|
|
|
|
bitcast { RET_TOK(CastOpVal, BitCast, BITCAST); }
|
2004-03-12 05:51:36 +00:00
|
|
|
select { RET_TOK(OtherOpVal, Select, SELECT); }
|
2001-07-08 21:10:27 +00:00
|
|
|
shl { RET_TOK(OtherOpVal, Shl, SHL); }
|
2006-11-08 06:47:33 +00:00
|
|
|
lshr { RET_TOK(OtherOpVal, LShr, LSHR); }
|
|
|
|
ashr { RET_TOK(OtherOpVal, AShr, ASHR); }
|
2005-06-18 18:34:52 +00:00
|
|
|
va_arg { RET_TOK(OtherOpVal, VAArg , VAARG); }
|
2001-06-06 20:29:01 +00:00
|
|
|
ret { RET_TOK(TermOpVal, Ret, RET); }
|
|
|
|
br { RET_TOK(TermOpVal, Br, BR); }
|
|
|
|
switch { RET_TOK(TermOpVal, Switch, SWITCH); }
|
2001-10-13 06:37:14 +00:00
|
|
|
invoke { RET_TOK(TermOpVal, Invoke, INVOKE); }
|
2003-09-08 18:54:55 +00:00
|
|
|
unwind { RET_TOK(TermOpVal, Unwind, UNWIND); }
|
2004-10-16 18:17:13 +00:00
|
|
|
unreachable { RET_TOK(TermOpVal, Unreachable, UNREACHABLE); }
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
malloc { RET_TOK(MemOpVal, Malloc, MALLOC); }
|
|
|
|
alloca { RET_TOK(MemOpVal, Alloca, ALLOCA); }
|
|
|
|
free { RET_TOK(MemOpVal, Free, FREE); }
|
|
|
|
load { RET_TOK(MemOpVal, Load, LOAD); }
|
|
|
|
store { RET_TOK(MemOpVal, Store, STORE); }
|
2001-07-08 23:22:50 +00:00
|
|
|
getelementptr { RET_TOK(MemOpVal, GetElementPtr, GETELEMENTPTR); }
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2006-01-10 19:04:32 +00:00
|
|
|
extractelement { RET_TOK(OtherOpVal, ExtractElement, EXTRACTELEMENT); }
|
2006-01-17 20:06:25 +00:00
|
|
|
insertelement { RET_TOK(OtherOpVal, InsertElement, INSERTELEMENT); }
|
2006-04-08 01:18:35 +00:00
|
|
|
shufflevector { RET_TOK(OtherOpVal, ShuffleVector, SHUFFLEVECTOR); }
|
2006-01-10 19:04:32 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-07-28 17:48:55 +00:00
|
|
|
{VarID} {
|
|
|
|
UnEscapeLexed(yytext+1);
|
|
|
|
llvmAsmlval.StrVal = strdup(yytext+1); // Skip %
|
2005-05-10 22:02:28 +00:00
|
|
|
return VAR_ID;
|
2001-07-28 17:48:55 +00:00
|
|
|
}
|
|
|
|
{Label} {
|
2001-06-06 20:29:01 +00:00
|
|
|
yytext[strlen(yytext)-1] = 0; // nuke colon
|
2001-07-28 17:48:55 +00:00
|
|
|
UnEscapeLexed(yytext);
|
2005-05-10 22:02:28 +00:00
|
|
|
llvmAsmlval.StrVal = strdup(yytext);
|
|
|
|
return LABELSTR;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2004-12-10 05:27:29 +00:00
|
|
|
{QuoteLabel} {
|
|
|
|
yytext[strlen(yytext)-2] = 0; // nuke colon, end quote
|
|
|
|
UnEscapeLexed(yytext+1);
|
2005-05-10 22:02:28 +00:00
|
|
|
llvmAsmlval.StrVal = strdup(yytext+1);
|
|
|
|
return LABELSTR;
|
2004-12-10 05:27:29 +00:00
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-07-28 17:48:55 +00:00
|
|
|
{StringConstant} { // Note that we cannot unescape a string constant here! The
|
2005-05-10 22:02:28 +00:00
|
|
|
// string constant might contain a \00 which would not be
|
2001-07-28 17:48:55 +00:00
|
|
|
// understood by the string stuff. It is valid to make a
|
|
|
|
// [sbyte] c"Hello World\00" constant, for example.
|
|
|
|
//
|
2005-05-10 22:02:28 +00:00
|
|
|
yytext[strlen(yytext)-1] = 0; // nuke end quote
|
|
|
|
llvmAsmlval.StrVal = strdup(yytext+1); // Nuke start quote
|
|
|
|
return STRINGCONSTANT;
|
2001-07-28 17:48:55 +00:00
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
{PInteger} { llvmAsmlval.UInt64Val = atoull(yytext); return EUINT64VAL; }
|
2005-05-10 22:02:28 +00:00
|
|
|
{NInteger} {
|
2001-06-06 20:29:01 +00:00
|
|
|
uint64_t Val = atoull(yytext+1);
|
2005-05-10 22:02:28 +00:00
|
|
|
// +1: we have bigger negative range
|
|
|
|
if (Val > (uint64_t)INT64_MAX+1)
|
2006-08-18 08:43:06 +00:00
|
|
|
GenerateError("Constant too large for signed 64 bits!");
|
2005-05-10 22:02:28 +00:00
|
|
|
llvmAsmlval.SInt64Val = -Val;
|
|
|
|
return ESINT64VAL;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2003-04-17 22:17:32 +00:00
|
|
|
{HexIntConstant} {
|
2005-05-10 22:02:28 +00:00
|
|
|
llvmAsmlval.UInt64Val = HexIntToVal(yytext+3);
|
2003-04-17 22:17:32 +00:00
|
|
|
return yytext[0] == 's' ? ESINT64VAL : EUINT64VAL;
|
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2005-01-08 20:07:03 +00:00
|
|
|
{EPInteger} {
|
|
|
|
uint64_t Val = atoull(yytext+1);
|
|
|
|
if ((unsigned)Val != Val)
|
2006-08-18 08:43:06 +00:00
|
|
|
GenerateError("Invalid value number (too large)!");
|
2005-01-08 20:07:03 +00:00
|
|
|
llvmAsmlval.UIntVal = unsigned(Val);
|
|
|
|
return UINTVAL;
|
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
{ENInteger} {
|
|
|
|
uint64_t Val = atoull(yytext+2);
|
2005-05-10 22:02:28 +00:00
|
|
|
// +1: we have bigger negative range
|
|
|
|
if (Val > (uint64_t)INT32_MAX+1)
|
2006-08-18 08:43:06 +00:00
|
|
|
GenerateError("Constant too large for signed 32 bits!");
|
2005-01-08 20:07:03 +00:00
|
|
|
llvmAsmlval.SIntVal = (int)-Val;
|
2005-05-10 22:02:28 +00:00
|
|
|
return SINTVAL;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2001-07-15 00:17:01 +00:00
|
|
|
{FPConstant} { llvmAsmlval.FPVal = atof(yytext); return FPVAL; }
|
2002-04-07 08:10:41 +00:00
|
|
|
{HexFPConstant} { llvmAsmlval.FPVal = HexToFP(yytext); return FPVAL; }
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2004-03-19 23:34:33 +00:00
|
|
|
<<EOF>> {
|
|
|
|
/* Make sure to free the internal buffers for flex when we are
|
|
|
|
* done reading our input!
|
|
|
|
*/
|
|
|
|
yy_delete_buffer(YY_CURRENT_BUFFER);
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
|
2004-05-27 17:49:14 +00:00
|
|
|
[ \r\t\n] { /* Ignore whitespace */ }
|
2001-09-07 16:32:43 +00:00
|
|
|
. { return yytext[0]; }
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
%%
|