You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1099 lines
27 KiB

27 years ago
/*
** $Id: lparser.c,v 1.63 2000/03/03 18:53:17 roberto Exp roberto $
27 years ago
** LL(1) Parser and code generator for Lua
** See Copyright Notice in lua.h
*/
#include <stdio.h>
#include <string.h>
27 years ago
#define LUA_REENTRANT
#include "lcode.h"
27 years ago
#include "ldo.h"
#include "lfunc.h"
#include "llex.h"
#include "lmem.h"
#include "lobject.h"
27 years ago
#include "lopcodes.h"
#include "lparser.h"
#include "lstate.h"
#include "lstring.h"
/*
** check whether arbitrary limits fit in respective opcode types
27 years ago
*/
#if MAXLOCALS>MAXARG_U || MAXUPVALUES>MAXARG_B || MAXVARSLH>MAXARG_B || \
MAXPARAMS>MAXLOCALS || MAXSTACK>MAXARG_A || LFIELDS_PER_FLUSH>MAXARG_B
#error invalid limits
#endif
27 years ago
/*
** Constructors descriptor:
** `n' indicates number of elements, and `k' signals whether
27 years ago
** it is a list constructor (k = 0) or a record constructor (k = 1)
** or empty (k = ';' or '}')
*/
typedef struct constdesc {
27 years ago
int n;
int k;
} constdesc;
/*
** prototypes for recursive non-terminal functions
*/
static void body (LexState *ls, int needself, int line);
27 years ago
static void chunk (LexState *ls);
static void constructor (LexState *ls);
static void expr (LexState *ls, expdesc *v);
static int exp1 (LexState *ls);
27 years ago
static void next (LexState *ls) {
ls->token = luaX_lex(ls);
}
27 years ago
static void error_expected (LexState *ls, int token) {
char buff[100], t[TOKEN_LEN];
luaX_token2str(token, t);
sprintf(buff, "`%.20s' expected", t);
luaK_error(ls, buff);
}
static void error_unexpected (LexState *ls) {
luaK_error(ls, "unexpected token");
}
static void error_unmatched (LexState *ls, int what, int who, int where) {
if (where == ls->linenumber)
error_expected(ls, what);
else {
char buff[100];
char t_what[TOKEN_LEN], t_who[TOKEN_LEN];
luaX_token2str(what, t_what);
luaX_token2str(who, t_who);
sprintf(buff, "`%.20s' expected (to close `%.20s' at line %d)",
t_what, t_who, where);
luaK_error(ls, buff);
}
}
static void check (LexState *ls, int c) {
if (ls->token != c)
error_expected(ls, c);
next(ls);
}
static int optional (LexState *ls, int c) {
if (ls->token == c) {
next(ls);
return 1;
}
else return 0;
27 years ago
}
static void checklimit (LexState *ls, int val, int limit, const char *msg) {
if (val > limit) {
char buff[100];
sprintf(buff, "too many %.50s (limit=%d)", msg, limit);
luaK_error(ls, buff);
}
27 years ago
}
static void check_debugline (LexState *ls) {
if (ls->L->debug && ls->linenumber != ls->fs->lastsetline) {
luaK_U(ls, SETLINE, ls->linenumber, 0);
ls->fs->lastsetline = ls->linenumber;
}
}
static void check_match (LexState *ls, int what, int who, int where) {
if (ls->token != what)
error_unmatched(ls, what, who, where);
check_debugline(ls); /* to `mark' the `what' */
next(ls);
}
static int string_constant (LexState *ls, FuncState *fs, TaggedString *s) {
27 years ago
TProtoFunc *f = fs->f;
int c = s->constindex;
if (c >= f->nkstr || f->kstr[c] != s) {
luaM_growvector(ls->L, f->kstr, f->nkstr, 1, TaggedString *,
constantEM, MAXARG_U);
c = f->nkstr++;
f->kstr[c] = s;
27 years ago
s->constindex = c; /* hint for next time */
}
return c;
}
static void code_string (LexState *ls, TaggedString *s) {
luaK_kstr(ls, string_constant(ls, ls->fs, s));
}
static int checkname (LexState *ls) {
int sc;
if (ls->token != NAME)
luaK_error(ls, "<name> expected");
sc = string_constant(ls, ls->fs, ls->seminfo.ts);
next(ls);
return sc;
}
static TaggedString *str_checkname (LexState *ls) {
int i = checkname(ls); /* this call may realloc `f->consts' */
return ls->fs->f->kstr[i];
27 years ago
}
static void luaI_registerlocalvar (LexState *ls, TaggedString *varname,
27 years ago
int line) {
FuncState *fs = ls->fs;
if (fs->nvars != -1) { /* debug information? */
27 years ago
TProtoFunc *f = fs->f;
luaM_growvector(ls->L, f->locvars, fs->nvars, 1, LocVar, "", MAX_INT);
27 years ago
f->locvars[fs->nvars].varname = varname;
f->locvars[fs->nvars].line = line;
fs->nvars++;
}
}
static void luaI_unregisterlocalvar (LexState *ls, int line) {
luaI_registerlocalvar(ls, NULL, line);
27 years ago
}
static void store_localvar (LexState *ls, TaggedString *name, int n) {
FuncState *fs = ls->fs;
checklimit(ls, fs->nlocalvar+n+1, MAXLOCALS, "local variables");
fs->localvar[fs->nlocalvar+n] = name;
27 years ago
}
static void adjustlocalvars (LexState *ls, int nvars, int line) {
FuncState *fs = ls->fs;
int i;
fs->nlocalvar += nvars;
for (i=fs->nlocalvar-nvars; i<fs->nlocalvar; i++)
luaI_registerlocalvar(ls, fs->localvar[i], line);
27 years ago
}
static void add_localvar (LexState *ls, TaggedString *name) {
store_localvar(ls, name, 0);
adjustlocalvars(ls, 1, 0);
}
27 years ago
static int aux_localname (FuncState *fs, TaggedString *n) {
int i;
for (i=fs->nlocalvar-1; i >= 0; i--)
if (n == fs->localvar[i]) return i; /* local var index */
return -1; /* not found */
}
static void singlevar (LexState *ls, TaggedString *n, expdesc *var, int prev) {
27 years ago
FuncState *fs = prev ? ls->fs->prev : ls->fs;
int i = aux_localname(fs, n);
if (i >= 0) { /* local value? */
27 years ago
var->k = VLOCAL;
var->info = i;
}
else {
27 years ago
FuncState *level = fs;
while ((level = level->prev) != NULL) /* check shadowing */
27 years ago
if (aux_localname(level, n) >= 0)
luaX_syntaxerror(ls, "cannot access a variable in outer scope", n->str);
var->k = VGLOBAL;
var->info = string_constant(ls, fs, n);
27 years ago
}
}
static int indexupvalue (LexState *ls, TaggedString *n) {
FuncState *fs = ls->fs;
expdesc v;
27 years ago
int i;
singlevar(ls, n, &v, 1);
for (i=0; i<fs->nupvalues; i++) {
if (fs->upvalues[i].k == v.k && fs->upvalues[i].info == v.info)
return i;
}
/* new one */
++(fs->nupvalues);
checklimit(ls, fs->nupvalues, MAXUPVALUES, "upvalues");
27 years ago
fs->upvalues[i] = v; /* i = fs->nupvalues - 1 */
return i;
}
static void pushupvalue (LexState *ls, TaggedString *n) {
27 years ago
if (ls->fs->prev == NULL)
luaX_syntaxerror(ls, "cannot access upvalue in main", n->str);
if (aux_localname(ls->fs, n) >= 0)
luaX_syntaxerror(ls, "cannot access an upvalue in current scope", n->str);
luaK_U(ls, PUSHUPVALUE, indexupvalue(ls, n), 1);
27 years ago
}
static void adjust_mult_assign (LexState *ls, int nvars, listdesc *d) {
int diff = d->n - nvars;
if (d->n == 0 || !luaK_iscall(ls, d->info)) { /* list is empty or closed */
27 years ago
/* push or pop eventual difference between list lengths */
luaK_adjuststack(ls, diff);
27 years ago
}
else { /* list ends in a function call; must correct it */
27 years ago
diff--; /* do not count function call itself */
if (diff <= 0) { /* more variables than values? */
27 years ago
/* function call must provide extra values */
luaK_setcallreturns(ls, d->info, -diff);
27 years ago
}
else { /* more values than variables */
luaK_setcallreturns(ls, d->info, 0); /* call should provide no value */
luaK_adjuststack(ls, diff); /* pop eventual extra values */
27 years ago
}
}
}
static void code_args (LexState *ls, int nparams, int dots) {
FuncState *fs = ls->fs;
adjustlocalvars(ls, nparams, 0);
checklimit(ls, fs->nlocalvar, MAXPARAMS, "parameters");
nparams = fs->nlocalvar; /* `self' could be there already */
fs->f->numparams = nparams;
fs->f->is_vararg = dots;
if (!dots)
luaK_deltastack(ls, nparams);
27 years ago
else {
luaK_deltastack(ls, nparams+1);
add_localvar(ls, luaS_newfixed(ls->L, "arg"));
27 years ago
}
}
static int getvarname (LexState *ls, expdesc *var) {
switch (var->k) {
case VGLOBAL:
return var->info;
case VLOCAL:
return string_constant(ls, ls->fs, ls->fs->localvar[var->info]);
break;
default:
error_unexpected(ls); /* there is no `var name' */
return 0; /* to avoid warnings */
}
}
static void func_onstack (LexState *ls, FuncState *func) {
TProtoFunc *f = ls->fs->f;
27 years ago
int i;
for (i=0; i<func->nupvalues; i++)
luaK_2stack(ls, &func->upvalues[i]);
luaM_growvector(ls->L, f->kproto, f->nkproto, 1, TProtoFunc *,
constantEM, MAXARG_A);
f->kproto[f->nkproto++] = func->f;
luaK_deltastack(ls, 1); /* CLOSURE puts one extra element before popping */
luaK_AB(ls, CLOSURE, f->nkproto-1, func->nupvalues, -func->nupvalues);
27 years ago
}
static void init_state (LexState *ls, FuncState *fs, TaggedString *source) {
lua_State *L = ls->L;
TProtoFunc *f = luaF_newproto(ls->L);
27 years ago
fs->prev = ls->fs; /* linked list of funcstates */
ls->fs = fs;
fs->stacksize = 0;
fs->nlocalvar = 0;
fs->nupvalues = 0;
fs->lastsetline = 0;
fs->f = f;
f->source = source;
27 years ago
fs->pc = 0;
f->code = NULL;
f->maxstacksize = 0;
f->numparams = 0; /* default for main chunk */
f->is_vararg = 0; /* default for main chunk */
fs->nvars = (L->debug) ? 0 : -1; /* flag no debug information? */
/* push function (to avoid GC) */
tfvalue(L->top) = f;
ttype(L->top) = LUA_T_LPROTO;
incr_top;
27 years ago
}
27 years ago
static void close_func (LexState *ls) {
FuncState *fs = ls->fs;
TProtoFunc *f = fs->f;
luaK_0(ls, ENDCODE, 0);
luaM_reallocvector(ls->L, f->code, fs->pc, Instruction);
luaM_reallocvector(ls->L, f->kstr, f->nkstr, TaggedString *);
luaM_reallocvector(ls->L, f->knum, f->nknum, real);
luaM_reallocvector(ls->L, f->kproto, f->nkproto, TProtoFunc *);
if (fs->nvars != -1) { /* debug information? */
luaI_registerlocalvar(ls, NULL, -1); /* flag end of vector */
luaM_reallocvector(ls->L, f->locvars, fs->nvars, LocVar);
27 years ago
}
ls->fs = fs->prev;
ls->L->top--; /* pop function */
27 years ago
}
TProtoFunc *luaY_parser (lua_State *L, ZIO *z) {
27 years ago
struct LexState lexstate;
struct FuncState funcstate;
luaX_setinput(L, &lexstate, z);
init_state(&lexstate, &funcstate, luaS_new(L, zname(z)));
27 years ago
next(&lexstate); /* read first token */
chunk(&lexstate);
if (lexstate.token != EOS)
luaK_error(&lexstate, "<eof> expected");
27 years ago
close_func(&lexstate);
return funcstate.f;
}
/*============================================================*/
/* GRAMAR RULES */
/*============================================================*/
static void explist1 (LexState *ls, listdesc *d) {
expdesc v;
expr(ls, &v);
d->n = 1;
while (ls->token == ',') {
d->n++;
luaK_2stack(ls, &v);
next(ls);
expr(ls, &v);
}
luaK_2stack(ls, &v);
luaK_setcallreturns(ls, v.info, MULT_RET); /* default for explists */
d->info = v.info;
}
static void explist (LexState *ls, listdesc *d) {
switch (ls->token) {
case ELSE: case ELSEIF: case END: case UNTIL:
case EOS: case ';': case ')':
d->n = 0;
break;
default:
explist1(ls, d);
}
}
static void funcparams (LexState *ls, int slf) {
FuncState *fs = ls->fs;
int slevel = fs->stacksize - slf - 1; /* where is func in the stack */
27 years ago
switch (ls->token) {
case '(': { /* funcparams -> '(' explist ')' */
int line = ls->linenumber;
listdesc e;
next(ls);
explist(ls, &e);
check_match(ls, ')', '(', line);
#ifdef LUA_COMPAT_ARGRET
if (e.n > 0) /* arg list is not empty? */
luaK_setcallreturns(ls, e.pc, 1); /* last call returns only 1 value */
#endif
break;
}
27 years ago
case '{': /* funcparams -> constructor */
constructor(ls);
break;
27 years ago
case STRING: /* funcparams -> STRING */
code_string(ls, ls->seminfo.ts); /* must use `seminfo' before `next' */
27 years ago
next(ls);
break;
27 years ago
default:
luaK_error(ls, "function arguments expected");
break;
}
fs->stacksize = slevel; /* call will remove func and params */
luaK_AB(ls, CALL, slevel, 0, 0);
}
27 years ago
static void var_or_func_tail (LexState *ls, expdesc *v) {
for (;;) {
switch (ls->token) {
case '.': /* var_or_func_tail -> '.' NAME */
next(ls);
luaK_2stack(ls, v); /* `v' must be on stack */
luaK_kstr(ls, checkname(ls));
v->k = VINDEXED;
v->info = NOJUMPS;
break;
27 years ago
case '[': /* var_or_func_tail -> '[' exp1 ']' */
next(ls);
luaK_2stack(ls, v); /* `v' must be on stack */
v->k = VINDEXED;
v->info = exp1(ls);
check(ls, ']');
break;
27 years ago
case ':': { /* var_or_func_tail -> ':' NAME funcparams */
int name;
next(ls);
name = checkname(ls);
luaK_2stack(ls, v); /* `v' must be on stack */
luaK_U(ls, PUSHSELF, name, 1);
funcparams(ls, 1);
v->k = VEXP;
v->info = NOJUMPS;
break;
}
27 years ago
case '(': case STRING: case '{': /* var_or_func_tail -> funcparams */
luaK_2stack(ls, v); /* `v' must be on stack */
funcparams(ls, 0);
v->k = VEXP;
v->info = NOJUMPS;
break;
default: return; /* should be follow... */
}
27 years ago
}
}
static void var_or_func (LexState *ls, expdesc *v) {
/* var_or_func -> ['%'] NAME var_or_func_tail */
if (optional(ls, '%')) { /* upvalue? */
pushupvalue(ls, str_checkname(ls));
v->k = VEXP;
v->info = NOJUMPS;
}
else /* variable name */
singlevar(ls, str_checkname(ls), v, 0);
var_or_func_tail(ls, v);
27 years ago
}
/*
** {======================================================================
** Rules for Constructors
** =======================================================================
*/
static void recfield (LexState *ls) {
/* recfield -> (NAME | '['exp1']') = exp1 */
switch (ls->token) {
case NAME:
luaK_kstr(ls, checkname(ls));
break;
case '[':
next(ls);
exp1(ls);
check(ls, ']');
break;
default: luaK_error(ls, "<name> or `[' expected");
}
check(ls, '=');
27 years ago
exp1(ls);
}
static int recfields (LexState *ls) {
/* recfields -> { ',' recfield } [','] */
int n = 1; /* one has been read before */
int mod_n = 1; /* mod_n == n%RFIELDS_PER_FLUSH */
while (ls->token == ',') {
27 years ago
next(ls);
if (ls->token == ';' || ls->token == '}')
break;
recfield(ls);
n++;
if (++mod_n == RFIELDS_PER_FLUSH) {
luaK_U(ls, SETMAP, RFIELDS_PER_FLUSH-1, -2*RFIELDS_PER_FLUSH);
mod_n = 0;
}
27 years ago
}
if (mod_n)
luaK_U(ls, SETMAP, mod_n-1, -2*mod_n);
return n;
27 years ago
}
static int listfields (LexState *ls) {
/* listfields -> { ',' exp1 } [','] */
int n = 1; /* one has been read before */
int mod_n = 1; /* mod_n == n%LFIELDS_PER_FLUSH */
while (ls->token == ',') {
next(ls);
if (ls->token == ';' || ls->token == '}')
break;
exp1(ls);
n++;
checklimit(ls, n, MAXARG_A*LFIELDS_PER_FLUSH,
"items in a list initializer");
if (++mod_n == LFIELDS_PER_FLUSH) {
luaK_AB(ls, SETLIST, n/LFIELDS_PER_FLUSH - 1, LFIELDS_PER_FLUSH-1,
-LFIELDS_PER_FLUSH);
mod_n = 0;
}
}
if (mod_n > 0)
luaK_AB(ls, SETLIST, n/LFIELDS_PER_FLUSH, mod_n-1, -mod_n);
return n;
27 years ago
}
static void constructor_part (LexState *ls, constdesc *cd) {
switch (ls->token) {
case ';': case '}': /* constructor_part -> empty */
cd->n = 0;
cd->k = ls->token;
return;
case NAME: {
expdesc v;
expr(ls, &v);
if (ls->token == '=') {
luaK_kstr(ls, getvarname(ls, &v));
next(ls); /* skip '=' */
exp1(ls);
cd->n = recfields(ls);
cd->k = 1; /* record */
}
else {
luaK_2stack(ls, &v);
cd->n = listfields(ls);
cd->k = 0; /* list */
}
break;
}
case '[': /* constructor_part -> recfield recfields */
recfield(ls);
cd->n = recfields(ls);
cd->k = 1; /* record */
break;
default: /* constructor_part -> exp1 listfields */
exp1(ls);
cd->n = listfields(ls);
cd->k = 0; /* list */
break;
27 years ago
}
}
static void constructor (LexState *ls) {
/* constructor -> '{' constructor_part [';' constructor_part] '}' */
int line = ls->linenumber;
int pc = luaK_U(ls, CREATETABLE, 0, 1);
int nelems;
constdesc cd;
check(ls, '{');
constructor_part(ls, &cd);
nelems = cd.n;
if (ls->token == ';') {
constdesc other_cd;
next(ls);
constructor_part(ls, &other_cd);
if (cd.k == other_cd.k) /* repeated parts? */
luaK_error(ls, "invalid constructor syntax");
nelems += other_cd.n;
27 years ago
}
check_match(ls, '}', '{', line);
/* set initial table size */
ls->fs->f->code[pc] = SETARG_U(ls->fs->f->code[pc], nelems);
27 years ago
}
/* }====================================================================== */
27 years ago
/*
** {======================================================================
** Expression parsing
** =======================================================================
27 years ago
*/
static void simpleexp (LexState *ls, expdesc *v) {
27 years ago
check_debugline(ls);
switch (ls->token) {
case NUMBER: { /* simpleexp -> NUMBER */
real r = ls->seminfo.r;
27 years ago
next(ls);
luaK_number(ls, r);
27 years ago
break;
}
27 years ago
case STRING: /* simpleexp -> STRING */
code_string(ls, ls->seminfo.ts); /* must use `seminfo' before `next' */
27 years ago
next(ls);
break;
case NIL: /* simpleexp -> NIL */
luaK_adjuststack(ls, -1);
27 years ago
next(ls);
break;
case '{': /* simpleexp -> constructor */
constructor(ls);
27 years ago
break;
case FUNCTION: /* simpleexp -> FUNCTION body */
27 years ago
next(ls);
body(ls, 0, ls->linenumber);
break;
case '(': /* simpleexp -> '(' expr ')' */
next(ls);
expr(ls, v);
check(ls, ')');
return;
27 years ago
case NAME: case '%':
var_or_func(ls, v);
return;
27 years ago
default:
luaK_error(ls, "<expression> expected");
return;
}
v->k = VEXP;
v->info = NOJUMPS;
}
static int exp1 (LexState *ls) {
expdesc v;
expr(ls, &v);
luaK_2stack(ls, &v);
return v.info;
}
/*
** gets priorities of an operator. Returns the priority to the left, and
** sets `rp' to the priority to the right.
*/
static int get_priority (int op, int *rp) {
switch (op) {
case AND: case OR:
*rp = 1; return 1;
case EQ: case NE:
case '>': case '<': case LE: case GE:
*rp = 2; return 2;
case CONC:
*rp = 4; return 4; /* left associative (?) */
case '+': case '-':
*rp = 5; return 5;
case '*': case '/':
*rp = 6; return 6;
#define UNARY_PRIORITY 7
case '^':
*rp = 8; return 9; /* right associative */
default:
*rp = -1; return -1;
27 years ago
}
}
/*
** expr -> simplexep | (NOT | '-') expr | expr binop expr
** where `binop' is any binary operator with a priority higher than `limit'
*/
static void operator_expr (LexState *ls, expdesc *v, int limit) {
int rp;
if (ls->token == '-' || ls->token == NOT) {
int op = ls->token; /* operator */
next(ls);
operator_expr(ls, v, UNARY_PRIORITY);
luaK_prefix(ls, op, v);
}
else simpleexp(ls, v);
/* expand while following operators have a priority higher than `limit' */
while (get_priority(ls->token, &rp) > limit) {
int op = ls->token; /* operator */
expdesc v2;
luaK_infix(ls, v);
next(ls);
operator_expr(ls, &v2, rp);
luaK_posfix(ls, op, v, &v2);
27 years ago
}
}
static void expr (LexState *ls, expdesc *v) {
operator_expr(ls, v, -1);
}
/* }==================================================================== */
27 years ago
/*
** {======================================================================
** Rules for Statements
** =======================================================================
*/
static void block (LexState *ls) {
/* block -> chunk */
FuncState *fs = ls->fs;
int nlocalvar = fs->nlocalvar;
chunk(ls);
luaK_adjuststack(ls, fs->nlocalvar - nlocalvar);
for (; fs->nlocalvar > nlocalvar; fs->nlocalvar--)
luaI_unregisterlocalvar(ls, fs->lastsetline);
27 years ago
}
static int assignment (LexState *ls, expdesc *v, int nvars) {
int left = 0;
checklimit(ls, nvars, MAXVARSLH, "variables in a multiple assignment");
if (ls->token == ',') { /* assignment -> ',' NAME assignment */
expdesc nv;
next(ls);
var_or_func(ls, &nv);
if (nv.k == VEXP)
luaK_error(ls, "syntax error");
left = assignment(ls, &nv, nvars+1);
27 years ago
}
else { /* assignment -> '=' explist1 */
listdesc d;
if (ls->token != '=')
error_unexpected(ls);
27 years ago
next(ls);
explist1(ls, &d);
adjust_mult_assign(ls, nvars, &d);
27 years ago
}
if (v->k != VINDEXED || left+(nvars-1) == 0) {
/* global/local var or indexed var without values in between */
luaK_storevar(ls, v);
}
else { /* indexed var with values in between*/
luaK_U(ls, SETTABLE, left+(nvars-1), -1);
left += 2; /* table&index are not popped, because they aren't on top */
27 years ago
}
return left;
27 years ago
}
/* maximum size of a while condition */
#ifndef MAX_WHILE_EXP
#define MAX_WHILE_EXP 200 /* arbitrary limit */
#endif
static void whilestat (LexState *ls, int line) {
/* whilestat -> WHILE exp1 DO block END */
Instruction buffer[MAX_WHILE_EXP];
FuncState *fs = ls->fs;
int while_init = fs->pc;
int cond_size;
int i;
next(ls); /* skip WHILE */
exp1(ls); /* read condition */
cond_size = fs->pc - while_init;
/* save condition (to move it to after body) */
if (cond_size > MAX_WHILE_EXP)
luaK_error(ls, "while condition too complex");
for (i=0; i<cond_size; i++) buffer[i] = fs->f->code[while_init+i];
/* go back to state prior condition */
fs->pc = while_init;
luaK_deltastack(ls, -1);
luaK_S(ls, JMP, 0, 0); /* initial jump to condition */
check(ls, DO);
block(ls);
check_match(ls, END, WHILE, line);
luaK_fixjump(ls, while_init, fs->pc);
/* copy condition to new position, and correct stack */
for (i=0; i<cond_size; i++) luaK_primitivecode(ls, buffer[i]);
luaK_deltastack(ls, 1);
luaK_fixjump(ls, luaK_S(ls, IFTJMP, 0, -1), while_init+1);
}
27 years ago
static void repeatstat (LexState *ls, int line) {
/* repeatstat -> REPEAT block UNTIL exp1 */
FuncState *fs = ls->fs;
int repeat_init = fs->pc;
next(ls);
block(ls);
check_match(ls, UNTIL, REPEAT, line);
exp1(ls);
luaK_fixjump(ls, luaK_S(ls, IFFJMP, 0, -1), repeat_init);
27 years ago
}
27 years ago
static int localnamelist (LexState *ls) {
/* localnamelist -> NAME {',' NAME} */
int i = 1;
store_localvar(ls, str_checkname(ls), 0);
27 years ago
while (ls->token == ',') {
next(ls);
store_localvar(ls, str_checkname(ls), i++);
27 years ago
}
return i;
}
27 years ago
static void decinit (LexState *ls, listdesc *d) {
/* decinit -> ['=' explist1] */
if (ls->token == '=') {
next(ls);
explist1(ls, d);
}
else
27 years ago
d->n = 0;
}
static void localstat (LexState *ls) {
/* stat -> LOCAL localnamelist decinit */
FuncState *fs = ls->fs;
listdesc d;
int nvars;
check_debugline(ls);
next(ls);
nvars = localnamelist(ls);
decinit(ls, &d);
adjustlocalvars(ls, nvars, fs->lastsetline);
adjust_mult_assign(ls, nvars, &d);
}
static int funcname (LexState *ls, expdesc *v) {
/* funcname -> NAME [':' NAME | '.' NAME] */
int needself = 0;
singlevar(ls, str_checkname(ls), v, 0);
if (ls->token == ':' || ls->token == '.') {
needself = (ls->token == ':');
27 years ago
next(ls);
luaK_2stack(ls, v);
luaK_kstr(ls, checkname(ls));
v->k = VINDEXED;
27 years ago
}
return needself;
}
static int funcstat (LexState *ls, int line) {
/* funcstat -> FUNCTION funcname body */
int needself;
expdesc v;
if (ls->fs->prev) /* inside other function? */
return 0;
check_debugline(ls);
next(ls);
needself = funcname(ls, &v);
body(ls, needself, line);
luaK_storevar(ls, &v);
return 1;
}
static void namestat (LexState *ls) {
/* stat -> func | ['%'] NAME assignment */
expdesc v;
check_debugline(ls);
var_or_func(ls, &v);
if (v.k == VEXP) { /* stat -> func */
if (!luaK_iscall(ls, v.info)) /* is just an upvalue? */
luaK_error(ls, "syntax error");
luaK_setcallreturns(ls, v.info, 0); /* call statement uses no results */
27 years ago
}
else { /* stat -> ['%'] NAME assignment */
int left = assignment(ls, &v, 1);
luaK_adjuststack(ls, left); /* remove eventual garbage left on stack */
27 years ago
}
}
static void ifpart (LexState *ls, int line) {
/* ifpart -> cond THEN block [ELSE block | ELSEIF ifpart] */
FuncState *fs = ls->fs;
int c; /* address of the conditional jump */
int je; /* address of the unconditional jump (to skip `else' part) */
int elseinit;
next(ls); /* skip IF or ELSEIF */
exp1(ls); /* cond */
c = luaK_S(ls, IFFJMP, 0, -1); /* jump `then' if `cond' is false */
check(ls, THEN);
block(ls); /* `then' part */
je = luaK_S(ls, JMP, 0, 0); /* jump `else' part after `then' */
elseinit = fs->pc;
if (ls->token == ELSEIF)
ifpart(ls, line);
else {
if (optional(ls, ELSE))
block(ls); /* `else' part */
check_match(ls, END, IF, line);
27 years ago
}
if (fs->pc > elseinit) /* is there an `else' part? */
luaK_fixjump(ls, je, fs->pc); /* last jump jumps over it */
else {
fs->pc--; /* remove last jump */
elseinit--; /* first jump will be smaller */
LUA_ASSERT(L, fs->pc == je, "jump out of place");
}
luaK_fixjump(ls, c, elseinit); /* fix first jump to `else' part */
27 years ago
}
static int stat (LexState *ls) {
int line = ls->linenumber; /* may be needed for error messages */
switch (ls->token) {
case IF: /* stat -> IF ifpart END */
ifpart(ls, line);
return 1;
case WHILE: /* stat -> whilestat */
whilestat(ls, line);
return 1;
case DO: { /* stat -> DO block END */
next(ls);
block(ls);
check_match(ls, END, DO, line);
return 1;
}
case REPEAT: /* stat -> repeatstat */
repeatstat(ls, line);
return 1;
case FUNCTION: /* stat -> funcstat */
return funcstat(ls, line);
case LOCAL: /* stat -> localstat */
localstat(ls);
return 1;
case NAME: case '%': /* stat -> namestat */
namestat(ls);
return 1;
case RETURN: case ';': case ELSE: case ELSEIF:
case END: case UNTIL: case EOS: /* `stat' follow */
return 0;
default:
error_unexpected(ls);
return 0; /* to avoid warnings */
27 years ago
}
}
static void parlist (LexState *ls) {
int nparams = 0;
int dots = 0;
27 years ago
switch (ls->token) {
case DOTS: /* parlist -> DOTS */
next(ls);
dots = 1;
break;
27 years ago
case NAME: /* parlist, tailparlist -> NAME [',' tailparlist] */
init:
store_localvar(ls, str_checkname(ls), nparams++);
if (ls->token == ',') {
next(ls);
switch (ls->token) {
case DOTS: /* tailparlist -> DOTS */
next(ls);
dots = 1;
27 years ago
break;
case NAME: /* tailparlist -> NAME [',' tailparlist] */
goto init;
default: luaK_error(ls, "<name> or `...' expected");
27 years ago
}
}
break;
case ')': break; /* parlist -> empty */
27 years ago
default: luaK_error(ls, "<name> or `...' expected");
27 years ago
}
code_args(ls, nparams, dots);
27 years ago
}
static void body (LexState *ls, int needself, int line) {
/* body -> '(' parlist ')' chunk END */
FuncState new_fs;
init_state(ls, &new_fs, ls->fs->f->source);
new_fs.f->lineDefined = line;
check(ls, '(');
if (needself)
add_localvar(ls, luaS_newfixed(ls->L, "self"));
parlist(ls);
check(ls, ')');
chunk(ls);
check_match(ls, END, FUNCTION, line);
close_func(ls);
func_onstack(ls, &new_fs);
27 years ago
}
static void ret (LexState *ls) {
/* ret -> [RETURN explist sc] */
if (ls->token == RETURN) {
listdesc e;
check_debugline(ls);
next(ls);
explist(ls, &e);
luaK_retcode(ls, ls->fs->nlocalvar, &e);
ls->fs->stacksize = ls->fs->nlocalvar; /* removes all temp values */
optional(ls, ';');
27 years ago
}
}
/* }====================================================================== */
27 years ago
static void chunk (LexState *ls) {
/* chunk -> { stat [;] } ret */
while (stat(ls)) {
LUA_ASSERT(ls->L, ls->fs->stacksize == ls->fs->nlocalvar,
"stack size != # local vars");
optional(ls, ';');
27 years ago
}
ret(ls); /* optional return */
27 years ago
}