CA3 is due 3/3 at 11PM.
For this assignment, you will write a program that generates machine-dependent assembly instructions for certain simple Cool programs.
You may do this assignment in OCaml, Python, JavaScript, Haskell or Ruby.
You may work in a team of two people for this assignment. You may work in a team for any or all subsequent programming assignments. You do not need to keep the same teammate. The course staff are not responsible for finding you a willing teammate.
For this assignment you will write a correct code generator for a subset of Cool. Among other things, this involves implementing the operational semantics specification of Cool. You do not have to track information to generate run-time errors (e.g., division by zero, dispatch on void). You do not have to worry about "malformed input" because the semantic analyzer (from PA4) will rule out bad programs.
You will also write additional code to unserialize the class map, implementation map, parent map, and annotated AST produced by the semantic analyzer.
You must create three artifacts:
You have your choice of either Cool Assembly Language or x86-64 Assembly Language for this project. You may pick either one, or even switch between assignments if you don't like your initial choice (but the deadlines remain unchanged).
Cool Assembly Language is a simplified RISC-style assembly language that is similar to Java Bytecode.
x86-64 Assembly Language is the real deal — it's what most desktop machines use.
To find out if your development machine supports our flavor of x86-64 assembly language, try this:
./cool --x86 hello-world.cl gcc hello-world.s ./a.out
If there were no assembler or linker errors and you saw "Hello, world.", your system can handle our x86-64 assembly. If not, you must use Cool Assembly Language.
Although we're invoking gcc, that's just shorthand: it's calling as and collect2 and whatnot to assemble the .s file into an object file and link that object file into an executable. You can see the individual steps with gcc -v.
For this assignment you do not have to generate assembly code that checks for or reports run-time errors. (You'll do that for the next assignment.) However, you can save yourself from subsequent regret by remembering that you will eventually have to do so (e.g., don't throw away that line-number information!).
For this assignment, you only have to handle simple Cool programs that use a subset of the possible expressions. The input program will introduce only one class, Main, with only one method, main. The following AST or language elements will not appear:
This results in single-class, single-method Cool programs focusing on integer and boolean manipulation.
I strongly recommend that you convert to a control-flow graph where the basic blocks are three-address code (e.g., as in previous Compilers Assignments) and convert that three-address code into assembly.
You will have to handle certain internal functions (e.g., IO.out_string) that are defined in PA4.
You can do basic testing as follows:
$ cool --asm file.cl-type $ cool file.cl-asm >& reference-output $ my-code-generator file.cl-type $ cool file.cl-asm >& my-output $ diff my-output reference-output
Whitespace and newlines do not matter in your file.{cl-asm,s} assembly code. However, whitespace and newlines do matter for your simulated Cool CPU output. This is because you are specifically being asked to implement IO (and, later, substring) functions.
You should implement all of the relevant operational semantics rules in the Reference Manual. You will also have to implement all of the relevant built-in functions on the IO class.
You must turn in a zip file containing these files:
Your zip file may also contain:
Submit the file as you did for CA1.
You may complete this project in a team of two. Teamwork imposes burdens of communication and coordination, but has the benefits of more thoughtful designs and cleaner programs. Team programming is also the norm in the professional world.
Students on a team are expected to participate equally in the effort and to be thoroughly familiar with all aspects of the joint work. Both members bear full responsibility for the completion of assignments. Partners turn in one solution for each programming assignment; each member receives the same grade for the assignment. If a partnership is not going well, the teaching assistants will help to negotiate new partnerships. Teams may not be dissolved in the middle of an assignment.
If you are working in a team, exactly one team member should submit a CA3 zipfile. That submission should include the file team.txt, a one-line flat ASCII text file that contains exactly and only the email address of your teammate. Don't include the @virginia.edu bit. Example: If ph4u and wrw6y are working together, ph4u would submit ph4u-ca3.zip with a team.txt file that contains the word wrw6y. Then ph4u and wrw6y will both receive the same grade for that submission.
We will use scripts to run your program on various testcases. The testcases will come from the test.cl files you and your classsmates submit as well as held-out testcases used only for grading. Your programs cannot use any special libraries (aside from the OCaml unix and str libraries, which are not necessary for this assignment). We will use (loosely) the following commands to execute them:
You may thus have as many source files as you like (although two or three should suffice) -- they will be passed to your language compiler in alphabetical order (if it matters).
In each case we will then compare your output to the correct answer:
Note that this time we do not ignore newlines and whitespace since we are explicitly testing your implementation of a string IO subsystem. You must get every character correct in non-error instances. If your answer is not the same as the reference answer you get 0 points for that testcase. Otherwise you get 1 point for that testcase.