Semantics of programming languages

Similar documents
Semantics of programming languages

Semantics of programming languages

Types and Static Type Checking (Introducing Micro-Haskell)

Types and Static Type Checking (Introducing Micro-Haskell)

LL(1) predictive parsing

LL(1) predictive parsing

Modules, Structs, Hashes, and Operational Semantics

CS 4110 Programming Languages & Logics. Lecture 17 Programming in the λ-calculus

Note that in this definition, n + m denotes the syntactic expression with three symbols n, +, and m, not to the number that is the sum of n and m.

UNIVERSITY OF EDINBURGH COLLEGE OF SCIENCE AND ENGINEERING SCHOOL OF INFORMATICS INFR08008 INFORMATICS 2A: PROCESSING FORMAL AND NATURAL LANGUAGES

7. Introduction to Denotational Semantics. Oscar Nierstrasz

Compiler Construction D7011E

Variables. Substitution

CSE450. Translation of Programming Languages. Lecture 11: Semantic Analysis: Types & Type Checking

Chapter 3 (part 3) Describing Syntax and Semantics

Introduction to Syntax Analysis Recursive-Descent Parsing

Types, Expressions, and States

CS 2210 Sample Midterm. 1. Determine if each of the following claims is true (T) or false (F).

Compilers and computer architecture From strings to ASTs (2): context free grammars

axiomatic semantics involving logical rules for deriving relations between preconditions and postconditions.

Syntax and Grammars 1 / 21

Semantic Analysis. Lecture 9. February 7, 2018

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

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

Introduction to the λ-calculus

Introduction to Lexical Analysis

CSCE 314 Programming Languages

1. The output of lexical analyser is a) A set of RE b) Syntax Tree c) Set of Tokens d) String Character

Syntax-Directed Translation. Lecture 14

CMSC 330: Organization of Programming Languages. Formal Semantics of a Prog. Lang. Specifying Syntax, Semantics

CS415 Compilers. Syntax Analysis. These slides are based on slides copyrighted by Keith Cooper, Ken Kennedy & Linda Torczon at Rice University

Automatic generation of LL(1) parsers

CS 6353 Compiler Construction Project Assignments

CMSC 330: Organization of Programming Languages. Operational Semantics

COMP 410 Lecture 1. Kyle Dewey

CSE 413 Languages & Implementation. Hal Perkins Winter 2019 Structs, Implementing Languages (credits: Dan Grossman, CSE 341)

Operational Semantics. One-Slide Summary. Lecture Outline

COMPILER DESIGN. For COMPUTER SCIENCE

Part 5 Program Analysis Principles and Techniques

A Simple Syntax-Directed Translator

Control Structures. Lecture 4 COP 3014 Fall September 18, 2017

Operational Semantics 1 / 13

Chapter 3. Describing Syntax and Semantics

1. (a) What are the closure properties of Regular sets? Explain. (b) Briefly explain the logical phases of a compiler model. [8+8]

Implementation of Lexical Analysis

Parsing II Top-down parsing. Comp 412

CSE P 501 Exam 8/5/04

Working of the Compilers

COS 320. Compiling Techniques

UNIT -2 LEXICAL ANALYSIS

Writing Evaluators MIF08. Laure Gonnord

Chapter 4. Lexical and Syntax Analysis

Intro to semantics; Small-step semantics Lecture 1 Tuesday, January 29, 2013

Abstract Syntax Trees & Top-Down Parsing

Lecture 3: Recursion; Structural Induction

1 Introduction. 3 Syntax

3.7 Denotational Semantics

Context-sensitive Analysis. Copyright 2003, Keith D. Cooper, Ken Kennedy & Linda Torczon, all rights reserved.

Syntactic Analysis. CS345H: Programming Languages. Lecture 3: Lexical Analysis. Outline. Lexical Analysis. What is a Token? Tokens

6.184 Lecture 4. Interpretation. Tweaked by Ben Vandiver Compiled by Mike Phillips Original material by Eric Grimson

Chapter 3. Semantics. Topics. Introduction. Introduction. Introduction. Introduction

