tclrs 0.4.0

Tcl as a fusevm frontend: a parser and compiler to fusevm::Chunk, with no bespoke VM or JIT
Documentation
████████╗ ██████╗██╗     ██████╗ ███████╗
╚══██╔══╝██╔════╝██║     ██╔══██╗██╔════╝
   ██║   ██║     ██║     ██████╔╝███████╗
   ██║   ██║     ██║     ██╔══██╗╚════██║
   ██║   ╚██████╗███████╗██║  ██║███████║
   ╚═╝    ╚═════╝╚══════╝╚═╝  ╚═╝╚══════╝

Rust license status

[TCL, COMPILED TO BYTECODE — LOWERED ONCE, NOT RE-PARSED PER EVALUATION]

"tclsh interprets Tcl. tclrs compiles it to fusevm bytecode."

Tcl in Rust — a Tcl frontend that parses Tcl source and lowers it to fusevm bytecode, the shared execution engine behind zshrs, stryke, awkrs, vimlrs, elisprs, rubylang, pythonrs, phplang, node-js, rlang, go-rs, and the JVM frontends. No bespoke VM. No interpreter loop and no code generator in this crate — those belong to the VM.

The reference implementation is tclsh 9.0.4. It is the specification: behavior is ported from it, not reinvented, and the test suite compares against it directly rather than against expectations written by hand.


Table of Contents


[0x00] OVERVIEW

Tcl 9 evaluates through a bytecode engine wrapped around a dual-representation object model, re-deriving string representations as values cross command boundaries. tclrs takes a different path: it parses a script once — resolving every substitution the grammar permits at parse time — and lowers each command to fusevm bytecode, the same bytecode sixteen other language frontends emit.

  • Compiled, not re-parsed — a braced body is fully known at parse time, so if / while / for bodies and braced expr expressions compile once into bytecode instead of being re-parsed on every evaluation. Words carry a braced flag for exactly this decision.
  • fusevm-hosted — no local vm.rs / jit.rs, no bespoke object heap. Tcl strings, integers and floats map onto fusevm::Value directly; a value produced as a number stays a number in a VM slot and only acquires a string representation when something asks for one.
  • Native arithmetic — + - *, the comparisons, the bitwise and shift operators, and the short-circuiting && / || lower to native fusevm ops. Only the operators whose Tcl meaning differs from the VM's generic one — /, %, ** — take a frontend extension op, and only operands the VM cannot compute on natively (mostly strings) take the numeric hook.
  • One driver for everything — procedure calls, catch unwinding, coroutine switching and nested eval all go through a single driver that owns the interpreter's variables and installs every VM hook in one place.
  • Compiled ahead of time — tclrs --aot out script.tcl lowers a script through fusevm's closed-world compiler to a native object and links it into a standalone executable with no parser and no bytecode dispatch loop inside it.
  • JIT armed, and honest about it — every VM this crate builds enables fusevm's Cranelift tiers, and tclrs --tiers reports which of them a given script actually reaches. A hot loop inside a procedure reaches a compiled trace: 3,000,000 iterations of while {$i < $n} {incr i} in 6.6 ms against 243.7 ms interpreted. The same loop at a script's top level reaches nothing, because a top-level variable is a VM global. Both halves are measured, and both are named precisely: see JIT Compilation.
  • Differentially tested — every program in the suite is executed by both tclsh and tclrs and the output compared byte for byte. No expected output in this repository is written by hand.

[0x01] BUILD

A release tag publishes a prebuilt tclrs for macOS (arm64, x86_64) and Linux (x86_64, aarch64) and bumps the tap formula, so a binary install is one command:

brew tap MenkeTechnologies/menketech
brew install tclrs

From source:

git clone https://github.com/MenkeTechnologies/tclrs
cd tclrs
cargo build
cargo test

Requires a stable Rust toolchain, and a C compiler for --aot to link with. A script containing a rust { ... } block needs rustc at run time as well, since the block is compiled when the script is.

cargo build produces three artifacts: the tclrs binary, the tclrs rlib, and libtclrs.a — the staticlib an ahead-of-time object links against.

The differential tests invoke tclsh (or tclsh9.0 / tclsh8.6) from PATH and report a skip when none is installed, so the suite still runs on a machine without Tcl.


[0x02] THE BINARY

tclrs FILE ?arg ...?        run a script file
tclrs -c SCRIPT ?arg ...?   run SCRIPT
tclrs                       read from stdin; a REPL when stdin is a terminal
tclrs --version             print the version    (also -V)
tclrs --help                print the usage      (also -h)

Shell completion is completions/_tclrs — put that directory on fpath. The manual pages are man/man1/tclrs.1 and the all-in-one man/man1/tclrsall.1: man ./man/man1/tclrsall.1.

tclsh is the specification for what the binary prints and what it exits with.

Behavior What happens
A script file One script. The first failure ends it: the message goes to stderr, followed by (file "…" line N) when the failure was located while compiling, and the process exits 1.
Stdin, not a terminal A sequence of commands. Each is evaluated as it completes, a failure is reported on stderr and the next command still runs, and end of input exits 0 — which is why tclrs < script exits 0 where tclrs script exits 1.
Stdin, a terminal The same evaluation, driven by a line editor: prompt, history, completion, multi-line editing, and the value of each command echoed. See The REPL.
argv0, argc, argv Set before the script runs, as tclsh sets them.
Errors stderr only. No banner, no prompt outside a terminal, and no output the binary produces that the script did not ask for.

An unknown option is refused (tclrs: unknown option "--wat") rather than treated as a file name — the one place this binary deliberately differs from tclsh, which reads stdin for any argument starting with -.

The REPL

A terminal gets a reedline line editor. A pipe does not: tclrs < script is still the silent loop, byte for byte.

─( 14:52:07 )──< command 3 >──────────────────────{ tclrs 0.3.0 }─
tclrs❯ proc double {x} {
····❯   expr {$x * 2}
····❯ }
tclrs❯ double 21
42
Multi-line editing A command left open keeps the editor on the same buffer. What counts as open is the parser's own answer — the Validator is repl::incomplete and nothing else — so the editor and the evaluator cannot disagree about where a command ends. Text that is malformed rather than unfinished is evaluated, and its error reported, instead of hanging the prompt.
Completion Tab offers what the compiler would accept in that position: command names at the head of a command, an ensemble's subcommands after string / array / dict / info, this session's procedures, and the interpreter's variables after $. The vocabulary is assembled from the compiler's own tables (src/names.rs), and a test fails if a name is offered that the compiler does not know.
Procedures A procedure is compiled into the chunk of the script that defines it, so it would otherwise last exactly one line. The REPL keeps the text of each definition and prefixes the set to every later evaluation, which is what makes double answer on the line after it was written. Writing a definition again replaces the earlier one. Coroutines are not carried this way — replaying coroutine would run its body again.
History ~/.tclrs/history, 5,000 commands, shared across sessions.
Keys Emacs by default. TCLRS_REPL_MODE=vi, or mode = "vi" under [repl] in ~/.tclrs/config.toml, switches to modal editing; Tab and Shift-Tab drive the completion menu in either.
Leaving exit, exit N, quit, or Ctrl-D. Ctrl-C abandons the line being typed.

Options that do not run the script the ordinary way

tclrs --aot out script.tcl          # compile to a standalone native executable
tclrs --aot-object out.o script.tcl # emit the relocatable object only
tclrs --tiers script.tcl            # run it, then report which fusevm tiers took it
tclrs --dump-tokens script.tcl      # print the parser's lexical output
tclrs --dump-ast script.tcl         # print the parse tree
tclrs --disasm script.tcl           # print the compiled bytecode instead of running it
tclrs --lsp                         # speak the Language Server Protocol on stdio
tclrs --dap                         # speak the Debug Adapter Protocol on stdio

