Correction to parsing.cpp in the provided repo:
The parsePlist function neglects to add the identifier content as it inserts arguments.
You'll see the following line of code: // TBD: add to symbol table and set symindx for the parameter's identifierInserting the following line will set the identifier content // TBD: add to symbol table and set symindx for the parameter's identifier subtree->childs[subtree->numChilds+1]->content = paramname; The provided code parses and produces the abstract syntax tree, symbol table, and function table correctly for valid code, and also checks for undeclared/redeclared variables/procedures in valid scopes, but it does NOT include any type checking. I will not require/expect type checking or conversions as part of lab6. The AST shouldn't be too bad to traverse, but if you're reading it the code that parses/builds the IR is U.G.L.Y. ... apologies! I know folks are pretty swamped right now, and compiling to Marie (see below) could prove time consuming, so as an alternative for lab6 credit (not bonus credit) you can choose to have your translation program traverse the IR and produce the C++ equivalent. This should prove similar to earlier labs but actually working from the internal representation this time. |
|
COM a shorter example but with a few features gdef foo text pdef f left real i right begin write "you passed " write i write "type something" read foo write "you wrote" write foo end main begin vdef x real set x left add 10 2.3 right call f left x right end |
Vurbossity | C++ | Marie |
main begin vdef x integer vdef y integer read x read y set x left add x y right write x end | #include <iostream> using namespace std; int main() { int x; int y; cin >> x; cin >> y; x = (x + y); cout << x << endl; return 0; } | main, input store x input store y load x add y store x output halt x, dec 0 y, dec 0 |