Introduction to Compiler Construction

Similar documents
Introduction to Compiler Construction

Introduction to Compiler Construction

CS 4201 Compilers 2014/2015 Handout: Lab 1

COMPILER DESIGN LECTURE NOTES

Introduction to Compiler Design


COMP455: COMPILER AND LANGUAGE DESIGN. Dr. Alaa Aljanaby University of Nizwa Spring 2013

PRINCIPLES OF COMPILER DESIGN UNIT I INTRODUCTION TO COMPILERS

PRINCIPLES OF COMPILER DESIGN UNIT I INTRODUCTION TO COMPILING

A Simple Syntax-Directed Translator

Structure of a compiler. More detailed overview of compiler front end. Today we ll take a quick look at typical parts of a compiler.

Lexical Analyzer Scanner

Lexical Analyzer Scanner

Formal Languages and Compilers Lecture I: Introduction to Compilers

Introduction to Compiler Construction

Introduction to Compiler Construction

COP 3402 Systems Software. Lecture 4: Compilers. Interpreters

Examples of attributes: values of evaluated subtrees, type information, source file coordinates,

A simple syntax-directed

A programming language requires two major definitions A simple one pass compiler

CS 321 IV. Overview of Compilation

Compiler Design (40-414)

COMP-421 Compiler Design. Presented by Dr Ioanna Dionysiou

Compiler Design. Computer Science & Information Technology (CS) Rank under AIR 100

Context-Free Grammar. Concepts Introduced in Chapter 2. Parse Trees. Example Grammar and Derivation

Earlier edition Dragon book has been revised. Course Outline Contact Room 124, tel , rvvliet(at)liacs(dot)nl

Compiling Regular Expressions COMP360

COMP-421 Compiler Design. Presented by Dr Ioanna Dionysiou

COMPILER DESIGN. For COMPUTER SCIENCE

CST-402(T): Language Processors

Syntax-Directed Translation


Group A Assignment 3(2)

Introduction. Compilers and Interpreters

Compilers. Prerequisites

LECTURE 3. Compiler Phases

LECTURE NOTES ON COMPILER DESIGN P a g e 2

9/5/17. The Design and Implementation of Programming Languages. Compilation. Interpretation. Compilation vs. Interpretation. Hybrid Implementation

Stating the obvious, people and computers do not speak the same language.

Symbol Tables. ASU Textbook Chapter 7.6, 6.5 and 6.3. Tsan-sheng Hsu.

CSE450 Translation of Programming Languages. Lecture 4: Syntax Analysis

CPS 506 Comparative Programming Languages. Syntax Specification

Optimization. ASU Textbook Chapter 9. Tsan-sheng Hsu.

Working of the Compilers

CSE 401 Midterm Exam Sample Solution 11/4/11

COMP 181 Compilers. Administrative. Last time. Prelude. Compilation strategy. Translation strategy. Lecture 2 Overview

COMPILER DESIGN UNIT I LEXICAL ANALYSIS. Translator: It is a program that translates one language to another Language.

CD Assignment I. 1. Explain the various phases of the compiler with a simple example.

Defining Program Syntax. Chapter Two Modern Programming Languages, 2nd ed. 1

Compilers and Interpreters

Compiler Code Generation COMP360

UNIT I- LEXICAL ANALYSIS. 1.Interpreter: It is one of the translators that translate high level language to low level language.

Semantic Analysis. Outline. The role of semantic analysis in a compiler. Scope. Types. Where we are. The Compiler Front-End

Introduction. Interpreters High-level language intermediate code which is interpreted. Translators. e.g.

Compiling and Interpreting Programming. Overview of Compilers and Interpreters

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Compiler Design

Undergraduate Compilers in a Day

Compiler Structure. Lexical. Scanning/ Screening. Analysis. Syntax. Parsing. Analysis. Semantic. Context Analysis. Analysis.

Software II: Principles of Programming Languages

CS606- compiler instruction Solved MCQS From Midterm Papers

The role of semantic analysis in a compiler

Question Bank. 10CS63:Compiler Design

Pioneering Compiler Design

Theory and Compiling COMP360

LANGUAGE TRANSLATORS

