701
|
1 |
% !TEX program = xelatex
|
744
|
2 |
\documentclass[dvipsnames,14pt,t,xelatex,aspectratio=169,xcolor={table}]{beamer}
|
309
Christian Urban <christian dot urban at kcl dot ac dot uk>
diff
changeset
|
3 |
\usepackage{../slides}
|
215
Christian Urban <christian dot urban at kcl dot ac dot uk>
diff
changeset
|
4 |
\usepackage{../langs}
|
609
|
5 |
\usepackage{../data}
|
309
Christian Urban <christian dot urban at kcl dot ac dot uk>
diff
changeset
|
6 |
\usepackage{../graphics}
|
379
Christian Urban <christian dot urban at kcl dot ac dot uk>
diff
changeset
|
7 |
\usepackage{../grammar}
|
310
Christian Urban <christian dot urban at kcl dot ac dot uk>
diff
changeset
|
8 |
\usepackage{soul}
|
610
|
9 |
\usepackage{mathpartir}
|
701
|
10 |
\usetikzlibrary{shapes,arrows,shadows}
|
310
Christian Urban <christian dot urban at kcl dot ac dot uk>
diff
changeset
|
11 |
|
609
|
12 |
% beamer stuff
|
459
|
13 |
\renewcommand{\slidecaption}{CFL 09, King's College London}
|
609
|
14 |
\newcommand{\bl}[1]{\textcolor{blue}{#1}}
|
|
15 |
|
310
Christian Urban <christian dot urban at kcl dot ac dot uk>
diff
changeset
|
16 |
|
65
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
17 |
\begin{document}
|
609
|
18 |
|
65
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
19 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
309
Christian Urban <christian dot urban at kcl dot ac dot uk>
diff
changeset
|
20 |
\begin{frame}[t]
|
65
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
21 |
\frametitle{%
|
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
22 |
\begin{tabular}{@ {}c@ {}}
|
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
23 |
\\[-3mm]
|
459
|
24 |
\LARGE Compilers and \\[-2mm]
|
744
|
25 |
\LARGE Formal Languages\\[3mm]
|
65
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
26 |
\end{tabular}}
|
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
27 |
|
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
28 |
\normalsize
|
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
29 |
\begin{center}
|
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
30 |
\begin{tabular}{ll}
|
701
|
31 |
Email: & christian.urban at kcl.ac.uk\\
|
744
|
32 |
%Office Hours: & Thursdays 12 -- 14\\
|
|
33 |
%Location: & N7.07 (North Wing, Bush House)\\
|
701
|
34 |
Slides \& Progs: & KEATS (also homework is there)\\
|
538
|
35 |
\end{tabular}
|
|
36 |
\end{center}
|
310
Christian Urban <christian dot urban at kcl dot ac dot uk>
diff
changeset
|
37 |
|
744
|
38 |
\begin{center}
|
|
39 |
\begin{tikzpicture}
|
|
40 |
\node[drop shadow,fill=white,inner sep=0pt]
|
|
41 |
{\footnotesize\rowcolors{1}{capri!10}{white}
|
|
42 |
\begin{tabular}{|p{4.8cm}|p{4.8cm}|}\hline
|
|
43 |
1 Introduction, Languages & 6 While-Language \\
|
|
44 |
2 Regular Expressions, Derivatives & 7 Compilation, JVM \\
|
|
45 |
3 Automata, Regular Languages & 8 Compiling Functional Languages \\
|
|
46 |
4 Lexing, Tokenising & \cellcolor{blue!50} 9 Optimisations \\
|
|
47 |
5 Grammars, Parsing & 10 LLVM \\ \hline
|
|
48 |
\end{tabular}%
|
|
49 |
};
|
|
50 |
\end{tikzpicture}
|
|
51 |
\end{center}
|
609
|
52 |
\end{frame}
|
|
53 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
54 |
|
701
|
55 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
56 |
\begin{frame}[c,fragile]
|
702
|
57 |
\frametitle{The Fun Language}
|
609
|
58 |
|
701
|
59 |
\footnotesize
|
|
60 |
\begin{textblock}{13}(0.9,3)
|
|
61 |
\begin{lstlisting}[]numbers=none]
|
|
62 |
def fib(n) = if n == 0 then 0
|
|
63 |
else if n == 1 then 1
|
|
64 |
else fib(n - 1) + fib(n - 2);
|
609
|
65 |
|
701
|
66 |
def fact(n) = if n == 0 then 1 else n * fact(n - 1);
|
609
|
67 |
|
701
|
68 |
def ack(m, n) = if m == 0 then n + 1
|
|
69 |
else if n == 0 then ack(m - 1, 1)
|
|
70 |
else ack(m - 1, ack(m, n - 1));
|
|
71 |
|
|
72 |
def gcd(a, b) = if b == 0 then a else gcd(b, a % b);
|
|
73 |
\end{lstlisting}
|
|
74 |
\end{textblock}
|
609
|
75 |
|
|
76 |
\end{frame}
|
|
77 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
78 |
|
|
79 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
80 |
\begin{frame}[c,fragile]
|
702
|
81 |
\frametitle{Factorial Funct.~on the JVM}
|
609
|
82 |
|
701
|
83 |
\begin{textblock}{7}(1,1.8)\footnotesize
|
|
84 |
\begin{minipage}{6cm}
|
|
85 |
\begin{lstlisting}[language=JVMIS,basicstyle=\ttfamily, numbers=none]
|
|
86 |
.method public static facT(II)I
|
|
87 |
.limit locals 2
|
|
88 |
.limit stack 6
|
|
89 |
iload 0
|
|
90 |
ldc 0
|
|
91 |
if_icmpne If_else_2
|
|
92 |
iload 1
|
|
93 |
goto If_end_3
|
|
94 |
If_else_2:
|
|
95 |
iload 0
|
|
96 |
ldc 1
|
|
97 |
isub
|
|
98 |
iload 0
|
|
99 |
iload 1
|
|
100 |
imul
|
|
101 |
invokestatic fact/fact/facT(II)I
|
|
102 |
If_end_3:
|
|
103 |
ireturn
|
|
104 |
.end method
|
|
105 |
\end{lstlisting}
|
|
106 |
\end{minipage}
|
|
107 |
\end{textblock}
|
|
108 |
|
|
109 |
\begin{textblock}{7}(6,7)
|
|
110 |
\begin{bubble}[7cm]\small
|
|
111 |
\begin{lstlisting}[language=Lisp,
|
|
112 |
basicstyle=\ttfamily,
|
|
113 |
numbers=none,
|
|
114 |
xleftmargin=1mm,linebackgroundcolor=\color{cream}]
|
|
115 |
def facT(n, acc) =
|
|
116 |
if n == 0 then acc
|
|
117 |
else facT(n - 1, n * acc);
|
|
118 |
\end{lstlisting}
|
|
119 |
\end{bubble}
|
|
120 |
\end{textblock}
|
|
121 |
|
|
122 |
\end{frame}
|
|
123 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
124 |
|
|
125 |
|
|
126 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
127 |
\begin{frame}[fragile,c]
|
|
128 |
\frametitle{LLVM}
|
609
|
129 |
|
|
130 |
\begin{itemize}
|
701
|
131 |
\item Chris Lattner, Vikram Adve (started in 2000)
|
|
132 |
\item Apple hired Lattner in 2006
|
|
133 |
\item modular architecture, LLVM-IR
|
|
134 |
\item \texttt{lli} and \texttt{llc}
|
|
135 |
\end{itemize}
|
609
|
136 |
|
|
137 |
\end{frame}
|
701
|
138 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
139 |
|
|
140 |
|
|
141 |
|
|
142 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
143 |
\tikzstyle{sensor}=[draw, fill=blue!20, text width=3.8em, line width=1mm,
|
|
144 |
text centered, minimum height=2em,drop shadow]
|
|
145 |
\tikzstyle{ann} = [above, text width=4em, text centered]
|
|
146 |
\tikzstyle{sc} = [sensor, text width=7em, fill=red!20,
|
|
147 |
minimum height=6em, rounded corners, drop shadow,line width=1mm]
|
|
148 |
|
|
149 |
\begin{frame}[fragile,c]
|
|
150 |
\frametitle{LLVM: Overview}
|
|
151 |
|
|
152 |
\begin{tikzpicture}
|
|
153 |
% Validation Layer is the same except that there are a set of nodes and links which are added
|
|
154 |
|
|
155 |
\path (0,0) node (IR) [sc] {\textbf{LLVM-IR}\\ Optimisations};
|
|
156 |
\path (IR.west)+(-2.2,1.7) node (sou1) [sensor] {C++};
|
|
157 |
\path (IR.west)+(-2.2,0.5) node (sou2)[sensor] {C};
|
|
158 |
\path (IR.west)+(-2.2,-1.0) node (dots)[ann] {$\vdots$};
|
|
159 |
\path (IR.west)+(-2.2,-1.8) node (sou3)[sensor] {Haskell};
|
|
160 |
|
|
161 |
\path [draw,->,line width=1mm] (sou1.east) -- node [above] {} (IR.160);
|
|
162 |
\path [draw,->,line width=1mm] (sou2.east) -- node [above] {} (IR.180);
|
|
163 |
\path [draw,->,line width=1mm] (sou3.east) -- node [above] {} (IR.200);
|
|
164 |
|
|
165 |
\path (IR.east)+(2.2,2.0) node (tar1)[sensor] {x86};
|
|
166 |
\path (IR.east)+(2.2,0.8) node (tar2)[sensor] {ARM};
|
|
167 |
\path (IR.east)+(2.2,-0.4) node (tar3)[sensor] {MIPS};
|
|
168 |
\path (IR.east)+(2.2,-1.6) node (tar4)[sensor] {RISC};
|
|
169 |
\path (IR.east)+(2.2,-2.8) node (tar5)[sensor] {Power PC};
|
|
170 |
\path (IR.east)+(2.2,-4.2) node (dots2)[ann] {$\vdots$};
|
|
171 |
|
|
172 |
\path [draw,<-,line width=1mm] (tar1.west) -- node [above] {} (IR.10);
|
|
173 |
\path [draw,<-,line width=1mm] (tar2.west) -- node [above] {} (IR.5);
|
|
174 |
\path [draw,<-,line width=1mm] (tar3.west) -- node [above] {} (IR.0);
|
|
175 |
\path [draw,<-,line width=1mm] (tar4.west) -- node [above] {} (IR.-5);
|
|
176 |
\path [draw,<-,line width=1mm] (tar5.west) -- node [above] {} (IR.-10);
|
|
177 |
|
|
178 |
\end{tikzpicture}
|
|
179 |
\end{frame}
|
|
180 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
181 |
|
609
|
182 |
|
|
183 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
701
|
184 |
\begin{frame}[fragile,t]
|
|
185 |
\frametitle{LLVM-IR}
|
|
186 |
\small
|
|
187 |
|
|
188 |
\begin{textblock}{7.7}(8,11.4)
|
|
189 |
\begin{bubble}[5cm]\small
|
|
190 |
\begin{lstlisting}[language=Lisp,
|
|
191 |
numbers=none,
|
|
192 |
xleftmargin=1mm,linebackgroundcolor=\color{cream}]
|
|
193 |
def fact(n) =
|
|
194 |
if n == 0 then 1
|
|
195 |
else n * fact(n - 1)
|
|
196 |
\end{lstlisting}
|
|
197 |
\end{bubble}
|
|
198 |
\end{textblock}
|
310
Christian Urban <christian dot urban at kcl dot ac dot uk>
diff
changeset
|
199 |
|
701
|
200 |
\begin{lstlisting}[language=LLVM,xleftmargin=-7mm]
|
|
201 |
define i32 @fact (i32 %n) {
|
|
202 |
%tmp_19 = icmp eq i32 %n, 0
|
|
203 |
br i1 %tmp_19, label %if_br_23, label %else_br_24
|
|
204 |
|
|
205 |
if_br_23:
|
|
206 |
ret i32 1
|
|
207 |
|
|
208 |
else_br_24:
|
|
209 |
%tmp_21 = sub i32 %n, 1
|
|
210 |
%tmp_22 = call i32 @fact (i32 %tmp_21)
|
|
211 |
%tmp_20 = mul i32 %n, %tmp_22
|
|
212 |
ret i32 %tmp_20
|
|
213 |
}
|
|
214 |
\end{lstlisting}
|
609
|
215 |
|
|
216 |
\end{frame}
|
701
|
217 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
218 |
|
|
219 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
220 |
\begin{frame}[fragile,c]
|
|
221 |
\frametitle{LLVM Types}
|
|
222 |
|
|
223 |
\tt
|
|
224 |
\begin{center}
|
|
225 |
\begin{tabular}{ll}
|
|
226 |
boolean & i1 \\
|
|
227 |
byte & i8 \\
|
|
228 |
short & i16\\
|
|
229 |
char & i16\\
|
|
230 |
integer & i32\\
|
|
231 |
long & i64\\
|
|
232 |
float & float\\
|
|
233 |
double & double\\
|
|
234 |
*\_ & pointer to \\
|
|
235 |
**\_ & pointer to a pointer to\\
|
|
236 |
\mbox{}[\_] & arrays of\\
|
|
237 |
\end{tabular}
|
|
238 |
\end{center}
|
|
239 |
|
|
240 |
\end{frame}
|
|
241 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
242 |
|
|
243 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
244 |
\begin{frame}[fragile,c]
|
702
|
245 |
\frametitle{LLVM-IR Instructions}
|
701
|
246 |
\small
|
|
247 |
|
702
|
248 |
\begin{lstlisting}[language=LLVM,xleftmargin=0mm]
|
701
|
249 |
br i1 %var, label %if_br, label %else_br
|
|
250 |
|
|
251 |
icmp eq i32 %x, %y ; for equal
|
|
252 |
icmp sle i32 %x, %y ; signed less or equal
|
|
253 |
icmp slt i32 %x, %y ; signed less than
|
|
254 |
icmp ult i32 %x, %y ; unsigned less than
|
|
255 |
|
|
256 |
%var = call i32 @foo(...args...)
|
|
257 |
\end{lstlisting}
|
|
258 |
|
|
259 |
\end{frame}
|
|
260 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
261 |
|
|
262 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
263 |
\begin{frame}[fragile,c]
|
|
264 |
\frametitle{SSA Format}
|
|
265 |
|
|
266 |
\bl{$(1 + a) + (3 + (b * 5))$}\bigskip\bigskip
|
|
267 |
|
|
268 |
\begin{lstlisting}[language=LLVM]
|
702
|
269 |
tmp0 = add 1 a
|
|
270 |
tmp1 = mul b 5
|
|
271 |
tmp2 = add 3 tmp1
|
|
272 |
tmp3 = add tmp0 tmp2
|
|
273 |
\end{lstlisting}\bigskip\bigskip
|
|
274 |
|
|
275 |
\hfill Static Single Assignment
|
701
|
276 |
|
|
277 |
\end{frame}
|
|
278 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
609
|
279 |
|
|
280 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
701
|
281 |
\begin{frame}[fragile,c]
|
|
282 |
\frametitle{Abstract Syntax Trees}
|
|
283 |
\footnotesize
|
|
284 |
|
|
285 |
\begin{lstlisting}[language=Scala,numbers=none,xleftmargin=-3mm]
|
|
286 |
// Fun language (expressions)
|
|
287 |
abstract class Exp
|
|
288 |
abstract class BExp
|
|
289 |
|
|
290 |
case class Call(name: String, args: List[Exp]) extends Exp
|
|
291 |
case class If(a: BExp, e1: Exp, e2: Exp) extends Exp
|
|
292 |
case class Write(e: Exp) extends Exp
|
|
293 |
case class Var(s: String) extends Exp
|
|
294 |
case class Num(i: Int) extends Exp
|
|
295 |
case class Aop(o: String, a1: Exp, a2: Exp) extends Exp
|
|
296 |
case class Sequence(e1: Exp, e2: Exp) extends Exp
|
|
297 |
case class Bop(o: String, a1: Exp, a2: Exp) extends BExp
|
|
298 |
\end{lstlisting}
|
609
|
299 |
|
701
|
300 |
\end{frame}
|
|
301 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
302 |
|
|
303 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
304 |
\begin{frame}[fragile,c]
|
|
305 |
\frametitle{K-(Intermediate)Language}
|
|
306 |
\footnotesize
|
609
|
307 |
|
701
|
308 |
\begin{lstlisting}[language=Scala,numbers=none,xleftmargin=-3mm]
|
|
309 |
abstract class KExp
|
|
310 |
abstract class KVal
|
|
311 |
|
702
|
312 |
// K-Values
|
701
|
313 |
case class KVar(s: String) extends KVal
|
|
314 |
case class KNum(i: Int) extends KVal
|
|
315 |
case class Kop(o: String, v1: KVal, v2: KVal) extends KVal
|
|
316 |
case class KCall(o: String, vrs: List[KVal]) extends KVal
|
|
317 |
case class KWrite(v: KVal) extends KVal
|
|
318 |
|
702
|
319 |
// K-Expressions
|
701
|
320 |
case class KIf(x1: String, e1: KExp, e2: KExp) extends KExp
|
|
321 |
case class KLet(x: String, v: KVal, e: KExp) extends KExp
|
|
322 |
case class KReturn(v: KVal) extends KExp
|
609
|
323 |
\end{lstlisting}
|
|
324 |
|
701
|
325 |
\end{frame}
|
|
326 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
327 |
|
|
328 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
329 |
\begin{frame}[fragile,c]
|
819
|
330 |
\frametitle{KLet}
|
|
331 |
|
|
332 |
\begin{lstlisting}[language=LLVM]
|
|
333 |
tmp0 = add 1 a
|
|
334 |
tmp1 = mul b 5
|
|
335 |
tmp2 = add 3 tmp1
|
|
336 |
tmp3 = add tmp0 tmp2
|
|
337 |
\end{lstlisting}
|
|
338 |
|
|
339 |
\begin{lstlisting}[language=LLVMIR]
|
|
340 |
KLet tmp0 , add 1 a in
|
|
341 |
KLet tmp1 , mul b 5 in
|
|
342 |
KLet tmp2 , add 3 tmp1 in
|
|
343 |
KLet tmp3 , add tmp0 tmp2 in
|
|
344 |
...
|
|
345 |
\end{lstlisting}
|
|
346 |
|
|
347 |
\begin{lstlisting}[language=Scala,numbers=none]
|
|
348 |
case class KLet(x: String, e1: KVal, e2: KExp)
|
|
349 |
\end{lstlisting}
|
|
350 |
|
|
351 |
\end{frame}
|
|
352 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
353 |
|
|
354 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
355 |
\begin{frame}[fragile,c]
|
|
356 |
\frametitle{KLet}
|
|
357 |
|
|
358 |
\begin{lstlisting}[language=LLVM]
|
|
359 |
tmp0 = add 1 a
|
|
360 |
tmp1 = mul b 5
|
|
361 |
tmp2 = add 3 tmp1
|
|
362 |
tmp3 = add tmp0 tmp2
|
|
363 |
\end{lstlisting}
|
|
364 |
|
|
365 |
\begin{lstlisting}[language=LLVMIR]
|
|
366 |
let tmp0 = add 1 a in
|
|
367 |
let tmp1 = mul b 5 in
|
|
368 |
let tmp2 = add 3 tmp1 in
|
|
369 |
let tmp3 = add tmp0 tmp2 in
|
|
370 |
...
|
|
371 |
\end{lstlisting}
|
|
372 |
|
|
373 |
\begin{lstlisting}[language=Scala,numbers=none]
|
|
374 |
case class KLet(x: String, e1: KVal, e2: KExp)
|
|
375 |
\end{lstlisting}
|
|
376 |
|
|
377 |
\end{frame}
|
|
378 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
379 |
|
|
380 |
|
|
381 |
|
|
382 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
383 |
\begin{frame}[fragile,c]
|
701
|
384 |
\frametitle{CPS-Translation}
|
|
385 |
\small
|
|
386 |
|
|
387 |
\begin{lstlisting}[language=Scala,numbers=none]
|
|
388 |
def CPS(e: Exp)(k: KVal => KExp) : KExp =
|
|
389 |
e match { ... }
|
|
390 |
\end{lstlisting}
|
|
391 |
\bigskip\bigskip
|
|
392 |
|
702
|
393 |
the continuation \texttt{k} can be thought of:\medskip
|
|
394 |
|
701
|
395 |
\small
|
|
396 |
\begin{lstlisting}[language=LLVMIR,numbers=none,xleftmargin=30mm,escapeinside={(*@}{@*)}]
|
|
397 |
let tmp0 = add 1 a in
|
|
398 |
let tmp1 = mul (*@$\Box$@*) 5 in
|
|
399 |
let tmp2 = add 3 tmp1 in
|
|
400 |
let tmp3 = add tmp0 tmp2 in
|
|
401 |
KReturn tmp3
|
|
402 |
\end{lstlisting}
|
609
|
403 |
|
|
404 |
\end{frame}
|
701
|
405 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
406 |
|
|
407 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
408 |
\begin{frame}[fragile,c]
|
|
409 |
\frametitle{CPS-Translation}
|
|
410 |
\small
|
|
411 |
|
|
412 |
\begin{lstlisting}[language=Scala,numbers=none]
|
|
413 |
def CPS(e: Exp)(k: KVal => KExp) : KExp =
|
|
414 |
e match {
|
|
415 |
case Var(s) => k(KVar(s))
|
|
416 |
case Num(i) => k(KNum(i))
|
|
417 |
...
|
|
418 |
}
|
|
419 |
\end{lstlisting}
|
|
420 |
\bigskip\bigskip
|
|
421 |
|
|
422 |
\small
|
|
423 |
\begin{lstlisting}[language=LLVMIR,numbers=none,xleftmargin=30mm,escapeinside={(*@}{@*)}]
|
|
424 |
let tmp0 = add 1 a in
|
|
425 |
let tmp1 = mul (*@$\Box$@*) 5 in
|
|
426 |
let tmp2 = add 3 tmp1 in
|
|
427 |
let tmp3 = add tmp0 tmp2 in
|
|
428 |
KReturn tmp3
|
|
429 |
\end{lstlisting}
|
|
430 |
|
|
431 |
\end{frame}
|
|
432 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
609
|
433 |
|
|
434 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
701
|
435 |
\begin{frame}[fragile,c]
|
|
436 |
\frametitle{CPS-Translation}
|
|
437 |
\small
|
609
|
438 |
|
701
|
439 |
\begin{lstlisting}[language=Scala,numbers=none,xleftmargin=-5mm]
|
|
440 |
def CPS(e: Exp)(k: KVal => KExp) : KExp = e match {
|
|
441 |
case Aop(o, e1, e2) => {
|
|
442 |
val z = Fresh("tmp")
|
|
443 |
CPS(e1)(y1 =>
|
|
444 |
CPS(e2)(y2 =>
|
|
445 |
KLet(z, Kop(o, y1, y2), k(KVar(z)))))
|
|
446 |
} ...
|
|
447 |
}
|
609
|
448 |
\end{lstlisting}
|
702
|
449 |
\mbox{}\\[-8mm]%
|
|
450 |
%
|
701
|
451 |
\begin{lstlisting}[language=LLVMIR,numbers=none,xleftmargin=30mm,escapeinside={(*@}{@*)}]
|
|
452 |
...
|
|
453 |
let z = op (*@$\Box_{y_1}$@*) (*@$\Box_{y_2}$@*)
|
|
454 |
let tmp0 = add 1 a in
|
702
|
455 |
let tmp1 = mul (*@$\Box\!\!\!\!\raisebox{0.6mm}{\alert{\texttt{z}}}$@*) 5 in
|
701
|
456 |
let tmp2 = add 3 tmp1 in
|
|
457 |
let tmp3 = add tmp0 tmp2 in
|
|
458 |
KReturn tmp3
|
|
459 |
\end{lstlisting}
|
609
|
460 |
|
|
461 |
\end{frame}
|
701
|
462 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
609
|
463 |
|
|
464 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
701
|
465 |
\begin{frame}[fragile,c]
|
|
466 |
\frametitle{CPS-Translation}
|
|
467 |
\small
|
609
|
468 |
|
701
|
469 |
\begin{lstlisting}[language=Scala,numbers=none]
|
|
470 |
def CPS(e: Exp)(k: KVal => KExp) : KExp =
|
|
471 |
e match {
|
|
472 |
case Sequence(e1, e2) =>
|
|
473 |
CPS(e1)(_ => CPS(e2)(y2 => k(y2)))
|
|
474 |
...
|
|
475 |
}
|
|
476 |
\end{lstlisting}
|
702
|
477 |
\bigskip
|
701
|
478 |
|
|
479 |
\small
|
|
480 |
\begin{lstlisting}[language=LLVMIR,numbers=none,xleftmargin=30mm,escapeinside={(*@}{@*)}]
|
|
481 |
let tmp0 = add 1 a in
|
|
482 |
let tmp1 = mul (*@$\Box$@*) 5 in
|
|
483 |
let tmp2 = add 3 tmp1 in
|
|
484 |
let tmp3 = add tmp0 tmp2 in
|
|
485 |
KReturn tmp3
|
|
486 |
\end{lstlisting}
|
609
|
487 |
|
|
488 |
\end{frame}
|
701
|
489 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
310
Christian Urban <christian dot urban at kcl dot ac dot uk>
diff
changeset
|
490 |
|
610
|
491 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
701
|
492 |
\begin{frame}[fragile,c]
|
|
493 |
\frametitle{CPS-Translation}
|
|
494 |
\small
|
|
495 |
|
|
496 |
\begin{lstlisting}[language=Scala,numbers=none,xleftmargin=-3mm]
|
|
497 |
def CPS(e: Exp)(k: KVal => KExp) : KExp =
|
|
498 |
e match {
|
|
499 |
...
|
|
500 |
case If(Bop(o, b1, b2), e1, e2) => {
|
|
501 |
val z = Fresh("tmp")
|
|
502 |
CPS(b1)(y1 =>
|
|
503 |
CPS(b2)(y2 =>
|
|
504 |
KLet(z, Kop(o, y1, y2),
|
|
505 |
KIf(z, CPS(e1)(k), CPS(e2)(k)))))
|
|
506 |
}
|
|
507 |
...
|
|
508 |
}
|
|
509 |
\end{lstlisting}
|
|
510 |
|
|
511 |
\end{frame}
|
|
512 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
513 |
|
702
|
514 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
515 |
\begin{frame}[c,fragile]
|
|
516 |
\frametitle{The Basic Language, 1980+}
|
|
517 |
|
|
518 |
\begin{lstlisting}[language={[Visual]Basic},numbers=none]
|
|
519 |
5 LET S = 0
|
|
520 |
10 INPUT V
|
|
521 |
20 PRINT "Input number"
|
|
522 |
30 IF N = 0 THEN GOTO 99
|
|
523 |
40 FOR I = 1 TO N
|
|
524 |
45 LET S = S + V(I)
|
|
525 |
50 NEXT I
|
|
526 |
60 PRINT S/N
|
|
527 |
70 GOTO 5
|
|
528 |
99 END
|
|
529 |
\end{lstlisting}
|
|
530 |
|
|
531 |
\hfill ``Spaghetti Code''
|
|
532 |
\end{frame}
|
|
533 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
534 |
|
|
535 |
|
|
536 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
537 |
\begin{frame}[c,fragile]
|
|
538 |
\frametitle{Target Specific ASM}
|
|
539 |
|
|
540 |
\begin{lstlisting}[language={},numbers=none]
|
|
541 |
llc -march=x86-64 fact.ll
|
|
542 |
llc -march=arm fact.ll
|
|
543 |
|
|
544 |
|
|
545 |
Intel: xorl %eax, %eax
|
|
546 |
ARM: mov pc, lr
|
|
547 |
\end{lstlisting}
|
|
548 |
|
|
549 |
\end{frame}
|
|
550 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
701
|
551 |
|
|
552 |
|
|
553 |
|
|
554 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
610
|
555 |
\begin{frame}[c]
|
|
556 |
|
|
557 |
\large\bf
|
701
|
558 |
Using a compiler, \\
|
|
559 |
how can you mount the\\
|
|
560 |
perfect attack against a system?
|
610
|
561 |
|
701
|
562 |
\end{frame}
|
610
|
563 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
564 |
|
|
565 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
566 |
\mode<presentation>{
|
|
567 |
\begin{frame}[c]
|
|
568 |
|
|
569 |
{\large\bf
|
|
570 |
What is a \alert{perfect} attack?}\bigskip
|
|
571 |
|
|
572 |
\begin{enumerate}
|
|
573 |
\item you can potentially completely take over a target system
|
|
574 |
\item your attack is (nearly) undetectable
|
|
575 |
\item the victim has (almost) no chance to recover
|
|
576 |
\end{enumerate}
|
|
577 |
|
|
578 |
\end{frame}}
|
|
579 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
580 |
|
|
581 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
582 |
\mode<presentation>{
|
|
583 |
\begin{frame}[c]
|
|
584 |
|
|
585 |
|
|
586 |
\begin{center}
|
|
587 |
\begin{tikzpicture}[scale=1]
|
|
588 |
|
|
589 |
\onslide<1->{
|
|
590 |
\node (A) at (0,0) [draw=black, rectangle, very thick, minimum height=18mm, minimum width=17mm] {};
|
|
591 |
\node [below right] at (A.north west) {\footnotesize\begin{tabular}{@{}l@{}}
|
|
592 |
\only<1,2>{clean}\only<3->{\alert{hacked}}\\compiler\end{tabular}};}
|
|
593 |
|
|
594 |
|
|
595 |
\onslide<2->{
|
|
596 |
\node (B) at (-2,2) [draw=black, rectangle, very thick, minimum height=10mm, minimum width=12mm] {};
|
|
597 |
\node [below right] at (B.north west) {\footnotesize\begin{tabular}{@{}l@{}}login\\(src)\end{tabular}};
|
|
598 |
|
|
599 |
\node (C) at (2,2) [draw=black, rectangle, very thick, minimum height=10mm, minimum width=12mm] {};
|
|
600 |
\node [below right] at (C.north west) {\footnotesize\begin{tabular}{@{}l@{}}login\\(bin)\end{tabular}};
|
|
601 |
|
|
602 |
\draw[->, line width=2mm] (B) -- (C);
|
|
603 |
}
|
|
604 |
|
|
605 |
\onslide<3->{\node [above left=-1.5mm] at (C.south east) {\footnotesize \alert{$\blacksquare$}};}
|
|
606 |
|
|
607 |
\end{tikzpicture}
|
|
608 |
\end{center}
|
|
609 |
|
|
610 |
\end{frame}}
|
|
611 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
612 |
|
|
613 |
|
|
614 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
615 |
\mode<presentation>{
|
|
616 |
\begin{frame}[c]
|
|
617 |
|
|
618 |
\begin{center}
|
|
619 |
\begin{tikzpicture}[scale=1]
|
|
620 |
|
|
621 |
\onslide<1->{
|
|
622 |
\node (A) at (0,0) [draw=black, rectangle, very thick, minimum height=18mm, minimum width=14mm] {};
|
|
623 |
\node [below right] at (A.north west) {\small V0.01};
|
|
624 |
\node [below right] (A1) at (A.south west) {\small Scala};
|
|
625 |
\node [below right] (A1) at (A1.south west) {\small\textcolor{gray}{host language}};
|
|
626 |
\node [above right] at (A.north west) {my compiler (src)};}
|
|
627 |
|
|
628 |
\onslide<2->{
|
|
629 |
\node (B) at (1.8,0) [draw=black, rectangle, very thick, minimum height=18mm, minimum width=14mm] {};
|
|
630 |
\node [below right] at (B.north west) {\small V0.02};
|
|
631 |
\node [below right] at (B.south west) {\small Scala};
|
|
632 |
\node at (3,0) {\ldots};
|
|
633 |
|
|
634 |
\node (C) at (5,0) [draw=black, rectangle, very thick, minimum height=18mm, minimum width=14mm] {};
|
|
635 |
\node [below right] at (C.north west) {\small V1.00};
|
|
636 |
\node [below right] at (C.south west) {\small Scala};}
|
|
637 |
|
|
638 |
\onslide<3->{
|
|
639 |
\node (D) at (6.8,0) [draw=black, rectangle, very thick, minimum height=18mm, minimum width=14mm] {};
|
|
640 |
\node [below right] at (D.north west) {\small V1.00};
|
|
641 |
|
|
642 |
\node (E) at (6.8,2) [draw=black, rectangle, very thick, minimum height=18mm, minimum width=14mm] {};
|
|
643 |
\node [below right] at (E.north west) {\small V1.01};}
|
|
644 |
|
|
645 |
\onslide<4->{
|
|
646 |
\node (F) at (8.6,0) [draw=black, rectangle, very thick, minimum height=18mm, minimum width=14mm] {};
|
|
647 |
\node [below right] at (F.north west) {\small V1.01};
|
|
648 |
|
|
649 |
\node (G) at (8.6,2) [draw=black, rectangle, very thick, minimum height=18mm, minimum width=14mm] {};
|
|
650 |
\node [below right] at (G.north west) {\small V1.02};
|
|
651 |
\node at (9.8,0) {\ldots};
|
|
652 |
\node at (9.8,2) {\ldots};
|
|
653 |
\node at (8,-2) {\textcolor{gray}{\begin{tabular}{@{}l@{}}no host language\\needed\end{tabular}}};
|
|
654 |
}
|
|
655 |
|
|
656 |
\end{tikzpicture}
|
|
657 |
\end{center}
|
|
658 |
|
|
659 |
\end{frame}}
|
|
660 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
661 |
|
|
662 |
|
|
663 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
664 |
\mode<presentation>{
|
|
665 |
\begin{frame}<1-3>
|
|
666 |
\frametitle{\LARGE\begin{tabular}{c}Hacking Compilers
|
|
667 |
\end{tabular}}
|
|
668 |
|
|
669 |
%Why is it so paramount to have a small trusted code base (TCB)?
|
|
670 |
\bigskip\bigskip
|
|
671 |
|
|
672 |
\begin{columns}
|
|
673 |
\begin{column}{2.7cm}
|
|
674 |
\begin{minipage}{2.5cm}%
|
|
675 |
\begin{tabular}{c@ {}}
|
|
676 |
\includegraphics[scale=0.2]{../pics/ken-thompson.jpg}\\[-1.8mm]
|
|
677 |
\footnotesize Ken Thompson\\[-1.8mm]
|
|
678 |
\footnotesize Turing Award, 1983\\
|
|
679 |
\end{tabular}
|
|
680 |
\end{minipage}
|
|
681 |
\end{column}
|
|
682 |
\begin{column}{9cm}
|
|
683 |
\begin{tabular}{l@ {\hspace{1mm}}p{8cm}}
|
|
684 |
|
|
685 |
& Ken Thompson showed how to hide a Trojan Horse in a
|
|
686 |
compiler \textcolor{red}{without} leaving any traces in the source code.\\[2mm]
|
|
687 |
|
|
688 |
& No amount of source level verification will protect
|
|
689 |
you from such Thompson-hacks.\\[2mm]
|
|
690 |
|
|
691 |
\end{tabular}
|
|
692 |
\end{column}
|
|
693 |
\end{columns}
|
|
694 |
|
|
695 |
\only<2>{
|
|
696 |
\begin{textblock}{6}(4,2)
|
|
697 |
\begin{tikzpicture}
|
|
698 |
\draw (0,0) node[inner sep=3mm,fill=cream, ultra thick, draw=red, rounded corners=2mm]
|
|
699 |
{\normalsize
|
|
700 |
\begin{minipage}{8cm}
|
|
701 |
\begin{quote}
|
|
702 |
\includegraphics[scale=0.05]{../pics/evil.png}
|
|
703 |
\begin{enumerate}
|
|
704 |
\item[1)] Assume you ship the compiler as binary and also with sources.
|
|
705 |
\item[2)] Make the compiler aware when it compiles itself.
|
|
706 |
\item[3)] Add the Trojan horse.
|
|
707 |
\item[4)] Compile.
|
|
708 |
\item[5)] Delete Trojan horse from the sources of the compiler.
|
|
709 |
\item[6)] Go on holiday for the rest of your life. ;o)\\[-7mm]\mbox{}
|
|
710 |
\end{enumerate}
|
|
711 |
\end{quote}
|
|
712 |
\end{minipage}};
|
|
713 |
\end{tikzpicture}
|
|
714 |
\end{textblock}}
|
|
715 |
|
|
716 |
\end{frame}}
|
|
717 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
718 |
|
701
|
719 |
|
|
720 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
721 |
\begin{frame}[c]
|
|
722 |
\frametitle{Dijkstra on Testing}
|
|
723 |
|
|
724 |
\begin{bubble}[10cm]
|
|
725 |
``Program testing can be a very effective way to show the
|
|
726 |
presence of bugs, but it is hopelessly inadequate for showing
|
|
727 |
their absence.''
|
|
728 |
\end{bubble}\bigskip
|
|
729 |
|
|
730 |
\small
|
|
731 |
What is good about compilers: the either seem to work,
|
|
732 |
or go horribly wrong (most of the time).
|
|
733 |
|
|
734 |
\end{frame}
|
|
735 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
736 |
|
|
737 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
738 |
\begin{frame}[c]
|
|
739 |
\frametitle{\Large Proving Programs to be Correct}
|
|
740 |
|
|
741 |
\begin{bubble}[10cm]
|
|
742 |
\small
|
|
743 |
{\bf Theorem:} There are infinitely many prime
|
|
744 |
numbers.\medskip\\
|
|
745 |
|
|
746 |
{\bf Proof} \ldots\\
|
|
747 |
\end{bubble}\bigskip
|
|
748 |
|
|
749 |
|
|
750 |
similarly\bigskip
|
|
751 |
|
|
752 |
\begin{bubble}[10cm]
|
|
753 |
\small
|
|
754 |
{\bf Theorem:} The program is doing what
|
|
755 |
it is supposed to be doing.\medskip
|
|
756 |
|
|
757 |
{\bf Long, long proof} \ldots\\
|
|
758 |
\end{bubble}\bigskip\medskip
|
|
759 |
|
|
760 |
\small This can be a gigantic proof. The only hope is to have
|
|
761 |
help from the computer. `Program' is here to be understood to be
|
|
762 |
quite general (compiler, OS, \ldots).
|
|
763 |
|
|
764 |
\end{frame}
|
|
765 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
766 |
|
|
767 |
|
|
768 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
769 |
|
|
770 |
\begin{frame}[c]
|
|
771 |
\frametitle{Can This Be Done?}
|
|
772 |
|
|
773 |
\begin{itemize}
|
|
774 |
\item in 2008, verification of a small C-compiler
|
|
775 |
\begin{itemize}
|
|
776 |
\item ``if my input program has a certain behaviour, then the compiled machine code has the same behaviour''
|
|
777 |
\item is as good as \texttt{gcc -O1}, but much, much less buggy
|
|
778 |
\end{itemize}
|
|
779 |
\end{itemize}
|
|
780 |
|
|
781 |
\begin{center}
|
|
782 |
\includegraphics[scale=0.12]{../pics/compcert.png}
|
|
783 |
\end{center}
|
|
784 |
|
|
785 |
\end{frame}
|
|
786 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
787 |
|
|
788 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
789 |
\begin{frame}[t]
|
|
790 |
\frametitle{Fuzzy Testing C-Compilers}
|
|
791 |
|
|
792 |
\begin{itemize}
|
|
793 |
\item tested GCC, LLVM and others by randomly generating
|
|
794 |
C-programs
|
|
795 |
\item found more than 300 bugs in GCC and also
|
|
796 |
many in LLVM (some of them highest-level critical)\bigskip
|
|
797 |
\item about CompCert:
|
|
798 |
|
|
799 |
\begin{bubble}[10.7cm]\small ``The striking thing about our CompCert
|
|
800 |
results is that the middle-end bugs we found in all other
|
|
801 |
compilers are absent. As of early 2011, the under-development
|
|
802 |
version of CompCert is the only compiler we have tested for
|
|
803 |
which Csmith cannot find wrong-code errors. This is not for
|
|
804 |
lack of trying: we have devoted about six CPU-years to the
|
|
805 |
task.''
|
|
806 |
\end{bubble}
|
|
807 |
\end{itemize}
|
|
808 |
|
|
809 |
\end{frame}
|
|
810 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
811 |
|
|
812 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
813 |
|
|
814 |
\begin{frame}[c]
|
|
815 |
\frametitle{Next Week}
|
|
816 |
|
|
817 |
\begin{itemize}
|
|
818 |
\item Revision Lecture\medskip
|
|
819 |
\item How many strings are in $\bl{L(a^*)}$?\pause\medskip
|
|
820 |
\item How many strings are in $\bl{L((a + b)^*)}$?\\ Are there more than
|
|
821 |
in $\bl{L(a^*)}$?
|
|
822 |
\end{itemize}
|
|
823 |
|
|
824 |
|
|
825 |
|
|
826 |
\end{frame}
|
|
827 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
828 |
|
822
|
829 |
\begin{frame}<1-20>[c]
|
|
830 |
\end{frame}
|
701
|
831 |
|
|
832 |
\end{document}
|
|
833 |
|
|
834 |
%%% Local Variables:
|
|
835 |
%%% mode: latex
|
|
836 |
%%% TeX-master: t
|
|
837 |
%%% End:
|
|
838 |
|
|
839 |
|
|
840 |
|
|
841 |
|
|
842 |
|
610
|
843 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
844 |
\begin{frame}[c]
|
|
845 |
|
|
846 |
\begin{center}
|
|
847 |
\includegraphics[scale=0.6]{../pics/bridge-limits.png}
|
|
848 |
\end{center}
|
|
849 |
|
|
850 |
\end{frame}
|
|
851 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
852 |
|
|
853 |
|
|
854 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
855 |
\begin{frame}[c]
|
|
856 |
\frametitle{Compilers \& Boeings 777}
|
|
857 |
|
|
858 |
First flight in 1994. They want to achieve triple redundancy in hardware
|
|
859 |
faults.\bigskip
|
|
860 |
|
|
861 |
They compile 1 Ada program to\medskip
|
|
862 |
|
|
863 |
\begin{itemize}
|
|
864 |
\item Intel 80486
|
|
865 |
\item Motorola 68040 (old Macintosh's)
|
|
866 |
\item AMD 29050 (RISC chips used often in laser printers)
|
|
867 |
\end{itemize}\medskip
|
|
868 |
|
|
869 |
using 3 independent compilers.\bigskip\pause
|
|
870 |
|
|
871 |
\small Airbus uses C and static analysers. Recently started using CompCert.
|
|
872 |
|
|
873 |
\end{frame}
|
|
874 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
875 |
|
|
876 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
877 |
\begin{frame}[c]
|
|
878 |
\frametitle{Goal}
|
|
879 |
|
|
880 |
Remember the Bridges example?
|
|
881 |
|
|
882 |
\begin{itemize}
|
|
883 |
\item Can we look at our programs and somehow ensure
|
|
884 |
they are bug free/correct?\pause\bigskip
|
|
885 |
|
|
886 |
\item Very hard: Anything interesting about programs is equivalent
|
|
887 |
to the Halting Problem, which is undecidable.\pause\bigskip
|
|
888 |
|
|
889 |
\item \alert{Solution:} We avoid this ``minor'' obstacle by
|
|
890 |
being as close as possible of deciding the halting
|
|
891 |
problem, without actually deciding the halting problem.
|
|
892 |
\small$\quad\Rightarrow$ yes, no, don't know (static analysis)
|
|
893 |
\end{itemize}
|
|
894 |
|
|
895 |
\end{frame}
|
|
896 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
897 |
|
|
898 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
899 |
\begin{frame}[c]
|
|
900 |
\frametitle{What is Static Analysis?}
|
|
901 |
|
|
902 |
\begin{center}
|
|
903 |
\includegraphics[scale=0.4]{../pics/state.png}
|
|
904 |
\end{center}
|
|
905 |
|
|
906 |
\begin{itemize}
|
|
907 |
\item depending on some initial input, a program
|
|
908 |
(behaviour) will ``develop'' over time.
|
|
909 |
\end{itemize}
|
|
910 |
|
|
911 |
\end{frame}
|
|
912 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
913 |
|
|
914 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
915 |
\begin{frame}[c]
|
|
916 |
\frametitle{What is Static Analysis?}
|
|
917 |
|
|
918 |
\begin{center}
|
|
919 |
\includegraphics[scale=0.4]{../pics/state2.png}
|
|
920 |
\end{center}
|
|
921 |
|
|
922 |
\end{frame}
|
|
923 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
924 |
|
|
925 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
926 |
\begin{frame}[c]
|
|
927 |
\frametitle{What is Static Analysis?}
|
|
928 |
|
|
929 |
\begin{center}
|
|
930 |
\includegraphics[scale=0.4]{../pics/state3.jpg}
|
|
931 |
\end{center}
|
|
932 |
|
|
933 |
\end{frame}
|
|
934 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
935 |
|
|
936 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
937 |
\begin{frame}[c]
|
|
938 |
\frametitle{What is Static Analysis?}
|
|
939 |
|
|
940 |
\begin{center}
|
|
941 |
\includegraphics[scale=0.4]{../pics/state4.jpg}
|
|
942 |
\end{center}
|
|
943 |
|
|
944 |
\begin{itemize}
|
|
945 |
\item to be avoided
|
|
946 |
\end{itemize}
|
|
947 |
|
|
948 |
\end{frame}
|
|
949 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
950 |
|
|
951 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
952 |
\begin{frame}[c]
|
|
953 |
\frametitle{What is Static Analysis?}
|
|
954 |
|
|
955 |
\begin{center}
|
|
956 |
\includegraphics[scale=0.4]{../pics/state5.png}
|
|
957 |
\end{center}
|
|
958 |
|
|
959 |
\begin{itemize}
|
|
960 |
\item this needs more work
|
|
961 |
\end{itemize}
|
|
962 |
|
|
963 |
\end{frame}
|
|
964 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
965 |
|
|
966 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
967 |
\begin{frame}[c]
|
|
968 |
\frametitle{What is Static Analysis?}
|
|
969 |
|
|
970 |
\begin{center}
|
|
971 |
\includegraphics[scale=0.4]{../pics/state6.png}
|
|
972 |
\end{center}
|
|
973 |
|
|
974 |
\end{frame}
|
|
975 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
976 |
|
|
977 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
978 |
\begin{frame}[c,fragile]
|
|
979 |
\frametitle{\Large\begin{tabular}{c}Concrete Example:\\[-1mm]
|
|
980 |
Are Vars Definitely Initialised?\end{tabular}}
|
|
981 |
|
|
982 |
Assuming \texttt{x} is initialised, what about \texttt{y}?\bigskip
|
|
983 |
|
|
984 |
Prog.~1:\\
|
|
985 |
\begin{lstlisting}[numbers=none,
|
|
986 |
basicstyle=\ttfamily,
|
|
987 |
language=While,xleftmargin=3mm]
|
|
988 |
if x < 1 then y := x else y := x + 1;
|
|
989 |
y := y + 1
|
|
990 |
\end{lstlisting}\medskip
|
|
991 |
|
|
992 |
Prog.~2:\\
|
|
993 |
\begin{lstlisting}[numbers=none,
|
|
994 |
basicstyle=\ttfamily,
|
|
995 |
language=While,xleftmargin=3mm]
|
|
996 |
if x < x then y := y + 1 else y := x;
|
|
997 |
y := y + 1
|
|
998 |
\end{lstlisting}
|
|
999 |
|
|
1000 |
\end{frame}
|
|
1001 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
1002 |
|
|
1003 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
1004 |
\begin{frame}[c,fragile]
|
|
1005 |
\frametitle{\Large\begin{tabular}{c}Concrete Example:\\[-1mm]
|
|
1006 |
Are Vars Definitely Initialised?\end{tabular}}
|
|
1007 |
|
|
1008 |
What should the rules be for deciding when a
|
|
1009 |
variable is initialised?\bigskip\pause
|
|
1010 |
|
|
1011 |
\begin{itemize}
|
|
1012 |
\item variable \texttt{x} is definitely initialized after
|
|
1013 |
\texttt{skip}\\
|
|
1014 |
iff \texttt{x} is definitely initialized before \texttt{skip}.
|
|
1015 |
\end{itemize}
|
|
1016 |
|
|
1017 |
\end{frame}
|
|
1018 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
1019 |
|
|
1020 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
1021 |
\begin{frame}[c,fragile]
|
|
1022 |
% \frametitle{\Large\begin{tabular}{c}Concrete Example:\\[-1mm]
|
|
1023 |
% Are Vars Definitely Initialised?\end{tabular}}
|
|
1024 |
|
|
1025 |
$\bl{A}$ is the set of definitely defined variables:
|
|
1026 |
|
|
1027 |
\begin{center}
|
|
1028 |
\begin{tabular}{c}
|
612
|
1029 |
\bl{\infer{\mbox{}}{A\triangleright\texttt{skip}\triangleright{}A}}\qquad
|
|
1030 |
\bl{\infer{vars(a) \subseteq A}{A\triangleright
|
|
1031 |
(\texttt{x\,:=\,a})\triangleright\{x\}\cup A}}
|
610
|
1032 |
\medskip\\\pause
|
|
1033 |
|
612
|
1034 |
\bl{\infer{A_1\triangleright{}s_1\triangleright{}A_2
|
|
1035 |
\quad A_2\triangleright{}s_2\triangleright{}A_3}
|
|
1036 |
{A_1\triangleright{}(s_1 ; s_2)\triangleright{}A_3}}
|
610
|
1037 |
\medskip\\\pause
|
|
1038 |
|
612
|
1039 |
\bl{\infer{vars(b)\subseteq A\quad A\triangleright{}s_1\triangleright{}A_1
|
|
1040 |
\quad A\triangleright{}s_2\triangleright{}A_2}
|
|
1041 |
{A\triangleright(\texttt{if}\;b\;\texttt{then}\;s_1\;\texttt{else}\;s_2)\triangleright{}A_1\cap A_2}}
|
610
|
1042 |
\medskip\\\pause
|
|
1043 |
|
612
|
1044 |
\bl{\infer{vars(b)\subseteq A\quad A\triangleright{}s\triangleright{}A'}
|
|
1045 |
{A\triangleright(\texttt{while}\;b\;\texttt{do}\;s)\triangleright{}A}}\pause
|
610
|
1046 |
\end{tabular}
|
|
1047 |
\end{center}
|
|
1048 |
|
|
1049 |
\hfill we start with $\bl{A = \{\}}$
|
|
1050 |
\end{frame}
|
|
1051 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
1052 |
|