summaryrefslogtreecommitdiff
path: root/src/lstring.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lstring.c')
-rw-r--r--src/lstring.c335
1 files changed, 96 insertions, 239 deletions
diff --git a/src/lstring.c b/src/lstring.c
index fa974ae9..e4c7e26c 100644
--- a/src/lstring.c
+++ b/src/lstring.c
@@ -1,5 +1,5 @@
/*
-** $Id: lstring.c,v 1.19 1999/02/26 15:49:53 roberto Exp $
+** $Id: lstring.c,v 1.45 2000/10/30 17:49:19 roberto Exp $
** String table (keeps all strings handled by Lua)
** See Copyright Notice in lua.h
*/
@@ -7,292 +7,149 @@
#include <string.h>
+#include "lua.h"
+
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
#include "lstring.h"
-#include "lua.h"
-
-
-#define NUM_HASHSTR 31
-#define NUM_HASHUDATA 31
-#define NUM_HASHS (NUM_HASHSTR+NUM_HASHUDATA)
-#define gcsizestring(l) (1+(l/64)) /* "weight" for a string with length 'l' */
+/*
+** type equivalent to TString, but with maximum alignment requirements
+*/
+union L_UTString {
+ TString ts;
+ union L_Umaxalign dummy; /* ensures maximum alignment for `local' udata */
+};
-static TaggedString EMPTY = {{NULL, 2}, 0L, 0,
- {{{LUA_T_NIL, {NULL}}, 0L}}, {0}};
+void luaS_init (lua_State *L) {
+ L->strt.hash = luaM_newvector(L, 1, TString *);
+ L->udt.hash = luaM_newvector(L, 1, TString *);
+ L->nblocks += 2*sizeof(TString *);
+ L->strt.size = L->udt.size = 1;
+ L->strt.nuse = L->udt.nuse = 0;
+ L->strt.hash[0] = L->udt.hash[0] = NULL;
+}
-void luaS_init (void) {
- int i;
- L->string_root = luaM_newvector(NUM_HASHS, stringtable);
- for (i=0; i<NUM_HASHS; i++) {
- L->string_root[i].size = 0;
- L->string_root[i].nuse = 0;
- L->string_root[i].hash = NULL;
- }
+void luaS_freeall (lua_State *L) {
+ LUA_ASSERT(L->strt.nuse==0, "non-empty string table");
+ L->nblocks -= (L->strt.size + L->udt.size)*sizeof(TString *);
+ luaM_free(L, L->strt.hash);
+ LUA_ASSERT(L->udt.nuse==0, "non-empty udata table");
+ luaM_free(L, L->udt.hash);
}
-static unsigned long hash_s (char *s, long l) {
- unsigned long h = 0; /* seed */
- while (l--)
- h = h ^ ((h<<5)+(h>>2)+(unsigned char)*(s++));
+static unsigned long hash_s (const char *s, size_t l) {
+ unsigned long h = l; /* seed */
+ size_t step = (l>>5)|1; /* if string is too long, don't hash all its chars */
+ for (; l>=step; l-=step)
+ h = h ^ ((h<<5)+(h>>2)+(unsigned char)*(s++));
return h;
}
-static int newsize (stringtable *tb) {
- int size = tb->size;
- int realuse = 0;
- int i;
- /* count how many entries are really in use */
- for (i=0; i<size; i++)
- if (tb->hash[i] != NULL && tb->hash[i] != &EMPTY)
- realuse++;
- return luaO_redimension((realuse+1)*2); /* +1 is the new element */
-}
-
-static void grow (stringtable *tb) {
- int ns = newsize(tb);
- TaggedString **newhash = luaM_newvector(ns, TaggedString *);
+void luaS_resize (lua_State *L, stringtable *tb, int newsize) {
+ TString **newhash = luaM_newvector(L, newsize, TString *);
int i;
- for (i=0; i<ns; i++)
- newhash[i] = NULL;
+ for (i=0; i<newsize; i++) newhash[i] = NULL;
/* rehash */
- tb->nuse = 0;
for (i=0; i<tb->size; i++) {
- if (tb->hash[i] != NULL && tb->hash[i] != &EMPTY) {
- unsigned long h = tb->hash[i]->hash;
- int h1 = h%ns;
- while (newhash[h1]) {
- h1 += (h&(ns-2)) + 1; /* double hashing */
- if (h1 >= ns) h1 -= ns;
- }
- newhash[h1] = tb->hash[i];
- tb->nuse++;
+ TString *p = tb->hash[i];
+ while (p) { /* for each node in the list */
+ TString *next = p->nexthash; /* save next */
+ unsigned long h = (tb == &L->strt) ? p->u.s.hash : IntPoint(p->u.d.value);
+ int h1 = h&(newsize-1); /* new position */
+ LUA_ASSERT(h%newsize == (h&(newsize-1)),
+ "a&(x-1) == a%x, for x power of 2");
+ p->nexthash = newhash[h1]; /* chain it in new position */
+ newhash[h1] = p;
+ p = next;
}
}
- luaM_free(tb->hash);
- tb->size = ns;
+ luaM_free(L, tb->hash);
+ L->nblocks += (newsize - tb->size)*sizeof(TString *);
+ tb->size = newsize;
tb->hash = newhash;
}
-static TaggedString *newone_s (char *str, long l, unsigned long h) {
- TaggedString *ts = (TaggedString *)luaM_malloc(sizeof(TaggedString)+l);
- memcpy(ts->str, str, l);
- ts->str[l] = 0; /* ending 0 */
- ts->u.s.globalval.ttype = LUA_T_NIL; /* initialize global value */
- ts->u.s.len = l;
- ts->constindex = 0;
- L->nblocks += gcsizestring(l);
- ts->head.marked = 0;
- ts->head.next = (GCnode *)ts; /* signal it is in no list */
- ts->hash = h;
- return ts;
+static void newentry (lua_State *L, stringtable *tb, TString *ts, int h) {
+ ts->nexthash = tb->hash[h]; /* chain new entry */
+ tb->hash[h] = ts;
+ tb->nuse++;
+ if (tb->nuse > (lint32)tb->size && tb->size < MAX_INT/2) /* too crowded? */
+ luaS_resize(L, tb, tb->size*2);
}
-static TaggedString *newone_u (char *buff, int tag, unsigned long h) {
- TaggedString *ts = luaM_new(TaggedString);
- ts->u.d.v = buff;
- ts->u.d.tag = (tag == LUA_ANYTAG) ? 0 : tag;
- ts->constindex = -1; /* tag -> this is a userdata */
- L->nblocks++;
- ts->head.marked = 0;
- ts->head.next = (GCnode *)ts; /* signal it is in no list */
- ts->hash = h;
- return ts;
-}
-static TaggedString *insert_s (char *str, long l, stringtable *tb) {
- TaggedString *ts;
+
+TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
unsigned long h = hash_s(str, l);
- int size = tb->size;
- int j = -1;
- int h1;
- if ((long)tb->nuse*3 >= (long)size*2) {
- grow(tb);
- size = tb->size;
- }
- h1 = h%size;
- while ((ts = tb->hash[h1]) != NULL) {
- if (ts == &EMPTY)
- j = h1;
- else if (ts->u.s.len == l && (memcmp(str, ts->str, l) == 0))
+ int h1 = h & (L->strt.size-1);
+ TString *ts;
+ for (ts = L->strt.hash[h1]; ts; ts = ts->nexthash) {
+ if (ts->len == l && (memcmp(str, ts->str, l) == 0))
return ts;
- h1 += (h&(size-2)) + 1; /* double hashing */
- if (h1 >= size) h1 -= size;
}
/* not found */
- if (j != -1) /* is there an EMPTY space? */
- h1 = j;
- else
- tb->nuse++;
- ts = tb->hash[h1] = newone_s(str, l, h);
+ ts = (TString *)luaM_malloc(L, sizestring(l));
+ ts->marked = 0;
+ ts->nexthash = NULL;
+ ts->len = l;
+ ts->u.s.hash = h;
+ ts->u.s.constindex = 0;
+ memcpy(ts->str, str, l);
+ ts->str[l] = 0; /* ending 0 */
+ L->nblocks += sizestring(l);
+ newentry(L, &L->strt, ts, h1); /* insert it on table */
return ts;
}
-static TaggedString *insert_u (void *buff, int tag, stringtable *tb) {
- TaggedString *ts;
- unsigned long h = (unsigned long)buff;
- int size = tb->size;
- int j = -1;
- int h1;
- if ((long)tb->nuse*3 >= (long)size*2) {
- grow(tb);
- size = tb->size;
- }
- h1 = h%size;
- while ((ts = tb->hash[h1]) != NULL) {
- if (ts == &EMPTY)
- j = h1;
- else if ((tag == ts->u.d.tag || tag == LUA_ANYTAG) && buff == ts->u.d.v)
- return ts;
- h1 += (h&(size-2)) + 1; /* double hashing */
- if (h1 >= size) h1 -= size;
- }
- /* not found */
- if (j != -1) /* is there an EMPTY space? */
- h1 = j;
- else
- tb->nuse++;
- ts = tb->hash[h1] = newone_u(buff, tag, h);
+TString *luaS_newudata (lua_State *L, size_t s, void *udata) {
+ union L_UTString *uts = (union L_UTString *)luaM_malloc(L,
+ (lint32)sizeof(union L_UTString)+s);
+ TString *ts = &uts->ts;
+ ts->marked = 0;
+ ts->nexthash = NULL;
+ ts->len = s;
+ ts->u.d.tag = 0;
+ ts->u.d.value = (udata == NULL) ? uts+1 : udata;
+ L->nblocks += sizestring(s);
+ /* insert it on table */
+ newentry(L, &L->udt, ts, IntPoint(ts->u.d.value) & (L->udt.size-1));
return ts;
}
-TaggedString *luaS_createudata (void *udata, int tag) {
- int t = ((unsigned)udata%NUM_HASHUDATA)+NUM_HASHSTR;
- return insert_u(udata, tag, &L->string_root[t]);
-}
-
-TaggedString *luaS_newlstr (char *str, long l) {
- int t = (l==0) ? 0 : ((int)((unsigned char)str[0]*l))%NUM_HASHSTR;
- return insert_s(str, l, &L->string_root[t]);
-}
-
-TaggedString *luaS_new (char *str) {
- return luaS_newlstr(str, strlen(str));
-}
-
-TaggedString *luaS_newfixedstring (char *str) {
- TaggedString *ts = luaS_new(str);
- if (ts->head.marked == 0)
- ts->head.marked = 2; /* avoid GC */
- return ts;
-}
-
-
-void luaS_free (TaggedString *l) {
- while (l) {
- TaggedString *next = (TaggedString *)l->head.next;
- L->nblocks -= (l->constindex == -1) ? 1 : gcsizestring(l->u.s.len);
- luaM_free(l);
- l = next;
- }
-}
-
-
-/*
-** Garbage collection functions.
-*/
-
-static void remove_from_list (GCnode *l) {
- while (l) {
- GCnode *next = l->next;
- while (next && !next->marked)
- next = l->next = next->next;
- l = next;
- }
-}
-
-
-TaggedString *luaS_collector (void) {
- TaggedString *frees = NULL;
- int i;
- remove_from_list(&(L->rootglobal));
- for (i=0; i<NUM_HASHS; i++) {
- stringtable *tb = &L->string_root[i];
- int j;
- for (j=0; j<tb->size; j++) {
- TaggedString *t = tb->hash[j];
- if (t == NULL) continue;
- if (t->head.marked == 1)
- t->head.marked = 0;
- else if (!t->head.marked) {
- t->head.next = (GCnode *)frees;
- frees = t;
- tb->hash[j] = &EMPTY;
- }
- }
- }
- return frees;
-}
-
-
-TaggedString *luaS_collectudata (void) {
- TaggedString *frees = NULL;
- int i;
- L->rootglobal.next = NULL; /* empty list of globals */
- for (i=NUM_HASHSTR; i<NUM_HASHS; i++) {
- stringtable *tb = &L->string_root[i];
- int j;
- for (j=0; j<tb->size; j++) {
- TaggedString *t = tb->hash[j];
- if (t == NULL || t == &EMPTY)
- continue;
- LUA_ASSERT(t->constindex == -1, "must be userdata");
- t->head.next = (GCnode *)frees;
- frees = t;
- tb->hash[j] = &EMPTY;
- }
- }
- return frees;
-}
-
-
-void luaS_freeall (void) {
- int i;
- for (i=0; i<NUM_HASHS; i++) {
- stringtable *tb = &L->string_root[i];
- int j;
- for (j=0; j<tb->size; j++) {
- TaggedString *t = tb->hash[j];
- if (t == &EMPTY) continue;
- luaM_free(t);
- }
- luaM_free(tb->hash);
- }
- luaM_free(L->string_root);
-}
-
-
-void luaS_rawsetglobal (TaggedString *ts, TObject *newval) {
- ts->u.s.globalval = *newval;
- if (ts->head.next == (GCnode *)ts) { /* is not in list? */
- ts->head.next = L->rootglobal.next;
- L->rootglobal.next = (GCnode *)ts;
+TString *luaS_createudata (lua_State *L, void *udata, int tag) {
+ int h1 = IntPoint(udata) & (L->udt.size-1);
+ TString *ts;
+ for (ts = L->udt.hash[h1]; ts; ts = ts->nexthash) {
+ if (udata == ts->u.d.value && (tag == ts->u.d.tag || tag == LUA_ANYTAG))
+ return ts;
}
+ /* not found */
+ ts = luaS_newudata(L, 0, udata);
+ if (tag != LUA_ANYTAG)
+ ts->u.d.tag = tag;
+ return ts;
}
-char *luaS_travsymbol (int (*fn)(TObject *)) {
- TaggedString *g;
- for (g=(TaggedString *)L->rootglobal.next; g; g=(TaggedString *)g->head.next)
- if (fn(&g->u.s.globalval))
- return g->str;
- return NULL;
+TString *luaS_new (lua_State *L, const char *str) {
+ return luaS_newlstr(L, str, strlen(str));
}
-int luaS_globaldefined (char *name) {
- TaggedString *ts = luaS_new(name);
- return ts->u.s.globalval.ttype != LUA_T_NIL;
+TString *luaS_newfixed (lua_State *L, const char *str) {
+ TString *ts = luaS_new(L, str);
+ if (ts->marked == 0) ts->marked = FIXMARK; /* avoid GC */
+ return ts;
}