The two dumps are the parse made visible. Tcl has no lexer to print — a word's substitutions are decided while it is read — so --dump-tokens prints the parts of each word in the order they were read, under the shape of the word that decides whether they are substituted at all:

$ tclrs --dump-tokens -c 'puts "x is $x"'
line word  kind     value
   1    1  bare     puts
   1    1  · lit    puts
   1    2  quoted   x is $x
   1    2  · lit    x is
   1    2  · var    x

--dump-ast prints the same parse as the tree it is, with a command substitution nested inside the word that contains it.

Each of those wants a whole script before it does anything, so it reads a file, a -c argument, or all of stdin, and never opens a REPL. --lsp and --dap are the exception: stdio carries the protocol, so neither takes a script there — the language server is sent the document's text, and the debug adapter opens the file its launch request names.

The language server

tclrs --lsp speaks the Language Server Protocol on stdio. Point an editor's Tcl client at it — the binary needs no configuration and no workspace.

Capability Where the answer comes from
Diagnostics The parser's failure, then the compiler's, republished on every edit. A construct this frontend refuses is a diagnostic, so the editor reports what running the file would report rather than what full Tcl allows.
Completion Command names at the head of a command, an ensemble's subcommands after string / array / dict / info, and the document's own procedures. The list is the compiler's tables (src/names.rs).
Hover, signature help The synopsis — the wording of the command's own wrong # args message — and a one-line summary. An ensemble answers with its subcommand's synopsis.
Document symbols The proc commands the parser found.

What is under the cursor is decided by src/cursor.rs, the module the REPL's completer uses, so the editor and the prompt agree. tests/lsp_session.rs drives the real binary over the wire: handshake, unsolicited diagnostics, edits, and a shutdown that exits.

Inline Rust

A rust { ... } block compiles to a shared library and its exports become Tcl commands:

rust {
    pub extern "C" fn add(a: i64, b: i64) -> i64 { a + b }
}
puts [add 21 21]        ;# → 42

rust { is not a Tcl command, so the block never reaches the parser: the source is rewritten first into __rust_compile <base64> <line>, padded to keep the line count so a later error still points where it was written. The compiling, dlopening and marshalling belong to fusevm::ffi; the library is cached under ~/.cache/fusevm/ffi by the SHA-256 of the block's body (FUSEVM_FFI_DIR relocates it), so the second run of a script does not call rustc.

Registration happens while compiling, not while running. This frontend resolves dispatch at compile time — a name is a builtin, a procedure, a coroutine, or an error before the VM starts — so the block is compiled and registered as its command is lowered, which is what makes add a known name by the next line. A procedure of the same name still wins: dispatch asks the script's own definitions first.

Signatures are fusevm's marshalling set: up to four i64 arguments returning i64, up to three f64 returning f64, and *const c_char returning either i64 or *const c_char (c_char, CStr and CString are already in scope inside a block). Anything else is not exported, and the block is refused for having no exports.

The debugger

tclrs --dap speaks the Debug Adapter Protocol on stdio: breakpoints, stepping, stack frame, variables, and the program's output as output events.

Stopping is compiled in, not interpreted around. compiler::compile_debug emits an ext_wide::DBG_LINE marker before every command, and the marker's handler stops when a breakpoint matches, when the client is stepping, or when a pause was asked for. Three consequences worth knowing:

  • A debugged script runs the same bytecode a plain run does, plus the markers. There is no second lowering, and no interpreter written for the debugger.
  • An ordinary compilation carries no markers at all, so nothing is paid for a debugger that is not attached.
  • Markers go into procedure bodies too, which is what makes a breakpoint inside a procedure reachable and lets a step walk into one. A command substitution gets none — set out [double 21] is one step, not two.

The run happens on the adapter's own thread, and requests are served from inside the stop, so variables reads the paused VM rather than a snapshot of it. The cost is that an asynchronous pause lands at the next command rather than mid-command; stepIn and next both stop at the next command, and stepOut resumes to the next breakpoint.

Environment

TCLRS_JIT=off (or 0, or no) skips arming the JIT. It exists so the benchmark can measure the interpreter and the JIT-armed VM as separate rows of the same binary. TCLRS_REPL_MODE=vi picks the REPL's keymap. TCLRS_STATICLIB points an --aot link at a libtclrs.a somewhere other than the build's own.

fusevm's own knobs work unchanged: FUSEVM_JIT_BLOCK_THRESHOLD, FUSEVM_JIT_TRACE_THRESHOLD, FUSEVM_JIT_CACHE_DIR and FUSEVM_FFI_DIR.


[0x03] THE LIBRARY

tclrs::eval compiles and runs a script in a fresh interpreter, returning its value and everything it wrote to stdout:

let out = tclrs::eval("set x 5\nputs [expr {$x * 2}]").unwrap();
assert_eq!(out.output, "10\n");

tclrs::Interp is the same thing with the state kept between calls, which is what a REPL needs and what the eval command needs:

let mut interp = tclrs::Interp::capturing();
interp.set_global("argv", "a b c");
interp.eval("set total 0").unwrap();
interp.eval("foreach x {1 2 3} {set total [expr {$total + $x}]}").unwrap();
assert_eq!(interp.global("total").as_deref(), Some("6"));
Entry What it is for
Interp::new Scripts write to the process's stdout, through one buffered writer flushed at the end of each evaluation.
Interp::capturing Scripts' writes are collected for Interp::take_output.
Interp::set_global / Interp::global Host access to the interpreter's variables.
Interp::set_recursion_limit How deep eval may nest. The default is DEFAULT_RECURSION_LIMIT (1000), which needs RECOMMENDED_STACK (256 MiB) of thread stack; the binary spawns a thread that size. Nesting deeper is a script error, never a stack overflow.
parser::MAX_NESTING_DEPTH How deeply command substitutions and array indices may nest in the input, which is the parser's own recursion — 64_000, measured against the stack above. Deeper is a script error, for the same reason: an exhausted stack is a signal with nothing to report.
Interp::cache_stats (hits, misses) from the source-keyed chunk cache — one miss per compilation, so the same eval text in a loop is lowered once.
tclrs::eval_captured eval for a caller that wants both halves of a failing run: the error and whatever the script had already printed.
tclrs::parse The parsed Script without running it, for tooling that wants the word structure.
tclrs::aot compile_object, compile_executable, and run_native — the same codegen driven in-process.
tclrs::tiers report and inspect: which fusevm tiers a chunk reaches.
tclrs::dump tokens and ast: the two listings --dump-tokens and --dump-ast print.
tclrs::lsp run_stdio for the whole server, or diagnostics, completion, hover, signature_help and document_symbols one answer at a time, for a host that already owns the transport.
tclrs::dap run_stdio: the debug adapter, over stdio.
tclrs::cursor word_at and context_at: what a position in a line is inside, which is how the REPL and the language server agree about it.

[0x04] LANGUAGE SURFACE

Commands

Group Commands
Variables set, incr, unset, append, array variables (a(k)), global
Output puts, with -nonewline
Expressions expr
Control flow if / elseif / else, while, for, foreach, switch (-exact, -glob), break, continue
Procedures proc, return (with -code ok / -code error), apply
Errors catch, error
Coroutines coroutine, yield, yieldto, info coroutine
Introspection info — args, commands, complete, coroutine, default, exists, globals, hostname, library, nameofexecutable, patchlevel, procs, script, sharedlibextension, tclversion, vars
Run-time evaluation eval, uplevel
Lists list, llength, lindex, lappend, lrange, lreverse, linsert, lreplace, lsearch, lsort, join, split, concat
Associative data array — exists, get, names, set, size, unset; dict — create, exists, for, get, incr, keys, merge, remove, set, size, values
Regular expressions regexp, regsub — with -nocase, -all, -inline, -indices, -line, -lineanchor, -linestop, -expanded, -start and --; switch -regexp and lsearch -regexp take one too
Strings format, and the string ensemble — cat, compare, equal, first, last, index, insert, is, length, map, match, range, repeat, replace, reverse, tolower, totitle, toupper, trim, trimleft, trimright, wordend, wordstart

Command substitution works on any of them.

docs/reference.html is the same surface as a page, generated rather than written: cargo run --bin gen-docs renders every command, ensemble subcommand, operator, operand shape, string is class and format conversion as its own entry — an anchored heading, the signature the compiler reports, and a description — from the corpora in src/names.rs, each of which a test pins to the table it documents. Whether a name is implemented is not written down anywhere: the generator runs each ensemble subcommand and each format conversion and reads the answer. Running rather than compiling is what makes that honest, because a refusal here is lowered as code that raises when reached, so a compile-time probe finds every subcommand acceptable. A command the page lists exists; one it does not is invalid command name.

expr

The whole operator set of expr(n):

Group Operators
Arithmetic + - * / % **, unary + - — with Tcl's floored integer division and remainder, and integral ** for integral operands, a negative exponent included (2 ** -1 is 0; a zero base there is an error)
Comparison < > <= >= == != — numeric-preferring, falling back to string order
String comparison lt gt le ge eq ne — always string
Bitwise / shift & ^ | ~ << >>
Logical && || !, short-circuiting; the ternary ?:
Membership in ni — string equality against a list's elements, so 1 in {01} is false

Operands are literals, variables, nested commands ([…]), quoted and braced strings, and parenthesised subexpressions. Doubles print in Tcl's format: the shortest representation that reads back exactly, never looking like an integer, exponential outside the positional range. A literal, though, prints as the script wrote it — Tcl's first rule — so puts 3.0 is 3.0 and puts 007.0 is 007.0.

An expr result keeps the shape the VM computed — an integer, a double, a boolean — and Tcl's string form is applied at the point a string is asked for rather than to the result itself. That is invisible to a script (puts [expr {1.0 + 1}] is 2.0, puts [expr {1 < 2}] is 1) and it is what lets an arithmetic loop compile: an op that converted every result would be an extension op, and one of those in a loop is what fusevm's JIT and its ahead-of-time compiler both stop at.

The always-string comparisons compare the operands as written: expr {1.0 eq 1} is false, expr {010 eq 10} is false, and expr {1e3 eq 1000.0} is false, because a numeric literal carries the text the script gave it as well as its value. == on the same pairs is true — that is the difference the two families of operators exist for.

Where a value is used as a condition — if, while, for, the ternary, &&, || — it has to be a boolean, and Tcl's boolean is narrower than "not empty": a number in any radix, or one of true / false / yes / no / on / off in any case, abbreviated to any prefix that stays unambiguous. t, fals, y, n and of are booleans; o is not, because on and off both start with it. Anything else is expected boolean value but got "…", which is why if {"b"} {…} is an error rather than a taken branch. ! is the exception: it takes a number or a boolean word, and refuses the operand otherwise.

Lists

A Tcl list is a string, so every list command re-derives its elements from one. Both directions are ports of the reference implementation rather than reconstructions from the manual, because neither is what a reading of the manual would suggest.

Piece How
Parsing TclFindElement: whitespace separates elements, a leading brace or quote delimits one, and backslash sequences resolve everywhere except inside braces — the same escape table as rule 9, reached through the same code.
Formatting TclScanElement / TclConvertElement, including the historical mode where an element needing protection only because of a ] or an internal " has those escaped while its braces are left bare: list {a]b} is a\]b, not {a]b}. An empty element is {}, and a leading # is quoted in the first element only.
Indices end, end±n, m±n and the integer grammar (0x / 0o / 0b / 0d prefixes, _ separators), resolved as Tcl_GetIntForIndex resolves them.
lsort The reference merge sort, element for element — with -unique the algorithm rather than the ordering decides which of two equal elements survives, so a library sort would give a different answer.
lsearch The reference option parsing, including unique-prefix abbreviation and the rule that -integer / -real only apply in -exact mode.
foreach Any number of variable lists and value lists; the longest list fixes the iteration count and shorter ones supply empty values. The loop state rides the VM stack rather than a variable a script could reach, and is read in place, so no copy happens per iteration.
lappend The op reaches the variable itself rather than taking its value through GetVar, so the list's string is unshared while it runs and the new elements are appended to it — growing a list is linear, not quadratic. What makes that safe without re-deriving the elements is identity: the value the last lappend produced is remembered, and a string that is that value is known to be canonical without a scan. A list another variable holds is copied instead, since the string it shares must not change under it.

