Optimize bit operations, style fix, cleanup

This commit is contained in:
Rickey Fehr
2025-09-21 00:38:43 -07:00
parent e00c51502b
commit 72c0a6c4a9
7 changed files with 49 additions and 39 deletions
+17 -14
View File
@@ -4,7 +4,6 @@
#include <tonc.h>
#define POOL_BITS_PER_WORD 32
#define POOL_WORD_T u32
#define POOL_MAX_CAPACITY 128
typedef struct PoolBitmap {
@@ -13,11 +12,12 @@ typedef struct PoolBitmap {
u32 nwords;
} PoolBitmap;
void pool_clear_idx(PoolBitmap *bm, int idx);
int pool_get_free_idx(PoolBitmap *bm);
void pool_bm_clear_idx(PoolBitmap *bm, int idx);
int pool_bm_get_free_idx(PoolBitmap *bm);
#define DECLARE_POOL_TYPE(type) \
typedef struct type##Pool { \
#define POOL_DECLARE_TYPE(type) \
typedef struct \
{ \
PoolBitmap bm; \
type * objects; \
u32 max_entries; \
@@ -26,29 +26,32 @@ int pool_get_free_idx(PoolBitmap *bm);
void pool_free_##type(type##Pool *pool, type *obj); \
void pool_init_##type(type##Pool *pool);
#define DEFINE_POOL_TYPE(type, capacity) \
#define POOL_DEFINE_TYPE(type, capacity) \
static type type##_storage[capacity]; \
static u32 type##_bitmap_w[sizeof(POOL_WORD_T)] = {0}; \
static type##Pool type##_pool = { \
static u32 type##_bitmap_w[sizeof(u32)] = {0}; \
static type##Pool type##_pool = \
{ \
.bm = { \
.w = type##_bitmap_w, \
.nbits = POOL_BITS_PER_WORD, \
.nwords = sizeof(POOL_WORD_T)}, \
.nwords = sizeof(u32)}, \
.objects = type##_storage, \
.max_entries = capacity, \
}; \
type * pool_get_##type(type##Pool *pool) { \
int free_offset = pool_get_free_idx(&pool->bm); \
type * pool_get_##type(type##Pool *pool) \
{ \
int free_offset = pool_bm_get_free_idx(&pool->bm); \
if(free_offset == -1) return NULL; \
return &pool->objects[free_offset]; \
} \
void pool_free_##type(type##Pool *pool, type *entry) { \
void pool_free_##type(type##Pool *pool, type *entry) \
{ \
if(entry == NULL) return; \
int offset = entry - &pool->objects[0]; \
pool_clear_idx(&pool->bm, offset); \
pool_bm_clear_idx(&pool->bm, offset); \
}
#define POOL_GET(type) pool_get_##type(&type##_pool)
#define POOL_FREE(type, obj) pool_free_##type(&type##_pool, obj)
#endif
#endif // POOL_H