I need your opinions in order to choose the best alternative between the choice of to generate an parser tree (ST) or to generate an abstract syntax tree (AST). The is the context:
I want to parse a language like C (just a subset of C with some changes to make it more pseudocode-oriented), but not in order to translate it in other output language/file, but to execute its sentences for animating its execution process (I use Qt to draw). A feature of this C subset is it enables nested scopes. My doubt related to my election between ST and AST arises from the symbol table. The general idea is (using Boost.spirit):
- Parsing a source code file by means of a custom Boost.spirit parser.
- The semantic actions produces a Syntax Tree, just a copy of the source code's syntax tree (or also, a copy of the Boost.spirit's internal syntax tree, but with my own classes and structures). Thus, there isn't a AST.
- With this ST in the hand, the program read this syntax tree in a top-down direction as following:
- Execute the first sentence.
- Upload the symbol table with the new (outcome of the sentence) values.
- Save the actual state of the symbol table in a program state stack.
- To 3.1 until the ST is completely processed.
- Animate the algorithm reading and drawing the program state stack.
Two reasonings:
- If I work with a AST, I lost, after parsing, information about variable declarations, its types and so on. Thus, I have to work with the symbol table by means of the semantic actions of the parser, complicating the parser writing and understanding. Moreover, I have to work all the time with a symbol table with all variables, irrespective of the actual scope (if I'm in the scope i, only need the scopes i, i-1, ...., 1; not all the scopes throughout the algorithm). This spends memory.
- I only need, in my program state stack, variables of the actual and previous scopes, for not complicating the understandability of the algorithm through the animation. If I work with a ST, I have to delete all symbols I don't need before save it in the stack. This spends time.
A static symbol table with control scopes is more difficult to design and use than a dynamic symbol table. A static symbol table must have an identifier (for example) for each scope, and to relate each node of the tree with each identifier. A dynamic symbol table works easier because if I'm in the scope i, only need two "vectors" (perhaps a double-queue and a stack):
- A container (double-queue?) with symbols and its related information: the last variable in the container is the nearest declared variable.
- A container (stack) of integers, showing the beginning (index of the double-queue) of each scope.
For example, for the scope i:
- Container 1: [x y z x a b z f a z]
- Container 2: [0 3 6 8]
If I leave the scope i, only I have to erase the last integer and the symbols from position 8 up to the end. The tree keep unmodified.
Due to I have to execute each sentence in execution time, a ST facilitates my execution.
Two question:
- Which is better then?
- Exist any form to extract the internal tree of Spirit or customizing it in order to not copy it?