summaryrefslogtreecommitdiff
path: root/headers.c
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2018-03-29 11:50:36 +0300
committerIvan Maidanski <ivmai@mail.ru>2018-03-29 11:50:36 +0300
commit5e6cc59b0a9d8c3175802809549f79bf1cbc4282 (patch)
tree7501de47eeff8707a97c97b5582dab24fec02289 /headers.c
parent9c086a3a6dda33ed0f5a1e1070e6f850796f743a (diff)
downloadbdwgc-5e6cc59b0a9d8c3175802809549f79bf1cbc4282.tar.gz
Add assertions about held lock when accessing all_bottom_indices
(code refactoring) * headers.c (GC_all_bottom_indices, GC_all_bottom_indices_end): Add comment that the variable should be accessed with the allocation lock held. * headers.c (get_index, GC_apply_to_all_blocks, GC_next_used_block, GC_prev_block): Add assertion (at the beginning of the function) that the allocation lock is held.
Diffstat (limited to 'headers.c')
-rw-r--r--headers.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/headers.c b/headers.c
index 9177900e..4236ceca 100644
--- a/headers.c
+++ b/headers.c
@@ -25,12 +25,12 @@
*/
STATIC bottom_index * GC_all_bottom_indices = 0;
- /* Pointer to first (lowest addr) */
- /* bottom_index. */
+ /* Pointer to the first (lowest address) */
+ /* bottom_index. Assumes the lock is held. */
STATIC bottom_index * GC_all_bottom_indices_end = 0;
- /* Pointer to last (highest addr) */
- /* bottom_index. */
+ /* Pointer to the last (highest address) */
+ /* bottom_index. Assumes the lock is held. */
/* Non-macro version of header location routine */
GC_INNER hdr * GC_find_header(ptr_t h)
@@ -216,6 +216,7 @@ static GC_bool get_index(word addr)
bottom_index *pi; /* old_p */
word i;
+ GC_ASSERT(I_HOLD_LOCK());
# ifdef HASH_TL
i = TL_HASH(hi);
@@ -320,6 +321,7 @@ void GC_apply_to_all_blocks(void (*fn)(struct hblk *h, word client_data),
signed_word j;
bottom_index * index_p;
+ GC_ASSERT(I_HOLD_LOCK());
for (index_p = GC_all_bottom_indices; index_p != 0;
index_p = index_p -> asc_link) {
for (j = BOTTOM_SZ-1; j >= 0;) {
@@ -347,6 +349,7 @@ GC_INNER struct hblk * GC_next_used_block(struct hblk *h)
REGISTER bottom_index * bi;
REGISTER word j = ((word)h >> LOG_HBLKSIZE) & (BOTTOM_SZ-1);
+ GC_ASSERT(I_HOLD_LOCK());
GET_BI(h, bi);
if (bi == GC_all_nils) {
REGISTER word hi = (word)h >> (LOG_BOTTOM_SZ + LOG_HBLKSIZE);
@@ -384,6 +387,7 @@ GC_INNER struct hblk * GC_prev_block(struct hblk *h)
bottom_index * bi;
signed_word j = ((word)h >> LOG_HBLKSIZE) & (BOTTOM_SZ-1);
+ GC_ASSERT(I_HOLD_LOCK());
GET_BI(h, bi);
if (bi == GC_all_nils) {
word hi = (word)h >> (LOG_BOTTOM_SZ + LOG_HBLKSIZE);