Phase 3d-B: TLS Cache Merge - Unified g_tls_sll[] structure (+12-18% expected)

Merge separate g_tls_sll_head[] and g_tls_sll_count[] arrays into unified
TinyTLSSLL struct to improve L1D cache locality. Expected performance gain:
+12-18% from reducing cache line splits (2 loads → 1 load per operation).

Changes:
- core/hakmem_tiny.h: Add TinyTLSSLL type (16B aligned, head+count+pad)
- core/hakmem_tiny.c: Replace separate arrays with g_tls_sll[8]
- core/box/tls_sll_box.h: Update Box API (13 sites) for unified access
- Updated 32+ files: All g_tls_sll_head[i] → g_tls_sll[i].head
- Updated 32+ files: All g_tls_sll_count[i] → g_tls_sll[i].count
- core/hakmem_tiny_integrity.h: Unified canary guards
- core/box/integrity_box.c: Simplified canary validation
- Makefile: Added core/box/tiny_sizeclass_hist_box.o to link

Build:  PASS (10K ops sanity test)
Warnings: Only pre-existing LTO type mismatches (unrelated)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Moe Charm (CI)
2025-11-20 07:32:30 +09:00
parent 38552c3f39
commit 9b0d746407
83 changed files with 7509 additions and 259 deletions

View File

@ -17,7 +17,7 @@ static _Atomic int g_box_cap_initialized = 0;
// External declarations (from adaptive_sizing and hakmem_tiny)
extern __thread TLSCacheStats g_tls_cache_stats[TINY_NUM_CLASSES]; // TLS variable!
extern __thread uint32_t g_tls_sll_count[TINY_NUM_CLASSES];
extern __thread TinyTLSSLL g_tls_sll[TINY_NUM_CLASSES];
extern int g_sll_cap_override[TINY_NUM_CLASSES]; // LEGACY (Phase12以降は参照しない互換用ダミー)
extern int g_sll_multiplier;
@ -80,7 +80,7 @@ bool box_cap_has_room(int class_idx, uint32_t n) {
HAK_CHECK_CLASS_IDX(class_idx, "box_cap_has_room");
uint32_t cap = box_cap_get(class_idx);
uint32_t used = g_tls_sll_count[class_idx];
uint32_t used = g_tls_sll[class_idx].count;
// Check if adding N would exceed capacity
if (used >= cap) return false;
@ -93,7 +93,7 @@ uint32_t box_cap_avail(int class_idx) {
HAK_CHECK_CLASS_IDX(class_idx, "box_cap_avail");
uint32_t cap = box_cap_get(class_idx);
uint32_t used = g_tls_sll_count[class_idx];
uint32_t used = g_tls_sll[class_idx].count;
if (used >= cap) return 0;
return (cap - used);