6.037 Lecture 4. Interpretation. What is an interpreter? Why do we need an interpreter? Stages of an interpreter. Role of each part of the interpreter

Compilers and computer architecture: Semantic analysis

4. Lexical and Syntax Analysis

The semantics of a programming language is concerned with the meaning of programs, that is, how programs behave when executed on computers.

Topic 6: Types COS 320. Compiling Techniques. Princeton University Spring Prof. David August. Adapted from slides by Aarne Ranta

The Front End. The purpose of the front end is to deal with the input language. Perform a membership test: code source language?

Writing an Interpreter Thoughts on Assignment 6

CS 6353 Compiler Construction Project Assignments

CSc 520 Principles of Programming Languages

CSC324 Principles of Programming Languages

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

CS152: Programming Languages. Lecture 11 STLC Extensions and Related Topics. Dan Grossman Spring 2011

A simple syntax-directed

Boolean expressions. Elements of Programming Languages. Conditionals. What use is this?

Com S 541. Programming Languages I

Abstract Syntax Trees & Top-Down Parsing

Abstract Syntax Trees & Top-Down Parsing

Introduction to Parsing

Program Syntax; Operational Semantics

Harvard School of Engineering and Applied Sciences CS 152: Programming Languages

Implementation of Lexical Analysis

Programming Languages Third Edition

Sémantique des Langages de Programmation (SemLP) DM : Region Types

Denotational Semantics. Domain Theory

ΕΠΛ323 - Θεωρία και Πρακτική Μεταγλωττιστών

This book is licensed under a Creative Commons Attribution 3.0 License

4. Lexical and Syntax Analysis

Lecture 2: Big-Step Semantics

The Substitution Model

Writing a Lexer. CS F331 Programming Languages CSCE A331 Programming Language Concepts Lecture Slides Monday, February 6, Glenn G.

Semantics via Syntax. f (4) = if define f (x) =2 x + 55.

Tail Calls. CMSC 330: Organization of Programming Languages. Tail Recursion. Tail Recursion (cont d) Names and Binding. Tail Recursion (cont d)

CS 6110 S11 Lecture 25 Typed λ-calculus 6 April 2011

LECTURE 7. Lex and Intro to Parsing

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

Lexical Analysis. Chapter 2

Lecture Outline. COOL operational semantics. Operational Semantics of Cool. Motivation. Notation. The rules. Evaluation Rules So Far.

14.1 Encoding for different models of computation

CS 6110 S14 Lecture 1 Introduction 24 January 2014

Transcription:

Semantics of programming languages Informatics 2A: Lecture 27 Alex Simpson School of Informatics University of Edinburgh als@inf.ed.ac.uk 18 November, 2014 1 / 18

Two parallel pipelines A large proportion of the course thus far can be organised into two parallel language processing piplelines. Formal Language Natural Language Program text Text lexing segmentation, tagging Lexemes Tagged words parsing parsing Syntax tree Parse tree type checking agreement checking (Annotated) (Annotated) syntax tree parse tree semantics Logical form 2 / 18

Two parallel pipelines A large proportion of the course thus far can be organised into two parallel language processing piplelines. Formal Language Natural Language Program text Text lexing segmentation, tagging Lexemes Tagged words parsing parsing Syntax tree Parse tree type checking agreement checking (Annotated) (Annotated) syntax tree parse tree semantics semantics Program behaviour Logical form 2 / 18

Two parallel pipelines A large proportion of the course thus far can be organised into two parallel language processing piplelines. Formal Language Natural Language Program text Text lexing segmentation, tagging Lexemes Tagged words parsing parsing Syntax tree Parse tree type checking agreement checking (Annotated) (Annotated) syntax tree parse tree semantics semantics Program behaviour Logical form Today we look at methods of specifying program behaviour. 2 / 18

Semantics for programming languages The syntax of NLs (as described by CFGs etc.) is concerned with what sentences are grammatical and what structure they have, whilst their semantics are concerned with what sentences mean. A similar distinction can be made for programming languages. Rules associated with lexing, parsing and typechecking concern the form and structure of legal programs, but say nothing about what programs should do when you run them. The latter is what programming language semantics is about. It thus concerns the later stages of the formal language processing pipeline. 3 / 18

