1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
|
/*
* cook - file construction tool
* Copyright (C) 1997, 2001, 2003, 2006, 2007 Peter Miller;
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
*
* MANIFEST: functions to manipulate itabs
*/
#include <common/itab.h>
#include <common/mem.h>
#include <common/trace.h>
/*
* NAME
* itab_alloc
*
* SYNOPSIS
* itab_ty *itabLalloc(int);
*
* DESCRIPTION
* The itab_alloc function is used to allocate a new integer table
* instance in dynamic memory.
*
* RETURNS
* itab_ty *; pointer to table
*
* CAVEAT
* Use itab_free when you are done with it.
*/
itab_ty *
itab_alloc(int size)
{
itab_ty *itp;
itab_key_ty j;
trace(("itab_alloc(size = %d)\n{\n", size));
itp = mem_alloc(sizeof(itab_ty));
itp->reap = 0;
itp->hash_modulus = 1 << 2; /* MUST be a power of 2 */
while (itp->hash_modulus < size)
itp->hash_modulus <<= 1;
itp->hash_mask = itp->hash_modulus - 1;
itp->load = 0;
itp->hash_table = mem_alloc(itp->hash_modulus * sizeof(itab_row_ty *));
for (j = 0; j < itp->hash_modulus; ++j)
itp->hash_table[j] = 0;
trace(("return %08lX;\n", (long)itp));
trace(("}\n"));
return itp;
}
/*
* NAME
* itab_free
*
* SYNOPSIS
* void itab_free(itab_ty *);
*
* DESCRIPTION
* The itab_free function is used to release the resources held by
* an integer table.
*/
void
itab_free(itab_ty *itp)
{
itab_key_ty j;
trace(("itab_free(itp = %08lX)\n{\n", (long)itp));
for (j = 0; j < itp->hash_modulus; ++j)
{
itab_row_ty **rpp;
rpp = &itp->hash_table[j];
while (*rpp)
{
itab_row_ty *rp;
rp = *rpp;
*rpp = rp->overflow;
if (itp->reap)
itp->reap(rp->data);
mem_free(rp);
}
}
mem_free(itp->hash_table);
mem_free(itp);
trace(("}\n"));
}
/*
* NAME
* split - reduce symbol table load
*
* SYNOPSIS
* void split(itab_ty);
*
* DESCRIPTION
* The split function is used to split symbols in the bucket indicated by
* the split point. The symbols are split between that bucket and the one
* after the current end of the table.
*
* CAVEAT
* It is only sensable to do this when the symbol table load exceeds some
* reasonable threshold. A threshold of 80% is suggested.
*/
static void
split(itab_ty *itp)
{
itab_key_ty new_hash_modulus;
itab_key_ty new_hash_mask;
itab_row_ty **new_hash_table;
itab_key_ty j;
/*
* double the modulus
*
* This is subtle. If we only increase the modulus by one, the
* load always hovers around 80%, so we have to do a split for
* every insert. I.e. the malloc burden is O(n) for the lifetime
* of the symbol table. BUT if we double the modulus, the length of
* time until the next split also doubles, making the probablity of
* a split halve, and sigma(2**-n)=1, so the malloc burden becomes
* O(1) for the lifetime of the symbol table.
*/
new_hash_modulus = itp->hash_modulus << 1;
new_hash_mask = new_hash_modulus - 1;
new_hash_table = mem_alloc(new_hash_modulus * sizeof(itab_row_ty *));
/*
* now redistribute the list elements
*
* It is important to preserve the order of the links because
* they can be push-down stacks, and to simply add them to the
* head of the list will reverse the order of the stack!
*/
for (j = 0; j < itp->hash_modulus; ++j)
{
itab_row_ty *p;
new_hash_table[j] = 0;
new_hash_table[j + itp->hash_modulus] = 0;
p = itp->hash_table[j];
while (p)
{
itab_row_ty *p2;
itab_key_ty idx;
itab_row_ty **ipp;
p2 = p;
p = p2->overflow;
p2->overflow = 0;
idx = p2->key & new_hash_mask;
for (ipp = &new_hash_table[idx]; *ipp; ipp = &(*ipp)->overflow)
;
*ipp = p2;
}
}
/*
* Switch over to the new table and parameters.
*/
itp->hash_modulus = new_hash_modulus;
itp->hash_mask = new_hash_mask;
mem_free(itp->hash_table);
itp->hash_table = new_hash_table;
trace(("}\n"));
}
/*
* NAME
* itab_query - search for a variable
*
* SYNOPSIS
* int itab_query(itab_ty *, string_ty *key);
*
* DESCRIPTION
* The itab_query function is used to reference a variable.
*
* RETURNS
* If the variable has been defined, the function returns a non-zero value
* and the value is returned through the 'value' pointer.
* If the variable has not been defined, it returns zero,
* and 'value' is unaltered.
*/
void *
itab_query(itab_ty *itp, itab_key_ty key)
{
itab_key_ty idx;
itab_row_ty *p;
void *result;
trace(("itab_query(itp = %08lX, key = %ld)\n{\n", (long)itp, (long)key));
result = 0;
idx = key & itp->hash_mask;
for (p = itp->hash_table[idx]; p; p = p->overflow)
{
if (key == p->key)
{
result = p->data;
break;
}
}
trace(("return %08lX;\n", (long)result));
trace(("}\n"));
return result;
}
/*
* NAME
* itab_assign - assign a variable
*
* SYNOPSIS
* void itab_assign(itab_ty *, string_ty *key, void *data);
*
* DESCRIPTION
* The itab_assign function is used to assign
* a value to a given variable.
*
* CAVEAT
* The name is copied, the data is not.
*/
void
itab_assign(itab_ty *itp, itab_key_ty key, void *data)
{
itab_key_ty idx;
itab_row_ty *p;
trace(("itab_assign(itp = %08lX, key = %ld, data = %08lX)\n{\n",
(long)itp, (long)key, (long)data));
idx = key & itp->hash_mask;
for (p = itp->hash_table[idx]; p; p = p->overflow)
{
if (key == p->key)
{
trace(("modify existing entry\n"));
if (itp->reap)
itp->reap(p->data);
p->data = data;
goto done;
}
}
trace(("new entry\n"));
p = mem_alloc(sizeof(itab_row_ty));
p->key = key;
p->overflow = itp->hash_table[idx];
p->data = data;
itp->hash_table[idx] = p;
itp->load++;
if (itp->load * 10 >= itp->hash_modulus * 8)
split(itp);
done:
trace(("}\n"));
}
/*
* NAME
* itab_delete - delete a variable
*
* SYNOPSIS
* void itab_delete(string_ty *name, itab_class_ty class);
*
* DESCRIPTION
* The itab_delete function is used to delete variables.
*
* CAVEAT
* The name is freed, the data is reaped.
* (By default, reap does nothing.)
*/
void
itab_delete(itab_ty *itp, itab_key_ty key)
{
itab_key_ty idx;
itab_row_ty **pp;
trace(("itab_delete(itp = %08lX, key = %ld)\n{\n", (long)itp, (long)key));
idx = key & itp->hash_mask;
pp = &itp->hash_table[idx];
for (;;)
{
itab_row_ty *p;
p = *pp;
if (!p)
break;
if (key == p->key)
{
if (itp->reap)
itp->reap(p->data);
*pp = p->overflow;
mem_free(p);
itp->load--;
break;
}
pp = &p->overflow;
}
trace(("}\n"));
}
/*
* NAME
* itab_walk
*
* SYNOPSIS
* void itab_walk(itab_ty *, void (*)(itab_ty *, itab_key_ty, void *,
* void *), void *);
*
* DESCRIPTION
* The itab_walk function is used to visit each element of an
* integer table, in no particular order.
*/
void
itab_walk(itab_ty *itp, void (*func)(itab_ty *, itab_key_ty, void *, void *),
void *arg)
{
itab_key_ty j;
itab_row_ty *rp;
trace(("itab_walk(itp = %08lX)\n{\n", (long)itp));
for (j = 0; j < itp->hash_modulus; ++j)
for (rp = itp->hash_table[j]; rp; rp = rp->overflow)
func(itp, rp->key, rp->data, arg);
trace(("}\n"));
}
|