Compiler construction

Compiler construction is an area of computer science that deals with the theory and practice of developing programming languages and their associated compilers.

The theoretical portion is primarily concerned with syntax, grammar and semantics of programming languages. One could say that this gives this particular area of computer science a strong tie with linguistics. Some courses on compiler construction will include a simplified grammar of a spoken language that can be used to form a valid sentence for the purposes of providing students with an analogy to help them understand how grammar works for programming languages.

The practical portion covers actual implementation of compilers for languages. Students will typically end up writing the front end of a compiler for a simplistic teaching language, such as Micro.

Lexical analysis

Main article: Lexical analysis

The first phase of a compiler is called lexical analysis. This phase involves grouping the characters that make up the source program into meaningful sequences called lexemes. Lexemes belong to token classes such as "integer", "identifier", or "whitespace". A token of the form <token-class, attribute-value> is produced for each lexeme. Lexical analysis is also called scanning.[1]:5-6

Syntax analysis

Main article: Syntax analysis

The second phase of constructing a compiler is syntax analysis. The output of lexical analyser is used to create a representation which shows the grammatical structure of the tokens. Syntax analysis is also called parsing.[1]:8

Semantic analysis

Main article: Semantic analysis

Semantic analysis is the final phase of the compiler front end. During this phase, the compiler applies semantic rules to the syntax tree built by the parser. The tasks performed during this phase vary depending on the design of the compiler, but typically include type checking, scope checking and object binding. Symbol tables may also be constructed during semantic analysis in preparation for code generation. In some cases, such as a one-pass compiler, semantic analysis is done at the same time as syntax analysis. [2]

History

Subfields

See also

Further reading

References

  1. 1 2 Aho, Alfred V.; Lam, Monica S.; Sethi, Ravi; Ullman, Jeffrey D. (1986). Compilers: Principles, Techniques, and Tools (2nd Edition). Pearson. ISBN 0-321-48681-1.
  2. Watt, David (2000). Programming Language Processors in Java. Prentice Hall. ISBN 0130257869.

External links


This article is issued from Wikipedia - version of the Sunday, November 01, 2015. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.