lua/lobject.h

193 lines
4.4 KiB
C
Raw Normal View History

1997-09-17 03:25:59 +08:00
/*
2000-03-25 01:26:08 +08:00
** $Id: lobject.h,v 1.53 2000/03/20 19:14:54 roberto Exp roberto $
1997-09-17 03:25:59 +08:00
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
#ifndef lobject_h
#define lobject_h
2000-03-25 01:26:08 +08:00
#include "llims.h"
1997-12-27 02:38:16 +08:00
#include "lua.h"
1997-12-24 03:24:19 +08:00
1998-03-10 05:49:52 +08:00
#ifdef DEBUG
#undef NDEBUG
#include <assert.h>
#define LUA_INTERNALERROR(L,s) assert(0)
#define LUA_ASSERT(L,c,s) assert(c)
1998-03-10 05:49:52 +08:00
#else
#define LUA_INTERNALERROR(L,s) /* empty */
2000-03-03 22:58:26 +08:00
#define LUA_ASSERT(L,c,s) /* empty */
1998-03-10 05:49:52 +08:00
#endif
#define UNUSED(x) (void)x /* to avoid warnings */
1997-09-17 03:25:59 +08:00
/*
** Lua TYPES
** WARNING: if you change the order of this enumeration,
** grep "ORDER LUA_T"
1997-09-17 03:25:59 +08:00
*/
typedef enum {
2000-03-11 02:37:44 +08:00
TAG_USERDATA = 0, /* default tag for userdata */
2000-03-21 03:14:54 +08:00
TAG_NUMBER, /* fixed tag for numbers */
TAG_STRING, /* fixed tag for strings */
TAG_ARRAY, /* default tag for tables (or arrays) */
TAG_LPROTO, /* fixed tag for Lua functions */
TAG_CPROTO, /* fixed tag for C functions */
TAG_NIL, /* last "pre-defined" tag */
TAG_LCLOSURE, /* Lua closure */
TAG_CCLOSURE, /* C closure */
TAG_LCLMARK, /* mark for Lua closures */
TAG_CCLMARK, /* mark for C closures */
TAG_LMARK, /* mark for Lua prototypes */
TAG_CMARK, /* mark for C prototypes */
TAG_LINE
} lua_Type;
1997-09-17 03:25:59 +08:00
2000-03-21 03:14:54 +08:00
/* tags for values visible from Lua == first user-created tag */
#define NUM_TAGS 7
/*
2000-03-21 03:14:54 +08:00
** check whether `t' is a mark
*/
2000-03-21 03:14:54 +08:00
#define is_T_MARK(t) (TAG_LCLMARK <= (t) && (t) <= TAG_CMARK)
typedef union {
2000-03-11 02:37:44 +08:00
lua_CFunction f; /* TAG_CPROTO, TAG_CMARK */
Number n; /* TAG_NUMBER */
struct TString *ts; /* TAG_STRING, TAG_USERDATA */
struct Proto *tf; /* TAG_LPROTO, TAG_LMARK */
struct Closure *cl; /* TAG_[CL]CLOSURE, TAG_[CL]CLMARK */
struct Hash *a; /* TAG_ARRAY */
int i; /* TAG_LINE */
} Value;
1997-09-17 03:25:59 +08:00
typedef struct TObject {
lua_Type ttype;
Value value;
} TObject;
1997-09-17 03:25:59 +08:00
typedef struct GlobalVar {
TObject value;
struct GlobalVar *next;
2000-03-11 02:37:44 +08:00
struct TString *name;
} GlobalVar;
/*
** String headers for string table
*/
2000-03-11 02:37:44 +08:00
typedef struct TString {
union {
struct { /* for strings */
GlobalVar *gv; /* eventual global value with this name */
long len;
1998-03-07 00:54:42 +08:00
} s;
struct { /* for userdata */
int tag;
void *value;
} d;
} u;
2000-03-11 02:37:44 +08:00
struct TString *nexthash; /* chain for hash table */
unsigned long hash;
int constindex; /* hint to reuse constants (= -1 if this is a userdata) */
unsigned char marked;
char str[1]; /* \0 byte already reserved */
2000-03-11 02:37:44 +08:00
} TString;
1997-09-17 03:25:59 +08:00
/*
** Function Prototypes
*/
2000-03-11 02:37:44 +08:00
typedef struct Proto {
struct Proto *next;
int marked;
2000-03-11 02:37:44 +08:00
struct TString **kstr; /* strings used by the function */
2000-01-29 00:53:00 +08:00
int nkstr; /* size of `kstr' */
2000-03-11 02:37:44 +08:00
Number *knum; /* Number numbers used by the function */
2000-01-29 00:53:00 +08:00
int nknum; /* size of `knum' */
2000-03-11 02:37:44 +08:00
struct Proto **kproto; /* functions defined inside the function */
2000-01-29 00:53:00 +08:00
int nkproto; /* size of `kproto' */
2000-02-15 00:51:08 +08:00
Instruction *code; /* ends with opcode ENDCODE */
1997-09-17 03:25:59 +08:00
int lineDefined;
2000-03-11 02:37:44 +08:00
TString *source;
2000-02-22 02:33:26 +08:00
int numparams;
int is_vararg;
int maxstacksize;
1997-09-17 03:25:59 +08:00
struct LocVar *locvars; /* ends with line = -1 */
2000-03-11 02:37:44 +08:00
} Proto;
1997-09-17 03:25:59 +08:00
1997-09-17 03:25:59 +08:00
typedef struct LocVar {
2000-03-11 02:37:44 +08:00
TString *varname; /* NULL signals end of scope */
1997-09-17 03:25:59 +08:00
int line;
} LocVar;
/* Macros to access structure members */
#define ttype(o) ((o)->ttype)
#define nvalue(o) ((o)->value.n)
#define svalue(o) ((o)->value.ts->str)
#define tsvalue(o) ((o)->value.ts)
#define clvalue(o) ((o)->value.cl)
#define avalue(o) ((o)->value.a)
#define fvalue(o) ((o)->value.f)
#define tfvalue(o) ((o)->value.tf)
1997-11-28 20:39:22 +08:00
#define protovalue(o) ((o)->value.cl->consts)
1997-09-17 03:25:59 +08:00
1997-09-17 03:25:59 +08:00
/*
** Closures
*/
typedef struct Closure {
struct Closure *next;
int marked;
1999-12-28 01:33:22 +08:00
int nelems; /* not including the first one (always the prototype) */
1997-09-17 03:25:59 +08:00
TObject consts[1]; /* at least one for prototype */
} Closure;
2000-03-11 02:37:44 +08:00
typedef struct Node {
1999-10-15 03:13:31 +08:00
TObject key;
1997-09-17 03:25:59 +08:00
TObject val;
2000-03-11 02:37:44 +08:00
struct Node *next; /* for chaining */
1997-09-17 03:25:59 +08:00
} Node;
typedef struct Hash {
1999-10-15 03:13:31 +08:00
int htag;
Node *node;
1999-10-19 21:33:22 +08:00
int size;
1999-10-15 03:13:31 +08:00
Node *firstfree; /* this position is free; all positions after it are full */
struct Hash *next;
int marked;
1997-09-17 03:25:59 +08:00
} Hash;
1999-08-17 04:52:00 +08:00
extern const char *const luaO_typenames[];
2000-03-03 22:58:26 +08:00
extern const TObject luaO_nilobject;
1997-09-17 03:25:59 +08:00
2000-03-21 03:14:54 +08:00
#define luaO_typename(o) luaO_typenames[ttype(o)]
1998-07-13 00:11:55 +08:00
unsigned long luaO_power2 (unsigned long n);
1998-07-13 00:11:55 +08:00
2000-03-03 22:58:26 +08:00
#define luaO_equalObj(t1,t2) (ttype(t1) == ttype(t2) && luaO_equalval(t1,t2))
1999-08-17 04:52:00 +08:00
int luaO_equalval (const TObject *t1, const TObject *t2);
int luaO_redimension (lua_State *L, int oldsize);
2000-03-11 02:37:44 +08:00
int luaO_str2d (const char *s, Number *result);
1997-09-17 03:25:59 +08:00
#endif