Starting from:
$30

$24

Assignment 2 Lexical Analysis Solution

Introduction



In this assignment we are going to construct a lexical analyzer. Lexical analysis is the process of scanning the source program as a sequence of characters and converting them into sequence of tokens. A program that performs this task is called a lexical analyzer or a lexer or a scanner. For example if a portion of source program contains int x=5; the scanner would convert in a sequence of tokens like <INT<ID,x<ASSIGNOP,=<COST_NUM,5<SEMICOLON .




After successfully(!) completing the construction of a simple symbol table, we will construct a scanner for a subset of C language. The task will be performed using a tool named flex (Fast Lexical Analyzer Generator) which is a popular tool for generating scanners.




Tasks



You have to complete the following tasks in this assignment.







2.1 Identifying Tokens




2.1.1 Keywords




You have to identify the keywords given in Table 1 and print the token in the output file. For example, you will have to print <IF in case you find the keyword if in source program. Keywords will not be inserted in the symbol table.




2.1.2 Constants




For each constant you have to print a token of the format <Type, Symbol in the output file and insert the symbol in symbol table.




Assignment › 2 Page 1 / 5

Keyword
Token
Keyword
Token








if
IF
else
ELSE








for
FOR
while
WHILE








do
DO
break
BREAK








int
INT
char
CHAR








float
FLOAT
double
DOUBLE








void
VOID
return
RETURN








switch
SWITCH
case
CASE








default
DEFAULT
continue
CONTINUE











Table 1: Keyword List




Integer Literals: One or more consecutive digits form an integer literal. Type of token will be CONST_INT. Note that + or - will not be the part of an integer.



Floating Point Literals: Numbers like 3.14159, 3.14159E-10, .314159 and 314159E10 will be considered as floating point constants. In this case, token type will be CONST_FLOAT.



Character Literals: Character literals are enclosed within single quotes. There will be a single character within the single quotes with the exception of `\n', `\t', `\\', `\`, `\a', `\f', `\r', `\b', `\v' and `\0'. For character literals token type will be CONST_CHAR.



Note that, you need to convert the detected lexeme to the actual character. For example if you find `a', then you need to print <CONST_CHAR,a. That means we only need the ASCII code, not the quote symbols around it. Similarly, you need a newline character (ASCII code 10) in your token if you detect `\n'.




2.1.3 Operators and Punctuators




The operator list for the subset of C program we are dealing with is given in the Table 2. A token in the form of <Type,Symbol should be printed in the output file and the operator should be inserted in the symbol table.




2.1.4 Identifiers




Identifiers are names given to C entities, such as variables, functions, structures etc. An identifier can only have alphanumeric characters (a-z, A-Z, 0-9) and underscore (_). The first character of an identifier can only contain alphabet (a-z, A-Z) or underscore (_). For any identifier en-countered in the input file you have to print token <ID,Symbol and also insert it in the symbol table.













Assignment › 2 Page 2 / 5


Symbols
Type




+, -
ADDOP




*,/,%
MULOP




++,--
INCOP




<, <=, , =, ==, !=
RELOP




=
ASSIGNOP




&&, ||
LOGICOP




&,|,,«,»
BITOP
ˆ


!
NOT




(
LPAREN




)
RPAREN




{
LCURL




}
RPAREN




[
LTHIRD




]
RTHIRD




,
COMMA




;
SEMICOLON







Table 2: Operator and Punctuators List




2.1.5 Strings




String literals or constants are enclosed in double quotes “”. String can be single line or multi line. A multi line string is ended with a \character in each line except the last line. You have to print a token like <STRING, abc if you find a string abc in the input file. String will not be inserted in the symbol table.







"This is a single line string";




"This is a\




multiline\




string"







Note that, just like character literal you need to convert the special characters to their original value. If a string contains a \n, then you need to replace that two character with a newline character. For example if the source program contains this eight characters:



















Then the scanner should convert it into the following five characters:
















Assignment › 2 Page 3 / 5









2.1.6 Comments




Comments can be single lined or multiple lined. A single line comment usually start with // symbols. However a comment started with // can be continued to the next line if the first line ends with a ‘\’. A multiline comment starts with /* and terminate with the characters */. If there is any comment in input file you have to recognize it but not generate any token in output file.







A single line comment



A multiple line\ comment



/** Another multiple line Comment */










2.1.7 White Space




You have to ignore all the white spaces in the input file.







2.2 Line Count




You should count the number of lines in the source program.







2.3 Lexical Errors




You should detect lexical errors in the source program and report it along with line number. You have to detect following type of errors.




Too many decimal point error for character sequence like 1.2.345



Ill formed number such as 1E10.7



Invalid Suffix on numeric constant or invalid prefix on identifier for character sequence like 12abcd



Multi character constant error for character sequence like `ab'



Unfinished character such as `a or `\'



Unfinished string



Unfinished comment



Unrecognized character



Also count the total number of errors.




Assignment › 2 Page 4 / 5

Input



The input will be a text file containing a C source program. File name will be given from com-mand line.




Output



In this assignment, there will be two output file. One is a file containing tokens. This file should be named as <YourStudentID_token (For example 1405999_token.txt). You will output all the tokens in this file.




The other file is a log file named as <YourStudentID_log.txt. In this file you will output all the actions performed in your program. For example, after detecting any lexeme except one representing white spaces you will print a line containing Line no <line_count: Token <Token Lexeme <Lexeme found. For example if you find a comment //abcd at line no 5 in your source code you will print Line no 5: Token <Comment Lexeme <abcd found. Note that, although you will not print any token in corresponding token.txt file for comment, you will print it in log file. For any insertion into symbol table, you will print the symbol table in the output file (only print the non empty buckets). If symbol already exists print appropriate message. For any detected error print Line no 5: Corresponding error message. Print the line count and total number of errors found at the end of log file.




For more clarification about input output please refer to the sample input output file given in moodle. You are highly encouraged to produce output exactly like the sample one.




Submission



All Submission will be taken via moodle. Please follow the steps given below to submit you assignment.




In your local machine create a new folder which name is your 7 digit student id.



Put the lex file named as <your_student_id.l containing your code. Also put additional C file or header file that is necessary to compile your lex file. Do not put the generated lex.yy.c file or executable file in this folder.



Compress the folder in a zip file which should be named as your 7 digit student id.



Submit the zip file.






Rules



-100% marks will be given in case of plagiarism.




Assignment › 2 Page 5 / 5

Deadline



Deadline is set at 6:00 am, May 6, 2018 for all lab groups.



















































































































































































































Assignment › 2 Page 6 / 5

More products