lua/lex.c

279 lines
6.8 KiB
C
Raw Normal View History

1994-11-03 20:09:20 +03:00
char *rcs_lex = "$Id: lex.c,v 2.8 1994/10/18 17:34:34 celes Exp roberto $";
1993-12-23 00:15:16 +03:00
#include <ctype.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
1993-12-23 00:15:16 +03:00
#include "opcode.h"
#include "inout.h"
#include "y.tab.h"
1994-10-18 20:34:34 +03:00
#include "ugly.h"
1993-12-23 00:15:16 +03:00
1994-09-22 16:44:00 +04:00
#define lua_strcmp(a,b) (a[0]<b[0]?(-1):(a[0]>b[0]?(1):strcmp(a,b)))
1994-08-17 21:41:50 +04:00
1993-12-23 00:15:16 +03:00
#define next() { current = input(); }
#define save(x) { *yytextLast++ = (x); }
#define save_and_next() { save(current); next(); }
static int current;
static char yytext[2][256];
1993-12-23 00:15:16 +03:00
static char *yytextLast;
static int currentText = 0;
1993-12-23 00:15:16 +03:00
static Input input;
void lua_setinput (Input fn)
{
current = ' ';
input = fn;
}
char *lua_lasttext (void)
{
*yytextLast = 0;
return yytext[currentText];
1993-12-23 00:15:16 +03:00
}
/* The reserved words must be listed in lexicographic order */
1994-09-22 16:44:00 +04:00
static struct
1993-12-23 00:15:16 +03:00
{
char *name;
int token;
} reserved [] = {
{"and", AND},
{"do", DO},
{"else", ELSE},
{"elseif", ELSEIF},
{"end", END},
{"function", FUNCTION},
{"if", IF},
{"local", LOCAL},
{"nil", NIL},
{"not", NOT},
{"or", OR},
{"repeat", REPEAT},
{"return", RETURN},
{"then", THEN},
{"until", UNTIL},
{"while", WHILE} };
1994-09-22 16:44:00 +04:00
1993-12-23 00:15:16 +03:00
#define RESERVEDSIZE (sizeof(reserved)/sizeof(reserved[0]))
static int findReserved (char *name)
1993-12-23 00:15:16 +03:00
{
int l = 0;
int h = RESERVEDSIZE - 1;
while (l <= h)
{
int m = (l+h)/2;
1994-08-17 21:41:50 +04:00
int comp = lua_strcmp(name, reserved[m].name);
1993-12-23 00:15:16 +03:00
if (comp < 0)
h = m-1;
else if (comp == 0)
return reserved[m].token;
else
l = m+1;
}
return 0;
}
1994-11-03 20:09:20 +03:00
int yylex (void)
1993-12-23 00:15:16 +03:00
{
float a;
currentText = !currentText;
1993-12-23 00:15:16 +03:00
while (1)
{
yytextLast = yytext[currentText];
#if 0
fprintf(stderr,"'%c' %d\n",current,current);
#endif
1993-12-23 00:15:16 +03:00
switch (current)
{
case EOF:
case 0:
return 0;
1993-12-23 00:15:16 +03:00
case '\n': lua_linenumber++;
case ' ':
case '\t':
1993-12-23 00:39:15 +03:00
next();
1993-12-23 00:15:16 +03:00
continue;
1993-12-23 00:39:15 +03:00
case '$':
next();
while (isalnum(current) || current == '_')
save_and_next();
*yytextLast = 0;
1994-08-17 21:41:50 +04:00
if (lua_strcmp(yytext[currentText], "debug") == 0)
1993-12-23 00:39:15 +03:00
{
yylval.vInt = 1;
return DEBUG;
}
1994-08-17 21:41:50 +04:00
else if (lua_strcmp(yytext[currentText], "nodebug") == 0)
1993-12-23 00:39:15 +03:00
{
yylval.vInt = 0;
return DEBUG;
}
return WRONGTOKEN;
1994-09-22 16:44:00 +04:00
1993-12-23 00:15:16 +03:00
case '-':
save_and_next();
if (current != '-') return '-';
1993-12-23 00:39:15 +03:00
do { next(); } while (current != '\n' && current != 0);
1993-12-23 00:15:16 +03:00
continue;
1994-09-22 16:44:00 +04:00
case '=':
save_and_next();
if (current != '=') return '=';
else { save_and_next(); return EQ; }
1993-12-23 00:15:16 +03:00
case '<':
save_and_next();
if (current != '=') return '<';
else { save_and_next(); return LE; }
1994-09-22 16:44:00 +04:00
1993-12-23 00:15:16 +03:00
case '>':
save_and_next();
if (current != '=') return '>';
else { save_and_next(); return GE; }
1994-09-22 16:44:00 +04:00
1993-12-23 00:15:16 +03:00
case '~':
save_and_next();
if (current != '=') return '~';
else { save_and_next(); return NE; }
case '"':
case '\'':
{
int del = current;
next(); /* skip the delimiter */
1994-09-22 16:44:00 +04:00
while (current != del)
1993-12-23 00:15:16 +03:00
{
switch (current)
{
case EOF:
1994-09-22 16:44:00 +04:00
case 0:
case '\n':
1993-12-23 00:15:16 +03:00
return WRONGTOKEN;
case '\\':
next(); /* do not save the '\' */
switch (current)
{
case 'n': save('\n'); next(); break;
case 't': save('\t'); next(); break;
case 'r': save('\r'); next(); break;
case '\'': save('\''); next(); break;
case '"': save('"'); next(); break;
default : save(current); next(); break;
1993-12-23 00:15:16 +03:00
}
break;
1994-09-22 16:44:00 +04:00
default:
1993-12-23 00:15:16 +03:00
save_and_next();
}
}
next(); /* skip the delimiter */
*yytextLast = 0;
yylval.pChar = yytext[currentText];
1993-12-23 00:15:16 +03:00
return STRING;
}
case 'a': case 'b': case 'c': case 'd': case 'e':
case 'f': case 'g': case 'h': case 'i': case 'j':
case 'k': case 'l': case 'm': case 'n': case 'o':
case 'p': case 'q': case 'r': case 's': case 't':
case 'u': case 'v': case 'w': case 'x': case 'y':
case 'z':
case 'A': case 'B': case 'C': case 'D': case 'E':
case 'F': case 'G': case 'H': case 'I': case 'J':
case 'K': case 'L': case 'M': case 'N': case 'O':
case 'P': case 'Q': case 'R': case 'S': case 'T':
case 'U': case 'V': case 'W': case 'X': case 'Y':
case 'Z':
case '_':
{
int res;
do { save_and_next(); } while (isalnum(current) || current == '_');
*yytextLast = 0;
res = findReserved(yytext[currentText]);
1993-12-23 00:15:16 +03:00
if (res) return res;
yylval.pChar = yytext[currentText];
1993-12-23 00:15:16 +03:00
return NAME;
}
1994-09-22 16:44:00 +04:00
1993-12-23 00:15:16 +03:00
case '.':
save_and_next();
1994-09-22 16:44:00 +04:00
if (current == '.')
{
save_and_next();
1993-12-23 00:15:16 +03:00
return CONC;
}
else if (!isdigit(current)) return '.';
/* current is a digit: goes through to number */
a=0.0;
1993-12-23 00:15:16 +03:00
goto fraction;
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
a=0.0;
do { a=10*a+current-'0'; save_and_next(); } while (isdigit(current));
1993-12-23 00:15:16 +03:00
if (current == '.') save_and_next();
fraction:
{ float da=0.1;
while (isdigit(current))
{a+=(current-'0')*da; da/=10.0; save_and_next()};
if (current == 'e' || current == 'E')
{
int e=0;
int neg;
float ea;
save_and_next();
neg=(current=='-');
if (current == '+' || current == '-') save_and_next();
if (!isdigit(current)) return WRONGTOKEN;
do { e=10*e+current-'0'; save_and_next(); } while (isdigit(current));
for (ea=neg?0.1:10.0; e>0; e>>=1)
{
if (e & 1) a*=ea;
ea*=ea;
}
}
yylval.vFloat = a;
return NUMBER;
1993-12-23 00:15:16 +03:00
}
case U_and: next(); return AND;
case U_do: next(); return DO;
case U_else: next(); return ELSE;
case U_elseif: next(); return ELSEIF;
case U_end: next(); return END;
case U_function: next(); return FUNCTION;
case U_if: next(); return IF;
case U_local: next(); return LOCAL;
case U_nil: next(); return NIL;
case U_not: next(); return NOT;
case U_or: next(); return OR;
case U_repeat: next(); return REPEAT;
case U_return: next(); return RETURN;
case U_then: next(); return THEN;
case U_until: next(); return UNTIL;
case U_while: next(); return WHILE;
1994-10-18 20:34:34 +03:00
case U_eq: next(); return EQ;
case U_le: next(); return LE;
case U_ge: next(); return GE;
case U_ne: next(); return NE;
case U_sc: next(); return CONC;
1994-09-22 16:44:00 +04:00
1993-12-23 00:39:15 +03:00
default: /* also end of file */
1993-12-23 00:15:16 +03:00
{
save_and_next();
1994-09-22 16:44:00 +04:00
return yytext[currentText][0];
1993-12-23 00:15:16 +03:00
}
}
}
}