vote up 0 vote down star
1

Does anyone out there know about examples and the theory behind parsers that will take (maybe) an abstract syntax tree and produce code, instead of vice-versa. Mathematically, at least intuitively, I believe the function of code->AST is reversible, but I'm trying to find work/examples of this... besides the usual resources like the Dragon book and such. Any ideas?

flag

Is your consideration of any practical profit? – lewap Mar 19 at 12:35
1  
I'm a researcher... "practical" and "profit" are not words we understand particularly well... – Dervin Thunk Mar 19 at 12:39
OK, lets express it this way: find a mathematical way to express a visitor and you have a dual to the parser. – lewap Mar 19 at 12:46
I guess I don't get the big deal. You just walk the parse tree and print stuff out as you go. – Mike Dunlavey Mar 20 at 21:40

7 Answers

vote up 1 vote down check

Such thing is called a Visitor. Is traverses the tree and does whatever has to be done, for example optimize or generate code.

link|flag
Could you please provide a link to some references (wikipedia, papers)? – Dervin Thunk Mar 19 at 14:08
Visiotr Pattern. What kind of research are you doing? – lewap Mar 19 at 16:22
vote up 1 vote down

Actually, generating code from a parse tree is strictly easier than parsing code, at least in a mathematical sense. There are many grammars which are ambiguous, that is, there is no unique way to parse them, but a parse tree can always be converted to a string in a unique way, modulo whitespace.

The Dragon book gives a good description of the theory of parsers.

link|flag
You're absolutely right, Jørgen. – Mike Dunlavey Jun 17 at 12:21
vote up 0 vote down

I've been doing these forever, and calling them "DeParse".

It only gets tricky if you also want to recapture whitespace and comments. You have to tuck them into the parse tree so you can regenerate them on output.

link|flag
Personally I actually like the removal of semantically null material like whitespace because it means presentation must be formalised (eg stylesheet) resulting in consistency. – Peter Wone Mar 24 at 12:52
@Peter: Same here. At times (I can't remember when) it has been desirable to store source in the form of a parse tree so it could be manipulated somehow, without losing the comments. – Mike Dunlavey Mar 24 at 21:15
While Peter makes a valid point, refactoring programs discarding layout (whitespace) is annoying and discarding comments is just plain unacceptable for users. – Martijn Jun 17 at 11:05
vote up 0 vote down

That sounds a lot like the back end of a non-optimizing compiler that has it's target language the same as it's source language.

One question would be whether you require the "unparsed" code to be identical to the original, or just functionally equivalent.

For example, would it be OK for the output to use a different indentation style than the original? That information wouldn't normally be stored in the AST because it's not semantically important.

One thing to look at would be automatic code refactoring tools.

link|flag
vote up 0 vote down

In addition to 'Visitor', 'unparser' is another good keyword to web-search for.

link|flag
Another buzz word is "pretty printing" and "pretty printing combinators". – Martijn Jun 17 at 11:05
vote up 0 vote down

I don't know where to find much about the theory, but boost::spirit 2.0 has both qi (parser) and karma (generator), sharing the same underlying structure and grammar, so it's a practical implementation of the concept.

Documentation on the generator side is still pretty thin (spirit2 was new in Boost 1.38, and is still in beta), but there are a few bits of karma sample code around, and AFAIK the library's in a working state and there are at least some examples available.

link|flag
vote up 1 vote down

I rather like lewap's response:

find a mathematical way to express a visitor and you have a dual to the parser

But you asked for a sample, so try this on for size: Visual Studio contains a UML editor with excellent symmetry. The way both it and the editors are implemented, all constitute views of the model, and editing either modifies the model resulting in all remaining in synch.

link|flag

Your Answer

Get an OpenID
or

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