Refactor: Extract TLS Bind Box for unified slab binding
- Created core/box/ss_tls_bind_box.h containing ss_tls_bind_one(). - Refactored superslab_refill() to use the new box. - Updated signatures to avoid circular dependencies (tiny_self_u32). - Added future integration points for Warm Pool and Page Box.
This commit is contained in:
@ -210,6 +210,9 @@ static inline void* superslab_alloc_from_slab(SuperSlab* ss, int slab_idx) {
|
||||
* 呼ばない設計前提(自己呼び出し禁止)。ここで安全側に防御チェックを行う。
|
||||
*/
|
||||
|
||||
// TLS Bind Box Logic moved to core/box/ss_tls_bind_box.h
|
||||
#include "box/ss_tls_bind_box.h"
|
||||
|
||||
SuperSlab* superslab_refill(int class_idx)
|
||||
{
|
||||
#if HAKMEM_DEBUG_COUNTERS
|
||||
@ -236,49 +239,7 @@ SuperSlab* superslab_refill(int class_idx)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Initialize slab metadata for this class/thread.
|
||||
// NOTE:
|
||||
// - superslab_init_slab は再帰的に superslab_refill() を呼ばない設計前提。
|
||||
// - class_idx は slab_meta->class_idx に反映される。
|
||||
uint32_t my_tid = tiny_self_u32();
|
||||
superslab_init_slab(ss,
|
||||
slab_idx,
|
||||
g_tiny_class_sizes[class_idx],
|
||||
my_tid);
|
||||
|
||||
// CRITICAL FIX: Ensure class_idx is set after init.
|
||||
// New SuperSlabs start with meta->class_idx=0 (mmap zero-init).
|
||||
// superslab_init_slab() only sets it if meta->class_idx==255.
|
||||
// We must explicitly set it to the requested class to avoid C0/C7 confusion.
|
||||
TinySlabMeta* meta = &ss->slabs[slab_idx];
|
||||
#if !HAKMEM_BUILD_RELEASE
|
||||
uint8_t old_cls = meta->class_idx;
|
||||
#endif
|
||||
meta->class_idx = (uint8_t)class_idx;
|
||||
#if !HAKMEM_BUILD_RELEASE
|
||||
if (class_idx == 7 && old_cls != class_idx) {
|
||||
fprintf(stderr, "[SUPERSLAB_REFILL_FIX_C7] ss=%p slab=%d old_cls=%u new_cls=%d\n",
|
||||
(void*)ss, slab_idx, old_cls, class_idx);
|
||||
}
|
||||
#endif
|
||||
|
||||
// Bind this slab to TLS for fast subsequent allocations.
|
||||
// tiny_tls_bind_slab は:
|
||||
// tls->ss, tls->slab_idx, tls->meta, tls->slab_base
|
||||
// を一貫して更新する。
|
||||
tiny_tls_bind_slab(tls, ss, slab_idx);
|
||||
|
||||
// Sanity: TLS must now describe this slab for this class.
|
||||
// 失敗時は TLS を巻き戻して NULL を返す(呼び出し側は安全に再試行できる)。
|
||||
if (!(tls->ss == ss &&
|
||||
tls->slab_idx == (uint8_t)slab_idx &&
|
||||
tls->meta != NULL &&
|
||||
tls->meta->class_idx == (uint8_t)class_idx &&
|
||||
tls->slab_base != NULL)) {
|
||||
tls->ss = NULL;
|
||||
tls->meta = NULL;
|
||||
tls->slab_base = NULL;
|
||||
tls->slab_idx = 0;
|
||||
if (!ss_tls_bind_one(class_idx, tls, ss, slab_idx, tiny_self_u32())) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user