Add SP@ IR op, replace SOURCE/DEPTH/PICK with Forth (Phase 7)

New IrOp::SpFetch pushes the current data-stack pointer value, enabling
Forth-level stack introspection. This unblocks:

- DEPTH: `: DEPTH 5440 SP@ - 2 RSHIFT ;` (DATA_STACK_TOP - sp) / 4
- PICK: `: PICK 1+ CELLS SP@ + @ ;` direct memory read
- SOURCE: `: SOURCE 64 24 @ ;` reads INPUT_BUFFER_BASE + SYSVAR_NUM_TIB
- FALIGNED, SFALIGNED, DFALIGNED: address alignment (shadowed in boot.fth)

DEPTH and PICK are now compiled to native WASM — faster than the previous
host-function dispatch through call_indirect + Rust closure + mutex.

Removed ~109 lines of Rust. All 426 tests pass.
This commit is contained in:
2026-04-07 15:53:05 +02:00
parent 42f25a4c13
commit 58db238731
4 changed files with 48 additions and 109 deletions
+30
View File
@@ -2,6 +2,17 @@
\ Loaded at startup after IR primitives are compiled.
\ Compiled WASM with direct calls outperforms host function dispatch.
\ ---------------------------------------------------------------
\ Foundation: stack introspection (needed by 2OVER et al.)
\ ---------------------------------------------------------------
\ DEPTH ( -- n ) number of items on the data stack
\ DATA_STACK_TOP = 5440, uses arithmetic right shift for / 4
: DEPTH 5440 SP@ - 2 RSHIFT ;
\ PICK ( xn..x0 n -- xn..x0 xn ) copy nth stack item
: PICK 1+ CELLS SP@ + @ ;
\ ---------------------------------------------------------------
\ Phase 1: Pure stack and memory operations
\ ---------------------------------------------------------------
@@ -246,3 +257,22 @@
0 ;
\ SEARCH stays as a host function (complex multi-line control flow).
\ ---------------------------------------------------------------
\ Phase 7: More easy replacements
\ ---------------------------------------------------------------
\ SOURCE ( -- c-addr u ) input buffer address and length
\ INPUT_BUFFER_BASE = 64, SYSVAR_NUM_TIB = 24
: SOURCE 64 24 @ ;
\ FALIGNED ( addr -- addr ) align to 8-byte float boundary
: FALIGNED 7 + -8 AND ;
\ SFALIGNED ( addr -- addr ) align to 4-byte single-float boundary
: SFALIGNED 3 + -4 AND ;
\ DFALIGNED ( addr -- addr ) align to 8-byte double-float boundary
: DFALIGNED 7 + -8 AND ;
\ .S keeps its Rust host function (complex stack introspection).