ISBN 0-321-19362-8 Chapter 3 Describing Semantics -Attribute Grammars -Dynamic Semantics.

Slides:



Advertisements
Similar presentations
Semantics Static semantics Dynamic semantics attribute grammars
Advertisements

ICE1341 Programming Languages Spring 2005 Lecture #6 Lecture #6 In-Young Ko iko.AT. icu.ac.kr iko.AT. icu.ac.kr Information and Communications University.
Copyright © 2006 Addison-Wesley. All rights reserved.1-1 ICS 410: Programming Languages Chapter 3 : Describing Syntax and Semantics Axiomatic Semantics.
ISBN Chapter 3 Describing Syntax and Semantics.
Copyright © 2006 Addison-Wesley. All rights reserved. 3.5 Dynamic Semantics Meanings of expressions, statements, and program units Static semantics – type.
Fall Semantics Juan Carlos Guzmán CS 3123 Programming Languages Concepts Southern Polytechnic State University.
CS 330 Programming Languages 09 / 19 / 2006 Instructor: Michael Eckmann.
1 Semantic Description of Programming languages. 2 Static versus Dynamic Semantics n Static Semantics represents legal forms of programs that cannot be.
CS 355 – Programming Languages
Describing Syntax and Semantics
Concepts of Programming Languages 1 Describing Syntax and Semantics Brahim Hnich Högskola I Gävle
Axiomatic Semantics Dr. M Al-Mulhem ICS
CS 330 Programming Languages 09 / 18 / 2007 Instructor: Michael Eckmann.
Copyright © 2006 Addison-Wesley. All rights reserved.1-1 ICS 410: Programming Languages Chapter 3 : Describing Syntax and Semantics Operational Semantics.
ISBN Chapter 3 Describing Syntax and Semantics.
Dr. Muhammed Al-Mulhem 1ICS ICS 535 Design and Implementation of Programming Languages Part 1 Fundamentals (Chapter 4) Axiomatic Semantics ICS 535.
CS 330 Programming Languages 09 / 16 / 2008 Instructor: Michael Eckmann.
Describing Syntax and Semantics
ISBN Chapter 3 Describing Syntax and Semantics.
ISBN Chapter 3 Describing Syntax and Semantics.
Describing Syntax and Semantics
Copyright © 1998 by Addison Wesley Longman, Inc. 1 Chapter 3 Syntax - the form or structure of the expressions, statements, and program units Semantics.
ISBN Chapter 3 Describing Syntax and Semantics.
CS Describing Syntax CS 3360 Spring 2012 Sec Adapted from Addison Wesley’s lecture notes (Copyright © 2004 Pearson Addison Wesley)
Chapter Describing Syntax and Semantics. Chapter 3 Topics 1-2 Introduction The General Problem of Describing Syntax Formal Methods of Describing.
ISBN Chapter 3 Describing Syntax and Semantics.
Course: ICS313 Fundamentals of Programming Languages. Instructor: Abdul Wahid Wali Lecturer, College of Computer Science and Engineering.
TextBook Concepts of Programming Languages, Robert W. Sebesta, (10th edition), Addison-Wesley Publishing Company CSCI18 - Concepts of Programming languages.
Describing Syntax and Semantics
CS 363 Comparative Programming Languages Semantics.
Muhammad Idrees Lecturer University of Lahore 1. Outline Introduction The General Problem of Describing Syntax Formal Methods of Describing Syntax Attribute.
3.2 Semantics. 2 Semantics Attribute Grammars The Meanings of Programs: Semantics Sebesta Chapter 3.
ISBN Chapter 3 Describing Semantics.
Chapter 3 Part II Describing Syntax and Semantics.
ISBN Chapter 3 Describing Syntax and Semantics.
Chapter 3 Describing Syntax and Semantics. Copyright © 2012 Addison-Wesley. All rights reserved. 1-2 Chapter 3 Topics Introduction The General Problem.
Semantics In Text: Chapter 3.
Chapter 3 Describing Syntax and Semantics. Chapter 3: Describing Syntax and Semantics - Introduction - The General Problem of Describing Syntax - Formal.
Syntax and Semantics CIS 331 Syntax: the form or structure of the expressions, statements, and program units. Semantics: the meaning of the expressions,
Copyright © 2006 Addison-Wesley. All rights reserved. Ambiguity in Grammars A grammar is ambiguous if and only if it generates a sentential form that has.
CCSB 314 Programming Language Department of Software Engineering College of IT Universiti Tenaga Nasional Chapter 3 Describing Syntax and Semantics.
1 / 48 Formal a Language Theory and Describing Semantics Principles of Programming Languages 4.
Chapter 3 © 2002 by Addison Wesley Longman, Inc Introduction - Who must use language definitions? 1. Other language designers 2. Implementors 3.
Describing Syntax and Semantics Session 2 Course : T Programming Language Concept Year : February 2011.
Chapter 3 Describing Syntax and Semantics. Copyright © 2012 Addison-Wesley. All rights reserved.1-2 Chapter 3 Topics Introduction The General Problem.
ISBN Chapter 3 Describing Syntax and Semantics.
CSC3315 (Spring 2009)1 CSC 3315 Languages & Compilers Hamid Harroud School of Science and Engineering, Akhawayn University
C HAPTER 3 Describing Syntax and Semantics. D YNAMIC S EMANTICS Describing syntax is relatively simple There is no single widely acceptable notation or.
Lecture 3 Concepts of Programming Languages Arne Kutzner Hanyang University / Seoul Korea.
Advanced programming language theory. week 2. Attribute grammars and semantics.
PZ03CX Programming Language design and Implementation -4th Edition Copyright©Prentice Hall, PZ03CX - Language semantics Programming Language Design.
Describing Syntax and Semantics
Describing Syntax and Semantics
Describing Syntax and Semantics
Syntax Questions 6. Define a left recursive grammar rule.
Describing Syntax and Semantics
Describing Syntax and Semantics
Describing Syntax and Semantics
Semantics In Text: Chapter 3.
Chapter 3: Describing Syntax and Semantics Sangho Ha
Describing Syntax and Semantics
Describing Syntax and Semantics
Describing Syntax and Semantics
Describing Syntax and Semantics
Describing Syntax and Semantics
Describing Syntax and Semantics
Describing Syntax and Semantics
Chapter 3 (b) Semantics.
- Who must use language definitions?
Presentation transcript:

