LARA

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
sav07_lecture_3_skeleton [2007/03/20 14:42]
vkuncak
sav07_lecture_3_skeleton [2007/03/20 18:14]
wikiadmin
Line 1: Line 1:
 ====== Lecture 3 (Skeleton) ====== ====== Lecture 3 (Skeleton) ======
 +
 +===== Converting programs (with simple values) to formulas =====
 +
 +
 +
 +
  
 ==== Context ==== ==== Context ====
Line 6: Line 12:
   * represent programs using guarded command language, e.g. desugaring of '​if'​ into non-deterministic choice and assume   * represent programs using guarded command language, e.g. desugaring of '​if'​ into non-deterministic choice and assume
   * give meaning to guarded command language statements as relations   * give meaning to guarded command language statements as relations
-  * we can represent relations using set comprehensions;​ if our program ​has two state components, we can represent its meaning R(r) as +  * we can represent relations using set comprehensions;​ if our program ​has two state components, we can represent its meaning R( ) as $\{((x_0,​y_0),​(x,​y)) \mid F \}$, where F is some formula that has x,y,x_0,y_0 as free variables
-<​latex>​ + 
-\{((x_0,​y_0),​(x,​y)) \mid F \} +  * this is what I mean by ''​simple values'':​ later we will talk about modeling pointers and arrays, but we will still use this as a starting point.
-</​latex> ​      +
-    ​where F is some formula that has x,y,x_0,y_0 as free variables.+
  
-Our goal is to find rules for computing R(r) that are+Our goal is to find rules for computing R( ) that are
   * correct   * correct
   * efficient   * efficient
-  * create formulas that we can prove later+  * create formulas that we can effectively ​prove later 
 + 
 +What exactly do we prove about the formula R( c ) ? 
 + 
 +We prove that this formula is **valid** 
 + 
 +  R( c ) -> error=false
  
  
Line 22: Line 32:
 In our simple language, basic statements are assignment, havoc, assume, assert. In our simple language, basic statements are assignment, havoc, assume, assert.
  
-R(x=t) = (x=t & y=y_0 & error=error_0)+  ​R(x=t) = (x=t & y=y_0 & error=error_0)
  
 **Note**: all our statements will have the property that if error_0 = true, then error=true. ​ That is, you can never recover from an error state. ​ This is convenient: if we prove no errors at the end, then there were never errors in between. **Note**: all our statements will have the property that if error_0 = true, then error=true. ​ That is, you can never recover from an error state. ​ This is convenient: if we prove no errors at the end, then there were never errors in between.
Line 28: Line 38:
 **Note**: the condition y=y_0 & error=error_0 is called <​b>​frame condition</​b>​. ​ There are as many conjuncts as there are components of the state. ​ This can be annoying to write, so let us use shorthand frame(x) for it.  The shorthand frame(x) denotes a conjunction of v=v_0 for all v that are distinct from x (in this case y and error). ​ We can have zero or more variables as arguments of frame, so frame() means that nothing changes. **Note**: the condition y=y_0 & error=error_0 is called <​b>​frame condition</​b>​. ​ There are as many conjuncts as there are components of the state. ​ This can be annoying to write, so let us use shorthand frame(x) for it.  The shorthand frame(x) denotes a conjunction of v=v_0 for all v that are distinct from x (in this case y and error). ​ We can have zero or more variables as arguments of frame, so frame() means that nothing changes.
  
-R(havoc x) = frame(x) +  ​R(havoc x) = frame(x) 
-R(assume F) = F[x:=x_0, y:=y_0, error:​=error_0] +  R(assume F) = F[x:=x_0, y:=y_0, error:​=error_0] 
-R(assert F) = (F -> frame)+  R(assert F) = (F -> frame)
  
 **Note**: **Note**:
  
-x=t  is same as  havoc(x);​assume(x=t)+  ​x=t  is same as  havoc(x);​assume(x=t)
  
-assert false = crash  (stops with error)+  ​assert false = crash  (stops with error)
  
