2 ** Splint - annotation-assisted static program checker
3 ** Copyright (C) 1994-2003 University of Virginia,
4 ** Massachusetts Institute of Technology
6 ** This program is free software; you can redistribute it and/or modify it
7 ** under the terms of the GNU General Public License as published by the
8 ** Free Software Foundation; either version 2 of the License, or (at your
9 ** option) any later version.
11 ** This program is distributed in the hope that it will be useful, but
12 ** WITHOUT ANY WARRANTY; without even the implied warranty of
13 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 ** General Public License for more details.
16 ** The GNU General Public License is available from http://www.gnu.org/ or
17 ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18 ** MA 02111-1307, USA.
20 ** For information on splint: info@splint.org
21 ** To report a bug: splint-bug@splint.org
22 ** For more information: http://www.splint.org
27 ** A genericTable is a mapping from string keys to void * objects.
28 ** We sacrific type checking here for code reuse.
31 # include "splintMacros.nf"
33 # include "cstringHash.h"
35 /*@constant null ghbucket ghbucket_undefined; @*/
36 # define ghbucket_undefined 0
38 static /*@nullwhentrue@*/ bool ghbucket_isNull (/*@null@*/ ghbucket h
)
40 return (h
== ghbucket_undefined
);
44 ghentry_create (/*@keep@*/ cstring key
, /*@keep@*/ void *val
)
46 ghentry h
= (ghentry
) dmalloc (sizeof (*h
));
50 llassert (val
!= NULL
);
57 ghentry_free (/*@only@*/ ghentry ghe
)
59 cstring_free (ghe
->key
);
60 /* can't free val contents */
66 ghbucket_isEmpty (ghbucket h
)
68 return (h
== ghbucket_undefined
|| h
->size
== 0);
71 int genericTable_size (genericTable h
)
73 if (genericTable_isDefined (h
)) {
81 static /*@unused@*/ cstring
82 ghbucket_unparse (ghbucket h
)
84 cstring s
= cstring_undefined
;
86 if (!ghbucket_isNull (h
))
90 for (i
= 0; i
< h
->size
; i
++)
92 s
= message ("%q %s", s
, h
->entries
[i
]->key
);
100 static ghbucket
ghbucket_single (/*@keep@*/ ghentry e
)
102 ghbucket h
= (ghbucket
) dmalloc (sizeof (*h
));
105 h
->nspace
= GHBUCKET_BASESIZE
- 1;
106 h
->entries
= (ghentry
*) dmalloc (GHBUCKET_BASESIZE
* sizeof (*h
->entries
));
113 ghbucket_grow (/*@notnull@*/ ghbucket h
)
118 h
->nspace
+= GHBUCKET_BASESIZE
;
120 newentries
= (ghentry
*)
121 dmalloc ((h
->size
+ GHBUCKET_BASESIZE
) * sizeof (*newentries
));
123 for (i
= 0; i
< h
->size
; i
++)
125 newentries
[i
] = h
->entries
[i
];
129 h
->entries
= newentries
;
131 } /*@=compmempass*/ /* Spurious warnings reported for h->entries */
133 static /*@null@*/ /*@exposed@*/ void *ghbucket_lookup (ghbucket p_h
, cstring p_key
);
136 ** bizarre duplicate behaviour
137 ** required for duplicate entries
141 ghbucket_add (/*@notnull@*/ ghbucket h
, /*@only@*/ ghentry e
)
143 void *exloc
= ghbucket_lookup (h
, e
->key
);
146 llcontbug (message ("ghbucket_add: adding duplicate entry: %s",
152 if (h
->nspace
== 0) {
156 h
->entries
[h
->size
] = e
;
162 ghbucket_ncollisions (ghbucket h
)
164 if (!ghbucket_isNull (h
) && (h
->size
> 1))
165 return (h
->size
- 1);
170 /*@exposed@*/ /*@null@*/ void *
171 ghbucket_lookup (ghbucket h
, cstring key
)
173 if (!ghbucket_isNull (h
))
177 for (i
= 0; i
< h
->size
; i
++)
179 if (cstring_equal (h
->entries
[i
]->key
, key
))
181 return h
->entries
[i
]->val
;
190 void ghbucket_free (/*@only@*/ ghbucket h
)
192 if (!ghbucket_isNull (h
))
196 for (i
= 0; i
< h
->size
; i
++)
198 ghentry_free (h
->entries
[i
]);
207 genericTable_free (/*@only@*/ genericTable h
)
209 if (genericTable_isDefined (h
))
213 for (i
= 0; i
< h
->size
; i
++)
215 ghbucket_free (h
->buckets
[i
]);
224 genericTable_countCollisions (genericTable h
)
229 llassert (genericTable_isDefined (h
));
231 for (i
= 0; i
< h
->size
; i
++)
233 nc
+= ghbucket_ncollisions (h
->buckets
[i
]);
241 genericTable_countEmpty (genericTable h
)
246 llassert (genericTable_isDefined (h
));
248 for (i
= 0; i
< h
->size
; i
++)
250 if (ghbucket_isEmpty (h
->buckets
[i
]))
260 genericTable_hashValue (/*@notnull@*/ genericTable h
, cstring key
)
262 llassert (h
->size
!= 0);
263 return (cstring_hashValue(key
) % h
->size
);
266 static /*@exposed@*/ ghbucket
267 genericTable_hash (/*@notnull@*/ genericTable h
, cstring key
)
269 return h
->buckets
[genericTable_hashValue (h
, key
)];
273 /*@only@*/ genericTable
274 genericTable_create (int size
)
277 genericTable h
= (genericTable
) dmalloc (sizeof (*h
));
282 h
->buckets
= (ghbucket
*) dmalloc (sizeof (*h
->buckets
) * size
);
285 for (i
= 0; i
< size
; i
++)
287 h
->buckets
[i
] = ghbucket_undefined
;
295 static /*@unused@*/ void
296 genericTable_print (genericTable h
)
300 if (genericTable_isDefined (h
)) {
301 for (i
= 0; i
< h
->size
; i
++)
303 ghbucket hb
= h
->buckets
[i
];
307 llmsg (message ("%d. %s\n", i
, ghbucket_unparse (hb
)));
311 llmsg (message ("size: %d, collisions: %d, empty: %d",
313 genericTable_countCollisions (h
),
314 genericTable_countEmpty (h
)));
316 llmsglit ("Empty hash table.");
323 genericTable_stats (genericTable h
)
325 llassert (genericTable_isDefined (h
));
326 return (message ("size: %d, collisions: %d, empty: %d\n",
327 h
->size
, genericTable_countCollisions (h
),
328 genericTable_countEmpty (h
)));
332 genericTable_addEntry (/*@notnull@*/ genericTable h
, /*@only@*/ ghentry e
)
334 unsigned int hindex
= genericTable_hashValue (h
, e
->key
);
337 ** ghbucket hb = h->buckets[hindex];
338 ** instead reveals a bug I don't want to deal with right now!
343 if (ghbucket_isNull (h
->buckets
[hindex
]))
345 h
->buckets
[hindex
] = ghbucket_single (e
);
349 ghbucket_add (h
->buckets
[hindex
], e
);
354 genericTable_insert (genericTable h
, cstring key
, void *value
)
360 llassert (genericTable_isDefined (h
));
363 ** rehashing based (loosely) on code by Steve Harrison
366 if (h
->nentries
* 162 > h
->size
* 100)
369 int oldsize
= h
->size
;
370 int newsize
= 1 + ((oldsize
* 26244) / 10000); /* 26244 = 162^2 */
371 ghbucket
*oldbuckets
= h
->buckets
;
373 DPRINTF (("Rehashing..."));
376 h
->buckets
= (ghbucket
*) dmalloc (sizeof (*h
->buckets
) * newsize
);
379 for (i
= 0; i
< newsize
; i
++)
381 h
->buckets
[i
] = ghbucket_undefined
;
385 for (i
= 0; i
< oldsize
; i
++)
387 ghbucket bucket
= oldbuckets
[i
];
389 oldbuckets
[i
] = NULL
;
391 if (!ghbucket_isNull (bucket
))
395 for (j
= 0; j
< bucket
->size
; j
++)
397 genericTable_addEntry (h
, bucket
->entries
[j
]);
400 sfree (bucket
->entries
); /* evans 2001-03-24: Splint caught this */
408 /* evans 2000-12-22: this was before the rehash! Lost an entry size! */
410 e
= ghentry_create (key
, value
);
411 hindex
= genericTable_hashValue (h
, key
);
412 hb
= h
->buckets
[hindex
];
414 if (ghbucket_isNull (hb
))
416 h
->buckets
[hindex
] = ghbucket_single (e
);
420 ghbucket_add (hb
, e
);
424 /*@null@*/ /*@exposed@*/ void *
425 genericTable_lookup (genericTable h
, cstring key
)
429 llassert (genericTable_isDefined (h
));
431 hb
= genericTable_hash (h
, key
);
432 res
= ghbucket_lookup (hb
, key
);
434 /* if (res == NULL) { DPRINTF (("Lookup not found: %s", key)); } */
439 genericTable_update (genericTable h
, cstring key
, /*@only@*/ void *newval
)
443 llassert (genericTable_isDefined (h
));
445 hb
= genericTable_hash (h
, key
);
447 if (!ghbucket_isNull (hb
))
451 for (i
= 0; i
< hb
->size
; i
++)
453 if (cstring_equal (hb
->entries
[i
]->key
, key
))
455 llassert (newval
!= NULL
);
456 hb
->entries
[i
]->val
= newval
;
462 llbug (message ("genericTable_update: %s not found", key
));
466 genericTable_remove (genericTable h
, cstring key
)
470 llassert (genericTable_isDefined (h
));
471 hb
= genericTable_hash (h
, key
);
473 if (!ghbucket_isNull (hb
))
477 for (i
= 0; i
< hb
->size
; i
++)
479 if (cstring_equal (hb
->entries
[i
]->key
, key
))
481 if (i
< hb
->size
- 1)
483 hb
->entries
[i
] = hb
->entries
[hb
->size
- 1];
492 llbug (message ("genericTable_removeKey: %s not found", key
));
495 bool genericTable_contains (genericTable h
, cstring key
)
497 return (genericTable_lookup (h
, key
) != NULL
);