lua/ldebug.c

408 lines
9.9 KiB
C
Raw Normal View History

/*
2000-08-10 23:50:47 +04:00
** $Id: ldebug.c,v 1.31 2000/08/09 19:16:57 roberto Exp roberto $
** Debug Interface
** See Copyright Notice in lua.h
*/
2000-02-17 21:30:36 +03:00
#include <stdlib.h>
#include "lua.h"
#include "lapi.h"
#include "lauxlib.h"
2000-06-29 00:21:06 +04:00
#include "lcode.h"
#include "ldebug.h"
2000-01-19 15:00:45 +03:00
#include "ldo.h"
#include "lfunc.h"
#include "lobject.h"
2000-06-29 00:21:06 +04:00
#include "lopcodes.h"
#include "lstate.h"
#include "ltable.h"
#include "ltm.h"
#include "luadebug.h"
2000-01-19 15:00:45 +03:00
static void setnormalized (TObject *d, const TObject *s) {
2000-06-26 23:28:31 +04:00
switch (s->ttype) {
case TAG_CMARK: {
clvalue(d) = clvalue(s);
ttype(d) = TAG_CCLOSURE;
break;
}
case TAG_LMARK: {
clvalue(d) = infovalue(s)->func;
ttype(d) = TAG_LCLOSURE;
break;
}
default: *d = *s;
}
}
2000-03-30 21:19:48 +04:00
lua_Hook lua_setcallhook (lua_State *L, lua_Hook func) {
lua_Hook oldhook = L->callhook;
L->callhook = func;
2000-01-19 15:00:45 +03:00
return oldhook;
}
2000-03-30 21:19:48 +04:00
lua_Hook lua_setlinehook (lua_State *L, lua_Hook func) {
lua_Hook oldhook = L->linehook;
2000-01-19 15:00:45 +03:00
L->linehook = func;
return oldhook;
}
2000-01-19 15:00:45 +03:00
static StkId aux_stackedfunction (lua_State *L, int level, StkId top) {
int i;
2000-08-10 23:50:47 +04:00
for (i = (top-1) - L->stack; i>=0; i--) {
if (is_T_MARK(L->stack[i].ttype)) {
if (level == 0)
return L->stack+i;
level--;
}
}
2000-01-19 15:00:45 +03:00
return NULL;
}
2000-03-30 21:19:48 +04:00
int lua_getstack (lua_State *L, int level, lua_Debug *ar) {
2000-01-19 15:00:45 +03:00
StkId f = aux_stackedfunction(L, level, L->top);
if (f == NULL) return 0; /* there is no such level */
else {
ar->_func = f;
return 1;
}
}
2000-01-19 15:00:45 +03:00
static int lua_nups (StkId f) {
switch (ttype(f)) {
2000-06-26 23:28:31 +04:00
case TAG_LCLOSURE: case TAG_CCLOSURE: case TAG_CMARK:
return clvalue(f)->nupvalues;
2000-06-26 23:28:31 +04:00
case TAG_LMARK:
return infovalue(f)->func->nupvalues;
default:
return 0;
}
}
2000-08-08 22:26:05 +04:00
int luaG_getline (int *lineinfo, int pc, int refline, int *prefi) {
int refi = prefi ? *prefi : 0;
if (lineinfo[refi] < 0)
refline += -lineinfo[refi++];
LUA_ASSERT(lineinfo[refi] >= 0, "invalid line info");
while (lineinfo[refi] > pc) {
refline--;
refi--;
if (lineinfo[refi] < 0)
refline -= -lineinfo[refi--];
LUA_ASSERT(lineinfo[refi] >= 0, "invalid line info");
}
for (;;) {
int nextline = refline + 1;
int nextref = refi + 1;
if (lineinfo[nextref] < 0)
nextline += -lineinfo[nextref++];
LUA_ASSERT(lineinfo[nextref] >= 0, "invalid line info");
if (lineinfo[nextref] > pc)
break;
refline = nextline;
refi = nextref;
}
if (prefi) *prefi = refi;
return refline;
}
2000-06-29 00:21:06 +04:00
static int lua_currentpc (StkId f) {
CallInfo *ci = infovalue(f);
2000-06-30 18:35:17 +04:00
LUA_ASSERT(ttype(f) == TAG_LMARK, "function has no pc");
2000-06-29 00:21:06 +04:00
return (*ci->pc - 1) - ci->func->f.l->code;
}
2000-06-26 23:28:31 +04:00
static int lua_currentline (StkId f) {
if (ttype(f) != TAG_LMARK)
return -1; /* only active lua functions have current-line information */
else {
CallInfo *ci = infovalue(f);
2000-08-08 22:26:05 +04:00
int *lineinfo = ci->func->f.l->lineinfo;
return luaG_getline(lineinfo, lua_currentpc(f), 1, NULL);
2000-06-26 23:28:31 +04:00
}
}
2000-03-10 21:37:44 +03:00
static Proto *getluaproto (StkId f) {
2000-06-26 23:28:31 +04:00
return (ttype(f) == TAG_LMARK) ? infovalue(f)->func->f.l : NULL;
}
2000-03-30 21:19:48 +04:00
int lua_getlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v) {
2000-01-19 15:00:45 +03:00
StkId f = ar->_func;
2000-03-10 21:37:44 +03:00
Proto *fp = getluaproto(f);
2000-01-19 15:00:45 +03:00
if (!fp) return 0; /* `f' is not a Lua function? */
2000-06-26 23:28:31 +04:00
v->name = luaF_getlocalname(fp, v->index, lua_currentpc(f));
2000-01-19 15:00:45 +03:00
if (!v->name) return 0;
2000-06-26 23:28:31 +04:00
v->value = luaA_putluaObject(L, (f+1)+(v->index-1));
2000-01-19 15:00:45 +03:00
return 1;
}
2000-03-30 21:19:48 +04:00
int lua_setlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v) {
2000-01-19 15:00:45 +03:00
StkId f = ar->_func;
2000-03-10 21:37:44 +03:00
Proto *fp = getluaproto(f);
2000-06-26 23:28:31 +04:00
UNUSED(L);
2000-01-19 15:00:45 +03:00
if (!fp) return 0; /* `f' is not a Lua function? */
2000-06-26 23:28:31 +04:00
v->name = luaF_getlocalname(fp, v->index, lua_currentpc(f));
if (!v->name || v->name[0] == '*') return 0; /* `*' starts private locals */
2000-06-26 23:28:31 +04:00
*((f+1)+(v->index-1)) = *v->value;
2000-01-19 15:00:45 +03:00
return 1;
}
static void lua_funcinfo (lua_Debug *ar, StkId func) {
2000-01-19 15:00:45 +03:00
switch (ttype(func)) {
2000-06-26 23:28:31 +04:00
case TAG_LCLOSURE:
ar->source = clvalue(func)->f.l->source->str;
ar->linedefined = clvalue(func)->f.l->lineDefined;
2000-01-19 15:00:45 +03:00
ar->what = "Lua";
break;
2000-06-26 23:28:31 +04:00
case TAG_LMARK:
ar->source = infovalue(func)->func->f.l->source->str;
ar->linedefined = infovalue(func)->func->f.l->lineDefined;
ar->what = "Lua";
break;
2000-03-31 00:55:50 +04:00
case TAG_CCLOSURE: case TAG_CMARK:
2000-01-19 15:00:45 +03:00
ar->source = "(C)";
ar->linedefined = -1;
ar->what = "C";
break;
default:
2000-06-30 18:35:17 +04:00
LUA_INTERNALERROR("invalid `func' value");
}
2000-01-19 15:00:45 +03:00
if (ar->linedefined == 0)
ar->what = "main";
}
static const char *travtagmethods (lua_State *L, const TObject *o) {
int e;
for (e=0; e<IM_N; e++) {
int t;
for (t=0; t<=L->last_tag; t++)
if (luaO_equalObj(o, luaT_getim(L, t,e)))
return luaT_eventname[e];
}
return NULL;
}
static const char *travglobals (lua_State *L, const TObject *o) {
Hash *g = L->gt;
int i;
for (i=0; i<=g->size; i++) {
if (luaO_equalObj(o, val(node(g, i))) &&
ttype(key(node(g, i))) == TAG_STRING)
return tsvalue(key(node(g, i)))->str;
}
return NULL;
}
2000-08-10 23:50:47 +04:00
static void lua_getname (lua_State *L, StkId f, lua_Debug *ar) {
TObject o;
setnormalized(&o, f);
/* try to find a name for given function */
if ((ar->name = travglobals(L, &o)) != NULL)
ar->namewhat = "global";
/* not found: try tag methods */
else if ((ar->name = travtagmethods(L, &o)) != NULL)
2000-01-19 15:00:45 +03:00
ar->namewhat = "tag-method";
else ar->namewhat = ""; /* not found at all */
}
2000-03-30 21:19:48 +04:00
int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) {
StkId func;
if (*what != '>')
func = ar->_func;
else {
what++; /* skip the '>' */
func = ar->func;
}
2000-03-03 17:58:26 +03:00
for (; *what; what++) {
2000-01-19 15:00:45 +03:00
switch (*what) {
case 'S':
lua_funcinfo(ar, func);
2000-01-19 15:00:45 +03:00
break;
case 'l':
2000-06-26 23:28:31 +04:00
ar->currentline = lua_currentline(func);
2000-01-19 15:00:45 +03:00
break;
case 'u':
ar->nups = lua_nups(func);
break;
case 'n':
2000-08-10 23:50:47 +04:00
lua_getname(L, func, ar);
2000-01-19 15:00:45 +03:00
break;
case 'f':
setnormalized(L->top, func);
incr_top;
2000-05-09 00:49:05 +04:00
ar->func = lua_pop(L);
2000-01-19 15:00:45 +03:00
break;
default: return 0; /* invalid option */
}
}
return 1;
}
2000-01-19 15:00:45 +03:00
2000-06-29 00:21:06 +04:00
/*
** {======================================================
** Symbolic Execution
** =======================================================
*/
2000-08-10 23:50:47 +04:00
static int pushpc (int *stack, int pc, int top, int n) {
while (n--)
stack[top++] = pc-1;
return top;
}
2000-06-29 00:21:06 +04:00
static Instruction luaG_symbexec (const Proto *pt, int lastpc, int stackpos) {
2000-08-10 23:50:47 +04:00
int stack[MAXSTACK]; /* stores last instruction that changed a stack entry */
2000-06-29 00:21:06 +04:00
const Instruction *code = pt->code;
int top = pt->numparams;
int pc = 0;
if (pt->is_vararg) /* varargs? */
top++; /* `arg' */
while (pc < lastpc) {
const Instruction i = code[pc++];
2000-08-10 23:50:47 +04:00
LUA_ASSERT(0 <= top && top <= pt->maxstacksize, "wrong stack");
2000-06-29 00:21:06 +04:00
switch (GET_OPCODE(i)) {
case OP_RETURN: {
2000-06-30 18:35:17 +04:00
LUA_ASSERT(top >= GETARG_U(i), "wrong stack");
top = GETARG_U(i);
break;
}
2000-06-29 00:21:06 +04:00
case OP_CALL: {
int nresults = GETARG_B(i);
if (nresults == MULT_RET) nresults = 1;
2000-06-30 18:35:17 +04:00
LUA_ASSERT(top >= GETARG_A(i), "wrong stack");
2000-08-10 23:50:47 +04:00
top = pushpc(stack, pc, GETARG_A(i), nresults);
2000-06-29 00:21:06 +04:00
break;
}
case OP_TAILCALL: {
2000-06-30 18:35:17 +04:00
LUA_ASSERT(top >= GETARG_A(i), "wrong stack");
top = GETARG_B(i);
break;
}
2000-06-29 00:21:06 +04:00
case OP_PUSHNIL: {
2000-08-10 23:50:47 +04:00
top = pushpc(stack, pc, top, GETARG_U(i));
2000-06-29 00:21:06 +04:00
break;
}
case OP_POP: {
top -= GETARG_U(i);
break;
}
case OP_SETTABLE:
case OP_SETLIST: {
top -= GETARG_B(i);
break;
}
case OP_SETMAP: {
top -= 2*GETARG_U(i);
break;
}
case OP_CONCAT: {
top -= GETARG_U(i);
stack[top++] = pc-1;
break;
}
case OP_CLOSURE: {
top -= GETARG_B(i);
stack[top++] = pc-1;
break;
}
default: {
2000-08-10 23:50:47 +04:00
OpCode op = GET_OPCODE(i);
LUA_ASSERT(luaK_opproperties[op].push != VD,
2000-06-29 00:21:06 +04:00
"invalid opcode for default");
2000-08-10 23:50:47 +04:00
top -= luaK_opproperties[op].pop;
2000-06-30 18:35:17 +04:00
LUA_ASSERT(top >= 0, "wrong stack");
2000-08-10 23:50:47 +04:00
top = pushpc(stack, pc, top, luaK_opproperties[op].push);
if (ISJUMP(op)) {
int newpc = pc + GETARG_S(i);
/* jump is forward and do not skip `lastpc'? */
if (pc < newpc && newpc <= lastpc) {
if (op == OP_JMPONT || op == OP_JMPONF)
stack[top++] = pc-1; /* do not pop when jumping */
pc = newpc; /* do the jump */
}
}
2000-06-29 00:21:06 +04:00
}
}
}
return code[stack[stackpos]];
}
2000-08-10 23:50:47 +04:00
static const char *getobjname (lua_State *L, StkId obj, const char **name) {
2000-06-29 00:21:06 +04:00
StkId func = aux_stackedfunction(L, 0, obj);
if (func == NULL || ttype(func) != TAG_LMARK)
return NULL; /* not a Lua function */
else {
Proto *p = infovalue(func)->func->f.l;
int pc = lua_currentpc(func);
int stackpos = obj - (func+1); /* func+1 == function base */
Instruction i = luaG_symbexec(p, pc, stackpos);
switch (GET_OPCODE(i)) {
case OP_GETGLOBAL: {
*name = p->kstr[GETARG_U(i)]->str;
return "global";
}
case OP_GETLOCAL: {
*name = luaF_getlocalname(p, GETARG_U(i)+1, pc);
LUA_ASSERT(*name, "local must exist");
return "local";
2000-06-29 00:21:06 +04:00
}
case OP_PUSHSELF:
case OP_GETDOTTED: {
*name = p->kstr[GETARG_U(i)]->str;
return "field";
}
default:
return NULL; /* no usefull name found */
}
}
}
/* }====================================================== */
2000-01-19 15:00:45 +03:00
2000-08-10 23:50:47 +04:00
void luaG_typeerror (lua_State *L, StkId o, const char *op) {
2000-06-29 00:21:06 +04:00
const char *name;
2000-08-10 23:50:47 +04:00
const char *kind = getobjname(L, o, &name);
const char *t = lua_type(L, o);
2000-06-29 00:21:06 +04:00
if (kind)
2000-08-10 23:50:47 +04:00
luaL_verror(L, "attempt to %.30s %.20s `%.40s' (a %.10s value)",
op, kind, name, t);
2000-06-29 00:21:06 +04:00
else
2000-08-10 23:50:47 +04:00
luaL_verror(L, "attempt to %.30s a %.10s value", op, t);
}
2000-08-10 23:50:47 +04:00
void luaG_binerror (lua_State *L, StkId p1, lua_Type t, const char *op) {
if (ttype(p1) == t) p1++;
LUA_ASSERT(ttype(p1) != t, "must be an error");
luaG_typeerror(L, p1, op);
}