Jump to content

Compiler frontend

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Orcanaria (talk | contribs) at 17:06, 6 February 2013. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

A compiler frontend analyzes the source code to build an internal representation of the program, called the intermediate representation or IR. It also manages the symbol table, a data structure mapping each symbol in the source code to associated information such as location, type and scope.

Overview

Parsing

Compiler Frontend Output