Title: Administrative info
1Administrative info
- Subscribe to the class mailing list
- instructions are on the class web page, click on
Course Syllabus - if you dont subscribe by the end of today, you
fail the class. - Just kidding, but you know what I mean...
- Class mailing list is a good way for us all to
keep in touch
2Project schedule
- Find groups a week from today
- groups of 2-3
- groups of 1 possible if you ask me
- Project proposal due the following Monday
- but... how are we supposed to come up with
ideas!!!!
3Ideas for generating project ideas
- If you are currently doing research
- that is related to programming languages/compilers
- carve out some part of your current research, and
do it for the project - Think about what annoys you the most
- in programming
- and fix it using program analysis techniques
4Ideas for generating project ideas
- Think about technology trends
- iphone, mobile devices
- multicore, parallelism
- web browsers, java scripts, etc.
- bluetooth, ad-hoc networks
- how do these change the way we program/compile?
- Try to find bugs in real programs using PL
techniques - search for Dawson Engler and look at some of
his papers. Try to use similar techniques to find
real bugs.
5Ideas for generating project ideas
- How can I use information that is out there?
- ask yourself what information is out there? And
how can I record it/analyze it/use it to improve
programmer productivity? - For example cvs logs, bugzilla, keystrokes,
mouse movements, etc. - Talk to your neighbor
- in the 231 class, that is
- use mailing list to pose ideas, ask questions
- have a discussion
6Tour of common optimizations
7Simple example
foo(z) x 3 6 y x 5
return z y
8Simple example
foo(z) x 3 6 y x 5
return z y
9Another example
x a b ... y a b
10Another example
x a b ... y a b
11Another example
if (...) x a b ...
y a b
12Another example
if (...) x a b ...
y a b
13Another example
x y ... z z x
14Another example
x y ... z z x
15Another example
x y ... z z y
What if we run CSE now?
16Another example
x y ... z z y
What if we run CSE now?
17Another example
x yz ... x ...
18Another example
x yz ... x ...
- Often used as a clean-up pass
Copy prop
DAE
x y z z x
x y z z y
x y z z y
19Another example
if (false) ...
20Another example
if (false) ...
21Another example
a new int 10 for (index 0 index lt 10
index ) aindex 100
22Another example
a new int 10 for (index 0 index lt 10
index ) if (index lt 0 index gt
a.length()) throw OutOfBoundsException
aindex 0
23Another example
a new int 10 for (index 0 index lt 10
index ) if (index lt 0 index gt
a.length()) throw OutOfBoundsException
aindex 0
24Another example
p x p 5 y x 1
25Another example
p x p 5 y x 1
x 5 p 3 y x 1
???
26Another example
for j 1 to N for i 1 to N ai
ai bj
27Another example
for j 1 to N for i 1 to N ai
ai bj
28Another example
area(h,w) return h w h ... w 4 a
area(h,w)
29Another example
area(h,w) return h w h ... w 4 a
area(h,w)
30Optimization themes
- Dont compute if you dont have to
- unused assignment elimination
- Compute at compile-time if possible
- constant folding, loop unrolling, inlining
- Compute it as few times as possible
- CSE, PRE, PDE, loop invariant code motion
- Compute it as cheaply as possible
- strength reduction
- Enable other optimizations
- constant and copy prop, pointer analysis
- Compute it with as little code space as possible
- unreachable code elimination
31Dataflow analysis
32Dataflow analysis what is it?
- A common framework for expressing algorithms that
compute information about a program - Why is such a framework useful?
33Dataflow analysis what is it?
- A common framework for expressing algorithms that
compute information about a program - Why is such a framework useful?
- Provides a common language, which makes it easier
to - communicate your analysis to others
- compare analyses
- adapt techniques from one analysis to another
- reuse implementations (eg dataflow analysis
frameworks)
34Control Flow Graphs
- For now, we will use a Control Flow Graph
representation of programs - each statement becomes a node
- edges between nodes represent control flow
- Later we will see other program representations
- variations on the CFG (eg CFG with basic blocks)
- other graph based representations
35Example CFG
x ...
y ...
x ... y ... y ... p ... if (...)
... x ... x ... ... y ... else
... x ... x ... p ... ... x
... ... y ... y ...
y ...
p ...
if (...)
... x ...
... x ...
x ...
x ...
... y ...
p ...
... x ...
... x ...
y ...
36An example DFA reaching definitions
- For each use of a variable, determine what
assignments could have set the value being read
from the variable - Information useful for
- performing constant and copy prop
- detecting references to undefined variables
- presenting def/use chains to the programmer
- building other representations, like the DFG
- Lets try this out on an example
37x ...
Visual sugar
y ...
1 x ... 2 y ... 3 y ... 4 p ...
y ...
p ...
if (...)
... x ... 5 x ... ... y ...
... x ... 6 x ... 7 p ...
... x ...
... x ...
x ...
x ...
... y ...
p ...
... x ... ... y ... 8 y ...
... x ...
... x ...
y ...
381 x ... 2 y ... 3 y ... 4 p ...
... x ... 5 x ... ... y ...
... x ... 6 x ... 7 p ...
... x ... ... y ... 8 y ...
391 x ... 2 y ... 3 y ... 4 p ...
... x ... 5 x ... ... y ...
... x ... 6 x ... 7 p ...
... x ... ... y ... 8 y ...
40Safety
- Recall intended use of this info
- performing constant and copy prop
- detecting references to undefined variables
- presenting def/use chains to the programmer
- building other representations, like the DFG
- Safety
- can have more bindings than the true answer,
but cant miss any
41Reaching definitions generalized
- DFA framework is geared towards computing
information at each program point (edge) in the
CFG - So generalize the reaching definitions problem by
stating what should be computed at each program
point - For each program point in the CFG, compute the
set of definitions (statements) that may reach
that point - Notion of safety remains the same