1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2018-08-23 10:26:12 -07:00
|
|
|
** $Id: llex.h $
|
1999-02-25 13:07:26 -08:00
|
|
|
** Lexical Analyzer
|
1997-09-16 12:25:59 -07:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef llex_h
|
|
|
|
#define llex_h
|
|
|
|
|
2020-09-15 10:29:52 -07:00
|
|
|
#include <limits.h>
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "lobject.h"
|
|
|
|
#include "lzio.h"
|
|
|
|
|
|
|
|
|
2020-09-15 10:29:52 -07:00
|
|
|
/*
|
|
|
|
** Single-char tokens (terminal symbols) are represented by their own
|
|
|
|
** numeric code. Other tokens start at the following value.
|
|
|
|
*/
|
|
|
|
#define FIRST_RESERVED (UCHAR_MAX + 1)
|
1998-05-27 06:08:34 -07:00
|
|
|
|
|
|
|
|
2014-10-29 08:38:24 -07:00
|
|
|
#if !defined(LUA_ENV)
|
|
|
|
#define LUA_ENV "_ENV"
|
|
|
|
#endif
|
|
|
|
|
1999-07-22 12:29:42 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* WARNING: if you change the order of this enumeration,
|
|
|
|
* grep "ORDER RESERVED"
|
|
|
|
*/
|
1998-05-27 06:08:34 -07:00
|
|
|
enum RESERVED {
|
|
|
|
/* terminal symbols denoted by reserved words */
|
2000-04-05 10:51:58 -07:00
|
|
|
TK_AND = FIRST_RESERVED, TK_BREAK,
|
2001-12-11 14:48:44 -08:00
|
|
|
TK_DO, TK_ELSE, TK_ELSEIF, TK_END, TK_FALSE, TK_FOR, TK_FUNCTION,
|
2011-02-02 06:55:17 -08:00
|
|
|
TK_GOTO, TK_IF, TK_IN, TK_LOCAL, TK_NIL, TK_NOT, TK_OR, TK_REPEAT,
|
2018-04-04 07:23:41 -07:00
|
|
|
TK_RETURN, TK_THEN, TK_TRUE, TK_UNTIL, TK_WHILE,
|
1998-05-27 06:08:34 -07:00
|
|
|
/* other terminal symbols */
|
2013-04-26 06:08:29 -07:00
|
|
|
TK_IDIV, TK_CONCAT, TK_DOTS, TK_EQ, TK_GE, TK_LE, TK_NE,
|
2013-12-30 12:47:58 -08:00
|
|
|
TK_SHL, TK_SHR,
|
2013-04-26 06:08:29 -07:00
|
|
|
TK_DBCOLON, TK_EOS,
|
2013-04-16 11:46:28 -07:00
|
|
|
TK_FLT, TK_INT, TK_NAME, TK_STRING
|
2000-02-08 08:39:42 -08:00
|
|
|
};
|
|
|
|
|
2000-03-03 06:58:26 -08:00
|
|
|
/* number of reserved words */
|
2018-01-28 07:13:26 -08:00
|
|
|
#define NUM_RESERVED (cast_int(TK_WHILE-FIRST_RESERVED + 1))
|
1998-05-27 06:08:34 -07:00
|
|
|
|
|
|
|
|
2000-09-27 10:41:58 -07:00
|
|
|
typedef union {
|
2000-12-04 10:33:40 -08:00
|
|
|
lua_Number r;
|
2013-04-16 11:46:28 -07:00
|
|
|
lua_Integer i;
|
2000-09-27 10:41:58 -07:00
|
|
|
TString *ts;
|
|
|
|
} SemInfo; /* semantics information */
|
|
|
|
|
|
|
|
|
2000-05-24 11:04:17 -07:00
|
|
|
typedef struct Token {
|
|
|
|
int token;
|
2000-09-27 10:41:58 -07:00
|
|
|
SemInfo seminfo;
|
2000-05-24 11:04:17 -07:00
|
|
|
} Token;
|
|
|
|
|
2000-09-27 10:41:58 -07:00
|
|
|
|
2011-02-07 09:14:50 -08:00
|
|
|
/* state of the lexer plus state of the parser when shared by all
|
|
|
|
functions */
|
2000-05-24 11:04:17 -07:00
|
|
|
typedef struct LexState {
|
2001-11-28 12:13:13 -08:00
|
|
|
int current; /* current character (charint) */
|
2002-02-08 14:42:41 -08:00
|
|
|
int linenumber; /* input line counter */
|
2014-10-25 04:50:46 -07:00
|
|
|
int lastline; /* line of last token 'consumed' */
|
2000-05-25 11:59:59 -07:00
|
|
|
Token t; /* current token */
|
|
|
|
Token lookahead; /* look ahead token */
|
2011-02-07 09:14:50 -08:00
|
|
|
struct FuncState *fs; /* current function (parser) */
|
2000-05-24 11:04:17 -07:00
|
|
|
struct lua_State *L;
|
2002-10-08 11:46:08 -07:00
|
|
|
ZIO *z; /* input stream */
|
|
|
|
Mbuffer *buff; /* buffer for tokens */
|
2013-08-30 09:01:37 -07:00
|
|
|
Table *h; /* to avoid collection/reuse strings */
|
2011-02-07 09:14:50 -08:00
|
|
|
struct Dyndata *dyd; /* dynamic structures used by the parser */
|
2000-06-19 11:05:14 -07:00
|
|
|
TString *source; /* current source name */
|
2010-04-05 09:35:37 -07:00
|
|
|
TString *envn; /* environment variable name */
|
1997-11-19 09:29:23 -08:00
|
|
|
} LexState;
|
|
|
|
|
|
|
|
|
2005-04-25 12:24:10 -07:00
|
|
|
LUAI_FUNC void luaX_init (lua_State *L);
|
2006-03-23 10:23:32 -08:00
|
|
|
LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z,
|
2011-02-23 05:13:10 -08:00
|
|
|
TString *source, int firstchar);
|
2006-03-23 10:23:32 -08:00
|
|
|
LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l);
|
2005-12-07 07:43:05 -08:00
|
|
|
LUAI_FUNC void luaX_next (LexState *ls);
|
2007-05-11 10:28:56 -07:00
|
|
|
LUAI_FUNC int luaX_lookahead (LexState *ls);
|
2011-11-30 04:43:51 -08:00
|
|
|
LUAI_FUNC l_noret luaX_syntaxerror (LexState *ls, const char *s);
|
2005-04-25 12:24:10 -07:00
|
|
|
LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|