2025-12-12 16:26:42 +09:00
# 本線タスク(現在)
2025-12-14 16:28:23 +09:00
## 更新メモ( 2025-12-14 Phase 6 FRONT-FASTLANE-1)
### Phase 6 FRONT-FASTLANE-1: Front FastLane( Layer Collapse) — ✅ GO / 本線昇格
結果: Mixed 10-run で ** +11.13%**( HAKMEM史上最大級の改善) 。Fail-Fast/境界1箇所を維持したまま “入口固定費” を大幅削減。
- A/B 結果: `docs/analysis/PHASE6_FRONT_FASTLANE_1_AB_TEST_RESULTS.md`
- 実装レポート: `docs/analysis/PHASE6_FRONT_FASTLANE_1_IMPLEMENTATION_REPORT.md`
- 設計: `docs/analysis/PHASE6_FRONT_FASTLANE_1_DESIGN.md`
- 指示書(昇格/次): `docs/analysis/PHASE6_FRONT_FASTLANE_NEXT_INSTRUCTIONS.md`
- 外部回答(記録): `PHASE_ML2_CHATGPT_RESPONSE_FASTLANE.md`
運用ルール:
- A/B は **同一バイナリで ENV トグル** (削除/追加で別バイナリ比較にしない)
- Mixed 10-run は `scripts/run_mixed_10_cleanenv.sh` 基準( ENV 漏れ防止)
2025-12-14 17:38:21 +09:00
### Phase 6-2 FRONT-FASTLANE-FREE-DEDUP: Front FastLane Free DeDup — ✅ GO / 本線昇格
2025-12-14 17:09:57 +09:00
2025-12-14 17:38:21 +09:00
結果: Mixed 10-run で ** +5.18%**。`front_fastlane_try_free()` の二重ヘッダ検証を排除し、free 側の固定費をさらに削減。
2025-12-14 17:09:57 +09:00
2025-12-14 17:38:21 +09:00
- A/B 結果: `docs/analysis/PHASE6_FRONT_FASTLANE_2_FREE_DEDUP_AB_TEST_RESULTS.md`
2025-12-14 17:09:57 +09:00
- 指示書: `docs/analysis/PHASE6_FRONT_FASTLANE_2_FREE_DEDUP_NEXT_INSTRUCTIONS.md`
2025-12-14 17:38:21 +09:00
- ENV gate: `HAKMEM_FRONT_FASTLANE_FREE_DEDUP=0/1` (default: 1, opt-out)
- Rollback: `HAKMEM_FRONT_FASTLANE_FREE_DEDUP=0`
成功要因:
- 重複検証の完全排除(`front_fastlane_try_free()` → `free_tiny_fast()` 直接呼び出し)
- free パスの重要性( Mixed では free が約 50%)
- 実行安定性向上(変動係数 0.58%)
累積効果( Phase 6) :
- Phase 6-1: +11.13%
- Phase 6-2: +5.18%
- **累積**: ベースラインから約 +16-17% の性能向上
### Next: TBD( Phase 6 完了、次の芯を検討中)
2025-12-14 17:09:57 +09:00
2025-12-14 06:44:04 +09:00
## 更新メモ( 2025-12-14 Phase 5 E5-3 Analysis - Strategic Pivot)
### Phase 5 E5-3: Candidate Analysis & Strategic Recommendations ⚠️ DEFER (2025-12-14)
**Decision**: **DEFER all E5-3 candidates** (E5-3a/b/c). Pivot to E5-4 (Malloc Direct Path, E5-1 pattern replication).
**Analysis**:
- **E5-3a (free_tiny_fast_cold 7.14%)**: NO-GO (cold path, low frequency despite high self%)
- **E5-3b (unified_cache_push 3.39%)**: MAYBE (already optimized, marginal ROI ~+1.0%)
- **E5-3c (hakmem_env_snapshot_enabled 2.97%)**: NO-GO (E3-4 precedent shows -1.44% regression)
**Key Insight**: **Profiler self% ≠ optimization opportunity**
- Self% is time-weighted (samples during execution), not frequency-weighted
- Cold paths appear hot due to expensive operations when hit, not total cost
- E5-2 lesson: 3.35% self% → +0.45% NEUTRAL (branch overhead ≈ savings)
**ROI Assessment**:
| Candidate | Self% | Frequency | Expected Gain | Risk | Decision |
|-----------|-------|-----------|---------------|------|----------|
| E5-3a (cold path) | 7.14% | LOW | +0.5% | HIGH | NO-GO |
| E5-3b (push) | 3.39% | HIGH | +1.0% | MEDIUM | DEFER |
| E5-3c (env snapshot) | 2.97% | HIGH | -1.0% | HIGH | NO-GO |
**Strategic Pivot**: Focus on **E5-1 Success Pattern** (wrapper-level deduplication)
- E5-1 (Free Tiny Direct): +3.35% (GO) ✅
- **Next**: E5-4 (Malloc Tiny Direct) - Apply E5-1 pattern to alloc side
- **Expected**: +2-4% (similar to E5-1, based on malloc wrapper overhead)
**Cumulative Status (Phase 5)**:
- E4-1 (Free Wrapper Snapshot): +3.51% standalone
- E4-2 (Malloc Wrapper Snapshot): +21.83% standalone
- E4 Combined: +6.43% (from baseline with both OFF)
- E5-1 (Free Tiny Direct): +3.35% (from E4 baseline)
- E5-2 (Header Write-Once): +0.45% NEUTRAL (frozen)
- **E5-3**: **DEFER** (analysis complete, no implementation/test)
- **Total Phase 5**: ~+9-10% cumulative (E4+E5-1 promoted, E5-2 frozen, E5-3 deferred)
**Implementation** (E5-3a research box, NOT TESTED):
- Files created:
- `core/box/free_cold_shape_env_box.{h,c}` (ENV gate, default OFF)
- `core/box/free_cold_shape_stats_box.{h,c}` (stats counters)
- `docs/analysis/PHASE5_E5_3_ANALYSIS_AND_RECOMMENDATIONS.md` (analysis)
- Files modified:
- `core/front/malloc_tiny_fast.h` (lines 418-437, cold path shape optimization)
- Pattern: Early exit for LEGACY path (skip LARSON check when !use_tiny_heap)
- **Status**: FROZEN (default OFF, pre-analysis shows NO-GO, not worth A/B testing)
**Key Lessons**:
1. **Profiler self% misleads** when frequency is low (cold path)
2. **Micro-optimizations plateau** in already-optimized code (E5-2, E5-3b)
3. **Branch hints are profile-dependent** (E3-4 failure, E5-3c risk)
4. **Wrapper-level deduplication wins** (E4-1, E4-2, E5-1 pattern)
**Next Steps**:
- **E5-4 Design**: Malloc Tiny Direct Path (E5-1 pattern for alloc)
- Target: malloc() wrapper overhead (~12.95% self% in E4 profile)
- Method: Single size check → direct call to malloc_tiny_fast_for_class()
- Expected: +2-4% (based on E5-1 precedent +3.35%)
- Design doc: `docs/analysis/PHASE5_E5_4_MALLOC_TINY_DIRECT_DESIGN.md`
- Next instructions: `docs/analysis/PHASE5_E5_4_MALLOC_TINY_DIRECT_NEXT_INSTRUCTIONS.md`
---
Phase 5 E5-2: Header Write-Once (NEUTRAL, FROZEN)
Target: tiny_region_id_write_header (3.35% self%)
- Hypothesis: Headers redundant for reused blocks
- Strategy: Write headers ONCE at refill boundary, skip in hot alloc
Implementation:
- ENV gate: HAKMEM_TINY_HEADER_WRITE_ONCE=0/1 (default 0)
- core/box/tiny_header_write_once_env_box.h: ENV gate
- core/box/tiny_header_write_once_stats_box.h: Stats counters
- core/box/tiny_header_box.h: Added tiny_header_finalize_alloc()
- core/front/tiny_unified_cache.c: Prefill at 3 refill sites
- core/box/tiny_front_hot_box.h: Use finalize function
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (WRITE_ONCE=0): 44.22M ops/s (mean), 44.53M ops/s (median)
- Optimized (WRITE_ONCE=1): 44.42M ops/s (mean), 44.36M ops/s (median)
- Improvement: +0.45% mean, -0.38% median
Decision: NEUTRAL (within ±1.0% threshold)
- Action: FREEZE as research box (default OFF, do not promote)
Root Cause Analysis:
- Header writes are NOT redundant - existing code writes only when needed
- Branch overhead (~4 cycles) cancels savings (~3-5 cycles)
- perf self% ≠ optimization ROI (3.35% target → +0.45% gain)
Key Lessons:
1. Verify assumptions before optimizing (inspect code paths)
2. Hot spot self% measures time IN function, not savings from REMOVING it
3. Branch overhead matters (even "simple" checks add cycles)
Positive Outcome:
- StdDev reduced 50% (0.96M → 0.48M) - more stable performance
Health Check: PASS (all profiles)
Next Candidates:
- free_tiny_fast_cold: 7.14% self%
- unified_cache_push: 3.39% self%
- hakmem_env_snapshot_enabled: 2.97% self%
Deliverables:
- docs/analysis/PHASE5_E5_2_HEADER_REFILL_ONCE_DESIGN.md
- docs/analysis/PHASE5_E5_2_HEADER_REFILL_ONCE_AB_TEST_RESULTS.md
- CURRENT_TASK.md (E5-2 complete, FROZEN)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 06:22:25 +09:00
## 更新メモ( 2025-12-14 Phase 5 E5-2 Complete - Header Write-Once)
### Phase 5 E5-2: Header Write-Once Optimization ⚪ NEUTRAL (2025-12-14)
**Target**: `tiny_region_id_write_header` (3.35% self%)
- Strategy: Write headers ONCE at refill boundary, skip writes in hot allocation path
- Hypothesis: Header writes are redundant for reused blocks (C1-C6 preserve headers)
- Goal: +1-3% by eliminating redundant header writes
**A/B Test Results** (Mixed, 10-run, 20M iters, ws=400):
- Baseline (WRITE_ONCE=0): **44.22M ops/s** (mean), 44.53M ops/s (median), σ =0.96M
- Optimized (WRITE_ONCE=1): **44.42M ops/s** (mean), 44.36M ops/s (median), σ =0.48M
- **Delta: +0.45% mean, -0.38% median** ⚪
**Decision: NEUTRAL** (within ±1.0% threshold → FREEZE as research box)
- Mean +0.45% < +1.0% GO threshold
- Median -0.38% suggests no consistent benefit
- Action: Keep as research box (default OFF, do not promote to preset)
**Why NEUTRAL?**:
1. **Assumption incorrect** : Headers are NOT redundant (already written correctly at freelist pop)
2. **Branch overhead** : ENV gate + class check (~4 cycles) ≈ savings (~3-5 cycles)
3. **Net effect** : Marginal benefit offset by branch overhead
**Positive Outcome**:
- **Variance reduced 50%**: σ dropped from 0.96M → 0.48M ops/s
- More stable performance (good for profiling/benchmarking)
**Health Check**: ✅ PASS
- MIXED_TINYV3_C7_SAFE: 41.9M ops/s
- C6_HEAVY_LEGACY_POOLV1: 22.6M ops/s
- All profiles passed, no regressions
**Implementation** (FROZEN, default OFF):
- ENV gate: `HAKMEM_TINY_HEADER_WRITE_ONCE=0/1` (default: 0, research box)
- Files created:
- `core/box/tiny_header_write_once_env_box.h` (ENV gate)
- `core/box/tiny_header_write_once_stats_box.h` (Stats counters)
- Files modified:
- `core/box/tiny_header_box.h` (added `tiny_header_finalize_alloc()` )
- `core/front/tiny_unified_cache.c` (added `unified_cache_prefill_headers()` )
- `core/box/tiny_front_hot_box.h` (use `tiny_header_finalize_alloc()` )
- Pattern: Prefill headers at refill boundary, skip writes in hot path
**Key Lessons**:
1. **Verify assumptions** : perf self% doesn't always mean redundancy
2. **Branch overhead matters** : Even "simple" checks can cancel savings
3. **Variance is valuable** : Stability improvement is a secondary win
**Cumulative Status (Phase 5)**:
- E4-1 (Free Wrapper Snapshot): +3.51% standalone
- E4-2 (Malloc Wrapper Snapshot): +21.83% standalone
- E4 Combined: +6.43% (from baseline with both OFF)
- E5-1 (Free Tiny Direct): +3.35% (from E4 baseline)
- **E5-2 (Header Write-Once): +0.45% NEUTRAL** (frozen as research box)
- **Total Phase 5**: ~+9-10% cumulative (E4+E5-1 promoted, E5-2 frozen)
**Next Steps**:
- E5-2: FROZEN as research box (default OFF, do not pursue)
- Profile new baseline (E4-1+E4-2+E5-1 ON) to identify next target
- Design docs:
- `docs/analysis/PHASE5_E5_2_HEADER_REFILL_ONCE_DESIGN.md`
- `docs/analysis/PHASE5_E5_2_HEADER_REFILL_ONCE_AB_TEST_RESULTS.md`
---
2025-12-14 05:52:32 +09:00
## 更新メモ( 2025-12-14 Phase 5 E5-1 Complete - Free Tiny Direct Path)
### Phase 5 E5-1: Free Tiny Direct Path ✅ GO (2025-12-14)
**Target**: Wrapper-level Tiny direct path optimization (reduce 29.56% combined free overhead)
- Strategy: Single header check in wrapper → direct call to free_tiny_fast()
- Eliminates: Redundant header validation + ENV snapshot overhead + cold path route determination
- Goal: Bypass wrapper tax for Tiny allocations (48% of frees in Mixed)
**A/B Test Results** (Mixed, 10-run, 20M iters, ws=400):
- Baseline (DIRECT=0): **44.38M ops/s** (mean), 44.45M ops/s (median), σ =0.25M
- Optimized (DIRECT=1): **45.87M ops/s** (mean), 45.95M ops/s (median), σ =0.33M
- **Delta: +3.35% mean, +3.36% median** ✅
**Decision: GO** (+3.35% >= +1.0% threshold)
- Exceeds conservative estimate (+3-5%) → Achieved +3.35%
2025-12-14 05:59:43 +09:00
- Action: Promote to `MIXED_TINYV3_C7_SAFE` preset (HAKMEM_FREE_TINY_DIRECT=1 default) ✅
2025-12-14 05:52:32 +09:00
**Health Check**: ✅ PASS
- MIXED_TINYV3_C7_SAFE: 41.9M ops/s
- C6_HEAVY_LEGACY_POOLV1: 21.1M ops/s
- All profiles passed, no regressions
**Implementation**:
2025-12-14 05:59:43 +09:00
- ENV gate: `HAKMEM_FREE_TINY_DIRECT=0/1` (default: 0, preset(MIXED)=1)
2025-12-14 05:52:32 +09:00
- Files created:
- `core/box/free_tiny_direct_env_box.h` (ENV gate)
- `core/box/free_tiny_direct_stats_box.h` (Stats counters)
- Files modified:
- `core/box/hak_wrappers.inc.h` (lines 593-625, wrapper integration)
- Pattern: Single header check (`(header & 0xF0) == 0xA0` ) → direct path
- Safety: Page boundary guard, magic validation, class bounds check, fail-fast fallback
**Why +3.35%?**:
1. **Before (E4 baseline)** :
- free() wrapper: 21.67% self% (header + ENV snapshot + gate dispatch)
- free_tiny_fast_cold(): 7.89% self% (route determination + policy snapshot)
- **Total**: 29.56% overhead
2. **After (E5-1)** :
- free() wrapper: ~18-20% self% (single header check + direct call)
- **Eliminated**: ~9-10% overhead (30% reduction of 29.56%)
3. **Net gain** : ~3.5% of total runtime (matches observed +3.35%)
**Key Insight**: Deduplication beats inlining. E5-1 eliminates redundant checks (header validated twice, ENV snapshot overhead), similar to E4's TLS consolidation pattern. This is the 3rd consecutive success with the "consolidation/deduplication" strategy.
**Cumulative Status (Phase 5)**:
- E4-1 (Free Wrapper Snapshot): +3.51% standalone
- E4-2 (Malloc Wrapper Snapshot): +21.83% standalone
- E4 Combined: +6.43% (from baseline with both OFF)
- **E5-1 (Free Tiny Direct): +3.35%** (from E4 baseline, session variance)
- **Total Phase 5**: ~+9-10% cumulative (needs combined E4+E5-1 measurement)
**Next Steps**:
- ✅ Promote: `HAKMEM_FREE_TINY_DIRECT=1` to `MIXED_TINYV3_C7_SAFE` preset
2025-12-14 06:44:04 +09:00
- ✅ E5-2: NEUTRAL → FREEZE
- ✅ E5-3: DEFER( ROI 低)
2025-12-14 06:59:35 +09:00
- ✅ E5-4: NEUTRAL → FREEZE
2025-12-14 07:18:59 +09:00
- ✅ E6: NO-GO → FREEZE
2025-12-14 08:11:20 +09:00
- ✅ E7: NO-GO( prune による -3%台回帰)→ 差し戻し
- Next: Phase 5 はここで一旦区切り(次は新しい “重複排除” か大きい構造変更を探索)
2025-12-14 05:52:32 +09:00
- Design docs:
- `docs/analysis/PHASE5_E5_1_FREE_TINY_DIRECT_1_DESIGN.md`
- `docs/analysis/PHASE5_E5_1_FREE_TINY_DIRECT_1_AB_TEST_RESULTS.md`
2025-12-14 05:59:43 +09:00
- `docs/analysis/PHASE5_E5_1_FREE_TINY_DIRECT_NEXT_INSTRUCTIONS.md`
2025-12-14 05:52:32 +09:00
- `docs/analysis/PHASE5_E5_COMPREHENSIVE_ANALYSIS.md`
2025-12-14 06:44:04 +09:00
- `docs/analysis/PHASE5_E5_4_MALLOC_TINY_DIRECT_NEXT_INSTRUCTIONS.md`
2025-12-14 06:59:35 +09:00
- `docs/analysis/PHASE5_E5_4_MALLOC_TINY_DIRECT_AB_TEST_RESULTS.md`
- `docs/analysis/PHASE5_E6_ENV_SNAPSHOT_SHAPE_NEXT_INSTRUCTIONS.md`
2025-12-14 07:18:59 +09:00
- `docs/analysis/PHASE5_E6_ENV_SNAPSHOT_SHAPE_AB_TEST_RESULTS.md`
- `docs/analysis/PHASE5_E7_FROZEN_BOX_PRUNE_NEXT_INSTRUCTIONS.md`
2025-12-14 08:11:20 +09:00
- `docs/analysis/PHASE5_E7_FROZEN_BOX_PRUNE_AB_TEST_RESULTS.md`
2025-12-14 08:56:09 +09:00
- `PHASE_ML2_CHATGPT_QUESTIONNAIRE_FASTLANE.md`
2025-12-14 16:28:23 +09:00
- `PHASE_ML2_CHATGPT_RESPONSE_FASTLANE.md`
- `docs/analysis/PHASE6_FRONT_FASTLANE_1_DESIGN.md`
- `docs/analysis/PHASE6_FRONT_FASTLANE_NEXT_INSTRUCTIONS.md`
2025-12-14 05:52:32 +09:00
---
2025-12-14 05:36:57 +09:00
## 更新メモ( 2025-12-14 Phase 5 E4 Combined Complete - E4-1 + E4-2 Interaction Analysis)
### Phase 5 E4 Combined: E4-1 + E4-2 同時有効化 ✅ GO (2025-12-14)
**Target**: Measure combined effect of both wrapper ENV snapshots (free + malloc)
- Strategy: Enable both HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=1 and HAKMEM_MALLOC_WRAPPER_ENV_SNAPSHOT=1
- Goal: Verify interaction (additive / subadditive / superadditive) and establish new baseline
**A/B Test Results** (Mixed, 10-run, 20M iters, ws=400):
- Baseline (both OFF): **44.48M ops/s** (mean), 44.39M ops/s (median), σ =0.38M
- Optimized (both ON): **47.34M ops/s** (mean), 47.38M ops/s (median), σ =0.42M
- **Delta: +6.43% mean, +6.74% median** ✅
**Individual vs Combined**:
- E4-1 alone (free wrapper): +3.51%
- E4-2 alone (malloc wrapper): +21.83%
- **Combined (both): +6.43%**
- **Interaction: 非加算**(“単独” は別セッションの参考値。増分は E4 Combined A/B を正とする)
**Analysis - Why Subadditive?**:
1. **Baseline mismatch** : E4-1 と E4-2 の “単独” A/B は別セッション(別バイナリ状態)で測られており、前提が一致しない
- E4-1: 45.35M → 46.94M( +3.51%)
- E4-2: 35.74M → 43.54M( +21.83%)
- 足し算期待値は作らず、同一バイナリでの **E4 Combined A/B** を “正” とする
2. **Shared Bottlenecks** : Both optimizations target TLS read consolidation
- Once TLS access is optimized in one path, benefits in the other path are reduced
- Memory bandwidth / cache line effects are shared resources
3. **Branch Predictor Saturation** : Both paths compete for branch predictor entries
- ENV snapshot checks add branches that compete for same predictor resources
- Combined overhead is non-linear
**Health Check**: ✅ PASS
- MIXED_TINYV3_C7_SAFE: 42.3M ops/s
- C6_HEAVY_LEGACY_POOLV1: 20.9M ops/s
- All profiles passed, no regressions
**Perf Profile** (New Baseline: both ON, 20M iters, 47.0M ops/s):
Top Hot Spots (self% >= 2.0%):
1. free: 37.56% (wrapper + gate, still dominant)
2. tiny_alloc_gate_fast: 13.73% (alloc gate, reduced from 19.50%)
3. malloc: 12.95% (wrapper, reduced from 16.13%)
4. main: 11.13% (benchmark driver)
5. tiny_region_id_write_header: 6.97% (header write cost)
6. tiny_c7_ultra_alloc: 4.56% (C7 alloc path)
7. hakmem_env_snapshot_enabled: 4.29% (ENV snapshot overhead, visible)
8. tiny_get_max_size: 4.24% (size limit check)
**Next Phase 5 Candidates** (self% >= 5%):
- **free (37.56%)**: Still the largest hot spot, but harder to optimize further
- Already has ENV snapshot, hotcold path, static routing
- Next step: Analyze free path internals (tiny_free_fast structure)
- **tiny_region_id_write_header (6.97%)**: Header write tax
- Phase 1 A3 showed always_inline is NO-GO (-4% on Mixed)
- Alternative: Reduce header writes (selective mode, cached writes)
**Key Insight**: ENV snapshot pattern は有効だが、**複数パスに同時適用したときの増分は足し算にならない**。評価は同一バイナリでの **E4 Combined A/B** ( +6.43%)を正とする。
**Decision: GO** (+6.43% >= +1.0% threshold)
- New baseline: **47.34M ops/s** (Mixed, 20M iters, ws=400)
- Both optimizations remain DEFAULT ON in MIXED_TINYV3_C7_SAFE
- Action: Shift focus to next bottleneck (free path internals or header write optimization)
**Cumulative Status (Phase 5)**:
- E4-1 (Free Wrapper Snapshot): +3.51% standalone
- E4-2 (Malloc Wrapper Snapshot): +21.83% standalone (on top of E4-1)
- **E4 Combined: +6.43%** (from original baseline with both OFF)
- **Total Phase 5: +6.43%** (on top of Phase 4's +3.9%)
- **Overall progress: 35.74M → 47.34M = +32.4%** (from Phase 5 start to E4 combined)
**Next Steps**:
- Profile analysis: Identify E5 candidates (free path, header write, or other hot spots)
- Consider: free() fast path structure optimization (37.56% self% is large target)
- Consider: Header write reduction strategies (6.97% self%)
- Update design docs with subadditive interaction analysis
- Design doc: `docs/analysis/PHASE5_E4_COMBINED_AB_TEST_RESULTS.md`
---
2025-12-14 05:13:29 +09:00
## 更新メモ( 2025-12-14 Phase 5 E4-2 Complete - Malloc Gate Optimization)
### Phase 5 E4-2: malloc Wrapper ENV Snapshot ✅ GO (2025-12-14)
**Target**: Consolidate TLS reads in malloc() wrapper to reduce 35.63% combined hot spot
- Strategy: Apply E4-1 success pattern (ENV snapshot consolidation) to malloc() side
- Combined target: malloc (16.13%) + tiny_alloc_gate_fast (19.50%) = 35.63% self%
- Implementation: Single TLS snapshot with packed flags (wrap_shape + front_gate + tiny_max_size_256)
- Reduce: 2+ TLS reads → 1 TLS read, eliminate tiny_get_max_size() function call
**Implementation**:
- ENV gate: `HAKMEM_MALLOC_WRAPPER_ENV_SNAPSHOT=0/1` (default: 0, research box)
- Files: `core/box/malloc_wrapper_env_snapshot_box.{h,c}` (new ENV snapshot box)
- Integration: `core/box/hak_wrappers.inc.h` (lines 174-221, malloc() wrapper)
- Optimization: Pre-cache `tiny_max_size() == 256` to eliminate function call
**A/B Test Results** (Mixed, 10-run, 20M iters, ws=400):
- Baseline (SNAPSHOT=0): **35.74M ops/s** (mean), 35.75M ops/s (median), σ =0.43M
- Optimized (SNAPSHOT=1): **43.54M ops/s** (mean), 43.92M ops/s (median), σ =1.17M
- **Delta: +21.83% mean, +22.86% median** ✅
**Decision: GO** (+21.83% >> +1.0% threshold)
- EXCEEDED conservative estimate (+2-4%) → Achieved ** +21.83%**
- 6.2x better than E4-1 (+3.51%) - malloc() has higher ROI than free()
- Action: Promote to default configuration (HAKMEM_MALLOC_WRAPPER_ENV_SNAPSHOT=1)
**Health Check**: ✅ PASS
- MIXED_TINYV3_C7_SAFE: 40.8M ops/s
- C6_HEAVY_LEGACY_POOLV1: 21.8M ops/s
- All profiles passed, no regressions
**Why 6.2x better than E4-1?**:
1. **Higher Call Frequency** : malloc() called MORE than free() in alloc-heavy workloads
2. **Function Call Elimination** : Pre-caching tiny_max_size()==256 removes function call overhead
3. **Better Branch Prediction** : size < = 256 is highly predictable for tiny allocations
4. **Larger Target** : 35.63% combined self% (malloc + tiny_alloc_gate_fast) vs free's 25.26%
**Key Insight**: malloc() wrapper optimization has **6.2x higher ROI** than free() wrapper. ENV snapshot pattern continues to dominate, with malloc side showing exceptional gains due to function call elimination and higher call frequency.
**Cumulative Status (Phase 5)**:
- E4-1 (Free Wrapper Snapshot): +3.51% (GO)
- E4-2 (Malloc Wrapper Snapshot): +21.83% (GO) ⭐ **MAJOR WIN**
- Combined estimate: ~+25-27% (to be measured with both enabled)
- Total Phase 5: ** +21.83%** standalone (on top of Phase 4's +3.9%)
**Next Steps**:
- Measure combined effect (E4-1 + E4-2 both enabled)
- Profile new bottlenecks at 43.54M ops/s baseline
- Update default presets with HAKMEM_MALLOC_WRAPPER_ENV_SNAPSHOT=1
- Design doc: `docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_1_DESIGN.md`
- Results: `docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_1_AB_TEST_RESULTS.md`
---
Phase 5 E4-1: Free Wrapper ENV Snapshot (+3.51% GO, ADOPTED)
Target: Consolidate free wrapper TLS reads (2→1)
- free() is 25.26% self% (top hot spot)
- Strategy: Apply E1 success pattern (ENV snapshot) to free path
Implementation:
- ENV gate: HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1 (default 0)
- core/box/free_wrapper_env_snapshot_box.{h,c}: New box
- Consolidates 2 TLS reads → 1 TLS read (50% reduction)
- Reduces 4 branches → 3 branches (25% reduction)
- Lazy init with probe window (bench_profile putenv sync)
- core/box/hak_wrappers.inc.h: Integration in free() wrapper
- Makefile: Add free_wrapper_env_snapshot_box.o to all targets
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (SNAPSHOT=0): 45.35M ops/s (mean), 45.31M ops/s (median)
- Optimized (SNAPSHOT=1): 46.94M ops/s (mean), 47.15M ops/s (median)
- Improvement: +3.51% mean, +4.07% median
Decision: GO (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5% → +3.51%)
- Similar efficiency to E1 (+3.92%)
- Health check: PASS (all profiles)
- Action: PROMOTED to MIXED_TINYV3_C7_SAFE preset
Phase 5 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E4-1 (Free Wrapper Snapshot): +3.51%
- Total Phase 4-5: ~+7.5%
E3-4 Correction:
- Phase 4 E3-4 (ENV Constructor Init): NO-GO / FROZEN
- Initial A/B showed +4.75%, but investigation revealed:
- Branch prediction hint mismatch (UNLIKELY with always-true)
- Retest confirmed -1.78% regression
- Root cause: __builtin_expect(..., 0) with ctor_mode==1
- Decision: Freeze as research box (default OFF)
- Learning: Branch hints need careful tuning, TLS consolidation safer
Deliverables:
- docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md
- docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md (next)
- docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md
- docs/analysis/ENV_PROFILE_PRESETS.md (E4-1 added, E3-4 corrected)
- CURRENT_TASK.md (E4-1 complete, E3-4 frozen)
- core/bench_profile.h (E4-1 promoted to default)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 04:24:34 +09:00
## 更新メモ( 2025-12-14 Phase 5 E4-1 Complete - Free Gate Optimization)
### Phase 5 E4-1: Free Wrapper ENV Snapshot ✅ GO (2025-12-14)
**Target**: Consolidate TLS reads in free() wrapper to reduce 25.26% self% hot spot
- Strategy: Apply E1 success pattern (ENV snapshot consolidation), NOT E3-4 failure pattern
- Implementation: Single TLS snapshot with packed flags (wrap_shape + front_gate + hotcold)
- Reduce: 2 TLS reads → 1 TLS read, 4 branches → 3 branches
**Implementation**:
- ENV gate: `HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1` (default: 0, research box)
- Files: `core/box/free_wrapper_env_snapshot_box.{h,c}` (new ENV snapshot box)
- Integration: `core/box/hak_wrappers.inc.h` (lines 552-580, free() wrapper)
**A/B Test Results** (Mixed, 10-run, 20M iters, ws=400):
- Baseline (SNAPSHOT=0): **45.35M ops/s** (mean), 45.31M ops/s (median), σ =0.34M
- Optimized (SNAPSHOT=1): **46.94M ops/s** (mean), 47.15M ops/s (median), σ =0.94M
- **Delta: +3.51% mean, +4.07% median** ✅
**Decision: GO** (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5%) → Achieved +3.51%
- Similar to E1 success (+3.92%) - ENV consolidation pattern works
- Action: Promote to `MIXED_TINYV3_C7_SAFE` preset (HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=1 default)
**Health Check**: ✅ PASS
- MIXED_TINYV3_C7_SAFE: 42.5M ops/s
- C6_HEAVY_LEGACY_POOLV1: 23.0M ops/s
- All profiles passed, no regressions
**Perf Profile** (SNAPSHOT=1, 20M iters):
- free(): 25.26% (unchanged in this sample)
- NEW hot spot: hakmem_env_snapshot_enabled: 4.67% (ENV snapshot overhead visible)
- Note: Small sample (65 samples) may not be fully representative
- Overall throughput improved +3.51% despite ENV snapshot overhead cost
**Key Insight**: ENV consolidation continues to yield strong returns. Free path optimization via TLS reduction proves effective, matching E1's success pattern. The visible ENV snapshot overhead (4.67%) is outweighed by overall path efficiency gains.
**Cumulative Status (Phase 5)**:
- E4-1 (Free Wrapper Snapshot): +3.51% (GO)
- Total Phase 5: ~+3.5% (on top of Phase 4's +3.9%)
**Next Steps**:
- ✅ Promoted: `MIXED_TINYV3_C7_SAFE` で `HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=1` を default 化( opt-out 可)
2025-12-14 05:13:29 +09:00
- ✅ Promoted: `MIXED_TINYV3_C7_SAFE` で `HAKMEM_MALLOC_WRAPPER_ENV_SNAPSHOT=1` を default 化( opt-out 可)
- Next: E4-1+E4-2 の累積 A/B を 1 本だけ確認して、新 baseline で perf を取り直す
Phase 5 E4-1: Free Wrapper ENV Snapshot (+3.51% GO, ADOPTED)
Target: Consolidate free wrapper TLS reads (2→1)
- free() is 25.26% self% (top hot spot)
- Strategy: Apply E1 success pattern (ENV snapshot) to free path
Implementation:
- ENV gate: HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1 (default 0)
- core/box/free_wrapper_env_snapshot_box.{h,c}: New box
- Consolidates 2 TLS reads → 1 TLS read (50% reduction)
- Reduces 4 branches → 3 branches (25% reduction)
- Lazy init with probe window (bench_profile putenv sync)
- core/box/hak_wrappers.inc.h: Integration in free() wrapper
- Makefile: Add free_wrapper_env_snapshot_box.o to all targets
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (SNAPSHOT=0): 45.35M ops/s (mean), 45.31M ops/s (median)
- Optimized (SNAPSHOT=1): 46.94M ops/s (mean), 47.15M ops/s (median)
- Improvement: +3.51% mean, +4.07% median
Decision: GO (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5% → +3.51%)
- Similar efficiency to E1 (+3.92%)
- Health check: PASS (all profiles)
- Action: PROMOTED to MIXED_TINYV3_C7_SAFE preset
Phase 5 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E4-1 (Free Wrapper Snapshot): +3.51%
- Total Phase 4-5: ~+7.5%
E3-4 Correction:
- Phase 4 E3-4 (ENV Constructor Init): NO-GO / FROZEN
- Initial A/B showed +4.75%, but investigation revealed:
- Branch prediction hint mismatch (UNLIKELY with always-true)
- Retest confirmed -1.78% regression
- Root cause: __builtin_expect(..., 0) with ctor_mode==1
- Decision: Freeze as research box (default OFF)
- Learning: Branch hints need careful tuning, TLS consolidation safer
Deliverables:
- docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md
- docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md (next)
- docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md
- docs/analysis/ENV_PROFILE_PRESETS.md (E4-1 added, E3-4 corrected)
- CURRENT_TASK.md (E4-1 complete, E3-4 frozen)
- core/bench_profile.h (E4-1 promoted to default)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 04:24:34 +09:00
- Design doc: `docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md`
- 指示書:
- `docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md`
- `docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md`
2025-12-14 05:13:29 +09:00
- `docs/analysis/PHASE5_E4_COMBINED_AB_TEST_NEXT_INSTRUCTIONS.md`
Phase 5 E4-1: Free Wrapper ENV Snapshot (+3.51% GO, ADOPTED)
Target: Consolidate free wrapper TLS reads (2→1)
- free() is 25.26% self% (top hot spot)
- Strategy: Apply E1 success pattern (ENV snapshot) to free path
Implementation:
- ENV gate: HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1 (default 0)
- core/box/free_wrapper_env_snapshot_box.{h,c}: New box
- Consolidates 2 TLS reads → 1 TLS read (50% reduction)
- Reduces 4 branches → 3 branches (25% reduction)
- Lazy init with probe window (bench_profile putenv sync)
- core/box/hak_wrappers.inc.h: Integration in free() wrapper
- Makefile: Add free_wrapper_env_snapshot_box.o to all targets
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (SNAPSHOT=0): 45.35M ops/s (mean), 45.31M ops/s (median)
- Optimized (SNAPSHOT=1): 46.94M ops/s (mean), 47.15M ops/s (median)
- Improvement: +3.51% mean, +4.07% median
Decision: GO (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5% → +3.51%)
- Similar efficiency to E1 (+3.92%)
- Health check: PASS (all profiles)
- Action: PROMOTED to MIXED_TINYV3_C7_SAFE preset
Phase 5 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E4-1 (Free Wrapper Snapshot): +3.51%
- Total Phase 4-5: ~+7.5%
E3-4 Correction:
- Phase 4 E3-4 (ENV Constructor Init): NO-GO / FROZEN
- Initial A/B showed +4.75%, but investigation revealed:
- Branch prediction hint mismatch (UNLIKELY with always-true)
- Retest confirmed -1.78% regression
- Root cause: __builtin_expect(..., 0) with ctor_mode==1
- Decision: Freeze as research box (default OFF)
- Learning: Branch hints need careful tuning, TLS consolidation safer
Deliverables:
- docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md
- docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md (next)
- docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md
- docs/analysis/ENV_PROFILE_PRESETS.md (E4-1 added, E3-4 corrected)
- CURRENT_TASK.md (E4-1 complete, E3-4 frozen)
- core/bench_profile.h (E4-1 promoted to default)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 04:24:34 +09:00
---
Phase 4 E3-4: ENV Constructor Init (+4.75% GO)
Target: Eliminate E1 lazy init check overhead (3.22% self%)
- E1 consolidated ENV gates but lazy check remained in hot path
- Strategy: __attribute__((constructor(101))) for pre-main init
Implementation:
- ENV gate: HAKMEM_ENV_SNAPSHOT_CTOR=0/1 (default 0, research box)
- core/box/hakmem_env_snapshot_box.c: Constructor function added
- Reads ENV before main() when CTOR=1
- Refresh also syncs gate state for bench_profile putenv
- core/box/hakmem_env_snapshot_box.h: Dual-mode enabled check
- CTOR=1 fast path: direct global read (no lazy branch)
- CTOR=0 fallback: legacy lazy init (rollback safe)
- Branch hints adjusted for default OFF baseline
A/B Test Results (Mixed, 10-run, 20M iters, E1=1):
- Baseline (CTOR=0): 44.28M ops/s (mean), 44.60M ops/s (median)
- Optimized (CTOR=1): 46.38M ops/s (mean), 46.53M ops/s (median)
- Improvement: +4.75% mean, +4.35% median
Decision: GO (+4.75% >> +0.5% threshold)
- Expected +0.5-1.5%, achieved +4.75%
- Lazy init branch overhead was larger than expected
- Action: Keep as research box (default OFF), evaluate promotion
Phase 4 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E2 (Alloc Per-Class): -0.21% (NEUTRAL, frozen)
- E3-4 (Constructor Init): +4.75%
- Total Phase 4: ~+8.5%
Deliverables:
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_DESIGN.md
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE4_COMPREHENSIVE_STATUS_ANALYSIS.md
- docs/analysis/PHASE4_EXECUTIVE_SUMMARY.md
- scripts/verify_health_profiles.sh (sanity check script)
- CURRENT_TASK.md (E3-4 complete, next instructions)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 02:57:35 +09:00
## 更新メモ( 2025-12-14 Phase 4 E3-4 Complete - ENV Constructor Init)
Phase 5 E4-1: Free Wrapper ENV Snapshot (+3.51% GO, ADOPTED)
Target: Consolidate free wrapper TLS reads (2→1)
- free() is 25.26% self% (top hot spot)
- Strategy: Apply E1 success pattern (ENV snapshot) to free path
Implementation:
- ENV gate: HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1 (default 0)
- core/box/free_wrapper_env_snapshot_box.{h,c}: New box
- Consolidates 2 TLS reads → 1 TLS read (50% reduction)
- Reduces 4 branches → 3 branches (25% reduction)
- Lazy init with probe window (bench_profile putenv sync)
- core/box/hak_wrappers.inc.h: Integration in free() wrapper
- Makefile: Add free_wrapper_env_snapshot_box.o to all targets
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (SNAPSHOT=0): 45.35M ops/s (mean), 45.31M ops/s (median)
- Optimized (SNAPSHOT=1): 46.94M ops/s (mean), 47.15M ops/s (median)
- Improvement: +3.51% mean, +4.07% median
Decision: GO (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5% → +3.51%)
- Similar efficiency to E1 (+3.92%)
- Health check: PASS (all profiles)
- Action: PROMOTED to MIXED_TINYV3_C7_SAFE preset
Phase 5 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E4-1 (Free Wrapper Snapshot): +3.51%
- Total Phase 4-5: ~+7.5%
E3-4 Correction:
- Phase 4 E3-4 (ENV Constructor Init): NO-GO / FROZEN
- Initial A/B showed +4.75%, but investigation revealed:
- Branch prediction hint mismatch (UNLIKELY with always-true)
- Retest confirmed -1.78% regression
- Root cause: __builtin_expect(..., 0) with ctor_mode==1
- Decision: Freeze as research box (default OFF)
- Learning: Branch hints need careful tuning, TLS consolidation safer
Deliverables:
- docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md
- docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md (next)
- docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md
- docs/analysis/ENV_PROFILE_PRESETS.md (E4-1 added, E3-4 corrected)
- CURRENT_TASK.md (E4-1 complete, E3-4 frozen)
- core/bench_profile.h (E4-1 promoted to default)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 04:24:34 +09:00
### Phase 4 E3-4: ENV Constructor Init ❌ NO-GO / FROZEN (2025-12-14)
Phase 4 E3-4: ENV Constructor Init (+4.75% GO)
Target: Eliminate E1 lazy init check overhead (3.22% self%)
- E1 consolidated ENV gates but lazy check remained in hot path
- Strategy: __attribute__((constructor(101))) for pre-main init
Implementation:
- ENV gate: HAKMEM_ENV_SNAPSHOT_CTOR=0/1 (default 0, research box)
- core/box/hakmem_env_snapshot_box.c: Constructor function added
- Reads ENV before main() when CTOR=1
- Refresh also syncs gate state for bench_profile putenv
- core/box/hakmem_env_snapshot_box.h: Dual-mode enabled check
- CTOR=1 fast path: direct global read (no lazy branch)
- CTOR=0 fallback: legacy lazy init (rollback safe)
- Branch hints adjusted for default OFF baseline
A/B Test Results (Mixed, 10-run, 20M iters, E1=1):
- Baseline (CTOR=0): 44.28M ops/s (mean), 44.60M ops/s (median)
- Optimized (CTOR=1): 46.38M ops/s (mean), 46.53M ops/s (median)
- Improvement: +4.75% mean, +4.35% median
Decision: GO (+4.75% >> +0.5% threshold)
- Expected +0.5-1.5%, achieved +4.75%
- Lazy init branch overhead was larger than expected
- Action: Keep as research box (default OFF), evaluate promotion
Phase 4 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E2 (Alloc Per-Class): -0.21% (NEUTRAL, frozen)
- E3-4 (Constructor Init): +4.75%
- Total Phase 4: ~+8.5%
Deliverables:
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_DESIGN.md
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE4_COMPREHENSIVE_STATUS_ANALYSIS.md
- docs/analysis/PHASE4_EXECUTIVE_SUMMARY.md
- scripts/verify_health_profiles.sh (sanity check script)
- CURRENT_TASK.md (E3-4 complete, next instructions)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 02:57:35 +09:00
**Target**: E1 の lazy init check( 3.22% self%)を constructor init で排除
- E1 で ENV snapshot を統合したが、`hakmem_env_snapshot_enabled()` の lazy check が残っていた
- Strategy: `__attribute__((constructor(101)))` で main() 前に gate 初期化
**Implementation**:
- ENV gate: `HAKMEM_ENV_SNAPSHOT_CTOR=0/1` (default: 0, research box)
- `core/box/hakmem_env_snapshot_box.c` : Constructor function 追加
- `core/box/hakmem_env_snapshot_box.h` : Dual-mode enabled check (constructor vs legacy)
Phase 5 E4-1: Free Wrapper ENV Snapshot (+3.51% GO, ADOPTED)
Target: Consolidate free wrapper TLS reads (2→1)
- free() is 25.26% self% (top hot spot)
- Strategy: Apply E1 success pattern (ENV snapshot) to free path
Implementation:
- ENV gate: HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1 (default 0)
- core/box/free_wrapper_env_snapshot_box.{h,c}: New box
- Consolidates 2 TLS reads → 1 TLS read (50% reduction)
- Reduces 4 branches → 3 branches (25% reduction)
- Lazy init with probe window (bench_profile putenv sync)
- core/box/hak_wrappers.inc.h: Integration in free() wrapper
- Makefile: Add free_wrapper_env_snapshot_box.o to all targets
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (SNAPSHOT=0): 45.35M ops/s (mean), 45.31M ops/s (median)
- Optimized (SNAPSHOT=1): 46.94M ops/s (mean), 47.15M ops/s (median)
- Improvement: +3.51% mean, +4.07% median
Decision: GO (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5% → +3.51%)
- Similar efficiency to E1 (+3.92%)
- Health check: PASS (all profiles)
- Action: PROMOTED to MIXED_TINYV3_C7_SAFE preset
Phase 5 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E4-1 (Free Wrapper Snapshot): +3.51%
- Total Phase 4-5: ~+7.5%
E3-4 Correction:
- Phase 4 E3-4 (ENV Constructor Init): NO-GO / FROZEN
- Initial A/B showed +4.75%, but investigation revealed:
- Branch prediction hint mismatch (UNLIKELY with always-true)
- Retest confirmed -1.78% regression
- Root cause: __builtin_expect(..., 0) with ctor_mode==1
- Decision: Freeze as research box (default OFF)
- Learning: Branch hints need careful tuning, TLS consolidation safer
Deliverables:
- docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md
- docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md (next)
- docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md
- docs/analysis/ENV_PROFILE_PRESETS.md (E4-1 added, E3-4 corrected)
- CURRENT_TASK.md (E4-1 complete, E3-4 frozen)
- core/bench_profile.h (E4-1 promoted to default)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 04:24:34 +09:00
**A/B Test Results( re-validation) ** (Mixed, 10-run, 20M iters, ws=400, HAKMEM_ENV_SNAPSHOT=1):
- Baseline (CTOR=0): **47.55M ops/s** (mean), 47.46M ops/s (median)
- Optimized (CTOR=1): **46.86M ops/s** (mean), 46.97M ops/s (median)
- **Delta: -1.44% mean, -1.03% median** ❌
Phase 4 E3-4: ENV Constructor Init (+4.75% GO)
Target: Eliminate E1 lazy init check overhead (3.22% self%)
- E1 consolidated ENV gates but lazy check remained in hot path
- Strategy: __attribute__((constructor(101))) for pre-main init
Implementation:
- ENV gate: HAKMEM_ENV_SNAPSHOT_CTOR=0/1 (default 0, research box)
- core/box/hakmem_env_snapshot_box.c: Constructor function added
- Reads ENV before main() when CTOR=1
- Refresh also syncs gate state for bench_profile putenv
- core/box/hakmem_env_snapshot_box.h: Dual-mode enabled check
- CTOR=1 fast path: direct global read (no lazy branch)
- CTOR=0 fallback: legacy lazy init (rollback safe)
- Branch hints adjusted for default OFF baseline
A/B Test Results (Mixed, 10-run, 20M iters, E1=1):
- Baseline (CTOR=0): 44.28M ops/s (mean), 44.60M ops/s (median)
- Optimized (CTOR=1): 46.38M ops/s (mean), 46.53M ops/s (median)
- Improvement: +4.75% mean, +4.35% median
Decision: GO (+4.75% >> +0.5% threshold)
- Expected +0.5-1.5%, achieved +4.75%
- Lazy init branch overhead was larger than expected
- Action: Keep as research box (default OFF), evaluate promotion
Phase 4 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E2 (Alloc Per-Class): -0.21% (NEUTRAL, frozen)
- E3-4 (Constructor Init): +4.75%
- Total Phase 4: ~+8.5%
Deliverables:
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_DESIGN.md
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE4_COMPREHENSIVE_STATUS_ANALYSIS.md
- docs/analysis/PHASE4_EXECUTIVE_SUMMARY.md
- scripts/verify_health_profiles.sh (sanity check script)
- CURRENT_TASK.md (E3-4 complete, next instructions)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 02:57:35 +09:00
Phase 5 E4-1: Free Wrapper ENV Snapshot (+3.51% GO, ADOPTED)
Target: Consolidate free wrapper TLS reads (2→1)
- free() is 25.26% self% (top hot spot)
- Strategy: Apply E1 success pattern (ENV snapshot) to free path
Implementation:
- ENV gate: HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1 (default 0)
- core/box/free_wrapper_env_snapshot_box.{h,c}: New box
- Consolidates 2 TLS reads → 1 TLS read (50% reduction)
- Reduces 4 branches → 3 branches (25% reduction)
- Lazy init with probe window (bench_profile putenv sync)
- core/box/hak_wrappers.inc.h: Integration in free() wrapper
- Makefile: Add free_wrapper_env_snapshot_box.o to all targets
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (SNAPSHOT=0): 45.35M ops/s (mean), 45.31M ops/s (median)
- Optimized (SNAPSHOT=1): 46.94M ops/s (mean), 47.15M ops/s (median)
- Improvement: +3.51% mean, +4.07% median
Decision: GO (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5% → +3.51%)
- Similar efficiency to E1 (+3.92%)
- Health check: PASS (all profiles)
- Action: PROMOTED to MIXED_TINYV3_C7_SAFE preset
Phase 5 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E4-1 (Free Wrapper Snapshot): +3.51%
- Total Phase 4-5: ~+7.5%
E3-4 Correction:
- Phase 4 E3-4 (ENV Constructor Init): NO-GO / FROZEN
- Initial A/B showed +4.75%, but investigation revealed:
- Branch prediction hint mismatch (UNLIKELY with always-true)
- Retest confirmed -1.78% regression
- Root cause: __builtin_expect(..., 0) with ctor_mode==1
- Decision: Freeze as research box (default OFF)
- Learning: Branch hints need careful tuning, TLS consolidation safer
Deliverables:
- docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md
- docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md (next)
- docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md
- docs/analysis/ENV_PROFILE_PRESETS.md (E4-1 added, E3-4 corrected)
- CURRENT_TASK.md (E4-1 complete, E3-4 frozen)
- core/bench_profile.h (E4-1 promoted to default)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 04:24:34 +09:00
**Decision: NO-GO / FROZEN**
- 初回の +4.75% は再現しない(ノイズ/環境要因の可能性が高い)
- constructor mode は “追加の分岐/ロード” になり、現状の hot path では得にならない
- Action: default OFF のまま freeze( 追わない)
Phase 4 E3-4: ENV Constructor Init (+4.75% GO)
Target: Eliminate E1 lazy init check overhead (3.22% self%)
- E1 consolidated ENV gates but lazy check remained in hot path
- Strategy: __attribute__((constructor(101))) for pre-main init
Implementation:
- ENV gate: HAKMEM_ENV_SNAPSHOT_CTOR=0/1 (default 0, research box)
- core/box/hakmem_env_snapshot_box.c: Constructor function added
- Reads ENV before main() when CTOR=1
- Refresh also syncs gate state for bench_profile putenv
- core/box/hakmem_env_snapshot_box.h: Dual-mode enabled check
- CTOR=1 fast path: direct global read (no lazy branch)
- CTOR=0 fallback: legacy lazy init (rollback safe)
- Branch hints adjusted for default OFF baseline
A/B Test Results (Mixed, 10-run, 20M iters, E1=1):
- Baseline (CTOR=0): 44.28M ops/s (mean), 44.60M ops/s (median)
- Optimized (CTOR=1): 46.38M ops/s (mean), 46.53M ops/s (median)
- Improvement: +4.75% mean, +4.35% median
Decision: GO (+4.75% >> +0.5% threshold)
- Expected +0.5-1.5%, achieved +4.75%
- Lazy init branch overhead was larger than expected
- Action: Keep as research box (default OFF), evaluate promotion
Phase 4 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E2 (Alloc Per-Class): -0.21% (NEUTRAL, frozen)
- E3-4 (Constructor Init): +4.75%
- Total Phase 4: ~+8.5%
Deliverables:
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_DESIGN.md
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE4_COMPREHENSIVE_STATUS_ANALYSIS.md
- docs/analysis/PHASE4_EXECUTIVE_SUMMARY.md
- scripts/verify_health_profiles.sh (sanity check script)
- CURRENT_TASK.md (E3-4 complete, next instructions)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 02:57:35 +09:00
- Design doc: `docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_DESIGN.md`
Phase 5 E4-1: Free Wrapper ENV Snapshot (+3.51% GO, ADOPTED)
Target: Consolidate free wrapper TLS reads (2→1)
- free() is 25.26% self% (top hot spot)
- Strategy: Apply E1 success pattern (ENV snapshot) to free path
Implementation:
- ENV gate: HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1 (default 0)
- core/box/free_wrapper_env_snapshot_box.{h,c}: New box
- Consolidates 2 TLS reads → 1 TLS read (50% reduction)
- Reduces 4 branches → 3 branches (25% reduction)
- Lazy init with probe window (bench_profile putenv sync)
- core/box/hak_wrappers.inc.h: Integration in free() wrapper
- Makefile: Add free_wrapper_env_snapshot_box.o to all targets
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (SNAPSHOT=0): 45.35M ops/s (mean), 45.31M ops/s (median)
- Optimized (SNAPSHOT=1): 46.94M ops/s (mean), 47.15M ops/s (median)
- Improvement: +3.51% mean, +4.07% median
Decision: GO (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5% → +3.51%)
- Similar efficiency to E1 (+3.92%)
- Health check: PASS (all profiles)
- Action: PROMOTED to MIXED_TINYV3_C7_SAFE preset
Phase 5 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E4-1 (Free Wrapper Snapshot): +3.51%
- Total Phase 4-5: ~+7.5%
E3-4 Correction:
- Phase 4 E3-4 (ENV Constructor Init): NO-GO / FROZEN
- Initial A/B showed +4.75%, but investigation revealed:
- Branch prediction hint mismatch (UNLIKELY with always-true)
- Retest confirmed -1.78% regression
- Root cause: __builtin_expect(..., 0) with ctor_mode==1
- Decision: Freeze as research box (default OFF)
- Learning: Branch hints need careful tuning, TLS consolidation safer
Deliverables:
- docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md
- docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md (next)
- docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md
- docs/analysis/ENV_PROFILE_PRESETS.md (E4-1 added, E3-4 corrected)
- CURRENT_TASK.md (E4-1 complete, E3-4 frozen)
- core/bench_profile.h (E4-1 promoted to default)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 04:24:34 +09:00
**Key Insight**: “constructor で初期化” 自体は安全だが、性能面では現状 NO-GO。勝ち箱は E1 に集中する。
Phase 4 E3-4: ENV Constructor Init (+4.75% GO)
Target: Eliminate E1 lazy init check overhead (3.22% self%)
- E1 consolidated ENV gates but lazy check remained in hot path
- Strategy: __attribute__((constructor(101))) for pre-main init
Implementation:
- ENV gate: HAKMEM_ENV_SNAPSHOT_CTOR=0/1 (default 0, research box)
- core/box/hakmem_env_snapshot_box.c: Constructor function added
- Reads ENV before main() when CTOR=1
- Refresh also syncs gate state for bench_profile putenv
- core/box/hakmem_env_snapshot_box.h: Dual-mode enabled check
- CTOR=1 fast path: direct global read (no lazy branch)
- CTOR=0 fallback: legacy lazy init (rollback safe)
- Branch hints adjusted for default OFF baseline
A/B Test Results (Mixed, 10-run, 20M iters, E1=1):
- Baseline (CTOR=0): 44.28M ops/s (mean), 44.60M ops/s (median)
- Optimized (CTOR=1): 46.38M ops/s (mean), 46.53M ops/s (median)
- Improvement: +4.75% mean, +4.35% median
Decision: GO (+4.75% >> +0.5% threshold)
- Expected +0.5-1.5%, achieved +4.75%
- Lazy init branch overhead was larger than expected
- Action: Keep as research box (default OFF), evaluate promotion
Phase 4 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E2 (Alloc Per-Class): -0.21% (NEUTRAL, frozen)
- E3-4 (Constructor Init): +4.75%
- Total Phase 4: ~+8.5%
Deliverables:
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_DESIGN.md
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE4_COMPREHENSIVE_STATUS_ANALYSIS.md
- docs/analysis/PHASE4_EXECUTIVE_SUMMARY.md
- scripts/verify_health_profiles.sh (sanity check script)
- CURRENT_TASK.md (E3-4 complete, next instructions)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 02:57:35 +09:00
**Cumulative Status (Phase 4)**:
- E1 (ENV Snapshot): +3.92% (GO)
- E2 (Alloc Per-Class): -0.21% (NEUTRAL, frozen)
Phase 5 E4-1: Free Wrapper ENV Snapshot (+3.51% GO, ADOPTED)
Target: Consolidate free wrapper TLS reads (2→1)
- free() is 25.26% self% (top hot spot)
- Strategy: Apply E1 success pattern (ENV snapshot) to free path
Implementation:
- ENV gate: HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1 (default 0)
- core/box/free_wrapper_env_snapshot_box.{h,c}: New box
- Consolidates 2 TLS reads → 1 TLS read (50% reduction)
- Reduces 4 branches → 3 branches (25% reduction)
- Lazy init with probe window (bench_profile putenv sync)
- core/box/hak_wrappers.inc.h: Integration in free() wrapper
- Makefile: Add free_wrapper_env_snapshot_box.o to all targets
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (SNAPSHOT=0): 45.35M ops/s (mean), 45.31M ops/s (median)
- Optimized (SNAPSHOT=1): 46.94M ops/s (mean), 47.15M ops/s (median)
- Improvement: +3.51% mean, +4.07% median
Decision: GO (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5% → +3.51%)
- Similar efficiency to E1 (+3.92%)
- Health check: PASS (all profiles)
- Action: PROMOTED to MIXED_TINYV3_C7_SAFE preset
Phase 5 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E4-1 (Free Wrapper Snapshot): +3.51%
- Total Phase 4-5: ~+7.5%
E3-4 Correction:
- Phase 4 E3-4 (ENV Constructor Init): NO-GO / FROZEN
- Initial A/B showed +4.75%, but investigation revealed:
- Branch prediction hint mismatch (UNLIKELY with always-true)
- Retest confirmed -1.78% regression
- Root cause: __builtin_expect(..., 0) with ctor_mode==1
- Decision: Freeze as research box (default OFF)
- Learning: Branch hints need careful tuning, TLS consolidation safer
Deliverables:
- docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md
- docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md (next)
- docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md
- docs/analysis/ENV_PROFILE_PRESETS.md (E4-1 added, E3-4 corrected)
- CURRENT_TASK.md (E4-1 complete, E3-4 frozen)
- core/bench_profile.h (E4-1 promoted to default)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 04:24:34 +09:00
- E3-4 (Constructor Init): NO-GO / frozen
- Total Phase 4: ~+3.9%( E1 のみ)
Phase 4 E3-4: ENV Constructor Init (+4.75% GO)
Target: Eliminate E1 lazy init check overhead (3.22% self%)
- E1 consolidated ENV gates but lazy check remained in hot path
- Strategy: __attribute__((constructor(101))) for pre-main init
Implementation:
- ENV gate: HAKMEM_ENV_SNAPSHOT_CTOR=0/1 (default 0, research box)
- core/box/hakmem_env_snapshot_box.c: Constructor function added
- Reads ENV before main() when CTOR=1
- Refresh also syncs gate state for bench_profile putenv
- core/box/hakmem_env_snapshot_box.h: Dual-mode enabled check
- CTOR=1 fast path: direct global read (no lazy branch)
- CTOR=0 fallback: legacy lazy init (rollback safe)
- Branch hints adjusted for default OFF baseline
A/B Test Results (Mixed, 10-run, 20M iters, E1=1):
- Baseline (CTOR=0): 44.28M ops/s (mean), 44.60M ops/s (median)
- Optimized (CTOR=1): 46.38M ops/s (mean), 46.53M ops/s (median)
- Improvement: +4.75% mean, +4.35% median
Decision: GO (+4.75% >> +0.5% threshold)
- Expected +0.5-1.5%, achieved +4.75%
- Lazy init branch overhead was larger than expected
- Action: Keep as research box (default OFF), evaluate promotion
Phase 4 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E2 (Alloc Per-Class): -0.21% (NEUTRAL, frozen)
- E3-4 (Constructor Init): +4.75%
- Total Phase 4: ~+8.5%
Deliverables:
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_DESIGN.md
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE4_COMPREHENSIVE_STATUS_ANALYSIS.md
- docs/analysis/PHASE4_EXECUTIVE_SUMMARY.md
- scripts/verify_health_profiles.sh (sanity check script)
- CURRENT_TASK.md (E3-4 complete, next instructions)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 02:57:35 +09:00
---
2025-12-14 01:54:21 +09:00
### Phase 4 E2: Alloc Per-Class FastPath ⚪ NEUTRAL (2025-12-14)
**Target**: C0-C3 dedicated fast path for alloc (bypass policy route for small sizes)
- Strategy: Skip policy snapshot + route determination for C0-C3 classes
- Reuse DUALHOT pattern from free path (which achieved +13% for C0-C3)
- Baseline: HAKMEM_ENV_SNAPSHOT=1 enabled (E1 active)
**Implementation**:
- ENV gate: `HAKMEM_TINY_ALLOC_DUALHOT=0/1` (already exists, default: 0)
- Integration: `malloc_tiny_fast_for_class()` lines 247-259
- C0-C3 check: Direct to LEGACY unified cache when enabled
- Pattern: Probe window lazy init (64-call tolerance for early putenv)
**A/B Test Results** (Mixed, 10-run, 20M iters, HAKMEM_ENV_SNAPSHOT=1):
- Baseline (DUALHOT=0): **45.40M ops/s** (mean), 45.51M ops/s (median), σ =0.38M
- Optimized (DUALHOT=1): **45.30M ops/s** (mean), 45.22M ops/s (median), σ =0.49M
- **Improvement: -0.21% mean, -0.62% median**
**Decision: NEUTRAL** (-0.21% within ±1.0% noise threshold)
- Action: Keep as research box (default OFF, freeze)
- Reason: C0-C3 fast path adds branch overhead without measurable gain on Mixed
- Unlike FREE path (+13%), ALLOC path doesn't show significant route determination cost
**Key Insight**:
- Free path benefits from DUALHOT because it skips expensive policy snapshot + route lookup
- Alloc path already has optimized route caching (Phase 3 C3 static routing)
- C0-C3 specialization doesn't provide additional benefit over current routing
- Conclusion: Alloc route optimization has reached diminishing returns
**Cumulative Status**:
Phase 5 E4-1: Free Wrapper ENV Snapshot (+3.51% GO, ADOPTED)
Target: Consolidate free wrapper TLS reads (2→1)
- free() is 25.26% self% (top hot spot)
- Strategy: Apply E1 success pattern (ENV snapshot) to free path
Implementation:
- ENV gate: HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1 (default 0)
- core/box/free_wrapper_env_snapshot_box.{h,c}: New box
- Consolidates 2 TLS reads → 1 TLS read (50% reduction)
- Reduces 4 branches → 3 branches (25% reduction)
- Lazy init with probe window (bench_profile putenv sync)
- core/box/hak_wrappers.inc.h: Integration in free() wrapper
- Makefile: Add free_wrapper_env_snapshot_box.o to all targets
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (SNAPSHOT=0): 45.35M ops/s (mean), 45.31M ops/s (median)
- Optimized (SNAPSHOT=1): 46.94M ops/s (mean), 47.15M ops/s (median)
- Improvement: +3.51% mean, +4.07% median
Decision: GO (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5% → +3.51%)
- Similar efficiency to E1 (+3.92%)
- Health check: PASS (all profiles)
- Action: PROMOTED to MIXED_TINYV3_C7_SAFE preset
Phase 5 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E4-1 (Free Wrapper Snapshot): +3.51%
- Total Phase 4-5: ~+7.5%
E3-4 Correction:
- Phase 4 E3-4 (ENV Constructor Init): NO-GO / FROZEN
- Initial A/B showed +4.75%, but investigation revealed:
- Branch prediction hint mismatch (UNLIKELY with always-true)
- Retest confirmed -1.78% regression
- Root cause: __builtin_expect(..., 0) with ctor_mode==1
- Decision: Freeze as research box (default OFF)
- Learning: Branch hints need careful tuning, TLS consolidation safer
Deliverables:
- docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md
- docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md (next)
- docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md
- docs/analysis/ENV_PROFILE_PRESETS.md (E4-1 added, E3-4 corrected)
- CURRENT_TASK.md (E4-1 complete, E3-4 frozen)
- core/bench_profile.h (E4-1 promoted to default)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 04:24:34 +09:00
- Phase 4 E1: +3.92% (GO)
2025-12-14 01:54:21 +09:00
- Phase 4 E2: -0.21% (NEUTRAL, frozen)
Phase 5 E4-1: Free Wrapper ENV Snapshot (+3.51% GO, ADOPTED)
Target: Consolidate free wrapper TLS reads (2→1)
- free() is 25.26% self% (top hot spot)
- Strategy: Apply E1 success pattern (ENV snapshot) to free path
Implementation:
- ENV gate: HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1 (default 0)
- core/box/free_wrapper_env_snapshot_box.{h,c}: New box
- Consolidates 2 TLS reads → 1 TLS read (50% reduction)
- Reduces 4 branches → 3 branches (25% reduction)
- Lazy init with probe window (bench_profile putenv sync)
- core/box/hak_wrappers.inc.h: Integration in free() wrapper
- Makefile: Add free_wrapper_env_snapshot_box.o to all targets
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (SNAPSHOT=0): 45.35M ops/s (mean), 45.31M ops/s (median)
- Optimized (SNAPSHOT=1): 46.94M ops/s (mean), 47.15M ops/s (median)
- Improvement: +3.51% mean, +4.07% median
Decision: GO (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5% → +3.51%)
- Similar efficiency to E1 (+3.92%)
- Health check: PASS (all profiles)
- Action: PROMOTED to MIXED_TINYV3_C7_SAFE preset
Phase 5 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E4-1 (Free Wrapper Snapshot): +3.51%
- Total Phase 4-5: ~+7.5%
E3-4 Correction:
- Phase 4 E3-4 (ENV Constructor Init): NO-GO / FROZEN
- Initial A/B showed +4.75%, but investigation revealed:
- Branch prediction hint mismatch (UNLIKELY with always-true)
- Retest confirmed -1.78% regression
- Root cause: __builtin_expect(..., 0) with ctor_mode==1
- Decision: Freeze as research box (default OFF)
- Learning: Branch hints need careful tuning, TLS consolidation safer
Deliverables:
- docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md
- docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md (next)
- docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md
- docs/analysis/ENV_PROFILE_PRESETS.md (E4-1 added, E3-4 corrected)
- CURRENT_TASK.md (E4-1 complete, E3-4 frozen)
- core/bench_profile.h (E4-1 promoted to default)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 04:24:34 +09:00
- Phase 4 E3-4: NO-GO / frozen
Phase 4 E3-4: ENV Constructor Init (+4.75% GO)
Target: Eliminate E1 lazy init check overhead (3.22% self%)
- E1 consolidated ENV gates but lazy check remained in hot path
- Strategy: __attribute__((constructor(101))) for pre-main init
Implementation:
- ENV gate: HAKMEM_ENV_SNAPSHOT_CTOR=0/1 (default 0, research box)
- core/box/hakmem_env_snapshot_box.c: Constructor function added
- Reads ENV before main() when CTOR=1
- Refresh also syncs gate state for bench_profile putenv
- core/box/hakmem_env_snapshot_box.h: Dual-mode enabled check
- CTOR=1 fast path: direct global read (no lazy branch)
- CTOR=0 fallback: legacy lazy init (rollback safe)
- Branch hints adjusted for default OFF baseline
A/B Test Results (Mixed, 10-run, 20M iters, E1=1):
- Baseline (CTOR=0): 44.28M ops/s (mean), 44.60M ops/s (median)
- Optimized (CTOR=1): 46.38M ops/s (mean), 46.53M ops/s (median)
- Improvement: +4.75% mean, +4.35% median
Decision: GO (+4.75% >> +0.5% threshold)
- Expected +0.5-1.5%, achieved +4.75%
- Lazy init branch overhead was larger than expected
- Action: Keep as research box (default OFF), evaluate promotion
Phase 4 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E2 (Alloc Per-Class): -0.21% (NEUTRAL, frozen)
- E3-4 (Constructor Init): +4.75%
- Total Phase 4: ~+8.5%
Deliverables:
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_DESIGN.md
- docs/analysis/PHASE4_E3_ENV_CONSTRUCTOR_INIT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE4_COMPREHENSIVE_STATUS_ANALYSIS.md
- docs/analysis/PHASE4_EXECUTIVE_SUMMARY.md
- scripts/verify_health_profiles.sh (sanity check script)
- CURRENT_TASK.md (E3-4 complete, next instructions)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 02:57:35 +09:00
Phase 5 E4-1: Free Wrapper ENV Snapshot (+3.51% GO, ADOPTED)
Target: Consolidate free wrapper TLS reads (2→1)
- free() is 25.26% self% (top hot spot)
- Strategy: Apply E1 success pattern (ENV snapshot) to free path
Implementation:
- ENV gate: HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1 (default 0)
- core/box/free_wrapper_env_snapshot_box.{h,c}: New box
- Consolidates 2 TLS reads → 1 TLS read (50% reduction)
- Reduces 4 branches → 3 branches (25% reduction)
- Lazy init with probe window (bench_profile putenv sync)
- core/box/hak_wrappers.inc.h: Integration in free() wrapper
- Makefile: Add free_wrapper_env_snapshot_box.o to all targets
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (SNAPSHOT=0): 45.35M ops/s (mean), 45.31M ops/s (median)
- Optimized (SNAPSHOT=1): 46.94M ops/s (mean), 47.15M ops/s (median)
- Improvement: +3.51% mean, +4.07% median
Decision: GO (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5% → +3.51%)
- Similar efficiency to E1 (+3.92%)
- Health check: PASS (all profiles)
- Action: PROMOTED to MIXED_TINYV3_C7_SAFE preset
Phase 5 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E4-1 (Free Wrapper Snapshot): +3.51%
- Total Phase 4-5: ~+7.5%
E3-4 Correction:
- Phase 4 E3-4 (ENV Constructor Init): NO-GO / FROZEN
- Initial A/B showed +4.75%, but investigation revealed:
- Branch prediction hint mismatch (UNLIKELY with always-true)
- Retest confirmed -1.78% regression
- Root cause: __builtin_expect(..., 0) with ctor_mode==1
- Decision: Freeze as research box (default OFF)
- Learning: Branch hints need careful tuning, TLS consolidation safer
Deliverables:
- docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md
- docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md (next)
- docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md
- docs/analysis/ENV_PROFILE_PRESETS.md (E4-1 added, E3-4 corrected)
- CURRENT_TASK.md (E4-1 complete, E3-4 frozen)
- core/bench_profile.h (E4-1 promoted to default)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 04:24:34 +09:00
### Next: Phase 4( close & next target)
2025-12-14 01:54:21 +09:00
Phase 5 E4-1: Free Wrapper ENV Snapshot (+3.51% GO, ADOPTED)
Target: Consolidate free wrapper TLS reads (2→1)
- free() is 25.26% self% (top hot spot)
- Strategy: Apply E1 success pattern (ENV snapshot) to free path
Implementation:
- ENV gate: HAKMEM_FREE_WRAPPER_ENV_SNAPSHOT=0/1 (default 0)
- core/box/free_wrapper_env_snapshot_box.{h,c}: New box
- Consolidates 2 TLS reads → 1 TLS read (50% reduction)
- Reduces 4 branches → 3 branches (25% reduction)
- Lazy init with probe window (bench_profile putenv sync)
- core/box/hak_wrappers.inc.h: Integration in free() wrapper
- Makefile: Add free_wrapper_env_snapshot_box.o to all targets
A/B Test Results (Mixed, 10-run, 20M iters):
- Baseline (SNAPSHOT=0): 45.35M ops/s (mean), 45.31M ops/s (median)
- Optimized (SNAPSHOT=1): 46.94M ops/s (mean), 47.15M ops/s (median)
- Improvement: +3.51% mean, +4.07% median
Decision: GO (+3.51% >= +1.0% threshold)
- Exceeded conservative estimate (+1.5% → +3.51%)
- Similar efficiency to E1 (+3.92%)
- Health check: PASS (all profiles)
- Action: PROMOTED to MIXED_TINYV3_C7_SAFE preset
Phase 5 Cumulative:
- E1 (ENV Snapshot): +3.92%
- E4-1 (Free Wrapper Snapshot): +3.51%
- Total Phase 4-5: ~+7.5%
E3-4 Correction:
- Phase 4 E3-4 (ENV Constructor Init): NO-GO / FROZEN
- Initial A/B showed +4.75%, but investigation revealed:
- Branch prediction hint mismatch (UNLIKELY with always-true)
- Retest confirmed -1.78% regression
- Root cause: __builtin_expect(..., 0) with ctor_mode==1
- Decision: Freeze as research box (default OFF)
- Learning: Branch hints need careful tuning, TLS consolidation safer
Deliverables:
- docs/analysis/PHASE5_E4_FREE_GATE_OPTIMIZATION_1_DESIGN.md
- docs/analysis/PHASE5_E4_1_FREE_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md
- docs/analysis/PHASE5_E4_2_MALLOC_WRAPPER_ENV_SNAPSHOT_NEXT_INSTRUCTIONS.md (next)
- docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md
- docs/analysis/ENV_PROFILE_PRESETS.md (E4-1 added, E3-4 corrected)
- CURRENT_TASK.md (E4-1 complete, E3-4 frozen)
- core/bench_profile.h (E4-1 promoted to default)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 04:24:34 +09:00
- 勝ち箱: E1 を `MIXED_TINYV3_C7_SAFE` プリセットへ昇格( opt-out 可)
- 研究箱: E3-4/E2 は freeze( default OFF)
- 次の芯は perf で “self% ≥ 5%” の箱から選ぶ
- 次の指示書: `docs/analysis/PHASE5_POST_E1_NEXT_INSTRUCTIONS.md`
2025-12-14 01:54:21 +09:00
---
2025-12-14 01:46:18 +09:00
### Phase 4 E1: ENV Snapshot Consolidation ✅ COMPLETE (2025-12-14)
**Target**: Consolidate 3 ENV gate TLS reads → 1 TLS read
- `tiny_c7_ultra_enabled_env()` : 1.28% self
- `tiny_front_v3_enabled()` : 1.01% self
- `tiny_metadata_cache_enabled()` : 0.97% self
- **Total ENV overhead: 3.26% self** (from perf profile)
**Implementation**:
- Created `core/box/hakmem_env_snapshot_box.{h,c}` (new ENV snapshot box)
- Migrated 8 call sites across 3 hot path files to use snapshot
- ENV gate: `HAKMEM_ENV_SNAPSHOT=0/1` (default: 0, research box)
- Pattern: Similar to `tiny_front_v3_snapshot` (proven approach)
**A/B Test Results** (Mixed, 10-run, 20M iters):
- Baseline (E1=0): **43.62M ops/s** (avg), 43.56M ops/s (median)
- Optimized (E1=1): **45.33M ops/s** (avg), 45.31M ops/s (median)
- **Improvement: +3.92% avg, +4.01% median**
**Decision: GO** (+3.92% >= +2.5% threshold)
- Exceeded conservative expectation (+1-3%) → Achieved +3.92%
- Action: Keep as research box for now (default OFF)
- Commit: `88717a873`
**Key Insight**: Shifting from shape optimizations (plateaued) to TLS/memory overhead yields strong returns. ENV snapshot consolidation represents new optimization frontier beyond branch prediction tuning.
2025-12-14 00:48:03 +09:00
### Phase 4 Perf Profiling Complete ✅ (2025-12-14)
**Profile Analysis**:
- Baseline: 46.37M ops/s (MIXED_TINYV3_C7_SAFE, 40M iterations, ws=400)
- Samples: 922 samples @ 999Hz, 3.1B cycles
- Analysis doc: `docs/analysis/PHASE4_PERF_PROFILE_ANALYSIS.md`
2025-12-14 01:46:18 +09:00
**Key Findings Leading to E1**:
1. ENV Gate Overhead (3.26% combined) → **E1 target**
2. Shape Optimization Plateau (B3 +2.89%, D3 +0.56% NEUTRAL)
3. tiny_alloc_gate_fast (15.37% self%) → defer to E2
2025-12-14 00:26:57 +09:00
### Phase 4 D3: Alloc Gate Shape( HAKMEM_ALLOC_GATE_SHAPE)
- ✅ 実装完了( ENV gate + alloc gate 分岐形)
- Mixed A/B( 10-run, iter=20M, ws=400) : Mean ** +0.56%**( Median -0.5%)→ **NEUTRAL**
- 判定: research box として freeze( default OFF、プリセット昇格しない)
2025-12-14 00:48:03 +09:00
- **Lesson**: Shape optimizations have plateaued (branch prediction saturated)
2025-12-13 06:51:11 +09:00
### Phase 1 Quick Wins: FREE 昇格 + 観測税ゼロ化
2025-12-13 15:31:33 +09:00
- ✅ **A1( FREE 昇格)** : `MIXED_TINYV3_C7_SAFE` で `HAKMEM_FREE_TINY_FAST_HOTCOLD=1` をデフォルト化
- ✅ **A2( 観測税ゼロ化) ** : `HAKMEM_DEBUG_COUNTERS=0` のとき stats を compile-out( 観測税ゼロ)
2025-12-13 16:08:24 +09:00
- ❌ **A3( always_inline header) ** : `tiny_region_id_write_header()` always_inline → **NO-GO** (指示書/結果: `docs/analysis/TINY_HEADER_WRITE_ALWAYS_INLINE_A3_DESIGN.md` )
2025-12-13 15:31:33 +09:00
- A/B Result: Mixed -4.00% (I-cache pressure), C6-heavy +6.00%
- Decision: Freeze as research box (default OFF)
- Commit: `df37baa50`
2025-12-13 06:51:11 +09:00
### Phase 2: ALLOC 構造修正
- ✅ **Patch 1** : malloc_tiny_fast_for_class() 抽出( SSOT)
- ✅ **Patch 2** : tiny_alloc_gate_fast() を *_for_class 呼びに変更
- ✅ **Patch 3** : DUALHOT 分岐をクラス内へ移動( C0-C3 のみ)
- ✅ **Patch 4** : Probe window ENV gate 実装
- 結果: Mixed -0.27%( 中立) 、C6-heavy +1.68%( SSOT 効果)
- Commit: `d0f939c2e`
2025-12-13 16:08:24 +09:00
### Phase 2 B1 & B3: ルーティング最適化 (2025-12-13)
**B1( Header tax 削減 v2) : HEADER_MODE=LIGHT** → ❌ **NO-GO**
- Mixed (10-run): 48.89M → 47.65M ops/s (**-2.54%**, regression)
- Decision: FREEZE (research box, ENV opt-in)
- Rationale: Conditional check overhead outweighs store savings on Mixed
**B3( Routing 分岐形最適化): ALLOC_ROUTE_SHAPE=1** → ✅ **ADOPT**
- Mixed (10-run): 48.41M → 49.80M ops/s (**+2.89%**, win)
- Strategy: LIKELY on LEGACY (hot), cold helper for rare routes (V7/MID/ULTRA)
- C6-heavy (5-run): 8.97M → 9.79M ops/s (**+9.13%**, strong win)
- Decision: **ADOPT as default** in MIXED_TINYV3_C7_SAFE and C6_HEAVY_LEGACY_POOLV1
- Implementation: Already in place (lines 252-267 in malloc_tiny_fast.h), now enabled by default
- Profile updates: Added `bench_setenv_default("HAKMEM_TINY_ALLOC_ROUTE_SHAPE", "1")` to both profiles
Phase 3 Finalization: D1 20-run validation, D2 frozen, baseline established
Summary:
- D1 (Free route cache): 20-run validation → PROMOTED TO DEFAULT
- Baseline (20-run, ROUTE=0): 46.30M ops/s (mean), 46.30M (median)
- Optimized (20-run, ROUTE=1): 47.32M ops/s (mean), 47.39M (median)
- Mean gain: +2.19%, Median gain: +2.37%
- Decision: GO (both criteria met: mean >= +1.0%, median >= +0.0%)
- Implementation: Added HAKMEM_FREE_STATIC_ROUTE=1 to MIXED preset
- D2 (Wrapper env cache): FROZEN
- Previous result: -1.44% regression (TLS overhead > benefit)
- Status: Research box (do not pursue further)
- Default: OFF (not included in MIXED_TINYV3_C7_SAFE preset)
- Baseline Phase 3: 46.04M ops/s (Mixed, 10-run, 2025-12-13)
Cumulative Gains (Phase 2-3):
B3: +2.89%, B4: +1.47%, C3: +2.20%, D1: +2.19%
Total: ~7.6-8.9% (conservative: 7.6%, multiplicative: 8.93%)
MID_V3 fix: +13% (structural change, Mixed OFF by default)
Documentation Updates:
- PHASE3_FINALIZATION_SUMMARY.md: Comprehensive Phase 3 report
- PHASE3_CACHE_LOCALITY_NEXT_INSTRUCTIONS.md: D1/D2 final status
- PHASE3_D1_FREE_ROUTE_CACHE_1_DESIGN.md: 20-run validation results
- PHASE3_D2_WRAPPER_ENV_CACHE_1_DESIGN.md: FROZEN status
- ENV_PROFILE_PRESETS.md: D1 ADOPT, D2 FROZEN
- PHASE3_BASELINE_AND_CANDIDATES.md: Post-D1/D2 status
- CURRENT_TASK.md: Phase 3 complete summary
Next:
- D3 requires perf validation (tiny_alloc_gate_fast self% ≥5%)
- Or Phase 4 planning if no more D3-class targets
- Current active optimizations: B3, B4, C3, D1, MID_V3 fix
Files Changed:
- docs/analysis/PHASE3_FINALIZATION_SUMMARY.md (new, 580+ lines)
- docs/analysis/*.md (6 files updated with D1/D2 results)
- CURRENT_TASK.md (Phase 3 status update)
- analyze_d1_results.py (statistical analysis script)
- core/bench_profile.h (D1 promoted to default in MIXED preset)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-13 22:42:22 +09:00
## 現在地: Phase 3 D1/D2 Validation Complete ✅ (2025-12-13)
2025-12-13 22:04:28 +09:00
**Summary**:
Phase 3 Finalization: D1 20-run validation, D2 frozen, baseline established
Summary:
- D1 (Free route cache): 20-run validation → PROMOTED TO DEFAULT
- Baseline (20-run, ROUTE=0): 46.30M ops/s (mean), 46.30M (median)
- Optimized (20-run, ROUTE=1): 47.32M ops/s (mean), 47.39M (median)
- Mean gain: +2.19%, Median gain: +2.37%
- Decision: GO (both criteria met: mean >= +1.0%, median >= +0.0%)
- Implementation: Added HAKMEM_FREE_STATIC_ROUTE=1 to MIXED preset
- D2 (Wrapper env cache): FROZEN
- Previous result: -1.44% regression (TLS overhead > benefit)
- Status: Research box (do not pursue further)
- Default: OFF (not included in MIXED_TINYV3_C7_SAFE preset)
- Baseline Phase 3: 46.04M ops/s (Mixed, 10-run, 2025-12-13)
Cumulative Gains (Phase 2-3):
B3: +2.89%, B4: +1.47%, C3: +2.20%, D1: +2.19%
Total: ~7.6-8.9% (conservative: 7.6%, multiplicative: 8.93%)
MID_V3 fix: +13% (structural change, Mixed OFF by default)
Documentation Updates:
- PHASE3_FINALIZATION_SUMMARY.md: Comprehensive Phase 3 report
- PHASE3_CACHE_LOCALITY_NEXT_INSTRUCTIONS.md: D1/D2 final status
- PHASE3_D1_FREE_ROUTE_CACHE_1_DESIGN.md: 20-run validation results
- PHASE3_D2_WRAPPER_ENV_CACHE_1_DESIGN.md: FROZEN status
- ENV_PROFILE_PRESETS.md: D1 ADOPT, D2 FROZEN
- PHASE3_BASELINE_AND_CANDIDATES.md: Post-D1/D2 status
- CURRENT_TASK.md: Phase 3 complete summary
Next:
- D3 requires perf validation (tiny_alloc_gate_fast self% ≥5%)
- Or Phase 4 planning if no more D3-class targets
- Current active optimizations: B3, B4, C3, D1, MID_V3 fix
Files Changed:
- docs/analysis/PHASE3_FINALIZATION_SUMMARY.md (new, 580+ lines)
- docs/analysis/*.md (6 files updated with D1/D2 results)
- CURRENT_TASK.md (Phase 3 status update)
- analyze_d1_results.py (statistical analysis script)
- core/bench_profile.h (D1 promoted to default in MIXED preset)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-13 22:42:22 +09:00
- **Phase 3 D1 (Free Route Cache)**: ✅ ADOPT - PROMOTED TO DEFAULT
- 20-run validation: Mean +2.19%, Median +2.37% (both criteria met)
- Status: Added to MIXED_TINYV3_C7_SAFE preset (HAKMEM_FREE_STATIC_ROUTE=1)
- **Phase 3 D2 (Wrapper Env Cache)**: ❌ NO-GO / FROZEN
- 10-run results: -1.44% regression
- Reason: TLS overhead > benefit in Mixed workload
- Status: Research box frozen (default OFF, do not pursue)
**Cumulative gains**: B3 +2.89%, B4 +1.47%, C3 +2.20%, D1 +2.19% (promoted) → ** ~7.6%**
**Baseline Phase 3** (10-run, 2025-12-13):
- Mean: 46.04M ops/s, Median: 46.04M ops/s, StdDev: 0.14M ops/s
2025-12-13 06:51:11 +09:00
2025-12-13 23:47:19 +09:00
**Next**:
- Phase 4 D3 指示書: `docs/analysis/PHASE4_ALLOC_GATE_SPECIALIZATION_NEXT_INSTRUCTIONS.md`
2025-12-13 06:51:11 +09:00
### Phase ALLOC-GATE-SSOT-1 + ALLOC-TINY-FAST-DUALHOT-2: COMPLETED
**4 Patches Implemented** (2025-12-13):
1. ✅ Extract malloc_tiny_fast_for_class() with class_idx parameter (SSOT foundation)
2. ✅ Update tiny_alloc_gate_fast() to call *_for_class (eliminate duplicate size→class)
3. ✅ Reposition DUALHOT branch: only C0-C3 evaluate alloc_dualhot_enabled()
4. ✅ Probe window ENV gate (64 calls) for early putenv tolerance
**A/B Test Results**:
- **Mixed (10-run)**: 48.75M → 48.62M ops/s (**-0.27%**, neutral within variance)
- Rationale: SSOT overhead reduction offset by branch repositioning cost on aggregate
- **C6-heavy (5-run)**: 23.24M → 23.63M ops/s (**+1.68%**, SSOT benefit confirmed)
- SSOT effectiveness: Eliminates duplicate hak_tiny_size_to_class() call
**Decision**: ADOPT SSOT (Patch 1+2) as structural improvement, DUALHOT-2 (Patch 3) as ENV-gated feature (default OFF)
**Rationale**:
- SSOT is foundational: Establishes single source of truth for size→class lookup
- Enables future optimization: *_for_class path can be specialized further
- No regression: Mixed neutral, C6-heavy shows SSOT benefit (+1.68%)
- DUALHOT-2 maintains clean branch structure: C4-C7 unaffected when OFF
**Commit**: `d0f939c2e`
---
2025-12-13 05:11:09 +09:00
### Phase FREE-TINY-FAST-DUALHOT-1: CONFIRMED & READY FOR ADOPTION
**Final A/B Verification (2025-12-13)**:
- **Baseline (DUALHOT OFF)**: 42.08M ops/s (median, 10-run, Mixed)
- **Optimized (DUALHOT ON)**: 47.81M ops/s (median, 10-run, Mixed)
- **Improvement**: ** +13.00%** ✅
- **Health Check**: PASS (verify_health_profiles.sh)
- **Safety Gate**: HAKMEM_TINY_LARSON_FIX=1 disables for compatibility
**Strategy**: Recognize C0-C3 (48% of frees) as "second hot path"
- Skip policy snapshot + route determination for C0-C3 classes
- Direct inline to `tiny_legacy_fallback_free_base()`
- Implementation: `core/front/malloc_tiny_fast.h` lines 461-477
- Commit: `2b567ac07` + `b2724e6f5`
**Promotion Candidate**: YES - Ready for MIXED_TINYV3_C7_SAFE default profile
---
### Phase ALLOC-TINY-FAST-DUALHOT-1: RESEARCH BOX ✅ (WIP, -2% regression)
**Implementation Attempt**:
- ENV gate: `HAKMEM_TINY_ALLOC_DUALHOT=0/1` (default OFF)
- Early-exit: `malloc_tiny_fast()` lines 169-179
- A/B Result: ** -1.17% to -2.00%** regression (10-run Mixed)
**Root Cause**:
- Unlike FREE path (early return saves policy snapshot), ALLOC path falls through
- Extra branch evaluation on C4-C7 (~50% of traffic) outweighs C0-C3 policy skip
- Requires structural changes (per-class fast paths) to match FREE success
**Decision**: Freeze as research box (default OFF, retained for future study)
---
Phase 2 B4: Wrapper Layer Hot/Cold Split (malloc/free) - ADOPT (+1.47%)
- Implement malloc_cold() helper (noinline,cold) for LD mode, jemalloc, force_libc
- Add malloc() hot/cold dispatch with HAKMEM_WRAP_SHAPE=1 ENV gate
- Implement free_cold() helper (noinline,cold) for classification, ownership checks
- Add free() hot/cold dispatch: hot path returns early, cold path delegates to free_cold()
- Lock_depth symmetry verified on all return paths (malloc: ++/--, free: consistent)
A/B Testing Results (Mixed 10-run):
WRAP_SHAPE=0 (default): 34,750,578 ops/s
WRAP_SHAPE=1 (optimized): 35,262,596 ops/s
Average gain: +1.47% (Median: +1.39%)
✓ Decision: GO (exceeds +1.0% threshold)
Implementation Strategy:
- Separate frequently-executed code from rare paths (LD, jemalloc, diagnostics)
- Keep hot path instruction count minimal (returns early on success)
- L1 I-cache pressure reduction via noinline,cold attributes
- Default OFF (HAKMEM_WRAP_SHAPE=0) maintains backward compatibility
Files:
- core/box/hak_wrappers.inc.h: malloc_cold(), free_cold(), hot/cold dispatches
- core/box/wrapper_env_box.h/c: HAKMEM_WRAP_SHAPE ENV variable caching
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-13 17:08:24 +09:00
## Phase 2 B4: Wrapper Layer Hot/Cold Split ✅ ADOPT
2025-12-13 16:46:18 +09:00
Phase 2 B4: Wrapper Layer Hot/Cold Split (malloc/free) - ADOPT (+1.47%)
- Implement malloc_cold() helper (noinline,cold) for LD mode, jemalloc, force_libc
- Add malloc() hot/cold dispatch with HAKMEM_WRAP_SHAPE=1 ENV gate
- Implement free_cold() helper (noinline,cold) for classification, ownership checks
- Add free() hot/cold dispatch: hot path returns early, cold path delegates to free_cold()
- Lock_depth symmetry verified on all return paths (malloc: ++/--, free: consistent)
A/B Testing Results (Mixed 10-run):
WRAP_SHAPE=0 (default): 34,750,578 ops/s
WRAP_SHAPE=1 (optimized): 35,262,596 ops/s
Average gain: +1.47% (Median: +1.39%)
✓ Decision: GO (exceeds +1.0% threshold)
Implementation Strategy:
- Separate frequently-executed code from rare paths (LD, jemalloc, diagnostics)
- Keep hot path instruction count minimal (returns early on success)
- L1 I-cache pressure reduction via noinline,cold attributes
- Default OFF (HAKMEM_WRAP_SHAPE=0) maintains backward compatibility
Files:
- core/box/hak_wrappers.inc.h: malloc_cold(), free_cold(), hot/cold dispatches
- core/box/wrapper_env_box.h/c: HAKMEM_WRAP_SHAPE ENV variable caching
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-13 17:08:24 +09:00
**設計メモ**: `docs/analysis/PHASE2_B4_WRAPPER_SHAPE_1_DESIGN.md`
2025-12-13 16:46:18 +09:00
Phase 2 B4: Wrapper Layer Hot/Cold Split (malloc/free) - ADOPT (+1.47%)
- Implement malloc_cold() helper (noinline,cold) for LD mode, jemalloc, force_libc
- Add malloc() hot/cold dispatch with HAKMEM_WRAP_SHAPE=1 ENV gate
- Implement free_cold() helper (noinline,cold) for classification, ownership checks
- Add free() hot/cold dispatch: hot path returns early, cold path delegates to free_cold()
- Lock_depth symmetry verified on all return paths (malloc: ++/--, free: consistent)
A/B Testing Results (Mixed 10-run):
WRAP_SHAPE=0 (default): 34,750,578 ops/s
WRAP_SHAPE=1 (optimized): 35,262,596 ops/s
Average gain: +1.47% (Median: +1.39%)
✓ Decision: GO (exceeds +1.0% threshold)
Implementation Strategy:
- Separate frequently-executed code from rare paths (LD, jemalloc, diagnostics)
- Keep hot path instruction count minimal (returns early on success)
- L1 I-cache pressure reduction via noinline,cold attributes
- Default OFF (HAKMEM_WRAP_SHAPE=0) maintains backward compatibility
Files:
- core/box/hak_wrappers.inc.h: malloc_cold(), free_cold(), hot/cold dispatches
- core/box/wrapper_env_box.h/c: HAKMEM_WRAP_SHAPE ENV variable caching
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-13 17:08:24 +09:00
**狙い**: wrapper 入口の "稀なチェック"( LD mode、jemalloc、診断) を `noinline,cold` に押し出す
2025-12-13 16:46:18 +09:00
Phase 2 B4: Wrapper Layer Hot/Cold Split (malloc/free) - ADOPT (+1.47%)
- Implement malloc_cold() helper (noinline,cold) for LD mode, jemalloc, force_libc
- Add malloc() hot/cold dispatch with HAKMEM_WRAP_SHAPE=1 ENV gate
- Implement free_cold() helper (noinline,cold) for classification, ownership checks
- Add free() hot/cold dispatch: hot path returns early, cold path delegates to free_cold()
- Lock_depth symmetry verified on all return paths (malloc: ++/--, free: consistent)
A/B Testing Results (Mixed 10-run):
WRAP_SHAPE=0 (default): 34,750,578 ops/s
WRAP_SHAPE=1 (optimized): 35,262,596 ops/s
Average gain: +1.47% (Median: +1.39%)
✓ Decision: GO (exceeds +1.0% threshold)
Implementation Strategy:
- Separate frequently-executed code from rare paths (LD, jemalloc, diagnostics)
- Keep hot path instruction count minimal (returns early on success)
- L1 I-cache pressure reduction via noinline,cold attributes
- Default OFF (HAKMEM_WRAP_SHAPE=0) maintains backward compatibility
Files:
- core/box/hak_wrappers.inc.h: malloc_cold(), free_cold(), hot/cold dispatches
- core/box/wrapper_env_box.h/c: HAKMEM_WRAP_SHAPE ENV variable caching
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-13 17:08:24 +09:00
### 実装完了 ✅
2025-12-13 16:46:18 +09:00
Phase 2 B4: Wrapper Layer Hot/Cold Split (malloc/free) - ADOPT (+1.47%)
- Implement malloc_cold() helper (noinline,cold) for LD mode, jemalloc, force_libc
- Add malloc() hot/cold dispatch with HAKMEM_WRAP_SHAPE=1 ENV gate
- Implement free_cold() helper (noinline,cold) for classification, ownership checks
- Add free() hot/cold dispatch: hot path returns early, cold path delegates to free_cold()
- Lock_depth symmetry verified on all return paths (malloc: ++/--, free: consistent)
A/B Testing Results (Mixed 10-run):
WRAP_SHAPE=0 (default): 34,750,578 ops/s
WRAP_SHAPE=1 (optimized): 35,262,596 ops/s
Average gain: +1.47% (Median: +1.39%)
✓ Decision: GO (exceeds +1.0% threshold)
Implementation Strategy:
- Separate frequently-executed code from rare paths (LD, jemalloc, diagnostics)
- Keep hot path instruction count minimal (returns early on success)
- L1 I-cache pressure reduction via noinline,cold attributes
- Default OFF (HAKMEM_WRAP_SHAPE=0) maintains backward compatibility
Files:
- core/box/hak_wrappers.inc.h: malloc_cold(), free_cold(), hot/cold dispatches
- core/box/wrapper_env_box.h/c: HAKMEM_WRAP_SHAPE ENV variable caching
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-13 17:08:24 +09:00
**✅ 完全実装**:
- ENV gate: `HAKMEM_WRAP_SHAPE=0/1` ( wrapper_env_box.h/c)
- malloc_cold(): noinline,cold ヘルパー実装済み( lines 93-142)
- malloc hot/cold 分割: 実装済み( lines 169-200 で ENV gate チェック)
- free_cold(): noinline,cold ヘルパー実装済み( lines 321-520)
- **free hot/cold 分割**: 実装済み( lines 550-574 で wrap_shape dispatch)
### A/B テスト結果 ✅ GO
2025-12-13 16:46:18 +09:00
Phase 2 B4: Wrapper Layer Hot/Cold Split (malloc/free) - ADOPT (+1.47%)
- Implement malloc_cold() helper (noinline,cold) for LD mode, jemalloc, force_libc
- Add malloc() hot/cold dispatch with HAKMEM_WRAP_SHAPE=1 ENV gate
- Implement free_cold() helper (noinline,cold) for classification, ownership checks
- Add free() hot/cold dispatch: hot path returns early, cold path delegates to free_cold()
- Lock_depth symmetry verified on all return paths (malloc: ++/--, free: consistent)
A/B Testing Results (Mixed 10-run):
WRAP_SHAPE=0 (default): 34,750,578 ops/s
WRAP_SHAPE=1 (optimized): 35,262,596 ops/s
Average gain: +1.47% (Median: +1.39%)
✓ Decision: GO (exceeds +1.0% threshold)
Implementation Strategy:
- Separate frequently-executed code from rare paths (LD, jemalloc, diagnostics)
- Keep hot path instruction count minimal (returns early on success)
- L1 I-cache pressure reduction via noinline,cold attributes
- Default OFF (HAKMEM_WRAP_SHAPE=0) maintains backward compatibility
Files:
- core/box/hak_wrappers.inc.h: malloc_cold(), free_cold(), hot/cold dispatches
- core/box/wrapper_env_box.h/c: HAKMEM_WRAP_SHAPE ENV variable caching
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-13 17:08:24 +09:00
**Mixed Benchmark (10-run)**:
- WRAP_SHAPE=0 (default): 34,750,578 ops/s
- WRAP_SHAPE=1 (optimized): 35,262,596 ops/s
- **Average gain: +1.47%** ✓ (Median: +1.39%)
- **Decision: GO** ✓ (exceeds +1.0% threshold)
2025-12-13 16:46:18 +09:00
Phase 2 B4: Wrapper Layer Hot/Cold Split (malloc/free) - ADOPT (+1.47%)
- Implement malloc_cold() helper (noinline,cold) for LD mode, jemalloc, force_libc
- Add malloc() hot/cold dispatch with HAKMEM_WRAP_SHAPE=1 ENV gate
- Implement free_cold() helper (noinline,cold) for classification, ownership checks
- Add free() hot/cold dispatch: hot path returns early, cold path delegates to free_cold()
- Lock_depth symmetry verified on all return paths (malloc: ++/--, free: consistent)
A/B Testing Results (Mixed 10-run):
WRAP_SHAPE=0 (default): 34,750,578 ops/s
WRAP_SHAPE=1 (optimized): 35,262,596 ops/s
Average gain: +1.47% (Median: +1.39%)
✓ Decision: GO (exceeds +1.0% threshold)
Implementation Strategy:
- Separate frequently-executed code from rare paths (LD, jemalloc, diagnostics)
- Keep hot path instruction count minimal (returns early on success)
- L1 I-cache pressure reduction via noinline,cold attributes
- Default OFF (HAKMEM_WRAP_SHAPE=0) maintains backward compatibility
Files:
- core/box/hak_wrappers.inc.h: malloc_cold(), free_cold(), hot/cold dispatches
- core/box/wrapper_env_box.h/c: HAKMEM_WRAP_SHAPE ENV variable caching
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-13 17:08:24 +09:00
**Sanity Check 結果**:
- WRAP_SHAPE=0 (default): 34,366,782 ops/s (3-run)
- WRAP_SHAPE=1 (optimized): 34,999,056 ops/s (3-run)
- **Delta: +1.84%** ✅( malloc + free 完全実装)
2025-12-13 16:46:18 +09:00
Phase 2 B4: Wrapper Layer Hot/Cold Split (malloc/free) - ADOPT (+1.47%)
- Implement malloc_cold() helper (noinline,cold) for LD mode, jemalloc, force_libc
- Add malloc() hot/cold dispatch with HAKMEM_WRAP_SHAPE=1 ENV gate
- Implement free_cold() helper (noinline,cold) for classification, ownership checks
- Add free() hot/cold dispatch: hot path returns early, cold path delegates to free_cold()
- Lock_depth symmetry verified on all return paths (malloc: ++/--, free: consistent)
A/B Testing Results (Mixed 10-run):
WRAP_SHAPE=0 (default): 34,750,578 ops/s
WRAP_SHAPE=1 (optimized): 35,262,596 ops/s
Average gain: +1.47% (Median: +1.39%)
✓ Decision: GO (exceeds +1.0% threshold)
Implementation Strategy:
- Separate frequently-executed code from rare paths (LD, jemalloc, diagnostics)
- Keep hot path instruction count minimal (returns early on success)
- L1 I-cache pressure reduction via noinline,cold attributes
- Default OFF (HAKMEM_WRAP_SHAPE=0) maintains backward compatibility
Files:
- core/box/hak_wrappers.inc.h: malloc_cold(), free_cold(), hot/cold dispatches
- core/box/wrapper_env_box.h/c: HAKMEM_WRAP_SHAPE ENV variable caching
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-13 17:08:24 +09:00
**C6-heavy**: Deferred( pre-existing linker issue in bench_allocators_hakmem, not B4-related)
2025-12-13 16:46:18 +09:00
Phase 2 B4: Wrapper Layer Hot/Cold Split (malloc/free) - ADOPT (+1.47%)
- Implement malloc_cold() helper (noinline,cold) for LD mode, jemalloc, force_libc
- Add malloc() hot/cold dispatch with HAKMEM_WRAP_SHAPE=1 ENV gate
- Implement free_cold() helper (noinline,cold) for classification, ownership checks
- Add free() hot/cold dispatch: hot path returns early, cold path delegates to free_cold()
- Lock_depth symmetry verified on all return paths (malloc: ++/--, free: consistent)
A/B Testing Results (Mixed 10-run):
WRAP_SHAPE=0 (default): 34,750,578 ops/s
WRAP_SHAPE=1 (optimized): 35,262,596 ops/s
Average gain: +1.47% (Median: +1.39%)
✓ Decision: GO (exceeds +1.0% threshold)
Implementation Strategy:
- Separate frequently-executed code from rare paths (LD, jemalloc, diagnostics)
- Keep hot path instruction count minimal (returns early on success)
- L1 I-cache pressure reduction via noinline,cold attributes
- Default OFF (HAKMEM_WRAP_SHAPE=0) maintains backward compatibility
Files:
- core/box/hak_wrappers.inc.h: malloc_cold(), free_cold(), hot/cold dispatches
- core/box/wrapper_env_box.h/c: HAKMEM_WRAP_SHAPE ENV variable caching
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-13 17:08:24 +09:00
**Decision**: ✅ **ADOPT as default** (Mixed +1.47% >= +1.0% threshold)
2025-12-13 17:32:34 +09:00
- ✅ Done: `MIXED_TINYV3_C7_SAFE` プリセットで `HAKMEM_WRAP_SHAPE=1` を default 化( bench_profile)
2025-12-13 16:46:18 +09:00
### Phase 1: Quick Wins( 完了)
- ✅ **A1( FREE 勝ち箱の本線昇格)** : `MIXED_TINYV3_C7_SAFE` で `HAKMEM_FREE_TINY_FAST_HOTCOLD=1` を default 化( ADOPT)
- ✅ **A2( 観測税ゼロ化) ** : `HAKMEM_DEBUG_COUNTERS=0` のとき stats を compile-out( ADOPT)
- ❌ **A3( always_inline header) ** : Mixed -4% 回帰のため NO-GO → research box freeze( `docs/analysis/TINY_HEADER_WRITE_ALWAYS_INLINE_A3_DESIGN.md` )
### Phase 2: Structural Changes( 進行中)
- ❌ **B1( Header tax 削減 v2) ** : `HAKMEM_TINY_HEADER_MODE=LIGHT` は Mixed -2.54% → NO-GO / freeze( `docs/analysis/PHASE2_B1_HEADER_TAX_AB_TEST_RESULTS.md` )
- ✅ **B3( Routing 分岐形最適化)** : `HAKMEM_TINY_ALLOC_ROUTE_SHAPE=1` は Mixed +2.89% / C6-heavy +9.13% → ADOPT( プリセット default=1)
2025-12-13 17:32:34 +09:00
- ✅ **B4( WRAPPER-SHAPE-1) ** : `HAKMEM_WRAP_SHAPE=1` は Mixed +1.47% → ADOPT( `docs/analysis/PHASE2_B4_WRAPPER_SHAPE_1_DESIGN.md` )
2025-12-13 16:46:18 +09:00
- (保留)**B2**: C0– C3 専用 alloc fast path( 入口短絡は回帰リスク高。B4 の後に判断)
2025-12-13 05:37:54 +09:00
2025-12-13 18:46:11 +09:00
### Phase 3: Cache Locality - Target: +12-22% (57-68M ops/s)
2025-12-13 05:37:54 +09:00
2025-12-13 17:32:34 +09:00
**指示書**: `docs/analysis/PHASE3_CACHE_LOCALITY_NEXT_INSTRUCTIONS.md`
2025-12-13 18:46:11 +09:00
#### Phase 3 C3: Static Routing ✅ ADOPT
**設計メモ**: `docs/analysis/PHASE3_C3_STATIC_ROUTING_1_DESIGN.md`
**狙い**: policy_snapshot + learner evaluation をバイパスするために、初期化時に静的ルーティングテーブルを構築
**実装完了** ✅:
- `core/box/tiny_static_route_box.h` (API header + hot path functions)
- `core/box/tiny_static_route_box.c` (initialization + ENV gate + learner interlock)
- `core/front/malloc_tiny_fast.h` (lines 249-256) - 統合: `tiny_static_route_ready_fast()` で分岐
- `core/bench_profile.h` (line 77) - MIXED_TINYV3_C7_SAFE プリセットで `HAKMEM_TINY_STATIC_ROUTE=1` を default 化
**A/B テスト結果** ✅ GO:
- Mixed (10-run): 38,910,792 → 39,768,006 ops/s (**+2.20% average gain**, median +1.98%)
- Decision: ✅ **ADOPT** (exceeds +1.0% GO threshold)
- Rationale: policy_snapshot is light (L1 cache resident), but atomic+branch overhead makes +2.2% realistic
- Learner Interlock: Static route auto-disables when HAKMEM_SMALL_LEARNER_V7_ENABLED=1 (safe)
**Current Cumulative Gain** (Phase 2-3):
- B3 (Routing shape): +2.89%
- B4 (Wrapper split): +1.47%
- C3 (Static routing): +2.20%
- **Total: ~6.8%** (baseline 35.2M → ~39.8M ops/s)
2025-12-13 19:01:57 +09:00
#### Phase 3 C1: TLS Cache Prefetch 🔬 NEUTRAL / FREEZE
**設計メモ**: `docs/analysis/PHASE3_C1_TLS_PREFETCH_1_DESIGN.md`
**狙い**: malloc ホットパス LEGACY 入口で `g_unified_cache[class_idx]` を L1 prefetch( 数十クロック早期)
**実装完了** ✅:
- `core/front/malloc_tiny_fast.h` (lines 264-267, 331-334)
- env_cfg->alloc_route_shape=1 の fast path( 線264-267)
- env_cfg->alloc_route_shape=0 の fallback path( 線331-334)
- ENV gate: `HAKMEM_TINY_PREFETCH=0/1` ( default 0)
**A/B テスト結果** 🔬 NEUTRAL:
- Mixed (10-run): 39,335,109 → 39,203,334 ops/s (**-0.34% average**, median ** +1.28%**)
- Average gain: -0.34%( わずかな回帰、±1.0% 範囲内)
- Median gain: +1.28%(閾値超え)
- **Decision: NEUTRAL** (研究箱維持、デフォルト OFF)
- 理由: Average で -0.34% なので、prefetch 効果が噪音範囲
- Prefetch は "当たるかどうか" が不確定( TLS access timing dependent)
- ホットパス後( tiny_hot_alloc_fast 直前)での実行では効果限定的
**技術考察**:
- prefetch が効果を発揮するには、L1 miss が発生する必要がある
- TLS キャッシュは unified_cache_pop() で素早くアクセス( head/tail インデックス)
- 実際のメモリ待ちは slots[] 配列へのアクセス時( prefetch より後)
- 改善案: prefetch をもっと早期( route_kind 決定前)に移動するか、形状を変更
2025-12-13 05:37:54 +09:00
2025-12-13 19:20:27 +09:00
#### Phase 3 C2: Slab Metadata Cache Optimization 🔬 NEUTRAL / FREEZE
**設計メモ**: `docs/analysis/PHASE3_C2_METADATA_CACHE_1_DESIGN.md`
**狙い**: Free path で metadata access( policy snapshot, slab descriptor) の cache locality を改善
**3 Patches 実装完了** ✅:
1. **Policy Hot Cache** (Patch 1):
- TinyPolicyHot struct: route_kind[8] を TLS にキャッシュ( 9 bytes packed)
- policy_snapshot() 呼び出しを削減(~2 memory ops 節約)
- Safety: learner v7 active 時は自動的に disable
- Files: `core/box/tiny_metadata_cache_env_box.h` , `tiny_metadata_cache_hot_box.{h,c}`
- Integration: `core/front/malloc_tiny_fast.h` (line 256) route selection
2. **First Page Inline Cache** (Patch 2):
- TinyFirstPageCache struct: current slab page pointer を TLS per-class にキャッシュ
- superslab metadata lookup を回避( 1-2 memory ops)
- Fast-path check in `tiny_legacy_fallback_free_base()`
- Files: `core/front/tiny_first_page_cache.h` , `tiny_unified_cache.c`
- Integration: `core/box/tiny_legacy_fallback_box.h` (lines 27-36)
3. **Bounds Check Compile-out** (Patch 3):
- unified_cache capacity を MACRO constant 化( 2048 hardcode)
- modulo 演算を compile-time 最適化(`& MASK` )
- Macros: `TINY_UNIFIED_CACHE_CAPACITY_POW2=11` , `CAPACITY=2048` , `MASK=2047`
- File: `core/front/tiny_unified_cache.h` (lines 35-41)
**A/B テスト結果** 🔬 NEUTRAL:
- Mixed (10-run):
- Baseline (C2=0): 40,433,519 ops/s (avg), 40,722,094 ops/s (median)
- Optimized (C2=1): 40,252,836 ops/s (avg), 40,291,762 ops/s (median)
- **Average gain: -0.45%**, **Median gain: -1.06%**
- **Decision: NEUTRAL** (within ±1.0% threshold)
- Action: Keep as research box (ENV gate OFF by default)
**Rationale**:
- Policy hot cache: learner との interlock コストが高い(プローブ時に毎回 check)
- First page cache: 現在の free path は unified_cache push のみ( superslab lookup なし)
- 効果を発揮するには drain path への統合が必要(将来の最適化)
- Bounds check: すでにコンパイラが最適化済み( power-of-2 detection)
**Current Cumulative Gain** (Phase 2-3):
- B3 (Routing shape): +2.89%
- B4 (Wrapper split): +1.47%
- C3 (Static routing): +2.20%
- C2 (Metadata cache): -0.45%
2025-12-13 23:47:19 +09:00
- D1 (Free route cache): +2.19%( PROMOTED TO DEFAULT)
- **Total: ~8.3%** (Phase 2-3, C2=NEUTRAL included)
2025-12-13 19:20:27 +09:00
2025-12-13 21:44:52 +09:00
**Commit**: `f059c0ec8`
2025-12-13 19:20:27 +09:00
2025-12-13 23:47:19 +09:00
#### Phase 3 D1: Free Path Route Cache ✅ ADOPT - PROMOTED TO DEFAULT (+2.19%)
2025-12-13 21:44:52 +09:00
**設計メモ**: `docs/analysis/PHASE3_D1_FREE_ROUTE_CACHE_1_DESIGN.md`
**狙い**: Free path の `tiny_route_for_class()` コストを削減( 4.39% self + 24.78% children)
**実装完了** ✅:
- `core/box/tiny_free_route_cache_env_box.h` (ENV gate + lazy init)
- `core/front/malloc_tiny_fast.h` (lines 373-385, 780-791) - 2箇所で route cache integration
- `free_tiny_fast_cold()` path: direct `g_tiny_route_class[]` lookup
- `legacy_fallback` path: direct `g_tiny_route_class[]` lookup
- Fallback safety: `g_tiny_route_snapshot_done` check before cache use
2025-12-13 23:47:19 +09:00
- ENV gate: `HAKMEM_FREE_STATIC_ROUTE=0/1` (default OFF; `MIXED_TINYV3_C7_SAFE` では default ON)
2025-12-13 21:44:52 +09:00
2025-12-13 23:47:19 +09:00
**A/B テスト結果** ✅ ADOPT:
- Mixed (10-run, initial):
2025-12-13 21:44:52 +09:00
- Baseline (D1=0): 45,132,610 ops/s (avg), 45,756,040 ops/s (median)
- Optimized (D1=1): 45,610,062 ops/s (avg), 45,402,234 ops/s (median)
- **Average gain: +1.06%**, **Median gain: -0.77%**
2025-12-13 23:47:19 +09:00
- Mixed (20-run, validation / iter=20M, ws=400):
- Baseline( ROUTE=0) : Mean **46.30M** / Median **46.30M** / StdDev **0.10M**
- Optimized( ROUTE=1) : Mean **47.32M** / Median **47.39M** / StdDev **0.11M**
- Gain: Mean ** +2.19%** ✓ / Median ** +2.37%** ✓
- **Decision**: ✅ Promoted to `MIXED_TINYV3_C7_SAFE` preset default
- Rollback: `HAKMEM_FREE_STATIC_ROUTE=0`
2025-12-13 21:44:52 +09:00
**Rationale**:
- Eliminates `tiny_route_for_class()` call overhead in free path
- Uses existing `g_tiny_route_class[]` cache from Phase 3 C3 (Static Routing)
- Safe fallback: checks snapshot initialization before cache use
- Minimal code footprint: 2 integration points in malloc_tiny_fast.h
2025-12-13 22:04:28 +09:00
#### Phase 3 D2: Wrapper Env Cache ❌ NO-GO (-1.44%)
**設計メモ**: `docs/analysis/PHASE3_D2_WRAPPER_ENV_CACHE_1_DESIGN.md`
**狙い**: malloc/free wrapper 入口の `wrapper_env_cfg()` 呼び出しオーバーヘッドを削減
**実装完了** ✅:
- `core/box/wrapper_env_cache_env_box.h` (ENV gate: HAKMEM_WRAP_ENV_CACHE)
- `core/box/wrapper_env_cache_box.h` (TLS cache: wrapper_env_cfg_fast)
- `core/box/hak_wrappers.inc.h` (lines 174, 553) - malloc/free hot paths で wrapper_env_cfg_fast() 使用
- Strategy: Fast pointer cache (TLS caches const wrapper_env_cfg_t*)
- ENV gate: `HAKMEM_WRAP_ENV_CACHE=0/1` (default OFF)
**A/B テスト結果** ❌ NO-GO:
- Mixed (10-run, 20M iters):
- Baseline (D2=0): 46,516,538 ops/s (avg), 46,467,988 ops/s (median)
- Optimized (D2=1): 45,846,933 ops/s (avg), 45,978,185 ops/s (median)
- **Average gain: -1.44%**, **Median gain: -1.05%**
- **Decision: NO-GO** (regression below -1.0% threshold)
- Action: FREEZE as research box (default OFF, regression confirmed)
**Analysis**:
- Regression cause: TLS cache adds overhead (branch + TLS access cost)
- wrapper_env_cfg() is already minimal (pointer return after simple check in g_wrapper_env.inited)
- Adding TLS caching layer makes it worse, not better
- Branch prediction penalty for wrap_env_cache_enabled() check outweighs any savings
- Lesson: Not all caching helps - simple global access can be faster than TLS cache
**Current Cumulative Gain** (Phase 2-3):
- B3 (Routing shape): +2.89%
- B4 (Wrapper split): +1.47%
- C3 (Static routing): +2.20%
- D1 (Free route cache): +1.06% (opt-in)
- D2 (Wrapper env cache): -1.44% (NO-GO, frozen)
- **Total: ~7.2%** (excluding D2, D1 is opt-in ENV)
**Commit**: `19056282b`
2025-12-13 21:44:52 +09:00
#### Phase 3 C4: MIXED MID_V3 Routing Fix ✅ ADOPT
**要点**: `MIXED_TINYV3_C7_SAFE` では `HAKMEM_MID_V3_ENABLED=1` が大きく遅くなるため、**プリセットのデフォルトを OFF に変更**。
**変更**(プリセット):
- `core/bench_profile.h` : `MIXED_TINYV3_C7_SAFE` の `HAKMEM_MID_V3_ENABLED=0` / `HAKMEM_MID_V3_CLASSES=0x0`
- `docs/analysis/ENV_PROFILE_PRESETS.md` : Mixed 本線では MID v3 OFF と明記
**A/B( Mixed, ws=400, 20M iters, 10-run) **:
- Baseline( MID_V3=1) : **mean ~43.33M ops/s**
- Optimized( MID_V3=0) : **mean ~48.97M ops/s**
- **Delta: +13%** ✅( GO)
**理由(観測)**:
- C6 を MID_V3 にルーティングすると `tiny_alloc_route_cold()` →MID 側が “第2ホット” になり、Mixed では instruction / cache コストが支配的になりやすい
- Mixed 本線は “全クラス多発” なので、C6 は LEGACY(tiny unified cache) に残した方が速い
**ルール**:
- Mixed 本線: MID v3 OFF( デフォルト)
- C6-heavy: MID v3 ON( 従来通り)
2025-12-13 05:37:54 +09:00
### Architectural Insight (Long-term)
**Reality check**: hakmem 4-5 layer design (wrapper → gate → policy → route → handler) adds 50-100x instruction overhead vs mimalloc's 1-layer TLS buckets.
**Maximum realistic** without redesign: 65-70M ops/s (still ~1.9x gap)
**Future pivot**: Consider static-compiled routing + optional learner (not per-call policy)
2025-12-13 05:10:45 +09:00
2025-12-13 04:28:52 +09:00
---
## 前フェーズ: Phase POOL-MID-DN-BATCH 完了 ✅(研究箱として freeze 推奨)
2025-12-12 23:00:59 +09:00
---
### Status: Phase POOL-MID-DN-BATCH 完了 ✅ (2025-12-12)
**Summary**:
- **Goal**: Eliminate `mid_desc_lookup` from pool_free_v1 hot path by deferring inuse_dec
2025-12-13 04:28:52 +09:00
- **Performance**: 当初の計測では改善が見えたが、後続解析で「stats の global atomic」が大きな外乱要因だと判明
- Stats OFF + Hash map の再計測では **概ねニュートラル(-1〜-2%程度)**
2025-12-12 23:00:59 +09:00
- **Strategy**: TLS map batching (~32 pages/drain) + thread exit cleanup
2025-12-13 04:28:52 +09:00
- **Decision**: Default OFF (ENV gate) のまま freeze( opt-in 研究箱)
2025-12-12 23:00:59 +09:00
**Key Achievements**:
- Hot path: Zero lookups (O(1) TLS map update only)
- Cold path: Batched lookup + atomic subtract (32x reduction in lookup frequency)
- Thread-safe: pthread_key cleanup ensures pending ops drained on thread exit
2025-12-13 04:28:52 +09:00
- Stats: `HAKMEM_POOL_MID_INUSE_DEFERRED_STATS=1` のときのみ有効( default OFF)
2025-12-12 23:00:59 +09:00
**Deliverables**:
- `core/box/pool_mid_inuse_deferred_env_box.h` (ENV gate: HAKMEM_POOL_MID_INUSE_DEFERRED)
- `core/box/pool_mid_inuse_tls_pagemap_box.h` (32-entry TLS map)
- `core/box/pool_mid_inuse_deferred_box.h` (deferred API + drain logic)
- `core/box/pool_mid_inuse_deferred_stats_box.h` (counters + dump)
- `core/box/pool_free_v1_box.h` (integration: fast + slow paths)
- Benchmark: +2.8% median, within target range (+2-4%)
**ENV Control**:
```bash
HAKMEM_POOL_MID_INUSE_DEFERRED=0 # Default (immediate dec)
HAKMEM_POOL_MID_INUSE_DEFERRED=1 # Enable deferred batching
2025-12-13 04:28:52 +09:00
HAKMEM_POOL_MID_INUSE_MAP_KIND=linear|hash # Default: linear
HAKMEM_POOL_MID_INUSE_DEFERRED_STATS=0/1 # Default: 0 (keep OFF for perf)
2025-12-12 23:00:59 +09:00
```
2025-12-12 19:19:25 +09:00
2025-12-13 04:28:52 +09:00
**Health smoke**:
- OFF/ON の最小スモークは `scripts/verify_health_profiles.sh` で実行
2025-12-12 19:19:25 +09:00
---
### Status: Phase MID-V35-HOTPATH-OPT-1 FROZEN ✅
**Summary**:
- **Design**: Step 0-3( Geometry SSOT + Header prefill + Hot counts + C6 fastpath)
- **C6-heavy (257– 768B)**: ** +7.3%** improvement ✅ (8.75M → 9.39M ops/s, 5-run mean)
- **Mixed (16– 1024B)**: ** -0.2%** (誤差範囲, ±2%以内) ✓
- **Decision**: デフォルトOFF/FROZEN( 全3ノ ブ) 、C6-heavy推奨ON、Mixed現状維持
- **Key Finding**:
- Step 0: L1/L2 geometry mismatch 修正( C6 102→128 slots)
- Step 1-3: refill 境界移動 + 分岐削減 + constant 最適化で +7.3%
- Mixed では MID_V3(C6-only) 固定なため効果微小
**Deliverables**:
- `core/box/smallobject_mid_v35_geom_box.h` (新規)
- `core/box/mid_v35_hotpath_env_box.h` (新規)
- `core/smallobject_mid_v35.c` (Step 1-3 統合)
- `core/smallobject_cold_iface_mid_v3.c` (Step 0 + Step 1)
- `docs/analysis/ENV_PROFILE_PRESETS.md` (更新)
2025-12-12 18:40:08 +09:00
---
### Status: Phase POLICY-FAST-PATH-V2 FROZEN ✅
**Summary**:
- **Mixed (ws=400)**: ** -1.6%** regression ❌ (目標未達: 大WSで追加分岐コスト>skipメリット)
- **C6-heavy (ws=200)**: ** +5.4%** improvement ✅ (研究箱で有効)
- **Decision**: デフォルトOFF、FROZEN( C6-heavy/ws< 300 研究ベンチのみ推奨 )
- **Learning**: 大WSでは追加分岐が勝ち筋を食う( Mixed非推奨、C6-heavy専用)
---
### Status: Phase 3-GRADUATE FROZEN ✅
**TLS-UNIFY-3 Complete**:
- C6 intrusive LIFO: Working (intrusive=1 with array fallback)
- Mixed regression identified: policy overhead + TLS contention
- Decision: Research box only (default OFF in mainline)
- Documentation:
- `docs/analysis/PHASE_3_GRADUATE_FINAL_REPORT.md` ✅
- `docs/analysis/ENV_PROFILE_PRESETS.md` (frozen warning added) ✅
**Previous Phase TLS-UNIFY-3 Results**:
- Status( Phase TLS-UNIFY-3) :
- DESIGN ✅(`docs/analysis/ULTRA_C6_INTRUSIVE_FREELIST_DESIGN_V11B.md` )
- IMPL ✅( C6 intrusive LIFO を `TinyUltraTlsCtx` に導入)
- VERIFY ✅( ULTRA ルート上で intrusive 使用をカウンタで実証)
- GRADUATE-1 C6-heavy ✅
- Baseline (C6=MID v3.5): 55.3M ops/s
- ULTRA+array: 57.4M ops/s (+3.79%)
- ULTRA+intrusive: 54.5M ops/s (-1.44%, fallback=0)
- GRADUATE-1 Mixed ❌
- ULTRA+intrusive 約 -14% 回帰( Legacy fallback ≈24%)
- Root cause: 8 クラス競合による TLS キャッシュ奪い合いで ULTRA miss 増加
### Performance Baselines (Current HEAD - Phase 3-GRADUATE)
**Test Environment**:
- Date: 2025-12-12
- Build: Release (LTO enabled)
- Kernel: Linux 6.8.0-87-generic
**Mixed Workload (MIXED_TINYV3_C7_SAFE)**:
- Throughput: **51.5M ops/s** (1M iter, ws=400)
- IPC: **1.64** instructions/cycle
- L1 cache miss: **8.59%** (303,027 / 3,528,555 refs)
- Branch miss: **3.70%** (2,206,608 / 59,567,242 branches)
- Cycles: 151.7M, Instructions: 249.2M
**Top 3 Functions (perf record, self%)**:
1. `free` : 29.40% (malloc wrapper + gate)
2. `main` : 26.06% (benchmark driver)
3. `tiny_alloc_gate_fast` : 19.11% (front gate)
**C6-heavy Workload (C6_HEAVY_LEGACY_POOLV1)**:
- Throughput: **52.7M ops/s** (1M iter, ws=200)
- IPC: **1.67** instructions/cycle
- L1 cache miss: **7.46%** (257,765 / 3,455,282 refs)
- Branch miss: **3.77%** (2,196,159 / 58,209,051 branches)
- Cycles: 151.1M, Instructions: 253.1M
**Top 3 Functions (perf record, self%)**:
1. `free` : 31.44%
2. `tiny_alloc_gate_fast` : 25.88%
3. `main` : 18.41%
### Analysis: Bottleneck Identification
**Key Observations**:
1. **Mixed vs C6-heavy Performance Delta** : Minimal (~2.3% difference)
- Mixed (51.5M ops/s) vs C6-heavy (52.7M ops/s)
- Both workloads are performing similarly, indicating hot path is well-optimized
2. **Free Path Dominance** : `free` accounts for 29-31% of cycles
- Suggests free path still has optimization potential
- C6-heavy shows slightly higher free% (31.44% vs 29.40%)
3. **Alloc Path Efficiency** : `tiny_alloc_gate_fast` is 19-26% of cycles
- Higher in C6-heavy (25.88%) due to MID v3/v3.5 usage
- Lower in Mixed (19.11%) suggests LEGACY path is efficient
4. **Cache & Branch Efficiency** : Both workloads show good metrics
- Cache miss rates: 7-9% (acceptable for mixed-size workloads)
- Branch miss rates: ~3.7% (good prediction)
- No obvious cache/branch bottleneck
5. **IPC Analysis** : 1.64-1.67 instructions/cycle
- Good for memory-bound allocator workloads
- Suggests memory bandwidth, not compute, is the limiter
### Next Phase Decision
**Recommendation**: **Phase POLICY-FAST-PATH-V2** (Policy Optimization)
**Rationale**:
1. **Free path is the bottleneck** (29-31% of cycles)
- Current policy snapshot mechanism may have overhead
- Multi-class routing adds branch complexity
2. **MID/POOL v3 paths are efficient** (only 25.88% in C6-heavy)
- MID v3/v3.5 is well-optimized after v11a-5
- Further segment/retire optimization has limited upside (~5-10% potential)
3. **High-ROI target** : Policy fast path specialization
- Eliminate policy snapshot in hot paths (C7 ULTRA already has this)
- Optimize class determination with specialized fast paths
- Reduce branch mispredictions in multi-class scenarios
**Alternative Options** (lower priority):
- **Phase MID-POOL-V3-COLD-OPTIMIZE**: Cold path (segment creation, retire logic)
- Lower ROI: Cold path not showing up in top functions
- Estimated gain: 2-5%
- **Phase LEARNER-V2-TUNING**: Learner threshold optimization
- Very low ROI: Learner not active in current baselines
- Estimated gain: < 1 %
### Boundary & Rollback Plan
**Phase POLICY-FAST-PATH-V2 Scope**:
1. **Alloc Fast Path Specialization** :
- Create per-class specialized alloc gates (no policy snapshot)
- Use static routing for C0-C7 (determined at compile/init time)
- Keep policy snapshot only for dynamic routing (if enabled)
2. **Free Fast Path Optimization** :
- Reduce classify overhead in `free_tiny_fast()`
- Optimize pointer classification with LUT expansion
- Consider C6 early-exit (similar to C7 in v11b-1)
3. **ENV-based Rollback** :
- Add `HAKMEM_POLICY_FAST_PATH_V2=1` ENV gate
- Default: OFF (use existing policy snapshot mechanism)
- A/B testing: Compare v2 fast path vs current baseline
**Rollback Mechanism**:
- ENV gate `HAKMEM_POLICY_FAST_PATH_V2=0` reverts to current behavior
- No ABI changes, pure performance optimization
- Sanity benchmarks must pass before enabling by default
**Success Criteria**:
- Mixed workload: +5-10% improvement (target: 54-57M ops/s)
- C6-heavy workload: +3-5% improvement (target: 54-55M ops/s)
- No SEGV/assert failures
- Cache/branch metrics remain stable or improve
### References
- `docs/analysis/PHASE_3_GRADUATE_FINAL_REPORT.md` (TLS-UNIFY-3 closure)
- `docs/analysis/ENV_PROFILE_PRESETS.md` (C6 ULTRA frozen warning)
- `docs/analysis/ULTRA_C6_INTRUSIVE_FREELIST_DESIGN_V11B.md` (Phase TLS-UNIFY-3 design)
2025-12-12 16:26:42 +09:00
---
## Phase TLS-UNIFY-2a: C4-C6 TLS統合 - COMPLETED ✅
**変更**: C4-C6 ULTRA の TLS を `TinyUltraTlsCtx` 1 struct に統合。配列マガジン方式維持、C7 は別箱のまま。
**A/B テスト結果**:
| Workload | v11b-1 (Phase 1) | TLS-UNIFY-2a | 差分 |
|----------|------------------|--------------|------|
| Mixed 16-1024B | 8.0-8.8 Mop/s | 8.5-9.0 Mop/s | +0~5% |
| MID 257-768B | 8.5-9.0 Mop/s | 8.1-9.0 Mop/s | ±0% |
**結果**: C4-C6 ULTRA の TLS は TinyUltraTlsCtx 1箱に収束。性能同等以上、SEGV/assert なし ✅
---
## Phase v11b-1: Free Path Optimization - COMPLETED ✅
**変更**: `free_tiny_fast()` のシリアルULTRAチェック (C7→C6→C5→C4) を単一switch構造に統合。C7 early-exit追加。
**結果 (vs v11a-5)**:
| Workload | v11a-5 | v11b-1 | 改善 |
|----------|--------|--------|------|
| Mixed 16-1024B | 45.4M | 50.7M | ** +11.7%** |
| C6-heavy | 49.1M | 52.0M | ** +5.9%** |
| C6-heavy + MID v3.5 | 53.1M | 53.6M | +0.9% |
---
## 本線プロファイル決定
| Workload | MID v3.5 | 理由 |
|----------|----------|------|
| **Mixed 16-1024B** | OFF | LEGACYが最速 (45.4M ops/s) |
| **C6-heavy (257-512B)** | ON (C6-only) | +8%改善 (53.1M ops/s) |
ENV設定:
- `MIXED_TINYV3_C7_SAFE` : `HAKMEM_MID_V35_ENABLED=0`
- `C6_HEAVY_LEGACY_POOLV1` : `HAKMEM_MID_V35_ENABLED=1 HAKMEM_MID_V35_CLASSES=0x40`
---
# Phase v11a-5: Hot Path Optimization - COMPLETED
## Status: ✅ COMPLETE - 大幅な性能改善達成
### 変更内容
1. **Hot path簡素化** : `malloc_tiny_fast()` を単一switch構造に統合
2. **C7 ULTRA early-exit** : Policy snapshot前にC7 ULTRAをearly-exit( 最大ホットパス最適化)
3. **ENV checks移動** : すべてのENVチェックをPolicy initに集約
### 結果サマリ (vs v11a-4)
| Workload | v11a-4 Baseline | v11a-5 Baseline | 改善 |
|----------|-----------------|-----------------|------|
| Mixed 16-1024B | 38.6M | 45.4M | ** +17.6%** |
| C6-heavy (257-512B) | 39.0M | 49.1M | ** +26%** |
| Workload | v11a-4 MID v3.5 | v11a-5 MID v3.5 | 改善 |
|----------|-----------------|-----------------|------|
| Mixed 16-1024B | 40.3M | 41.8M | +3.7% |
| C6-heavy (257-512B) | 40.2M | 53.1M | ** +32%** |
### v11a-5 内部比較
| Workload | Baseline | MID v3.5 ON | 差分 |
|----------|----------|-------------|------|
| Mixed 16-1024B | 45.4M | 41.8M | -8% (LEGACYが速い) |
| C6-heavy (257-512B) | 49.1M | 53.1M | ** +8.1%** |
### 結論
1. **Hot path最適化で大幅改善** : Baseline +17-26%、MID v3.5 ON +3-32%
2. **C7 early-exitが効果大** : Policy snapshot回避で約10M ops/s向上
3. **MID v3.5はC6-heavyで有効** : C6主体ワークロードで+8%改善
4. **Mixedワークロードではbaselineが最適** : LEGACYパスがシンプルで速い
### 技術詳細
- C7 ULTRA early-exit: `tiny_c7_ultra_enabled_env()` (static cached) で判定
- Policy snapshot: TLSキャッシュ + version check (version mismatch時のみ再初期化)
- Single switch: route_kind[class_idx] で分岐( ULTRA/MID_V35/V7/MID_V3/LEGACY)
---
2025-12-12 07:17:52 +09:00
# Phase v11a-4: MID v3.5 Mixed本線テスト - COMPLETED
2025-12-11 01:01:15 +09:00
2025-12-12 07:17:52 +09:00
## Status: ✅ COMPLETE - C6→MID v3.5 採用候補
2025-12-11 01:01:15 +09:00
2025-12-12 07:17:52 +09:00
### 結果サマリ
2025-12-12 06:09:12 +09:00
2025-12-12 07:17:52 +09:00
| Workload | v3.5 OFF | v3.5 ON | 改善 |
|----------|----------|---------|------|
| C6-heavy (257-512B) | 34.0M | 35.8M | ** +5.1%** |
| Mixed 16-1024B | 38.6M | 40.3M | ** +4.4%** |
Phase SO-BACKEND-OPT-1: v3 backend 分解&Tiny/ULTRA 完成世代宣言
=== 実装内容 ===
1. v3 backend 詳細計測
- ENV: HAKMEM_SO_V3_STATS で alloc/free パス内訳計測
- 追加 stats: alloc_current_hit, alloc_partial_hit, free_current, free_partial, free_retire
- so_alloc_fast / so_free_fast に埋め込み
- デストラクタで [ALLOC_DETAIL] / [FREE_DETAIL] 出力
2. v3 backend ボトルネック分析完了
- C7-only: alloc_current_hit=99.99%, alloc_refill=0.9%, free_retire=0.1%, page_of_fail=0
- Mixed: alloc_current_hit=100%, alloc_refill=0.85%, free_retire=0.07%, page_of_fail=0
- 結論: v3 ロジック部分(ページ選択・retire)は完全最適化済み
- 残り 5% overhead は内部コスト(header write, memcpy, 分岐)
3. Tiny/ULTRA 層「完成世代」宣言
- 総括ドキュメント作成: docs/analysis/PERF_EXEC_SUMMARY_ULTRA_PHASE_20251211.md
- CURRENT_TASK.md に Phase ULTRA 総括セクション追加
- AGENTS.md に Tiny/ULTRA 完成世代宣言追加
- 最終成果: Mixed 16–1024B = 43.9M ops/s (baseline 30.6M → +43.5%)
=== ボトルネック地図 ===
| 層 | 関数 | overhead |
|-----|------|----------|
| Front | malloc/free dispatcher | ~40–45% |
| ULTRA | C4–C7 alloc/free/refill | ~12% |
| v3 backend | so_alloc/so_free | ~5% |
| mid/pool | hak_super_lookup | 3–5% |
=== フェーズ履歴(Phase ULTRA cycle) ===
- Phase PERF-ULTRA-FREE-OPT-1: C4–C7 ULTRA統合 → +9.3%
- Phase REFACTOR: Code quality (60行削減)
- Phase PERF-ULTRA-REFILL-OPT-1a/1b: C7 ULTRA refill最適化 → +11.1%
- Phase SO-BACKEND-OPT-1: v3 backend分解 → 設計限界確認
=== 次フェーズ(独立ライン) ===
1. Phase SO-BACKEND-OPT-2: v3 header write削減 (1-2%)
2. Headerless/v6系: out-of-band header (1-2%)
3. mid/pool v3新設計: C6-heavy 10M → 20–25M
本フェーズでTiny/ULTRA層は「完成世代」として基盤固定。
今後の大きい変更はHeaderless/mid系の独立ラインで検討。
🤖 Generated with Claude Code
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-11 22:45:14 +09:00
2025-12-12 07:17:52 +09:00
### 結論
Phase SO-BACKEND-OPT-1: v3 backend 分解&Tiny/ULTRA 完成世代宣言
=== 実装内容 ===
1. v3 backend 詳細計測
- ENV: HAKMEM_SO_V3_STATS で alloc/free パス内訳計測
- 追加 stats: alloc_current_hit, alloc_partial_hit, free_current, free_partial, free_retire
- so_alloc_fast / so_free_fast に埋め込み
- デストラクタで [ALLOC_DETAIL] / [FREE_DETAIL] 出力
2. v3 backend ボトルネック分析完了
- C7-only: alloc_current_hit=99.99%, alloc_refill=0.9%, free_retire=0.1%, page_of_fail=0
- Mixed: alloc_current_hit=100%, alloc_refill=0.85%, free_retire=0.07%, page_of_fail=0
- 結論: v3 ロジック部分(ページ選択・retire)は完全最適化済み
- 残り 5% overhead は内部コスト(header write, memcpy, 分岐)
3. Tiny/ULTRA 層「完成世代」宣言
- 総括ドキュメント作成: docs/analysis/PERF_EXEC_SUMMARY_ULTRA_PHASE_20251211.md
- CURRENT_TASK.md に Phase ULTRA 総括セクション追加
- AGENTS.md に Tiny/ULTRA 完成世代宣言追加
- 最終成果: Mixed 16–1024B = 43.9M ops/s (baseline 30.6M → +43.5%)
=== ボトルネック地図 ===
| 層 | 関数 | overhead |
|-----|------|----------|
| Front | malloc/free dispatcher | ~40–45% |
| ULTRA | C4–C7 alloc/free/refill | ~12% |
| v3 backend | so_alloc/so_free | ~5% |
| mid/pool | hak_super_lookup | 3–5% |
=== フェーズ履歴(Phase ULTRA cycle) ===
- Phase PERF-ULTRA-FREE-OPT-1: C4–C7 ULTRA統合 → +9.3%
- Phase REFACTOR: Code quality (60行削減)
- Phase PERF-ULTRA-REFILL-OPT-1a/1b: C7 ULTRA refill最適化 → +11.1%
- Phase SO-BACKEND-OPT-1: v3 backend分解 → 設計限界確認
=== 次フェーズ(独立ライン) ===
1. Phase SO-BACKEND-OPT-2: v3 header write削減 (1-2%)
2. Headerless/v6系: out-of-band header (1-2%)
3. mid/pool v3新設計: C6-heavy 10M → 20–25M
本フェーズでTiny/ULTRA層は「完成世代」として基盤固定。
今後の大きい変更はHeaderless/mid系の独立ラインで検討。
🤖 Generated with Claude Code
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-11 22:45:14 +09:00
2025-12-12 07:17:52 +09:00
**Mixed本線で C6→MID v3.5 は採用候補**。+4%の改善があり、設計の一貫性(統一セグメント管理)も得られる。
Phase SO-BACKEND-OPT-1: v3 backend 分解&Tiny/ULTRA 完成世代宣言
=== 実装内容 ===
1. v3 backend 詳細計測
- ENV: HAKMEM_SO_V3_STATS で alloc/free パス内訳計測
- 追加 stats: alloc_current_hit, alloc_partial_hit, free_current, free_partial, free_retire
- so_alloc_fast / so_free_fast に埋め込み
- デストラクタで [ALLOC_DETAIL] / [FREE_DETAIL] 出力
2. v3 backend ボトルネック分析完了
- C7-only: alloc_current_hit=99.99%, alloc_refill=0.9%, free_retire=0.1%, page_of_fail=0
- Mixed: alloc_current_hit=100%, alloc_refill=0.85%, free_retire=0.07%, page_of_fail=0
- 結論: v3 ロジック部分(ページ選択・retire)は完全最適化済み
- 残り 5% overhead は内部コスト(header write, memcpy, 分岐)
3. Tiny/ULTRA 層「完成世代」宣言
- 総括ドキュメント作成: docs/analysis/PERF_EXEC_SUMMARY_ULTRA_PHASE_20251211.md
- CURRENT_TASK.md に Phase ULTRA 総括セクション追加
- AGENTS.md に Tiny/ULTRA 完成世代宣言追加
- 最終成果: Mixed 16–1024B = 43.9M ops/s (baseline 30.6M → +43.5%)
=== ボトルネック地図 ===
| 層 | 関数 | overhead |
|-----|------|----------|
| Front | malloc/free dispatcher | ~40–45% |
| ULTRA | C4–C7 alloc/free/refill | ~12% |
| v3 backend | so_alloc/so_free | ~5% |
| mid/pool | hak_super_lookup | 3–5% |
=== フェーズ履歴(Phase ULTRA cycle) ===
- Phase PERF-ULTRA-FREE-OPT-1: C4–C7 ULTRA統合 → +9.3%
- Phase REFACTOR: Code quality (60行削減)
- Phase PERF-ULTRA-REFILL-OPT-1a/1b: C7 ULTRA refill最適化 → +11.1%
- Phase SO-BACKEND-OPT-1: v3 backend分解 → 設計限界確認
=== 次フェーズ(独立ライン) ===
1. Phase SO-BACKEND-OPT-2: v3 header write削減 (1-2%)
2. Headerless/v6系: out-of-band header (1-2%)
3. mid/pool v3新設計: C6-heavy 10M → 20–25M
本フェーズでTiny/ULTRA層は「完成世代」として基盤固定。
今後の大きい変更はHeaderless/mid系の独立ラインで検討。
🤖 Generated with Claude Code
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-11 22:45:14 +09:00
2025-12-12 07:17:52 +09:00
---
Phase SO-BACKEND-OPT-1: v3 backend 分解&Tiny/ULTRA 完成世代宣言
=== 実装内容 ===
1. v3 backend 詳細計測
- ENV: HAKMEM_SO_V3_STATS で alloc/free パス内訳計測
- 追加 stats: alloc_current_hit, alloc_partial_hit, free_current, free_partial, free_retire
- so_alloc_fast / so_free_fast に埋め込み
- デストラクタで [ALLOC_DETAIL] / [FREE_DETAIL] 出力
2. v3 backend ボトルネック分析完了
- C7-only: alloc_current_hit=99.99%, alloc_refill=0.9%, free_retire=0.1%, page_of_fail=0
- Mixed: alloc_current_hit=100%, alloc_refill=0.85%, free_retire=0.07%, page_of_fail=0
- 結論: v3 ロジック部分(ページ選択・retire)は完全最適化済み
- 残り 5% overhead は内部コスト(header write, memcpy, 分岐)
3. Tiny/ULTRA 層「完成世代」宣言
- 総括ドキュメント作成: docs/analysis/PERF_EXEC_SUMMARY_ULTRA_PHASE_20251211.md
- CURRENT_TASK.md に Phase ULTRA 総括セクション追加
- AGENTS.md に Tiny/ULTRA 完成世代宣言追加
- 最終成果: Mixed 16–1024B = 43.9M ops/s (baseline 30.6M → +43.5%)
=== ボトルネック地図 ===
| 層 | 関数 | overhead |
|-----|------|----------|
| Front | malloc/free dispatcher | ~40–45% |
| ULTRA | C4–C7 alloc/free/refill | ~12% |
| v3 backend | so_alloc/so_free | ~5% |
| mid/pool | hak_super_lookup | 3–5% |
=== フェーズ履歴(Phase ULTRA cycle) ===
- Phase PERF-ULTRA-FREE-OPT-1: C4–C7 ULTRA統合 → +9.3%
- Phase REFACTOR: Code quality (60行削減)
- Phase PERF-ULTRA-REFILL-OPT-1a/1b: C7 ULTRA refill最適化 → +11.1%
- Phase SO-BACKEND-OPT-1: v3 backend分解 → 設計限界確認
=== 次フェーズ(独立ライン) ===
1. Phase SO-BACKEND-OPT-2: v3 header write削減 (1-2%)
2. Headerless/v6系: out-of-band header (1-2%)
3. mid/pool v3新設計: C6-heavy 10M → 20–25M
本フェーズでTiny/ULTRA層は「完成世代」として基盤固定。
今後の大きい変更はHeaderless/mid系の独立ラインで検討。
🤖 Generated with Claude Code
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2025-12-11 22:45:14 +09:00
2025-12-12 07:17:52 +09:00
# Phase v11a-3: MID v3.5 Activation - COMPLETED
2025-12-12 01:14:13 +09:00
2025-12-12 07:17:52 +09:00
## Status: ✅ COMPLETE
2025-12-12 06:52:14 +09:00
2025-12-12 07:17:52 +09:00
### Bug Fixes
1. **Policy infinite loop** : CAS で global version を 1 に初期化
2. **Malloc recursion** : segment creation で mmap 直叩きに変更
2025-12-12 06:52:14 +09:00
2025-12-12 07:17:52 +09:00
### Tasks Completed (6/6)
1. ✅ Add MID_V35 route kind to Policy Box
2. ✅ Implement MID v3.5 HotBox alloc/free
3. ✅ Wire MID v3.5 into Front Gate
4. ✅ Update Makefile and build
5. ✅ Run A/B benchmarks
6. ✅ Update documentation
2025-12-12 06:52:14 +09:00
---
# Phase v11a-2: MID v3.5 Implementation - COMPLETED
## Status: COMPLETE
All 5 tasks of Phase v11a-2 have been successfully implemented.
## Implementation Summary
### Task 1: SegmentBox_mid_v3 (L2 Physical Layer)
**File**: `core/smallobject_segment_mid_v3.c`
Implemented:
- SmallSegment_MID_v3 structure (2MiB segment, 64KiB pages, 32 pages total)
- Per-class free page stacks (LIFO)
- Page metadata management with SmallPageMeta
- RegionIdBox integration for fast pointer classification
- Geometry: Reuses ULTRA geometry (2MiB segments, 64KiB pages)
- Class capacity mapping: C5→170 slots, C6→102 slots, C7→64 slots
Functions:
- `small_segment_mid_v3_create()` : Allocate 2MiB via mmap, initialize metadata
- `small_segment_mid_v3_destroy()` : Cleanup and unregister from RegionIdBox
- `small_segment_mid_v3_take_page()` : Get page from free stack (LIFO)
- `small_segment_mid_v3_release_page()` : Return page to free stack
- Statistics and validation functions
### Task 2: ColdIface_mid_v3 (L2→L1 Boundary)
**Files**:
- `core/box/smallobject_cold_iface_mid_v3_box.h` (header)
- `core/smallobject_cold_iface_mid_v3.c` (implementation)
Implemented:
- `small_cold_mid_v3_refill_page()` : Get new page for allocation
- Lazy TLS segment allocation
- Free stack page retrieval
- Page metadata initialization
- Returns NULL when no pages available (for v11a-2)
- `small_cold_mid_v3_retire_page()` : Return page to free pool
- Calculate free hit ratio (basis points: 0-10000)
- Publish stats to StatsBox
- Reset page metadata
- Return to free stack
### Task 3: StatsBox_mid_v3 (L2→L3)
**File**: `core/smallobject_stats_mid_v3.c`
Implemented:
- Stats collection and history (circular buffer, 1000 events)
- `small_stats_mid_v3_publish()` : Record page retirement statistics
- Periodic aggregation (every 100 retires by default)
- Per-class metrics tracking
- Learner notification on eval intervals
- Timestamp tracking (ns resolution)
- Free hit ratio calculation and smoothing
### Task 4: Learner v2 Aggregation (L3)
**File**: `core/smallobject_learner_v2.c`
Implemented:
- Multi-class allocation tracking (C5-C7)
- Exponential moving average for retire ratios (90% history + 10% new)
- `small_learner_v2_record_page_stats()` : Ingest stats from StatsBox
- Per-class retire efficiency tracking
- C5 ratio calculation for routing decisions
- Global and per-class metrics
- Configuration: smoothing factor, evaluation interval, C5 threshold
Metrics tracked:
- Per-class allocations
- Retire count and ratios
- Free hit rate (global and per-class)
- Average page utilization
### Task 5: Integration & Sanity Benchmarks
**Makefile Updates**:
- Added 4 new object files to OBJS_BASE and BENCH_HAKMEM_OBJS_BASE:
- `core/smallobject_segment_mid_v3.o`
- `core/smallobject_cold_iface_mid_v3.o`
- `core/smallobject_stats_mid_v3.o`
- `core/smallobject_learner_v2.o`
**Build Results**:
- Clean compilation with only minor warnings (unused functions)
- All object files successfully linked
- Benchmark executable built successfully
**Sanity Benchmark Results**:
2025-12-12 00:23:54 +09:00
```bash
2025-12-12 06:52:14 +09:00
./bench_random_mixed_hakmem 100000 400 1
Throughput = 27323121 ops/s [iter=100000 ws=400] time=0.004s
RSS: max_kb=30208
2025-12-11 21:36:58 +09:00
```
2025-12-12 06:52:14 +09:00
Performance: **27.3M ops/s** (baseline maintained, no regression)
2025-12-11 21:36:58 +09:00
2025-12-12 06:52:14 +09:00
## Architecture
2025-12-11 21:36:58 +09:00
2025-12-12 06:52:14 +09:00
### Layer Structure
2025-12-11 22:16:27 +09:00
```
2025-12-12 06:52:14 +09:00
L3: Learner v2 (smallobject_learner_v2.c)
↑ (stats aggregation)
L2: StatsBox (smallobject_stats_mid_v3.c)
↑ (publish events)
L2: ColdIface (smallobject_cold_iface_mid_v3.c)
↑ (refill/retire)
L2: SegmentBox (smallobject_segment_mid_v3.c)
↑ (page management)
L1: [Future: Hot path integration]
2025-12-11 22:16:27 +09:00
```
2025-12-12 06:52:14 +09:00
### Data Flow
1. **Page Refill** : ColdIface → SegmentBox (take from free stack)
2. **Page Retire** : ColdIface → StatsBox (publish) → Learner (aggregate)
3. **Decision** : Learner calculates C5 ratio → routing decision (v7 vs MID_v3)
2025-12-12 03:13:13 +09:00
2025-12-12 06:52:14 +09:00
## Key Design Decisions
2025-12-12 03:13:13 +09:00
2025-12-12 06:52:14 +09:00
1. **No Hot Path Integration** : Phase v11a-2 focuses on infrastructure only
- Existing MID v3 routing unchanged
- New code is dormant (linked but not called)
- Ready for future activation
2025-12-12 03:13:13 +09:00
2025-12-12 06:52:14 +09:00
2. **ULTRA Geometry Reuse** : 2MiB segments, 64KiB pages
- Proven design from C7 ULTRA
- Efficient for C5-C7 range (257-1024B)
- Good balance between fragmentation and overhead
2025-12-12 03:13:13 +09:00
2025-12-12 06:52:14 +09:00
3. **Per-Class Free Stacks** : Independent page pools per class
- Reduces cross-class interference
- Simplifies page accounting
- Enables per-class statistics
2025-12-12 03:13:13 +09:00
2025-12-12 06:52:14 +09:00
4. **Exponential Smoothing** : 90% historical + 10% new
- Stable metrics despite workload variation
- React to trends without noise
- Standard industry practice
2025-12-12 03:13:13 +09:00
2025-12-12 06:52:14 +09:00
## File Summary
2025-12-12 03:13:13 +09:00
2025-12-12 06:52:14 +09:00
### New Files Created (6 total)
1. `core/smallobject_segment_mid_v3.c` (280 lines)
2. `core/box/smallobject_cold_iface_mid_v3_box.h` (30 lines)
3. `core/smallobject_cold_iface_mid_v3.c` (115 lines)
4. `core/smallobject_stats_mid_v3.c` (180 lines)
5. `core/smallobject_learner_v2.c` (270 lines)
2025-12-12 03:13:13 +09:00
2025-12-12 06:52:14 +09:00
### Existing Files Modified (4 total)
1. `core/box/smallobject_segment_mid_v3_box.h` (added function prototypes)
2. `core/box/smallobject_learner_v2_box.h` (added stats include, function prototype)
3. `Makefile` (added 4 new .o files to OBJS_BASE and TINY_BENCH_OBJS_BASE)
4. `CURRENT_TASK.md` (this file)
2025-12-12 03:13:13 +09:00
2025-12-12 06:52:14 +09:00
### Total Lines of Code: ~875 lines (C implementation)
2025-12-12 03:38:39 +09:00
2025-12-12 06:52:14 +09:00
## Next Steps (Future Phases)
2025-12-12 03:38:39 +09:00
2025-12-12 06:52:14 +09:00
1. **Phase v11a-3** : Hot path integration
- Route C5/C6/C7 through MID v3.5
- TLS context caching
- Fast alloc/free implementation
2025-12-12 03:38:39 +09:00
2025-12-12 06:52:14 +09:00
2. **Phase v11a-4** : Route switching
- Implement C5 ratio threshold logic
- Dynamic switching between MID_v3 and v7
- A/B testing framework
2025-12-12 03:38:39 +09:00
2025-12-12 06:52:14 +09:00
3. **Phase v11a-5** : Performance optimization
- Inline hot functions
- Prefetching
- Cache-line optimization
2025-12-12 03:38:39 +09:00
2025-12-12 06:52:14 +09:00
## Verification Checklist
2025-12-12 03:38:39 +09:00
2025-12-12 06:52:14 +09:00
- [x] All 5 tasks completed
- [x] Clean compilation (warnings only for unused functions)
- [x] Successful linking
- [x] Sanity benchmark passes (27.3M ops/s)
- [x] No performance regression
- [x] Code modular and well-documented
- [x] Headers properly structured
- [x] RegionIdBox integration works
- [x] Stats collection functional
- [x] Learner aggregation operational
2025-12-12 03:38:39 +09:00
2025-12-12 06:52:14 +09:00
## Notes
2025-12-12 03:38:39 +09:00
2025-12-12 06:52:14 +09:00
- **Not Yet Active**: This code is dormant - linked but not called by hot path
- **Zero Overhead**: No performance impact on existing MID v3 implementation
- **Ready for Integration**: All infrastructure in place for future hot path activation
- **Tested Build**: Successfully builds and runs with existing benchmarks
2025-12-12 03:50:58 +09:00
---
2025-12-12 06:52:14 +09:00
**Phase v11a-2 Status**: ✅ **COMPLETE**
**Date**: 2025-12-12
**Build Status**: ✅ **PASSING**
**Performance**: ✅ **NO REGRESSION** (27.3M ops/s baseline maintained)