| author | wenzelm | 
| Sat, 01 Sep 2012 19:46:21 +0200 | |
| changeset 49063 | f93443defa6c | 
| parent 48168 | e825bbf49363 | 
| child 56798 | 939e88e79724 | 
| permissions | -rw-r--r-- | 
| 45044 | 1 | (*<*) | 
| 2 | theory Reference | |
| 3 | imports SPARK | |
| 4 | begin | |
| 5 | ||
| 6 | syntax (my_constrain output) | |
| 7 |   "_constrain" :: "logic => type => logic" ("_ \<Colon> _" [4, 0] 3)
 | |
| 8 | (*>*) | |
| 9 | ||
| 10 | chapter {* HOL-\SPARK{} Reference *}
 | |
| 11 | ||
| 12 | text {*
 | |
| 13 | \label{sec:spark-reference}
 | |
| 14 | This section is intended as a quick reference for the HOL-\SPARK{} verification
 | |
| 15 | environment. In \secref{sec:spark-commands}, we give a summary of the commands
 | |
| 16 | provided by the HOL-\SPARK{}, while \secref{sec:spark-types} contains a description
 | |
| 17 | of how particular types of \SPARK{} and FDL are modelled in Isabelle.
 | |
| 18 | *} | |
| 19 | ||
| 20 | section {* Commands *}
 | |
