1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
/**************************************************************************/
/* */
/* The Why platform for program certification */
/* Copyright (C) 2002-2008 */
/* Romain BARDOU */
/* Jean-Franois COUCHOT */
/* Mehdi DOGGUY */
/* Jean-Christophe FILLITRE */
/* Thierry HUBERT */
/* Claude MARCH */
/* Yannick MOY */
/* Christine PAULIN */
/* Yann RGIS-GIANAS */
/* Nicolas ROUSSET */
/* Xavier URBAIN */
/* */
/* This software is free software; you can redistribute it and/or */
/* modify it under the terms of the GNU General Public */
/* License version 2, as published by the Free Software Foundation. */
/* */
/* This software is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */
/* */
/* See the GNU General Public License version 2 for more details */
/* (enclosed in the file GPL). */
/* */
/**************************************************************************/
typedef struct A { unsigned char v; } A ;
typedef struct S { A a; A *b; A c[3]; struct S *s; unsigned char i; } S;
/* @ predicate is_unsigned_char(int x) { 0 <= x <= 255 } */
/* @ predicate is_struct_A(A x) reads x.v */
/* @ axiom is_struct_A_def :
\forall A x ; is_struct_A(x) <=> is_unsigned_char(x.v)
*/
/* @ predicate is_struct_S(S x) reads x.a,x.b,x.c,x.i */
/* @ axiom is_struct_S_def :
\forall S x ; is_struct_S(x) <=>
( is_struct_A(x.a)
&& (\forall int i; \valid(x.b+i) => is_struct_A( *(x.b+i)))
&& \valid_range(x.c,0,3)
&& (\forall int i; 0<=i<=3 => is_struct_A(x.c[i]))
&& (\forall int i; \valid(x.s+i) => is_struct_S( *(x.s+i)))
&& is_unsigned_char(x.i))
*/
struct S aaa;
/*@ requires \valid(x.s) */
int f(struct S x) {
x.s->a.v = 0;
aaa.i = 'a';
return x.c[1].v;
}
|