lua/ltable.c

523 lines
15 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: ltable.c,v 1.138 2003/12/09 16:56:11 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
1999-10-14 23:13:31 +04:00
/*
2001-10-25 23:14:14 +04:00
** Implementation of tables (aka arrays, objects, or hash tables).
** Tables keep its elements in two parts: an array part and a hash part.
** Non-negative integer keys are all candidates to be kept in the array
** part. The actual size of the array is the largest `n' such that at
** least half the slots between 0 and n are in use.
** Hash uses a mix of chained scatter table with Brent's variation.
1999-10-14 23:13:31 +04:00
** A main invariant of these tables is that, if an element is not
** in its main position (i.e. the `original' position that its hash gives
** to it), then the colliding element is in its own main position.
2003-11-27 21:05:14 +03:00
** Hence even when the load factor reaches 100%, performance remains good.
1999-10-14 23:13:31 +04:00
*/
#include <string.h>
1999-10-14 23:13:31 +04:00
2002-12-04 20:38:31 +03:00
#define ltable_c
2001-10-25 23:14:14 +04:00
#include "lua.h"
2002-05-15 22:57:44 +04:00
#include "ldebug.h"
#include "ldo.h"
#include "lgc.h"
1997-09-16 23:25:59 +04:00
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
1997-09-16 23:25:59 +04:00
#include "ltable.h"
2001-10-25 23:14:14 +04:00
/*
** max size of array part is 2^MAXBITS
*/
2002-01-26 00:51:33 +03:00
#if BITS_INT > 26
2001-10-25 23:14:14 +04:00
#define MAXBITS 24
#else
2002-01-26 00:51:33 +03:00
#define MAXBITS (BITS_INT-2)
2001-10-25 23:14:14 +04:00
#endif
#define MAXASIZE (1 << MAXBITS)
2001-10-25 23:14:14 +04:00
2002-07-01 23:31:10 +04:00
/* function to convert a lua_Number to int (with any rounding method) */
#ifndef lua_number2int
#define lua_number2int(i,n) ((i)=(int)(n))
#endif
1997-09-16 23:25:59 +04:00
#define hashpow2(t,n) (gnode(t, lmod((n), sizenode(t))))
2003-03-20 23:26:33 +03:00
#define hashstr(t,str) hashpow2(t, (str)->tsv.hash)
#define hashboolean(t,p) hashpow2(t, p)
/*
** for some types, it is better to avoid modulus by power of 2, as
** they tend to have many 2 factors.
*/
#define hashmod(t,n) (gnode(t, ((n) % ((sizenode(t)-1)|1))))
#define hashpointer(t,p) hashmod(t, IntPoint(p))
/*
** number of ints inside a lua_Number
*/
#define numints cast(int, sizeof(lua_Number)/sizeof(int))
/*
** hash for lua_Numbers
*/
static Node *hashnum (const Table *t, lua_Number n) {
unsigned int a[numints];
int i;
n += 1; /* normalize number (avoid -0) */
lua_assert(sizeof(a) <= sizeof(n));
memcpy(a, &n, sizeof(a));
for (i = 1; i < numints; i++) a[0] += a[i];
return hashmod(t, a[0]);
}
1997-09-16 23:25:59 +04:00
1999-10-14 23:13:31 +04:00
/*
** returns the `main' position of an element in a table (that is, the index
** of its hash value)
*/
Node *luaH_mainposition (const Table *t, const TValue *key) {
switch (ttype(key)) {
case LUA_TNUMBER:
return hashnum(t, nvalue(key));
2000-10-05 16:14:08 +04:00
case LUA_TSTRING:
return hashstr(t, rawtsvalue(key));
2001-12-12 01:48:44 +03:00
case LUA_TBOOLEAN:
return hashboolean(t, bvalue(key));
case LUA_TLIGHTUSERDATA:
return hashpointer(t, pvalue(key));
2002-09-02 23:54:49 +04:00
default:
return hashpointer(t, gcvalue(key));
1997-09-16 23:25:59 +04:00
}
}
2001-10-25 23:14:14 +04:00
/*
** returns the index for `key' if `key' is an appropriate key to live in
** the array part of the table, -1 otherwise.
*/
static int arrayindex (const TValue *key, lua_Number lim) {
2002-08-05 18:50:39 +04:00
if (ttisnumber(key)) {
lua_Number n = nvalue(key);
2002-03-18 21:18:35 +03:00
int k;
if (n <= 0 || n > lim) return -1; /* out of range? */
lua_number2int(k, n);
if (cast(lua_Number, k) == nvalue(key))
2001-10-25 23:14:14 +04:00
return k;
}
return -1; /* `key' did not match some condition */
}
/*
** returns the index of a `key' for table traversals. First goes all
** elements in the array part, then elements in the hash part. The
** beginning and end of a traversal are signalled by -1.
*/
static int luaH_index (lua_State *L, Table *t, StkId key) {
2000-08-31 18:08:27 +04:00
int i;
2002-08-05 18:50:39 +04:00
if (ttisnil(key)) return -1; /* first iteration */
i = arrayindex(key, t->sizearray);
if (0 <= i) { /* is `key' inside array part? */
return i-1; /* yes; that's the index (corrected to C) */
2001-10-25 23:14:14 +04:00
}
2000-08-31 18:08:27 +04:00
else {
const TValue *v = luaH_get(t, key);
2000-08-31 18:08:27 +04:00
if (v == &luaO_nilobject)
2002-05-15 22:57:44 +04:00
luaG_runerror(L, "invalid key for `next'");
2001-08-31 23:46:07 +04:00
i = cast(int, (cast(const lu_byte *, v) -
cast(const lu_byte *, gval(gnode(t, 0)))) / sizeof(Node));
2001-10-25 23:14:14 +04:00
return i + t->sizearray; /* hash elements are numbered after array ones */
2000-08-31 18:08:27 +04:00
}
1997-09-16 23:25:59 +04:00
}
2000-08-31 18:08:27 +04:00
int luaH_next (lua_State *L, Table *t, StkId key) {
int i = luaH_index(L, t, key); /* find original element */
2001-10-25 23:14:14 +04:00
for (i++; i < t->sizearray; i++) { /* try first array part */
2002-08-05 18:50:39 +04:00
if (!ttisnil(&t->array[i])) { /* a non-nil value? */
setnvalue(key, cast(lua_Number, i+1));
setobj2s(L, key+1, &t->array[i]);
return 1;
2001-10-25 23:14:14 +04:00
}
}
for (i -= t->sizearray; i < sizenode(t); i++) { /* then hash part */
if (!ttisnil(gval(gnode(t, i)))) { /* a non-nil value? */
setobj2s(L, key, gkey(gnode(t, i)));
setobj2s(L, key+1, gval(gnode(t, i)));
return 1;
2001-10-25 23:14:14 +04:00
}
2001-01-29 16:14:49 +03:00
}
return 0; /* no more elements */
2001-01-29 16:14:49 +03:00
}
2001-02-20 21:15:33 +03:00
/*
2001-10-25 23:14:14 +04:00
** {=============================================================
** Rehash
** ==============================================================
2001-02-20 21:15:33 +03:00
*/
2001-10-25 23:14:14 +04:00
static void computesizes (int nums[], int ntotal, int *narray, int *nhash) {
2002-01-26 00:51:33 +03:00
int i;
2002-01-17 01:02:46 +03:00
int a = nums[0]; /* number of elements smaller than 2^i */
int na = a; /* number of elements to go to array part */
int n = (na == 0) ? -1 : 0; /* (log of) optimal size for array part */
2003-02-20 23:12:39 +03:00
for (i = 1; a < *narray && *narray >= twoto(i-1); i++) {
if (nums[i] > 0) {
a += nums[i];
if (a >= twoto(i-1)) { /* more than half elements in use? */
n = i;
na = a;
}
2001-10-25 23:14:14 +04:00
}
}
2002-01-17 01:02:46 +03:00
lua_assert(na <= *narray && *narray <= ntotal);
2001-10-25 23:14:14 +04:00
*nhash = ntotal - na;
*narray = (n == -1) ? 0 : twoto(n);
2002-01-17 01:02:46 +03:00
lua_assert(na <= *narray && na >= *narray/2);
2001-10-25 23:14:14 +04:00
}
static void numuse (const Table *t, int *narray, int *nhash) {
int nums[MAXBITS+1];
2003-02-13 19:08:32 +03:00
int i, lg;
2001-10-25 23:14:14 +04:00
int totaluse = 0;
lua_Number sizelimit; /* an upper bound for the array size */
2001-10-25 23:14:14 +04:00
/* count elements in array part */
2003-02-13 19:08:32 +03:00
for (i=0, lg=0; lg<=MAXBITS; lg++) { /* for each slice [2^(lg-1) to 2^lg) */
int ttlg = twoto(lg); /* 2^lg */
if (ttlg > t->sizearray) {
ttlg = t->sizearray;
if (i >= ttlg) break;
}
nums[lg] = 0;
for (; i<ttlg; i++) {
if (!ttisnil(&t->array[i])) {
nums[lg]++;
2001-10-25 23:14:14 +04:00
totaluse++;
}
2003-02-13 19:08:32 +03:00
}
2001-10-25 23:14:14 +04:00
}
2003-02-13 19:08:32 +03:00
for (; lg<=MAXBITS; lg++) nums[lg] = 0; /* reset other counts */
2002-01-17 01:02:46 +03:00
*narray = totaluse; /* all previous uses were in array part */
2001-10-25 23:14:14 +04:00
/* count elements in hash part */
i = sizenode(t);
/* array part cannot be larger than twice the maximum number of elements */
sizelimit = cast(lua_Number, totaluse + i) * 2;
if (sizelimit >= MAXASIZE) sizelimit = MAXASIZE;
2001-10-25 23:14:14 +04:00
while (i--) {
2003-02-20 23:12:39 +03:00
Node *n = &t->node[i];
if (!ttisnil(gval(n))) {
int k = arrayindex(gkey(n), sizelimit);
2002-01-17 01:02:46 +03:00
if (k >= 0) { /* is `key' an appropriate array index? */
2001-10-25 23:14:14 +04:00
nums[luaO_log2(k-1)+1]++; /* count as such */
2002-01-17 01:02:46 +03:00
(*narray)++;
}
2001-10-25 23:14:14 +04:00
totaluse++;
}
2001-02-20 21:15:33 +03:00
}
2001-10-25 23:14:14 +04:00
computesizes(nums, totaluse, narray, nhash);
2001-02-20 21:15:33 +03:00
}
2001-10-25 23:14:14 +04:00
static void setarrayvector (lua_State *L, Table *t, int size) {
int i;
luaM_reallocvector(L, t->array, t->sizearray, size, TValue);
2001-10-25 23:14:14 +04:00
for (i=t->sizearray; i<size; i++)
setnilvalue(&t->array[i]);
t->sizearray = size;
}
static void setnodevector (lua_State *L, Table *t, int lsize) {
1999-01-22 21:47:23 +03:00
int i;
int size = twoto(lsize);
if (lsize > MAXBITS)
2002-05-15 22:57:44 +04:00
luaG_runerror(L, "table overflow");
if (lsize == 0) { /* no elements to hash part? */
t->node = G(L)->dummynode; /* use common `dummynode' */
lua_assert(ttisnil(gkey(t->node))); /* assert invariants: */
lua_assert(ttisnil(gval(t->node)));
lua_assert(t->node->next == NULL); /* (`dummynode' must be empty) */
}
else {
t->node = luaM_newvector(L, size, Node);
for (i=0; i<size; i++) {
t->node[i].next = NULL;
setnilvalue(gkey(gnode(t, i)));
setnilvalue(gval(gnode(t, i)));
}
1999-10-14 23:13:31 +04:00
}
2001-10-25 23:14:14 +04:00
t->lsizenode = cast(lu_byte, lsize);
t->firstfree = gnode(t, size-1); /* first free position to be used */
1999-10-14 23:13:31 +04:00
}
2001-12-11 01:12:08 +03:00
static void resize (lua_State *L, Table *t, int nasize, int nhsize) {
2001-10-25 23:14:14 +04:00
int i;
int oldasize = t->sizearray;
int oldhsize = t->lsizenode;
2001-10-25 23:14:14 +04:00
Node *nold;
Node temp[1];
if (oldhsize)
nold = t->node; /* save old hash ... */
else { /* old hash is `dummynode' */
lua_assert(t->node == G(L)->dummynode);
2002-05-13 17:38:59 +04:00
temp[0] = t->node[0]; /* copy it to `temp' */
nold = temp;
setnilvalue(gkey(G(L)->dummynode)); /* restate invariant */
setnilvalue(gval(G(L)->dummynode));
2002-05-13 17:38:59 +04:00
lua_assert(G(L)->dummynode->next == NULL);
}
2002-05-13 17:38:59 +04:00
if (nasize > oldasize) /* array part must grow? */
2001-10-25 23:14:14 +04:00
setarrayvector(L, t, nasize);
/* create new hash part with appropriate size */
2001-12-11 01:12:08 +03:00
setnodevector(L, t, nhsize);
2001-10-25 23:14:14 +04:00
/* re-insert elements */
if (nasize < oldasize) { /* array part must shrink? */
t->sizearray = nasize;
/* re-insert elements from vanishing slice */
for (i=nasize; i<oldasize; i++) {
2002-08-05 18:50:39 +04:00
if (!ttisnil(&t->array[i]))
setobjt2t(L, luaH_setnum(L, t, i+1), &t->array[i]);
2001-10-25 23:14:14 +04:00
}
2002-05-13 17:38:59 +04:00
/* shrink array */
luaM_reallocvector(L, t->array, oldasize, nasize, TValue);
2001-10-25 23:14:14 +04:00
}
/* re-insert elements in hash part */
2002-05-13 17:38:59 +04:00
for (i = twoto(oldhsize) - 1; i >= 0; i--) {
2001-10-25 23:14:14 +04:00
Node *old = nold+i;
if (!ttisnil(gval(old)))
setobjt2t(L, luaH_set(L, t, gkey(old)), gval(old));
2001-10-25 23:14:14 +04:00
}
if (oldhsize)
luaM_freearray(L, nold, twoto(oldhsize), Node); /* free old array */
2001-10-25 23:14:14 +04:00
}
2001-12-11 01:12:08 +03:00
static void rehash (lua_State *L, Table *t) {
int nasize, nhsize;
numuse(t, &nasize, &nhsize); /* compute new sizes for array and hash parts */
resize(L, t, nasize, luaO_log2(nhsize)+1);
}
2001-10-25 23:14:14 +04:00
/*
** }=============================================================
*/
Table *luaH_new (lua_State *L, int narray, int lnhash) {
Table *t = luaM_new(L, Table);
luaC_link(L, obj2gco(t), LUA_TTABLE);
2003-12-01 21:22:56 +03:00
t->metatable = NULL;
t->flags = cast(lu_byte, ~0);
2001-10-25 23:14:14 +04:00
/* temporary values (kept only if some malloc fails) */
t->array = NULL;
t->sizearray = 0;
t->lsizenode = 0;
t->node = NULL;
2001-10-25 23:14:14 +04:00
setarrayvector(L, t, narray);
setnodevector(L, t, lnhash);
1997-09-16 23:25:59 +04:00
return t;
}
2001-10-25 23:14:14 +04:00
void luaH_free (lua_State *L, Table *t) {
if (t->lsizenode)
2001-10-25 23:14:14 +04:00
luaM_freearray(L, t->node, sizenode(t), Node);
luaM_freearray(L, t->array, t->sizearray, TValue);
2001-09-07 21:30:16 +04:00
luaM_freelem(L, t);
}
2001-10-25 23:14:14 +04:00
#if 0
/*
** try to remove an element from a hash table; cannot move any element
** (because gc can call `remove' during a table traversal)
*/
void luaH_remove (Table *t, Node *e) {
Node *mp = luaH_mainposition(t, gkey(e));
2001-10-25 23:14:14 +04:00
if (e != mp) { /* element not in its main position? */
while (mp->next != e) mp = mp->next; /* find previous */
mp->next = e->next; /* remove `e' from its list */
2001-02-20 21:15:33 +03:00
}
2001-10-25 23:14:14 +04:00
else {
if (e->next != NULL) ??
1999-10-14 23:13:31 +04:00
}
lua_assert(ttisnil(gval(node)));
setnilvalue(gkey(e)); /* clear node `e' */
2001-10-25 23:14:14 +04:00
e->next = NULL;
1997-09-16 23:25:59 +04:00
}
2001-10-25 23:14:14 +04:00
#endif
1997-09-16 23:25:59 +04:00
1999-10-14 23:13:31 +04:00
/*
** inserts a new key into a hash table; first, check whether key's main
** position is free. If not, check whether colliding node is in its main
** position or not: if it is not, move colliding node to an empty place and
** put new key in its main position; otherwise (colliding node is in its main
** position), new key goes to an empty position.
1999-10-14 23:13:31 +04:00
*/
static TValue *newkey (lua_State *L, Table *t, const TValue *key) {
TValue *val;
Node *mp = luaH_mainposition(t, key);
if (!ttisnil(gval(mp))) { /* main position is not free? */
Node *othern = luaH_mainposition(t, gkey(mp)); /* `mp' of colliding node */
Node *n = t->firstfree; /* get a free place */
if (othern != mp) { /* is colliding node out of its main position? */
1999-10-14 23:13:31 +04:00
/* yes; move colliding node into free position */
while (othern->next != mp) othern = othern->next; /* find previous */
othern->next = n; /* redo the chain with `n' in place of `mp' */
*n = *mp; /* copy colliding node into free pos. (mp->next also goes) */
mp->next = NULL; /* now `mp' is free */
setnilvalue(gval(mp));
1999-10-14 23:13:31 +04:00
}
else { /* colliding node is in its own main position */
/* new node will go into free position */
n->next = mp->next; /* chain new position */
mp->next = n;
mp = n;
}
}
setobj2t(L, gkey(mp), key);
2003-12-09 19:56:11 +03:00
luaC_barrier(L, t, key);
lua_assert(ttisnil(gval(mp)));
2000-06-06 20:31:41 +04:00
for (;;) { /* correct `firstfree' */
if (ttisnil(gkey(t->firstfree)))
return gval(mp); /* OK; table still has a free place */
1999-10-14 23:13:31 +04:00
else if (t->firstfree == t->node) break; /* cannot decrement from here */
else (t->firstfree)--;
}
2002-05-28 00:35:40 +04:00
/* no more free places; must create one */
setbvalue(gval(mp), 0); /* avoid new key being removed */
2002-05-28 00:35:40 +04:00
rehash(L, t); /* grow table */
val = cast(TValue *, luaH_get(t, key)); /* get new position */
2002-08-05 18:50:39 +04:00
lua_assert(ttisboolean(val));
2002-05-28 00:35:40 +04:00
setnilvalue(val);
return val;
1997-09-16 23:25:59 +04:00
}
/*
** generic search function
*/
static const TValue *luaH_getany (Table *t, const TValue *key) {
2003-11-27 21:05:14 +03:00
if (!ttisnil(key)) {
Node *n = luaH_mainposition(t, key);
do { /* check whether `key' is somewhere in the chain */
if (luaO_rawequalObj(gkey(n), key)) return gval(n); /* that's it */
else n = n->next;
} while (n);
}
2003-11-27 21:05:14 +03:00
return &luaO_nilobject;
}
/*
** search function for integers
*/
const TValue *luaH_getnum (Table *t, int key) {
2001-10-25 23:14:14 +04:00
if (1 <= key && key <= t->sizearray)
return &t->array[key-1];
else {
lua_Number nk = cast(lua_Number, key);
Node *n = hashnum(t, nk);
2001-10-25 23:14:14 +04:00
do { /* check whether `key' is somewhere in the chain */
if (ttisnumber(gkey(n)) && nvalue(gkey(n)) == nk)
return gval(n); /* that's it */
2001-10-25 23:14:14 +04:00
else n = n->next;
} while (n);
return &luaO_nilobject;
}
}
/*
** search function for strings
*/
const TValue *luaH_getstr (Table *t, TString *key) {
Node *n = hashstr(t, key);
do { /* check whether `key' is somewhere in the chain */
if (ttisstring(gkey(n)) && rawtsvalue(gkey(n)) == key)
return gval(n); /* that's it */
else n = n->next;
} while (n);
return &luaO_nilobject;
2000-06-06 00:15:33 +04:00
}
/*
** main search function
*/
const TValue *luaH_get (Table *t, const TValue *key) {
switch (ttype(key)) {
case LUA_TSTRING: return luaH_getstr(t, rawtsvalue(key));
case LUA_TNUMBER: {
2002-03-18 21:18:35 +03:00
int k;
lua_number2int(k, (nvalue(key)));
2001-08-31 23:46:07 +04:00
if (cast(lua_Number, k) == nvalue(key)) /* is an integer index? */
return luaH_getnum(t, k); /* use specialized version */
/* else go through */
}
default: return luaH_getany(t, key);
}
}
TValue *luaH_set (lua_State *L, Table *t, const TValue *key) {
const TValue *p = luaH_get(t, key);
2002-05-28 00:35:40 +04:00
t->flags = 0;
if (p != &luaO_nilobject)
return cast(TValue *, p);
2001-10-25 23:14:14 +04:00
else {
2002-08-05 18:50:39 +04:00
if (ttisnil(key)) luaG_runerror(L, "table index is nil");
else if (ttisnumber(key) && nvalue(key) != nvalue(key))
luaG_runerror(L, "table index is NaN");
2002-05-28 00:35:40 +04:00
return newkey(L, t, key);
}
}
TValue *luaH_setnum (lua_State *L, Table *t, int key) {
const TValue *p = luaH_getnum(t, key);
2002-05-28 00:35:40 +04:00
if (p != &luaO_nilobject)
return cast(TValue *, p);
2001-10-25 23:14:14 +04:00
else {
TValue k;
setnvalue(&k, cast(lua_Number, key));
2002-05-28 00:35:40 +04:00
return newkey(L, t, &k);
}
}
2000-05-24 17:54:49 +04:00
2003-08-26 16:04:13 +04:00
TValue *luaH_setstr (lua_State *L, Table *t, TString *key) {
const TValue *p = luaH_getstr(t, key);
2003-08-26 16:04:13 +04:00
if (p != &luaO_nilobject)
return cast(TValue *, p);
2003-08-26 16:04:13 +04:00
else {
TValue k;
setsvalue(L, &k, key);
2003-08-26 16:04:13 +04:00
return newkey(L, t, &k);
}
}