Question

In: Computer Science

The objective of this assignment is to gain an understanding of the lexical analysis phase of...

The objective of this assignment is to gain an understanding of the lexical analysis phase of a compiler and the process of constructing a symbol table.

Problem: The first phase of compilation is called scanning or lexical analysis. This phase interprets the input program as a sequence of characters and produces a sequence of tokens, which will be used by the parser.

Write a program (in C, C++, C#, Java, or Python) that implements a simple scanner for a source file given as a command-line argument. The format of the tokens is described below. You may assume that the input is syntactically correct. Your program should build a symbol table which contains an entry for each token that was found in the input. When all the input has been read, your program should produce a summary report that includes a list of all the tokens that appeared in the input, the number of times each token appears in the input and the class of each token. Your program should also list how many times tokens of each class appeared in the input.

The grammar for producing tokens is as follows:

keyword ::= if | then | else | begin | end

identifier -> character | character identifier

integer -> digit | digit integer

real -> integer.integer

special -> ( | ) | [ | ] | + | - | = | , | ;

digit -> 0|1|2|3|4|5|6|7|8|9

character -> a|b|c ... |z|A|B|C ... |Z

More details:

  • Case is not used to distinguish keywords or identifiers.

  • The delimiters are space, tab, newline, and the special characters.

  • The token classes that should be recognized are keyword, identifier, integer, real and special.

Solutions

Expert Solution

#include <iostream>
#include <cstring>
#include <cstdlib>
#include <stdio.h>
#include <string>
#include <functional>
#include <map>
#include <vector>
#include <fstream>
#include <cstring>
#include <cstdlib>
#include <stdio.h>
#include <string.h>

using namespace std;

map <string, int> classes = {{"keyword",0},{"identifier",0},{"digit",0},{"integer",0},{"real",0},{"character",0},{"alpha",0}};
vector<string> ints={"0","1","2","3","4","5","6","7","8","9"};
vector<string> keywords={"if","else","then","begin","end"};
vector<string> identifiers={"(",")","[","]","+","=",",","-",";"};
vector<string> alpha={"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"};
vector<std::string>::iterator iter;

bool isKeyword(string ch);
bool isIdentifier(char ch);
bool isInteger(char ch);
bool isDigit(string ch);
bool isReal(string ch);
bool isChar(string ch);
bool isAlpha(char ch);
int cnt_keyword=0;
int cnt_identifier=0;
int cnt_digit=0;
int cnt_integer=0;
int cnt_alpha=0;
int cnt_char=0;
int cnt_real=0;

bool isKeyword(string ch){
iter=find(keywords.begin(),keywords.end(),ch);
if(iter != keywords.end()) {
classes["keyword"]++;
return true;
}
else
{
return false;
}
}
bool isIdentifier(string ch){
iter=find(identifiers.begin(),identifiers.end(),ch);
if(iter != identifiers.end()) {
classes["identifier"]++;
return true;
}
else
{
return false;
}
}
bool isDigit(string ch){
iter=find(ints.begin(),ints.end(),ch);
if(iter != ints.end()) {
classes["digit"]++;
classes["integer"]++;
return true;
}
else
{
return false;
}
}
bool isInteger(string ch){
char * p ;
strtol(ch.c_str(), &p, 10) ;

if (*p == 0) {
classes["digit"]++;
return true;
  
}
else
return false;
}
bool isReal(string ch){
bool isreal=false;
if (ch.find(".") != std::string::npos)
{

for (int j=0; j < ch.length(); j++)
{
if (ch[j] != '.')
{ string search ;
search = ch[j];
iter=find (ints.begin(),ints.end(),search);
if(iter != ints.end()) {
isreal = true;}
else
{isreal=false;}
}
else
{;}

}
}
else
{;}

if (isreal == true)
{
classes["real"]++;
return true;}
else
{return false;}


}
bool isAlpha(string ch){
iter=find(alpha.begin(),alpha.end(),ch);
if(iter != alpha.end()) {
classes["alphabet"]++;
classes["character"]++;
return true;
}
else
{
return false;
}
}
bool isChar(string ch){
bool ischar=false;

for(int i=0; i< ch.length(); i++ )
{
if( isalpha(ch[i]) )
ischar = true;
else
ischar = false;
}

if(ch.length() > 1 && ischar == true ) {
classes["character"]++;
return true;
}
else
{
return false;
}
}

int main(int argc, char *argv[])
{

int tokenCount = 0; // used to count tokens as they are read
  
  
if (argc < 2) {
cerr << "Error: file name argument not given" << endl;
exit(1);
}

ifstream inFile( argv[1], ios::in); // open file for input

// checks for errors in opening the file
if (!inFile) {
cerr << "File " << argv[1] << " could not be opened" << endl;
exit(1);
}
  
  

char line[80]; // char array used to hold lines of text input
char *pch; // pointer used to tokenize string
  
while (inFile.getline(line, 80)) { // reads upto 80 chars into line array

pch = strtok(line, " ~`!@#$^&*_{}:<>|?"); // assigns tokenPtr to first token in line
while (pch != NULL)
{
if (isKeyword(pch)) {
cnt_keyword++;
} else if (isIdentifier(pch)) {
cnt_identifier++;
} else if (isChar(pch)) {
cnt_char++;
} else if (isDigit(pch)) {
cnt_digit++;
} else if (isInteger(pch)) {
cnt_integer++;
} else if (isReal(pch)) {
cnt_real++;
} else if (isAlpha(pch)) {
cnt_alpha++;
} else {
;
}
pch = strtok (NULL, " ~`!@#$^&*_{}:<>|?");
}
}
std::cout << "CLASS " << "keyword" << ": " << classes["keyword"] << '\n';
std::cout << "CLASS " << "identifier" << ": " << classes["identifier"] << '\n';
std::cout << "CLASS " << "digit" << ": " << classes["digit"] << '\n';
std::cout << "CLASS " << "integer" << ": " << classes["integer"] << '\n';
std::cout << "CLASS " << "character" << ": " << classes["character"] << '\n';
std::cout << "CLASS " << "alphabet" << ": " << classes["alphabet"] << '\n';
std::cout << "CLASS " << "real" << ": " << classes["real"] << '\n';


inFile.close();
return 0;
}


Related Solutions

PLEASE WRITE IN C++ only . The objective of this assignment is to gain an understanding...
PLEASE WRITE IN C++ only . The objective of this assignment is to gain an understanding of the lexical analysis phase of a compiler and the process of constructing a symbol table. Problem: The first phase of compilation is called scanning or lexical analysis. This phase interprets the input program as a sequence of characters and produces a sequence of tokens, which will be used by the parser. Write a program (in C, C++, C#, Java, or Python) that implements...
C++ Question The first phase of compilation is called scanning or lexical analysis. This phase interprets...
C++ Question The first phase of compilation is called scanning or lexical analysis. This phase interprets the input program as a sequence of characters and produces a sequence of tokens, which will be used by the parser. Write a C++ program that implements a simple scanner for a source file given as a command-line argument. The format of the tokens is described below. You may assume that the input is syntactically correct. Optionally, your program can build a symbol table...
C++ Question The first phase of compilation is called scanning or lexical analysis. This phase interprets...
C++ Question The first phase of compilation is called scanning or lexical analysis. This phase interprets the input program as a sequence of characters and produces a sequence of tokens, which will be used by the parser. Write a C++ program that implements a simple scanner for a source file given as a command-line argument. The format of the tokens is described below. You may assume that the input is syntactically correct. Optionally, your program can build a symbol table...
C++ Question The first phase of compilation is called scanning or lexical analysis. This phase interprets...
C++ Question The first phase of compilation is called scanning or lexical analysis. This phase interprets the input program as a sequence of characters and produces a sequence of tokens, which will be used by the parser. Write a C++ program that implements a simple scanner for a source file given as a command-line argument. The format of the tokens is described below. You may assume that the input is syntactically correct. Optionally, your program can build a symbol table...
During the risk assessment phase the auditors gain an understanding of the nature and type of...
During the risk assessment phase the auditors gain an understanding of the nature and type of accounting estimates made by management by performing four procedures. What are those four procedures?
The purpose of this assignment is to gain a better understanding of the code sets used...
The purpose of this assignment is to gain a better understanding of the code sets used for medical billing. These sets can be complicated, but you will learn in the EHR#8 assignment this week, that the EHR practice management functions for billing can use the clinical information to help you with code selection. Coding Classification Sets for Medical Coding and Billing Code Set When is this Code Set used? Format Example Source CPT Category I CPT Category I codes are...
Objective: In this assignment you will apply your knowledge and understanding of the AD/AS model to...
Objective: In this assignment you will apply your knowledge and understanding of the AD/AS model to a hypothetical scenario. Instruction: Write a response to the following scenario on a word file or equivalent and submit it as an 'upload file'. Please note you can only submit the following file types, doc, docx, pdf, txt, png, and jpeg. Graphs can be hand-drawn or computer graphics. Remember to correctly label all your graphs! For example, what the x and y axis represent....
Objective: In this assignment, you will apply your knowledge and understanding of poverty and income inequality...
Objective: In this assignment, you will apply your knowledge and understanding of poverty and income inequality to real world issues. I nstruction: Watch and read the following materials before you write your response: The Costs of Inequality - Joseph Stiglitz (Links to an external site.) Three main philosophies of redistribution of income: Utilitarianism: the government should chose policies that maximize the total utility of everyone in society. For example, giving $100 to a homeless person would have a bigger impact...
Objective of this Assignment: To conduct a regression and correlation analysis Instructions: The term paper involves...
Objective of this Assignment: To conduct a regression and correlation analysis Instructions: The term paper involves conducting a regression and correlation analysis on any topic of your choosing. The paper must be based on yearly data for any economic or business variable, for a period of at least 20 years (Note: the source of the data must be given. Data which is not properly documented as to source is unacceptable and paper will be graded F. Textbook examples are unacceptable)....
Objective of this Assignment:    To conduct a regression and correlation analysis Instructions: The term paper involves...
Objective of this Assignment:    To conduct a regression and correlation analysis Instructions: The term paper involves conducting a regression and correlation analysis on any topic of your choosing. The paper must be based on yearly data for any economic or business variable, for a period of at least 20 years (Note: the source of the data must be given. Data which is not properly documented as to source is unacceptable and paper will be graded F. Textbook examples are unacceptable)....
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT