Download presentation
Presentation is loading. Please wait.
Published byAshley Stevenson Modified over 9 years ago
1
CSC3315 (Spring 2009)1 CSC 3315 Languages & Compilers Hamid Harroud School of Science and Engineering, Akhawayn University h.harroud@aui.ma http://www.aui.ma/~H.Harroud/csc3315/
2
Semantics There is no single widely acceptable notation or formalism for describing 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 “Program testing can be used to show the presence of bugs, but never to show their absence!” Dijkstra
3
Operational Semantics 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
4
Axiomatic Semantics Based on formal logic (predicate calculus) Original purpose: formal program verification Axioms or inference rules are defined for each statement type in the language (to allow transformations of expressions to other expressions) The expressions are called assertions
5
Axiomatic Semantics (cont.) “Thus the practice of proving programs would seem to lead to solution of three of the most pressing problems in software and programming, namely, reliability, documentation, and compatibility. However, program proving, certainly at present, will be difficult even for programmers of high caliber; and may be applicable only to quite simple program designs.” C.A.R Hoare, 1969
6
Axiomatic Semantics (cont.) 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
7
Axiomatic Semantics Form Pre-, post form: {P} statement {Q} An example a = b + 1 {a > 1} One possible precondition: {b > 10} Weakest precondition: {b > 0}
8
Program Proof Process The postcondition for the entire 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 specification, the program is correct.
9
Axiomatic Semantics: Assignment An axiom for assignment statements {Q x e } x = e {Q} Example: { 0 >= 0 & 0 0 } x = 0; { x >= 0 & x 0 } Exercise: { ? } z = z + 1; { z <= N } { a > b } a = a – b; { ? }
10
Axiomatic Semantics: Inference An inference rule for sequences {P1} S1 {P2} {P2} S2 {P3}
11
x = 0; f = 1; while (x != n) { x = x + 1; f = f * x; } Inference Rule Example P1 S1 S2 P3 We want to prove:{ f = x! } x = x + 1; f = f * x; { f = x! }
12
Looking for P2 such that: { f = x! } x = x + 1; { P2 } f = f * x; { f = x! } We have: f = x! f = ((x + 1) – 1)! So: f = (x – 1)! x x + 1 f = x! P1S1P2 { f = x! } x = x + 1; {f = (x – 1)! } Inference Rule Example
13
Now, we can see that: f = (x – 1)! f * x = (x – 1)! * x = x! So, f = x! f f * x f = (x – 1)! And therefore: {f = (x – 1)! } f = f * x; {f = x! } P2 S2 P3 Inference Rule Example
14
Assume { P & B } S1 {R} and { P & B } S2 {R} Then, we conclude { P } if ( B ) S1 else S2 {R} Axiomatic Semantics: if-else
15
if ( a < 0 ) b = -a; else b = a; We want to prove that R {b = abs(a)} is true: {true} if (a<0) b = -a;else b = a; {b =abs(a) } P B S1 S2 R If-else Example
16
Assume B is true true & a < 0 a < 0 – a = abs(a) Using the axiom for the assignment: {– a = abs(a)} b = -a; {b = abs(a)} Assume B is false: true & a < 0 a 0 a = abs(a) then: {a = abs(a)} b = a; {b = abs(a)} If-else Example
17
Axiomatic Semantics: Loops An inference rule for logical pretest loops {P} while ( B ) S {Q} where I is the loop invariant (the inductive hypothesis) A loop invariant is a condition which is satisfied immediately before a loop, remain true during its execution, and is alaways satisfied at the end fo the loop.
18
Axiomatic Semantics: Loops 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
19
Loop Invariant 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
20
x = 0; f = 1; We know that: while ( x != n ) { { f = x! } x = x + 1; f = f * x; } { f = x! } { f = x! } while ( x != n ) { x = x + 1; f = f * x; } { f = x! & x = n} Loop Invariant Example I B S I & B
21
{ n > 0 } x = 1; p = A; while ( x != n ) { x = x + 1; p = p * A; } { ? } Loop Invariant Example (2)
22
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 Its usefulness in describing the meaning of a programming language is limited for language users or compiler writers
23
Denotational Semantics Based on recursive function theory The most abstract semantics description method Originally developed by Scott and Strachey (1970)
24
Denotational Semantics (continued) The process of building a denotational specification for a language 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
25
Summary BNF and context-free grammars are equivalent meta-languages Well-suited for describing the syntax of programming languages Three primary methods of semantics description Operational, Axiomatic, Denotational
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.