Path Specialization:
Reducing Phased Execution Overheads
Filip Pizlo, Erez Petrank, Bjarne Steensgaard Purdue, Technion/Microsoft, Microsoft ISMM’08 - Tucson, AZ
1
Path Specialization: Reducing Phased Execution Overheads Filip - - PowerPoint PPT Presentation
Path Specialization: Reducing Phased Execution Overheads Filip Pizlo, Erez Petrank, Bjarne Steensgaard Purdue, Technion/Microsoft, Microsoft ISMM08 - Tucson, AZ 1 Real-time, concurrent, and incremental garbage collectors are becoming
Filip Pizlo, Erez Petrank, Bjarne Steensgaard Purdue, Technion/Microsoft, Microsoft ISMM’08 - Tucson, AZ
1
2
3
(a non-exclusive list of expensive barriers that we’re familiar with)
4
5
6
7
8
8
9
10
11
11
12
13
14
15
15
15
15
16
17
18
19
20
20
20
21
22
23
24
int foo(object o) { int x = 2+2;
return o.f; } int foo(object o) { int x = 2+2;
return o.f; } int foo(object o) { int x = 2+2;
return o.forward.f; }
25
int foo(object o) { int x = 2+2;
return o.f; } int foo(object o) { int x = 2+2;
return o.f; } int foo(object o) { int x = 2+2;
return o.forward.f; }
26
int foo(object o) { int x = 2+2;
return o.f; } return o.f;
int foo(object o) { int foo(object o) {
return o.forward.f; }
27
28
28
28
28
29
30
31
32
33
34
35
36
37
38
39