I've already gotten my feet wet with functional programming; I am familiar (though not proficient) in Haskell and PLT Scheme. I've used PLT Scheme to build little interpreters for toy languages (referencing PLAI)--I'm better with imperative languages.

Could anyone direct me to resources I could use to build a small interpreter of a toy language of my choosing with Prolog?

link|improve this question

Would you like to create a language where you implement the runtime for it by some byte code, or do you aspire for some meta interpreter approach? – Cookie Monster Nov 5 '11 at 3:08
@Countably Infinite, I was going for a metainterpreter approach. The alternative you've mentioned seems a bit too much given my lack of experience. – arkate Nov 5 '11 at 21:53
feedback

2 Answers

up vote 5 down vote accepted

I mainly use swi-prolog so most of what I say will be swi-prolog related. However, other prolog implementations may have similar predicates/libraries (perhaps with a bit different name) so you may search their manuals and find them. Also, I am writing a compiler, not an interpreter, in prolog so maybe some parts are not so interpreter-related.

SWI-Prolog's documentation site is really good for finding stuff: use the search box to find any predicate or do a typical search. There is a plethora of libraries but you might want to implement some stuff yourself to gain experience. You might end up re-inventing the wheel but it would be useful.

The book "The Art of Prolog" (Sterling,Shapiro) has a chapter dedicated to building a compiler in prolog (and it's a nice book for prolog too).

Maybe there are some tools equivalent to lex/bison for prolog; i never really searched.
Imho, the lexer is quite easy in plain prolog; naturally, it will be based heavily on pattern matching.

For the parser I suggest using DCG: definite clause grammars: swi-prolog doc, google for more details.
The problem is that you will have to parse the whole file (or at least I haven’t found a way to do it otherwise). Btw, the lexer could also be done with DCGs but I dont think it's really better.

If you choose to have intermediate code, an abstract syntax tree is easy to produce from the parser (you could evaluate a lot of stuff during the parsing too).
About semantic checks: in my compiler for a toy language I do most of the semantic checks (scope related,function calls) during the parsing and the rest at a separate step. It's a bit messy

other useful stuff: check assert/1, global variables, meta predicates (maplist/[2-6]).
not pure prolog and you might make your code too imperative by abusing them (and then you could have some really nasty side-effects)

For symbol table (if you need it) you could just use assert/1 to add predicates: swi-prolog uses dynamic hash tables for dynamic predicates. warning: dynamic predicates are slower than static so, when you complete the table and are not going to make any changes use compile_predicates/1 to make them static. For example, when I finish parsing my ST is ready so I compile it. Another solution for the ST is to use association lists. they are implemented with AVL trees so the cost is O(log(N)).

link|improve this answer
feedback

Markus Triska (here his homepage) show several things could be interesting to you: for instance a toy LISP, or some toughts to meta interpreters.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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