From 2f91f95d94d3a27fee6b45c31ea9ab631924a8bf Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 13 Nov 2002 09:32:26 -0200 Subject: better control over GCObjects --- lstring.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'lstring.c') diff --git a/lstring.c b/lstring.c index c36839e3..66817103 100644 --- a/lstring.c +++ b/lstring.c @@ -1,5 +1,5 @@ /* -** $Id: lstring.c,v 1.75 2002/08/16 14:45:55 roberto Exp roberto $ +** $Id: lstring.c,v 1.76 2002/08/30 19:09:21 roberto Exp roberto $ ** String table (keeps all strings handled by Lua) ** See Copyright Notice in lua.h */ @@ -32,7 +32,7 @@ void luaS_resize (lua_State *L, int newsize) { GCObject *p = tb->hash[i]; while (p) { /* for each node in the list */ GCObject *next = p->gch.next; /* save next */ - lu_hash h = (&p->ts)->tsv.hash; + lu_hash h = gcotots(p)->tsv.hash; int h1 = lmod(h, newsize); /* new position */ lua_assert(cast(int, h%newsize) == lmod(h, newsize)); p->gch.next = newhash[h1]; /* chain it */ @@ -59,7 +59,7 @@ static TString *newlstr (lua_State *L, const char *str, size_t l, lu_hash h) { tb = &G(L)->strt; h = lmod(h, tb->size); ts->tsv.next = tb->hash[h]; /* chain new entry */ - tb->hash[h] = cast(GCObject *, ts); + tb->hash[h] = valtogco(ts); tb->nuse++; if (tb->nuse > cast(ls_nstr, tb->size) && tb->size <= MAX_INT/2) luaS_resize(L, tb->size*2); /* too crowded */ @@ -68,17 +68,18 @@ static TString *newlstr (lua_State *L, const char *str, size_t l, lu_hash h) { TString *luaS_newlstr (lua_State *L, const char *str, size_t l) { - GCObject *ts; + GCObject *o; lu_hash h = (lu_hash)l; /* seed */ size_t step = (l>>5)+1; /* if string is too long, don't hash all its chars */ size_t l1; for (l1=l; l1>=step; l1-=step) /* compute hash */ h = h ^ ((h<<5)+(h>>2)+(unsigned char)(str[l1-1])); - for (ts = G(L)->strt.hash[lmod(h, G(L)->strt.size)]; - ts != NULL; - ts = ts->gch.next) { - if ((&ts->ts)->tsv.len == l && (memcmp(str, getstr(&ts->ts), l) == 0)) - return &ts->ts; + for (o = G(L)->strt.hash[lmod(h, G(L)->strt.size)]; + o != NULL; + o = o->gch.next) { + TString *ts = gcotots(o); + if (ts->tsv.len == l && (memcmp(str, getstr(ts), l) == 0)) + return ts; } return newlstr(L, str, l, h); /* not found */ } @@ -93,7 +94,7 @@ Udata *luaS_newudata (lua_State *L, size_t s) { u->uv.metatable = hvalue(defaultmeta(L)); /* chain it on udata list */ u->uv.next = G(L)->rootudata; - G(L)->rootudata = cast(GCObject *, u); + G(L)->rootudata = valtogco(u); return u; } -- cgit v1.2.3-55-g6feb