1 | \documentclass{llncs} |
---|
2 | |
---|
3 | \usepackage{amsfonts} |
---|
4 | \usepackage{amsmath} |
---|
5 | \usepackage{amssymb} |
---|
6 | \usepackage[english]{babel} |
---|
7 | \usepackage{color} |
---|
8 | \usepackage{fancybox} |
---|
9 | \usepackage{graphicx} |
---|
10 | \usepackage[colorlinks]{hyperref} |
---|
11 | \usepackage{hyphenat} |
---|
12 | \usepackage[utf8x]{inputenc} |
---|
13 | \usepackage{listings} |
---|
14 | \usepackage{mdwlist} |
---|
15 | \usepackage{microtype} |
---|
16 | \usepackage{stmaryrd} |
---|
17 | \usepackage{url} |
---|
18 | |
---|
19 | \renewcommand{\verb}{\lstinline} |
---|
20 | \def\lstlanguagefiles{lst-grafite.tex} |
---|
21 | \lstset{language=Grafite} |
---|
22 | |
---|
23 | \newlength{\mylength} |
---|
24 | \newenvironment{frametxt}% |
---|
25 | {\setlength{\fboxsep}{5pt} |
---|
26 | \setlength{\mylength}{\linewidth}% |
---|
27 | \addtolength{\mylength}{-2\fboxsep}% |
---|
28 | \addtolength{\mylength}{-2\fboxrule}% |
---|
29 | \Sbox |
---|
30 | \minipage{\mylength}% |
---|
31 | \setlength{\abovedisplayskip}{0pt}% |
---|
32 | \setlength{\belowdisplayskip}{0pt}% |
---|
33 | }% |
---|
34 | {\endminipage\endSbox |
---|
35 | \[\fbox{\TheSbox}\]} |
---|
36 | |
---|
37 | \title{On the correctness of an optimising assembler for the Intel MCS-51 microprocessor\thanks{The project CerCo acknowledges the financial support of the Future and Emerging Technologies (FET) programme within the Seventh Framework Programme for Research of the European Commission, under FET-Open grant number: 243881.}} |
---|
38 | \author{Dominic P. Mulligan \and Claudio Sacerdoti Coen} |
---|
39 | \institute{Dipartimento di Scienze dell'Informazione,\\ Universit\'a degli Studi di Bologna} |
---|
40 | |
---|
41 | \bibliographystyle{splncs03} |
---|
42 | |
---|
43 | \begin{document} |
---|
44 | |
---|
45 | \maketitle |
---|
46 | |
---|
47 | \begin{abstract} |
---|
48 | We present a proof of correctness, in Matita, for an optimising assembler for the MCS-51 microcontroller. |
---|
49 | This assembler constitutes a major component of the EU's CerCo project. |
---|
50 | |
---|
51 | The efficient expansion of pseudoinstructions---namely jumps---into MCS-51 machine instructions is complex. |
---|
52 | We isolate the decision making over how jumps should be expanded from the expansion process itself as much as possible using `policies'. |
---|
53 | This makes the proof of correctness for the assembler significantly more straightforward. |
---|
54 | |
---|
55 | We observe that it is impossible for an optimising assembler to preserve the semantics of every assembly program. |
---|
56 | Assembly language programs can manipulate concrete addresses in arbitrary ways. |
---|
57 | Our proof strategy contains a tracking facility for `good addresses' and only programs that use good addresses have their semantics preserved under assembly. |
---|
58 | Our strategy offers increased flexibility over the traditional approach to proving the correctness of assemblers, wherein addresses in assembly are kept opaque and immutable. |
---|
59 | In particular, we may experiment with allowing the benign manipulation of addresses. |
---|
60 | \keywords{Verified software, CerCo (Certified Complexity), MCS-51 microcontroller, Matita proof assistant} |
---|
61 | \end{abstract} |
---|
62 | |
---|
63 | % ---------------------------------------------------------------------------- % |
---|
64 | % SECTION % |
---|
65 | % ---------------------------------------------------------------------------- % |
---|
66 | \section{Introduction} |
---|
67 | \label{sect.introduction} |
---|
68 | |
---|
69 | We consider the formalisation of an assembler for the Intel MCS-51 8-bit microprocessor in the Matita proof assistant~\cite{asperti:user:2007}. |
---|
70 | This formalisation forms a major component of the EU-funded CerCo (`Certified Complexity') project~\cite{cerco:2011}, concerning the construction and formalisation of a concrete complexity preserving compiler for a large subset of the C programming language. |
---|
71 | |
---|
72 | The MCS-51 dates from the early 1980s and is commonly called the 8051/8052. |
---|
73 | Despite the microprocessor's age, derivatives are still widely manufactured by a number of semiconductor foundries, with the processor being used especially in embedded systems development, where well-tested, cheap, predictable microprocessors find their niche. |
---|
74 | |
---|
75 | The MCS-51 has a relative paucity of features compared to its more modern brethren, with the lack of any caching or pipelining features meaning that timing of execution is predictable, making the MCS-51 very attractive for CerCo's ends. |
---|
76 | Yet---as with many things---what one hand giveth, the other taketh away, and the MCS-51's paucity of features---though an advantage in many respects---also quickly becomes a hindrance. |
---|
77 | In particular, the MCS-51 features a relatively minuscule series of memory spaces by modern standards. |
---|
78 | As a result our C compiler, to have any sort of hope of successfully compiling realistic programs for embedded devices, ought to produce `tight' machine code. |
---|
79 | |
---|
80 | In order to do this, we must solve the `branch displacement' problem---deciding how best to expand pseudojumps to labels in assembly language to machine code jumps. |
---|
81 | Clearly a correct but efficient strategy would be to expand all unconditional pseudojumps to the MCS-51's \texttt{LJMP} instruction, and all conditional pseudojumps to a set configuration of jumps using \texttt{LJMP} instructions; this is inefficient and a waste of valuable code memory space. |
---|
82 | Finding an efficient solution with this expansion process is not trivial, and is a well-known problem for those writing assemblers targetting CISC architectures (for instance, see~\cite{hyde:branch:2006}). |
---|
83 | |
---|
84 | To free the CerCo C compiler from having to consider complications relating to branch displacement, we have chosen to implement an optimising assembler, whose input language the compiler will target. |
---|
85 | Labels, conditional jumps to labels, a program preamble containing global data and a \texttt{MOV} instruction for moving this global data into the MCS-51's one 16-bit register all feature in our assembly language. |
---|
86 | We simplify the proof by assuming that all our assembly programs are pre-linked (i.e. we do not formalise a linker---this is left for future work). |
---|
87 | |
---|
88 | Further, we must make sure that the assembly process does not change the timing characteristics of an assembly program for two reasons. |
---|
89 | |
---|
90 | First, the semantics of some functions of the MCS-51, notably I/O, depend on the microprocessor's clock. |
---|
91 | Changing how long a particular program takes to execute can affect the semantics of a program. |
---|
92 | This is undesirable. |
---|
93 | |
---|
94 | Second, CerCo imposes a cost model on C programs or, more specifically, on simple blocks of instructions. |
---|
95 | This cost model is induced by the compilation process itself, and its non-compositional nature allows us to assign different costs to identical blocks of instructions depending on how they are compiled. |
---|
96 | In short, we aim to obtain a very precise costing for a program by embracing the compilation process, not ignoring it. |
---|
97 | This, however, complicates the proof of correctness for the compiler proper, and we must prove that both the meaning and concrete complexity characteristics of the program are preserved for every translation pass in the compiler, including the assembler. |
---|
98 | |
---|
99 | How we went about resolving this problem affected the shape of our proof of correctness for the whole assembler in a rather profound way. |
---|
100 | We first attempted to synthesise a solution bottom up: starting with no solution, we gradually refine a solution using the same functions that implement the jump expansion process. |
---|
101 | Using this technique, solutions can fail to exist, and the proof of correctness for the assembler quickly descends into a diabolical quagmire. |
---|
102 | |
---|
103 | Abandoning this attempt, we instead split the `policy'---the decision over how any particular jump should be expanded---from the implementation that actually expands assembly programs into machine code. |
---|
104 | Assuming the existence of a correct policy, we prove the implementation of the assembler correct. |
---|
105 | Further, we proved that the assembler fails to assemble an assembly program if and only if a correct policy does not exist. |
---|
106 | This is achieved by means of dependent types: the assembly function is total over a program, a policy and the proof that the policy is correct for that program. |
---|
107 | |
---|
108 | Policies do not exist in only a limited number of circumstances: namely, if a pseudoinstruction attempts to jump to a label that does not exist, or the program is too large to fit in code memory, even after shrinking jumps according to the policy. |
---|
109 | The first circumstance is an example of a serious compiler error, as an ill-formed assembly program was generated, and does not (and should not) count as a mark against the completeness of the assembler. |
---|
110 | |
---|
111 | The rest of this paper is a detailed description of our proof that is, in part, still a work in progress. |
---|
112 | |
---|
113 | We provide the reader with a brief `roadmap' for the rest of the paper. |
---|
114 | In Section~\ref{sect.matita} we provide a brief overview of the Matita proof assistant for the unfamiliar reader. |
---|
115 | In Section~\ref{sect.the.proof} we discuss the design and implementation of the proof proper. |
---|
116 | In Section~\ref{sect.conclusions} we conclude. |
---|
117 | |
---|
118 | % ---------------------------------------------------------------------------- % |
---|
119 | % SECTION % |
---|
120 | % ---------------------------------------------------------------------------- % |
---|
121 | \section{Matita} |
---|
122 | \label{sect.matita} |
---|
123 | |
---|
124 | Matita is a proof assistant based on a variant of the Calculus of (Co)inductive Constructions~\cite{asperti:user:2007}. |
---|
125 | In particular, it features dependent types that we exploit in the formalisation. |
---|
126 | The syntax of the statements and definitions in the paper should be self-explanatory, at least to those exposed to dependent type theory. |
---|
127 | We only remark that the use of `$\mathtt{?}$' or `$\mathtt{\ldots}$' for omitting single terms or sequences of terms to be inferred automatically by the system, respectively. |
---|
128 | Those that are not inferred are left to the user as proof obligations. |
---|
129 | Pairs are denoted with angular brackets, $\langle-, -\rangle$. |
---|
130 | |
---|
131 | Matita features a liberal system of coercions. |
---|
132 | It is possible to define a uniform coercion $\lambda x.\langle x,?\rangle$ from every type $T$ to the dependent product $\Sigma x:T.P~x$. |
---|
133 | The coercion opens a proof obligation that asks the user to prove that $P$ holds for $x$. |
---|
134 | When a coercion must be applied to a complex term (a $\lambda$-abstraction, a local definition, or a case analysis), the system automatically propagates the coercion to the sub-terms |
---|
135 | For instance, to apply a coercion to force $\lambda x.M : A \to B$ to have type $\forall x:A.\Sigma y:B.P~x~y$, the system looks for a coercion from $M: B$ to $\Sigma y:B.P~x~y$ in a context augmented with $x:A$. |
---|
136 | This is significant when the coercion opens a proof obligation, as the user will be presented with multiple, but simpler proof obligations in the correct context. |
---|
137 | In this way, Matita supports the ``Russell'' proof methodology developed by Sozeau in~\cite{sozeau:subset:2006}, with an implementation that is lighter and more tightly integrated with the system than that of Coq. |
---|
138 | |
---|
139 | % ---------------------------------------------------------------------------- % |
---|
140 | % SECTION % |
---|
141 | % ---------------------------------------------------------------------------- % |
---|
142 | \section{The proof} |
---|
143 | \label{sect.the.proof} |
---|
144 | |
---|
145 | % ---------------------------------------------------------------------------- % |
---|
146 | % SECTION % |
---|
147 | % ---------------------------------------------------------------------------- % |
---|
148 | |
---|
149 | \subsection{Machine code semantics} |
---|
150 | \label{subsect.machine.code.semantics} |
---|
151 | |
---|
152 | Our emulator centres around a \texttt{Status} record, describing the microprocessor's state. |
---|
153 | This record contains fields corresponding to the microprocessor's program counter, registers, stack pointer, special function registers, and so on. |
---|
154 | At the machine code level, code memory is implemented as a compact trie of bytes addressed by the program counter. |
---|
155 | We parameterise \texttt{Status} records by this representation as a few technical tasks manipulating statuses are made simpler using this approach, as well as permitting a modicum of abstraction. |
---|
156 | |
---|
157 | We may execute a single step of a machine code program using the \texttt{execute\_1} function, which returns an updated \texttt{Status}: |
---|
158 | \begin{lstlisting} |
---|
159 | definition execute_1: $\forall$cm. Status cm $\rightarrow$ Status cm := $\ldots$ |
---|
160 | \end{lstlisting} |
---|
161 | %The function \texttt{execute} allows one to execute an arbitrary, but fixed (due to Matita's normalisation requirement) number of steps of a program. |
---|
162 | The function \texttt{execute\_1} closely matches the operation of the MCS-51 hardware, as described by a Siemen's manufacturer's data sheet (specifically, this one~\cite{siemens:2011}). |
---|
163 | We first fetch, using the program counter, from code memory the first byte of the instruction to be executed, decoding the resulting opcode, fetching more bytes as is necessary. |
---|
164 | Decoded instructions are represented as an inductive type, where $\llbracket - \rrbracket$ denotes a fixed-length vector: |
---|
165 | \begin{lstlisting} |
---|
166 | inductive preinstruction (A: Type[0]): Type[0] := |
---|
167 | | ADD: $\llbracket$acc_a$\rrbracket$ → $\llbracket$registr; direct; indirect; data$\rrbracket$ $\rightarrow$ preinstruction A |
---|
168 | | INC: $\llbracket$ acc_a; registr; direct; indirect; dptr$\rrbracket$ $\rightarrow$ preinstruction A |
---|
169 | | JB: $\llbracket$bit_addr$\rrbracket$ $\rightarrow$ A $\rightarrow$ preinstruction A |
---|
170 | | ... |
---|
171 | |
---|
172 | inductive instruction: Type[0] := |
---|
173 | | LCALL: $\llbracket$addr16$\rrbracket$ $\rightarrow$ instruction |
---|
174 | | AJMP: $\llbracket$addr11$\rrbracket$ $\rightarrow$ instruction |
---|
175 | | RealInstruction: preinstruction $\llbracket$relative$\rrbracket$ $\rightarrow$ instruction. |
---|
176 | | ... |
---|
177 | \end{lstlisting} |
---|
178 | Here, we use dependent types to provide a precise typing for instructions, specifying in their type the permitted addressing modes that their arguments can belong to. |
---|
179 | The parameterised type $A$ of \texttt{preinstruction} represents the addressing mode for conditional jumps; in \texttt{instruction} we fix this type to be a relative offset in the constructor \texttt{RealInstruction}. |
---|
180 | |
---|
181 | Once decoded, execution proceeds by a case analysis on the decoded instruction, following the operation of the hardware. |
---|
182 | For example, the \texttt{DEC} instruction (`decrement') is implemented as follows: |
---|
183 | |
---|
184 | \begin{lstlisting} |
---|
185 | | DEC addr $\Rightarrow$ |
---|
186 | let s := add_ticks1 s in |
---|
187 | let $\langle$result, flags$\rangle$ := sub_8_with_carry (get_arg_8 $\ldots$ s true addr) |
---|
188 | (bitvector_of_nat 8 1) false in |
---|
189 | set_arg_8 $\ldots$ s addr result |
---|
190 | \end{lstlisting} |
---|
191 | |
---|
192 | Here, \texttt{add\_ticks1} models the incrementing of the internal clock of the microprocessor. |
---|
193 | |
---|
194 | % ---------------------------------------------------------------------------- % |
---|
195 | % SECTION % |
---|
196 | % ---------------------------------------------------------------------------- % |
---|
197 | |
---|
198 | \subsection{Assembly code semantics} |
---|
199 | \label{subsect.assembly.code.semantics} |
---|
200 | |
---|
201 | An assembly program is a list of potentially labelled pseudoinstructions, bundled with a preamble consisting of a list of symbolic names for locations in data memory (i.e. global variables). |
---|
202 | Pseudoinstructions are implemented as an inductive type: |
---|
203 | \begin{lstlisting} |
---|
204 | inductive pseudo_instruction: Type[0] := |
---|
205 | | Instruction: preinstruction Identifier $\rightarrow$ pseudo_instruction |
---|
206 | ... |
---|
207 | | Jmp: Identifier $\rightarrow$ pseudo_instruction |
---|
208 | | Call: Identifier $\rightarrow$ pseudo_instruction |
---|
209 | | Mov: $\llbracket$dptr$\rrbracket$ $\rightarrow$ Identifier $\rightarrow$ pseudo_instruction. |
---|
210 | \end{lstlisting} |
---|
211 | The pseudoinstructions \texttt{Jmp}, \texttt{Call} and \texttt{Mov} are generalisations of machine code unconditional jumps, calls and move instructions respectively, all of whom act on labels, as opposed to concrete memory addresses. |
---|
212 | Similarly, conditional jumps can now only jump to labels, as is implied by the first constructor of the type above. |
---|
213 | All other object code instructions are available at the assembly level, with the exception of those that appeared in the \texttt{instruction} type, such as \texttt{ACALL} and \texttt{LJMP}. |
---|
214 | These are jumps and calls to absolute addresses, which we do not wish to allow at the assembly level. |
---|
215 | |
---|
216 | Execution of pseudoinstructions is a function from \texttt{PseudoStatus} to \texttt{PseudoStatus}. |
---|
217 | Both \texttt{Status} and \texttt{PseudoStatus} are instances of a more general type parameterised over the representation of code memory. |
---|
218 | The more general type is crucial for sharing the majority of the semantics of the two languages. |
---|
219 | |
---|
220 | Emulation for pseudoinstructions is handled by \texttt{execute\_1\_pseudo\_instruction}: |
---|
221 | \begin{lstlisting} |
---|
222 | definition execute_1_pseudo_instruction: |
---|
223 | (Word $\rightarrow$ nat $\times$ nat) $\rightarrow$ $\forall$cm. PseudoStatus cm $\rightarrow$ PseudoStatus cm := $\ldots$ |
---|
224 | \end{lstlisting} |
---|
225 | Notice, here, that the emulation function for assembly programs takes an additional argument over \texttt{execute\_1}. |
---|
226 | This is a function that maps program counters (at the assembly level) to pairs of natural numbers representing the number of clock ticks that the pseudoinstruction needs to execute, post expansion. |
---|
227 | We call this function a \emph{costing}, and note that the costing is induced by the particular strategy we use to expand pseudoinstructions. |
---|
228 | If we change how we expand conditional jumps to labels, for instance, then the costing needs to change, hence \texttt{execute\_1\_pseudo\_instruction}'s parametricity in the costing. |
---|
229 | |
---|
230 | The costing returns \emph{pairs} of natural numbers because, in the case of expanding conditional jumps to labels, the expansion of the `true branch' and `false branch' may differ in execution time. |
---|
231 | The \texttt{add\_ticks1} function, which we have already seen used to increment the machine clock above, is determined for the assembly language from the costing function. |
---|
232 | |
---|
233 | Execution proceeds by first fetching from pseudo-code memory using the program counter---treated as an index into the pseudoinstruction list. |
---|
234 | No decoding is required. |
---|
235 | We then proceed by case analysis over the pseudoinstruction, reusing the code for object code for all instructions present in the MCS-51's instruction set. |
---|
236 | For all newly introduced pseudoinstructions, we simply translate labels to concrete addresses before behaving as a `real' instruction. |
---|
237 | |
---|
238 | In contrast to other approaches, we do not perform any kind of symbolic execution, wherein data is the disjoint union of bytes and addresses, with addresses kept opaque and immutable. |
---|
239 | Labels are immediately translated to concrete addresses, and registers and memory locations only ever contain bytes, never labels. |
---|
240 | As a consequence, we allow the programmer to mangle, change and generally adjust addresses as they want, under the proviso that the translation process may not be able to preserve the semantics of programs that do this. |
---|
241 | This will be further discussed in Subsection~\ref{subsect.total.correctness.for.well.behaved.assembly.programs}. |
---|
242 | |
---|
243 | % ---------------------------------------------------------------------------- % |
---|
244 | % SECTION % |
---|
245 | % ---------------------------------------------------------------------------- % |
---|
246 | |
---|
247 | \subsection{The assembler} |
---|
248 | \label{subsect.the.assembler} |
---|
249 | |
---|
250 | Conceptually the assembler works in two passes. |
---|
251 | The first pass expands pseudoinstructions into a list of machine code instructions using the function \texttt{expand\_pseudo\_instruction}. |
---|
252 | The second pass encodes as a list of bytes the expanded instruction list by mapping the function \texttt{assembly1} across the list, and then flattening. |
---|
253 | \begin{displaymath} |
---|
254 | [\mathtt{P_1}, \ldots \mathtt{P_n}] \xrightarrow{\left(\mathtt{P_i} \xrightarrow{\mbox{\fontsize{7}{9}\selectfont$\mathtt{expand\_pseudo\_instruction}$}} \mathtt{[I^1_i, \ldots I^q_i]} \xrightarrow{\mbox{\fontsize{7}{9}\selectfont$\mathtt{~~~~~~~~assembly1^{*}~~~~~~~~}$}} \mathtt{[0110]}\right)^{*}} \mathtt{[010101]} |
---|
255 | \end{displaymath} |
---|
256 | The most complex of the two passes is the first, which expands pseudoinstructions and must perform the task of branch displacement~\cite{hyde:branch:2006}. |
---|
257 | The function \texttt{assembly\_1\_pseudo\_instruction} used in the body of the paper is essentially the composition of the two passes. |
---|
258 | |
---|
259 | The branch displacement problem refers to the task of expanding pseudojumps into their concrete counterparts, preferably as efficiently as possible. |
---|
260 | For instance, the MCS-51 features three unconditional jump instructions: \texttt{LJMP} and \texttt{SJMP}---`long jump' and `short jump' respectively---and an 11-bit oddity of the MCS-51, \texttt{AJMP}. |
---|
261 | Each of these three instructions expects arguments in different sizes and behaves in markedly different ways: \texttt{SJMP} may only perform a `local jump'; \texttt{LJMP} may jump to any address in the MCS-51's memory space and \texttt{AJMP} may jump to any address in the current memory page. |
---|
262 | Consequently, the size of each opcode is different, and to squeeze as much code as possible into the MCS-51's limited code memory, the smallest possible opcode that will suffice should be selected. |
---|
263 | |
---|
264 | Similarly, a conditional pseudojump must be translated potentially into a configuration of machine code instructions, depending on the distance to the jump's target. |
---|
265 | For example, to translate a jump to a label, a single conditional jump pseudoinstruction may be translated into a block of three real instructions as follows (here, \texttt{JZ} is `jump if accumulator is zero'): |
---|
266 | {\small{ |
---|
267 | \begin{displaymath} |
---|
268 | \begin{array}{r@{\quad}l@{\;\;}l@{\qquad}c@{\qquad}l@{\;\;}l} |
---|
269 | & \mathtt{JZ} & \mathtt{label} & & \mathtt{JZ} & \text{size of \texttt{SJMP} instruction} \\ |
---|
270 | & \ldots & & \text{translates to} & \mathtt{SJMP} & \text{size of \texttt{LJMP} instruction} \\ |
---|
271 | \mathtt{label:} & \mathtt{MOV} & \mathtt{A}\;\;\mathtt{B} & \Longrightarrow & \mathtt{LJMP} & \text{address of \textit{label}} \\ |
---|
272 | & & & & \ldots & \\ |
---|
273 | & & & & \mathtt{MOV} & \mathtt{A}\;\;\mathtt{B} |
---|
274 | \end{array} |
---|
275 | \end{displaymath}}} |
---|
276 | Here, if \texttt{JZ} fails, we fall through to the \texttt{SJMP} which jumps over the \texttt{LJMP}. |
---|
277 | Naturally, if \texttt{label} is `close enough', a conditional jump pseudoinstruction is mapped directly to a conditional jump machine instruction; the above translation only applies if \texttt{label} is not sufficiently local. |
---|
278 | |
---|
279 | In order to implement branch displacement it is impossible to really make the \texttt{expand\_pseudo\_instruction} function completely independent of the encoding function. |
---|
280 | This is due to branch displacement requiring the distance in bytes of the target of the jump. |
---|
281 | Moreover the standard solutions for solving the branch displacement problem find their solutions iteratively, by either starting from a solution where all jumps are long, and shrinking them when possible, or starting from a state where all jumps are short and increasing their length as needed. |
---|
282 | Proving the correctness of such algorithms is already quite involved and the correctness of the assembler as a whole does not depend on the `quality' of the solution found to a branch displacement problem. |
---|
283 | For this reason, we try to isolate the computation of a branch displacement problem from the proof of correctness for the assembler by parameterising our \texttt{expand\_pseudo\_instruction} by a `policy'. |
---|
284 | |
---|
285 | \begin{lstlisting} |
---|
286 | definition expand_pseudo_instruction: |
---|
287 | $\forall$lookup_labels: Identifier $\rightarrow$ Word. |
---|
288 | $\forall$sigma: Word $\rightarrow$ Word. |
---|
289 | $\forall$policy: Word $\rightarrow$ bool. |
---|
290 | $\forall$ppc: Word. |
---|
291 | $\forall$lookup_datalabels: Identifier $\rightarrow$ Word. |
---|
292 | $\forall$pi: pseudo_instruction. |
---|
293 | list instruction := ... |
---|
294 | \end{lstlisting} |
---|
295 | Here, the functions \texttt{lookup\_labels} and \texttt{lookup\_datalabels} are the functions that map labels and datalabels to program counters respectively, both of them used in the semantics of assembly. |
---|
296 | The input \texttt{pi} is the pseudoinstruction to be expanded and is found at address \texttt{ppc} in the assembly program. |
---|
297 | The policy is defined using the two functions \texttt{sigma} and \texttt{policy}, of which \texttt{sigma} is the most interesting. |
---|
298 | The function \texttt{sigma} maps pseudo program counters to program counters: the encoding of the expansion of the pseudoinstruction found at address \texttt{a} in the assembly code should be placed into code memory at address \texttt{sigma(a)}. |
---|
299 | Of course this is possible only if the policy is correct, which means that the encoding of consecutive assembly instructions must be consecutive in code memory. |
---|
300 | \begin{displaymath} |
---|
301 | \texttt{sigma}(\texttt{ppc} + 1) = \texttt{pc} + \texttt{current\_instruction\_size} |
---|
302 | \end{displaymath} |
---|
303 | Here, \texttt{current\_instruction\_size} is the size in bytes of the encoding of the expanded pseudoinstruction found at \texttt{ppc}. |
---|
304 | Note that the entanglement we hinted at is only partially solved in this way: the assembler code can ignore the implementation details of the algorithm that finds a policy; |
---|
305 | however, the algorithm that finds a policy must know the exact behaviour of the assembly program because it needs to predict the way the assembly will expand and encode pseudoinstructions, once fed with a policy. |
---|
306 | A companion submission to this one~\cite{boender:correctness:2012} certifies an algorithm that finds branch displacement policies for the assembler described in this paper. |
---|
307 | |
---|
308 | The \texttt{expand\_pseudo\_instruction} function uses the \texttt{sigma} map to determine the size of jump required when expanding pseudojumps, computing the jump size by examining the size of the differences between program counters. |
---|
309 | For instance, if at address \texttt{ppc} in the assembly program we found \texttt{Jmp l} such that \texttt{lookup\_labels l = a}, if the offset \texttt{d = sigma(a) - sigma(ppc + 1)} is such that \texttt{d} $< 128$ then \texttt{Jmp l} is normally translated to the best local solution, the short jump \texttt{SJMP d}. |
---|
310 | A global best solution to the branch displacement problem, however, is not always made of locally best solutions. |
---|
311 | Therefore, in some circumstances, it is necessary to force the assembler to expand jumps into larger ones. |
---|
312 | This is achieved by the \texttt{policy} function: if \texttt{policy ppc = true} then a \texttt{Jmp l} at address \texttt{ppc} is always translated to a long jump. |
---|
313 | An essentially identical mechanism exists for call instructions. |
---|
314 | |
---|
315 | % ---------------------------------------------------------------------------- % |
---|
316 | % SECTION % |
---|
317 | % ---------------------------------------------------------------------------- % |
---|
318 | \subsection{Correctness of the assembler with respect to fetching} |
---|
319 | \label{subsect.total.correctness.of.the.assembler} |
---|
320 | Using our policies, we now work toward proving the total correctness of the assembler. |
---|
321 | By `total correctness', we mean that the assembly process never fails when provided with a correct policy and that the process does not change the semantics of a certain class of well behaved assembly programs. |
---|
322 | |
---|
323 | The aim of this section is to prove the following informal statement: when we fetch an assembly pseudoinstruction \texttt{I} at address \texttt{ppc}, then we can fetch the expanded pseudoinstruction(s) \texttt{[J1, \ldots, Jn] = fetch\_pseudo\_instruction \ldots\ I\ ppc} from \texttt{sigma(ppc)} in the code memory obtained by loading the assembled object code. |
---|
324 | This constitutes the first major step in the proof of correctness of the assembler, the next one being the simulation of \texttt{I} by \texttt{[J1, \ldots, Jn]} (see Subsection~\ref{subsect.total.correctness.for.well.behaved.assembly.programs}). |
---|
325 | |
---|
326 | The \texttt{assembly} function is given a Russell type (slightly simplified here): |
---|
327 | \begin{lstlisting} |
---|
328 | definition assembly: |
---|
329 | $\forall$p: pseudo_assembly_program. |
---|
330 | $\forall$sigma: Word $\rightarrow$ Word. |
---|
331 | $\forall$policy: Word $\rightarrow$ bool. |
---|
332 | $\Sigma$res:list Byte $\times$ (BitVectorTrie costlabel 16). |
---|
333 | sigma_meets_specification p sigma policy $\rightarrow$ |
---|
334 | let $\langle$preamble, instr_list$\rangle$ := p in |
---|
335 | |instr_list| < 2^16 $\rightarrow$ |
---|
336 | let $\langle$assembled,costs$\rangle$ := res in |
---|
337 | $\forall$ppc. $\forall$ppc_ok:nat_of_bitvector $\ldots$ ppc < |instr_list|. |
---|
338 | let $\langle$pi,newppc$\rangle$ := fetch_pseudo_instruction instr_list ppc ppc_ok in |
---|
339 | let $\langle$l,a$\rangle$ := assembly_1_pseudoinstruction $\ldots$ sigma policy ppc $\ldots$ pi in |
---|
340 | $\forall$j:nat. j < |a| |
---|
341 | nth j a = nth (add $\ldots$ (sigma ppc) (bitvector_of_nat ? j))) assembled |
---|
342 | \end{lstlisting} |
---|
343 | In plain words, the type of \texttt{assembly} states the following. |
---|
344 | Suppose we are given a policy that is correct for the program we are assembling, and suppose the program to be assembled is fully addressable by a 16-bit word. |
---|
345 | Then if we fetch from the pseudo program counter \texttt{ppc} we get a pseudoinstruction \texttt{pi} and a new pseudo program counter \texttt{ppc}. |
---|
346 | Further, assembling the pseudoinstruction \texttt{pi} results in a list of bytes, \texttt{a}. |
---|
347 | Then, indexing into this list with any natural number \texttt{j} less than the length of \texttt{a} gives the same result as indexing into \texttt{assembled} with \texttt{sigma(ppc)} (the program counter pointing to the start of the expansion in \texttt{assembled}) plus \texttt{j}. |
---|
348 | |
---|
349 | Essentially the lemma above states that the \texttt{assembly} function correctly expands pseudoinstructions, and that the expanded instruction reside consecutively in memory. |
---|
350 | This result is lifted from lists of bytes into a result on tries of bytes (i.e. code memories), using an additional lemma: \texttt{assembly\_ok}. |
---|
351 | |
---|
352 | Lemma \texttt{fetch\_assembly} establishes that the \texttt{fetch} and \texttt{assembly1} functions interact correctly. |
---|
353 | The \texttt{fetch} function, as its name implies, fetches the instruction indexed by the program counter in the code memory, while \texttt{assembly1} maps a single instruction to its byte encoding: |
---|
354 | \begin{lstlisting} |
---|
355 | lemma fetch_assembly: |
---|
356 | $\forall$pc: Word. |
---|
357 | $\forall$i: instruction. |
---|
358 | $\forall$code_memory: BitVectorTrie Byte 16. |
---|
359 | $\forall$assembled: list Byte. |
---|
360 | assembled = assembly1 i $\rightarrow$ |
---|
361 | let len := length $\ldots$ assembled in |
---|
362 | let pc_plus_len := add $\ldots$ pc (bitvector_of_nat $\ldots$ len) in |
---|
363 | encoding_check code_memory pc pc_plus_len assembled $\rightarrow$ |
---|
364 | let $\langle$instr, pc', ticks$\rangle$ := fetch code_memory pc in |
---|
365 | instr = i $\wedge$ ticks = (ticks_of_instruction instr) $\wedge$ pc' = pc_plus_len. |
---|
366 | \end{lstlisting} |
---|
367 | In particular, we read \texttt{fetch\_assembly} as follows. |
---|
368 | Given an instruction, \texttt{i}, we first assemble the instruction to obtain \texttt{assembled}, checking that the assembled instruction was stored in code memory correctly. |
---|
369 | Fetching from code memory, we obtain a tuple consisting of the instruction, new program counter, and the number of ticks this instruction will take to execute. |
---|
370 | We finally check that the fetched instruction is the same instruction that we began with, and the number of ticks this instruction will take to execute is the same as the result returned by a lookup function, \texttt{ticks\_of\_instruction}, devoted to tracking this information. |
---|
371 | Or, in plainer words, assembling and then immediately fetching again gets you back to where you started. |
---|
372 | |
---|
373 | Lemma \texttt{fetch\_assembly\_pseudo} (slightly simplified, here) is obtained by composition of \texttt{expand\_pseudo\_instruction} and \texttt{assembly\_1\_pseudoinstruction}: |
---|
374 | \begin{lstlisting} |
---|
375 | lemma fetch_assembly_pseudo: |
---|
376 | $\forall$program: pseudo_assembly_program. |
---|
377 | $\forall$sigma: Word $\rightarrow$ Word. |
---|
378 | $\forall$policy: Word $\rightarrow$ bool. |
---|
379 | $\forall$ppc. |
---|
380 | $\forall$code_memory. |
---|
381 | let $\langle$preamble, instr_list$\rangle$ := program in |
---|
382 | let pi := $\pi_1$ (fetch_pseudo_instruction instr_list ppc) in |
---|
383 | let pc := sigma ppc in |
---|
384 | let instrs := expand_pseudo_instruction $\ldots$ sigma policy ppc $\ldots$ pi in |
---|
385 | let $\langle$l, a$\rangle$ := assembly_1_pseudoinstruction $\ldots$ sigma policy ppc $\ldots$ pi in |
---|
386 | let pc_plus_len := add $\ldots$ pc (bitvector_of_nat $\ldots$ l) in |
---|
387 | encoding_check code_memory pc pc_plus_len a $\rightarrow$ |
---|
388 | fetch_many code_memory pc_plus_len pc instructions. |
---|
389 | \end{lstlisting} |
---|
390 | Here, \texttt{l} is the number of machine code instructions the pseudoinstruction at hand has been expanded into. |
---|
391 | We assemble a single pseudoinstruction with \texttt{assembly\_1\_pseudoinstruction}, which internally calls \texttt{expand\_pseudo\_instruction}. |
---|
392 | The function \texttt{fetch\_many} fetches multiple machine code instructions from code memory and performs some routine checks. |
---|
393 | |
---|
394 | Intuitively, Lemma \texttt{fetch\_assembly\_pseudo} can be read as follows. |
---|
395 | Suppose we expand the pseudoinstruction at \texttt{ppc} with the policy decision \texttt{sigma}, obtaining the list of machine code instructions \texttt{instrs}. |
---|
396 | Suppose we also assemble the pseudoinstruction at \texttt{ppc} to obtain \texttt{a}, a list of bytes. |
---|
397 | Then, we check with \texttt{fetch\_many} that the number of machine instructions that were fetched matches the number of instruction that \texttt{expand\_pseudo\_instruction} expanded. |
---|
398 | |
---|
399 | The final lemma in this series is \texttt{fetch\_assembly\_pseudo2} that combines the Lemma \texttt{fetch\_assembly\_pseudo} with the correctness of the functions that load object code into the processor's memory. |
---|
400 | Again, we slightly simplify: |
---|
401 | \begin{lstlisting} |
---|
402 | lemma fetch_assembly_pseudo2: |
---|
403 | $\forall$program. |
---|
404 | $\forall$sigma. |
---|
405 | $\forall$policy. |
---|
406 | $\forall$sigma_meets_specification. |
---|
407 | $\forall$ppc. |
---|
408 | let $\langle$preamble, instr_list$\rangle$ := program in |
---|
409 | let $\langle$labels, costs$\rangle$ := create_label_cost_map instr_list in |
---|
410 | let $\langle$assembled, costs'$\rangle$ := $\pi_1$ $\ldots$ (assembly program sigma policy) in |
---|
411 | let cmem := load_code_memory assembled in |
---|
412 | let $\langle$pi, newppc$\rangle$ := fetch_pseudo_instruction instr_list ppc in |
---|
413 | let instructions := expand_pseudo_instruction $\ldots$ sigma ppc $\ldots$ pi in |
---|
414 | fetch_many cmem (sigma newppc) (sigma ppc) instructions. |
---|
415 | \end{lstlisting} |
---|
416 | |
---|
417 | Here we use $\pi_1 \ldots$ to project the existential witness from the Russell-typed function \texttt{assembly}. |
---|
418 | |
---|
419 | We read \texttt{fetch\_assembly\_pseudo2} as follows. |
---|
420 | Suppose we are able to successfully assemble an assembly program using \texttt{assembly} and produce a code memory, \texttt{cmem}. |
---|
421 | Then, fetching a pseudoinstruction from the pseudo-code memory at address \texttt{ppc} corresponds to fetching a sequence of instructions from the real code memory using \texttt{sigma} to expand pseudoinstructions. |
---|
422 | The fetched sequence corresponds to the expansion, according to \texttt{sigma}, of the pseudoinstruction. |
---|
423 | |
---|
424 | At first, the lemma appears to immediately imply the correctness of the assembler. |
---|
425 | However, this property is \emph{not} strong enough to establish that the semantics of an assembly program has been preserved by the assembly process since it does not establish the correspondence between the semantics of a pseudoinstruction and that of its expansion. |
---|
426 | In particular, the two semantics differ on instructions that \emph{could} directly manipulate program addresses. |
---|
427 | |
---|
428 | % ---------------------------------------------------------------------------- % |
---|
429 | % SECTION % |
---|
430 | % ---------------------------------------------------------------------------- % |
---|
431 | \subsection{Total correctness for `well behaved' assembly programs} |
---|
432 | \label{subsect.total.correctness.for.well.behaved.assembly.programs} |
---|
433 | |
---|
434 | The traditional approach to verifying the correctness of an assembler is to treat memory addresses as opaque structures that cannot be modified. |
---|
435 | Memory is represented as a map from opaque addresses to the disjoint union of data and opaque addresses---addresses are kept opaque to prevent their possible `semantics breaking' manipulation by assembly programs: |
---|
436 | \begin{displaymath} |
---|
437 | \mathtt{Mem} : \mathtt{Addr} \rightarrow \mathtt{Bytes} + \mathtt{Addr} \qquad \llbracket - \rrbracket : \mathtt{Instr} \rightarrow \mathtt{Mem} \rightarrow \mathtt{option\ Mem} |
---|
438 | \end{displaymath} |
---|
439 | The semantics of a pseudoinstruction, $\llbracket - \rrbracket$, is given as a possibly failing function from pseudoinstructions and memory spaces to new memory spaces. |
---|
440 | The semantic function proceeds by case analysis over the operands of a given instruction, failing if either operand is an opaque address, or otherwise succeeding, updating memory. |
---|
441 | \begin{gather*} |
---|
442 | \llbracket \mathtt{ADD\ @A1\ @A2} \rrbracket^\mathtt{M} = \begin{cases} |
---|
443 | \mathtt{Byte\ b1},\ \mathtt{Byte\ b2} & \rightarrow \mathtt{Some}(\mathtt{M}\ \text{with}\ \mathtt{b1} + \mathtt{b2}) \\ |
---|
444 | -,\ \mathtt{Addr\ a} & \rightarrow \mathtt{None} \\ |
---|
445 | \mathtt{Addr\ a},\ - & \rightarrow \mathtt{None} |
---|
446 | \end{cases} |
---|
447 | \end{gather*} |
---|
448 | In contrast, in this paper we take a different approach. |
---|
449 | We trace memory locations (and, potentially, registers) that contain memory addresses. |
---|
450 | We then prove that only those assembly programs that use addresses in `safe' ways have their semantics preserved by the assembly process---a sort of dynamic type system sitting atop memory. |
---|
451 | |
---|
452 | We believe that this approach is more flexible when compared to the traditional approach, as in principle it allows us to introduce some permitted \emph{benign} manipulations of addresses that the traditional approach, using opaque addresses, cannot handle, therefore expanding the set of input programs that can be assembled correctly. |
---|
453 | This approach, of using real addresses coupled with a weak, dynamic typing system sitting atop of memory, is similar to one taken by Tuch \emph{et al}~\cite{tuch:types:2007}, for reasoning about low-level C code. |
---|
454 | |
---|
455 | Our analogue of the semantic function above is then merely a wrapper around the function that implements the semantics of machine code, paired with a function that keeps track of addresses. |
---|
456 | This permits a large amount of code reuse, as the semantics of pseudo- and machine code are essentially shared. |
---|
457 | The only thing that changes at the assembly level is the presence of the new tracking function. |
---|
458 | |
---|
459 | However, with this approach we must detect (at run time) programs that manipulate addresses in well behaved ways, according to some approximation of well-behavedness. |
---|
460 | We use an \texttt{internal\_pseudo\_address\_map} to trace addresses of code memory addresses in internal RAM: |
---|
461 | \begin{lstlisting} |
---|
462 | definition internal_pseudo_address_map := |
---|
463 | list ((BitVector 8) $\times$ (bool $\times$ Word)) $\times$ (option (bool $\times$ Word)). |
---|
464 | \end{lstlisting} |
---|
465 | The implementation of \texttt{internal\_pseudo\_address\_map} is complicated by some peculiarities of the MCS-51's instruction set. |
---|
466 | Note here that all addresses are 16 bit words, but are stored (and manipulated) as 8 bit bytes. |
---|
467 | All \texttt{MOV} instructions in the MCS-51 must use the accumulator \texttt{A} as an intermediary, moving a byte at a time. |
---|
468 | The second component of \texttt{internal\_pseudo\_address\_map} therefore states whether the accumulator currently holds a piece of an address, and if so, whether it is the upper or lower byte of the address (using the boolean flag) complete with the corresponding source address in full. |
---|
469 | The first component, on the other hand, performs a similar task for the rest of external RAM. |
---|
470 | Again, we use a boolean flag to describe whether a byte is the upper or lower component of a 16-bit address. |
---|
471 | |
---|
472 | The \texttt{low\_internal\_ram\_of\_pseudo\_low\_internal\_ram} function converts the lower internal RAM of a \texttt{PseudoStatus} into the lower internal RAM of a \texttt{Status}. |
---|
473 | A similar function exists for high internal RAM. |
---|
474 | Note that both RAM segments are indexed using addresses 7-bits long. |
---|
475 | The function is currently axiomatised, and an associated set of axioms prescribe the behaviour of the function: |
---|
476 | \begin{lstlisting} |
---|
477 | axiom low_internal_ram_of_pseudo_low_internal_ram: |
---|
478 | internal_pseudo_address_map$\rightarrow$BitVectorTrie Byte 7$\rightarrow$BitVectorTrie Byte 7. |
---|
479 | \end{lstlisting} |
---|
480 | |
---|
481 | Next, we are able to translate \texttt{PseudoStatus} records into \texttt{Status} records using \texttt{status\_of\_pseudo\_status}. |
---|
482 | Translating a \texttt{PseudoStatus}'s code memory requires we expand pseudoinstructions and then assemble to obtain a trie of bytes. |
---|
483 | This never fails, provided that our policy is correct: |
---|
484 | \begin{lstlisting} |
---|
485 | definition status_of_pseudo_status: |
---|
486 | internal_pseudo_address_map $\rightarrow$ $\forall$pap. $\forall$ps: PseudoStatus pap. |
---|
487 | $\forall$sigma: Word $\rightarrow$ Word. $\forall$policy: Word $\rightarrow$ bool. |
---|
488 | Status (code_memory_of_pseudo_assembly_program pap sigma policy) |
---|
489 | \end{lstlisting} |
---|
490 | |
---|
491 | The \texttt{next\_internal\_pseudo\_address\_map} function is responsible for run time monitoring of the behaviour of assembly programs, in order to detect well behaved ones. |
---|
492 | It returns a map that traces memory addresses in internal RAM after execution of the next pseudoinstruction, failing when the instruction tampers with memory addresses in unanticipated (but potentially correct) ways. |
---|
493 | It thus decides the membership of a strict subset of the set of well behaved programs. |
---|
494 | \begin{lstlisting} |
---|
495 | definition next_internal_pseudo_address_map: internal_pseudo_address_map |
---|
496 | $\rightarrow$ PseudoStatus $\rightarrow$ option internal_pseudo_address_map |
---|
497 | \end{lstlisting} |
---|
498 | Note, if we wished to allow `benign manipulations' of addresses, it would be this function that needs to be changed. |
---|
499 | |
---|
500 | The function \texttt{ticks\_of0} computes how long---in clock cycles---a pseudoinstruction will take to execute when expanded in accordance with a given policy. |
---|
501 | The function returns a pair of natural numbers, needed for recording the execution times of each branch of a conditional jump. |
---|
502 | \begin{lstlisting} |
---|
503 | definition ticks_of0: |
---|
504 | pseudo_assembly_program $\rightarrow$ (Word $\rightarrow$ Word) $\rightarrow$ (Word $\rightarrow$ bool) $\rightarrow$ Word $\rightarrow$ |
---|
505 | pseudo_instruction $\rightarrow$ nat $\times$ nat := $\ldots$ |
---|
506 | \end{lstlisting} |
---|
507 | An additional function, \texttt{ticks\_of}, is merely a wrapper around this function. |
---|
508 | |
---|
509 | Finally, we are able to state and prove our main theorem. |
---|
510 | This relates the execution of a single assembly instruction and the execution of (possibly) many machine code instructions, as long as we are able to track memory addresses properly: |
---|
511 | \begin{lstlisting} |
---|
512 | theorem main_thm: |
---|
513 | $\forall$M, M': internal_pseudo_address_map. |
---|
514 | $\forall$program: pseudo_assembly_program. |
---|
515 | let $\langle$preamble, instr_list$\rangle$ := program in |
---|
516 | $\forall$is_well_labelled: is_well_labelled_p instr_list. |
---|
517 | $\forall$sigma: Word $\rightarrow$ Word. |
---|
518 | $\forall$policy: Word $\rightarrow$ bool. |
---|
519 | $\forall$sigma_meets_specification. |
---|
520 | $\forall$ps: PseudoStatus program. |
---|
521 | $\forall$program_counter_in_bounds. |
---|
522 | next_internal_pseudo_address_map M program ps = Some $\ldots$ M' $\rightarrow$ |
---|
523 | $\exists$n. execute n $\ldots$ (status_of_pseudo_status M $\ldots$ ps sigma policy) = |
---|
524 | status_of_pseudo_status M' $\ldots$ (execute_1_pseudo_instruction |
---|
525 | (ticks_of program sigma policy) program ps) sigma policy. |
---|
526 | \end{lstlisting} |
---|
527 | The statement is standard for forward simulation, but restricted to \texttt{PseudoStatuses} \texttt{ps} whose next instruction to be executed is well-behaved with respect to the \texttt{internal\_pseudo\_address\_map} \texttt{M}. |
---|
528 | Further, we explicitly require proof that our policy is correct and the pseudo program counter lies within the bounds of the program. |
---|
529 | Theorem \texttt{main\_thm} establishes the total correctness of the assembly process and can simply be lifted to the forward simulation of an arbitrary number of well behaved steps on the assembly program. |
---|
530 | |
---|
531 | % ---------------------------------------------------------------------------- % |
---|
532 | % SECTION % |
---|
533 | % ---------------------------------------------------------------------------- % |
---|
534 | \section{Conclusions} |
---|
535 | \label{sect.conclusions} |
---|
536 | |
---|
537 | We are proving the total correctness of an assembler for MCS-51 assembly language. |
---|
538 | In particular, our assembly language features labels, arbitrary conditional and unconditional jumps to labels, global data and instructions for moving this data into the MCS-51's single 16-bit register. |
---|
539 | Expanding these pseudoinstructions into machine code instructions is not trivial, and the proof that the assembly process is `correct', in that the semantics of a subset of assembly programs are not changed is complex. |
---|
540 | |
---|
541 | The formalisation is a key component of the CerCo project, which aims to produce a verified concrete complexity preserving compiler for a large subset of the C programming language. |
---|
542 | The verified assembler, complete with the underlying formalisation of the semantics of MCS-51 machine code, will form the bedrock layer upon which the rest of the CerCo project will build its verified compiler platform. |
---|
543 | |
---|
544 | It is interesting to compare our work to an `industrial grade' assembler for the MCS-51: SDCC~\cite{sdcc:2011}. |
---|
545 | SDCC is the only open source C compiler that targets the MCS-51 instruction set. |
---|
546 | It appears that all pseudojumps in SDCC assembly are expanded to \texttt{LJMP} instructions, the worst possible jump expansion policy from an efficiency point of view. |
---|
547 | Note that this policy is the only possible policy \emph{in theory} that can preserve the semantics of an assembly program during the assembly process. |
---|
548 | However, this comes at the expense of assembler completeness: the generated program may be too large to fit into code memory. |
---|
549 | In this respect, there is a trade-off between the completeness of the assembler and the efficiency of the assembled program. |
---|
550 | The definition and proof of a terminating, correct jump expansion policy is described in a companion publication to this one~\cite{boender:correctness:2012}. |
---|
551 | |
---|
552 | Aside from their application in verified compiler projects such as CerCo, CompCert~\cite{leroy:formally:2009} and CompCertTSO~\cite{sevcik:relaxed-memory:2011}, verified assemblers such as ours could also be applied to the verification of operating system kernels. |
---|
553 | Of particular note is the verified seL4 kernel~\cite{klein:sel4:2009,klein:sel4:2010}. |
---|
554 | This verification explicitly assumes the existence of, amongst other things, a trustworthy assembler and compiler. |
---|
555 | |
---|
556 | Note that both CompCert, CompCertTSO and the seL4 formalisation assume the existence of `trustworthy' assemblers. |
---|
557 | For instance, the CompCert C compiler's backend stops at the PowerPC assembly language, in the default backend. |
---|
558 | The observation that an optimising assembler cannot preserve the semantics of every assembly program may have important consequences for these projects (though in the case of CompCertTSO, targetting a multiprocessor, what exactly constitutes the subset of `good programs' may not be entirely clear). |
---|
559 | If CompCert chooses to assume the existence of an optimising assembler, then care should be made to ensure that any assembly program produced by the CompCert compiler falls into the subset of programs that have a hope of having their semantics preserved by an optimising assembler. |
---|
560 | |
---|
561 | Our formalisation exploits dependent types in different ways and for multiple purposes. |
---|
562 | The first purpose is to reduce potential errors in the formalisation of the microprocessor. |
---|
563 | In particular, dependent types are used to constrain the size of bitvectors and tries that represent memory quantities and memory areas respectively. |
---|
564 | They are also used to simulate polymorphic variants in Matita, in order to provide precise typings to various functions expecting only a subset of all possible addressing modes that the MCS-51 offers. |
---|
565 | Polymorphic variants nicely capture the absolutely unorthogonal instruction set of the MCS-51 where every opcode must accept its own subset of the 11 addressing mode of the processor. |
---|
566 | |
---|
567 | The second purpose is to single out the sources of incompleteness. |
---|
568 | By abstracting our functions over the dependent type of correct policies, we were able to manifest the fact that the compiler never refuses to compile a program where a correct policy exists. |
---|
569 | This also allowed to simplify the initial proof by dropping lemmas establishing that one function fails if and only if some previous function does so. |
---|
570 | |
---|
571 | Finally, dependent types, together with Matita's liberal system of coercions, allow us to simulate almost entirely---in user space---the proof methodology ``Russell'' of Sozeau~\cite{sozeau:subset:2006}. |
---|
572 | However, not every proof has been carried out in this way: we only used this style to prove that a function satisfies a specification that only involves that function in a significant way. |
---|
573 | For example, it would be unnatural to see the proof that fetch and assembly commute as the specification of one of the two functions. |
---|
574 | |
---|
575 | \subsection{Related work} |
---|
576 | \label{subsect.related.work} |
---|
577 | |
---|
578 | % piton |
---|
579 | We are not the first to consider the total correctness of an assembler for a non-trivial assembly language. |
---|
580 | Perhaps the most impressive piece of work in this domain is the Piton stack~\cite{moore:piton:1996,moore:grand:2005}. |
---|
581 | This was a stack of verified components, written and verified in ACL2, ranging from a proprietary FM9001 microprocessor verified at the gate level, to assemblers and compilers for two high-level languages---a dialect of Lisp and $\mu$Gypsy~\cite{moore:grand:2005}. |
---|
582 | |
---|
583 | % jinja |
---|
584 | Klein and Nipkow consider a Java-like programming language, Jinja~\cite{klein:machine:2006,klein:machine:2010}. |
---|
585 | They provide a compiler, virtual machine and operational semantics for the programming language and virtual machine, and prove that their compiler is semantics and type preserving. |
---|
586 | |
---|
587 | We believe some other verified assemblers exist in the literature. |
---|
588 | However, what sets our work apart from that above is our attempt to optimise the machine code generated by our assembler. |
---|
589 | This complicates any formalisation effort, as an attempt at the best possible selection of machine instructions must be made, especially important on a device such as the MCS-51 with a minuscule code memory. |
---|
590 | Further, care must be taken to ensure that the time properties of an assembly program are not modified by the assembly process lest we affect the semantics of any program employing the MCS-51's I/O facilities. |
---|
591 | This is only possible by inducing a cost model on the source code from the optimisation strategy and input program. |
---|
592 | This will be a \emph{leit motif} of CerCo. |
---|
593 | |
---|
594 | \subsection{Resources} |
---|
595 | \label{subsect.resources} |
---|
596 | |
---|
597 | All files relating to our formalisation effort can be found online at~\url{http://cerco.cs.unibo.it}. |
---|
598 | In particular, we have assumed several properties of ``library functions'' related in particular to modular arithmetic and datastructure manipulation. |
---|
599 | Moreover, we have axiomatised various ancillary functions needed to complete the main theorems, as well as some `routine' proof obligations of the theorems themselves, preferring instead to focus on the main meat of the theorems. |
---|
600 | We thus believe that the proof strategy is sound and that we will be able to close soon all axioms, up to possible minor bugs that should have local fixes that do not affect the global proof strategy. |
---|
601 | |
---|
602 | The development, including the definition of the executable semantics of the MCS-51, is spread across 29 files, totalling around 18,500 lines of Matita source. |
---|
603 | The bulk of the proof described herein is contained in a series of files, \texttt{AssemblyProof.ma}, \texttt{AssemblyProofSplit.ma} and \texttt{AssemblyProofSplitSplit.ma} consisting at the moment of approximately 4200 lines of Matita source. |
---|
604 | Numerous other lines of proofs are spread all over the development because of dependent types and the Russell proof style, which does not allow one to separate the code from the proofs. |
---|
605 | The low ratio between the number of lines of code and the number of lines of proof is unusual. |
---|
606 | It is justified by the fact that the pseudo-assembly and the assembly language share most constructs and that large parts of the semantics are also shared. |
---|
607 | Therefore many lines of code are required to describe the complex semantics of the processor, but, for the shared cases, the proof of preservation of the semantics is essentially trivial. |
---|
608 | |
---|
609 | \bibliography{cpp-2012-asm.bib} |
---|
610 | |
---|
611 | \end{document}\renewcommand{\verb}{\lstinline} |
---|
612 | \def\lstlanguagefiles{lst-grafite.tex} |
---|
613 | \lstset{language=Grafite} |
---|