123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- /*
- ** $Id: ltests.c,v 1.15 2000/04/13 16:51:01 roberto Exp roberto $
- ** Internal Module for Debugging of the Lua Implementation
- ** See Copyright Notice in lua.h
- */
- #include <ctype.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #define LUA_REENTRANT
- #include "lapi.h"
- #include "lauxlib.h"
- #include "lmem.h"
- #include "lopcodes.h"
- #include "lstate.h"
- #include "lstring.h"
- #include "ltable.h"
- #include "lua.h"
- #include "luadebug.h"
- void luaB_opentests (lua_State *L);
- /*
- ** The whole module only makes sense with DEBUG on
- */
- #ifdef DEBUG
- static void setnameval (lua_State *L, lua_Object t, const char *name, int val) {
- lua_pushobject(L, t);
- lua_pushstring(L, name);
- lua_pushnumber(L, val);
- lua_settable(L);
- }
- /*
- ** {======================================================
- ** Disassembler
- ** =======================================================
- */
- #define O(o) sprintf(buff, "%s", o)
- #define U(o) sprintf(buff, "%-12s%4u", o, GETARG_U(i))
- #define S(o) sprintf(buff, "%-12s%4d", o, GETARG_S(i))
- #define AB(o) sprintf(buff, "%-12s%4d %4d", o, GETARG_A(i), GETARG_B(i))
- static int pushop (lua_State *L, Instruction i) {
- char buff[100];
- switch (GET_OPCODE(i)) {
- case OP_END: O("END"); lua_pushstring(L, buff); return 0;
- case OP_RETURN: U("RETURN"); break;
- case OP_CALL: AB("CALL"); break;
- case OP_TAILCALL: AB("TAILCALL"); break;
- case OP_PUSHNIL: U("PUSHNIL"); break;
- case OP_POP: U("POP"); break;
- case OP_PUSHINT: S("PUSHINT"); break;
- case OP_PUSHSTRING: U("PUSHSTRING"); break;
- case OP_PUSHNUM: U("PUSHNUM"); break;
- case OP_PUSHNEGNUM: U("PUSHNEGNUM"); break;
- case OP_PUSHUPVALUE: U("PUSHUPVALUE"); break;
- case OP_GETLOCAL: U("GETLOCAL"); break;
- case OP_GETGLOBAL: U("GETGLOBAL"); break;
- case OP_GETTABLE: O("GETTABLE"); break;
- case OP_GETDOTTED: U("GETDOTTED"); break;
- case OP_GETINDEXED: U("GETINDEXED"); break;
- case OP_PUSHSELF: U("PUSHSELF"); break;
- case OP_CREATETABLE: U("CREATETABLE"); break;
- case OP_SETLOCAL: U("SETLOCAL"); break;
- case OP_SETGLOBAL: U("SETGLOBAL"); break;
- case OP_SETTABLE: AB("SETTABLE"); break;
- case OP_SETLIST: AB("SETLIST"); break;
- case OP_SETMAP: U("SETMAP"); break;
- case OP_ADD: O("ADD"); break;
- case OP_ADDI: S("ADDI"); break;
- case OP_SUB: O("SUB"); break;
- case OP_MULT: O("MULT"); break;
- case OP_DIV: O("DIV"); break;
- case OP_POW: O("POW"); break;
- case OP_CONCAT: U("CONCAT"); break;
- case OP_MINUS: O("MINUS"); break;
- case OP_NOT: O("NOT"); break;
- case OP_JMPNE: S("JMPNE"); break;
- case OP_JMPEQ: S("JMPEQ"); break;
- case OP_JMPLT: S("JMPLT"); break;
- case OP_JMPLE: S("JMPLE"); break;
- case OP_JMPGT: S("JMPGT"); break;
- case OP_JMPGE: S("JMPGE"); break;
- case OP_JMPT: S("JMPT"); break;
- case OP_JMPF: S("JMPF"); break;
- case OP_JMPONT: S("JMPONT"); break;
- case OP_JMPONF: S("JMPONF"); break;
- case OP_JMP: S("JMP"); break;
- case OP_PUSHNILJMP: O("PUSHNILJMP"); break;
- case OP_FORPREP: S("OP_FORPREP"); break;
- case OP_FORLOOP: S("OP_FORLOOP"); break;
- case OP_CLOSURE: AB("CLOSURE"); break;
- case OP_SETLINE: U("SETLINE"); break;
- }
- lua_pushstring(L, buff);
- return 1;
- }
- static void listcode (lua_State *L) {
- lua_Object o = luaL_nonnullarg(L, 1);
- lua_Object t = lua_createtable(L);
- Instruction *pc;
- Proto *p;
- int res;
- luaL_arg_check(L, ttype(o) == TAG_LCLOSURE, 1, "Lua function expected");
- p = clvalue(o)->f.l;
- setnameval(L, t, "maxstack", p->maxstacksize);
- setnameval(L, t, "numparams", p->numparams);
- pc = p->code;
- do {
- lua_pushobject(L, t);
- lua_pushnumber(L, pc - p->code + 1);
- res = pushop(L, *pc++);
- lua_settable(L);
- } while (res);
- lua_pushobject(L, t);
- }
- /* }====================================================== */
- static void get_limits (lua_State *L) {
- lua_Object t = lua_createtable(L);
- setnameval(L, t, "SIZE_OP", SIZE_OP);
- setnameval(L, t, "SIZE_U", SIZE_U);
- setnameval(L, t, "SIZE_A", SIZE_A);
- setnameval(L, t, "SIZE_B", SIZE_B);
- setnameval(L, t, "MAXARG_U", MAXARG_U);
- setnameval(L, t, "MAXARG_S", MAXARG_S);
- setnameval(L, t, "MAXARG_A", MAXARG_A);
- setnameval(L, t, "MAXARG_B", MAXARG_B);
- setnameval(L, t, "MAXSTACK", MAXSTACK);
- setnameval(L, t, "MAXLOCALS", MAXLOCALS);
- setnameval(L, t, "MAXUPVALUES", MAXUPVALUES);
- setnameval(L, t, "MAXVARSLH", MAXVARSLH);
- setnameval(L, t, "MAXPARAMS", MAXPARAMS);
- setnameval(L, t, "LFPF", LFIELDS_PER_FLUSH);
- setnameval(L, t, "RFPF", RFIELDS_PER_FLUSH);
- lua_pushobject(L, t);
- }
- static void mem_query (lua_State *L) {
- lua_pushnumber(L, memdebug_total);
- lua_pushnumber(L, memdebug_numblocks);
- lua_pushnumber(L, memdebug_maxmem);
- }
- static void hash_query (lua_State *L) {
- lua_Object o = luaL_nonnullarg(L, 1);
- if (lua_getparam(L, 2) == LUA_NOOBJECT) {
- luaL_arg_check(L, ttype(o) == TAG_STRING, 1, "string expected");
- lua_pushnumber(L, tsvalue(o)->hash);
- }
- else {
- const Hash *t = avalue(luaL_tablearg(L, 2));
- lua_pushnumber(L, luaH_mainposition(t, o) - t->node);
- }
- }
- static void table_query (lua_State *L) {
- const Hash *t = avalue(luaL_tablearg(L, 1));
- int i = luaL_opt_int(L, 2, -1);
- if (i == -1) {
- lua_pushnumber(L, t->size);
- lua_pushnumber(L, t->firstfree - t->node);
- }
- else if (i < t->size) {
- luaA_pushobject(L, &t->node[i].key);
- luaA_pushobject(L, &t->node[i].val);
- if (t->node[i].next)
- lua_pushnumber(L, t->node[i].next - t->node);
- }
- }
- static void string_query (lua_State *L) {
- int h = luaL_check_int(L, 1) - 1;
- int s = luaL_opt_int(L, 2, 0) - 1;
- if (s==-1) {
- if (h < NUM_HASHS) {
- lua_pushnumber(L, L->string_root[h].nuse);
- lua_pushnumber(L, L->string_root[h].size);
- }
- }
- else {
- TString *ts = L->string_root[h].hash[s];
- for (ts = L->string_root[h].hash[s]; ts; ts = ts->nexthash) {
- if (ts->constindex == -1) lua_pushstring(L, "<USERDATA>");
- else lua_pushstring(L, ts->str);
- }
- }
- }
- /*
- ** {======================================================
- ** function to test the API with C. It interprets a kind of "assembler"
- ** language with calls to the API, so the test can be driven by Lua code
- ** =======================================================
- */
- static const char *const delimits = " \t\n,;";
- static void skip (const char **pc) {
- while (**pc != '\0' && strchr(delimits, **pc)) (*pc)++;
- }
- static int getnum (const char **pc) {
- int res = 0;
- skip(pc);
- while (isdigit(**pc)) res = res*10 + (*(*pc)++) - '0';
- return res;
- }
-
- static int getreg (lua_State *L, const char **pc) {
- skip(pc);
- if (*(*pc)++ != 'r') lua_error(L, "`testC' expecting a register");
- return getnum(pc);
- }
- static const char *getname (const char **pc) {
- static char buff[30];
- int i = 0;
- skip(pc);
- while (**pc != '\0' && !strchr(delimits, **pc))
- buff[i++] = *(*pc)++;
- buff[i] = '\0';
- return buff;
- }
- #define EQ(s1) (strcmp(s1, inst) == 0)
- static void testC (lua_State *L) {
- lua_Object reg[10];
- const char *pc = luaL_check_string(L, 1);
- for (;;) {
- const char *inst = getname(&pc);
- if EQ("") return;
- else if EQ("pushnum") {
- lua_pushnumber(L, getnum(&pc));
- }
- else if EQ("createtable") {
- reg[getreg(L, &pc)] = lua_createtable(L);
- }
- else if EQ("closure") {
- lua_CFunction f = lua_getcfunction(L, lua_getglobal(L, getname(&pc)));
- lua_pushcclosure(L, f, getnum(&pc));
- }
- else if EQ("pop") {
- reg[getreg(L, &pc)] = lua_pop(L);
- }
- else if EQ("getglobal") {
- int n = getreg(L, &pc);
- reg[n] = lua_getglobal(L, getname(&pc));
- }
- else if EQ("rawgetglobal") {
- int n = getreg(L, &pc);
- reg[n] = lua_rawgetglobal(L, getname(&pc));
- }
- else if EQ("ref") {
- lua_pushnumber(L, lua_ref(L, 0));
- reg[getreg(L, &pc)] = lua_pop(L);
- }
- else if EQ("reflock") {
- lua_pushnumber(L, lua_ref(L, 1));
- reg[getreg(L, &pc)] = lua_pop(L);
- }
- else if EQ("getref") {
- int n = getreg(L, &pc);
- reg[n] = lua_getref(L, (int)lua_getnumber(L, reg[getreg(L, &pc)]));
- }
- else if EQ("unref") {
- lua_unref(L, (int)lua_getnumber(L, reg[getreg(L, &pc)]));
- }
- else if EQ("getparam") {
- int n = getreg(L, &pc);
- reg[n] = lua_getparam(L, getnum(&pc)+1); /* skips the command itself */
- }
- else if EQ("getresult") {
- int n = getreg(L, &pc);
- reg[n] = lua_getparam(L, getnum(&pc));
- }
- else if EQ("setglobal") {
- lua_setglobal(L, getname(&pc));
- }
- else if EQ("rawsetglobal") {
- lua_rawsetglobal(L, getname(&pc));
- }
- else if EQ("pushstring") {
- lua_pushstring(L, getname(&pc));
- }
- else if EQ("pushreg") {
- lua_pushobject(L, reg[getreg(L, &pc)]);
- }
- else if EQ("call") {
- if (lua_call(L, getname(&pc))) lua_error(L, NULL);
- }
- else if EQ("gettable") {
- reg[getreg(L, &pc)] = lua_gettable(L);
- }
- else if EQ("rawgettable") {
- reg[getreg(L, &pc)] = lua_rawgettable(L);
- }
- else if EQ("settable") {
- lua_settable(L);
- }
- else if EQ("rawsettable") {
- lua_rawsettable(L);
- }
- else if EQ("tag") {
- lua_pushnumber(L, lua_tag(L, reg[getreg(L, &pc)]));
- }
- else if EQ("type") {
- lua_pushstring(L, lua_type(L, reg[getreg(L, &pc)]));
- }
- else if EQ("nextvar") {
- lua_pushstring(L, lua_nextvar(L, lua_getstring(L, reg[getreg(L, &pc)])));
- }
- else if EQ("next") {
- int n = getreg(L, &pc);
- n = lua_next(L, reg[n], (int)lua_getnumber(L, reg[getreg(L, &pc)]));
- lua_pushnumber(L, n);
- }
- else if EQ("equal") {
- int n1 = getreg(L, &pc);
- int n2 = getreg(L, &pc);
- lua_pushnumber(L, lua_equal(L, reg[n1], reg[n2]));
- }
- else if EQ("pushusertag") {
- int val = getreg(L, &pc);
- int tag = getreg(L, &pc);
- lua_pushusertag(L, (void *)(int)lua_getnumber(L, reg[val]),
- (int)lua_getnumber(L, reg[tag]));
- }
- else if EQ("udataval") {
- int n = getreg(L, &pc);
- lua_pushnumber(L, (int)lua_getuserdata(L, reg[getreg(L, &pc)]));
- reg[n] = lua_pop(L);
- }
- else if EQ("settagmethod") {
- int n = getreg(L, &pc);
- lua_settagmethod(L, (int)lua_getnumber(L, reg[n]), getname(&pc));
- }
- else if EQ("beginblock") {
- lua_beginblock(L);
- }
- else if EQ("endblock") {
- lua_endblock(L);
- }
- else if EQ("newstate") {
- int stacksize = getnum(&pc);
- lua_State *L1 = lua_newstate("stack", stacksize,
- "builtin", getnum(&pc), NULL);
- lua_pushuserdata(L, L1);
- }
- else if EQ("closestate") {
- lua_close((lua_State *)lua_getuserdata(L, reg[getreg(L, &pc)]));
- }
- else if EQ("doremote") {
- lua_Object ol1 = reg[getreg(L, &pc)];
- lua_Object str = reg[getreg(L, &pc)];
- lua_State *L1;
- lua_Object temp;
- int i;
- if (!lua_isuserdata(L, ol1) || !lua_isstring(L, str))
- lua_error(L, "bad arguments for `doremote'");
- L1 = (lua_State *)lua_getuserdata(L, ol1);
- lua_dostring(L1, lua_getstring(L, str));
- i = 1;
- while ((temp = lua_getresult(L1, i++)) != LUA_NOOBJECT)
- lua_pushstring(L, lua_getstring(L1, temp));
- }
- else luaL_verror(L, "unknown command in `testC': %.20s", inst);
- }
- }
- /* }====================================================== */
- static const struct luaL_reg tests_funcs[] = {
- {"hash", hash_query},
- {"limits", get_limits},
- {"listcode", listcode},
- {"querystr", string_query},
- {"querytab", table_query},
- {"testC", testC},
- {"totalmem", mem_query}
- };
- void luaB_opentests (lua_State *L) {
- luaL_openl(L, tests_funcs);
- }
- #endif
|