| 21 | ||
| 22 | text {*
 | |
| 23 | \label{sec:spark-commands}
 | |
| 24 | This section describes the syntax and effect of each of the commands provided | |
| 25 | by HOL-\SPARK{}.
 | |
| 26 | @{rail "@'spark_open' name ('(' name ')')?"}
 | |
| 27 | Opens a new \SPARK{} verification environment and loads a file with VCs. The file can be either
 | |
| 28 | a \texttt{*.vcg} or a \texttt{*.siv} file. The corresponding \texttt{*.fdl} and \texttt{*.rls}
 | |
| 29 | files must reside in the same directory as the file given as an argument to the command. | |
| 30 | This command also generates records and datatypes for the types specified in the | |
| 31 | \texttt{*.fdl} file, unless they have already been associated with user-defined
 | |
| 32 | Isabelle types (see below). | |
| 33 | Since the full package name currently cannot be determined from the files generated by the | |
| 34 | \SPARK{} Examiner, the command also allows to specify an optional package prefix in the
 | |
| 35 | format \texttt{$p_1$\_\_$\ldots$\_\_$p_n$}. When working with projects consisting of several
 | |
| 36 | packages, this is necessary in order for the verification environment to be able to map proof | |
| 37 | functions and types defined in Isabelle to their \SPARK{} counterparts.
 | |
| 38 | @{rail "@'spark_proof_functions' ((name '=' term)+)"}
 | |
| 39 | Associates a proof function with the given name to a term. The name should be the full name | |
| 40 | of the proof function as it appears in the \texttt{*.fdl} file, including the package prefix.
 | |
| 41 | This command can be used both inside and outside a verification environment. The latter | |
| 42 | variant is useful for introducing proof functions that are shared by several procedures | |
| 43 | or packages, whereas the former allows the given term to refer to the types generated | |
| 44 | by \isa{\isacommand{spark\_open}} for record or enumeration types specified in the
 | |
| 45 | \texttt{*.fdl} file.
 | |
| 46725 
d34ec0512dfb
Added infrastructure for mapping SPARK field / constructor names
 berghofe parents: 
45044diff
changeset | 46 | @{rail "@'spark_types' ((name '=' type (mapping?))+);
 | 
| 
d34ec0512dfb
Added infrastructure for mapping SPARK field / constructor names
 berghofe parents: 
45044diff
changeset | 47 | mapping: '('((name '=' nameref)+',')')'"}
 | 
| 45044 | 48 | Associates a \SPARK{} type with the given name with an Isabelle type. This command can
 | 
| 49 | only be used outside a verification environment. The given type must be either a record | |
| 46725 
d34ec0512dfb
Added infrastructure for mapping SPARK field / constructor names
 berghofe parents: 
45044diff
changeset | 50 | or a datatype, where the names of fields or constructors must either match those of the | 
| 
d34ec0512dfb
Added infrastructure for mapping SPARK field / constructor names
 berghofe parents: 
45044diff
changeset | 51 | corresponding \SPARK{} types (modulo casing), or a mapping from \SPARK{} to Isabelle
 | 
| 
d34ec0512dfb
Added infrastructure for mapping SPARK field / constructor names
 berghofe parents: 
45044diff
changeset | 52 | names has to be provided. | 
| 
d34ec0512dfb
Added infrastructure for mapping SPARK field / constructor names
 berghofe parents: 
45044diff
changeset | 53 | This command is useful when having to define | 
| 45044 | 54 | proof functions referring to record or enumeration types that are shared by several | 
| 55 | procedures or packages. First, the types required by the proof functions can be introduced | |
| 56 | using Isabelle's commands for defining records or datatypes. Having introduced the | |
| 57 | types, the proof functions can be defined in Isabelle. Finally, both the proof | |
| 58 | functions and the types can be associated with their \SPARK{} counterparts.
 | |
| 59 | @{rail "@'spark_status' (('(proved)' | '(unproved)')?)"}
 | |
| 60 | Outputs the variables declared in the \texttt{*.fdl} file, the rules declared in
 | |
| 61 | the \texttt{*.rls} file, and all VCs, together with their status (proved, unproved).
 | |
| 62 | The output can be restricted to the proved or unproved VCs by giving the corresponding | |
| 63 | option to the command. | |
| 64 | @{rail "@'spark_vc' name"}
 | |
| 65 | Initiates the proof of the VC with the given name. Similar to the standard | |
| 66 | \isa{\isacommand{lemma}} or \isa{\isacommand{theorem}} commands, this command
 | |
| 67 | must be followed by a sequence of proof commands. The command introduces the | |
| 68 | hypotheses \texttt{H1} \dots \texttt{H$n$}, as well as the identifiers
 | |
| 69 | \texttt{?C1} \dots \texttt{?C$m$} corresponding to the conclusions of the VC.
 | |
| 48168 | 70 | @{rail "@'spark_end' '(incomplete)'?"}
 | 
| 71 | Closes the current verification environment. Unless the \texttt{incomplete}
 | |
| 72 | option is given, all VCs must have been proved, | |
| 45044 | 73 | otherwise the command issues an error message. As a side effect, the command | 
| 74 | generates a proof review (\texttt{*.prv}) file to inform POGS of the proved
 | |
| 75 | VCs. | |
| 76 | *} | |
| 77 | ||
| 78 | section {* Types *}
 | |
| 79 | ||
| 80 | text {*
 | |
| 81 | \label{sec:spark-types}
 | |
| 82 | The main types of FDL are integers, enumeration types, records, and arrays. | |
| 83 | In the following sections, we describe how these types are modelled in | |
| 84 | Isabelle. | |
| 85 | *} | |
| 86 | ||
| 87 | subsection {* Integers *}
 | |
| 88 | ||
| 89 | text {*
 | |
| 90 | The FDL type \texttt{integer} is modelled by the Isabelle type @{typ int}.
 | |
| 91 | While the FDL \texttt{mod} operator behaves in the same way as its Isabelle
 | |
| 92 | counterpart, this is not the case for the \texttt{div} operator. As has already
 | |
| 93 | been mentioned in \secref{sec:proving-vcs}, the \texttt{div} operator of \SPARK{}
 | |
| 94 | always truncates towards zero, whereas the @{text div} operator of Isabelle
 | |
| 95 | truncates towards minus infinity. Therefore, the FDL \texttt{div} operator is
 | |
| 96 | mapped to the @{text sdiv} operator in Isabelle. The characteristic theorems
 | |
| 97 | of @{text sdiv}, in particular those describing the relationship with the standard
 | |
| 98 | @{text div} operator, are shown in \figref{fig:sdiv-properties}
 | |
| 99 | \begin{figure}
 | |
| 100 | \begin{center}
 | |
| 101 | \small | |
| 102 | \begin{tabular}{ll}
 | |
| 103 | @{text sdiv_def}: & @{thm sdiv_def} \\
 | |
| 104 | @{text sdiv_minus_dividend}: & @{thm sdiv_minus_dividend} \\
 | |
| 105 | @{text sdiv_minus_divisor}: & @{thm sdiv_minus_divisor} \\
 | |
| 106 | @{text sdiv_pos_pos}: & @{thm [mode=no_brackets] sdiv_pos_pos} \\
 | |
| 107 | @{text sdiv_pos_neg}: & @{thm [mode=no_brackets] sdiv_pos_neg} \\
 | |
| 108 | @{text sdiv_neg_pos}: & @{thm [mode=no_brackets] sdiv_neg_pos} \\
 | |
| 109 | @{text sdiv_neg_neg}: & @{thm [mode=no_brackets] sdiv_neg_neg} \\
 | |
| 110 | \end{tabular}
 | |
| 111 | \end{center}
 | |
| 112 | \caption{Characteristic properties of @{text sdiv}}
 | |
| 113 | \label{fig:sdiv-properties}
 | |
| 114 | \end{figure}
 | |
| 115 | ||
| 116 | \begin{figure}
 | |
| 117 | \begin{center}
 | |
| 118 | \small | |
| 119 | \begin{tabular}{ll}
 | |
| 120 | @{text AND_lower}: & @{thm [mode=no_brackets] AND_lower} \\
 | |
| 121 | @{text OR_lower}: & @{thm [mode=no_brackets] OR_lower} \\
 | |
| 122 | @{text XOR_lower}: & @{thm [mode=no_brackets] XOR_lower} \\
 | |
| 123 | @{text AND_upper1}: & @{thm [mode=no_brackets] AND_upper1} \\
 | |
| 124 | @{text AND_upper2}: & @{thm [mode=no_brackets] AND_upper2} \\
 | |
| 125 | @{text OR_upper}: & @{thm [mode=no_brackets] OR_upper} \\
 | |
| 126 | @{text XOR_upper}: & @{thm [mode=no_brackets] XOR_upper} \\
 | |
| 127 | @{text AND_mod}: & @{thm [mode=no_brackets] AND_mod}
 | |
| 128 | \end{tabular}
 | |
| 129 | \end{center}
 | |
| 130 | \caption{Characteristic properties of bitwise operators}
 | |
| 131 | \label{fig:bitwise}
 | |
| 132 | \end{figure}
 | |
| 133 | The bitwise logical operators of \SPARK{} and FDL are modelled by the operators
 | |
| 134 | @{text AND}, @{text OR} and @{text XOR} from Isabelle's @{text Word} library,
 | |
| 135 | all of which have type @{typ "int \<Rightarrow> int \<Rightarrow> int"}. A list of properties of these
 | |
| 136 | operators that are useful in proofs about \SPARK{} programs are shown in
 | |
| 137 | \figref{fig:bitwise}
 | |
| 138 | *} | |
| 139 | ||
| 140 | subsection {* Enumeration types *}
 | |
| 141 | ||
| 142 | text {*
 | |
| 143 | The FDL enumeration type | |
| 144 | \begin{alltt}
 | |
| 145 | type \(t\) = (\(e\sb{1}\), \(e\sb{2}\), \dots, \(e\sb{n}\));
 | |
| 146 | \end{alltt}
 | |
| 147 | is modelled by the Isabelle datatype | |
| 148 | \begin{isabelle}
 | |
| 149 | \normalsize | |
| 150 | \isacommand{datatype}\ $t$\ =\ $e_1$\ $\mid$\ $e_2$\ $\mid$\ \dots\ $\mid$\ $e_n$
 | |
| 151 | \end{isabelle}
 | |
| 152 | The HOL-\SPARK{} environment defines a type class @{class spark_enum} that captures
 | |
| 153 | the characteristic properties of all enumeration types. It provides the following | |
| 154 | polymorphic functions and constants for all types @{text "'a"} of this type class:
 | |
| 155 | \begin{flushleft}
 | |
| 156 | @{term_type [mode=my_constrain] pos} \\
 | |
| 157 | @{term_type [mode=my_constrain] val} \\
 | |
| 158 | @{term_type [mode=my_constrain] succ} \\
 | |
| 159 | @{term_type [mode=my_constrain] pred} \\
 | |
| 160 | @{term_type [mode=my_constrain] first_el} \\
 | |
| 161 | @{term_type [mode=my_constrain] last_el}
 | |
| 162 | \end{flushleft}
 | |
| 163 | In addition, @{class spark_enum} is a subclass of the @{class linorder} type class,
 | |
| 164 | which allows the comparison operators @{text "<"} and @{text "\<le>"} to be used on
 | |
| 165 | enumeration types. The polymorphic operations shown above enjoy a number of | |
| 166 | generic properties that hold for all enumeration types. These properties are | |
| 167 | listed in \figref{fig:enum-generic-properties}.
 | |
| 168 | Moreover, \figref{fig:enum-specific-properties} shows a list of properties
 | |
| 169 | that are specific to each enumeration type $t$, such as the characteristic | |
| 170 | equations for @{term val} and @{term pos}.
 | |
| 171 | \begin{figure}[t]
 | |
| 172 | \begin{center}
 | |
| 173 | \small | |
| 174 | \begin{tabular}{ll}
 | |
| 175 | @{text range_pos}: & @{thm range_pos} \\
 | |
| 176 | @{text less_pos}: & @{thm less_pos} \\
 | |
| 177 | @{text less_eq_pos}: & @{thm less_eq_pos} \\
 | |
| 178 | @{text val_def}: & @{thm val_def} \\
 | |
| 179 | @{text succ_def}: & @{thm succ_def} \\
 | |
| 180 | @{text pred_def}: & @{thm pred_def} \\
 | |
| 181 | @{text first_el_def}: & @{thm first_el_def} \\
 | |
| 182 | @{text last_el_def}: & @{thm last_el_def} \\
 | |
| 183 | @{text inj_pos}: & @{thm inj_pos} \\
 | |
| 184 | @{text val_pos}: & @{thm val_pos} \\
 | |
| 185 | @{text pos_val}: & @{thm pos_val} \\
 | |
| 186 | @{text first_el_smallest}: & @{thm first_el_smallest} \\
 | |
| 187 | @{text last_el_greatest}: & @{thm last_el_greatest} \\
 | |
| 188 | @{text pos_succ}: & @{thm pos_succ} \\
 | |
| 189 | @{text pos_pred}: & @{thm pos_pred} \\
 | |
| 190 | @{text succ_val}: & @{thm succ_val} \\
 | |
| 191 | @{text pred_val}: & @{thm pred_val}
 | |
| 192 | \end{tabular}
 | |
| 193 | \end{center}
 | |
| 194 | \caption{Generic properties of functions on enumeration types}
 | |
| 195 | \label{fig:enum-generic-properties}
 | |
| 196 | \end{figure}
 | |
| 197 | \begin{figure}[t]
 | |
| 198 | \begin{center}
 | |
| 199 | \small | |
| 200 | \begin{tabular}{ll@ {\hspace{2cm}}ll}
 | |
| 201 | \texttt{$t$\_val}: & \isa{val\ $0$\ =\ $e_1$} & \texttt{$t$\_pos}: & pos\ $e_1$\ =\ $0$ \\
 | |
| 202 |                    & \isa{val\ $1$\ =\ $e_2$} &                    & pos\ $e_2$\ =\ $1$ \\
 | |
| 203 |                    & \hspace{1cm}\vdots       &                    & \hspace{1cm}\vdots \\
 | |
| 204 |                    & \isa{val\ $(n-1)$\ =\ $e_n$} &                & pos\ $e_n$\ =\ $n-1$
 | |
| 205 | \end{tabular} \\[3ex]
 | |
| 206 | \begin{tabular}{ll}
 | |
| 207 | \texttt{$t$\_card}: & \isa{card($t$)\ =\ $n$} \\
 | |
| 208 | \texttt{$t$\_first\_el}: & \isa{first\_el\ =\ $e_1$} \\
 | |
| 209 | \texttt{$t$\_last\_el}: & \isa{last\_el\ =\ $e_n$}
 | |
| 210 | \end{tabular}
 | |
| 211 | \end{center}
 | |
| 212 | \caption{Type-specific properties of functions on enumeration types}
 | |
| 213 | \label{fig:enum-specific-properties}
 | |
| 214 | \end{figure}
 | |
| 215 | *} | |
| 216 | ||
| 217 | subsection {* Records *}
 | |
| 218 | ||
| 219 | text {*
 | |
| 220 | The FDL record type | |
| 221 | \begin{alltt}
 | |
| 222 | type \(t\) = record | |
| 223 |       \(f\sb{1}\) : \(t\sb{1}\);
 | |
| 224 | \(\vdots\) | |
| 225 |       \(f\sb{n}\) : \(t\sb{n}\)
 | |
| 226 | end; | |
| 227 | \end{alltt}
 | |
| 228 | is modelled by the Isabelle record type | |
| 229 | \begin{isabelle}
 | |
| 230 | \normalsize | |
| 231 | \isacommand{record}\ t\ = \isanewline
 | |
| 232 | \ \ $f_1$\ ::\ $t_1$ \isanewline | |
| 233 | \ \ \ \vdots \isanewline | |
| 234 | \ \ $f_n$\ ::\ $t_n$ | |
| 235 | \end{isabelle}
 | |
| 236 | Records are constructed using the notation | |
| 237 | \isa{\isasymlparr$f_1$\ =\ $v_1$,\ $\ldots$,\ $f_n$\ =\ $v_n$\isasymrparr},
 | |
| 238 | a field $f_i$ of a record $r$ is selected using the notation $f_i~r$, and the | |
| 239 | fields $f$ and $f'$ of a record $r$ can be updated using the notation | |
| 240 | \mbox{\isa{$r$\ \isasymlparr$f$\ :=\ $v$,\ $f'$\ :=\ $v'$\isasymrparr}}.
 | |
| 241 | *} | |
| 242 | ||
| 243 | subsection {* Arrays *}
 | |
| 244 | ||
| 245 | text {*
 | |
| 246 | The FDL array type | |
| 247 | \begin{alltt}
 | |
| 248 | type \(t\) = array [\(t\sb{1}\), \(\ldots\), \(t\sb{n}\)] of \(u\);
 | |
| 249 | \end{alltt}
 | |
| 250 | is modelled by the Isabelle function type $t_1 \times \cdots \times t_n \Rightarrow u$. | |
| 251 | Array updates are written as \isa{$A$($x_1$\ := $y_1$,\ \dots,\ $x_n$\ :=\ $y_n$)}.
 | |
| 252 | To allow updating an array at a set of indices, HOL-\SPARK{} provides the notation
 | |
| 253 | \isa{\dots\ [:=]\ \dots}, which can be combined with \isa{\dots\ :=\ \dots} and has
 | |
| 254 | the properties | |
| 255 | @{thm [display,mode=no_brackets] fun_upds_in fun_upds_notin upds_singleton}
 | |
| 256 | Thus, we can write expressions like | |
| 257 | @{term [display] "(A::int\<Rightarrow>int) ({0..9} [:=] 42, 15 := 99, {20..29} [:=] 0)"}
 | |
| 258 | that would be cumbersome to write using single updates. | |
| 259 | *} | |
| 260 | ||
| 261 | section {* User-defined proof functions and types *}
 | |
| 262 | ||
| 263 | text {*
 | |
| 264 | To illustrate the interplay between the commands for introducing user-defined proof | |
| 265 | functions and types mentioned in \secref{sec:spark-commands}, we now discuss a larger
 | |
| 266 | example involving the definition of proof functions on complex types. Assume we would | |
| 267 | like to define an array type, whose elements are records that themselves contain | |
| 268 | arrays. Moreover, assume we would like to initialize all array elements and record | |
| 269 | fields of type \texttt{Integer} in an array of this type with the value \texttt{0}.
 | |
| 270 | The specification of package \texttt{Complex\_Types} containing the definition of
 | |
| 271 | the array type, which we call \texttt{Array\_Type2}, is shown in \figref{fig:complex-types}.
 | |
| 272 | It also contains the declaration of a proof function \texttt{Initialized} that is used
 | |
| 273 | to express that the array has been initialized. The two other proof functions | |
| 274 | \texttt{Initialized2} and \texttt{Initialized3} are used to reason about the
 | |
| 275 | initialization of the inner array. Since the array types and proof functions | |
| 276 | may be used by several packages, such as the one shown in \figref{fig:complex-types-app},
 | |
| 277 | it is advantageous to define the proof functions in a central theory that can | |
| 278 | be included by other theories containing proofs about packages using \texttt{Complex\_Types}.
 | |
| 279 | We show this theory in \figref{fig:complex-types-thy}. Since the proof functions
 | |
| 280 | refer to the enumeration and record types defined in \texttt{Complex\_Types},
 | |
| 281 | we need to define the Isabelle counterparts of these types using the | |
| 282 | \isa{\isacommand{datatype}} and \isa{\isacommand{record}} commands in order
 | |
| 283 | to be able to write down the definition of the proof functions. These types are | |
| 284 | linked to the corresponding \SPARK{} types using the \isa{\isacommand{spark\_types}}
 | |
| 285 | command. Note that we have to specify the full name of the \SPARK{} functions
 | |
| 286 | including the package prefix. Using the logic of Isabelle, we can then define | |
| 287 | functions involving the enumeration and record types introduced above, and link | |
| 288 | them to the corresponding \SPARK{} proof functions. It is important that the
 | |
| 289 | \isa{\isacommand{definition}} commands are preceeded by the \isa{\isacommand{spark\_types}}
 | |
| 290 | command, since the definition of @{text initialized3} uses the @{text val}
 | |
| 291 | function for enumeration types that is only available once that @{text day}
 | |
| 292 | has been declared as a \SPARK{} type.
 | |
| 293 | \begin{figure}
 | |
| 294 | \lstinputlisting{complex_types.ads}
 | |
| 295 | \caption{Nested array and record types}
 | |
| 296 | \label{fig:complex-types}
 | |
| 297 | \end{figure}
 | |
| 298 | \begin{figure}
 | |
| 299 | \lstinputlisting{complex_types_app.ads}
 | |
| 300 | \lstinputlisting{complex_types_app.adb}
 | |
| 301 | \caption{Application of \texttt{Complex\_Types} package}
 | |
| 302 | \label{fig:complex-types-app}
 | |
| 303 | \end{figure}
 | |
| 304 | \begin{figure}
 | |
| 305 | \input{Complex_Types}
 | |
| 306 | \caption{Theory defining proof functions for complex types}
 | |
| 307 | \label{fig:complex-types-thy}
 | |
| 308 | \end{figure}
 | |
| 309 | *} | |
| 310 | ||
| 311 | (*<*) | |
| 312 | end | |
| 313 | (*>*) |