Growing a variable

append x … reaches its variable itself — the compiler pushes where the variable lives, not its value — so the op takes the string out of it, finds it unshared, and appends to it. Nothing is copied per append, which makes building a string linear rather than quadratic.

set x "$x…" is lowered as the same op, because that is what it is: an assignment whose word begins with the variable it assigns to only grows it. The rewrite applies when everything after that first $x is text or another variable's value, and not when a command substitution follows it — append reads its variable after its arguments run, a word reads $x before the parts after it, and set x "$x[set x y]" is where those two disagree.

A value another variable holds is copied rather than extended, so a script never sees a string change under it. lappend works the same way, with one more question to answer first — see Lists.

Procedures

A procedure's parameters and locals are frame slots, not entries in the global table: proc collects every signature before anything is emitted, so a procedure may call one the script defines further down, and a call site pushes one value per formal — filling in defaults and collecting a trailing args there rather than in the body. global moves a named variable back to the global table for the body that declared it.

Coroutines

A coroutine is a second fusevm::VM over the same chunk. coroutine name cmd ?arg…? positions it at the procedure's entry and enters it; yield halts that VM and hands its value to whoever resumed it; resuming pushes a value and runs it again. yieldto donates the resumer to another coroutine of the script, so the value of a call that ends in yieldto is whatever the target eventually produces. A body may suspend at any depth, inside a loop, and inside an open catch; an error that escapes a body deletes the coroutine and is reported to whatever resumed it; a coroutine's command goes away when its body ends, so a later call reports invalid command name.

The driver owns the one global variable table and moves it into whichever VM is about to run, so every context sees the same variables. Exactly one VM runs at a time, so that is a move and not a copy.

eval

eval is the one command whose script is a value rather than braced text, so it is compiled when the op runs. The chunk cache is keyed by the source text — identical source is identical bytecode, whatever produced it — so eval in a loop is lowered once however many times it runs. The nested script sees the interpreter's variables in both directions, including the ones a failing nested script had already set.

Inside a procedure body it sees that procedure's frame, which is what tclsh does: a local is readable and writable, a variable the script creates becomes a local, and a global the body did not declare is refused there exactly as it is in the body. A procedure's locals are frame slots, so nothing addresses them by name once the chunk is built — proc therefore records the name of each slot in the chunk (fusevm::Chunk::sub_slot_names), and the op runs the script against a projection of the frame built from them, reading it back into the slots afterwards.

uplevel ?level? arg … is the same mechanism aimed at a different frame: #0 is the global level, a bare number counts calls outwards from the running one, and a level that does not exist is bad level "…". Only a procedure call is a level — the frame a scope or a JIT side exit pushes is not one — so uplevel 1 at a script's top level reports bad level "1" as it does in tclsh. Control flow does not cross one: break, continue and return belong to the script uplevel is running, which is measured against tclsh in tests/frame_differential.rs.

