@@ -71,14 +71,6 @@ function populate_data(data, state: Selector) {
71
71
window . location . origin + processed_url ( commit , bench , run , "crox" ) ;
72
72
return encodeURIComponent ( crox_url ) ;
73
73
} ;
74
- let speedscope_link = ( commit , bench , run ) => {
75
- let benchmark_name = `${ bench } run ${ run } ` ;
76
- let crox_url = processed_crox_url ( commit , bench , run ) ;
77
- let speedscope_url = `https://www.speedscope.app/#profileURL=${ crox_url } &title=${ encodeURIComponent (
78
- benchmark_name
79
- ) } `;
80
- return `<a href="${ speedscope_url } ">speedscope.app</a>` ;
81
- } ;
82
74
let firefox_profiler_link = ( commit , bench , run ) => {
83
75
let crox_url = processed_crox_url ( commit , bench , run ) ;
84
76
let ff_url = `https://profiler.firefox.com/from-url/${ crox_url } /marker-chart/?v=5` ;
@@ -99,16 +91,11 @@ function populate_data(data, state: Selector) {
99
91
state ,
100
92
"codegen-schedule"
101
93
) }
102
- (${ speedscope_link (
94
+ (${ firefox_profiler_link (
103
95
state . base_commit ,
104
96
state . benchmark ,
105
97
state . scenario
106
- ) } ,
107
- ${ firefox_profiler_link (
108
- state . base_commit ,
109
- state . benchmark ,
110
- state . scenario
111
- ) } )
98
+ ) } )
112
99
results for ${ state . base_commit . substring (
113
100
0 ,
114
101
10
@@ -120,16 +107,11 @@ function populate_data(data, state: Selector) {
120
107
${ processed_link ( state . commit , state , "flamegraph" ) } ,
121
108
${ processed_link ( state . commit , state , "crox" ) } ,
122
109
${ processed_link ( state . commit , state , "codegen-schedule" ) }
123
- (${ speedscope_link (
110
+ (${ firefox_profiler_link (
124
111
state . commit ,
125
112
state . benchmark ,
126
113
state . scenario
127
- ) } ,
128
- ${ firefox_profiler_link (
129
- state . commit ,
130
- state . benchmark ,
131
- state . scenario
132
- ) } )
114
+ ) } )
133
115
results for ${ state . commit . substring ( 0 , 10 ) } (new commit)` ;
134
116
// TODO: use the Cachegrind Vue components once this page is refactored to Vue
135
117
let profile = ( b ) =>
0 commit comments