-assume true  = skip   (does nothing)+  ​assume true  = skip   (does nothing)
  
  
Line 48: Line 58:
 Non-deterministic choice is union of relations, that is, disjunction of formulas: Non-deterministic choice is union of relations, that is, disjunction of formulas:
  
-CR(c1 [] c2) = CR(c1) | CR(c2)+  ​CR(c1 [] c2) = CR(c1) | CR(c2)
  
 In sequential composition we follow the rule for composition of relations. ​ We want to get again formula with free variables x_0,​y_0,​x,​y. ​ So we need to do renaming. ​ Let x_1,​y_1,​error_1 be fresh variables. In sequential composition we follow the rule for composition of relations. ​ We want to get again formula with free variables x_0,​y_0,​x,​y. ​ So we need to do renaming. ​ Let x_1,​y_1,​error_1 be fresh variables.
  
-CR(c1 ; c2) = exists x_1,​y_1,​error_1. ​ CR(c1)[x:​=x_1,​y:​=y_1,​error:​=error_1] & CR(c2)[x:​=x_1,​y:​=y_1,​error:​=error_1]+  ​CR(c1 ; c2) = exists x_1,​y_1,​error_1. ​ CR(c1)[x:​=x_1,​y:​=y_1,​error:​=error_1] & CR(c2)[x:​=x_1,​y:​=y_1,​error:​=error_1]
  
-otherwise+The base case is
  
-CR(c)=R(c)     (base case)+  ​CR(c)=R(c)
  
 +when c is a basic command.
  
-==== Accumulation ​of equalities ====+ 
 + 
 + 
 + 
 +==== Avoiding accumulation ​of equalities ====
  
 This approach generates many variables and many frame conditions.  ​ This approach generates many variables and many frame conditions.  ​
  
-Ignoring error for the moment:+Ignoring error for the moment, we have, for example:
  
   R(x=3) = (x=3 & y=y_0)   R(x=3) = (x=3 & y=y_0)
Line 72: Line 87:
 But if a variable is equal to another, it can be substituted using the substitution rules But if a variable is equal to another, it can be substituted using the substitution rules
  
-(exists x_1. x_1 = t & F(x_1)) ​    <​-> ​   F(t) +  ​(exists x_1. x_1=t & F(x_1)) ​    <​-> ​   F(t) 
-(forall x_1. x_1 = t -> F(x_1) ​    <​-> ​   F(t)+  (forall x_1. x_1=t -> F(x_1) ​    <​-> ​   F(t)
  
 +We can apply these rules to reduce the size of formulas.
  
-==== Papers ====+==== Abstraction ==== 
 + 
 +  * for proving properties 
 +  * for finding errors 
 + 
 +==== Symbolic execution ==== 
 + 
 +Symbolic execution converts programs into formulas by going forward. ​ It is therefore somewhat analogous to the way an [[interpreter]] for the language would work.  It is based on the notion of strongest postcondition. 
 + 
 + 
 +==== Weakest preconditions ==== 
 + 
 +While symbolic execution computes formula by going forward along the program syntax tree, weakest precondition computes formula by going backward. 
 + 
 +===== Proving quantifier-free linear arithmetic formulas ===== 
 + 
 +===== Papers ​=====
  
   * Verification condition generation in Spec#: http://​research.microsoft.com/​~leino/​papers/​krml157.pdf   * Verification condition generation in Spec#: http://​research.microsoft.com/​~leino/​papers/​krml157.pdf
Line 85: Line 117:
   * Specializing PA bounds: http://​www.lmcs-online.org/​ojs/​viewarticle.php?​id=43&​layout=abstract   * Specializing PA bounds: http://​www.lmcs-online.org/​ojs/​viewarticle.php?​id=43&​layout=abstract
  
 +
 +
 +
 +Test : \\
 +\begin{eqnarray*}
 +\Psi_0 &=& -C_{abcd} Y_0^a m^b Y_1^c m^d e^{-2i\gamma} \\
 +\Psi_4 &=& -C_{abcd} Y_1^a \bar{m}^b Y_1^c \bar{m}^d e^{2i\gamma}
 +\end{eqnarray*}