CS 363 Comparative Programming Languages Semantics.

51
CS 363 Comparative Programming Languages Semantics

Transcript of CS 363 Comparative Programming Languages Semantics.

Page 1: CS 363 Comparative Programming Languages Semantics.

CS 363 Comparative Programming Languages

Semantics

Page 2: CS 363 Comparative Programming Languages Semantics.

Semantics

• Semantics - the meaning of the expressions, statements, and program units

Page 3: CS 363 Comparative Programming Languages Semantics.

Attribute Grammars (AGs) (Knuth, 1968)

• CFGs cannot describe all of the syntax of programming languages– Example: correct type usage, scope, …

• Additions to CFGs to carry semantic info along through parse trees – tie semantics to syntax

• Primary value of AGs:– Static semantics specification

– Compiler design (static semantics checking)

Page 4: CS 363 Comparative Programming Languages Semantics.

Attribute Grammars

• Def: An attribute grammar is a CFG G = (S, N, T, P) with the following additions:– For each grammar symbol x there is a set A(x)

of attribute values– Each production has a set of functions that

define certain attributes of the nonterminals in the rule

Page 5: CS 363 Comparative Programming Languages Semantics.

Expression Grammar

Syntax Semantics

E E1 + T E.val = E1.val + T.val

E T E.val = T.val

T T1 * F T.val = T1.val * F.val

T F T.val = F.val

F identifier F.val = lookup(identifier)

F num F.val = value(num)

F ( E ) F.val = E.val

Page 6: CS 363 Comparative Programming Languages Semantics.

Annotating the parse tree

Syntax Semantics

E E1 + T E.val = E1.val + T.val

E T E.val = T.val

T T1 * F T.val = T1.val * F.val

T F T.val = F.val

F identifier

F.val = lookup(identifier)

F num F.val = value(num)

F ( E ) F.val = E.val

E

E + T

F

Num

= 4

T

T * F

Ident

= lookup(x)

= 3

Num

= 2

FVal = 2

Val = 3

Val = 4

Val = 2

Val = 6

Input: 2 * x + 4

Val = 6

Val = 10

Val = 4

Page 7: CS 363 Comparative Programming Languages Semantics.

Annotating the parse tree

E

E + T

T * F

Num

= 4

T

Num

= 3

Num

= 2

FVal =

Val =

Val =Val =

Val =

Input: 2 + 3 * 4

F

Val =Val =

Val =

Syntax Semantics

E E1 + T E.val = E1.val + T.val

E T E.val = T.val

T T1 * F T.val = T1.val * F.val

T F T.val = F.val

F identifier

F.val = lookup(identifier)

F num F.val = value(num)

F ( E ) F.val = E.val

Page 8: CS 363 Comparative Programming Languages Semantics.

Annotating the parse tree

E

E + T

T * F

Num

= 4

T

Num

= 3

Num

= 2

FVal = 2

Val = 2

Val = 12Val = 2

Val = 14

Input: 2 + 3 * 4

F

Val = 4Val = 3

Val = 3

Syntax Semantics

E E1 + T E.val = E1.val + T.val

E T E.val = T.val

T T1 * F T.val = T1.val * F.val

T F T.val = F.val

F identifier

F.val = lookup(identifier)

F num F.val = value(num)

F ( E ) F.val = E.val

Page 9: CS 363 Comparative Programming Languages Semantics.

Another SemanticsSyntax Semantics

E E1 + T if E1.t == INT and T.t == INT

E.t = INT

E T E.t = T.t

T T1 * F if T1.t == INT and F.t == INT

T.t = INT

T F T.t = F.t

F identifier

F.t = lookuptype(identifier)

F num F.t = INT

F ( E ) F.t = E.t

E

E + T

F

Num

= 4

T

T * F

Ident

= lookup(x)

= INT

Num

= 2

Ft =

t =

t =

t =

t =

Input: 2 * x + 4

t =

t =

t =

Page 10: CS 363 Comparative Programming Languages Semantics.

Another SemanticsSyntax Semantics

E E1 + T if E1.t == INT and T.t == INT

E.t = INT

E T E.t = T.t

T T1 * F if T1.t == INT and F.t == INT

T.t = INT

T F T.t = F.t

F identifier

F.t = lookuptype(identifier)

F num F.t = INT

F ( E ) F.t = E.t

E

E + T

F

Num

= 4

T

T * F

Ident

= lookup(x)

= INT

Num

= 2

Ft = int

t = int

t = int

t = int

t = int

Input: 2 * x + 4

t = int

t = int

t = int

Page 11: CS 363 Comparative Programming Languages Semantics.

Another SemanticsSyntax Semantics

E E1 + T if E1.t == INT and T.t == INT

E.t = INT

E T E.t = T.t

T T1 * F if T1.t == INT and F.t == INT

T.t = INT

T F T.t = F.t

F identifier

F.t = lookuptype(identifier)

F num F.t = INT