Compilers. Lecture 2 Overview. (original slides by Sam

CS Lecture 2. The Front End. Lecture 2 Lexical Analysis

CS131: Programming Languages and Compilers. Spring 2017

COMPILERS BASIC COMPILER FUNCTIONS

2.2 Syntax Definition

Life Cycle of Source Program - Compiler Design

1. INTRODUCTION TO LANGUAGE PROCESSING The Language Processing System can be represented as shown figure below.

COSE312: Compilers. Lecture 1 Overview of Compilers

Compilers and Code Optimization EDOARDO FUSELLA

INTRODUCTION TO COMPILER AND ITS PHASES

Compiling Techniques

COSC121: Computer Systems: Runtime Stack

Principles of Programming Languages COMP251: Syntax and Grammars

Compiler Design Overview. Compiler Design 1

Why are there so many programming languages? Why do we have programming languages? What is a language for? What makes a language successful?

COP4020 Programming Languages. Compilers and Interpreters Robert van Engelen & Chris Lacher

Lexical analysis. Syntactical analysis. Semantical analysis. Intermediate code generation. Optimization. Code generation. Target specific optimization

Theoretical Part. Chapter one:- - What are the Phases of compiler? Answer:

The Structure of a Syntax-Directed Compiler

Time : 1 Hour Max Marks : 30

Lexical Analysis. Introduction

DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Subject Name: CS2352 Principles of Compiler Design Year/Sem : III/VI

The Compiler So Far. CSC 4181 Compiler Construction. Semantic Analysis. Beyond Syntax. Goals of a Semantic Analyzer.

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING ACADEMIC YEAR / EVEN SEMESTER

Syntax Errors; Static Semantics

Syntactic Analysis. The Big Picture Again. Grammar. ICS312 Machine-Level and Systems Programming

This book is licensed under a Creative Commons Attribution 3.0 License

COMPILERS AND INTERPRETERS Lesson 4 TDDD16

Semantic Analysis. Outline. The role of semantic analysis in a compiler. Scope. Types. Where we are. The Compiler so far

Early computers (1940s) cost millions of dollars and were programmed in machine language. less error-prone method needed

CS 4240: Compilers and Interpreters Project Phase 1: Scanner and Parser Due Date: October 4 th 2015 (11:59 pm) (via T-square)

When do We Run a Compiler?

LESSON 13: LANGUAGE TRANSLATION

Program Analysis ( 软件源代码分析技术 ) ZHENG LI ( 李征 )

Compilers. Pierre Geurts

Transcription:

Introduction to Compiler Construction ASU Textbook Chapter 1 Tsan-sheng Hsu tshsu@iis.sinica.edu.tw http://www.iis.sinica.edu.tw/~tshsu 1

What is a compiler? Definitions: A recognizer. A translator. source program compiler target program Source and target must be equivalent! Compiler writing spans: programming languages machine architecture language theory algorithms and data structures software engineering History: 1950: the first FORTRAN compiler took 18 man-years now: using software tools, can be done in a few months as a student's project Compiler notes #1, Tsan-sheng Hsu, IIS 2

Computer language compilers Applications Translator: from one format to another query interpreter text formatter silicon compiler infix notation postfix notation: 3 + 5-6 * 6 ====> 3 5 + 6 6 * - pretty printers Computational theory power of certain machines the set of languages that can be recognized by this machine Grammar definition of this machine Compiler notes #1, Tsan-sheng Hsu, IIS 3

Flow chart of a typical compiler source code sequence of characters lexical analyzer (scanner) sequence of tokens syntax analyzer (parser) abstract-syntax tree semantic analyzer annoted abstract-syntax tree intermediate code generator intermediate code Error Handling optimizer optimized code code generator target code Compiler notes #1, Tsan-sheng Hsu, IIS 4

Scanner Actions: reads characters from the source program groups characters into LEXEMS (sequences of characters that ``go together'') following a given pattern each lexeme corresponds to a TOKEN; the scanner returns the next token (plus maybe some additional information) to the parser the scanner may also discover lexical errors (i.e., erroneous characters) The definitions of what a lexeme, token or bad character is depend on the definition of the source language. Compiler notes #1, Tsan-sheng Hsu, IIS 5

Lexeme: C sentence Scanner example for C L1: x = y2 + 12; (Lexeme) L1 : x = y2 + 12 ; (Token) ID COLON ID ASSIGN ID PLUS INT SEMI-COL Arbitrary number of blanks between lexemes. Erroneous sequence of characters for C language: control characters @ 2abc Compiler notes #1, Tsan-sheng Hsu, IIS 6

Parser Actions: Group tokens into grammatical phrases, to discover the underlying structure of the source Find syntax errors, e.g., the following C source line: (Lexeme) index = * 12 ; (Token) ID ASSIGN TIMES INT SEMI-COL Every token is legal, but the sequence is erroneous. May find some static semantic errors, e.g., use of undeclared variables or multiple declared variables. May generate code, or build some intermediate representation of the source program, such as an abstract-syntax tree. Compiler notes #1, Tsan-sheng Hsu, IIS 7

Parser example for C Source code: Position = initial + rate * 60; Abstract-syntax tree: = position + initial * interior nodes of the tree are OPERATORS; a node's children are its OPERANDS; each subtree forms a logical unit. rate 60 the subtree with * at its root shows that multiplication has higher precedence than +, this operation must be performed as a unit, not ``initial + rate''. Compiler notes #1, Tsan-sheng Hsu, IIS 8

Semantic Analyzer Actions: Check for more static semantic errors, e.g., type errors. May annotate and/or change the abstract syntax tree. = position + initial * rate 60 = position + (float) initial * (float) rate int to float() (float) 60 Compiler notes #1, Tsan-sheng Hsu, IIS 9

Intermediate code generator Actions: translate from abstract-syntax tree to intermediate code. One choice for intermediate code is 3-address code : Each statement contains at most 3 operands; in addition to ``:='' (assignment), at most one operator an''easy'' and ``universal'' format to be translated into most assembly languages Example: = position + (float) initial * (float) rate int to float() (float) 60 temp1 := int-to-float(60) temp2 := rate * temp1 temp3 := initial + temp2 position := temp3 Compiler notes #1, Tsan-sheng Hsu, IIS 10

Optimizer Improve the efficiency of intermediate code Goal may be to make code run smaller. faster, and/or make the code temp1 := int-to-float(60) Example: temp2 := rate * temp1 temp3 := initial + temp2 = temp2 := rate * 60.0 position := initial + temp2 position := temp3 Compiler notes #1, Tsan-sheng Hsu, IIS 11

A compiler may generate Code generation pure machine codes (machine dependent assembly language) directly, which is rare now. virtual machine code Example: PASCAL compiler P-code interpreter execution Speed is roughly 4 times slower than running directly generated machine codes. Advantages: simplify the job of a compiler decrease the size of the generated code: can be run easily on a variety of platforms 1/3 for P-code P-machine is an ideal general machine whose interpreter can be written easily divide and conquer recent example: JAVA Compiler notes #1, Tsan-sheng Hsu, IIS 12

Code generation example temp2 := rate * 60.0 position := initial + temp2 = LOADF rate, R 1 MULF #60.0, R 1 LOADF initial, R 2 ADDF R 2, R 1 STOREF R 1, position Compiler notes #1, Tsan-sheng Hsu, IIS 13

Preprocessing phase: macro substitution: #define MAXC 10 Practical considerations rational preprocessing: add new features for old languages BASIC C compiler directives: #include <stdio.h> non-standard language extensions. Compiler notes #1, Tsan-sheng Hsu, IIS 14

Passes of compiling Practical considerations II First pass reads the text file once. May need to read the text one more time for any forward addressed objects, i.e., anything that is used before its declaration. Example: C language goto error handling; error handling: Compiler notes #1, Tsan-sheng Hsu, IIS 15

Each pass takes I/O time. Reduce number of passes Back-patching : leave a blank slot for missing information, and fill in the empty slot when the information becomes available. Example: C language when a label is encountered check known labels if not encountered before, then check this in to-be-processed table when a label is used check whether it is defined if not, save a trace into the to-be-processed table Time and Space trade-off! Compiler notes #1, Tsan-sheng Hsu, IIS 16