mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.9 KiB
104 lines
3.9 KiB
<html>
|
|
<head>
|
|
<title>V8 Benchmark Suite</title>
|
|
<script type="text/javascript" src="base.js"></script>
|
|
<script type="text/javascript" src="richards.js"></script>
|
|
<script type="text/javascript" src="deltablue.js"></script>
|
|
<script type="text/javascript" src="crypto.js"></script>
|
|
<script type="text/javascript" src="raytrace.js"></script>
|
|
<script type="text/javascript" src="earley-boyer.js"></script>
|
|
<script type="text/javascript" src="regexp.js"></script>
|
|
<script type="text/javascript" src="splay.js"></script>
|
|
<link type="text/css" rel="stylesheet" href="style.css"></link>
|
|
<script type="text/javascript">
|
|
var completed = 0;
|
|
var benchmarks = BenchmarkSuite.CountBenchmarks();
|
|
var success = true;
|
|
|
|
function ShowProgress(name) {
|
|
var status = document.getElementById("status");
|
|
var percentage = ((++completed) / benchmarks) * 100;
|
|
status.innerHTML = "Running: " + Math.round(percentage) + "% completed.";
|
|
}
|
|
|
|
|
|
function AddResult(name, result) {
|
|
var text = name + ': ' + result;
|
|
var results = document.getElementById("results");
|
|
results.innerHTML += (text + "<br/>");
|
|
}
|
|
|
|
|
|
function AddError(name, error) {
|
|
AddResult(name, '<b>error</b>');
|
|
success = false;
|
|
}
|
|
|
|
|
|
function AddScore(score) {
|
|
var status = document.getElementById("status");
|
|
if (success) {
|
|
status.innerHTML = "Score: " + score;
|
|
}
|
|
}
|
|
|
|
|
|
function Run() {
|
|
BenchmarkSuite.RunSuites({ NotifyStep: ShowProgress,
|
|
NotifyError: AddError,
|
|
NotifyResult: AddResult,
|
|
NotifyScore: AddScore });
|
|
}
|
|
|
|
function Load() {
|
|
var version = BenchmarkSuite.version;
|
|
document.getElementById("version").innerHTML = version;
|
|
window.setTimeout(Run, 200);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onLoad="Load()">
|
|
<div>
|
|
<div class="title"><h1>V8 Benchmark Suite - version <span id="version">?</span></h1></div>
|
|
<table>
|
|
<tr>
|
|
<td class="contents">
|
|
This page contains a suite of pure JavaScript benchmarks that we have
|
|
used to tune V8. The final score is computed as the geometric mean of
|
|
the individual results to make it independent of the running times of
|
|
the individual benchmarks and of a reference system (score
|
|
100). Scores are not comparable across benchmark suite versions and
|
|
higher scores means better performance: <em>Bigger is better!</em>
|
|
|
|
<ul>
|
|
<li><b>Richards</b><br/>OS kernel simulation benchmark, originally written in BCPL by Martin Richards (<i>539 lines</i>).</li>
|
|
<li><b>DeltaBlue</b><br/>One-way constraint solver, originally written in Smalltalk by John Maloney and Mario Wolczko (<i>880 lines</i>).</li>
|
|
<li><b>Crypto</b><br/>Encryption and decryption benchmark based on code by Tom Wu (<i>1698 lines</i>).</li>
|
|
<li><b>RayTrace</b><br/>Ray tracer benchmark based on code by <a href="http://flog.co.nz/">Adam Burmister</a> (<i>935 lines</i>).</li>
|
|
<li><b>EarleyBoyer</b><br/>Classic Scheme benchmarks, translated to JavaScript by Florian Loitsch's Scheme2Js compiler (<i>4685 lines</i>).</li>
|
|
<li><b>RegExp</b><br/>Regular expression benchmark generated by extracting regular expression operations from 50 of the most popular web pages
|
|
(<i>1614 lines</i>).
|
|
</li>
|
|
<li><b>Splay</b><br/>Data manipulation benchmark that deals with splay trees and exercises the automatic memory management subsystem (<i>378 lines</i>).</li>
|
|
</ul>
|
|
|
|
<p>
|
|
Note that benchmark results are not comparable unless both results are
|
|
run with the same revision of the benchmark suite. We will be making
|
|
revisions from time to time in order to fix bugs or expand the scope
|
|
of the benchmark suite. For previous revisions and the change log see
|
|
the <a href="http://v8.googlecode.com/svn/data/benchmarks/current/revisions.html">revisions</a> page.
|
|
</p>
|
|
|
|
</td><td style="text-align: center">
|
|
<div class="run">
|
|
<div id="status" style="text-align: center; margin-top: 50px; font-size: 120%; font-weight: bold;">Starting...</div>
|
|
<div style="text-align: left; margin: 30px 0 0 90px;" id="results">
|
|
<div>
|
|
</div>
|
|
</td></tr></table>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
|