apply {params body ?ns?} ?arg …? runs a lambda as what it is — a procedure body with a frame of its own, its own locals, the same defaults and variadic args rules, and return returning from it. A wrong argument count is reported against apply lambdaExpr, because a lambda has no name to report.


[0x05] WHAT IS REFUSED

Nothing is approximated. A construct this frontend has not built is an error, at compile time where the script's shape decides it and at run time where a value does. BUGS.md is the ledger.

Refused Message
Any command outside the list above invalid command name "X"
{*} argument expansion {*} argument expansion is not supported yet
Every expr math function math function "sin" is not supported yet
A variable or body word that is not literal (set $name …) the word is refused where a literal is required
An array variable in a foreach variable list array variables are not supported yet
array startsearch and the other search subcommands array startsearch is not supported yet
dict subcommands outside the implemented set; dict set into an array element dict append is not supported yet
string wordend / wordstart past ASCII string wordend/wordstart: characters beyond ASCII need Unicode category tables, which are not built yet
format %a / %A; any other letter is bad field specifier "n" instead the "%a" conversion is not supported yet
lsearch -sorted / -dictionary / -nocase / -index / -subindices / -bisect; lsort -command / -dictionary / -index / -nocase. -regexp and -stride are built for both. -increasing and -decreasing are taken: they only describe the order -sorted and -bisect search in, so the two that read it name it — lsearch -sorted -increasing is not supported yet lsearch -dictionary is not supported yet
proc anywhere but a script's top level; redefining a built-in; redefining a procedure; a procedure and a coroutine of the same name "proc" is only supported at the top level of a script
return outside a procedure; return or break or continue out of a catch script; return -code other than ok or error; return's other options "return" outside of a procedure is not supported
catch's third (options-variable) argument; error's info and code arguments … the options variable is not supported
yield or yieldto inside a script run by eval, uplevel or apply. tclsh suspends the coroutine from inside the nested script; here that script runs a machine of its own, below the VM that would have to park, and that VM saves only its own state — so resuming could not return to the middle of the script yield inside a script run by "eval", "uplevel" or "apply" is not supported: a coroutine cannot suspend across one
upvar. An alias has to be a live link to a variable of another frame, and a variable here is a frame slot holding a value, with no indirection for one to point through. Reported as the command this frontend does not have, which is what it is invalid command name "upvar"
coroutine anywhere but a script's top level or a command substitution in one; a coroutine of a built-in or of anything but one of the script's procedures; yieldto at a command that is not a coroutine of the script "coroutine" is only supported at the top level of a script, or in a command substitution in one
info body; info locals / level / frame; info class / object; info constant / consts; info functions; info loaded; info cmdcount / cmdtype / errorstack info body is not supported yet: a procedure's body is compiled into the enclosing chunk and its source text is not kept
Input nesting past parser::MAX_NESTING_DEPTH — 64_000 command substitutions or array indices deep, well past anything the reference interpreter survives too many nested substitutions (infinite loop?)
Ahead-of-time compilation of a script using catch or a coroutine ahead-of-time compilation of a script using "catch" is not supported: it needs the driver that only the interpreter has

coroprobe, coroinject and deleting a coroutine by renaming its command are not implemented; a coroutine goes away when its body ends.


[0x06] THE PARSER

tclrs::parse implements all twelve syntax rules of Tcl(n):

Rule Covered by
1 Commands, 3 Words command and word splitting, line tracking
2 Evaluation words retained in order for the compiler
4 Double quotes quoted words with substitution
5 Argument expansion {*} recorded on the word
6 Braces nesting, literal text, backslash retention
7 Command substitution nested scripts parsed eagerly
8 Variable substitution $name, $name(index), ${name}, ${name(index)}
9 Backslash substitution full escape table, including the backslash-newline pre-pass
10 Comments # in first-word position only
11, 12 Order and word boundaries single pass, substitution never splits a word

Rule 11 rules out rescanning substituted values, so each character is processed once and the compiler can resolve variable and command references statically wherever the word shape allows.

