I need to build a simple compiler for Ada productions(short

I need to build a simple compiler for Ada productions(short version). In general the phases of every compiler are :Lexical Analysis ( my first project), Syntax Analysis ( proj2) , Semantic Analysis( the recent project3) and one more for the last project. Project 2 is completed , it works ok ( 95% was graded) and I will provide itI will provide you my instructors website. At the hand outs there are examples for Fortran– productions,flex,bison ( for that I could send it to you .l .y .c .h files -for example in the dropbox folder for project 3 is a file check.c – project3 supposed to be similar but for Ada production ).here is the project :Part 3:Your third part of the project is to traverse the tree, checking the types and generating thesymbol table. The fields in the symbol table is up to you; I would expect at least the nameof the variable, the type, its scope level, and for arrays the upper and the lower limits inthe declaration and the basetype (but it is your choice). You must handle scopes, althoughyou may want to start with only one level, make sure it works, and then add the supportfor multiple scopes. The declarations in a DECLARE section start a scope ending at thecorresponding end.The restrictions in the program are:•a DECLARE starts a new scope that ends at the corresponding END•the type of the LHS and the RHS of an assignment must agree;•the expressions in an IF must have type Boolean;•for a FOR loop, the 2 values in the range must be the same type and the identifier is(implicitly) declared in a new scope that encases the body of the FOR loop•the operands for OR, AND, XOR, and NOT must be Boolean, and the result is Boolean;•the operands for the relational operators must agree, and the result is Boolean;•the operands for the arithmetic operators (including unary + and -) must be Integer,and the result is Integer;•the an Ident used with an index (A(3)) must be declared as an array variable, and the index must be of type Integer. Note there 3 places where a scope starts: the start of the program, every DECLARE, and every FOR.The executable must be called ada, it will take one command-line argument (the input file),and is to output (to stdout) any errors found and just before the end of every scope, thescope level and the names and types of all visible Idents. You must turn in all the sourcefiles: the .l, .y files, the files containing the main program and the checking routines, all the needed .hfiles, and a Makefile with extension .mak.It is my feeling that you should start with one scope with assignments and expressions; thenadd the DECLARE construct, WHILE, EXIT, and FOR; and finally the declaration anduse of array variables.

  1. Start by sharing the instructions of your paper with us  
  2. And then follow the progressive flow.
  3. Have an issue, chat with us now

Regards,

Cathy, CS.