Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(317)

Side by Side Diff: benchmarks/run.html

Issue 18497: Don't insert .*? at the beginning of anchored expressions. (Closed)
Patch Set: Added regexp benchmark Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « benchmarks/revisions.html ('k') | benchmarks/run.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>V8 Benchmark Suite</title> 3 <title>V8 Benchmark Suite</title>
4 <script type="text/javascript" src="base.js"></script> 4 <script type="text/javascript" src="base.js"></script>
5 <script type="text/javascript" src="richards.js"></script> 5 <script type="text/javascript" src="richards.js"></script>
6 <script type="text/javascript" src="deltablue.js"></script> 6 <script type="text/javascript" src="deltablue.js"></script>
7 <script type="text/javascript" src="crypto.js"></script> 7 <script type="text/javascript" src="crypto.js"></script>
8 <script type="text/javascript" src="raytrace.js"></script> 8 <script type="text/javascript" src="raytrace.js"></script>
9 <script type="text/javascript" src="earley-boyer.js"></script> 9 <script type="text/javascript" src="earley-boyer.js"></script>
10 <script type="text/javascript" src="regexp.js"></script>
10 <link type="text/css" rel="stylesheet" href="style.css"></link> 11 <link type="text/css" rel="stylesheet" href="style.css"></link>
11 <script type="text/javascript"> 12 <script type="text/javascript">
12 var completed = 0; 13 var completed = 0;
13 var benchmarks = BenchmarkSuite.CountBenchmarks(); 14 var benchmarks = BenchmarkSuite.CountBenchmarks();
14 var success = true; 15 var success = true;
15 16
16 function ShowProgress(name) { 17 function ShowProgress(name) {
17 var status = document.getElementById("status"); 18 var status = document.getElementById("status");
18 var percentage = ((++completed) / benchmarks) * 100; 19 var percentage = ((++completed) / benchmarks) * 100;
19 status.innerHTML = "Running: " + Math.round(percentage) + "% completed."; 20 status.innerHTML = "Running: " + Math.round(percentage) + "% completed.";
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 the individual benchmarks and of a reference system (score 68 the individual benchmarks and of a reference system (score
68 100). Scores are not comparable across benchmark suite versions and 69 100). Scores are not comparable across benchmark suite versions and
69 higher scores means better performance: <em>Bigger is better!</em> 70 higher scores means better performance: <em>Bigger is better!</em>
70 71
71 <ul> 72 <ul>
72 <li><b>Richards</b><br/>OS kernel simulation benchmark, originally written in BC PL by Martin Richards (<i>539 lines</i>).</li> 73 <li><b>Richards</b><br/>OS kernel simulation benchmark, originally written in BC PL by Martin Richards (<i>539 lines</i>).</li>
73 <li><b>DeltaBlue</b><br/>One-way constraint solver, originally written in Smallt alk by John Maloney and Mario Wolczko (<i>880 lines</i>).</li> 74 <li><b>DeltaBlue</b><br/>One-way constraint solver, originally written in Smallt alk by John Maloney and Mario Wolczko (<i>880 lines</i>).</li>
74 <li><b>Crypto</b><br/>Encryption and decryption benchmark based on code by Tom W u (<i>1689 lines</i>).</li> 75 <li><b>Crypto</b><br/>Encryption and decryption benchmark based on code by Tom W u (<i>1689 lines</i>).</li>
75 <li><b>RayTrace</b><br/>Ray tracer benchmark based on code by <a href="http://fl og.co.nz/">Adam Burmister</a> (<i>3418 lines</i>).</li> 76 <li><b>RayTrace</b><br/>Ray tracer benchmark based on code by <a href="http://fl og.co.nz/">Adam Burmister</a> (<i>3418 lines</i>).</li>
76 <li><b>EarleyBoyer</b><br/>Classic Scheme benchmarks, translated to JavaScript b y Florian Loitsch's Scheme2Js compiler (<i>4682 lines</i>).</li> 77 <li><b>EarleyBoyer</b><br/>Classic Scheme benchmarks, translated to JavaScript b y Florian Loitsch's Scheme2Js compiler (<i>4682 lines</i>).</li>
78 <li><b>RegExp</b><br/>Regular expression benchmark generated by extracting regul ar expression operations from 50 of the most popular web pages.
79 (<i>4758 lines</i>)
80 </li>
77 </ul> 81 </ul>
78 82
79 <p> 83 <p>
80 Note that benchmark results are not comparable unless both results are 84 Note that benchmark results are not comparable unless both results are
81 run with the same revision of the benchmark suite. We will be making 85 run with the same revision of the benchmark suite. We will be making
82 revisions from time to time in order to fix bugs or expand the scope 86 revisions from time to time in order to fix bugs or expand the scope
83 of the benchmark suite. For previous revisions and the change log see 87 of the benchmark suite. For previous revisions and the change log see
84 the <a href="http://v8.googlecode.com/svn/data/benchmarks/current/revisions.html ">revisions</a> page. 88 the <a href="http://v8.googlecode.com/svn/data/benchmarks/current/revisions.html ">revisions</a> page.
85 </p> 89 </p>
86 90
87 </td><td style="text-align: center"> 91 </td><td style="text-align: center">
88 <div class="run"> 92 <div class="run">
89 <div id="status" style="text-align: center; margin-top: 75px; font-size: 120%; font-weight: bold;">Starting...</div> 93 <div id="status" style="text-align: center; margin-top: 60px; font-size: 120%; font-weight: bold;">Starting...</div>
90 <div style="text-align: left; margin: 30px 0 0 90px;" id="results"> 94 <div style="text-align: left; margin: 30px 0 0 90px;" id="results">
91 <div> 95 <div>
92 </div> 96 </div>
93 </td></tr></table> 97 </td></tr></table>
94 98
95 </div> 99 </div>
96 100
97 </body> 101 </body>
98 </html> 102 </html>
OLDNEW
« no previous file with comments | « benchmarks/revisions.html ('k') | benchmarks/run.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698