lua/lobject.h

237 lines
5.7 KiB
C
Raw Normal View History

1997-09-16 12:25:59 -07:00
/*
2000-03-03 06:58:26 -08:00
** $Id: lobject.h,v 1.49 2000/02/21 18:33:26 roberto Exp roberto $
1997-09-16 12:25:59 -07:00
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
#ifndef lobject_h
#define lobject_h
#include <limits.h>
1997-12-26 10:38:16 -08:00
#include "lua.h"
1997-12-23 11:24:19 -08:00
1998-03-09 13: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-09 13:49:52 -08:00
#else
#define LUA_INTERNALERROR(L,s) /* empty */
2000-03-03 06:58:26 -08:00
#define LUA_ASSERT(L,c,s) /* empty */
1998-03-09 13:49:52 -08:00
#endif
#define UNUSED(x) (void)x /* to avoid warnings */
1997-12-23 11:24:19 -08:00
/*
** "real" is the type "number" of Lua
** GREP LUA_NUMBER to change that
*/
#ifndef LUA_NUM_TYPE
#define LUA_NUM_TYPE double
1997-09-16 12:25:59 -07:00
#endif
typedef LUA_NUM_TYPE real;
1997-12-23 11:24:19 -08:00
2000-02-14 08:51:08 -08:00
/*
** type for virtual-machine instructions
** must be an unsigned with 4 bytes (see details in lopcodes.h)
*/
typedef unsigned long Instruction;
1997-09-16 12:25:59 -07:00
#define MAX_INT (INT_MAX-2) /* maximum value of an int (-2 for safety) */
1999-12-27 09:33:22 -08:00
/* conversion of pointer to int (for hashing only) */
/* (the shift removes bits that are usually 0 because of alignment) */
2000-03-03 06:58:26 -08:00
#define IntPoint(L, p) (((unsigned long)(p)) >> 3)
/*
** number of `blocks' for garbage collection: each reference to other
** objects count 1, and each 32 bytes of `raw' memory count 1; we add
** 2 to the total as a minimum (and also to count the overhead of malloc)
*/
#define numblocks(L, o,b) ((o)+(b)/32+2)
1997-09-16 12:25:59 -07:00
/*
** Lua TYPES
** WARNING: if you change the order of this enumeration,
** grep "ORDER LUA_T"
1997-09-16 12:25:59 -07:00
*/
typedef enum {
2000-03-03 06:58:26 -08:00
LUA_T_USERDATA = 0, /* default tag for userdata */
LUA_T_NUMBER = -1, /* fixed tag for numbers */
LUA_T_STRING = -2, /* fixed tag for strings */
LUA_T_ARRAY = -3, /* default tag for tables (or arrays) */
LUA_T_LPROTO = -4, /* fixed tag for Lua functions */
LUA_T_CPROTO = -5, /* fixed tag for C functions */
LUA_T_NIL = -6, /* last "pre-defined" tag */
LUA_T_LCLOSURE = -7, /* Lua closure */
LUA_T_CCLOSURE = -8, /* C closure */
LUA_T_LCLMARK = -9 ,/* mark for Lua closures */
LUA_T_CCLMARK = -10,/* mark for C closures */
2000-03-03 06:58:26 -08:00
LUA_T_LMARK = -11,/* mark for Lua prototypes */
LUA_T_CMARK = -12,/* mark for C prototypes */
LUA_T_LINE = -13
} lua_Type;
1997-09-16 12:25:59 -07:00
#define NUM_TAGS 7 /* tags for values visible from Lua */
#define LAST_REGULAR_TAG LUA_T_CCLOSURE /* after that, are all marks */
/*
2000-03-03 06:58:26 -08:00
** check whether `t' is a mark; ttypes are negative numbers, so the
** comparisons look reversed. (ORDER LUA_T)
*/
#define is_T_MARK(t) (LUA_T_CMARK <= (t) && (t) <= LUA_T_LCLMARK)
typedef union {
lua_CFunction f; /* LUA_T_CPROTO, LUA_T_CMARK */
real n; /* LUA_T_NUMBER */
struct TaggedString *ts; /* LUA_T_STRING, LUA_T_USERDATA */
struct TProtoFunc *tf; /* LUA_T_LPROTO, LUA_T_LMARK */
struct Closure *cl; /* LUA_T_[CL]CLOSURE, LUA_T_[CL]CLMARK */
struct Hash *a; /* LUA_T_ARRAY */
int i; /* LUA_T_LINE */
} Value;
1997-09-16 12:25:59 -07:00
typedef struct TObject {
lua_Type ttype;
Value value;
} TObject;
1997-09-16 12:25:59 -07:00
typedef struct GlobalVar {
TObject value;
struct GlobalVar *next;
struct TaggedString *name;
} GlobalVar;
/*
** String headers for string table
*/
typedef struct TaggedString {
union {
struct { /* for strings */
GlobalVar *gv; /* eventual global value with this name */
long len;
1998-03-06 08:54:42 -08:00
} s;
struct { /* for userdata */
int tag;
void *value;
} d;
} u;
struct TaggedString *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 */
} TaggedString;
1997-09-16 12:25:59 -07:00
/*
** Function Prototypes
*/
typedef struct TProtoFunc {
struct TProtoFunc *next;
int marked;
2000-01-28 08:53:00 -08:00
struct TaggedString **kstr; /* strings used by the function */
int nkstr; /* size of `kstr' */
real *knum; /* real numbers used by the function */
int nknum; /* size of `knum' */
struct TProtoFunc **kproto; /* functions defined inside the function */
int nkproto; /* size of `kproto' */
2000-02-14 08:51:08 -08:00
Instruction *code; /* ends with opcode ENDCODE */
1997-09-16 12:25:59 -07:00
int lineDefined;
TaggedString *source;
2000-02-21 10:33:26 -08:00
int numparams;
int is_vararg;
int maxstacksize;
1997-09-16 12:25:59 -07:00
struct LocVar *locvars; /* ends with line = -1 */
} TProtoFunc;
1997-09-16 12:25:59 -07:00
typedef struct LocVar {
TaggedString *varname; /* NULL signals end of scope */
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 04:39:22 -08:00
#define protovalue(o) ((o)->value.cl->consts)
1997-09-16 12:25:59 -07:00
1997-09-16 12:25:59 -07:00
/*
** Closures
*/
typedef struct Closure {
struct Closure *next;
int marked;
1999-12-27 09:33:22 -08:00
int nelems; /* not including the first one (always the prototype) */
1997-09-16 12:25:59 -07:00
TObject consts[1]; /* at least one for prototype */
} Closure;
typedef struct node {
1999-10-14 12:13:31 -07:00
TObject key;
1997-09-16 12:25:59 -07:00
TObject val;
1999-10-14 12:13:31 -07:00
struct node *next; /* for chaining */
1997-09-16 12:25:59 -07:00
} Node;
typedef struct Hash {
1999-10-14 12:13:31 -07:00
int htag;
Node *node;
1999-10-19 06:33:22 -07:00
int size;
1999-10-14 12:13:31 -07:00
Node *firstfree; /* this position is free; all positions after it are full */
struct Hash *next;
int marked;
1997-09-16 12:25:59 -07:00
} Hash;
1999-08-16 13:52:00 -07:00
extern const char *const luaO_typenames[];
2000-03-03 06:58:26 -08:00
extern const TObject luaO_nilobject;
1997-09-16 12:25:59 -07:00
1999-12-14 10:33:29 -08:00
#define luaO_typename(o) luaO_typenames[-ttype(o)]
1998-07-12 09:11:55 -07:00
#define MINPOWER2 4 /* minimum size for "growing" vectors */
unsigned long luaO_power2 (unsigned long n);
1998-07-12 09:11:55 -07:00
2000-03-03 06:58:26 -08:00
#define luaO_equalObj(t1,t2) (ttype(t1) == ttype(t2) && luaO_equalval(t1,t2))
1999-08-16 13:52:00 -07:00
int luaO_equalval (const TObject *t1, const TObject *t2);
int luaO_redimension (lua_State *L, int oldsize);
int luaO_str2d (const char *s, real *result);
1997-09-16 12:25:59 -07:00
#endif