commit 840cf4000eb3cdfc1cf13448b8bed1e68c230018 parent f8f4e3001e5e7b7283e99b8b0e2209b738c167f0 Author: Ryan Sepassi <rsepassi@gmail.com> Date: Tue, 16 Jun 2026 08:25:12 -0700 test.mk: wire test-opt-o1p-aa64 (O1-PATTERNS L3/L10 guard) Diffstat:
| M | mk/test.mk | | | 8 | +++++++- |
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/mk/test.mk b/mk/test.mk @@ -859,7 +859,7 @@ test-macho: lib $(TEST_RT_DEP) $(ROUNDTRIP_BIN_MACHO) $(LINK_EXE_RUNNER) $(JIT_R OPT_TEST_BIN = build/test/cg_ir_lower_test TINY_INLINE_TEST_BIN = build/test/tiny_inline_test -test-opt: bin $(OPT_TEST_BIN) test-opt-tiny-inline test-opt-inline test-opt-zero-arg test-opt-static-prune-aa64 test-opt-aa64-tail test-opt-x64-win-tail-sret test-opt-prologue-tier test-opt-whole-program-inline test-opt-lto-phase1 test-opt-redundant-copy-ext test-opt-redundant-frame-sub test-opt-o1-branch-cleanup test-opt-hot-slot-order test-opt-o1-remat test-opt-aa64-x29-bottom test-opt-o1-coalesce test-opt-o1-switch-imm test-opt-o1-inline-cap test-opt-rv64-far-slot test-opt-o1-cmp-imm test-opt-o1-stack-dse test-opt-o1-local-cse +test-opt: bin $(OPT_TEST_BIN) test-opt-tiny-inline test-opt-inline test-opt-zero-arg test-opt-static-prune-aa64 test-opt-aa64-tail test-opt-x64-win-tail-sret test-opt-prologue-tier test-opt-whole-program-inline test-opt-lto-phase1 test-opt-redundant-copy-ext test-opt-redundant-frame-sub test-opt-o1-branch-cleanup test-opt-hot-slot-order test-opt-o1-remat test-opt-aa64-x29-bottom test-opt-o1-coalesce test-opt-o1-switch-imm test-opt-o1-inline-cap test-opt-rv64-far-slot test-opt-o1-cmp-imm test-opt-o1-stack-dse test-opt-o1-local-cse test-opt-o1p-aa64 $(OPT_TEST_BIN) @@ -943,6 +943,12 @@ test-opt-o1-stack-dse: bin test-opt-o1-local-cse: bin @KIT=$(abspath $(BIN)) bash test/opt/o1_local_cse.sh +# Structural check (aa64): L3 widens AGG_SET zero-init to wide stores (no long +# strb run); L10 elides the frame on no-spill leaf functions (O1-PATTERNS L3/L10). +.PHONY: test-opt-o1p-aa64 +test-opt-o1p-aa64: bin + @KIT=$(abspath $(BIN)) bash test/opt/o1p_aa64.sh + test-opt-tiny-inline: bin $(TINY_INLINE_TEST_BIN) $(TINY_INLINE_TEST_BIN)