ISBN Chapter 3 Describing Semantics -Attribute Grammars -Dynamic Semantics

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-2 Introduction Who must use language definitions? –Other language designers –Implementors –Programmers (the users of the language) Syntax - the form or structure of the expressions, statements, and program units Semantics - the meaning of the expressions, statements, and program units

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-3 Attribute Grammars (AGs) (Knuth, 1968) Context free grammars cannot describe all of the syntax of programming languages Additions to context free grammars allow some semantic info to be carried along through parse trees Primary value of attribute grammars: –Static semantics specification –Compiler design (static semantics checking)

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-4 Attribute Grammars Def: An attribute grammar is a context free grammar with the following additions: –For each grammar symbol x there is a set A(x) of attribute values –Each rule has a set of functions that define certain attributes of the nonterminals in the rule –Each rule has a (possibly empty) set of predicates to check for attribute consistency

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-5 Attribute Grammars Let X 0  X 1... X n be a rule Functions of the form S(X 0 ) = f(A(X 1 ),..., A(X n )) define synthesized attributes Functions of the form I(X j ) = f(A(X 0 ),..., A(X n )), for i <= j <= n, define inherited attributes Initially, there are intrinsic attributes on the leaves

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-6 Attribute Grammars Example: expressions of the form id + id –id's can be either int_type or real_type –types of the two id's must be the same –type of the expression must match it's expected type BNF:  +  id Attributes: –actual_type - synthesized for and –expected_type - inherited for

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-7 The Attribute Grammar Syntax rule:  [1] + [2] Semantic rules:.actual_type  [1].actual_type Predicate: [1].actual_type == [2].actual_type.expected_type ==.actual_type Syntax rule:  id Semantic rule:.actual_type  lookup (.string)

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-8 Attribute Grammars How are attribute values computed? –If all attributes were inherited, the tree could be decorated in top-down order. –If all attributes were synthesized, the tree could be decorated in bottom-up order. –In many cases, both kinds of attributes are used, and it is some combination of top-down and bottom-up that must be used.

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-9 A parse tree for A = A + B

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-10 Attribute Grammars.expected_type  inherited from parent [1].actual_type  lookup (A) [2].actual_type  lookup (B) [1].actual_type =? [2].actual_type.actual_type  [1].actual_type.actual_type =?.expected_type

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-11 The flow of attributes in the tree

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-12 A fully attributed parse tree

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-13 Dynamic Semantics There is no single widely acceptable notation or formalism for describing semantics Three notations –Operational Semantics –Axiomatic Semantics –Denotational Semantics

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-14 Operational Semantics Describe the meaning of a program by executing its statements on a machine, either simulated or actual. The change in the state of the machine (memory, registers, etc.) defines the meaning of the statement To use operational semantics for a high-level language, a virtual machine is needed –A hardware pure interpreter would be too expensive –A software pure interpreter also has problems: The detailed characteristics of the particular computer would make actions difficult to understand Such a semantic definition would be machine- dependent

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-15 Operational Semantics A better alternative: A complete computer simulation –Build a translator (translates source code to the machine code of an idealized computer) –Build a simulator for the idealized computer Evaluation of operational semantics: –Good if used informally (language manuals, etc.) –Extremely complex if used formally (e.g., VDL)

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-16 Axiomatic Semantics Based on formal logic (predicate calculus) Original purpose: formal program verification Approach: Define axioms or inference rules for each statement type in the language (to allow transformations of expressions to other expressions) The expressions are called assertions Inference rule has form

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-17 Axiomatic Semantics An assertion before a statement (a precondition) states the relationships and constraints among variables that are true at that point in execution An assertion following a statement is a postcondition A weakest precondition is the least restrictive precondition that will guarantee the postcondition

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-18 Axiomatic Semantics Pre-post form: {P} statement {Q} An example: a = b + 1 {a > 1} One possible precondition: {b > 10} Weakest precondition: {b > 0}

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-19 Axiomatic Semantics Program proof process: The postcondition for the whole program is the desired result. Work back through the program to the first statement. If the precondition on the first statement is the same as the program spec, the program is correct.

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-20 Axiomatic Semantics An axiom for assignment statements (x = E): {Q x->E } x = E {Q} The Rule of Consequence:

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-21 Axiomatic Semantics An inference rule for sequences For a sequence S1;S2: {P1} S1 {P2} {P2} S2 {P3} the inference rule is:

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-22 Axiomatic Semantics An inference rule for logical pretest loops For the loop construct: {P} while B do S end {Q} the inference rule is: where I is the loop invariant (the inductive hypothesis)

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-23 Axiomatic Semantics Characteristics of the loop invariant I must meet the following conditions: –P => I (the loop invariant must be true initially) –{I} B {I} (evaluation of the Boolean must not change the validity of I) –{I and B} S {I} (I is not changed by executing the body of the loop) –(I and (not B)) => Q (if I is true and B is false, Q is implied) –The loop terminates (this can be difficult to prove)

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-24 Axiomatic Semantics The loop invariant I is a weakened version of the loop postcondition, and it is also a precondition. I must be weak enough to be satisfied prior to the beginning of the loop, but when combined with the loop exit condition, it must be strong enough to force the truth of the postcondition

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-25 Axiomatic Semantics Evaluation: –Developing axioms or inference rules for all of the statements in a language is difficult –It is a good tool for correctness proofs, and an excellent framework for reasoning about programs, but it is not as useful for language users and compiler writers

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-26 Denotational Semantics Based on recursive function theory The most abstract semantics description method Originally developed by Scott and Strachey (1970)

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-27 Denotational Semantics The process of building a denotational specification for a language (not necessarily easy): –Define a mathematical object for each language entity –Define a function that maps instances of the language entities onto instances of the corresponding mathematical objects The meaning of language constructs are defined by only the values of the program's variables

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-28 Operational vs. Denotational Semantics The difference between denotational and operational semantics: In operational semantics, the state changes are defined by coded algorithms; in denotational semantics, they are defined by rigorous mathematical functions

Copyright © 2004 Pearson Addison-Wesley. All rights reserved.3-29 Denotational Semantics Evaluation of denotational semantics: –Can be used to prove the correctness of programs –Provides a rigorous way to think about programs –Can be an aid to language design –Has been used in compiler generation systems