Major Features: - Debug counter infrastructure for Refill Stage tracking - Free Pipeline counters (ss_local, ss_remote, tls_sll) - Diagnostic counters for early return analysis - Unified larson.sh benchmark runner with profiles - Phase 6-3 regression analysis documentation Bug Fixes: - Fix SuperSlab disabled by default (HAKMEM_TINY_USE_SUPERSLAB) - Fix profile variable naming consistency - Add .gitignore patterns for large files Performance: - Phase 6-3: 4.79 M ops/s (has OOM risk) - With SuperSlab: 3.13 M ops/s (+19% improvement) This is a clean repository without large log files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
62 lines
2.0 KiB
C
62 lines
2.0 KiB
C
// hakmem_build_flags.h - Centralized compile-time feature switches
|
|
// Purpose: Define all build-time toggles in one place with safe defaults.
|
|
// Usage: Include from common public headers (e.g., hakmem.h / hakmem_tiny.h).
|
|
|
|
#ifndef HAKMEM_BUILD_FLAGS_H
|
|
#define HAKMEM_BUILD_FLAGS_H
|
|
|
|
// ------------------------------------------------------------
|
|
// Release/debug detection
|
|
// ------------------------------------------------------------
|
|
// HAKMEM_BUILD_RELEASE: 1 in release-like builds, 0 otherwise
|
|
#ifndef HAKMEM_BUILD_RELEASE
|
|
# if defined(NDEBUG)
|
|
# define HAKMEM_BUILD_RELEASE 1
|
|
# else
|
|
# define HAKMEM_BUILD_RELEASE 0
|
|
# endif
|
|
#endif
|
|
|
|
// ------------------------------------------------------------
|
|
// Instrumentation & counters (compile-time)
|
|
// ------------------------------------------------------------
|
|
// Enable lightweight path/debug counters (compiled out when 0)
|
|
#ifndef HAKMEM_DEBUG_COUNTERS
|
|
# define HAKMEM_DEBUG_COUNTERS 0
|
|
#endif
|
|
|
|
// Enable extended memory profiling (compiled out when 0)
|
|
#ifndef HAKMEM_DEBUG_MEMORY
|
|
# define HAKMEM_DEBUG_MEMORY 0
|
|
#endif
|
|
|
|
// Tiny refill optimization helpers (header-only)
|
|
#ifndef HAKMEM_TINY_REFILL_OPT
|
|
# define HAKMEM_TINY_REFILL_OPT 1
|
|
#endif
|
|
|
|
// Batch refill P0 (can be toggled for A/B)
|
|
#ifndef HAKMEM_TINY_P0_BATCH_REFILL
|
|
# define HAKMEM_TINY_P0_BATCH_REFILL 1
|
|
#endif
|
|
|
|
// Box refactor (Phase 6-1.7) — usually injected from build system
|
|
#ifndef HAKMEM_TINY_PHASE6_BOX_REFACTOR
|
|
# define HAKMEM_TINY_PHASE6_BOX_REFACTOR 1
|
|
#endif
|
|
|
|
// ------------------------------------------------------------
|
|
// Helper enum (for documentation / logging)
|
|
// ------------------------------------------------------------
|
|
typedef enum {
|
|
HAK_FLAG_BUILD_RELEASE = HAKMEM_BUILD_RELEASE,
|
|
HAK_FLAG_DEBUG_COUNTERS = HAKMEM_DEBUG_COUNTERS,
|
|
HAK_FLAG_DEBUG_MEMORY = HAKMEM_DEBUG_MEMORY,
|
|
HAK_FLAG_REFILL_OPT = HAKMEM_TINY_REFILL_OPT,
|
|
HAK_FLAG_P0_BATCH = HAKMEM_TINY_P0_BATCH_REFILL,
|
|
HAK_FLAG_BOX_REFACTOR = HAKMEM_TINY_PHASE6_BOX_REFACTOR,
|
|
} hak_build_flags_t;
|
|
|
|
#endif // HAKMEM_BUILD_FLAGS_H
|
|
|