1993-07-28 06:18:00 -07:00
|
|
|
/*
|
|
|
|
** hash.h
|
|
|
|
** hash manager for lua
|
1997-03-31 06:02:58 -08:00
|
|
|
** $Id: hash.h,v 2.14 1997/03/19 19:41:10 roberto Exp roberto $
|
1993-07-28 06:18:00 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef hash_h
|
|
|
|
#define hash_h
|
|
|
|
|
1995-01-12 06:19:04 -08:00
|
|
|
#include "types.h"
|
1996-02-12 10:32:40 -08:00
|
|
|
#include "opcode.h"
|
1995-01-12 06:19:04 -08:00
|
|
|
|
1997-02-26 09:38:41 -08:00
|
|
|
typedef struct node {
|
1997-03-31 06:02:58 -08:00
|
|
|
TObject ref;
|
|
|
|
TObject val;
|
1993-07-28 06:18:00 -07:00
|
|
|
} Node;
|
|
|
|
|
1997-02-26 09:38:41 -08:00
|
|
|
typedef struct Hash {
|
|
|
|
struct Hash *next;
|
|
|
|
Node *node;
|
|
|
|
int nhash;
|
|
|
|
int nuse;
|
|
|
|
int htag;
|
|
|
|
char mark;
|
1993-07-28 06:18:00 -07:00
|
|
|
} Hash;
|
|
|
|
|
|
|
|
|
1997-03-31 06:02:58 -08:00
|
|
|
int lua_equalObj (TObject *t1, TObject *t2);
|
1996-05-06 07:30:27 -07:00
|
|
|
int luaI_redimension (int nhash);
|
|
|
|
Hash *lua_createarray (int nhash);
|
1994-04-20 15:07:57 -07:00
|
|
|
void lua_hashmark (Hash *h);
|
1995-01-12 06:19:04 -08:00
|
|
|
Long lua_hashcollector (void);
|
1997-03-19 11:41:10 -08:00
|
|
|
void luaI_hashcallIM (void);
|
1997-03-31 06:02:58 -08:00
|
|
|
TObject *lua_hashget (Hash *t, TObject *ref);
|
|
|
|
TObject *lua_hashdefine (Hash *t, TObject *ref);
|
1993-07-28 06:18:00 -07:00
|
|
|
void lua_next (void);
|
|
|
|
|
|
|
|
#endif
|