administrative info subscribe to the class mailing list –instructions are on the class web page,...

48
Administrative info Subscribe to the class mailing list instructions are on the class web page, which is accessible from my home page, which is accessible by searching for Sorin Lerner on google Project page is up Not much info there yet. More will be available by Thursday You will need to create groups for the project by Thursday. So start thinking about who you would like to work with.

Post on 20-Dec-2015

215 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Administrative info

• Subscribe to the class mailing list– instructions are on the class web page, which is

accessible from my home page, which is accessible by searching for Sorin Lerner on google

• Project page is up– Not much info there yet. More will be available by

Thursday

• You will need to create groups for the project by Thursday. So start thinking about who you would like to work with.

Page 2: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Tour of common optimizations

Page 3: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Simple example

foo(z) {

x := 3 + 6;

y := x – 5

return z * y

}

Page 4: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Simple example

foo(z) {

x := 3 + 6;

y := x – 5

return z * y

}

Page 5: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

x := a + b;

...

y := a + b;

Page 6: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

x := a + b;

...

y := a + b;

Page 7: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

if (...) { x := a + b; }

...

y := a + b;

Page 8: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

if (...) { x := a + b; }

...

y := a + b;

Page 9: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

x := y...z := z + x

Page 10: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

x := y...z := z + x

Page 11: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

x := y...z := z + y

What if we run CSE now?

Page 12: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

x := y...z := z + y

What if we run CSE now?

Page 13: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

x := y**z

...

x := ...

Page 14: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

• Often used as a clean-up pass

x := y**z

...

x := ...

x := yz := z + x

x := yz := z + y

Copy prop DAEx := yz := z + y

Page 15: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

if (false) {

...

}

Page 16: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

if (false) {

...

}

Page 17: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

• In Java:

a := new int [10];for (index = 0; index < 10; index ++) { a[index] := 100;}

Page 18: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

• In “lowered” Java:

a := new int [10];for (index = 0; index < 10; index ++) { if (index < 0 || index >= a.length()) { throw OutOfBoundsException; } a[index] := 0;}

Page 19: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

• In “lowered” Java:

a := new int [10];for (index = 0; index < 10; index ++) { if (index < 0 || index >= a.length()) { throw OutOfBoundsException; } a[index] := 0;}

Page 20: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

p := &x;*p := 5y := x + 1;

Page 21: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

p := &x;*p := 5y := x + 1;

x := 5;*p := 3y := x + 1; ???

Page 22: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

for j := 1 to N for i := 1 to N a[i] := a[i] + b[j]

Page 23: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

for j := 1 to N for i := 1 to N a[i] := a[i] + b[j]

Page 24: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

area(h,w) { return h * w }

h := ...;w := 4;a := area(h,w)

Page 25: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Another example

area(h,w) { return h * w }

h := ...;w := 4;a := area(h,w)

Page 26: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Optimization themes

• Don’t compute if you don’t 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

Page 27: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Dataflow analysis

Page 28: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Dataflow analysis: what is it?

• A common framework for expressing algorithms that compute information about a program

• Why is such a framework useful?

Page 29: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Dataflow 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)

Page 30: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Control 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

Page 31: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

x := ...

x := ...y := ...y := ...p := ...if (...) { ... x ... x := ... ... y ...}else { ... x ... x := ... *p := ...}... x ...... y ...y := ...

y := ...

y := ...

p := ...

... x ...

x := ...

... y ...

... x ...

x := ...

*p := ...

... x ...

... x ...

y := ...

if (...)

Example CFG

Page 32: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

An 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

• Let’s try this out on an example

Page 33: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

1: x := ...

2: y := ...

3: y := ...

4: p := ...

... x ...

5: x := ...

... y ...

... x ...

6: x := ...

7: *p := ...

... x ...

... y ...

8: y := ...

x := ...

y := ...

y := ...

p := ...

... x ...

x := ...

... y ...

... x ...

x := ...

*p := ...

... x ...

... x ...

y := ...

if (...)

Visual sugar

Page 34: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

1: x := ...

2: y := ...

3: y := ...

4: p := ...

... x ...

5: x := ...

... y ...

... x ...

6: x := ...

7: *p := ...

... x ...

... y ...

8: y := ...

Page 35: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

1: x := ...

2: y := ...

3: y := ...

4: p := ...

... x ...

5: x := ...

... y ...

... x ...

6: x := ...

7: *p := ...

... x ...

... y ...

8: y := ...

Page 36: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Safety

• 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

can’t miss any

Page 37: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Reaching 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

Page 38: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Reaching definitions generalized

• Computed information at a program point is a set of var ! stmt bindings– eg: { x ! s1, x ! s2, y ! s3 }

• How do we get the previous info we wanted?– if a var x is used in a stmt whose incoming info is in,

then: { s | (x ! s) 2 in }

• This is a common pattern– generalize the problem to define what information

should be computed at each program point– use the computed information at the program points

to get the original info we wanted

Page 39: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

1: x := ...

2: y := ...

3: y := ...

4: p := ...

... x ...

5: x := ...

... y ...

... x ...

6: x := ...

7: *p := ...

... x ...

... y ...

8: y := ...

Page 40: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

1: x := ...

2: y := ...

3: y := ...

4: p := ...

... x ...

5: x := ...

... y ...

... x ...

6: x := ...

7: *p := ...

... x ...

... y ...

8: y := ...

Page 41: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Using constraints to formalize DFA

• Now that we’ve gone through some examples, let’s try to precisely express the algorithms for computing dataflow information

• We’ll model DFA as solving a system of constraints

• Each node in the CFG will impose constraints relating information at predecessor and successor points

• Solution to constraints is result of analysis

Page 42: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Constraints for reaching definitions

s: x := ...

in

out

s: *p := ...

in

out

Page 43: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Constraints for reaching definitions

• Using may-point-to information:

out = in [ { x ! s | x 2 may-point-to(p) }

• Using must-point-to aswell:

out = in – { x ! s’ | x 2 must-point-to(p) Æ s’ 2 stmts } [ { x ! s | x 2 may-point-to(p) }

s: x := ...

in

out

s: *p := ...

in

out

out = in – { x ! s’ | s’ 2 stmts } [ { x ! s }

Page 44: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Constraints for reaching definitions

s: if (...)

in

out[0] out[1]

merge

out

in[0] in[1]

Page 45: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Constraints for reaching definitions

s: if (...)

in

out[0] out[1] more generally: 8 i . out [ i ] = in

out [ 0 ] = in Æout [ 0 ] = in

merge

out

in[0] in[1]

more generally: out = i in [ i ]

out = in [ 0 ] [ in [ 1 ]

Page 46: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Flow functions

• The constraint for a statement kind s often have the form: out = Fs(in)

• Fs is called a flow function– other names for it: dataflow function, transfer function

• Given information in before statement s, Fs(in) returns information after statement s

• Other formulations have the statement s as an explicit parameter to F: given a statement s and some information in, F(s,in) returns the outgoing information after statement s

Page 47: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Flow functions

• Issue: what does one do when there are multiple input edges to a node?– the flow functions takes as input a tuple of values, one

value for each incoming edge

• Issue: what does one do when there are multiple outgoing edges to a node?– the flow function returns a tuple of values, one value

for each outgoing edge– can also have one flow function per outgoing edge

Page 48: Administrative info Subscribe to the class mailing list –instructions are on the class web page, which is accessible from my home page, which is accessible

Flow functions

• Flow functions are a central component of a dataflow analysis

• They state constraints on the information flowing into and out of a statement

• This version of the flow functions is local– it applies to a particular statement kind– we’ll see global flow functions shortly...