2025-12-11 03:09:57 +09:00
|
|
|
|
// smallobject_hotbox_v5_box.h - SmallObject HotBox v5 型定義(Phase v5-0)
|
|
|
|
|
|
//
|
|
|
|
|
|
// この段階では型とインターフェース定義のみ。挙動は変わらない。
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef HAKMEM_SMALLOBJECT_HOTBOX_V5_BOX_H
|
|
|
|
|
|
#define HAKMEM_SMALLOBJECT_HOTBOX_V5_BOX_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
|
|
#define NUM_SMALL_CLASSES_V5 8 // C0–C7
|
|
|
|
|
|
|
|
|
|
|
|
// SmallPageMetaV5: v5 ページメタデータ
|
2025-12-11 03:19:18 +09:00
|
|
|
|
// Hot fields (alloc/free 頻繁アクセス) を先頭に集約(L1 cache 最適化)
|
2025-12-11 03:09:57 +09:00
|
|
|
|
typedef struct SmallPageMetaV5 {
|
2025-12-11 03:19:18 +09:00
|
|
|
|
// Hot fields (alloc/free 頻繁アクセス)
|
|
|
|
|
|
void* free_list; // フリーリスト先頭 (offset 0)
|
|
|
|
|
|
uint16_t used; // 使用中ブロック数 (offset 8)
|
|
|
|
|
|
uint16_t capacity; // このページの総容量 (offset 10)
|
|
|
|
|
|
|
|
|
|
|
|
// Metadata(初期化時のみ)
|
|
|
|
|
|
uint8_t class_idx; // size class index (offset 12)
|
|
|
|
|
|
uint8_t flags; // reserved (offset 13)
|
|
|
|
|
|
uint16_t page_idx; // segment 内でのページインデックス (offset 14)
|
|
|
|
|
|
void* segment; // SmallSegmentV5* への backpointer (offset 16)
|
2025-12-11 03:47:24 +09:00
|
|
|
|
|
|
|
|
|
|
// Intrusive list field for current/partial/full lists (Phase v5-2)
|
|
|
|
|
|
struct SmallPageMetaV5* next; // next page in list (offset 24)
|
|
|
|
|
|
} SmallPageMetaV5; // total 32B
|
2025-12-11 03:09:57 +09:00
|
|
|
|
|
|
|
|
|
|
// SmallClassHeapV5: サイズクラス毎のホットヒープ状態
|
|
|
|
|
|
typedef struct SmallClassHeapV5 {
|
|
|
|
|
|
SmallPageMetaV5* current; // 現在のページ(alloc 中)
|
|
|
|
|
|
SmallPageMetaV5* partial_head; // partial ページリスト
|
|
|
|
|
|
SmallPageMetaV5* full_head; // full ページリスト
|
2025-12-11 03:19:18 +09:00
|
|
|
|
uint32_t partial_count; // partial ページ数
|
2025-12-11 03:09:57 +09:00
|
|
|
|
} SmallClassHeapV5;
|
|
|
|
|
|
|
|
|
|
|
|
// SmallHeapCtxV5: per-thread ホットヒープコンテキスト
|
|
|
|
|
|
typedef struct SmallHeapCtxV5 {
|
|
|
|
|
|
SmallClassHeapV5 cls[NUM_SMALL_CLASSES_V5];
|
|
|
|
|
|
} SmallHeapCtxV5;
|
|
|
|
|
|
|
|
|
|
|
|
// API
|
|
|
|
|
|
SmallHeapCtxV5* small_heap_ctx_v5(void);
|
|
|
|
|
|
|
2025-12-11 03:25:37 +09:00
|
|
|
|
// Fast path(Phase v5-1: C6-only route stub, v1/pool fallback)
|
|
|
|
|
|
void* small_alloc_fast_v5(size_t size, uint32_t class_idx, SmallHeapCtxV5* ctx);
|
|
|
|
|
|
void small_free_fast_v5(void* ptr, uint32_t class_idx, SmallHeapCtxV5* ctx);
|
2025-12-11 03:09:57 +09:00
|
|
|
|
|
|
|
|
|
|
#endif // HAKMEM_SMALLOBJECT_HOTBOX_V5_BOX_H
|