-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompilers.tex
71 lines (64 loc) · 1.99 KB
/
compilers.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
\PassOptionsToPackage{bookmarks={true}}{hyperref}
\pdfminorversion=4
\documentclass[mathserif,xcolor={dvipsnames,table}]{beamer}
\mode<presentation>{\usetheme{Warsaw}\usecolortheme{crane}}
\usepackage{centernot}
\usepackage{graphicx}
\usepackage{transparent}
\usepackage{geometry}
\usepackage{tikz}
\usetikzlibrary{shadows}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[babel=true]{microtype}
\usepackage{amsmath}
\beamertemplatenavigationsymbolsempty
\title{\textbf{Compilation for Fun and Profit}}
\date{}
\author{CS4803UWS at the\\
Georgia Institute of Technology
}
\begin{document}
{
\setbeamertemplate{background canvas}{%
\includegraphics[width=\paperwidth,height=\paperheight]{images/gt2.jpeg}
}%
\begin{frame}[plain]
\textcolor{white}{
\transparent{0.5}%
\colorbox{black}{\textbf{compilation for fun and profit}}
}
\vspace{2.7in}
\\
\hfill\includegraphics[scale=.25]{images/cc-logo.pdf}
\includegraphics[scale=.25]{images/cc-new.pdf}
\includegraphics[scale=.25]{images/cc-share.pdf}
\textcolor{white}{
\\
\hfill \tiny{CC3.0 share-alike attribution}\\
}
\textcolor{white}{
\hfill \scriptsize{copyright \copyright\ 2013}\\
}
\end{frame}
}
\begin{frame}{Recommended reading}
\tiny{
\begin{itemize}
\item Allen and Kennedy. \textit{Optimizing Compilers for Modern Architectures} (2001).
\item Steven Muchnick. \textit{Advanced Compiler Design and Implementation} (1997).
\item Motwani et al. ``Combining Register Allocation and Instruction Scheduling'' (1995).
\item C\'{e}dric Bastoul. ``Code Generation in the Polyhedral Model Is Easier Than You Think'' (2013).
\item Yang et al. ``Finding and Understanding Bugs in C Compilers'' (2011).
\item Dietz et al. ``Understanding Integer Overflow in C/C++'' (2012).
\item Chris Lattner. ``Macroscopic Data Structure Analysis and Optimization'' (2005).
\end{itemize}
}
\end{frame}
\begin{frame}{Hack on!}
``If you lie to the compiler, it will get its revenge.''\\
\hfill---Henry Spencer
\end{frame}
\end{document}