Here's an article about writing a Forth compiler for RISC architectures - which turns out to be harder than you'd think, given the simplicity of Forth.
Here's an up to date URL for the article listed above: http://kestrelcomputer.github.io/kestrel/2015/09/15/bspl-compiler
The source of the complexity is that RISC is literally *too* simple for Forth. CISC and accumulator architecture machines often have instructions which are favorable to Forth-style stack management. RISCs rarely have hardware managed stacks, so have to be done in software, which robs both performance and memory compactness. To regain both, you need more sophisticated code generators, rivalling those found in C compilers.
So this is cool. The debugger "rr" approaches things from a different perspective from most debuggers. Instead of instrumenting a live, running program, it makes a thorough recording of a full run, which you can then run back and forth through with a debugger. Sounds resource-intensive, but also pretty fantastic - like the author, I hardly ever use a debugger, but even my few times using one have...
Here's an up to date URL for the article listed above: http://kestrelcomputer.github.io/kestrel/2015/09/15/bspl-compiler
ReplyDeleteThe source of the complexity is that RISC is literally *too* simple for Forth. CISC and accumulator architecture machines often have instructions which are favorable to Forth-style stack management. RISCs rarely have hardware managed stacks, so have to be done in software, which robs both performance and memory compactness. To regain both, you need more sophisticated code generators, rivalling those found in C compilers.