Working state before pushing to cyu remote

This commit is contained in:
Moe Charm (CI)
2025-12-19 03:45:01 +09:00
parent e4c5f05355
commit 2013514f7b
28 changed files with 1968 additions and 43 deletions

View File

@ -19,6 +19,7 @@
#include "box/tiny_inline_slots_fixed_mode_box.h" // tiny_inline_slots_fixed_mode_refresh_from_env (Phase 78-1)
#include "box/free_path_commit_once_fixed_box.h" // free_path_commit_once_refresh_from_env (Phase 85)
#include "box/free_path_legacy_mask_box.h" // free_path_legacy_mask_refresh_from_env (Phase 86)
#include "box/tiny_c6_inline_slots_ifl_env_box.h" // tiny_c6_inline_slots_ifl_refresh_from_env (Phase 91)
#endif
// env が未設定のときだけ既定値を入れる
@ -241,5 +242,7 @@ static inline void bench_apply_profile(void) {
free_path_commit_once_refresh_from_env();
// Phase 86: Optionally use legacy mask for early exit (no indirect calls, just bit test).
free_path_legacy_mask_refresh_from_env();
// Phase 91: C6 intrusive LIFO inline slots (per-class LIFO transformation).
tiny_c6_inline_slots_ifl_refresh_from_env();
#endif
}