summaryrefslogtreecommitdiff
path: root/lstring.c
diff options
context:
space:
mode:
Diffstat (limited to 'lstring.c')
-rw-r--r--lstring.c33
1 files changed, 25 insertions, 8 deletions
diff --git a/lstring.c b/lstring.c
index 070674c7..a6e0ca4e 100644
--- a/lstring.c
+++ b/lstring.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstring.c,v 1.9 1997/12/30 19:15:52 roberto Exp roberto $ 2** $Id: lstring.c,v 1.10 1998/01/13 18:06:27 roberto Exp roberto $
3** String table (keeps all strings handled by Lua) 3** String table (keeps all strings handled by Lua)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -50,26 +50,43 @@ static unsigned long hash (char *s, int tag)
50} 50}
51 51
52 52
53static int newsize (stringtable *tb)
54{
55 int size = tb->size;
56 int realuse = 0;
57 int i;
58 /* count how many entries are really in use */
59 for (i=0; i<size; i++)
60 if (tb->hash[i] != NULL && tb->hash[i] != &EMPTY)
61 realuse++;
62 if (2*(realuse+1) <= size) /* +1 is the new element */
63 return size; /* don't need to grow, just rehash to clear EMPTYs */
64 else
65 return luaO_redimension(size);
66}
67
68
53static void grow (stringtable *tb) 69static void grow (stringtable *tb)
54{ 70{
55 int newsize = luaO_redimension(tb->size); 71
56 TaggedString **newhash = luaM_newvector(newsize, TaggedString *); 72 int ns = newsize(tb);
73 TaggedString **newhash = luaM_newvector(ns, TaggedString *);
57 int i; 74 int i;
58 for (i=0; i<newsize; i++) 75 for (i=0; i<ns; i++)
59 newhash[i] = NULL; 76 newhash[i] = NULL;
60 /* rehash */ 77 /* rehash */
61 tb->nuse = 0; 78 tb->nuse = 0;
62 for (i=0; i<tb->size; i++) { 79 for (i=0; i<tb->size; i++) {
63 if (tb->hash[i] != NULL && tb->hash[i] != &EMPTY) { 80 if (tb->hash[i] != NULL && tb->hash[i] != &EMPTY) {
64 int h = tb->hash[i]->hash%newsize; 81 int h = tb->hash[i]->hash%ns;
65 while (newhash[h]) 82 while (newhash[h])
66 h = (h+1)%newsize; 83 h = (h+1)%ns;
67 newhash[h] = tb->hash[i]; 84 newhash[h] = tb->hash[i];
68 tb->nuse++; 85 tb->nuse++;
69 } 86 }
70 } 87 }
71 luaM_free(tb->hash); 88 luaM_free(tb->hash);
72 tb->size = newsize; 89 tb->size = ns;
73 tb->hash = newhash; 90 tb->hash = newhash;
74} 91}
75 92
@@ -86,7 +103,7 @@ static TaggedString *newone (char *buff, int tag, unsigned long h)
86 L->nblocks += gcsizestring(l); 103 L->nblocks += gcsizestring(l);
87 } 104 }
88 else { 105 else {
89 ts = (TaggedString *)luaM_malloc(sizeof(TaggedString)); 106 ts = luaM_new(TaggedString);
90 ts->u.d.v = buff; 107 ts->u.d.v = buff;
91 ts->u.d.tag = tag == LUA_ANYTAG ? 0 : tag; 108 ts->u.d.tag = tag == LUA_ANYTAG ? 0 : tag;
92 ts->constindex = -1; /* tag -> this is a userdata */ 109 ts->constindex = -1; /* tag -> this is a userdata */