2009-05-21 19:01:41 +00:00
|
|
|
/*
|
2014-04-02 18:46:06 +00:00
|
|
|
** $Id: ldebug.c,v 2.29.1.6 2008/05/08 16:56:26 roberto Exp $
|
2009-05-21 19:01:41 +00:00
|
|
|
** Debug Interface
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
|
|
#define ldebug_c
|
|
|
|
#define LUA_CORE
|
|
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
|
|
|
|
#include "lapi.h"
|
|
|
|
#include "lcode.h"
|
|
|
|
#include "ldebug.h"
|
|
|
|
#include "ldo.h"
|
|
|
|
#include "lfunc.h"
|
|
|
|
#include "lobject.h"
|
|
|
|
#include "lopcodes.h"
|
|
|
|
#include "lstate.h"
|
|
|
|
#include "lstring.h"
|
|
|
|
#include "ltable.h"
|
|
|
|
#include "ltm.h"
|
|
|
|
#include "lvm.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name);
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int currentpc (lua_State *L, CallInfo *ci) {
|
|
|
|
if (!isLua(ci)) return -1; /* function is not a Lua function? */
|
|
|
|
if (ci == L->ci)
|
|
|
|
ci->savedpc = L->savedpc;
|
|
|
|
return pcRel(ci->savedpc, ci_func(ci)->l.p);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int currentline (lua_State *L, CallInfo *ci) {
|
|
|
|
int pc = currentpc(L, ci);
|
|
|
|
if (pc < 0)
|
|
|
|
return -1; /* only active lua functions have current-line information */
|
|
|
|
else
|
|
|
|
return getline(ci_func(ci)->l.p, pc);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** this function can be called asynchronous (e.g. during a signal)
|
|
|
|
*/
|
|
|
|
LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask, int count) {
|
|
|
|
if (func == NULL || mask == 0) { /* turn off hooks? */
|
|
|
|
mask = 0;
|
|
|
|
func = NULL;
|
|
|
|
}
|
|
|
|
L->hook = func;
|
|
|
|
L->basehookcount = count;
|
|
|
|
resethookcount(L);
|
|
|
|
L->hookmask = cast_byte(mask);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API lua_Hook lua_gethook (lua_State *L) {
|
|
|
|
return L->hook;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_gethookmask (lua_State *L) {
|
|
|
|
return L->hookmask;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_gethookcount (lua_State *L) {
|
|
|
|
return L->basehookcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) {
|
|
|
|
int status;
|
|
|
|
CallInfo *ci;
|
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
for (ci = L->ci; level > 0 && ci > L->base_ci; ci--) {
|
2009-05-21 19:01:41 +00:00
|
|
|
level--;
|
2014-04-02 18:46:06 +00:00
|
|
|
if (f_isLua(ci)) /* Lua function? */
|
|
|
|
level -= ci->tailcalls; /* skip lost tail calls */
|
|
|
|
}
|
|
|
|
if (level == 0 && ci > L->base_ci) { /* level found? */
|
2009-05-21 19:01:41 +00:00
|
|
|
status = 1;
|
2014-04-02 18:46:06 +00:00
|
|
|
ar->i_ci = cast_int(ci - L->base_ci);
|
|
|
|
}
|
|
|
|
else if (level < 0) { /* level is of a lost tail call? */
|
|
|
|
status = 1;
|
|
|
|
ar->i_ci = 0;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
else status = 0; /* no such level */
|
|
|
|
lua_unlock(L);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static Proto *getluaproto (CallInfo *ci) {
|
|
|
|
return (isLua(ci) ? ci_func(ci)->l.p : NULL);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static const char *findlocal (lua_State *L, CallInfo *ci, int n) {
|
|
|
|
const char *name;
|
|
|
|
Proto *fp = getluaproto(ci);
|
|
|
|
if (fp && (name = luaF_getlocalname(fp, n, currentpc(L, ci))) != NULL)
|
|
|
|
return name; /* is a local variable in a Lua function */
|
2009-05-21 19:01:41 +00:00
|
|
|
else {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId limit = (ci == L->ci) ? L->top : (ci+1)->func;
|
|
|
|
if (limit - ci->base >= n && n > 0) /* is 'n' inside 'ci' stack? */
|
|
|
|
return "(*temporary)";
|
2009-05-21 19:01:41 +00:00
|
|
|
else
|
2014-04-02 18:46:06 +00:00
|
|
|
return NULL;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) {
|
2014-04-02 18:46:06 +00:00
|
|
|
CallInfo *ci = L->base_ci + ar->i_ci;
|
|
|
|
const char *name = findlocal(L, ci, n);
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_lock(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
if (name)
|
|
|
|
luaA_pushobject(L, ci->base + (n - 1));
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_unlock(L);
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) {
|
2014-04-02 18:46:06 +00:00
|
|
|
CallInfo *ci = L->base_ci + ar->i_ci;
|
|
|
|
const char *name = findlocal(L, ci, n);
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_lock(L);
|
|
|
|
if (name)
|
2014-04-02 18:46:06 +00:00
|
|
|
setobjs2s(L, ci->base + (n - 1), L->top - 1);
|
2009-05-21 19:01:41 +00:00
|
|
|
L->top--; /* pop value */
|
|
|
|
lua_unlock(L);
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void funcinfo (lua_Debug *ar, Closure *cl) {
|
2014-04-02 18:46:06 +00:00
|
|
|
if (cl->c.isC) {
|
2009-05-21 19:01:41 +00:00
|
|
|
ar->source = "=[C]";
|
|
|
|
ar->linedefined = -1;
|
|
|
|
ar->lastlinedefined = -1;
|
|
|
|
ar->what = "C";
|
|
|
|
}
|
|
|
|
else {
|
2014-04-02 18:46:06 +00:00
|
|
|
ar->source = getstr(cl->l.p->source);
|
|
|
|
ar->linedefined = cl->l.p->linedefined;
|
|
|
|
ar->lastlinedefined = cl->l.p->lastlinedefined;
|
2009-05-21 19:01:41 +00:00
|
|
|
ar->what = (ar->linedefined == 0) ? "main" : "Lua";
|
|
|
|
}
|
|
|
|
luaO_chunkid(ar->short_src, ar->source, LUA_IDSIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static void info_tailcall (lua_Debug *ar) {
|
|
|
|
ar->name = ar->namewhat = "";
|
|
|
|
ar->what = "tail";
|
|
|
|
ar->lastlinedefined = ar->linedefined = ar->currentline = -1;
|
|
|
|
ar->source = "=(tail call)";
|
|
|
|
luaO_chunkid(ar->short_src, ar->source, LUA_IDSIZE);
|
|
|
|
ar->nups = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-21 19:01:41 +00:00
|
|
|
static void collectvalidlines (lua_State *L, Closure *f) {
|
2014-04-02 18:46:06 +00:00
|
|
|
if (f == NULL || f->c.isC) {
|
2009-05-21 19:01:41 +00:00
|
|
|
setnilvalue(L->top);
|
|
|
|
}
|
|
|
|
else {
|
2014-04-02 18:46:06 +00:00
|
|
|
Table *t = luaH_new(L, 0, 0);
|
2019-08-05 05:03:08 +00:00
|
|
|
#ifdef LUA_OPTIMIZE_DEBUG
|
|
|
|
int line = 0;
|
|
|
|
unsigned char *p = f->l.p->packedlineinfo;
|
|
|
|
if (p) {
|
|
|
|
for (; *p && *p != INFO_FILL_BYTE; ) {
|
|
|
|
if (*p & INFO_DELTA_MASK) { /* line delta */
|
|
|
|
int delta = *p & INFO_DELTA_6BITS;
|
|
|
|
unsigned char sign = *p++ & INFO_SIGN_MASK;
|
|
|
|
int shift;
|
|
|
|
for (shift = 6; *p & INFO_DELTA_MASK; p++, shift += 7) {
|
|
|
|
delta += (*p & INFO_DELTA_7BITS)<<shift;
|
|
|
|
}
|
|
|
|
line += sign ? -delta : delta+2;
|
|
|
|
} else {
|
|
|
|
line++;
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
setbvalue(luaH_setnum(L, t, line), 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
int *lineinfo = f->l.p->lineinfo;
|
2014-04-02 18:46:06 +00:00
|
|
|
int i;
|
|
|
|
for (i=0; i<f->l.p->sizelineinfo; i++)
|
|
|
|
setbvalue(luaH_setnum(L, t, lineinfo[i]), 1);
|
2019-08-05 05:03:08 +00:00
|
|
|
#endif
|
|
|
|
sethvalue(L, L->top, t);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
incr_top(L);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-05 05:03:08 +00:00
|
|
|
#ifdef LUA_OPTIMIZE_DEBUG
|
|
|
|
/*
|
|
|
|
* This may seem expensive but this is only accessed frequently in traceexec
|
|
|
|
* and the while loop will be executed roughly half the number of non-blank
|
|
|
|
* source lines in the Lua function and these tend to be short.
|
|
|
|
*/
|
|
|
|
LUAI_FUNC int luaG_getline (const Proto *f, int pc) {
|
|
|
|
int line = 0, thispc = 0, nextpc;
|
|
|
|
unsigned char *p;
|
|
|
|
|
|
|
|
for (p = f->packedlineinfo; *p && *p != INFO_FILL_BYTE;) {
|
|
|
|
if (*p & INFO_DELTA_MASK) { /* line delta */
|
|
|
|
int delta = *p & INFO_DELTA_6BITS;
|
|
|
|
unsigned char sign = *p++ & INFO_SIGN_MASK;
|
|
|
|
int shift;
|
|
|
|
for (shift = 6; *p & INFO_DELTA_MASK; p++, shift += 7) {
|
|
|
|
delta += (*p & INFO_DELTA_7BITS)<<shift;
|
|
|
|
}
|
|
|
|
line += sign ? -delta : delta+2;
|
|
|
|
} else {
|
|
|
|
line++;
|
|
|
|
}
|
|
|
|
lua_assert(*p<127);
|
|
|
|
nextpc = thispc + *p++;
|
|
|
|
if (thispc <= pc && pc < nextpc) {
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
thispc = nextpc;
|
|
|
|
}
|
|
|
|
lua_assert(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int stripdebug (lua_State *L, Proto *f, const int level) {
|
|
|
|
int len = 0;
|
|
|
|
TString* dummy;
|
|
|
|
switch (level) {
|
|
|
|
case 3:
|
|
|
|
len += f->sizelineinfo;
|
|
|
|
f->packedlineinfo = luaM_freearray(L, f->packedlineinfo, f->sizelineinfo, unsigned char);
|
2019-08-08 13:07:09 +00:00
|
|
|
f->sizelineinfo = 0;
|
2019-08-05 05:03:08 +00:00
|
|
|
case 2:
|
|
|
|
len += f->sizelocvars * (sizeof(struct LocVar) + sizeof(dummy->tsv) + sizeof(struct LocVar *));
|
|
|
|
f->locvars = luaM_freearray(L, f->locvars, f->sizelocvars, struct LocVar);
|
|
|
|
f->upvalues = luaM_freearray(L, f->upvalues, f->sizeupvalues, TString *);
|
|
|
|
len += f->sizelocvars * (sizeof(struct LocVar) + sizeof(dummy->tsv) + sizeof(struct LocVar *)) +
|
|
|
|
f->sizeupvalues * (sizeof(dummy->tsv) + sizeof(TString *));
|
|
|
|
f->sizelocvars = 0;
|
|
|
|
f->sizeupvalues = 0;
|
|
|
|
case 1:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This is a recursive function so it's stack size has been kept to a minimum! */
|
|
|
|
LUAI_FUNC int luaG_stripdebug (lua_State *L, Proto *f, int level, int recv){
|
|
|
|
int len = 0, i;
|
|
|
|
#ifndef LUA_OPTIMIZE_DEBUG_USER /* gcc doesn't realize level can't be changed */
|
|
|
|
level = LUA_OPTIMIZE_DEBUG;
|
|
|
|
#endif
|
|
|
|
if (recv > 0 && f->sizep != 0) {
|
|
|
|
/* recv limits recursion depth */
|
|
|
|
for(i=0;i<f->sizep;i++) len += luaG_stripdebug(L, f->p[i], level, --recv);
|
|
|
|
}
|
|
|
|
len += stripdebug (L, f, level);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-05-21 19:01:41 +00:00
|
|
|
static int auxgetinfo (lua_State *L, const char *what, lua_Debug *ar,
|
2014-04-02 18:46:06 +00:00
|
|
|
Closure *f, CallInfo *ci) {
|
2009-05-21 19:01:41 +00:00
|
|
|
int status = 1;
|
2014-04-02 18:46:06 +00:00
|
|
|
if (f == NULL) {
|
|
|
|
info_tailcall(ar);
|
|
|
|
return status;
|
|
|
|
}
|
2009-05-21 19:01:41 +00:00
|
|
|
for (; *what; what++) {
|
|
|
|
switch (*what) {
|
|
|
|
case 'S': {
|
|
|
|
funcinfo(ar, f);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'l': {
|
2014-04-02 18:46:06 +00:00
|
|
|
ar->currentline = (ci) ? currentline(L, ci) : -1;
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'u': {
|
2014-04-02 18:46:06 +00:00
|
|
|
ar->nups = f->c.nupvalues;
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'n': {
|
2014-04-02 18:46:06 +00:00
|
|
|
ar->namewhat = (ci) ? getfuncname(L, ci, &ar->name) : NULL;
|
2009-05-21 19:01:41 +00:00
|
|
|
if (ar->namewhat == NULL) {
|
|
|
|
ar->namewhat = ""; /* not found */
|
|
|
|
ar->name = NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'L':
|
|
|
|
case 'f': /* handled by lua_getinfo */
|
|
|
|
break;
|
|
|
|
default: status = 0; /* invalid option */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) {
|
|
|
|
int status;
|
2014-04-02 18:46:06 +00:00
|
|
|
Closure *f = NULL;
|
|
|
|
CallInfo *ci = NULL;
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_lock(L);
|
|
|
|
if (*what == '>') {
|
2014-04-02 18:46:06 +00:00
|
|
|
StkId func = L->top - 1;
|
|
|
|
luai_apicheck(L, ttisfunction(func));
|
2009-05-21 19:01:41 +00:00
|
|
|
what++; /* skip the '>' */
|
2014-04-02 18:46:06 +00:00
|
|
|
f = clvalue(func);
|
2009-05-21 19:01:41 +00:00
|
|
|
L->top--; /* pop function */
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
else if (ar->i_ci != 0) { /* no tail call? */
|
|
|
|
ci = L->base_ci + ar->i_ci;
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_assert(ttisfunction(ci->func));
|
2014-04-02 18:46:06 +00:00
|
|
|
f = clvalue(ci->func);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
status = auxgetinfo(L, what, ar, f, ci);
|
2009-05-21 19:01:41 +00:00
|
|
|
if (strchr(what, 'f')) {
|
2014-04-02 18:46:06 +00:00
|
|
|
if (f == NULL) setnilvalue(L->top);
|
|
|
|
else setclvalue(L, L->top, f);
|
|
|
|
incr_top(L);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
if (strchr(what, 'L'))
|
2014-04-02 18:46:06 +00:00
|
|
|
collectvalidlines(L, f);
|
2009-05-21 19:01:41 +00:00
|
|
|
lua_unlock(L);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** {======================================================
|
2014-04-02 18:46:06 +00:00
|
|
|
** Symbolic Execution and code checker
|
2009-05-21 19:01:41 +00:00
|
|
|
** =======================================================
|
|
|
|
*/
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
#define check(x) if (!(x)) return 0;
|
2009-05-21 19:01:41 +00:00
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
#define checkjump(pt,pc) check(0 <= pc && pc < pt->sizecode)
|
2009-05-21 19:01:41 +00:00
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
#define checkreg(pt,reg) check((reg) < (pt)->maxstacksize)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int precheck (const Proto *pt) {
|
|
|
|
check(pt->maxstacksize <= MAXSTACK);
|
|
|
|
check(pt->numparams+(pt->is_vararg & VARARG_HASARG) <= pt->maxstacksize);
|
|
|
|
check(!(pt->is_vararg & VARARG_NEEDSARG) ||
|
|
|
|
(pt->is_vararg & VARARG_HASARG));
|
|
|
|
check(pt->sizeupvalues <= pt->nups);
|
2019-08-05 05:03:08 +00:00
|
|
|
#ifndef LUA_OPTIMIZE_DEBUG
|
2014-04-02 18:46:06 +00:00
|
|
|
check(pt->sizelineinfo == pt->sizecode || pt->sizelineinfo == 0);
|
2019-08-05 05:03:08 +00:00
|
|
|
#endif
|
2014-04-02 18:46:06 +00:00
|
|
|
check(pt->sizecode > 0 && GET_OPCODE(pt->code[pt->sizecode-1]) == OP_RETURN);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define checkopenop(pt,pc) luaG_checkopenop((pt)->code[(pc)+1])
|
|
|
|
|
|
|
|
int luaG_checkopenop (Instruction i) {
|
|
|
|
switch (GET_OPCODE(i)) {
|
|
|
|
case OP_CALL:
|
|
|
|
case OP_TAILCALL:
|
|
|
|
case OP_RETURN:
|
|
|
|
case OP_SETLIST: {
|
|
|
|
check(GETARG_B(i) == 0);
|
|
|
|
return 1;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
default: return 0; /* invalid instruction after an open call */
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int checkArgMode (const Proto *pt, int r, enum OpArgMask mode) {
|
|
|
|
switch (mode) {
|
|
|
|
case OpArgN: check(r == 0); break;
|
|
|
|
case OpArgU: break;
|
|
|
|
case OpArgR: checkreg(pt, r); break;
|
|
|
|
case OpArgK:
|
|
|
|
check(ISK(r) ? INDEXK(r) < pt->sizek : r < pt->maxstacksize);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static Instruction symbexec (const Proto *pt, int lastpc, int reg) {
|
2009-05-21 19:01:41 +00:00
|
|
|
int pc;
|
2014-04-02 18:46:06 +00:00
|
|
|
int last; /* stores position of last instruction that changed `reg' */
|
|
|
|
last = pt->sizecode-1; /* points to final return (a `neutral' instruction) */
|
|
|
|
check(precheck(pt));
|
2009-05-21 19:01:41 +00:00
|
|
|
for (pc = 0; pc < lastpc; pc++) {
|
2014-04-02 18:46:06 +00:00
|
|
|
Instruction i = pt->code[pc];
|
2009-05-21 19:01:41 +00:00
|
|
|
OpCode op = GET_OPCODE(i);
|
|
|
|
int a = GETARG_A(i);
|
2014-04-02 18:46:06 +00:00
|
|
|
int b = 0;
|
|
|
|
int c = 0;
|
|
|
|
check(op < NUM_OPCODES);
|
|
|
|
checkreg(pt, a);
|
|
|
|
switch (getOpMode(op)) {
|
|
|
|
case iABC: {
|
|
|
|
b = GETARG_B(i);
|
|
|
|
c = GETARG_C(i);
|
|
|
|
check(checkArgMode(pt, b, getBMode(op)));
|
|
|
|
check(checkArgMode(pt, c, getCMode(op)));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case iABx: {
|
|
|
|
b = GETARG_Bx(i);
|
|
|
|
if (getBMode(op) == OpArgK) check(b < pt->sizek);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case iAsBx: {
|
|
|
|
b = GETARG_sBx(i);
|
|
|
|
if (getBMode(op) == OpArgR) {
|
|
|
|
int dest = pc+1+b;
|
|
|
|
check(0 <= dest && dest < pt->sizecode);
|
|
|
|
if (dest > 0) {
|
|
|
|
int j;
|
|
|
|
/* check that it does not jump to a setlist count; this
|
|
|
|
is tricky, because the count from a previous setlist may
|
|
|
|
have the same value of an invalid setlist; so, we must
|
|
|
|
go all the way back to the first of them (if any) */
|
|
|
|
for (j = 0; j < dest; j++) {
|
|
|
|
Instruction d = pt->code[dest-1-j];
|
|
|
|
if (!(GET_OPCODE(d) == OP_SETLIST && GETARG_C(d) == 0)) break;
|
|
|
|
}
|
|
|
|
/* if 'j' is even, previous value is not a setlist (even if
|
|
|
|
it looks like one) */
|
|
|
|
check((j&1) == 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (testAMode(op)) {
|
|
|
|
if (a == reg) last = pc; /* change register `a' */
|
|
|
|
}
|
|
|
|
if (testTMode(op)) {
|
|
|
|
check(pc+2 < pt->sizecode); /* check skip */
|
|
|
|
check(GET_OPCODE(pt->code[pc+1]) == OP_JMP);
|
|
|
|
}
|
2009-05-21 19:01:41 +00:00
|
|
|
switch (op) {
|
2014-04-02 18:46:06 +00:00
|
|
|
case OP_LOADBOOL: {
|
|
|
|
if (c == 1) { /* does it jump? */
|
|
|
|
check(pc+2 < pt->sizecode); /* check its jump */
|
|
|
|
check(GET_OPCODE(pt->code[pc+1]) != OP_SETLIST ||
|
|
|
|
GETARG_C(pt->code[pc+1]) != 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2009-05-21 19:01:41 +00:00
|
|
|
case OP_LOADNIL: {
|
2014-04-02 18:46:06 +00:00
|
|
|
if (a <= reg && reg <= b)
|
|
|
|
last = pc; /* set registers from `a' to `b' */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_GETUPVAL:
|
|
|
|
case OP_SETUPVAL: {
|
|
|
|
check(b < pt->nups);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_GETGLOBAL:
|
|
|
|
case OP_SETGLOBAL: {
|
|
|
|
check(ttisstring(&pt->k[b]));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_SELF: {
|
|
|
|
checkreg(pt, a+1);
|
|
|
|
if (reg == a+1) last = pc;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_CONCAT: {
|
|
|
|
check(b < c); /* at least two operands */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_TFORLOOP: {
|
|
|
|
check(c >= 1); /* at least one result (control variable) */
|
|
|
|
checkreg(pt, a+2+c); /* space for results */
|
|
|
|
if (reg >= a+2) last = pc; /* affect all regs above its base */
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
case OP_FORLOOP:
|
|
|
|
case OP_FORPREP:
|
|
|
|
checkreg(pt, a+3);
|
|
|
|
/* go through */
|
|
|
|
case OP_JMP: {
|
|
|
|
int dest = pc+1+b;
|
|
|
|
/* not full check and jump is forward and do not skip `lastpc'? */
|
|
|
|
if (reg != NO_REG && pc < dest && dest <= lastpc)
|
|
|
|
pc += b; /* do the jump */
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_CALL:
|
|
|
|
case OP_TAILCALL: {
|
2014-04-02 18:46:06 +00:00
|
|
|
if (b != 0) {
|
|
|
|
checkreg(pt, a+b-1);
|
|
|
|
}
|
|
|
|
c--; /* c = num. returns */
|
|
|
|
if (c == LUA_MULTRET) {
|
|
|
|
check(checkopenop(pt, pc));
|
|
|
|
}
|
|
|
|
else if (c != 0)
|
|
|
|
checkreg(pt, a+c-1);
|
|
|
|
if (reg >= a) last = pc; /* affect all registers above base */
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
case OP_RETURN: {
|
|
|
|
b--; /* b = num. returns */
|
|
|
|
if (b > 0) checkreg(pt, a+b-1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_SETLIST: {
|
|
|
|
if (b > 0) checkreg(pt, a + b);
|
|
|
|
if (c == 0) {
|
|
|
|
pc++;
|
|
|
|
check(pc < pt->sizecode - 1);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
case OP_CLOSURE: {
|
|
|
|
int nup, j;
|
|
|
|
check(b < pt->sizep);
|
|
|
|
nup = pt->p[b]->nups;
|
|
|
|
check(pc + nup < pt->sizecode);
|
|
|
|
for (j = 1; j <= nup; j++) {
|
|
|
|
OpCode op1 = GET_OPCODE(pt->code[pc + j]);
|
|
|
|
check(op1 == OP_GETUPVAL || op1 == OP_MOVE);
|
|
|
|
}
|
|
|
|
if (reg != NO_REG) /* tracing? */
|
|
|
|
pc += nup; /* do not 'execute' these pseudo-instructions */
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
case OP_VARARG: {
|
|
|
|
check((pt->is_vararg & VARARG_ISVARARG) &&
|
|
|
|
!(pt->is_vararg & VARARG_NEEDSARG));
|
|
|
|
b--;
|
|
|
|
if (b == LUA_MULTRET) check(checkopenop(pt, pc));
|
|
|
|
checkreg(pt, a+b-1);
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
2014-04-02 18:46:06 +00:00
|
|
|
}
|
|
|
|
default: break;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
return pt->code[last];
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef check
|
|
|
|
#undef checkjump
|
|
|
|
#undef checkreg
|
|
|
|
|
|
|
|
/* }====================================================== */
|
|
|
|
|
|
|
|
|
|
|
|
int luaG_checkcode (const Proto *pt) {
|
|
|
|
return (symbexec(pt, pt->sizecode, NO_REG) != 0);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static const char *kname (Proto *p, int c) {
|
|
|
|
if (ISK(c) && ttisstring(&p->k[INDEXK(c)]))
|
|
|
|
return svalue(&p->k[INDEXK(c)]);
|
|
|
|
else
|
|
|
|
return "?";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const char *getobjname (lua_State *L, CallInfo *ci, int stackpos,
|
2009-05-21 19:01:41 +00:00
|
|
|
const char **name) {
|
2014-04-02 18:46:06 +00:00
|
|
|
if (isLua(ci)) { /* a Lua function? */
|
|
|
|
Proto *p = ci_func(ci)->l.p;
|
|
|
|
int pc = currentpc(L, ci);
|
|
|
|
Instruction i;
|
|
|
|
*name = luaF_getlocalname(p, stackpos+1, pc);
|
|
|
|
if (*name) /* is a local? */
|
|
|
|
return "local";
|
|
|
|
i = symbexec(p, pc, stackpos); /* try symbolic execution */
|
|
|
|
lua_assert(pc != -1);
|
|
|
|
switch (GET_OPCODE(i)) {
|
|
|
|
case OP_GETGLOBAL: {
|
|
|
|
int g = GETARG_Bx(i); /* global index */
|
|
|
|
lua_assert(ttisstring(&p->k[g]));
|
|
|
|
*name = svalue(&p->k[g]);
|
|
|
|
return "global";
|
|
|
|
}
|
2009-05-21 19:01:41 +00:00
|
|
|
case OP_MOVE: {
|
2014-04-02 18:46:06 +00:00
|
|
|
int a = GETARG_A(i);
|
|
|
|
int b = GETARG_B(i); /* move from `b' to `a' */
|
|
|
|
if (b < a)
|
|
|
|
return getobjname(L, ci, b, name); /* get name for `b' */
|
2009-05-21 19:01:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case OP_GETTABLE: {
|
|
|
|
int k = GETARG_C(i); /* key index */
|
2014-04-02 18:46:06 +00:00
|
|
|
*name = kname(p, k);
|
|
|
|
return "field";
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
case OP_GETUPVAL: {
|
2014-04-02 18:46:06 +00:00
|
|
|
int u = GETARG_B(i); /* upvalue index */
|
|
|
|
*name = p->upvalues ? getstr(p->upvalues[u]) : "?";
|
2009-05-21 19:01:41 +00:00
|
|
|
return "upvalue";
|
|
|
|
}
|
|
|
|
case OP_SELF: {
|
|
|
|
int k = GETARG_C(i); /* key index */
|
2014-04-02 18:46:06 +00:00
|
|
|
*name = kname(p, k);
|
2009-05-21 19:01:41 +00:00
|
|
|
return "method";
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
default: break;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
return NULL; /* no useful name found */
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name) {
|
2014-04-02 18:46:06 +00:00
|
|
|
Instruction i;
|
|
|
|
if ((isLua(ci) && ci->tailcalls > 0) || !isLua(ci - 1))
|
|
|
|
return NULL; /* calling function is not Lua (or is unknown) */
|
|
|
|
ci--; /* calling function */
|
|
|
|
i = ci_func(ci)->l.p->code[currentpc(L, ci)];
|
|
|
|
if (GET_OPCODE(i) == OP_CALL || GET_OPCODE(i) == OP_TAILCALL ||
|
|
|
|
GET_OPCODE(i) == OP_TFORLOOP)
|
|
|
|
return getobjname(L, ci, GETARG_A(i), name);
|
|
|
|
else
|
|
|
|
return NULL; /* no useful name can be found */
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
/* only ANSI way to check whether a pointer points to an array */
|
2009-05-21 19:01:41 +00:00
|
|
|
static int isinstack (CallInfo *ci, const TValue *o) {
|
|
|
|
StkId p;
|
2014-04-02 18:46:06 +00:00
|
|
|
for (p = ci->base; p < ci->top; p++)
|
2009-05-21 19:01:41 +00:00
|
|
|
if (o == p) return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
void luaG_typeerror (lua_State *L, const TValue *o, const char *op) {
|
2009-05-21 19:01:41 +00:00
|
|
|
const char *name = NULL;
|
2014-04-02 18:46:06 +00:00
|
|
|
const char *t = luaT_typenames[ttype(o)];
|
|
|
|
const char *kind = (isinstack(L->ci, o)) ?
|
|
|
|
getobjname(L, L->ci, cast_int(o - L->base), &name) :
|
|
|
|
NULL;
|
2009-05-21 19:01:41 +00:00
|
|
|
if (kind)
|
|
|
|
luaG_runerror(L, "attempt to %s %s " LUA_QS " (a %s value)",
|
|
|
|
op, kind, name, t);
|
|
|
|
else
|
|
|
|
luaG_runerror(L, "attempt to %s a %s value", op, t);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
void luaG_concaterror (lua_State *L, StkId p1, StkId p2) {
|
2009-05-21 19:01:41 +00:00
|
|
|
if (ttisstring(p1) || ttisnumber(p1)) p1 = p2;
|
|
|
|
lua_assert(!ttisstring(p1) && !ttisnumber(p1));
|
|
|
|
luaG_typeerror(L, p1, "concatenate");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
void luaG_aritherror (lua_State *L, const TValue *p1, const TValue *p2) {
|
2009-05-21 19:01:41 +00:00
|
|
|
TValue temp;
|
|
|
|
if (luaV_tonumber(p1, &temp) == NULL)
|
|
|
|
p2 = p1; /* first operand is wrong */
|
|
|
|
luaG_typeerror(L, p2, "perform arithmetic on");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
int luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2) {
|
|
|
|
const char *t1 = luaT_typenames[ttype(p1)];
|
|
|
|
const char *t2 = luaT_typenames[ttype(p2)];
|
|
|
|
if (t1[2] == t2[2])
|
2009-05-21 19:01:41 +00:00
|
|
|
luaG_runerror(L, "attempt to compare two %s values", t1);
|
|
|
|
else
|
|
|
|
luaG_runerror(L, "attempt to compare %s with %s", t1, t2);
|
2014-04-02 18:46:06 +00:00
|
|
|
return 0;
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void addinfo (lua_State *L, const char *msg) {
|
|
|
|
CallInfo *ci = L->ci;
|
|
|
|
if (isLua(ci)) { /* is Lua code? */
|
|
|
|
char buff[LUA_IDSIZE]; /* add file:line information */
|
2014-04-02 18:46:06 +00:00
|
|
|
int line = currentline(L, ci);
|
|
|
|
luaO_chunkid(buff, getstr(getluaproto(ci)->source), LUA_IDSIZE);
|
2019-09-07 01:19:42 +00:00
|
|
|
luaO_pushfstring(L, "%s: %d: %s", buff, line, msg);
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
void luaG_errormsg (lua_State *L) {
|
2009-05-21 19:01:41 +00:00
|
|
|
if (L->errfunc != 0) { /* is there an error handling function? */
|
|
|
|
StkId errfunc = restorestack(L, L->errfunc);
|
|
|
|
if (!ttisfunction(errfunc)) luaD_throw(L, LUA_ERRERR);
|
|
|
|
setobjs2s(L, L->top, L->top - 1); /* move argument */
|
|
|
|
setobjs2s(L, L->top - 1, errfunc); /* push function */
|
2014-04-02 18:46:06 +00:00
|
|
|
incr_top(L);
|
|
|
|
luaD_call(L, L->top - 2, 1); /* call it */
|
2009-05-21 19:01:41 +00:00
|
|
|
}
|
|
|
|
luaD_throw(L, LUA_ERRRUN);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
void luaG_runerror (lua_State *L, const char *fmt, ...) {
|
2009-05-21 19:01:41 +00:00
|
|
|
va_list argp;
|
|
|
|
va_start(argp, fmt);
|
|
|
|
addinfo(L, luaO_pushvfstring(L, fmt, argp));
|
|
|
|
va_end(argp);
|
|
|
|
luaG_errormsg(L);
|
|
|
|
}
|
|
|
|
|