Specification vs. implementation In principle, one way to give a semantics (or meaning ) for a programming language is to provide a working implementation of it, e.g. an interpreter or compiler for the language. However, such an implementation will probably consist of thousands of lines of code, and so isn t very suitable as a readable definition or reference specification of the language. The latter is what we re interested in here. In other words, we want to fill the blank in the following table: Specification Implementation Lexical structure Regular exprs. Lexer impl. Grammatical structure CFGs Parser impl. Execution behaviour??? Interpreter/compiler 4 / 18

Semantic paradigms We ll look at two styles of formal programming language semantics:. Typically consists of a bunch of rules for executing programs given by syntax trees. Oriented towards implementations of the language. indeed, an op. sem. often gives rise immediately to a toy implementation.. Typically consists of a compositional description of the meaning of program phrases (close in spirit to what we ve seen for NLs). Oriented towards mathematical reasoning about the language and about programs written in it. May be executable or not. These two styles are complementary: ideally, it s nice to have both. There are also other styles (e.g. axiomatic semantics), but we won t discuss them here. 5 / 18

We use Micro-Haskell (recall Lecture 13 and Assignment 1) as a vehicle for introducing the methods of operational and denotational semantics. The format of MH declarations is illustrated by: div :: Integer -> Integer -> Integer ; div x y = if x < y then 0 else 1 + div (x + -y) y ; This declares a function div, of the type specified, such that, when applied to two (non-negative) integer literals m and n, the function application div m n returns, as result, the integer literal representing the integer division of m by n. 6 / 18

Semantic paradigms in the case of MH : This explains the computational process by which MH calculates the value of a function application, such as div m n. : This defines a mathematical denotation [[ div ]] [[ Integer -> Integer -> Integer ]] Roughly, [[ Integer->Integer->Integer ]] is the set of binary functions on integers, and [[ div ]] is the integer-division function. In reality, denotational semantics is more complicated than this. 7 / 18

We model the execution behaviour of programs as a series of reduction steps. E.g. for Micro-Haskell: if 4+5 <= 8 then 4 else 6+7 if 9 <= 8 then 4 else 6+7 if False then 4 else 6+7 6+7 13 A (small-step) operational semantics is basically a bunch of rules for performing such reductions. 8 / 18

More complex example Consider the Micro-Haskell declaration f x y = x+y+x ; This effectively introduces the definition f = λx.λy. x+y+x Now consider the evaluation of f 3 4: f 3 4 (λx.λy. x+y+x) 3 4 (λy. 3+y+3) 4 3+4+3 7 + 3 10 Notice that two of these steps are β-reductions! 9 / 18

for Micro-Haskell: general rules Suppose E is a runtime environment associating a definition to each function symbol, e.g. E(f) = λx.λy.x+y+x. Also let v range over variables of MH, and write n to mean the integer literal for n. Relative to E, we can define as follows: v E(v) (v a variable defined in E) (λv.m)n M[v N] (β-reduction) m + n m + n, and similarly for other infixes. if True then M else N M if False then M else N N Continued on next slide... 10 / 18

for Micro-Haskell (continued) Let s say a term M is a value if it s an integer literal, a boolean literal, or a λ-abstraction. Let V range over values, Intuition: values are terms that can t be reduced any further. We try to reduce all other terms to values. To complete the definition of, we decree that if M M then: MN M N M N M N ( any infix symbol) V M V M (ditto) if M then N else P if M then N else P We then say M V ( M evaluates to V ) if there s a sequence M M 0 M 1 M r V That defines the intended behaviour of Micro-Haskell programs. It s also how the Assignment 1 evaluator for MH works. 11 / 18

Two questions Consider the following MH program. e :: Integer ; e = e ; f :: Integer -> Integer ; f x = if True then 2+3 else 1+x ; What happens if the expressions below are evaluated? e 1 There is a parse error. 2 There is a type error. 3 The evaluator goes into a loop. f e 4 The evaluator terminates and produces an integer as result. 5 The evaluator terminates and produces a different result. 12 / 18

