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 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 di Bologna} |
---|
40 | |
---|
41 | \bibliographystyle{splncs03} |
---|
42 | |
---|
43 | \begin{document} |
---|
44 | |
---|
45 | \maketitle |
---|
46 | |
---|
47 | \begin{abstract} |
---|
48 | We consider the formalisation of an assembler for Intel MCS-51 assembly language in the Matita proof assistant. |
---|
49 | This formalisation forms a major component of the EU-funded CerCo project, concerning the construction and formalisation of a concrete complexity preserving compiler for a large subset of the C programming language. |
---|
50 | |
---|
51 | The efficient expansion of pseudoinstructions---particularly jumps---into MCS-51 machine instructions is complex. |
---|
52 | We employ a strategy, involving the use of `policies', that separates the decision making over how jumps should be expanded from the expansion process itself. |
---|
53 | This makes the proof of correctness for the assembler significantly more straightforward. |
---|
54 | |
---|
55 | We prove, under the assumption of the existence of a correct policy, that the assembly process never fails and preserves the semantics of a subset of assembly programs. |
---|
56 | Correct policies fail to exist only in a limited number of pathological circumstances. |
---|
57 | Our assembler is complete with respect to the choice of policy. |
---|
58 | |
---|
59 | Surprisingly, we observe that it is impossible for an optimising assembler to preserve the semantics of every assembly program. |
---|
60 | \end{abstract} |
---|
61 | |
---|
62 | % ---------------------------------------------------------------------------- % |
---|
63 | % SECTION % |
---|
64 | % ---------------------------------------------------------------------------- % |
---|
65 | \section{Introduction} |
---|
66 | \label{sect.introduction} |
---|
67 | |
---|
68 | We consider the formalisation of an assembler for the Intel MCS-51 8-bit microprocessor in the Matita proof assistant~\cite{asperti:user:2007}. |
---|
69 | This formalisation forms a major component of the EU-funded CerCo project~\cite{cerco:2011}, concerning the construction and formalisation of a concrete complexity preserving compiler for a large subset of the C programming language. |
---|
70 | |
---|
71 | The MCS-51 dates from the early 1980s and is commonly called the 8051/8052. |
---|
72 | Despite the microprocessor's age, derivatives are still widely manufactured by a number of semiconductor foundries. |
---|
73 | As a result the processor is widely 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. |
---|
76 | In particular, the MCS-51 does not possess a cache or any instruction pipelining that would make predicting the concrete cost of executing a single instruction an involved process. |
---|
77 | Instead, each semiconductor foundry that produces an MCS-51 derivative is able to provide accurate timing information in clock cycles for each instruction in their derivative's instruction set. |
---|
78 | It is important to stress that this timing information, unlike in more sophisticated processors, is not an estimate, it is a `definition'. |
---|
79 | For the MCS-51, if a manufacturer states that a particular opcode takes three clock cycles to execute, then that opcode \emph{always} takes three clock cycles to execute. |
---|
80 | |
---|
81 | This predictability of timing information is especially attractive to the CerCo consortium. |
---|
82 | We are in the process of constructing a certified, concrete complexity compiler for a realistic processor, and not for building and formalising the worst case execution time tools (WCET---see~\cite{bate:wcet:2011}, amongst many others, for an application of WCET technology to microprocessors with more complex designs) that would be necessary to achieve the same result with, for example, a modern ARM or PowerPC microprocessor. |
---|
83 | |
---|
84 | As in most things, what one hand giveth, the other taketh away: the MCS-51's paucity of features, though an advantage in many respects, also quickly become a hindrance, and successfully compiling high-level code for this architecture is a cumbrous and involved process. |
---|
85 | In particular, the MCS-51 features a relatively miniscule series of memory spaces (including read-only code memory, stack and internal/external random access memory) by modern standards. |
---|
86 | 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. |
---|
87 | This is not simple and requires the use of optimisations. |
---|
88 | |
---|
89 | For example, 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}. |
---|
90 | 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. |
---|
91 | 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. |
---|
92 | |
---|
93 | The prototype CerCo C compiler does not attempt to select the smallest jump opcode in this manner, as this was thought to unnecessarily complicate the compilation chain, making the eventual translation and formalisation of the compiler into Matita much harder. |
---|
94 | Instead, the compiler targets a bespoke assembly language, similar to `real world' assembly languages, complete with pseudoinstructions including \texttt{Jmp} and \texttt{Call} instructions. |
---|
95 | 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 also feature. |
---|
96 | This latter feature will ease any later consideration of separate compilation in the CerCo compiler. |
---|
97 | An assembler is used to expand pseudoinstructions into MCS-51 machine code. |
---|
98 | |
---|
99 | However, this assembly process is not trivial, for numerous reasons. |
---|
100 | For example, our conditional jumps to labels behave differently from their machine code counterparts. |
---|
101 | At the machine code level, all conditional jumps are `short', limiting their range. |
---|
102 | However, at the assembly level, conditional jumps may jump to a label that appears anywhere in the program, significantly liberalising the use of conditional jumps and further simplifying the design of the CerCo compiler. |
---|
103 | |
---|
104 | Further, trying to na\"ively relate assembly programs with their machine code counterparts simply does not work. |
---|
105 | Machine code programs that fetch from constant addresses in code memory or programs that combine the program counter with constant shifts do not make sense at the assembly level, since the position of instructions in code memory will be known only after assembly and optimisation. |
---|
106 | More generally, memory addresses can only be compared with other memory addresses. |
---|
107 | However, checking that memory addresses are only compared against each other at the assembly level is in fact undecidable. |
---|
108 | In short, we come to the shocking\footnote{For us, anyway.} realisation that, with optimisations, the full preservation of the semantics of all assembly programs is impossible. |
---|
109 | We believe that this revelation is significant for large formalisation projects that assume the existence of a correct assembler. |
---|
110 | Projects in this class include both the recent CompCert~\cite{compcert:2011,leroy:formal:2009} and seL4 formalisations~\cite{klein:sel4:2009,klein:sel4:2010}. |
---|
111 | |
---|
112 | Yet, the situation is even more complex than having to expand pseudoinstructions correctly. |
---|
113 | In particular, when formalising the assembler, we must make sure that the assembly process does not change the timing characteristics of an assembly program for two reasons. |
---|
114 | |
---|
115 | First, the semantics of some functions of the MCS-51, notably I/O, depend on the microprocessor's clock. |
---|
116 | Changing how long a particular program takes to execute can affect the semantics of a program. |
---|
117 | This is undesirable. |
---|
118 | |
---|
119 | Second, as mentioned, the CerCo consortium is in the business of constructing a verified compiler for the C programming language. |
---|
120 | However, unlike CompCert~\cite{compcert:2011,leroy:formal:2009}---which currently represents the state of the art for `industrial grade' verified compilers---CerCo considers not just the \emph{extensional correctness} of the compiler, but also its \emph{intensional correctness}. |
---|
121 | That is, CompCert focusses solely on the preservation of the \emph{meaning} of a program during the compilation process, guaranteeing that the program's meaning does not change as it is gradually transformed into assembly code. |
---|
122 | However in any realistic compiler (even the CompCert compiler!) there is no guarantee that the program's time properties are preserved during the compilation process; a compiler's `optimisations' could, in theory, even conspire to degrade the concrete complexity of certain classes of programs. |
---|
123 | CerCo aims to expand the current state of the art by producing a compiler where this temporal degradation is guaranteed not to happen. |
---|
124 | Moreover, CerCo's approach lifts a program's timing information to the source (C language) level. |
---|
125 | This has the advantage of allowing a programmer to reason about a program's intensional properties directly on the source code that they write, not on the code that the compiler produces. |
---|
126 | |
---|
127 | In order to achieve this, CerCo imposes a cost model on programs or, more specifically, on simple blocks of instructions. |
---|
128 | 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. |
---|
129 | In short, we aim to obtain a very precise costing for a program by embracing the compilation process, not ignoring it. |
---|
130 | This, however, complicates the proof of correctness for the compiler proper. |
---|
131 | In each translation pass from intermediate language to intermediate language, we must prove that both the meaning and concrete complexity characteristics of the program are preserved. |
---|
132 | This also applies for the translation from assembly language to machine code. |
---|
133 | |
---|
134 | Naturally, this raises a question: how do we assign an \emph{accurate} cost to a pseudoinstruction? |
---|
135 | As mentioned, conditional jumps at the assembly level can jump to a label appearing anywhere in the program. |
---|
136 | However, at the machine code level, conditional jumps are limited to jumping `locally', using a measly byte offset. |
---|
137 | 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'): |
---|
138 | {\small{ |
---|
139 | \begin{displaymath} |
---|
140 | \begin{array}{r@{\quad}l@{\;\;}l@{\qquad}c@{\qquad}l@{\;\;}l} |
---|
141 | & \mathtt{JZ} & \mathtt{label} & & \mathtt{JZ} & \text{size of \texttt{SJMP} instruction} \\ |
---|
142 | & \ldots & & \text{translates to} & \mathtt{SJMP} & \text{size of \texttt{LJMP} instruction} \\ |
---|
143 | \mathtt{label:} & \mathtt{MOV} & \mathtt{A}\;\;\mathtt{B} & \Longrightarrow & \mathtt{LJMP} & \text{address of \textit{label}} \\ |
---|
144 | & & & & \ldots & \\ |
---|
145 | & & & & \mathtt{MOV} & \mathtt{A}\;\;\mathtt{B} |
---|
146 | \end{array} |
---|
147 | \end{displaymath}}} |
---|
148 | Here, if \texttt{JZ} fails, we fall through to the \texttt{SJMP} which jumps over the \texttt{LJMP}. |
---|
149 | 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. |
---|
150 | We address the calculation of whether a label is indeed `close enough' for the simpler translation to be used below. |
---|
151 | |
---|
152 | Crucially, the above translation demonstrates the difficulty in predicting how many clock cycles a pseudoinstruction will take to execute. |
---|
153 | A conditional jump may be mapped to a single machine instruction or a block of three. |
---|
154 | Perhaps more insidious is the realisation that the number of cycles needed to execute the instructions in the two branches of a translated conditional jump may be different. |
---|
155 | Depending on the particular MCS-51 derivative at hand, an \texttt{SJMP} could in theory take a different number of clock cycles to execute than an \texttt{LJMP}. |
---|
156 | These issues must also be dealt with in order to prove that the translation pass preserves the concrete complexity of assembly code, and that the semantics of a program using the MCS-51's I/O facilities does not change. |
---|
157 | We address this problem by parameterising the semantics over a cost model. |
---|
158 | We prove the preservation of concrete complexity only for the program-dependent cost model induced by the optimisation. |
---|
159 | |
---|
160 | Yet one more question remains: how do we decide whether to expand a jump into an \texttt{SJMP} or an \texttt{LJMP}? |
---|
161 | To understand, again, why this problem is not trivial, consider the following snippet of assembly code: |
---|
162 | {\small{ |
---|
163 | \begin{displaymath} |
---|
164 | \begin{array}{r@{\qquad}r@{\quad}l@{\;\;}l@{\qquad}l} |
---|
165 | \text{1:} & \mathtt{(0x000)} & \texttt{LJMP} & \texttt{0x100} & \text{\texttt{;; Jump forward 256.}} \\ |
---|
166 | \text{2:} & \mathtt{...} & \mathtt{...} & & \\ |
---|
167 | \text{3:} & \mathtt{(0x0FA)} & \texttt{LJMP} & \texttt{0x100} & \text{\texttt{;; Jump forward 256.}} \\ |
---|
168 | \text{4:} & \mathtt{...} & \mathtt{...} & & \\ |
---|
169 | \text{5:} & \mathtt{(0x100)} & \texttt{LJMP} & \texttt{-0x100} & \text{\texttt{;; Jump backward 256.}} \\ |
---|
170 | \end{array} |
---|
171 | \end{displaymath}}} |
---|
172 | We observe that $100_{16} = 256_{10}$, and lies \emph{just} outside the range expressible in an 8-bit byte (0--255). |
---|
173 | |
---|
174 | As our example shows, given an occurrence $l$ of an \texttt{LJMP} instruction, it may be possible to shrink $l$ to an occurrence of an \texttt{SJMP}---consuming fewer bytes of code memory---provided we can shrink any \texttt{LJMP}s that exist between $l$ and its target location. |
---|
175 | In particular, if we wish to shrink the \texttt{LJMP} occurring at line 1, then we must shrink the \texttt{LJMP} occurring at line 3. |
---|
176 | However, to shrink the \texttt{LJMP} occurring at line 3 we must also shrink the \texttt{LJMP} occurring at line 5, and \emph{vice versa}. |
---|
177 | |
---|
178 | Further, consider what happens if, instead of appearing at memory address \texttt{0x100}, the instruction at line 5 instead appeared \emph{just} beyond the size of code memory, and all other memory addresses were shifted accordingly. |
---|
179 | Now, in order to be able to successfully fit our program into the MCS-51's limited code memory, we are \emph{obliged} to shrink the \texttt{LJMP} occurring at line 5. |
---|
180 | That is, the shrinking process is not just related to the optimisation of generated machine code but also the completeness of the assembler itself. |
---|
181 | |
---|
182 | How we went about resolving this problem affected the shape of our proof of correctness for the whole assembler in a rather profound way. |
---|
183 | 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. |
---|
184 | Using this technique, solutions can fail to exist, and the proof of correctness for the assembler quickly descends into a diabolical quagmire. |
---|
185 | |
---|
186 | 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. |
---|
187 | Assuming the existence of a correct policy, we proved the implementation of the assembler correct. |
---|
188 | Further, we proved that the assembler fails to assemble an assembly program if and only if a correct policy does not exist. |
---|
189 | 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. |
---|
190 | |
---|
191 | 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 best policy. |
---|
192 | 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. |
---|
193 | We plan to employ dependent types in CerCo in order to restrict the domain of the compiler to those programs that are `semantically correct' and should be compiled. |
---|
194 | In particular, in CerCo we are also interested in the completeness of the compilation process, whereas previous formalisations only focused on correctness. |
---|
195 | |
---|
196 | The rest of this paper is a detailed description of our proof that is, in part, still a work in progress. |
---|
197 | |
---|
198 | % ---------------------------------------------------------------------------- % |
---|
199 | % SECTION % |
---|
200 | % ---------------------------------------------------------------------------- % |
---|
201 | \subsection{Overview of the paper} |
---|
202 | \label{subsect.overview.of.the.paper} |
---|
203 | In Section~\ref{sect.matita} we provide a brief overview of the Matita proof assistant for the unfamiliar reader. |
---|
204 | In Section~\ref{sect.the.proof} we discuss the design and implementation of the proof proper. |
---|
205 | In Section~\ref{sect.conclusions} we conclude. |
---|
206 | |
---|
207 | % ---------------------------------------------------------------------------- % |
---|
208 | % SECTION % |
---|
209 | % ---------------------------------------------------------------------------- % |
---|
210 | \section{Matita} |
---|
211 | \label{sect.matita} |
---|
212 | |
---|
213 | Matita is a proof assistant based on a variant of the Calculus of (Co)inductive Constructions~\cite{asperti:user:2007}. |
---|
214 | In particular, it features dependent types that we heavily exploit in the formalisation. |
---|
215 | The syntax of the statements and definitions in the paper should be self-explanatory, at least to those exposed to dependent type theory. |
---|
216 | We only remark the use of of `$\mathtt{?}$' or `$\mathtt{\ldots}$' for omitting single terms or sequences of terms to be inferred automatically by the system, respectively. |
---|
217 | Those that are not inferred are left to the user as proof obligations. |
---|
218 | Pairs are denoted with angular brackets, $\langle-, -\rangle$. |
---|
219 | |
---|
220 | Matita features a liberal system of coercions. |
---|
221 | 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$. |
---|
222 | The coercion opens a proof obligation that asks the user to prove that $P$ holds for $x$. |
---|
223 | 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 |
---|
224 | 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$. |
---|
225 | 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. |
---|
226 | 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. |
---|
227 | |
---|
228 | % ---------------------------------------------------------------------------- % |
---|
229 | % SECTION % |
---|
230 | % ---------------------------------------------------------------------------- % |
---|
231 | \section{The proof} |
---|
232 | \label{sect.the.proof} |
---|
233 | |
---|
234 | \subsection{The assembler and semantics of machine code} |
---|
235 | \label{subsect.the.assembler.and.semantics.of.machine.code} |
---|
236 | |
---|
237 | The formalisation in Matita of the semantics of MCS-51 machine code is described in~\cite{mulligan:executable:2011}. |
---|
238 | We merely describe enough here to understand the rest of the proof. |
---|
239 | |
---|
240 | The emulator centres around a \texttt{Status} record, describing the microprocessor's state. |
---|
241 | This record contains fields corresponding to the microprocessor's program counter, registers, and so on. |
---|
242 | At the machine code level, code memory is implemented as a compact trie of bytes, addressed by the program counter. |
---|
243 | Machine code programs are loaded into \texttt{Status} using the \texttt{load\_code\_memory} function. |
---|
244 | |
---|
245 | We may execute a single step of a machine code program using the \texttt{execute\_1} function, which returns an updated \texttt{Status}: |
---|
246 | \begin{lstlisting} |
---|
247 | definition execute_1: Status $\rightarrow$ Status := $\ldots$ |
---|
248 | \end{lstlisting} |
---|
249 | The function \texttt{execute} allows one to execute an arbitrary, but fixed (due to Matita's normalisation requirement) number of steps of a program. |
---|
250 | |
---|
251 | Naturally, assembly programs have analogues. |
---|
252 | The counterpart of the \texttt{Status} record is \texttt{PseudoStatus}. |
---|
253 | Instead of code memory being implemented as tries of bytes, code memory is here implemented as lists of pseudoinstructions, and program counters are merely indices into this list. |
---|
254 | Both \texttt{Status} and \texttt{PseudoStatus} are specialisations of the same \texttt{PreStatus} record, parametric in the representation of code memory. |
---|
255 | This allows us to share some code that is common to both records (for instance, `setter' and `getter' functions). |
---|
256 | |
---|
257 | Our analogue of \texttt{execute\_1} is \texttt{execute\_1\_pseudo\_instruction}: |
---|
258 | \begin{lstlisting} |
---|
259 | definition execute_1_pseudo_instruction: (Word $\rightarrow$ nat $\times$ nat) $\rightarrow$ |
---|
260 | PseudoStatus $\rightarrow$ PseudoStatus := $\ldots$ |
---|
261 | \end{lstlisting} |
---|
262 | Notice, here, that the emulation function for assembly programs takes an additional argument. |
---|
263 | 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. |
---|
264 | We call this function a \emph{costing}, and note that the costing is induced by the particular strategy we use to expand pseudoinstructions. |
---|
265 | 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. |
---|
266 | |
---|
267 | 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. |
---|
268 | This timing information is used inside \texttt{execute\_1\_pseudo\_instruction} to update the clock of the \texttt{PseudoStatus}. |
---|
269 | During the proof of correctness of the assembler we relate the clocks of \texttt{Status}es and \texttt{PseudoStatus}es for the policy induced by the cost model and optimisations. |
---|
270 | |
---|
271 | The assembler, mapping programs consisting of lists of pseudoinstructions to lists of bytes, operates in a mostly straightforward manner. |
---|
272 | To a degree of approximation, the assembler on an assembly program, consisting of $n$ pseudoinstructions $\mathtt{P_i}$ for $1 \leq i \leq n$, works as in the following diagram (we use $-^{*}$ to denote a combined map and flatten operation): |
---|
273 | \begin{displaymath} |
---|
274 | [\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]} |
---|
275 | \end{displaymath} |
---|
276 | Here $\mathtt{I^j_i}$ for $1 \leq j \leq q$ are the $q$ machine code instructions obtained by expanding, with \texttt{expand\_pseudo\_instruction}, a single pseudoinstruction $P_i$. |
---|
277 | Each machine code instruction $\mathtt{I^i_j}$ is then assembled, using the \texttt{assembly1} function, into a list of bytes. |
---|
278 | This process is iterated for each pseudoinstruction, before the lists are flattened into a single bit list representation of the original assembly program. |
---|
279 | |
---|
280 | By inspecting the above diagram, it would appear that the best way to proceed with a proof that the assembly process does not change the semantics of an assembly program is by proving the same independently for |
---|
281 | \texttt{expand\_pseudo\_instruction} and for \texttt{assembly1}. |
---|
282 | %Namely, we first expand any and all pseudoinstructions into lists of machine instructions, and provide a proof that this process does not change our program's semantics. |
---|
283 | %Finally, we assemble all machine code instructions into machine code---lists of bytes---and prove once more that this process does not have an adverse effect on a program's semantics. |
---|
284 | %By composition, we then have that the whole assembly process is semantics preserving. |
---|
285 | This is a tempting approach to the proof, but ultimately the wrong approach. |
---|
286 | In particular, to expand a pseudoinstruction we need to know the address at which the expanded instructions will be located, for instance to know if a short jump is possible. |
---|
287 | That address is a function of the \emph{machine code} generated for the pseudoinstructions already expanded. |
---|
288 | Thus, we must assemble each pseudoinstruction into machine code before moving on, and this must be eventually reflected in the proof too. |
---|
289 | Therefore we will have lemmas proving correctness for \texttt{assembly1}, and for the composition of \texttt{assembly1} and |
---|
290 | \texttt{expand\_pseudo\_instruction}, but not for \texttt{expand\_pseudo\_instruction} alone. |
---|
291 | |
---|
292 | % ---------------------------------------------------------------------------- % |
---|
293 | % SECTION % |
---|
294 | % ---------------------------------------------------------------------------- % |
---|
295 | \subsection{Policies} |
---|
296 | \label{subsect.policies} |
---|
297 | |
---|
298 | Policies exist to dictate how conditional and unconditional jumps at the assembly level should be expanded into machine code instructions. |
---|
299 | Using policies, we are able to completely decouple the decision over how jumps are expanded with the act of expansion, simplifying our proofs. |
---|
300 | As mentioned, the MCS-51 instruction set includes three different jump instructions: \texttt{SJMP}, \texttt{AJMP} and \texttt{LJMP}; call these `short', `medium' and `long' jumps, respectively: |
---|
301 | \begin{lstlisting} |
---|
302 | inductive jump_length: Type[0] := |
---|
303 | |short_jump:jump_length |medium_jump:jump_length |long_jump:jump_length. |
---|
304 | \end{lstlisting} |
---|
305 | |
---|
306 | A \texttt{jump\_expansion\_policy} is a map from pseudo program counters (implemented as \texttt{Word}s) to \texttt{jump\_length}s. |
---|
307 | Efficient implementations of policies are based on tries. |
---|
308 | Intuitively, a policy maps positions in a program (indexed using program counters implemented as \texttt{Word}s) to a particular variety of jump: |
---|
309 | \begin{lstlisting} |
---|
310 | definition policy_type := Word $\rightarrow$ jump_length. |
---|
311 | \end{lstlisting} |
---|
312 | |
---|
313 | Next, we require a series of `sigma' functions. |
---|
314 | These functions map assembly program counters to their machine code counterparts, establishing the correspondence between `positions' in an assembly program and `positions' in a machine code program. |
---|
315 | At the heart of this process is \texttt{sigma0} which traverses an assembly program building maps from pseudo program counters to program counters. |
---|
316 | This function fails if and only if an internal call to \texttt{assembly\_1\_pseudoinstruction\_safe} fails, which happens if a jump pseudoinstruction is expanded incorrectly: |
---|
317 | \begin{lstlisting} |
---|
318 | definition sigma0: pseudo_assembly_program $\rightarrow$ policy_type |
---|
319 | $\rightarrow$ option (nat $\times$ (nat $\times$ (BitVectorTrie Word 16))) := $\ldots$ |
---|
320 | \end{lstlisting} |
---|
321 | Here, the returned \texttt{BitVectorTrie} is a map between pseudo program counters and program counters, and is constructed by successively expanding pseudoinstructions and incrementing the two program counters the requisite amount to keep them in correct correspondence. |
---|
322 | The two natural numbers returned are the maximum values that the two program counters attained. |
---|
323 | |
---|
324 | We eventually lift this to functions from pseudo program counters to program counters, implemented as \texttt{Word}s: |
---|
325 | \begin{lstlisting} |
---|
326 | definition sigma_safe: |
---|
327 | pseudo_assembly_program $\rightarrow$ policy_type $\rightarrow$ option (Word $\rightarrow$ Word) := $\ldots$ |
---|
328 | \end{lstlisting} |
---|
329 | |
---|
330 | Now, it's possible to define what a `good policy' is for a program \texttt{p}. |
---|
331 | A policy \texttt{pol} is deemed good when it prevents \texttt{sigma\_safe} from failing on \texttt{p}. |
---|
332 | Failure is only possible when the policy dictates that short or medium jumps be expanded to jumps to locations too far away, or when the produced object code does not fit into code memory. |
---|
333 | A \texttt{policy} for a program \texttt{p} is a policy that is good for \texttt{p}: |
---|
334 | \begin{lstlisting} |
---|
335 | definition policy_ok := $\lambda$pol.$\lambda$p. sigma_safe p $\neq$ None $\ldots$ |
---|
336 | definition policy := |
---|
337 | $\lambda$p. $\Sigma$jump_expansion: policy_type. policy_ok jump_expansion p |
---|
338 | \end{lstlisting} |
---|
339 | |
---|
340 | Finally, we obtain \texttt{sigma}, a mapping from pseudo program counters to program counters that takes in input a good policy and thus never fails. |
---|
341 | Note how we avoid failure here, and in most of the remaining functions, by restricting the domain using the dependent type \texttt{policy}: |
---|
342 | \begin{lstlisting} |
---|
343 | definition sigma: $\forall$p. policy p $\rightarrow$ Word $\rightarrow$ Word := $\ldots$ |
---|
344 | \end{lstlisting} |
---|
345 | |
---|
346 | % ---------------------------------------------------------------------------- % |
---|
347 | % SECTION % |
---|
348 | % ---------------------------------------------------------------------------- % |
---|
349 | \subsection{Correctness of the assembler with respect to fetching} |
---|
350 | \label{subsect.total.correctness.of.the.assembler} |
---|
351 | |
---|
352 | Using our policies, we now work toward proving the total correctness of the assembler. |
---|
353 | By `total correctness', we mean that the assembly process never fails when provided with a good policy and that the process does not change the semantics of a certain class of well behaved assembly programs. |
---|
354 | Naturally, this necessitates keeping some sort of correspondence between addresses at the assembly level and addresses at the machine code level. |
---|
355 | For this, we use the \texttt{sigma} machinery defined at the end of Subsection~\ref{subsect.policies}. |
---|
356 | |
---|
357 | We expand pseudoinstructions using the function \texttt{expand\_pseudo\_instruction}. |
---|
358 | This takes an assembly program (consisting of a list of pseudoinstructions), a good policy for the program and a pointer to the pseudo code memory. |
---|
359 | It returns a list of instructions, corresponding to the expanded pseudoinstruction referenced by the pointer. |
---|
360 | The policy is used to decide how to expand \texttt{Call}s, \texttt{Jmp}s and conditional jumps. |
---|
361 | The function is given a dependent type that incorporates its specification. |
---|
362 | Its pre- and post-conditions are omitted in the paper due to lack of space. |
---|
363 | We show them as an example in the next function, \texttt{build\_maps}. |
---|
364 | \begin{lstlisting} |
---|
365 | definition expand_pseudo_instruction: |
---|
366 | $\forall$program. $\forall$pol: policy program. |
---|
367 | $\forall$ppc:Word. $\ldots$ $\Sigma$res. list instruction. $\ldots$ := $\ldots$ |
---|
368 | \end{lstlisting} |
---|
369 | |
---|
370 | The following function, \texttt{build\_maps}, is used to construct a pair of mappings from program counters to labels and cost labels, respectively. |
---|
371 | Cost labels are a technical device used in the CerCo prototype C compiler for proving that the compiler is cost preserving. |
---|
372 | For our purposes in this paper, they can be safely ignored, though the interested reader may consult~\cite{amadio:certifying:2010} for an overview. |
---|
373 | |
---|
374 | The label map, on the other hand, records the position of labels that appear in an assembly program, so that the pseudoinstruction expansion process can replace them with real memory addresses: |
---|
375 | \begin{lstlisting} |
---|
376 | definition build_maps: |
---|
377 | $\forall$p. $\forall$pol: policy p. |
---|
378 | $\Sigma$res : ((BitVectorTrie Word 16) $\times$ (BitVectorTrie Word 16)). |
---|
379 | let $\langle$labels, costs$\rangle$ := res in |
---|
380 | $\forall$id. occurs_exactly_once id ($\pi_2$ p) $\rightarrow$ |
---|
381 | let addr := address_of_word_labels_code_mem ($\pi_2$ p) id in |
---|
382 | lookup $\ldots$ id labels (zero $\ldots$) = sigma pseudo_program pol addr := $\ldots$ |
---|
383 | \end{lstlisting} |
---|
384 | The type of \texttt{build\_maps} owes to our use of Matita's Russell facility to provide a strong specification for the function in the type (c.f. the use of $\Sigma$-types and coercions, through which Russell is simulated in Matita). |
---|
385 | We express that for all labels that appear exactly once in any assembly program, the newly created map used in the implementation, and the stronger \texttt{sigma} function used in the specification, agree. |
---|
386 | |
---|
387 | Using \texttt{build\_maps}, we can express the following lemma, expressing the correctness of the assembly function: |
---|
388 | \begin{lstlisting} |
---|
389 | lemma assembly_ok: $\forall$p,pol,assembled. |
---|
390 | let $\langle$labels, costs$\rangle$ := build_maps p pol in |
---|
391 | $\langle$assembled,costs$\rangle$ = assembly p pol $\rightarrow$ |
---|
392 | let cmem := load_code_memory assembled in |
---|
393 | let preamble := $\pi_1$ p in |
---|
394 | let dlbls := construct_datalabels preamble in |
---|
395 | let addr := address_of_word_labels_code_mem ($\pi_2$ p) in |
---|
396 | let lk_lbls := λx. sigma p pol (addr x) in |
---|
397 | let lk_dlbls := λx. lookup $\ldots$ x datalabels (zero ?) in |
---|
398 | $\forall$ppc, pi, newppc. |
---|
399 | $\forall$prf: $\langle$pi, newppc$\rangle$ = fetch_pseudo_instruction ($\pi_2$ p) ppc. |
---|
400 | $\forall$len, assm. |
---|
401 | let spol := sigma program pol ppc in |
---|
402 | let spol_len := spol + len in |
---|
403 | let echeck := encoding_check cmem spol spol_len assm in |
---|
404 | let a1pi := assembly_1_pseudoinstruction in |
---|
405 | $\langle$len, assm$\rangle$ = a1pi p pol ppc lk_lbls lk_dlbls pi (refl $\ldots$) (refl $\ldots$) ? $\rightarrow$ |
---|
406 | echeck $\wedge$ sigma p pol newppc = spol_len. |
---|
407 | \end{lstlisting} |
---|
408 | Suppose also we assemble our program \texttt{p} in accordance with a policy \texttt{pol} to obtain \texttt{assembled}. |
---|
409 | Here, we perform a `sanity check' to ensure that the two cost label maps generated are identical, before loading the assembled program into code memory \texttt{cmem}. |
---|
410 | Then, for every pseudoinstruction \texttt{pi}, pseudo program counter \texttt{ppc} and new pseudo program counter \texttt{newppc}, such that we obtain \texttt{pi} and \texttt{newppc} from fetching a pseudoinstruction at \texttt{ppc}, we check that assembling this pseudoinstruction produces the correct number of machine code instructions, and that the new pseudo program counter \texttt{ppc} has the value expected of it. |
---|
411 | |
---|
412 | Theorem \texttt{fetch\_assembly} establishes that the \texttt{fetch} and \texttt{assembly1} functions interact correctly. |
---|
413 | 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: |
---|
414 | \begin{lstlisting} |
---|
415 | theorem fetch_assembly: $\forall$pc, i, cmem, assembled. assembled=assembly1 i $\rightarrow$ |
---|
416 | let len := length $\ldots$ assembled in |
---|
417 | encoding_check cmem pc (pc + len) assembled $\rightarrow$ |
---|
418 | let fetched := fetch code_memory (bitvector_of_nat $\ldots$ pc) in |
---|
419 | let $\langle$instr_pc, ticks$\rangle$ := fetched in |
---|
420 | let $\langle$instr, pc'$\rangle$ := instr_pc in |
---|
421 | (eq_instruction instr i $\wedge$ eqb ticks (ticks_of_instruction instr) $\wedge$ |
---|
422 | eq_bv $\ldots$ pc' (pc + len)) = true. |
---|
423 | \end{lstlisting} |
---|
424 | In particular, we read \texttt{fetch\_assembly} as follows. |
---|
425 | 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. |
---|
426 | Fetching from code memory, we obtain \texttt{fetched}, a tuple consisting of the instruction, new program counter, and the number of ticks this instruction will take to execute. |
---|
427 | Deconstructing these tuples, 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. |
---|
428 | Or, in plainer words, assembling and then immediately fetching again gets you back to where you started. |
---|
429 | |
---|
430 | Lemma \texttt{fetch\_assembly\_pseudo} (slightly simplified, here) is obtained by composition of \texttt{expand\_pseudo\_instruction} and \texttt{assembly\_1\_pseudoinstruction}: |
---|
431 | \begin{lstlisting} |
---|
432 | lemma fetch_assembly_pseudo: |
---|
433 | ∀program.∀pol:policy program.∀ppc.∀code_memory. |
---|
434 | let pi := $\pi_1$ (fetch_pseudo_instruction ($\pi_2$ program) ppc) in |
---|
435 | let instructions := expand_pseudo_instruction program pol ppc ... in |
---|
436 | let $\langle$len,assembled$\rangle$ := assembly_1_pseudoinstruction program pol ppc ... in |
---|
437 | encoding_check code_memory pc (pc + len) assembled → |
---|
438 | fetch_many code_memory (pc + len) pc instructions. |
---|
439 | \end{lstlisting} |
---|
440 | Here, \texttt{len} is the number of machine code instructions the pseudoinstruction at hand has been expanded into, and \texttt{encoding\_check} is a recursive function that checks that assembled machine code is correctly stored in code memory. |
---|
441 | We assemble a single pseudoinstruction with \texttt{assembly\_1\_pseudoinstruction}, which internally calls \texttt{jump\_expansion} and \texttt{expand\_pseudo\_instruction}. |
---|
442 | The function \texttt{fetch\_many} fetches multiple machine code instructions from code memory and performs some routine checks. |
---|
443 | |
---|
444 | Intuitively, Lemma \texttt{fetch\_assembly\_pseudo} can be read as follows. |
---|
445 | Suppose we expand the pseudoinstruction at \texttt{ppc} with the policy decision \texttt{pol}, obtaining the list of machine code instructions \texttt{instructions}. |
---|
446 | Suppose we also assemble the pseudoinstruction at \texttt{ppc} to obtain \texttt{assembled}, a list of bytes. |
---|
447 | 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. |
---|
448 | |
---|
449 | 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. |
---|
450 | \begin{lstlisting} |
---|
451 | lemma fetch_assembly_pseudo2: |
---|
452 | ∀program,pol,ppc. |
---|
453 | let $\langle$labels,costs$\rangle$ := build_maps program pol in |
---|
454 | let assembled := $\pi_1$ (assembly program pol) in |
---|
455 | let code_memory := load_code_memory assembled in |
---|
456 | let data_labels := construct_datalabels ($\pi_1$ program) in |
---|
457 | let lookup_labels := |
---|
458 | λx. sigma $\ldots$ pol (address_of_word_labels_code_mem ($\pi_2$ program) x) in |
---|
459 | let lookup_datalabels := λx. lookup ? ? x data_labels (zero ?) in |
---|
460 | let $\langle$pi,newppc$\rangle$ := fetch_pseudo_instruction ($\pi_2$ program) ppc in |
---|
461 | let instrs ≝ expand_pseudo_instruction program pol ppc ... in |
---|
462 | fetch_many code_memory (sigma $\ldots$ pol newppc) (sigma $\ldots$ pol ppc) instrs. |
---|
463 | \end{lstlisting} |
---|
464 | |
---|
465 | We read \texttt{fetch\_assembly\_pseudo2} as follows. |
---|
466 | Suppose we are able to successfully assemble an assembly program using \texttt{assembly} and produce a code memory, \texttt{code\_memory}. |
---|
467 | 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 at address \texttt{sigma program pol ppc}. |
---|
468 | The fetched sequence corresponds to the expansion, according to \texttt{pol}, of the pseudoinstruction. |
---|
469 | |
---|
470 | At first, the lemmas appears to immediately imply the correctness of the assembler. |
---|
471 | 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 pseudo-instruction and that of its expansion. |
---|
472 | In particular, the two semantics differ on instructions that \emph{could} directly manipulate program addresses. |
---|
473 | |
---|
474 | % ---------------------------------------------------------------------------- % |
---|
475 | % SECTION % |
---|
476 | % ---------------------------------------------------------------------------- % |
---|
477 | \subsection{Total correctness for `well behaved' assembly programs} |
---|
478 | \label{subsect.total.correctness.for.well.behaved.assembly.programs} |
---|
479 | |
---|
480 | In any `reasonable' assembly language addresses in code memory are just data that can be manipulated in multiple ways by the program. |
---|
481 | An assembly program can forge, compare and move addresses around, shift existing addresses or apply logical and arithmetical operations to them. |
---|
482 | Further, every optimising assembler is allowed to modify code memory. |
---|
483 | Hence only the semantics of a few of the aforementioned operations are preserved by an optimising assembler/compiler. |
---|
484 | Moreover, this characterisation of well behaved programs is clearly undecidable. |
---|
485 | |
---|
486 | To obtain a reasonable statement of correctness for our assembler, we need to trace memory locations (and, potentially, registers) that contain memory addresses. |
---|
487 | This is necessary for two purposes. |
---|
488 | |
---|
489 | First we must detect (at run time) programs that manipulate addresses in well behaved ways, according to some approximation of well-behavedness. |
---|
490 | Second, we must compute statuses that correspond to pseudo-statuses. |
---|
491 | The contents of the program counter must be translated, as well as the contents of all traced locations, by applying the \texttt{sigma} map. |
---|
492 | Remaining memory cells are copied \emph{verbatim}. |
---|
493 | |
---|
494 | For instance, after a function call, the two bytes that form the return pseudo address are pushed on top of the stack, i.e. in internal RAM. |
---|
495 | This pseudo internal RAM corresponds to an internal RAM where the stack holds the real addresses after optimisation, and all the other values remain untouched. |
---|
496 | |
---|
497 | We use an \texttt{internal\_pseudo\_address\_map} to trace addresses of code memory addresses in internal RAM. |
---|
498 | The current code is parametric on the implementation of the map itself. |
---|
499 | \begin{lstlisting} |
---|
500 | axiom internal_pseudo_address_map: Type[0]. |
---|
501 | \end{lstlisting} |
---|
502 | |
---|
503 | 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}. |
---|
504 | A similar function exists for higher internal RAM. |
---|
505 | Note that both RAM segments are indexed using addresses 7-bits long. |
---|
506 | The function is currently axiomatised, and an associated set of axioms prescribe the behaviour of the function: |
---|
507 | \begin{lstlisting} |
---|
508 | axiom low_internal_ram_of_pseudo_low_internal_ram: |
---|
509 | internal_pseudo_address_map$\rightarrow$BitVectorTrie Byte 7$\rightarrow$BitVectorTrie Byte 7. |
---|
510 | \end{lstlisting} |
---|
511 | |
---|
512 | Next, we are able to translate \texttt{PseudoStatus} records into \texttt{Status} records using \texttt{status\_of\_pseudo\_status}. |
---|
513 | Translating a \texttt{PseudoStatus}'s code memory requires we expand pseudoinstructions and then assemble to obtain a trie of bytes. |
---|
514 | This never fails, providing that our policy is correct: |
---|
515 | \begin{lstlisting} |
---|
516 | definition status_of_pseudo_status: internal_pseudo_address_map $\rightarrow$ |
---|
517 | $\forall$ps:PseudoStatus. policy (code_memory $\ldots$ ps) $\rightarrow$ Status |
---|
518 | \end{lstlisting} |
---|
519 | |
---|
520 | 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. |
---|
521 | 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. |
---|
522 | It thus decides the membership of a strict subset of the set of well behaved programs. |
---|
523 | \begin{lstlisting} |
---|
524 | definition next_internal_pseudo_address_map: internal_pseudo_address_map |
---|
525 | $\rightarrow$ PseudoStatus $\rightarrow$ option internal_pseudo_address_map |
---|
526 | \end{lstlisting} |
---|
527 | |
---|
528 | The function \texttt{ticks\_of} computes how long---in clock cycles---a pseudoinstruction will take to execute when expanded in accordance with a given policy. |
---|
529 | The function returns a pair of natural numbers, needed for recording the execution times of each branch of a conditional jump. |
---|
530 | \begin{lstlisting} |
---|
531 | definition ticks_of: |
---|
532 | $\forall$p:pseudo_assembly_program. policy p $\rightarrow$ Word $\rightarrow$ nat $\times$ nat := $\ldots$ |
---|
533 | \end{lstlisting} |
---|
534 | |
---|
535 | Finally, we are able to state and prove our main theorem. |
---|
536 | This relates the execution of a single assembly instruction and the execution of (possibly) many machine code instructions, as long . |
---|
537 | That is, the assembly process preserves the semantics of an assembly program, as it is translated into machine code, as long as we are able to track memory addresses properly: |
---|
538 | \begin{lstlisting} |
---|
539 | theorem main_thm: |
---|
540 | ∀M,M':internal_pseudo_address_map.∀ps.∀pol: policy ps. |
---|
541 | next_internal_pseudo_address_map M ps = Some $\ldots$ M' → |
---|
542 | ∃n. |
---|
543 | execute n (status_of_pseudo_status M ps pol) |
---|
544 | = status_of_pseudo_status M' |
---|
545 | (execute_1_pseudo_instruction (ticks_of (code_memory $\ldots$ ps) pol) ps) |
---|
546 | [pol]. |
---|
547 | \end{lstlisting} |
---|
548 | 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}. |
---|
549 | 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. |
---|
550 | |
---|
551 | % ---------------------------------------------------------------------------- % |
---|
552 | % SECTION % |
---|
553 | % ---------------------------------------------------------------------------- % |
---|
554 | \section{Conclusions} |
---|
555 | \label{sect.conclusions} |
---|
556 | |
---|
557 | We are proving the total correctness of an assembler for MCS-51 assembly language. |
---|
558 | In particular, our assembly language featured 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. |
---|
559 | 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. |
---|
560 | Further, we have observed the `shocking' fact that any optimising assembler cannot preserve the semantics of all assembly programs. |
---|
561 | |
---|
562 | 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. |
---|
563 | The verified assembler, complete with the underlying formalisation of the semantics of MCS-51 machine code (described fully in~\cite{mulligan:executable:2011}), will form the bedrock layer upon which the rest of the CerCo project will build its verified compiler platform. |
---|
564 | However, further work is needed. |
---|
565 | In particular, as it stands, the code produced by the prototype CerCo C compiler does not fall into the `semantics preserving' subset of assembly programs for our assembler. |
---|
566 | This is because the MCS-51 features a small stack space, and a larger stack is customarily manually emulated in external RAM. |
---|
567 | As a result, the majority of programs feature slices of memory addresses and program counters being moved in-and-out of external RAM via the registers, simulating the stack mechanism. |
---|
568 | At the moment, this movement is not tracked by \texttt{internal\_pseudo\_address\_map}, which only tracks the movement of memory addresses in low internal RAM. |
---|
569 | We leave extending this tracking of memory addresses throughout the whole of the MCS-51's address spaces as future work. |
---|
570 | |
---|
571 | It is interesting to compare our work to an `industrial grade' assembler for the MCS-51: SDCC~\cite{sdcc:2011}. |
---|
572 | SDCC is the only open source C compiler that targets the MCS-51 instruction set. |
---|
573 | 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. |
---|
574 | 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. |
---|
575 | However, this comes at the expense of assembler completeness: the generated program may be too large to fit into code memory. |
---|
576 | In this respect, there is a trade-off between the completeness of the assembler and the efficiency of the assembled program. |
---|
577 | The definition and proof of a complete, optimal (in the sense that object code size is minimised) and correct jump expansion policy is ongoing work. |
---|
578 | |
---|
579 | Aside from their application in verified compiler projects such as CerCo and CompCert, verified assemblers such as ours could also be applied to the verification of operating system kernels. |
---|
580 | Of particular note is the verified seL4 kernel~\cite{klein:sel4:2009,klein:sel4:2010}. |
---|
581 | This verification explicitly assumes the existence of, amongst other things, a trustworthy assembler and compiler. |
---|
582 | |
---|
583 | Note that both CompCert and the seL4 formalisation assume the existence of `trustworthy' assemblers. |
---|
584 | Our observation that an optimising assembler cannot preserve the semantics of every assembly program may have important consequences for these projects. |
---|
585 | 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. |
---|
586 | |
---|
587 | Our formalisation exploits dependent types in different ways and for multiple |
---|
588 | purposes. The first purpose is to reduce potential errors in the formalisation |
---|
589 | of the microprocessor. In particular, |
---|
590 | dependent types are used to constraint the size of bit-vectors and |
---|
591 | tries that represent memory quantities and memory areas respectively. |
---|
592 | They are also used as explained in~\cite{mulligan:executable:2011}. |
---|
593 | to simulate polymorphic variants in Matita. Polymorphic variants nicely |
---|
594 | capture the absolutely unorthogonal instruction set of the MCS-51 where every |
---|
595 | opcode must accept its own subset of the 11 addressing mode of the processor. |
---|
596 | |
---|
597 | The second purpose is to single out the sources of incompleteness. By |
---|
598 | abstracting our functions over the dependent type of correct policies, we were |
---|
599 | able to manifest the fact that the compiler never refuses to compile a program |
---|
600 | where a correct policy exists. This also allowed to simplify the |
---|
601 | initial proof by dropping lemmas establishing that one function fails if and |
---|
602 | only if some other one does so. |
---|
603 | |
---|
604 | Finally, dependent types, together with Matita's liberal system of coercions, |
---|
605 | allow to simulate almost entirely in user space the proof methodology |
---|
606 | ``Russell'' of Sozeau~\cite{sozeau:subset:2006}. However, not every |
---|
607 | proof has been done this way: we only used this style to prove that a |
---|
608 | function satisfies a specification that only involves that function in a |
---|
609 | significant way. For example, it would be unnatural to see the proof that |
---|
610 | fetch and assembly commute as the specification of one of the two functions. |
---|
611 | |
---|
612 | \subsection{Related work} |
---|
613 | \label{subsect.related.work} |
---|
614 | |
---|
615 | % piton |
---|
616 | We are not the first to consider the total correctness of an assembler for a non-trivial assembly language. |
---|
617 | Perhaps the most impressive piece of work in this domain is the Piton stack~\cite{moore:piton:1996,moore:grand:2005}. |
---|
618 | 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}. |
---|
619 | |
---|
620 | % jinja |
---|
621 | Klein and Nipkow consider a Java-like programming language, Jinja~\cite{klein:machine:2006,klein:machine:2010}. |
---|
622 | 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. |
---|
623 | |
---|
624 | We believe some other verified assemblers exist in the literature. |
---|
625 | However, what sets our work apart from that above is our attempt to optimise the machine code generated by our assembler. |
---|
626 | This complicates any formalisation effort, as the best possible selection of machine instructions must be made, especially important on a device such as the MCS-51 with a miniscule code memory. |
---|
627 | 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. |
---|
628 | This is only possible by inducing a cost model on the source code from the optimisation strategy and input program. |
---|
629 | This will be a \emph{leit motif} of CerCo. |
---|
630 | |
---|
631 | Finally, mention of CerCo will invariably invite comparisons with CompCert~\cite{compcert:2011,leroy:formal:2009}, another verified compiler project related to CerCo. |
---|
632 | As previously mentioned, CompCert considers only extensional correctness of the compiler, and not intensional correctness, which CerCo focusses on. |
---|
633 | However, CerCo also extends CompCert in other ways. |
---|
634 | Namely, the CompCert verified compilation chain terminates at the assembly level, and takes for granted the existence of a trustworthy assembler. |
---|
635 | CerCo chooses to go further, by considering a verified compilation chain all the way down to the machine code level. |
---|
636 | The work presented in this publication is one part of CerCo's extension over CompCert. |
---|
637 | |
---|
638 | \subsection{Resources} |
---|
639 | \label{subsect.resources} |
---|
640 | |
---|
641 | All files relating to our formalisation effort can be found online at~\url{http://cerco.cs.unibo.it}. The code of the compiler has been completed, and the |
---|
642 | proof of correctness described here is still in progress. In particular, we |
---|
643 | have assumed several properties of ``library functions'' related in particular |
---|
644 | to modular arithmetics and datastructures manipulation. Moreover, we only |
---|
645 | completed the interesting cases of some of the main theorems that proceed by |
---|
646 | cases on all the possible opcodes. |
---|
647 | We thus believe that the proof strategy is sound and that we will be able to |
---|
648 | close soon all axioms, up to possible minor bugs that should have local fixes |
---|
649 | that do not affect the global proof strategy. |
---|
650 | |
---|
651 | The development, including the definition of the executable semantics of the MCS-51, is spread across 17 files, totalling around 11,500 lines of Matita source. |
---|
652 | The bulk of the proof described herein is contained in a single file, \texttt{AssemblyProof.ma}, consisting at the moment of approximately 2500 lines of Matita source. Another 1000 lines of proofs are spread all over the development because |
---|
653 | of dependent types and the Russell proof style, that do not allow to separate the code from the proofs. The low ratio between the number of lines of code and |
---|
654 | the number of lines of proof is unusual. It is justified by the fact that |
---|
655 | the pseudo-assembly and the assembly language share most constructs and that |
---|
656 | large parts of the semantics is also shared. Thus many lines of code are |
---|
657 | required to describe the complex semantics of the processor, but, for |
---|
658 | the shared cases, the proof of preservation of the semantics is essentially |
---|
659 | trivial. |
---|
660 | |
---|
661 | \bibliography{cpp-2011.bib} |
---|
662 | |
---|
663 | \end{document}\renewcommand{\verb}{\lstinline} |
---|
664 | \def\lstlanguagefiles{lst-grafite.tex} |
---|
665 | \lstset{language=Grafite} |
---|