lua/ldebug.c

641 lines
16 KiB
C
Raw Normal View History

/*
2009-04-27 11:58:31 -07:00
** $Id: ldebug.c,v 2.47 2009/04/17 22:00:01 roberto Exp roberto $
** Debug Interface
** See Copyright Notice in lua.h
*/
#include <stdarg.h>
2003-10-02 12:21:09 -07:00
#include <stddef.h>
2002-06-18 08:19:27 -07:00
#include <string.h>
2000-02-17 10:30:36 -08:00
2002-12-04 09:38:31 -08:00
#define ldebug_c
#define LUA_CORE
2002-12-04 09:38:31 -08:00
#include "lua.h"
#include "lapi.h"
2000-06-28 13:21:06 -07:00
#include "lcode.h"
#include "ldebug.h"
2000-01-19 04:00:45 -08:00
#include "ldo.h"
#include "lfunc.h"
#include "lobject.h"
2000-06-28 13:21:06 -07:00
#include "lopcodes.h"
#include "lstate.h"
#include "lstring.h"
#include "ltable.h"
#include "ltm.h"
#include "lvm.h"
2000-10-05 05:14:08 -07:00
static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name);
2000-08-11 09:17:28 -07:00
2000-01-19 04:00:45 -08:00
2009-04-27 11:58:31 -07:00
static int currentpc (CallInfo *ci) {
if (!isLua(ci)) return -1; /* function is not a Lua function? */
return pcRel(ci->u.l.savedpc, ci_func(ci)->l.p);
}
2009-04-27 11:58:31 -07:00
static int currentline (CallInfo *ci) {
int pc = currentpc(ci);
if (pc < 0)
return -1; /* only active lua functions have current-line information */
else
return getline(ci_func(ci)->l.p, pc);
}
/*
** 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->oldpc = NULL;
L->hook = func;
L->basehookcount = count;
resethookcount(L);
2005-12-22 08:19:56 -08:00
L->hookmask = cast_byte(mask);
2002-07-08 11:21:33 -07:00
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;
}
2000-10-20 09:39:03 -07:00
LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) {
int status;
CallInfo *ci;
2001-03-02 09:27:50 -08:00
lua_lock(L);
for (ci = L->ci; level > 0 && ci != &L->base_ci; ci = ci->previous) {
level--;
if (isLua(ci)) /* Lua function? */
level -= ci->u.l.tailcalls; /* skip lost tail calls */
}
if (level == 0 && ci != &L->base_ci) { /* level found? */
status = 1;
ar->i_ci = ci;
}
2005-04-14 06:30:47 -07:00
else if (level < 0) { /* level is of a lost tail call? */
status = 1;
ar->i_ci = NULL;
2000-01-19 04:00:45 -08:00
}
2005-04-14 06:30:47 -07:00
else status = 0; /* no such level */
2001-03-02 09:27:50 -08:00
lua_unlock(L);
return status;
}
static Proto *getluaproto (CallInfo *ci) {
return (isLua(ci) ? ci_func(ci)->l.p : NULL);
}
static const char *findlocal (lua_State *L, CallInfo *ci, int n) {
const char *name;
Proto *fp = getluaproto(ci);
2009-04-27 11:58:31 -07:00
if (fp && (name = luaF_getlocalname(fp, n, currentpc(ci))) != NULL)
return name; /* is a local variable in a Lua function */
else {
StkId limit = (ci == L->ci) ? L->top : ci->next->func;
if (limit - ci->base >= n && n > 0) /* is 'n' inside 'ci' stack? */
return "(*temporary)";
else
return NULL;
}
}
LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) {
CallInfo *ci = ar->i_ci;
const char *name = findlocal(L, ci, n);
lua_lock(L);
if (name) {
setobj2s(L, L->top, ci->base + (n - 1));
api_incr_top(L);
}
2001-03-02 09:27:50 -08:00
lua_unlock(L);
2000-08-28 10:57:04 -07:00
return name;
}
LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) {
CallInfo *ci = ar->i_ci;
const char *name = findlocal(L, ci, n);
2001-03-02 09:27:50 -08:00
lua_lock(L);
if (name)
setobjs2s(L, ci->base + (n - 1), L->top - 1);
L->top--; /* pop value */
2001-03-02 09:27:50 -08:00
lua_unlock(L);
2000-08-28 10:57:04 -07:00
return name;
2000-01-19 04:00:45 -08:00
}
2005-05-16 11:45:15 -07:00
static void funcinfo (lua_Debug *ar, Closure *cl) {
2001-10-02 09:45:03 -07:00
if (cl->c.isC) {
2002-05-15 11:57:44 -07:00
ar->source = "=[C]";
2000-10-05 05:14:08 -07:00
ar->linedefined = -1;
2005-08-04 06:37:38 -07:00
ar->lastlinedefined = -1;
ar->what = "C";
2000-10-05 05:14:08 -07:00
}
else {
ar->source = getstr(cl->l.p->source);
ar->linedefined = cl->l.p->linedefined;
ar->lastlinedefined = cl->l.p->lastlinedefined;
ar->what = (ar->linedefined == 0) ? "main" : "Lua";
}
luaO_chunkid(ar->short_src, ar->source, LUA_IDSIZE);
}
2005-07-11 06:59:03 -07:00
static void info_tailcall (lua_Debug *ar) {
2006-11-22 03:43:47 -08:00
ar->name = NULL;
ar->namewhat = "";
ar->what = "tail";
2005-05-16 11:45:15 -07:00
ar->lastlinedefined = ar->linedefined = ar->currentline = -1;
ar->source = "=(tail call)";
luaO_chunkid(ar->short_src, ar->source, LUA_IDSIZE);
ar->nups = 0;
2005-05-16 11:45:15 -07:00
}
static void collectvalidlines (lua_State *L, Closure *f) {
if (f == NULL || f->c.isC) {
setnilvalue(L->top);
incr_top(L);
2005-05-16 11:45:15 -07:00
}
else {
int i;
int *lineinfo = f->l.p->lineinfo;
Table *t = luaH_new(L);
2006-09-11 07:07:24 -07:00
sethvalue(L, L->top, t);
incr_top(L);
2005-05-16 11:45:15 -07:00
for (i=0; i<f->l.p->sizelineinfo; i++)
setbvalue(luaH_setnum(L, t, lineinfo[i]), 1);
}
2000-01-19 04:00:45 -08:00
}
2003-03-19 13:24:04 -08:00
static int auxgetinfo (lua_State *L, const char *what, lua_Debug *ar,
2005-05-16 11:45:15 -07:00
Closure *f, CallInfo *ci) {
int status = 1;
2005-05-16 11:45:15 -07:00
if (f == NULL) {
2005-07-11 06:59:03 -07:00
info_tailcall(ar);
2005-05-16 11:45:15 -07:00
return status;
}
2000-03-03 06:58:26 -08:00
for (; *what; what++) {
2000-01-19 04:00:45 -08:00
switch (*what) {
case 'S': {
2003-03-18 04:24:38 -08:00
funcinfo(ar, f);
2000-01-19 04:00:45 -08:00
break;
2000-08-11 09:17:28 -07:00
}
case 'l': {
2009-04-27 11:58:31 -07:00
ar->currentline = (ci) ? currentline(ci) : -1;
2000-01-19 04:00:45 -08:00
break;
2000-08-11 09:17:28 -07:00
}
case 'u': {
2005-05-16 11:45:15 -07:00
ar->nups = f->c.nupvalues;
2000-01-19 04:00:45 -08:00
break;
2000-08-11 09:17:28 -07:00
}
case 'n': {
ar->namewhat = (ci) ? getfuncname(L, ci, &ar->name) : NULL;
if (ar->namewhat == NULL) {
ar->namewhat = ""; /* not found */
ar->name = NULL;
}
2000-01-19 04:00:45 -08:00
break;
2000-08-11 09:17:28 -07:00
}
2005-05-16 11:45:15 -07:00
case 'L':
case 'f': /* handled by lua_getinfo */
2000-01-19 04:00:45 -08:00
break;
default: status = 0; /* invalid option */
2000-01-19 04:00:45 -08:00
}
}
return status;
}
LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) {
2005-05-16 11:45:15 -07:00
int status;
Closure *f = NULL;
CallInfo *ci = NULL;
lua_lock(L);
if (*what == '>') {
2005-05-16 11:45:15 -07:00
StkId func = L->top - 1;
luai_apicheck(L, ttisfunction(func));
2005-05-16 11:45:15 -07:00
what++; /* skip the '>' */
f = clvalue(func);
L->top--; /* pop function */
}
else if (ar->i_ci != NULL) { /* no tail call? */
ci = ar->i_ci;
lua_assert(ttisfunction(ci->func));
2005-05-16 11:45:15 -07:00
f = clvalue(ci->func);
}
2005-05-16 11:45:15 -07:00
status = auxgetinfo(L, what, ar, f, ci);
if (strchr(what, 'f')) {
if (f == NULL) setnilvalue(L->top);
else setclvalue(L, L->top, f);
incr_top(L);
}
if (strchr(what, 'L'))
collectvalidlines(L, f);
2001-03-02 09:27:50 -08:00
lua_unlock(L);
return status;
}
2000-01-19 04:00:45 -08:00
2000-06-28 13:21:06 -07:00
/*
** {======================================================
** Symbolic Execution and code checker
2000-06-28 13:21:06 -07:00
** =======================================================
*/
2001-02-16 09:58:27 -08:00
#define check(x) if (!(x)) return 0;
2000-08-10 12:50:47 -07:00
#define checkreg(pt,reg) check((reg) < (pt)->maxstacksize)
static int precheck (const Proto *pt) {
check(pt->maxstacksize <= MAXSTACK);
2009-03-26 05:57:01 -07:00
check(pt->numparams <= pt->maxstacksize);
check(pt->sizeupvalues == pt->nups || pt->sizeupvalues == 0);
2005-06-13 07:39:19 -07:00
check(pt->sizelineinfo == pt->sizecode || pt->sizelineinfo == 0);
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:
2004-10-04 12:04:34 -07:00
case OP_RETURN:
case OP_SETLIST: {
2002-01-09 14:02:47 -08:00
check(GETARG_B(i) == 0);
return 1;
}
default: return 0; /* invalid instruction after an open call */
}
2001-02-16 09:58:27 -08:00
}
2001-02-16 09:58:27 -08: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;
2004-06-29 11:49:02 -07:00
case OpArgK:
check(ISK(r) ? INDEXK(r) < pt->sizek : r < pt->maxstacksize);
break;
}
return 1;
}
static Instruction symbexec (const Proto *pt, int lastpc, int reg) {
2001-02-16 09:58:27 -08:00
int pc;
int last; /* stores position of last instruction that changed `reg' */
last = pt->sizecode-1; /* points to final return (a `neutral' instruction) */
check(precheck(pt));
for (pc = 0; pc < lastpc; pc++) {
2005-10-06 13:43:44 -07:00
Instruction i = pt->code[pc];
2001-02-09 10:37:33 -08:00
OpCode op = GET_OPCODE(i);
int a = GETARG_A(i);
int b = 0;
int c = 0;
2003-07-10 04:59:06 -07:00
check(op < NUM_OPCODES);
switch (getOpMode(op)) {
case iABC: {
checkreg(pt, a);
b = GETARG_B(i);
c = GETARG_C(i);
check(checkArgMode(pt, b, getBMode(op)));
check(checkArgMode(pt, c, getCMode(op)));
2000-08-14 10:46:27 -07:00
break;
}
case iABx: {
checkreg(pt, a);
b = GETARG_Bx(i);
if (getBMode(op) == OpArgK) check(b < pt->sizek);
2000-08-14 10:46:27 -07:00
break;
}
case iAsBx: {
checkreg(pt, a);
b = GETARG_sBx(i);
if (getBMode(op) == OpArgR) {
int dest = pc+1+b;
check(0 <= dest && dest < pt->sizecode);
}
2000-06-28 13:21:06 -07:00
break;
}
case iAx: break;
}
if (testAMode(op)) {
if (a == reg) last = pc; /* change register `a' */
}
if (testTMode(op))
check(GET_OPCODE(pt->code[pc+1]) == OP_JMP);
switch (op) {
2001-12-11 14:48:44 -08:00
case OP_LOADBOOL: {
check(c == 0 || pc+2 < pt->sizecode); /* check its jump */
break;
}
case OP_LOADNIL: {
if (a <= reg && reg <= b)
last = pc; /* set registers from `a' to `b' */
2001-02-09 10:37:33 -08:00
break;
}
case OP_GETUPVAL:
case OP_SETUPVAL: {
check(b < pt->nups);
2001-02-09 10:37:33 -08:00
break;
}
case OP_GETGLOBAL:
case OP_SETGLOBAL: {
check(ttisstring(&pt->k[b]));
2001-02-09 10:37:33 -08:00
break;
}
case OP_SELF: {
checkreg(pt, a+1);
if (reg == a+1) last = pc;
2001-02-09 10:37:33 -08:00
break;
}
case OP_CONCAT: {
check(b < c); /* at least two operands */
2001-02-09 10:37:33 -08:00
break;
}
case OP_TFORCALL: {
2004-10-07 10:27:00 -07:00
check(c >= 1); /* at least one result (control variable) */
2005-06-28 06:01:31 -07:00
checkreg(pt, a+2+c); /* space for results */
check(GET_OPCODE(pt->code[pc+1]) == OP_TFORLOOP);
2005-06-28 06:01:31 -07:00
if (reg >= a+2) last = pc; /* affect all regs above its base */
break;
}
case OP_TFORLOOP:
2002-02-05 14:39:12 -08: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 */
2000-06-28 13:21:06 -07:00
break;
}
case OP_CALL:
case OP_TAILCALL: {
2002-01-09 14:02:47 -08:00
if (b != 0) {
checkreg(pt, a+b-1);
2001-06-11 07:56:42 -07:00
}
2002-01-09 14:02:47 -08:00
c--; /* c = num. returns */
if (c == LUA_MULTRET) {
check(checkopenop(pt, pc));
}
2001-06-11 07:56:42 -07:00
else if (c != 0)
checkreg(pt, a+c-1);
if (reg >= a) last = pc; /* affect all registers above base */
2000-06-28 13:21:06 -07:00
break;
}
case OP_RETURN: {
2002-01-09 14:02:47 -08:00
b--; /* b = num. returns */
if (b > 0) checkreg(pt, a+b-1);
2001-02-09 10:37:33 -08:00
break;
}
case OP_SETLIST: {
2004-10-04 12:04:34 -07:00
if (b > 0) checkreg(pt, a + b);
if (c == 0) check(GET_OPCODE(pt->code[pc + 1]) == OP_EXTRAARG);
2001-02-09 10:37:33 -08:00
break;
}
case OP_CLOSURE: {
int nup, j;
2001-06-28 07:57:17 -07:00
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 */
2001-02-09 10:37:33 -08:00
break;
2000-06-28 13:21:06 -07:00
}
case OP_VARARG: {
2009-03-26 05:57:01 -07:00
check(pt->is_vararg);
b--;
if (b == LUA_MULTRET) check(checkopenop(pt, pc));
checkreg(pt, a+b-1);
break;
}
default: break;
2000-06-28 13:21:06 -07:00
}
}
return pt->code[last];
2001-02-09 10:37:33 -08:00
}
2002-07-08 11:21:33 -07:00
#undef check
#undef checkreg
2001-02-16 09:58:27 -08:00
/* }====================================================== */
2001-02-09 10:37:33 -08:00
int luaG_checkcode (const Proto *pt) {
return (symbexec(pt, pt->sizecode, NO_REG) != 0);
2000-06-28 13:21:06 -07:00
}
static const char *kname (Proto *p, int c) {
2004-06-29 11:49:02 -07:00
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,
const char **name) {
if (isLua(ci)) { /* a Lua function? */
2001-10-02 09:45:03 -07:00
Proto *p = ci_func(ci)->l.p;
2009-04-27 11:58:31 -07:00
int pc = currentpc(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);
2000-06-28 13:21:06 -07:00
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";
2000-06-28 13:21:06 -07:00
}
case OP_MOVE: {
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' */
break;
2000-06-28 13:21:06 -07:00
}
case OP_GETTABLE: {
int k = GETARG_C(i); /* key index */
*name = kname(p, k);
return "field";
}
case OP_GETUPVAL: {
int u = GETARG_B(i); /* upvalue index */
*name = p->upvalues ? getstr(p->upvalues[u]) : "?";
return "upvalue";
}
case OP_SELF: {
int k = GETARG_C(i); /* key index */
*name = kname(p, k);
return "method";
2000-06-28 13:21:06 -07:00
}
default: break;
2000-06-28 13:21:06 -07:00
}
}
return NULL; /* no useful name found */
2000-06-28 13:21:06 -07:00
}
static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name) {
TMS tm = 0;
Instruction i;
if ((isLua(ci) && ci->u.l.tailcalls > 0) || !isLua(ci->previous))
return NULL; /* calling function is not Lua (or is unknown) */
ci = ci->previous; /* calling function */
2009-04-27 11:58:31 -07:00
i = ci_func(ci)->l.p->code[currentpc(ci)];
switch (GET_OPCODE(i)) {
case OP_CALL:
case OP_TAILCALL:
case OP_TFORLOOP:
return getobjname(L, ci, GETARG_A(i), name);
case OP_GETGLOBAL:
case OP_SELF:
case OP_GETTABLE: tm = TM_INDEX; break;
case OP_SETGLOBAL:
case OP_SETTABLE: tm = TM_NEWINDEX; break;
case OP_EQ: tm = TM_EQ; break;
case OP_ADD: tm = TM_ADD; break;
case OP_SUB: tm = TM_SUB; break;
case OP_MUL: tm = TM_MUL; break;
case OP_DIV: tm = TM_DIV; break;
case OP_MOD: tm = TM_MOD; break;
case OP_POW: tm = TM_POW; break;
case OP_UNM: tm = TM_UNM; break;
case OP_LEN: tm = TM_LEN; break;
case OP_LT: tm = TM_LT; break;
case OP_LE: tm = TM_LE; break;
case OP_CONCAT: tm = TM_CONCAT; break;
default:
return NULL; /* else no useful name can be found */
}
*name = getstr(G(L)->tmname[tm]);
return "metamethod";
}
/* only ANSI way to check whether a pointer points to an array */
static int isinstack (CallInfo *ci, const TValue *o) {
StkId p;
for (p = ci->base; p < ci->top; p++)
if (o == p) return 1;
return 0;
2000-08-11 09:17:28 -07:00
}
void luaG_typeerror (lua_State *L, const TValue *o, const char *op) {
2002-06-06 11:17:33 -07:00
const char *name = NULL;
2001-12-05 12:15:18 -08:00
const char *t = luaT_typenames[ttype(o)];
2002-06-06 11:17:33 -07:00
const char *kind = (isinstack(L->ci, o)) ?
2005-12-22 08:19:56 -08:00
getobjname(L, L->ci, cast_int(o - L->base), &name) :
2005-05-31 07:25:18 -07:00
NULL;
2000-06-28 13:21:06 -07:00
if (kind)
2005-05-17 12:49:15 -07:00
luaG_runerror(L, "attempt to %s %s " LUA_QS " (a %s value)",
2000-08-10 12:50:47 -07:00
op, kind, name, t);
2000-06-28 13:21:06 -07:00
else
2002-05-15 11:57:44 -07:00
luaG_runerror(L, "attempt to %s a %s value", op, t);
}
void luaG_concaterror (lua_State *L, StkId p1, StkId p2) {
if (ttisstring(p1) || ttisnumber(p1)) p1 = p2;
lua_assert(!ttisstring(p1) && !ttisnumber(p2));
2003-02-27 04:32:30 -08:00
luaG_typeerror(L, p1, "concatenate");
}
void luaG_aritherror (lua_State *L, const TValue *p1, const TValue *p2) {
TValue temp;
if (luaV_tonumber(p1, &temp) == NULL)
p2 = p1; /* first operand is wrong */
luaG_typeerror(L, p2, "perform arithmetic on");
}
2000-08-11 09:17:28 -07:00
int luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2) {
2001-12-05 12:15:18 -08:00
const char *t1 = luaT_typenames[ttype(p1)];
const char *t2 = luaT_typenames[ttype(p2)];
2000-08-11 09:17:28 -07:00
if (t1[2] == t2[2])
2002-05-15 11:57:44 -07:00
luaG_runerror(L, "attempt to compare two %s values", t1);
2000-08-11 09:17:28 -07:00
else
2002-05-15 11:57:44 -07:00
luaG_runerror(L, "attempt to compare %s with %s", t1, t2);
2002-06-24 08:07:21 -07:00
return 0;
2002-05-15 11:57:44 -07:00
}
static void addinfo (lua_State *L, const char *msg) {
2002-06-20 13:39:44 -07:00
CallInfo *ci = L->ci;
if (isLua(ci)) { /* is Lua code? */
char buff[LUA_IDSIZE]; /* add file:line information */
2009-04-27 11:58:31 -07:00
int line = currentline(ci);
2002-06-18 08:19:27 -07:00
luaO_chunkid(buff, getstr(getluaproto(ci)->source), LUA_IDSIZE);
luaO_pushfstring(L, "%s:%d: %s", buff, line, msg);
2002-06-18 08:19:27 -07:00
}
}
void luaG_errormsg (lua_State *L) {
2002-08-06 08:32:22 -07: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 */
2002-08-06 08:32:22 -07:00
incr_top(L);
luaD_call(L, L->top - 2, 1, 0); /* call it */
2002-08-06 08:32:22 -07:00
}
2002-06-18 08:19:27 -07:00
luaD_throw(L, LUA_ERRRUN);
}
2002-05-15 11:57:44 -07:00
void luaG_runerror (lua_State *L, const char *fmt, ...) {
va_list argp;
va_start(argp, fmt);
addinfo(L, luaO_pushvfstring(L, fmt, argp));
2002-05-15 11:57:44 -07:00
va_end(argp);
luaG_errormsg(L);
2000-08-11 09:17:28 -07:00
}