F ( E ) F.t = E.t

E

E + T

F

Num

= 4

T

T * F

Ident

= lookup(x)

= string

Num

= 2

Ft = int

t = string

t =

t = int

t =

Input: 2 * x + 4

t = ERROR!!

t =

t =

Page 12: CS 363 Comparative Programming Languages Semantics.

Synthesized Attributes

Synthesized attributes – the value of a synthesized attribute for a node is computed using only information associated with the node’s children (or the lexical analyzer for leaf nodes).

Example:Production Semantic Rules

A B C D A.a := B.b + C.e

Page 13: CS 363 Comparative Programming Languages Semantics.

Inherited Attributes

Inherited attributes – if an attribute is not synthesized, it is inherited.

Example:Production Semantic Rules

A B C D B.b := A.a + C.b

Page 14: CS 363 Comparative Programming Languages Semantics.

Attribute Grammars

• How are attribute values computed?– If all attributes are inherited, the tree could be

decorated in top-down order.– If all attributes are 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.

Page 15: CS 363 Comparative Programming Languages Semantics.

Semantics

There is no single widely acceptable notation or formalism for describing semantics

• Operational Semantics

• Axiomatic Semantics

• Denotational Semantics

Page 16: CS 363 Comparative Programming Languages Semantics.

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

Page 17: CS 363 Comparative Programming Languages Semantics.

Operational Semantics

• To use operational semantics for a high-level language, a virtual machine is needed

• The process:– 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)

Page 18: CS 363 Comparative Programming Languages Semantics.

Example

for i = 1, 10 do

body

end for

i = 1;

loop:

if (i > 10) goto endloop

body

i= i + 1

goto loop

endloop:

Page 19: CS 363 Comparative Programming Languages Semantics.

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

Page 20: CS 363 Comparative Programming Languages Semantics.

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

Page 21: CS 363 Comparative Programming Languages Semantics.

Axiomatic Semantics

• Pre-post form: {P} statement {Q}

• An example: a = b + 1 {a > 1}

One possible precondition: {b > 10}

Weakest precondition: {b > 0}

Page 22: CS 363 Comparative Programming Languages Semantics.

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.

• {pre} program {post}

Page 23: CS 363 Comparative Programming Languages Semantics.

Axiomatic Semantics

Axiom for assignment statement (x = E):

{Qx->E} x = E {Q}

Apply this to: {???} a = b + 1 {a > 1}

{a>1ab+1} = {b+1 > 1} = {b > 0}

{b > 0} a = b + 1 { a > 1}

Page 24: CS 363 Comparative Programming Languages Semantics.

Assignment Statements

{ ?? } c := 5 { }

{ } b := b + 5 { }

{ } b := b + 5 { a > b - 5 }

Page 25: CS 363 Comparative Programming Languages Semantics.

Assignment Statements

{ ?? } c := 5 { }

{ } b := b + 5 { }

{ a > b } b := b + 5 { a > b - 5 }

Page 26: CS 363 Comparative Programming Languages Semantics.

Sequence of Assignments

{ ?? } c := 5 { }

{ } b := b + 5 { a > b }

{ a > b } b := b + 5 { a > b - 5 }

Page 27: CS 363 Comparative Programming Languages Semantics.

Sequence of Assignments

{ ?? } c := 5 { }

{ a > b + 5 } b := b + 5 { a > b }

{ a > b } b := b + 5 { a > b - 5 }

Page 28: CS 363 Comparative Programming Languages Semantics.

Axiomatic Semantics

An inference rule for sequences S1;S2:

{P1} S1 {P2}

{P2} S2 {P3}

the inference rule is:

{P3} S2 S1; {P1}{P3} S2 {P2} {P2}, S1 {P1}

Page 29: CS 363 Comparative Programming Languages Semantics.

Sequence of Assignments

{ ?? } c := 5 { a > b + 5 }{ a > b + 5 } b := b + 5 { a > b }{ a > b } b := b + 5 { a > b - 5 }

Can apply sequence rule{ a > b + 5 }

b := b + 5; b := b + 5 { a > b - 5 }

Page 30: CS 363 Comparative Programming Languages Semantics.

Sequence of Assignments

{} c := 5 { a > b + 5 }

{ a > b + 5} b := b + 5; b := b + 5 { a > b - 5 }

Assignment axiom and sequence rule:

{a > b + 5} c := 5;

b := b + 5; b := b + 5 { a > b - 5 }

Page 31: CS 363 Comparative Programming Languages Semantics.

Conditional Statements

{ ?? }

if (x > 0) y = y – 1

else y = y + 1

{y > 0}

• Inference Rule:

{B and P} S1 {Q}, {~B and P}S2{Q}{P} if B then S1 else S2 {Q}

Page 32: CS 363 Comparative Programming Languages Semantics.

Conditional Statements

{}

if (x > 0) y = y – 1

else y = y + 1

{y > 0}

