Compiler construction

 

 

Prev

Introduction to compiling

Next

Module index

 

Lexical analysis

 


 

Compilers

 

         Compiler

 

 
Simply stated, a compiler is a program that reads a program written in one language-the source language-and translates it into an equivalent program in another language-the target language (see fig.1) As an important part of this translation process, the compiler reports to its user the presence of errors in the source program.                               

 

 

 

 

 Source program                                                                                     Target program

       

                                                                                                                

 

 

 

 


                                                            Error  messages

 

                                                  Fig1. A Compiler

 

Compilers are sometimes classified as single-pass, multi-pass, load-and-go, debugging, or optimizing, depending on how they have been constructed or on what function they are supposed to perform. Despite this apparent complexity, the basic tasks that any compiler must perform are essentially the same.

 

The different phases of a compiler

 

Conceptually, a compiler operates in phases, each of which transforms the source program from one representation to another.

 

                                        

Fig.2. Phases of a compiler

            

The first three phases, forms the bulk of the analysis portion of a compiler. Symbol table management and error handling, are shown interacting with the six phases.

 

Symbol table management

 

An essential function of a compiler is to record the identifiers used in the source program and collect information about various attributes of each identifier. A symbol table is a data structure containing a record for each identifier, with fields for the attributes of the identifier. The data structure allows us to find the record for each identifier quickly and to store or retrieve data from that record quickly. When an identifier in the source program is detected by the lex analyzer, the identifier is entered into the symbol table.

 

Error Detection and Reporting

 

Each phase can encounter errors. A compiler that stops when it finds the first error is not as helpful as it could be.

The syntax and semantic analysis phases usually handle a large fraction of the errors detectable by the compiler. The lexical phase can detect errors where the characters remaining in the input do not form any token of the language. Errors when the token stream violates the syntax of the language are determined by the syntax analysis phase. During semantic analysis the compiler tries to detect constructs that have the right syntactic structure but no meaning to the operation involved.

 

The Analysis phases

 

As translation progresses, the compiler’s internal representation of the source program changes. Consider the statement,

position  :=  initial  +  rate  *  10

 

The lexical analysis phase reads the characters in the source pgm and groups them into a stream of tokens in which each token represents a logically cohesive sequence of characters, such as an identifier, a keyword etc. The character sequence forming a token is called the lexeme for the token. Certain tokens will be augmented by a ‘lexical value’. For example, for any identifier the lex analyzer generates not only the token id but also enter s the lexeme into the symbol table, if it is not already present there. The lexical value associated this occurrence of id points to the symbol table entry for this lexeme. The representation of the statement given above after the lexical analysis would be:

 

id1: = id2 + id3 * 10

 

Syntax analysis imposes a hierarchical structure on the token stream, which is shown by syntax trees (fig 3).

 

Intermediate Code Generation

 

After syntax and semantic analysis, some compilers generate an explicit intermediate representation of the source program. This intermediate representation can have a variety of forms.

In three-address code, the source pgm might look like this,

 

temp1: = inttoreal (10)

temp2: = id3 * temp1

temp3: = id2 + temp2

id1: = temp3

 

Code Optimisation

 

The code optimization phase attempts to improve the intermediate code, so that faster running machine codes will result. Some optimizations are trivial. There is a great variation in the amount of code optimization different compilers perform. In those that do the most, called ‘optimising compilers’, a significant fraction of the time of the compiler is spent on this phase.

 

Code Generation

 

The final phase of the compiler is the generation of target code, consisting normally of relocatable machine code or assembly code. Memory locations are selected for each of the variables used by the program. Then, intermediate instructions are each translated into a sequence of machine instructions that perform the same task. A crucial aspect is the assignment of variables to registers.

 

 

                                          Position : = initial +  rate  *  10

                                                   

 

 

 

 


                                           

                                                 id1: =   id2 + id3 * 10           

 

 

 

 

 


                                                         : =

                                                    

                                              id1              +

 

                                                         id2         *

 

                                                               id3       inttoreal

                                                                      

                                                                               10

 

 

 

 

 

 


                                                    temp1: = inttoreal (10)

                                                    temp2: = id3 * temp1

                                                    temp3: = id2 + temp2

                                                    id1: = temp3

                 Code optimser

 
                                    

 

 

 

 

                                                       temp1: = id3 * 10.0

                                                       id1: = id2 + temp1  

                           

 

 

 

 

 


                                                      

                                                    MOVF   id3, R2

                                                    MULF   #10.0, R2

                                                    MOVF   id2 , R1

                                                    ADDF   R2, R1

                                                    MOVF   R1, id1

 

                                                         Fig.3. Translation of a statement

 

 


 

Prev

Home

Next

Module index

 

 Lexical analysis