lua/ltable.c

649 lines
18 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: ltable.c,v 2.94 2014/08/01 17:24:02 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 <float.h>
#include <math.h>
#include <string.h>
#include <limits.h>
1999-10-14 23:13:31 +04:00
2002-12-04 20:38:31 +03:00
#define ltable_c
#define LUA_CORE
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"
2010-04-05 20:26:37 +04:00
#include "lstring.h"
1997-09-16 23:25:59 +04:00
#include "ltable.h"
#include "lvm.h"
1997-09-16 23:25:59 +04:00
2001-10-25 23:14:14 +04:00
/*
** Maximum size of array part (MAXASIZE) is 2^MAXABITS. MAXABITS is
** the largest integer such that MAXASIZE fits in an unsigned int.
2001-10-25 23:14:14 +04:00
*/
#define MAXABITS cast_int(sizeof(int) * CHAR_BIT - 1)
#define MAXASIZE (1u << MAXABITS)
/*
** Maximum size of hash part is 2^MAXHBITS. MAXHBITS is the largest
** integer such that 2^MAXHBITS fits in a signed int. (Note that the
** maximum number of elements in a table, 2^MAXABITS + 2^MAXHBITS, still
** fits comfortably in an unsigned int.)
*/
#define MAXHBITS (MAXABITS - 1)
2001-10-25 23:14:14 +04:00
1997-09-16 23:25:59 +04:00
2012-05-23 19:37:09 +04:00
#define hashpow2(t,n) (gnode(t, lmod((n), sizenode(t))))
2006-09-11 18:07:24 +04:00
#define hashstr(t,str) hashpow2(t, (str)->hash)
2012-05-23 19:37:09 +04:00
#define hashboolean(t,p) hashpow2(t, p)
#define hashint(t,i) hashpow2(t, i)
/*
** 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, point2int(p))
2006-01-10 16:13:06 +03:00
#define dummynode (&dummynode_)
2009-11-19 20:54:07 +03:00
#define isdummy(n) ((n) == dummynode)
2006-01-10 16:13:06 +03:00
static const Node dummynode_ = {
{NILCONSTANT}, /* value */
{{NILCONSTANT, 0}} /* key */
};
/*
** Checks whether a float has a value representable as a lua_Integer
** (and does the conversion if so)
*/
static int numisinteger (lua_Number x, lua_Integer *p) {
if ((x) == l_floor(x)) /* integral value? */
return lua_numtointeger(x, p); /* try as an integer */
else return 0;
}
/*
** hash for floating-point numbers
*/
static Node *hashfloat (const Table *t, lua_Number n) {
int i;
n = l_mathop(frexp)(n, &i) * cast_num(INT_MAX - DBL_MAX_EXP);
i += cast_int(n);
if (i < 0) {
2011-06-16 18:14:31 +04:00
if (cast(unsigned int, i) == 0u - i) /* use unsigned to avoid overflows */
2011-06-09 22:24:22 +04:00
i = 0; /* handle INT_MIN */
i = -i; /* must be a positive value */
}
return hashmod(t, i);
}
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)
*/
2006-01-10 16:13:06 +03:00
static Node *mainposition (const Table *t, const TValue *key) {
switch (ttype(key)) {
case LUA_TNUMINT:
return hashint(t, ivalue(key));
case LUA_TNUMFLT:
return hashfloat(t, fltvalue(key));
case LUA_TSHRSTR:
return hashstr(t, tsvalue(key));
2012-01-26 01:05:40 +04:00
case LUA_TLNGSTR: {
TString *s = tsvalue(key);
if (s->extra == 0) { /* no hash? */
s->hash = luaS_hash(getstr(s), s->len, s->hash);
s->extra = 1; /* now it has its hash */
2012-01-26 01:05:40 +04:00
}
return hashstr(t, tsvalue(key));
2012-01-26 01:05:40 +04:00
}
2001-12-12 01:48:44 +03:00
case LUA_TBOOLEAN:
return hashboolean(t, bvalue(key));
case LUA_TLIGHTUSERDATA:
return hashpointer(t, pvalue(key));
case LUA_TLCF:
return hashpointer(t, fvalue(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, 0 otherwise.
2001-10-25 23:14:14 +04:00
*/
static unsigned int arrayindex (const TValue *key) {
if (ttisinteger(key)) {
lua_Integer k = ivalue(key);
if (0 < k && (lua_Unsigned)k <= MAXASIZE)
return cast(unsigned int, k); /* 'key' is an appropriate array index */
}
return 0; /* `key' did not match some condition */
2001-10-25 23:14:14 +04:00
}
/*
** 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 of a traversal is signaled by 0.
2001-10-25 23:14:14 +04:00
*/
static unsigned int findindex (lua_State *L, Table *t, StkId key) {
unsigned int i;
if (ttisnil(key)) return 0; /* first iteration */
2004-09-27 22:54:45 +04:00
i = arrayindex(key);
if (i != 0 && i <= t->sizearray) /* is `key' inside array part? */
return i; /* yes; that's the index */
2000-08-31 18:08:27 +04:00
else {
int nx;
2006-01-10 16:13:06 +03:00
Node *n = mainposition(t, key);
2011-11-30 16:42:49 +04:00
for (;;) { /* check whether `key' is somewhere in the chain */
/* key may be dead already, but it is ok to use it in `next' */
if (luaV_rawequalobj(gkey(n), key) ||
(ttisdeadkey(gkey(n)) && iscollectable(key) &&
2011-09-25 01:12:01 +04:00
deadvalue(gkey(n)) == gcvalue(key))) {
2005-12-22 19:19:56 +03:00
i = cast_int(n - gnode(t, 0)); /* key index in hash table */
/* hash elements are numbered after array ones */
return (i + 1) + t->sizearray;
}
nx = gnext(n);
if (nx == 0)
2011-11-30 16:42:49 +04:00
luaG_runerror(L, "invalid key to " LUA_QL("next")); /* key not found */
else n += nx;
2011-11-30 16:42:49 +04:00
}
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) {
unsigned int i = findindex(L, t, key); /* find original element */
for (; 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? */
setivalue(key, i + 1);
setobj2s(L, key+1, &t->array[i]);
return 1;
2001-10-25 23:14:14 +04:00
}
}
for (i -= t->sizearray; cast_int(i) < sizenode(t); i++) { /* 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
/*
** Compute the optimal size for the array part of table 't'. 'nums' is a
** "count array" where 'nums[i]' is the number of integers in the table
** between 2^(i - 1) + 1 and 2^i. Put in '*narray' the optimal size, and
** return the number of elements that will go to that part.
*/
static unsigned int computesizes (unsigned int nums[], unsigned int *narray) {
2002-01-26 00:51:33 +03:00
int i;
unsigned int twotoi; /* 2^i */
unsigned int a = 0; /* number of elements smaller than 2^i */
unsigned int na = 0; /* number of elements to go to array part */
unsigned int n = 0; /* optimal size for array part */
for (i = 0, twotoi = 1; twotoi/2 < *narray; i++, twotoi *= 2) {
if (nums[i] > 0) {
a += nums[i];
if (a > twotoi/2) { /* more than half elements present? */
n = twotoi; /* optimal size (till now) */
na = a; /* all elements up to 'n' will go to array part */
}
2001-10-25 23:14:14 +04:00
}
if (a == *narray) break; /* all elements already counted */
2001-10-25 23:14:14 +04:00
}
*narray = n;
lua_assert(*narray/2 <= na && na <= *narray);
return na;
2001-10-25 23:14:14 +04:00
}
static int countint (const TValue *key, unsigned int *nums) {
unsigned int k = arrayindex(key);
if (k != 0) { /* is `key' an appropriate array index? */
nums[luaO_ceillog2(k)]++; /* count as such */
2005-01-04 18:55:12 +03:00
return 1;
}
else
return 0;
}
static unsigned int numusearray (const Table *t, unsigned int *nums) {
int lg;
unsigned int ttlg; /* 2^lg */
unsigned int ause = 0; /* summation of `nums' */
unsigned int i = 1; /* count to traverse all array keys */
/* traverse each slice */
for (lg = 0, ttlg = 1; lg <= MAXABITS; lg++, ttlg *= 2) {
unsigned int lc = 0; /* counter */
unsigned int lim = ttlg;
if (lim > t->sizearray) {
lim = t->sizearray; /* adjust upper limit */
if (i > lim)
break; /* no more elements to count */
2003-02-13 19:08:32 +03:00
}
/* count elements in range (2^(lg - 1), 2^lg] */
for (; i <= lim; i++) {
if (!ttisnil(&t->array[i-1]))
lc++;
2003-02-13 19:08:32 +03:00
}
nums[lg] += lc;
ause += lc;
2001-10-25 23:14:14 +04:00
}
return ause;
}
static int numusehash (const Table *t, unsigned int *nums,
unsigned int *pnasize) {
int totaluse = 0; /* total number of elements */
int ause = 0; /* elements added to 'nums' (can go to array part) */
int i = sizenode(t);
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))) {
ause += countint(gkey(n), nums);
2001-10-25 23:14:14 +04:00
totaluse++;
}
2001-02-20 21:15:33 +03:00
}
*pnasize += ause;
return totaluse;
2001-02-20 21:15:33 +03:00
}
static void setarrayvector (lua_State *L, Table *t, unsigned int size) {
unsigned 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, unsigned int size) {
int lsize;
if (size == 0) { /* no elements to hash part? */
2006-01-10 16:13:06 +03:00
t->node = cast(Node *, dummynode); /* use common `dummynode' */
lsize = 0;
}
else {
int i;
lsize = luaO_ceillog2(size);
if (lsize > MAXHBITS)
luaG_runerror(L, "table overflow");
size = twoto(lsize);
t->node = luaM_newvector(L, size, Node);
for (i = 0; i < (int)size; i++) {
2006-01-10 15:51:53 +03:00
Node *n = gnode(t, i);
gnext(n) = 0;
setnilvalue(wgkey(n));
2006-01-10 15:51:53 +03:00
setnilvalue(gval(n));
}
1999-10-14 23:13:31 +04:00
}
2005-12-22 19:19:56 +03:00
t->lsizenode = cast_byte(lsize);
t->lastfree = gnode(t, size); /* all positions are free */
1999-10-14 23:13:31 +04:00
}
void luaH_resize (lua_State *L, Table *t, unsigned int nasize,
unsigned int nhsize) {
unsigned int i;
int j;
unsigned int oldasize = t->sizearray;
int oldhsize = t->lsizenode;
Node *nold = t->node; /* save old hash ... */
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 */
2006-09-11 18:07:24 +04:00
setnodevector(L, t, nhsize);
2001-10-25 23:14:14 +04:00
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]))
luaH_setint(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 from hash part */
for (j = twoto(oldhsize) - 1; j >= 0; j--) {
Node *old = nold + j;
if (!ttisnil(gval(old))) {
/* doesn't need barrier/invalidate cache, as entry was
already present in the table */
setobjt2t(L, luaH_set(L, t, gkey(old)), gval(old));
}
2001-10-25 23:14:14 +04:00
}
2009-11-19 20:54:07 +03:00
if (!isdummy(nold))
luaM_freearray(L, nold, cast(size_t, twoto(oldhsize))); /* free old array */
2001-10-25 23:14:14 +04:00
}
2001-12-11 01:12:08 +03:00
void luaH_resizearray (lua_State *L, Table *t, unsigned int nasize) {
2009-11-19 20:54:07 +03:00
int nsize = isdummy(t->node) ? 0 : sizenode(t);
luaH_resize(L, t, nasize, nsize);
2005-01-04 18:55:12 +03:00
}
/*
** nums[i] = number of keys 'k' where 2^(i - 1) < k <= 2^i
*/
2005-01-04 18:55:12 +03:00
static void rehash (lua_State *L, Table *t, const TValue *ek) {
unsigned int nasize, na;
unsigned int nums[MAXABITS + 1];
int i;
int totaluse;
for (i = 0; i <= MAXABITS; i++) nums[i] = 0; /* reset counts */
nasize = numusearray(t, nums); /* count keys in array part */
totaluse = nasize; /* all those keys are integer keys */
totaluse += numusehash(t, nums, &nasize); /* count keys in hash part */
/* count extra key */
nasize += countint(ek, nums);
totaluse++;
/* compute new size for array part */
na = computesizes(nums, &nasize);
2005-01-04 18:55:12 +03:00
/* resize the table to new computed sizes */
luaH_resize(L, t, nasize, totaluse - na);
2001-12-11 01:12:08 +03:00
}
2001-10-25 23:14:14 +04:00
/*
** }=============================================================
*/
Table *luaH_new (lua_State *L) {
GCObject *o = luaC_newobj(L, LUA_TTABLE, sizeof(Table));
Table *t = gco2t(o);
2003-12-01 21:22:56 +03:00
t->metatable = NULL;
2005-12-22 19:19:56 +03:00
t->flags = cast_byte(~0);
2001-10-25 23:14:14 +04:00
t->array = NULL;
t->sizearray = 0;
setnodevector(L, t, 0);
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) {
2009-11-19 20:54:07 +03:00
if (!isdummy(t->node))
luaM_freearray(L, t->node, cast(size_t, sizenode(t)));
luaM_freearray(L, t->array, t->sizearray);
2004-11-24 22:20:21 +03:00
luaM_free(L, t);
}
2005-07-11 18:01:37 +04:00
static Node *getfreepos (Table *t) {
while (t->lastfree > t->node) {
t->lastfree--;
if (ttisnil(gkey(t->lastfree)))
return t->lastfree;
}
return NULL; /* could not find a free place */
}
1997-09-16 23:25:59 +04:00
1999-10-14 23:13:31 +04:00
/*
2006-09-11 18:07:24 +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
*/
TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key) {
Node *mp;
TValue aux;
if (ttisnil(key)) luaG_runerror(L, "table index is nil");
else if (ttisfloat(key)) {
lua_Number n = fltvalue(key);
lua_Integer k;
if (luai_numisnan(n))
luaG_runerror(L, "table index is NaN");
if (numisinteger(n, &k)) { /* index is int? */
setivalue(&aux, k);
key = &aux; /* insert it as an integer */
}
}
mp = mainposition(t, key);
2009-11-19 20:54:07 +03:00
if (!ttisnil(gval(mp)) || isdummy(mp)) { /* main position is taken? */
Node *othern;
Node *f = getfreepos(t); /* get a free place */
if (f == NULL) { /* cannot find a free place? */
rehash(L, t, key); /* grow table */
2014-08-01 21:24:02 +04:00
/* whatever called 'newkey' takes care of TM cache and GC barrier */
return luaH_set(L, t, key); /* insert key into grown table */
}
lua_assert(!isdummy(f));
othern = mainposition(t, gkey(mp));
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 + gnext(othern) != mp) /* find previous */
othern += gnext(othern);
2014-04-01 18:39:55 +04:00
gnext(othern) = cast_int(f - othern); /* rechain to point to 'f' */
*f = *mp; /* copy colliding node into free pos. (mp->next also goes) */
if (gnext(mp) != 0) {
2014-04-01 18:39:55 +04:00
gnext(f) += cast_int(mp - f); /* correct 'next' */
gnext(mp) = 0; /* 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 */
if (gnext(mp) != 0)
2014-04-01 18:39:55 +04:00
gnext(f) = cast_int((mp + gnext(mp)) - f); /* chain new position */
else lua_assert(gnext(f) == 0);
2014-04-01 18:39:55 +04:00
gnext(mp) = cast_int(f - mp);
mp = f;
1999-10-14 23:13:31 +04:00
}
}
setkey(L, &mp->i_key, key);
luaC_barrierback(L, t, key);
lua_assert(ttisnil(gval(mp)));
return gval(mp);
1997-09-16 23:25:59 +04:00
}
/*
** search function for integers
*/
const TValue *luaH_getint (Table *t, lua_Integer key) {
2004-09-27 22:54:45 +04:00
/* (1 <= key && key <= t->sizearray) */
if (l_castS2U(key - 1) < t->sizearray)
return &t->array[key - 1];
2001-10-25 23:14:14 +04:00
else {
Node *n = hashint(t, key);
for (;;) { /* check whether `key' is somewhere in the chain */
if (ttisinteger(gkey(n)) && ivalue(gkey(n)) == key)
return gval(n); /* that's it */
else {
int nx = gnext(n);
if (nx == 0) break;
n += nx;
}
};
2006-01-10 15:51:53 +03:00
return luaO_nilobject;
2001-10-25 23:14:14 +04:00
}
}
/*
2012-01-26 01:05:40 +04:00
** search function for short strings
*/
const TValue *luaH_getstr (Table *t, TString *key) {
Node *n = hashstr(t, key);
lua_assert(key->tt == LUA_TSHRSTR);
for (;;) { /* check whether `key' is somewhere in the chain */
const TValue *k = gkey(n);
if (ttisshrstring(k) && eqshrstr(tsvalue(k), key))
return gval(n); /* that's it */
else {
int nx = gnext(n);
if (nx == 0) break;
n += nx;
}
};
2006-01-10 15:51:53 +03:00
return luaO_nilobject;
2000-06-06 00:15:33 +04:00
}
/*
** main search function
*/
const TValue *luaH_get (Table *t, const TValue *key) {
2012-01-26 01:05:40 +04:00
switch (ttype(key)) {
case LUA_TSHRSTR: return luaH_getstr(t, tsvalue(key));
case LUA_TNUMINT: return luaH_getint(t, ivalue(key));
2012-09-11 23:37:16 +04:00
case LUA_TNIL: return luaO_nilobject;
case LUA_TNUMFLT: {
lua_Integer k;
if (numisinteger(fltvalue(key), &k)) /* index is int? */
return luaH_getint(t, k); /* use specialized version */
/* else go through */
}
2004-08-31 21:57:33 +04:00
default: {
2006-01-10 16:13:06 +03:00
Node *n = mainposition(t, key);
for (;;) { /* check whether `key' is somewhere in the chain */
if (luaV_rawequalobj(gkey(n), key))
return gval(n); /* that's it */
else {
int nx = gnext(n);
if (nx == 0) break;
n += nx;
}
};
2006-01-10 15:51:53 +03:00
return luaO_nilobject;
2004-08-31 21:57:33 +04:00
}
}
}
/*
** beware: when using this function you probably need to check a GC
** barrier and invalidate the TM cache.
*/
TValue *luaH_set (lua_State *L, Table *t, const TValue *key) {
const TValue *p = luaH_get(t, key);
2006-01-10 15:51:53 +03:00
if (p != luaO_nilobject)
return cast(TValue *, p);
else return luaH_newkey(L, t, key);
}
void luaH_setint (lua_State *L, Table *t, lua_Integer key, TValue *value) {
const TValue *p = luaH_getint(t, key);
TValue *cell;
2006-01-10 15:51:53 +03:00
if (p != luaO_nilobject)
cell = cast(TValue *, p);
2001-10-25 23:14:14 +04:00
else {
TValue k;
setivalue(&k, key);
cell = luaH_newkey(L, t, &k);
2003-08-26 16:04:13 +04:00
}
setobj2t(L, cell, value);
2003-08-26 16:04:13 +04:00
}
2005-03-16 19:58:41 +03:00
static int unbound_search (Table *t, unsigned int j) {
unsigned int i = j; /* i is zero or a present index */
2006-01-10 15:51:53 +03:00
j++;
2005-03-16 19:58:41 +03:00
/* find `i' and `j' such that i is present and j is not */
while (!ttisnil(luaH_getint(t, j))) {
2005-03-16 19:58:41 +03:00
i = j;
if (j > cast(unsigned int, MAX_INT)/2) { /* overflow? */
2005-03-16 19:58:41 +03:00
/* table was built with bad purposes: resort to linear search */
i = 1;
while (!ttisnil(luaH_getint(t, i))) i++;
2005-03-16 19:58:41 +03:00
return i - 1;
}
j *= 2;
2005-03-16 19:58:41 +03:00
}
/* now do a binary search between them */
2006-01-10 15:51:53 +03:00
while (j - i > 1) {
2005-03-16 19:58:41 +03:00
unsigned int m = (i+j)/2;
if (ttisnil(luaH_getint(t, m))) j = m;
2005-03-16 19:58:41 +03:00
else i = m;
}
return i;
}
/*
** Try to find a boundary in table `t'. A `boundary' is an integer index
** such that t[i] is non-nil and t[i+1] is nil (and 0 if t[1] is nil).
*/
int luaH_getn (Table *t) {
unsigned int j = t->sizearray;
if (j > 0 && ttisnil(&t->array[j - 1])) {
/* there is a boundary in the array part: (binary) search for it */
2005-04-01 17:51:37 +04:00
unsigned int i = 0;
while (j - i > 1) {
2005-03-16 19:58:41 +03:00
unsigned int m = (i+j)/2;
if (ttisnil(&t->array[m - 1])) j = m;
else i = m;
}
return i;
}
/* else must find a boundary in hash part */
2009-11-19 20:54:07 +03:00
else if (isdummy(t->node)) /* hash part is empty? */
2005-03-16 19:58:41 +03:00
return j; /* that is easy... */
else return unbound_search(t, j);
}
2006-01-10 16:13:06 +03:00
#if defined(LUA_DEBUG)
Node *luaH_mainposition (const Table *t, const TValue *key) {
return mainposition(t, key);
}
2009-11-19 20:54:07 +03:00
int luaH_isdummy (Node *n) { return isdummy(n); }
2006-01-10 16:13:06 +03:00
#endif