1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2004-05-14 23:25:09 +04:00
|
|
|
** $Id: lvm.h,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Lua virtual machine
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lvm_h
|
|
|
|
#define lvm_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "ldo.h"
|
|
|
|
#include "lobject.h"
|
1998-07-12 20:16:43 +04:00
|
|
|
#include "ltm.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
2002-02-07 20:24:05 +03:00
|
|
|
#define tostring(L,o) ((ttype(o) == LUA_TSTRING) || (luaV_tostring(L, o)))
|
|
|
|
|
2002-03-05 00:33:09 +03:00
|
|
|
#define tonumber(o,n) (ttype(o) == LUA_TNUMBER || \
|
|
|
|
(((o) = luaV_tonumber(o,n)) != NULL))
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2002-06-13 17:39:55 +04:00
|
|
|
#define equalobj(L,o1,o2) \
|
|
|
|
(ttype(o1) == ttype(o2) && luaV_equalval(L, o1, o2))
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2003-12-10 15:13:36 +03:00
|
|
|
int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r);
|
|
|
|
int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2);
|
|
|
|
const TValue *luaV_tonumber (const TValue *obj, TValue *n);
|
2002-11-14 19:16:21 +03:00
|
|
|
int luaV_tostring (lua_State *L, StkId obj);
|
2004-05-14 23:25:09 +04:00
|
|
|
StkId luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val,
|
|
|
|
const Instruction *pc);
|
|
|
|
StkId luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val,
|
|
|
|
const Instruction *pc);
|
2003-07-17 00:49:02 +04:00
|
|
|
StkId luaV_execute (lua_State *L, int nexeccalls);
|
2002-06-03 18:08:43 +04:00
|
|
|
void luaV_concat (lua_State *L, int total, int last);
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
#endif
|