Braces nest through a counter, so a script of a million { costs no stack, but command substitution and an array index are recursive — a [ inside a [ is a nested script. That recursion is bounded by parser::MAX_NESTING_DEPTH, because running out of native stack is a signal with nothing to report rather than an error a script can be blamed for. The limit is 64_000 and it is measured: on the stack the binary gives the parser (runtime::RECOMMENDED_STACK) a script of nothing but [ still parses at 80_000 levels and aborts by 90_000, and tclsh segfaults on the same input between 20_000 and 30_000 — so the bound sits above every depth the reference interpreter itself survives, and refuses nothing tclsh can parse.


[0x07] ARCHITECTURE

tclrs contains no virtual machine, no interpreter loop, and no code generator. The execution path mirrors how zshrs hosts zsh and groovyrs hosts Groovy:

Tcl script → parser (Script/Command/Word) → fusevm bytecode → Interp → Machine → fusevm VM
                                                                          │
                                                     numeric hook (string operands, overflow)
                                                     extension ops (/ % ** floored, puts, string compare, …)
                                                     enable_tracing_jit
Piece How
fusevm-hosted No local vm.rs / jit.rs. Each command lowers into a fusevm::Chunk and runs on the shared VM.
Interp The variables of a session, keyed by name, plus the source-keyed chunk cache. A chunk interns its own name table, so a slot vector cannot cross evaluations; the map is the authority and the vector is projected out of it on entry and read back into it on exit.
Machine One evaluation. It switches coroutine contexts, unwinds catch, services the requests coroutine ops raise, and moves the global slot vector between the VMs of one chunk. Every one of those works the same way: an op stashes something in a cell and halts, and the driver reads the cell after run() returns.
One install point The output sink, the numeric hook, the extension dispatch and enable_tracing_jit are installed in exactly one function, so the main VM, a coroutine's VM, a nested eval's VM and an ahead-of-time run all behave alike.
Numeric hook Catches operands the VM cannot compute on natively. An operand that parses as a number is one (including the 0x / 0o / 0b / 0d radix prefixes and _ as numeric whitespace); comparisons fall back to string order when it does not; arithmetic on a non-number is an error. An integer past i64 is where the hook earns its keep: fusevm's checked arithmetic hands the operands over on overflow, the hook computes the exact answer as a BigInt and returns it as its canonical decimal, and the fast path stays i64 in registers.
Extension ops / and % floor toward negative infinity (-57 / 10 is -6, -57 % 10 is 3), ** stays integral for integral operands including a negative exponent (2 ** -1 is 0), and a boolean op applies Tcl's rule for a condition, which is not the VM's truthiness. Tcl's string form is a frontend op wherever one is needed — puts, the always-string comparisons, word concatenation — because the VM's own stringification is not Tcl's for a double or a boolean, and none of those ops is JIT-eligible in fusevm anyway, so owning them costs no tier. An expr result is not converted: it stays the value the VM computed, which is what keeps an arithmetic loop free of extension ops. The list, associative and string commands are extension ops too.
No object heap Tcl's value model needs none on top of fusevm's: strings, integers and floats map onto Value directly.

Extension op ids are laid out so runtime's dispatch can test ranges from the highest base down: the arithmetic ops and puts at 0–5, eval at 6, control flow at 7–9, the coroutine ops at 10–14, the boolean conversion at 15, the list commands from 16, the associative ones from 64, and the string ones from 128. catch is the one op whose payload is an op index, so it is an extension-wide op.

Static stack tracking is what keeps the lowering cheap: each command leaves its result on the stack and the compiler tracks that depth as it goes, so break and continue unwind with a known number of pops rather than a runtime unwinder. Every loop — while, for, foreach, dict for — is emitted by one function, Compiler::rotated_loop, which is what keeps that arithmetic and the rotated branch layout the tracing JIT needs in a single place rather than repeated four times.


[0x08] JIT COMPILATION

How it is turned on

fusevm is pulled with the Cranelift features, so cargo build links the JIT and the persistent native-code cache:

fusevm = { version = "0.17.0", features = ["jit", "jit-disk-cache", "aot", "ffi"] }
Feature What it adds
jit fusevm's Cranelift tiers — linear, block, tracing.
jit-disk-cache Compiled native code persists to ~/.cache/fusevm-jit, so codegen is not repaid on the next process. Relocate it with FUSEVM_JIT_CACHE_DIR, disable it with FUSEVM_JIT_CACHE_DIR=off.
aot The closed-world compiler behind --aot.
ffi The compile-and-dlopen path behind rust { ... }.

One call arms the tiers, in the same function that installs every other hook, so the interpreter, the binary, a coroutine's VM and an ahead-of-time run all get the same VM.

What the tiers reach on Tcl today

Not an estimate. tclrs --tiers asks fusevm's own predicates (is_block_eligible, is_trace_eligible, trace_is_compiled, block_jit_is_compiled) after running the script. Every counted loop this frontend emits now reaches a compiled trace, whether its counter is a procedure's local or a script's top-level variable; what a loop still fails on is an extension op in its body.

A loop inside a procedure reaches a compiled trace

proc count {n} {
    set i 0
    while {$i < $n} {
        incr i
    }
    return $i
}
puts [count 3000000]
$ tclrs --tiers bench/counted_loop_proc.tcl
ops                     28
block-JIT eligible      false
block-JIT compiled      false
largest eligible region none
loop @7                trace-eligible=true traced=true blacklisted=false
block-ineligible ops
  Call                  1
  Extended              1
  ReturnValue           2
reaches native code     true

The ops listed are the ones the block tier refuses, which is a different question from whether a loop is traced: the block tier compiles a chunk whole or not at all, and the Call around this loop settles that. It is the tracing tier that runs here.

traced=true. Two things have to hold at once for that, and each was a separate blocker.

The ops. A procedure's locals are frame slots, so the counter is GetSlot / SetSlot, which the tiers have always accepted. A top-level Tcl variable is a VM global instead, which the tracing tier used to refuse and now takes — see below.

The shape. fusevm arms its trace recorder at a backward branch and closes the recording when a branch lands back on the anchor. A textbook while — evaluate the test, JumpIfFalse forward past the body, close with an unconditional backward Jump — records an op sequence that is_trace_eligible accepts and that the trace compiler then declines, so the recording is aborted and nothing is ever installed. A do-while, whose conditional backward branch closes the loop, compiles. Every loop this frontend emits is therefore rotated into that shape (Compiler::rotated_loop, src/compiler.rs):

    Jump -> cond          ; enter at the test, so it still runs before iteration 1
  body:
    <body>
  step:                   ; `for`'s third clause; empty for `while`
    <step>
  cond:
    <cond>
    JumpIfTrue -> body    ; conditional BACKWARD branch
  end:

while {$i < 300000} {incr i} inside a proc, before and after:

Before — declined After — traced
05 GetSlot(0) ← anchor 05 Jump(12)
06 LoadInt(300000) 06 GetSlot(0) ← anchor
07 NumLt 07 LoadInt(1)
08 JumpIfFalse(16) 08 Add
09 GetSlot(0) 09 Dup
10 LoadInt(1) 10 SetSlot(0)
11 Add 11 Pop
12 Dup 12 GetSlot(0)
13 SetSlot(0) 13 LoadInt(300000)
14 Pop 14 NumLt
15 Jump(5) 15 JumpIfTrue(6)

Rotation moves where the exits land: break still jumps past the loop, and continue jumps to the step, because in a rotated loop the next test sits below the body. for's step therefore still runs on continue, and a break inside the step still ends the loop, as for(n) specifies. The condition is still evaluated before the first iteration — that is what the entry Jump is for — so while {0} {...} runs its body zero times and a loop's own value is still empty. for / foreach / while programs covering break, continue, zero iterations, a loop's own value, multi-variable foreach, nesting, and a body that leaves values on the stack per iteration are all checked byte for byte against tclsh in tests/execution_differential.rs.

The chunk as a whole stays block-ineligible for a separate reason — the Call and the puts around the loop — so the whole-chunk tier is not what runs here. It is the tracing tier.

A loop at a script's top level reaches one too

$ tclrs --tiers bench/counted_loop.tcl
ops                     19
block-JIT eligible      false
block-JIT compiled      false
largest eligible region none
loop @5                trace-eligible=true traced=true blacklisted=false
block-ineligible ops
  Extended              1
  GetVar                3
  SetVar                2
reaches native code     true

This is the row that used to read trace-eligible=false traced=false. A Tcl variable at a script's top level lowers to a VM global, and fusevm's tiers accepted slots and not globals: Op::GetVar and Op::SetVar were absent from is_block_eligible_op_at, and the tracing tier defers to that same predicate for everything but Call / Return (is_trace_op_allowed_at). Nothing about the loop's arithmetic or shape was the problem — tclrs --disasm shows NumLt, Add, LoadInt, Jump and JumpIfTrue, no extension op anywhere in it.

fusevm 0.15.0 takes them, by the same mechanism it already had for slots: the globals a trace references are promoted to registers when the trace is entered and spilled back at every exit, including every side exit. Two details make that safe for a Tcl script rather than only for a synthetic loop:

  • The entry guard is per referenced index, not per table. The slot path can ask "are all slots numeric?"; the equivalent question about globals is always no, because argv0, argc and argv are strings in every run. Only the indices the trace actually touches are checked, so a script's string variables neither block the trace nor get flattened by the spill.
  • A trace that would write a global that is not numeric at entry is refused outright, because the write-back would otherwise drop the store silently.

The ops are still listed above because that list answers the block tier's question, and the block tier still refuses globals — the whole chunk is not compiled in one piece. The loop inside it is.

Wrapping a hot loop in a proc is no longer the workaround it was; the counted_loop and counted_loop_proc benchmark rows now land within a millisecond of each other.

foreach and dict for reach nothing either, for a third reason

Both are rotated too, and neither is trace-eligible in any spelling — not even with its variables in a procedure's slots:

proc sum {l} {set t 0; foreach x $l {incr t $x}; return $t}
set l {}
set i 0
while {$i < 2000} {lappend l 1; incr i}
puts [sum $l]
$ tclrs --tiers foreach_proc.tcl
ops                     58
block-JIT eligible      false
block-JIT compiled      false
largest eligible region none
loop @10               trace-eligible=false traced=false blacklisted=false
loop @39               trace-eligible=false traced=false blacklisted=false
block-ineligible ops
  Call                  1
  Extended              6
  GetVar                3
  ReturnValue           2
  SetVar                3
reaches native code     false

loop @10 is the foreach inside the procedure — slots, and still refused; loop @39 is the top-level while that builds the list, refused for lappend now that its global counter is no longer a reason. foreach's loop state is carried by four frontend extension ops (FOREACH_INIT / MORE / TAKE / ADVANCE), and is_trace_op_allowed_at rejects Op::Extended outright — an extension handler is arbitrary Rust with no Cranelift lowering. dict for is refused the same way through DICT_PAIRS, plus the two hidden globals its cursor uses. Rotation cannot help either of them; lowering their state to native ops could.

What Tcl's boolean rule costs, and where

That rejection of Op::Extended is why the conversion a Tcl condition needs is emitted selectively. A condition has to be a boolean — if {"b"} is an error, not a taken branch — and the rule is a ported one (ParseBoolean, tclObj.c), so it lives in an extension op. Putting one before every branch would have taken the compiled trace away from every loop in the language.

Compiler::yields_number decides it statically: an expression whose top-level operator answers with a number needs no conversion, because the VM's truthiness and Tcl's agree on every number. A relational or arithmetic test — which is what a counted loop's is — is therefore untouched, and only a condition whose value could be a string pays:

proc h {n} {set i 0; set go 1; while {$go} {incr i; if {$i >= $n} {set go 0}}; return $i}
proc h2 {n} {set i 0; while {$i < $n} {incr i}; return $i}
loop condition ops trace-eligible traced
h2 $i < $n 29 true true
h $go 42 false false

Both are proc-local, both are rotated, and the second is refused for the one Extended in its body. That is the whole cost of the rule, it is measured rather than assumed, and the alternative was answering the wrong thing.

The disk cache

jit-disk-cache is enabled and ~/.cache/fusevm-jit is live, so a proc-local loop's compiled trace outlives the process. The saving is below noise on this machine: counted_loop_proc is 6.3 ± 0.3 ms with FUSEVM_JIT_CACHE_DIR=off and 6.7 ± 0.2 ms with the cache on, 5 runs after 2 warmup runs — Cranelift codegen for a ten-op trace is cheap enough that the cache read costs about what it saves. It earns its place on larger traces, not this one.


[0x09] AHEAD-OF-TIME COMPILATION

--aot produces a standalone native executable with no parser and no compiler inside it — the bytecode is baked in, already lowered. Whether the dispatch loop is gone too depends on the script.

tclrs --aot hello hello.tcl              # emit + link
./hello                                  # runs; exit status is the script's
tclrs --aot-object hello.o hello.tcl     # just the relocatable object

The pipeline, all of it fusevm's except the first and last steps:

script → parser → compiler → fusevm::Chunk
                                 │
              fusevm::aot::compile_object → hello.o
                                 │  exports fusevm_aot_entry (native driver)
                                 │          fusevm_aot_chunk_blob / _len
                                 ▼
     cc main.c hello.o libtclrs.a → hello
                                 │  main.c calls fusevm_aot_run_embedded()
                                 ▼
     runtime: deserialize chunk → VM → fusevm_aot_register_builtins(vm)
                                     → native driver → exit code

src/aot_runtime.rs is this crate's whole contribution to the linked binary: the fusevm_aot_register_builtins hook fusevm calls back into, which installs the same hooks the interpreter installs. crate-type = ["rlib", "staticlib"] in Cargo.toml is what produces the libtclrs.a it links against; set TCLRS_STATICLIB to point the link somewhere else.

What runs natively, and what does not

fusevm's ahead-of-time compiler lowers scalar arithmetic, comparisons, branches and globals to registers, runs string / list / hash ops through a boxed shim, and turns anything it has no lowering for into a deopt point that hands the rest of the run to the interpreter. Every operation this frontend implements as an extension op is such a point: /, %, **, in / ni, puts, the always-string comparisons, eval, all thirteen list commands, foreach, every array and dict operation, and the whole string ensemble.

expr is deliberately not on that list. Every expr used to end in an op that converted its result to Tcl's string form, so a loop that computed anything deopted on its first iteration and ran interpreted from there; the conversion now happens where a string is actually asked for, and arithmetic lowers to native ops end to end. That is the difference between counted_loop_expr taking 251.5 ms ahead-of-time compiled and taking 5.9.

What AOT removes for a script that does reach a deopt point is the parse and the lowering, not the dispatch loop — a small number, and the benchmarks measure it as such. What it removes for a script with no extension op in its hot path is the dispatch loop as well, and that number is not small: 5.1 ms against tclsh's 399.3 for three million iterations.

Semantics do not change, and that is tested

Every benchmark-shaped program is run both ways and compared byte for byte, including the failing ones. That caught a real divergence: Tcl integers are arbitrary-precision and so are this frontend's, so an i64 overflow promotes through the numeric hook — but native codegen wraps, and AOT printed -9223372036854775808 where the interpreter answered 9223372036854775808. Every chunk now carries int_overflow_deopt, so Add / Sub / Mul stay native registers on the common path and deopt into the hook when a result does not fit. The same flag is why the JIT, armed on every VM, cannot wrap either.

Limitations

  • catch and coroutines are refused. Both are driven from outside VM::run — the driver reads a cell an op parked, restores the VM and runs it again — and fusevm's ahead-of-time entry owns the run and never hands control back mid-way. Compiling one would turn a caught error into a fatal one, so --aot and --aot-object refuse the script instead.
  • One script, one binary. The chunk is baked in at compile time. No argv, no reading a script at run time, no source.
  • Everything the frontend does through an extension op deopts — see above.
  • macOS emits a linker warning: ld: warning: no platform load command found in …tclrs_aot_*.o, assuming: macOS. The object cranelift-object writes carries no platform load command; the link and the binary are fine.
  • No cross-compilation. cranelift_native targets the host.
  • The binary is large — it links the whole runtime, Cranelift included, because libtclrs.a is one archive.

[0x0A] BENCHMARKS

Reproduce from a fresh checkout:

bench/run.sh                            # every script in bench/
RUNS=20 WARMUP=5 bench/run.sh           # what the numbers below were taken with
bench/run.sh bench/counted_loop.tcl

bench/run.sh builds the release binary, compiles each script with --aot, and runs four configurations of every script under hyperfine — falling back to a warmed Time::HiRes loop when hyperfine is not installed. Every row is wall clock of a whole process, including startup, and every row runs through env so none of them pays for an exec the others do not:

Row Command
tclsh env tclsh SCRIPT
tclrs interp env TCLRS_JIT=off target/release/tclrs SCRIPT
tclrs JIT env TCLRS_JIT=on target/release/tclrs SCRIPT
tclrs AOT env target/bench/NAME — built by tclrs --aot

Measured

Apple M5 Max, macOS 26.5.2, rustc 1.97.0, --release (lto = true, codegen-units = 1), tclsh 9.0.4 from /opt/homebrew/bin, fusevm 0.15.0, 20 runs after 5 warmup runs, hyperfine -N — each command exec'd directly.

-N matters at this scale. With a shell in the way, hyperfine measures the shell's own startup and subtracts it, and on a loaded machine that correction once came out larger than the command itself: an ahead-of-time row that runs in about 5 ms was reported as 0.0 ms ± 0.0 with a relative of inf ± NaN. Exec'd directly there is nothing to subtract, so every row carries its process spawn and none of them can go negative. The numbers are therefore ~1–2 ms above what an earlier shell-calibrated run reported for the same work.

The machine is a shared workstation and its load average sat near 12, so a row's mean carries whatever else was running; the table is the minimum of the 20 runs, and the means are below it so the spread stays visible.

Minimum of 20 runs, in milliseconds:

Benchmark tclsh 9.0.4 tclrs interp tclrs JIT tclrs AOT
startup — the empty script 12.4 4.5 4.5 2.9
counted_loop_proc — 3M × incr, inside a proc 51.5 185.9 5.6 4.3
counted_loop — 3M × incr, at the top level 386.6 175.3 5.8 4.3
counted_loop_expr — 3M × set i [expr {$i + 1}] 461.9 175.8 7.0 4.7
integer_arith — 1M × $sum + $i * $i - ($i >> 3) 284.7 143.6 6.4 4.2
string_build — 100k × set s "$s$i" 618.3 17.3 19.5 18.3
list_iterate — 5k × lappend, then foreach 13.2 6.8 6.6 4.9

Mean ± σ over the same runs:

Benchmark tclsh 9.0.4 tclrs interp tclrs JIT tclrs AOT
startup 13.6 ± 0.7 5.1 ± 0.4 5.4 ± 0.5 3.2 ± 0.3
counted_loop_proc 56.2 ± 3.1 192.1 ± 3.7 6.5 ± 1.4 4.5 ± 0.1
counted_loop 407.4 ± 9.6 181.7 ± 3.9 6.4 ± 0.4 4.9 ± 0.3
counted_loop_expr 480.5 ± 10.0 188.0 ± 7.8 7.4 ± 0.3 5.3 ± 0.3
integer_arith 298.7 ± 5.5 149.0 ± 2.9 7.0 ± 0.4 4.7 ± 0.4
string_build 823.8 ± 134.4 18.3 ± 0.6 20.7 ± 0.9 19.1 ± 0.5
list_iterate 15.1 ± 1.8 7.5 ± 0.5 7.7 ± 1.4 5.2 ± 0.3

Every ratio below is the first table's numbers divided; nothing else is inferred.

Every arithmetic loop reaches native code now, with or without --aot. The three loop rows are within a millisecond or two of each other across the JIT and AOT columns, and all of them are a few milliseconds above startup:

tclsh JIT AOT JIT vs tclsh
counted_loop 386.6 5.8 4.3 67×
counted_loop_expr 461.9 7.0 4.7 66×
integer_arith 284.7 6.4 4.2 44×

Both halves of that took a change. The ahead-of-time column was blocked on expr: every one used to end in an extension op that converted its result to Tcl's string form, fusevm's ahead-of-time compiler has no lowering for an extension op, and one deopt on the first iteration handed the whole loop back to the interpreter — counted_loop_expr took 251.5 ms compiled and integer_arith 165.1. Tcl's string form is now applied where a string is asked for, so an arithmetic loop lowers to native ops end to end.

The JIT column was blocked on where a Tcl variable lives. A top-level one is a VM global, fusevm's tiers took slots and not globals, and the three rows ran 221.1, 234.3 and 166.1 ms — interpreted, with the tracing recorder's overhead on top. fusevm 0.15.0 promotes the globals a trace references to registers at entry and spills them at every exit, guarded per referenced index; see JIT Compilation for why the guard cannot be the whole-table check the slot path uses.

What the JIT is worth on a loop it takes. counted_loop runs in 5.8 ms against 175.3 interpreted — 30× — with startup at 4.5 ms on the same run, so the 3,000,000 iterations are inside the noise of process startup. Scaling the script to 30,000,000 iterations does not move it out; ten times the iterations for the same wall clock is not a per-iteration cost at all — Cranelift can close a counted loop whose result is its own bound — so read that as the loop disappearing, not as nanoseconds per iteration.

tclsh's own ranking still splits on the procedure boundary: it runs the proc-local loop in 51.5 ms against 386.6 for the top-level one, a 7.5× spread on the same arithmetic, because it compiles a procedure's locals and not a script's globals. tclrs no longer splits at all — 5.6 against 5.8 ms — which is the practical difference: a hot loop no longer has to be wrapped in a proc to reach native code.

Where tclrs wins without any tier. Interpreted, tclrs is 36× tclsh on string_build, 2.6× on the counted loop written with expr, 2.2× on the top-level counted loop, 2.0× on integer arithmetic, 1.9× on list_iterate, and starts in 4.5 ms against tclsh's 12.4.

Where a tier still buys nothing. string_build and list_iterate spend their time in frontend extension ops — the in-place append, the list commands — which no tier lowers, so their three tclrs columns sit within a couple of milliseconds of each other and the interpreter is as fast as anything else. That is the remaining shape of the problem: what is left outside native code is the data-structure work, not the arithmetic.

lappend builds a list in place. list_iterate was the one row tclrs lost, by 14×: the list lived in the variable as its string representation and every lappend re-derived the elements and re-quoted all of them, so building a list was quadratic. It is now linear. The op reaches the variable itself rather than taking its value through GetVar, so the string is unshared while the op runs and the new elements are appended to it; the value the last lappend produced is remembered by identity, which is what says the string is canonical without a scan to prove it (src/cmd_list.rs). A value another variable is holding is still copied — the shared string must not change under it — so the semantics are the ones tclsh has, and tests/list_differential.rs compares them against it.

Measured on the machine above, the same tree either side of the change, 15 runs after 3 warmup: the benchmark went from 435.7 ± 5.4 ms to 6.3 ± 0.4 ms, 69.7 ± 4.1×, and the shape changed with it. Building 5,000 / 50,000 / 500,000 elements now takes 1.3 / 13.5 / 154.5 ms — linear in the element count — against 48,455 ± 6,926 ms for 50,000 before, which is the quadratic curve. tclsh takes 163.8 ms for the 500,000-element run, so the two are level where tclsh used to be 2,000× ahead.

append builds a string in place, and so does set x "$x…". string_build is the same problem in the other data type, and it was the row where tclrs and tclsh were level: both copied the whole accumulated string every iteration, so a 100,000-iteration build moved about 24 GB of bytes to produce half a megabyte. append now reaches its variable the way lappend does and appends to the string the variable already holds; a string needs no canonical form, so no memory of the last value is needed to know that is safe — only that nothing else holds it. set x "$x…" is lowered as the same op whenever the word only grows x and nothing after that first $x can run a script, which is what keeps the read order the same as the word's (src/compiler.rs, src/cmd_string.rs).

Same tree either side, 12 runs after 3 warmup: bench/string_build.tcl went from 734.5 ± 153.6 ms to 26.8 ± 6.3 ms (minima 497.2 and 18.3), which is 27× on either statistic, and tclsh runs it in 535.2 ms at its own best. The benchmark also prints string length $s now, so a build that skipped the work would print the wrong number rather than a fast time.

What the JIT costs where it does not fire. The tclrs JIT column is the same binary as tclrs interp with the tracing JIT armed. On a script whose loops it cannot take it is not free: 13% slower on string_build, and within noise on list_iterate and startup. That is the recorder check in the dispatch loop plus the once-per-run block-tier lookup, paid on every script whether or not a trace is ever installed. It used to be paid on the counted loops too, for a tier that then refused them; those now return 30–44× for it. It stays on unconditionally because which of the two a script gets is not knowable before the script runs, and hiding the cost would make the table dishonest.

Caveats worth knowing before quoting any of this: the machine was not idle — a shared workstation at a load average near 12 — which is why the minima are the table and the means are the second table, and why string_build's tclsh row spreads over 400 ms between its best and worst run; every tclrs row on a loop benchmark is now within a few milliseconds of startup, so those ratios are bounded by process spawn rather than by the loop, and a larger iteration count is the way to see the loop itself; and the AOT rows run with the JIT armed too, since the ahead-of-time runtime hook goes through the same install point.


[0x0B] CONFORMANCE

The differential suites test what tclrs claims to do. conformance/ measures the opposite: how much of real Tcl it does, by running the Tcl project's own test suite against it.

2248 of 5066 attempted cases pass — 44.4%. Over every case the suite contains, including the ones that cannot be run here, that is 2248 of 69424. conformance/REPORT.md has the breakdown behind the number: attempted, passed, failed and skipped per suite file, why each skipped case could not be run, and the failure causes ranked.

Regenerate it:

conformance/run.sh

That fetches the Tcl source release — the suite ships there, not in a binary install — verifies it against a pinned SHA-256, lifts every case out of every tests/*.test file using tcltest's own argument parsing, runs each one under both tclsh and tclrs, and rewrites the report. No file and no case is chosen by hand, and the runner has no option to run a subset. A case passes only when the two runs agree on the whole triple of exit code, result string and stdout, byte for byte; the suite's own -result values are not consulted, because tclsh is the specification and comparing against what it actually does is stricter than comparing against what the suite says it should.

The share fell as the tree grew, and that is the rule working rather than a regression. The previous report — taken before proc, the string ensemble, coroutines and eval landed — passed 1404 of 2941. Those commands existing is what moved 2,125 cases out of the skip column and into the attempted one, and a case that was previously skipped for a missing proc is now attempted against everything else it uses. Passes went 1404 → 2248; the denominator went 2941 → 5066 faster. A number that only ever rises is a number measuring the wrong thing.


[0x0C] TESTING

cargo test

Every suite compares against the reference interpreter rather than against hand-written expectations: each program is executed by both tclsh and tclrs and the outputs compared byte for byte. The suites cover the twelve parse rules, word splitting character for character, whole programs, the list commands, the associative commands, the string ensemble, procedures and control flow, coroutines, the interpreter's state across evaluations, the binary's stdout / stderr / exit status in each of its input modes, and the ahead-of-time path against the interpreter.

Three suites drive the binary rather than the library: tests/lsp_session.rs and tests/dap_session.rs speak the real protocols to the real process over stdio — handshake, diagnostics, breakpoints, stepping, and a shutdown that exits — and tests/rust_ffi.rs runs a script with a rust { ... } block in it, so rustc is invoked, the library is loaded and the exported function is called, rather than the test stopping at the desugaring.

Several of them generate their cases rather than listing them: every awkward element value driven through every list command, foreach through every shape its grammar allows, the glob matcher over a pattern × subject grid, and every index form against lists of every length — each matrix run as one script and compared line for line.

The differential suites skip when no tclsh is on PATH. The full ahead-of-time link test skips when libtclrs.a has not been built or there is no cc.

Examples

examples/ holds runnable programs, one per slice of the language — variables and substitution, expr, control flow, procedures, lists, strings, dict and array, errors, coroutines, eval, and a FizzBuzz that prints. Run one directly:

cargo run --bin tclrs -- examples/lists.tcl

Each is self-checking: results go through a check procedure that raises a Tcl error — so a non-zero exit — the moment one drifts. tests/examples.rs gates them twice. Every script has to exit cleanly under the built binary, which needs no Tcl installed and so runs anywhere; and every script's stdout has to match tclsh byte for byte, which is what keeps an expectation written into a script from being wrong in the same direction as the implementation. The second test skips when no tclsh is on PATH, like the other differential suites.

Differential fuzzing

cargo build
bash scripts/fuzz_parity.sh -n 400 -s 1 -m

scripts/fuzz/gen.tcl generates whole Tcl programs from a seed — the same seed gives the byte-identical corpus, so a divergence reproduces from the seed and the case index alone — and scripts/fuzz_parity.sh runs every one under both tclsh and tclrs through one driver, scripts/fuzz/drive.tcl. Loop bounds are structural, so a generated program always terminates, and values come from a pool of awkward literals: empty strings, braces, brackets, quotes, backslashes, $, a leading #, leading zeros, 1_0, 0d9, 0x_10, -0, nan and inf, the i64 boundaries from both sides, exponent-form floats, list-shaped strings where a scalar is expected, and multi-byte text with the non-ASCII character at a string boundary — including astral-plane characters.

What the generator builds rather than lists: format's specifier matrix (flags × width × precision × conversion, * included), the lsearch and lsort option matrices, and every string subcommand in every argument shape its synopsis allows. Programs are stateful as well as nested — coroutines resumed from a counted loop, from inside a procedure and inside a catch, procedures that call procedures along an acyclic call graph, and eval nested several levels deep.

Shapes that tclrs recognises and refuses — array on a procedure local, lsort -command, string is punct, dict unset — are generated on purpose at a low rate rather than avoided. Each lands in the skip bucket under the refusal's own wording, so the coverage is already in place on the day the refusal goes; the rate is one number in the generator (REFUSAL_RATE) because every one of those refusals is decided while compiling, so one anywhere in a case takes the whole case out of comparison.

That is what happened to eval inside a procedure body, which was on that list until it was implemented: a 400-program run at seed 1 moved ten cases from the skip bucket to the pass bucket and left every other bucket where it was (DIVERGENCE 19, ALLOWED 7, CRITICAL 0). It is still generated at REFUSAL_RATE rather than at the rate a working construct deserves, which under-measures it — the generator has not caught up, and uplevel and apply are not generated at all yet. What covers all three meanwhile is tests/frame_differential.rs.

bash scripts/fuzz_parity.sh -M -n 500 -m       # mutate instead of generate

-M builds the corpus from the committed findings in tests/fuzz_corpus (plus anything -c names) instead of generating fresh programs: scripts/fuzz/mutate.pl splices statements between cases, duplicates and deletes lines, swaps lines, perturbs literals and swaps operators. It is seeded and reproducible exactly as generation is, and it writes the same corpus format, so the split, the classifier and the shrinker are the same code — no case is classified two ways. Termination is preserved rather than re-derived: a loop-bearing line is only ever moved, duplicated or deleted whole, nothing is inserted into a body, and a mutant whose loops are not verbatim from a source case — or in which a loop's counter is assigned off the loop's own line — is redrawn.

Every case lands in exactly one bucket, and every bucket is counted: pass, skip (tclrs refused something it documents as unimplemented, with the refusal's own wording as the reason), allowed (one of the enumerated known divergences, each with a per-entry hit count so an over-broad suppression is visible rather than silent), divergence, critical (tclrs died or hung — never suppressible), and excluded (tclsh died or hung, so there is no reference behavior; never charged against tclrs). -m minimises each divergence to the statement that causes it and writes it to tests/fuzz_corpus/ with both engines' observed output; tests/parity_fuzz_corpus.rs replays that corpus, and tests/parity_fuzz_findings.rs pins each finding against a live tclsh. The exit status is the number of unsuppressed divergences, capped at 250. -h prints the whole interface.

What it has found is BUGS.md.

A second fuzzer needs no tclsh: fuzz/fuzz_targets/ holds cargo-fuzz targets for the inputs a grammar never produces — a lone \x00, a truncated escape, thousands of nested brackets.

target surface
parse the command language, on arbitrary bytes
compiler parse and lowering, without running anything
expr the expression grammar, which parse never reaches
eval a generated script, compiled and run
vm one chunk run twice, on two interpreters
cargo +nightly fuzz run parse -- -max_total_time=1500
cargo +nightly fuzz run expr  -- -max_total_time=1500 -max_len=32768

expr wants the larger -max_len: its deepest seed is the 16 KB of nested parentheses that used to abort the process, and libfuzzer skips a seed above the default 4 KB.

eval and vm do not feed their bytes to the VM. A byte string is a weak input for a runtime — almost every mutation of one is a parse error, so nothing executes — so fuzz/fuzz_targets/shared.rs reads the input as a sequence of fragments and builds a Tcl program from fixed command skeletons, with the fuzzer's bytes as the arguments. That is where the crashes have been: a format field width, a string repeat count, a list index. Every generated loop counts to a literal and no command in this frontend touches the filesystem, so a generated script terminates and a libfuzzer timeout is a real finding.

tests/fuzz_smoke.rs replays every target's seed corpus and a hostile-input list under stable, so cargo test keeps the scaffolding honest without nightly.


[0xFF] LICENSE

MIT — free and open source. See LICENSE.