Starting from:

$29.99

CS502 Project 3: Type Checking - Functions - Heap Allocation Solved

ntroduction
In this project, we will enrich the language we de ned in the rst two projects.

At the end of the project, we will be able to parse full programs, including functions and arrays. Our parser will generate an intermediate representation in the form of an Abstract Syntax Tree (AST), and our Semantic Analyzer will be able to verify that the typing rules are being enforced.

With functions now in our language, we can add a little bit of I/O. When writing code in our programming language, the programmer will have access to two primitives:

getchar of type () = Int. doc

putchar of type Int = Unit. doc (we do not return the character)

Using these functions may lead to some issues when the code is launched from sbt. In order to test, launch the out binary generated in the folder gen/.

Step 1: Getting Started
The project has been designed and tested for Linux/Mac OS. If you only have Windows installed on your personal laptop, consider running Linux in a VM or using the lab machines for the project.

If you use remote access to work on your project, please use one of the lab machines pod1-1 to pod1-20 with the suf x cs.purdue.edu (e.g. pod1-1.cs.purdue.edu) Download the skeleton le here.

tar xzvf proj3.tar.gz cd proj3

Step 2: Project Structure
Browse the Files
A description of the different les is provided below. The les you need to complete are Parser.scala, SemanticAnalyzer.scala, Interpreter.scala, and Compiler.scala. Following the path of the rst project, we are going to implement the parser step by step. Follow the comments in the code and nd the TODOs. The parts are independent and can be develop separately. In order to implement the new features more easily, we have changed some of the previous class/function de nition we had. You can search for the string CHANGE into the source code to see these modi cations. src/main/scala/project3/Util.scala

This le de nes multiple classes that are used to generate the code and run it on your machine. Nothing needs to be modi ed, but it is recommended to read it and have an idea of what is happening behind the scenes. gen/bootstrap.c

As we are generating assembly code which is OS dependent, we are using GCC to do the heavy lifting for us. The bootstrap le is a generic C le that is allocation a chunk of memory called heap. This memory region is sent to our program through an argument of the function entry_point. The exit code of our program is then printed on the screen. Our compiler will generate the le gen/gen.s and will be assembled and bootstrapped by gcc:

gcc bootstrap.c gen.s -o out

out will then execute our program.

src/main/scala/project3/Main.scala
The main function is de ned in this le. The data ow in this le can be seen as:



You will be implementing many different parsers in order to test them through the main function.

The AST generated will then go through the semantic analyzer. If there are no errors, then the code is going to be interpreted or compiled. We provide you with one interpreter. You will have to write one interpreter and one compiler.

As our language becomes more complex, it will become more useful to read the code from a source le. A folder with sample les examples/ has been provided. Here some examples how to run the code:

sbt run

Usage: run PROG [OPTION]

   or: run FILE [OPTION]

OPTION: intStack

run examples/valid_arithm.scala           --- interpreter with the provided interpreter, and x8

run examples/valid_arithm.scala intStack    --- stack interpreter (your code), and x86 compiler



However, it is still possible to run code from the command line, as in project 1:

sbt

run "val x = 5; x"

run "val x = 5; x" intStack

src/main/scala/project3/Parser.scala
This class contains the de nition of our intermediate language.

As we discussed in class, we are introducing types in our language. In addition to Integer, we will also have the types Boolean and Unit. You will need to modify the Scanner class in order to tokenize the constants of type Boolean correctly. There is a single Unit constant: (). Because this construct can be used for other reasons (e.g. a function without parameters), the () will still be parsed into two delimiters: '(' and ')'. The function parseAtom will be handling the Unit literal.

The rest of the le is the de nition of each parser we are building, starting from a base parser that is an implementation of the parser we implemented in project 2. What you have to do for this project is highlighted with TODOs in the code. We encourage you to read the comments and code carefully before proceeding. src/main/scala/project3/SemanticAnalyzer.scala

While the parser is in charge of verifying that the input string follows the de ned syntax, the semantic analyzer veri es that the program described is meaningful and follows the rules. The skeleton code already contains the semantic checks we implemented in project 2.

However as we have seen in class, we are upgrading our semantic analyzer into a type checker. Your job is to complete the typeInfer function using the rules we have seen in class. src/main/scala/project3/Interpreter.scala

As we have seen in class, now that our programing language accepts more than just mathematical expressions, we need to de ne the required behavior of our language. An interpreter can be used to de ne this meaning.

We provide you with an interpreter that is fully functional. Your job is to complete the Stack-based interpreter.

src/main/scala/project3/Compiler.scala
The x86_64 compiler handling all features up to loops is already implemented for you. You need to complete the compiler with the new features. src/test/scala/project3/*Test.scala

These les contain some unit tests for the rst parsers. You will have to write your own tests for the others. There are some functions given to you in order to make the implementation easier.

Extra Credit
Char
The programmer can use two functions to interact with the console: getchar and putchar. However, we do not have characters, so in order to print hello world, we would have to write the code: putchar(72); putchar(101); putchar(108); putchar(108); putchar(111); ...

This is not really convenient; we would rather do:

putchar(toInt('H')); putchar(toInt('e')); putchar(toInt('l')); putchar(toInt('l'))...

(much better isn't it?)

We are therefore going to add a new type in the language: Char. All letters, numbers, punctuation signs and spaces should be handled, e.g. you don't have to handle the escaping characters '\n', '\r'... In the program, a programmer will be able to use the single quote notation to enter a character e.g. 'H'. You will also provide two primitives operations:

toInt: of type Char = Int toChar: of type Int = Char

You can use the example of the Array look up transformation into primitive. In the skeleton this is done in the semantic analyzer in the App case. The x86 implementation: toInt will be a no-op and toChar:

mov loc, %rax movzbq %al, loc

Functions as value
In the Compiler.scala le, there are some places marked as Extra Credit. These are the places where we need to generate code for functions used as arguments, stored into variables, or returned from a function. While you are required to parse this kind of code correctly and be able to type check it, you are not required to generate the corresponding x86 code. Implementing such generation correctly will be counted as extra credit.

More products