vote up 7 vote down star
2

I'm interested in implementing a Forth system, just so I can get some experience building a simple VM and runtime.

When starting in Forth, one typically learns about the stack and its operators (DROP, DUP, SWAP, etc.) first, so it's natural to think of these as being among the primitive operators. But they're not. Each of them can be broken down into operators that directly manipulate memory and the stack pointers. Later one learns about store (!) and fetch (@) which can be used to implement DUP, SWAP, and so forth (ha!).

So what are the primitive operators? Which ones must be implemented directly in the runtime environment from which all others can be built? I'm not interested in high-performance; I want something that I (and others) can learn from. Operator optimization can come later.

(Yes, I'm aware that I can start with a Turing machine and go from there. That's a bit extreme.)

Edit: What I'm aiming for is akin to bootstrapping an operating system or a new compiler. What do I need do implement, at minimum, so that I can construct the rest of the system out of those primitive building blocks? I won't implement this on bare hardware; as an educational exercise, I'd write my own minimal VM.

flag

53% accept rate

6 Answers

vote up 5 vote down check

This thread covers your exact question. Here is a soup-to-nuts implementation with complete documentation.

I wrote a subroutine threaded FORTH targeting 68K when I was in college. The way I did it was to define the runtime environment and dictionary format, then wrote some C that boot strap a Macintosh application that loaded a default dictionary, populated some IO vectors and got the code running. Then I took the Brodie book Starting FORTH and started implementing the basic dictionary in 68K assembly language. I started with arithmetic/logic words, then did control structures then word definition/manipulation words. My understanding is that at a minimum you need @, !, +, -, * and /. The rest can be implemented in terms of those, but that's like trying to write an entire graphics library based on SetPixel and GetPixel: it will work, but yikes, why?

I enjoyed the process as there were some really interesting puzzles, like getting DOES> exactly right (and once I had a solid DOES> implementation, I was creating closures that turned into tiny, tiny amounts of code).

link|flag
vote up 4 vote down

This post at comp.lang.forth list a few "minimal forth"

http://groups.google.com/group/comp.lang.forth/msg/10872cb68edcb526

Why do I know this? My brother, Mikael, wrote #3 and he also wrote a paper about making a "minimal forth" (in swedish though). If I remember correctly he wanted to get a minimal set of operators that could be built in silicon.

link|flag
vote up 3 vote down

A long time ago, I had a book called "Threaded Interpretive Languages", published I think by Byte, that discussed how to implement a Forth-like language (I don't think they ever called it Forth) in Z80 assembly.

You may not have a Z80 handy, or want one, but the book might be instructive.

link|flag
+1 for Loeliger's book. The book NEVER said the language was FORTH. Between that book and the Ritter & Walker paper in Byte around the same time, I learned enough to build a reentrant direct-threaded code interpreter for a test set project a few years later at General Dynamics. – John R. Strohm Dec 13 at 4:41
vote up 3 vote down

You might also want to take a look at Hans Bezemer's 4tH compiler.

link|flag
vote up 1 vote down

Which Forth implementation are you using that doesn't provide this information in the documentation? Given the nature of Forth, it might be implementation-dependent. There's a standard set of words in the dictionary, but whether they got there by assembly/C/whatever or by Forth shouldn't matter, since Forth is by definition a self-extensible language.

link|flag
I've looked at pforth, which predefines hundreds of operators in its C source. – Barry Brown Jan 2 '09 at 21:07
By definition, the instruction set of your processor must be sufficient, so just expose that; because that's what all compilers build from. And even that instruction set is probably not entirely be necessary, because some instructions can be expressed in terms of the others. – le dorfier Jan 3 '09 at 1:29
vote up 1 vote down

I'm still not convinced the question is well-formed. For example, Plinth's instructions can be reduced; after all, * and / can be implemented in terms of + and -, but then '+' can be implemented in terms of a successor function (see the Peano axioms.) Which puts you into the neighborhood of a Turing machine. How do you know where to stop?

link|flag
I'd stop where it's educationally-instructive to do so. For example, I can certainly see implementing multiplication in terms of addition, but implementing addition as a primitive. Then we have incentive to weigh the pros and cons of implementing '*' and others as primitives. – Barry Brown Jan 3 '09 at 4:31
That's a different question, at least to a math geek. "Primitive" means "minimal, least, atomic" in this context. – Charlie Martin Apr 10 at 15:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.