-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathEXPERIMENTS
74 lines (53 loc) · 2.54 KB
/
EXPERIMENTS
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
72
73
74
NATIVE TIME
{ time ../../Sources/scripts/utility/run_for_iterations.sh 5 ./scripts/runme.sh; } 2>&1 | tee out
NATIVE PROB
{ time ../../Sources/scripts/utility/run_for_iterations.sh 100 ./scripts/runme.sh; } 2>&1 | tee out
PIN TIME
{ time ../../Sources/scripts/utility/run_for_iterations.sh 5 './scripts/runme.sh "pin -follow_execv --"'; } 2>&1 | tee out
PIN PROB
{ time ../../Sources/scripts/utility/run_for_iterations.sh 100 './scripts/runme.sh "pin -follow_execv --"'; } 2>&1 | tee out
SHARED APPROX GRAPH
$ { echo "spidermonkey-1"; python shapprox_graph.py ../../../../Experiments/16-11-2010/bug2/shmem/run-*.ips; } > out
$ { echo "nspr-1"; python shapprox_graph.py ../../../../Experiments/16-11-2010/bug4/shmem/run-*.ips; } >> out
$ { echo "mysql"; python shapprox_graph.py ../../../../Experiments/16-11-2010/bug15/shmem/run-*.ips; } >> out
$ { echo "apache-1"; python shapprox_graph.py ../../../../Experiments/16-11-2010/bug10/shmem/run-*.ips; } >> out
$ { echo "chromium-1"; python shapprox_graph.py ../../../../Experiments/16-11-2010/bug7/shmem/run-*.ips; } >> out
------------------------------
Bug Mapping
------------------------------
Paper Name Benchmark Name
SpiderMonkey-1 bug2
SpiderMonkey-2 bug3
NSPR-1 bug4
NSPR-2 bug5
NSPR-3 bug6
Memcached bug8
Chromium-1 bug7
Chromium-2 bug9
Apache-1 bug10
Apache-2 bug11
Chromium-3 bug12
Chromium-4 bug13
Chromium-5 bug14
MySQL bug15
------------------------------
Working
------------------------------
Paper Name Benchmark Name
SpiderMonkey-1 bug2
SpiderMonkey-2 bug3
NSPR-1 bug4
NSPR-2 bug5
NSPR-3 bug6
Chromium-1 bug7
Memcached bug8
Apache-1 bug10
Apache-2 bug11
Chromium-3 bug12
Chromium-5 bug14
MySQL bug15
------------------------------
Broke
------------------------------
Chromium-2 bug9 (uses gtest automation, not sure how to launch chrome with arbitrary commands like "pin --")
Chromium-4 bug13 (shutdown bug, make a better test case like chromium-1)