Assignment axiom:

{(x > 0) and (y > 1)}

y = y – 1

{y > 0}

{(x <= 0) and (y > -1)

y = y + 1

{y > 0}

Page 33: CS 363 Comparative Programming Languages Semantics.

Axiomatic Semantics

• The Rule of Consequence:

Since we know:

{(x <= 0) and (y > -1)}y = y + 1 {y > 0}, {y > 1} {y > -1}

we know:

{(x <=0) and (y>1)}y = y + 1{y > 0}

}{Q' S }{P'

Q' Q P, P' {Q}, S {P}

Page 34: CS 363 Comparative Programming Languages Semantics.

Conditional Statements

{y > 1}

if (x > 0) y = y – 1

else y = y + 1

{y > 0}

{(x > 0) and (y > 1)}

y = y – 1

{y > 0}

{(x <= 0) and (y > 1)

y = y + 1

{y > 0}

Page 35: CS 363 Comparative Programming Languages Semantics.

Conditional Semantics

• Other conditionals have rules as well:

{B and P} S1 {Q}, {~B and P} Q{P} if B then S1 {Q}

Page 36: CS 363 Comparative Programming Languages Semantics.

Loop example

{ P }

while y <> x do

y = y + 1

end

{y = x}

• What should P be?

• What happens to P as the loop executes?

• It seems like P and ~(y<>x) should tell us something.

Page 37: CS 363 Comparative Programming Languages Semantics.

Axiomatic Semantics

• An inference rule for logical pretest loops

{P} while B do S end {Q}

the inference rule is:

where I is the loop invariant (the inductive hypothesis)

B)}(not and {I S do B while{I}

{I} S B) and (I

Page 38: CS 363 Comparative Programming Languages Semantics.

Axiomatic Semantics• Loop invariant I must meet the following

conditions:– P => I (the loop invariant must be true initially)– {I} B {I} (evaluation of the loop test 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)

Page 39: CS 363 Comparative Programming Languages Semantics.

Loop example

{ P }while y <> x do y = y + 1end{y = x}

use I = P = {y <= x}

• Need to show– P => I– {I} B {I}– {I and B} S {I} – (I and (not B)) =>

Q – The loop terminates

Page 40: CS 363 Comparative Programming Languages Semantics.

Loop example

{ n >= 0}count = n;fact = 1;while count <> 0 do fact = fact * count count = count – 1end{fact = n!}

I = {fact=(count+1) * …* n AND count >= 0}

• Need to show– P => I– {I} B {I}– {I and B} S {I} – (I and (not B)) =>

Q – The loop terminates

Page 41: CS 363 Comparative Programming Languages Semantics.

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

• Can be tricky – not automatically derivable from the loop

Page 42: CS 363 Comparative Programming Languages Semantics.

Semantics

• Evaluation of axiomatic semantics:– 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

Page 43: CS 363 Comparative Programming Languages Semantics.

Semantics

• Denotational Semantics– Based on recursive function theory– The most abstract semantics description method– Originally developed by Scott and Strachey

(1970)

Page 44: CS 363 Comparative Programming Languages Semantics.

Denotational Semantics

• The process of building a denotational spec 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

Page 45: CS 363 Comparative Programming Languages Semantics.

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

Page 46: CS 363 Comparative Programming Languages Semantics.

Denotational Semantics

• The state of a program is the values of all its current variables

s = {<i1, v1>, <i2, v2>, …, <in, vn>}

• Let VARMAP be a function that, when given a variable name and a state, returns the current value of the variable

VARMAP(ij, s) = vj

Page 47: CS 363 Comparative Programming Languages Semantics.

Semantics

• Decimal Numbers– The following denotational semantics

description maps decimal numbers as strings of symbols into numeric values

Page 48: CS 363 Comparative Programming Languages Semantics.

Semantics

<dec_num> 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | <dec_num> (0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9)

Mdec('0') = 0, Mdec ('1') = 1, …, Mdec ('9') = 9

Mdec (<dec_num> '0') = 10 * Mdec (<dec_num>)

Mdec (<dec_num> '1’) = 10 * Mdec (<dec_num>) + 1…

Mdec (<dec_num> '9') = 10 * Mdec (<dec_num>) + 9

Page 49: CS 363 Comparative Programming Languages Semantics.

Semantics

• Expressions– Map expressions onto Z {error}– We assume expressions are decimal numbers,

variables, or binary expressions having one arithmetic operator and two operands, each of which can be an expression

Page 50: CS 363 Comparative Programming Languages Semantics.

Semantics

• The meaning of the loop is the value of the program variables after the statements in the loop have been executed the prescribed number of times, assuming there have been no errors

• In essence, the loop has been converted from iteration to recursion, where the recursive control is mathematically defined by other recursive state mapping functions

• Recursion, when compared to iteration, is easier to describe with mathematical rigor

Page 51: CS 363 Comparative Programming Languages Semantics.

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