summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2011-01-09 15:03:16 +0000
committerJosé Fonseca <jfonseca@vmware.com>2011-03-09 11:17:14 +0000
commit05efcee46edd07e9b3957fb3c681354e736bc4d3 (patch)
tree19625b57595581c5b0bdbf98215cd4ac4eb53dd9 /src/gallium/auxiliary
parent20962bf547f7beabf3a5125552fff81a01136dbb (diff)
util: add ensure_sanity checks, fix a bug
Add ensure_sanity checks. Fix a bug which caused us to misplace entries adding to a full cache.
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/util/u_cache.c58
1 files changed, 56 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/util/u_cache.c b/src/gallium/auxiliary/util/u_cache.c
index bfab65b541..df08ec302a 100644
--- a/src/gallium/auxiliary/util/u_cache.c
+++ b/src/gallium/auxiliary/util/u_cache.c
@@ -81,6 +81,9 @@ struct util_cache
struct util_cache_entry lru;
};
+static void
+ensure_sanity(const struct util_cache *cache);
+
#define CACHE_DEFAULT_ALPHA 2
struct util_cache *
@@ -110,6 +113,7 @@ util_cache_create(uint32_t (*hash)(const void *key),
return NULL;
}
+ ensure_sanity(cache);
return cache;
}
@@ -186,9 +190,11 @@ util_cache_set(struct util_cache *cache,
return;
entry = util_cache_entry_get(cache, hash, key);
- if (!entry || cache->count >= cache->size / CACHE_DEFAULT_ALPHA) {
+ if (!entry)
entry = cache->lru.prev;
- }
+
+ if (cache->count >= cache->size / CACHE_DEFAULT_ALPHA)
+ util_cache_entry_destroy(cache, cache->lru.prev);
util_cache_entry_destroy(cache, entry);
@@ -202,6 +208,8 @@ util_cache_set(struct util_cache *cache,
entry->state = FILLED;
insert_at_head(&cache->lru, entry);
cache->count++;
+
+ ensure_sanity(cache);
}
@@ -243,6 +251,7 @@ util_cache_clear(struct util_cache *cache)
assert(cache->count == 0);
assert(is_empty_list(&cache->lru));
+ ensure_sanity(cache);
}
@@ -294,4 +303,49 @@ util_cache_remove(struct util_cache *cache,
if (entry->state == FILLED)
util_cache_entry_destroy(cache, entry);
+
+ ensure_sanity(cache);
+}
+
+
+static void
+ensure_sanity(const struct util_cache *cache)
+{
+#ifdef DEBUG
+ unsigned i, cnt = 0;
+
+ assert(cache);
+ for (i = 0; i < cache->size; i++) {
+ struct util_cache_entry *header = &cache->entries[i];
+
+ assert(header);
+ assert(header->state == FILLED ||
+ header->state == EMPTY ||
+ header->state == DELETED);
+ if (header->state == FILLED) {
+ cnt++;
+ assert(header->hash == cache->hash(header->key));
+ }
+ }
+
+ assert(cnt == cache->count);
+ assert(cache->size >= cnt);
+
+ if (cache->count == 0) {
+ assert (is_empty_list(&cache->lru));
+ }
+ else {
+ struct util_cache_entry *header = cache->lru.next;
+
+ assert (header);
+ assert (!is_empty_list(&cache->lru));
+
+ for (i = 0; i < cache->count; i++)
+ header = header->next;
+
+ assert(header == &cache->lru);
+ }
+#endif
+
+ (void)cache;
}