f472c46a08
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@91 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
136 lines
3.7 KiB
HTML
136 lines
3.7 KiB
HTML
<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>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
hr{
|
|
border:1px solid;
|
|
border-color:#36C;
|
|
margin:1em 0
|
|
}
|
|
|
|
h1,h2,h3,h4{margin-bottom:0}
|
|
h1{font-size:160%}
|
|
|
|
li{
|
|
margin:.3em 0 1em 0;
|
|
}
|
|
|
|
body{
|
|
font-family: Helvetica,Arial,sans-serif;
|
|
font-size: small;
|
|
color: #000;
|
|
background-color: #fff;
|
|
}
|
|
|
|
div.title {
|
|
background-color: rgb(229, 236, 249);
|
|
border-top: 1px solid rgb(51, 102, 204);
|
|
text-align: center;
|
|
padding-top: 0.2em;
|
|
padding-bottom: 0.2em;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0px;
|
|
font-size: 24.5px;
|
|
height: 29.35px;
|
|
}
|
|
|
|
td.contents {
|
|
text-align: start;
|
|
}
|
|
|
|
div.run {
|
|
margin: 20px;
|
|
width: 300px;
|
|
height: 300px;
|
|
float: right;
|
|
background-color: rgb(229, 236, 249);
|
|
background-image: url(v8-logo.png);
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
border: 1px solid rgb(51, 102, 204);
|
|
}
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
var completed = 0;
|
|
var benchmarks = BenchmarkSuite.CountBenchmarks();
|
|
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 AddScore(score) {
|
|
var status = document.getElementById("status");
|
|
status.innerHTML = "Score: " + score;
|
|
}
|
|
|
|
|
|
function Run() {
|
|
BenchmarkSuite.RunSuites({ NotifyStep: ShowProgress,
|
|
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>1689 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>3418 lines</i>).</li>
|
|
<li><b>EarleyBoyer</b><br/>Classic Scheme benchmarks, translated to JavaScript by Florian Loitsch's Scheme2Js compiler (<i>4682 lines</i>).</li>
|
|
</ul>
|
|
|
|
</td><td style="text-align: center">
|
|
<div class="run">
|
|
<div id="status" style="text-align: center; margin-top: 75px; 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>
|