: further remarks What happens if we encounter an expression that isn t a value but can t be reduced? E.g. 5 True, or (λx.x)+4?!!! If our original program typechecks, this can never happen!!! Indeed, it can be proved that: if M can be typed, either it s a value or it can be reduced; if M has type t and M M, then M has type t. That s one reason why type systems are so valuable: they can guarantee programs won t derail at runtime. The general form of operational semantics we ve described is immensely flexible. It works beautifully for functional languages like MH. But it can also be adapted to most other kinds of programming language. 13 / 18

An operational semantics provides a kind of idealized implementation of the language in terms of symbolic rules. That s fine, but doesn t give much structural understanding. Conceptually and mathematically, it is more satisfying to assign meaning to (parts of) a program in roughly the way that mathematical expressions (or indeed NL expressions) have meaning. This is the idea behind denotational semantics: associate a denotation [[ P ]] to each program phrase P in a compositional way. 14 / 18

for MH: first attempt Let s try interpreting MH types by sets in an natural way: [[ Integer ]] = Z [[ Bool ]] = B = {T, F } [[ σ->τ ]] = [[ τ ]] [[ σ ]] (set of all functions from [[ σ ]] to [[ τ ]]) A term M :: τ will receive a denotation [[ M ]] [[ τ ]]. More accurately, if M :: τ is a term in the type environment Γ = x 1 :: σ 1,..., x n :: σ n, its denotation will be a function [[ M ]] Γ : [[ σ 1 ]] [[ σ n ]] [[ τ ]] We define [[ M ]] Γ compositionally. E.g. writing a for a 1,..., a n : [[ n ]] Γ : a n [[ x i ]] Γ : a a i [[ M+N ]] Γ : a [[ M ]] Γ ( a) + [[ N ]] Γ ( a) [[ M N ]] Γ : a [[ M ]] Γ ( a)([[ N ]] Γ ( a)), etc. 15 / 18

for MH: the challenge That works well as far as it goes. The problem comes when we try to interpret recursive definitions, e.g. div = λx.λy.if x < y then 0 else 1 + div (x + -y) y ; Here we d end up trying to define [[ div ]] in terms of itself! Our simple set-theoretic interpretation can t make sense of this. One needs an alternative interpretation that builds in some deeper mathematical properties in order to allow circular definitions. E.g. one can interpret the whole of MH using complete partial orders (non-executable semantics) game models (executable semantics) This is where denotational semantics gets interesting, and where, reluctantly, we move on from MH to something simpler... 16 / 18

for regular expressions Let s turn to an easier example. Recall our (meta)language of regular expressions: R ɛ a RR R + R R In fact, we ve already met two good den. sems. for this! [[ R ]] 1 = L(R), the language (i.e. set of strings) defined by R. [[ R ]] 2 = the particular (ɛ-)nfa for R constructed by the methods of Lecture 5. Both of these are defined compositionally: e.g. L(R + R ) is defined as L(R) L(R ), and the standard NFA for R + R is constructed out of NFAs for R and R. Note that: [[ ]] 1 is more abstract than [[ ]] 2 : can have [[ R ]] 2 [[ R ]] 2 but [[ R ]] 1 = [[ R ]] 1. So [[ ]] 1 is more useful for arguing that two regular expressions are equivalent. However, [[ ]] 2 is naturally executable, while [[ ]] 1 is not. 17 / 18

Summary Formal semantics can be used to give a concise and precise reference specification for the intended behaviour of programs. is nowadays widely used. Denotational semantics gets quite mathematical and is at present more of a research topic., and some kinds of denotational semantics, also offer a starting-point for building working implementations of the language. also offers a framework for proving things about programs. E.g. if [[ P ]] = [[ P ]], that shows that P can be replaced by P in any program context without changing the program s behaviour. Ideas from both op. and den. semantics have had a significant effect on the design of programming languages. 18 / 18