summaryrefslogtreecommitdiff
path: root/deps/v8/benchmarks
diff options
context:
space:
mode:
authorRyan <ry@tinyclouds.org>2009-06-29 10:55:05 +0200
committerRyan <ry@tinyclouds.org>2009-06-29 10:55:05 +0200
commite763efdadf4bbd9c0155a4c7f782d271a2fd5814 (patch)
tree094824e55548cdeb2ce9b796cbf29aaa591bb69f /deps/v8/benchmarks
parente876d6629e8682f5d818141bc0710f6d82311373 (diff)
downloadandroid-node-v8-e763efdadf4bbd9c0155a4c7f782d271a2fd5814.tar.gz
android-node-v8-e763efdadf4bbd9c0155a4c7f782d271a2fd5814.tar.bz2
android-node-v8-e763efdadf4bbd9c0155a4c7f782d271a2fd5814.zip
Upgrade v8 to 1.2.10 and libev to 3.6
Diffstat (limited to 'deps/v8/benchmarks')
-rw-r--r--deps/v8/benchmarks/revisions.html2
-rwxr-xr-x[-rw-r--r--]deps/v8/benchmarks/run.html37
-rwxr-xr-x[-rw-r--r--]deps/v8/benchmarks/style.css38
3 files changed, 40 insertions, 37 deletions
diff --git a/deps/v8/benchmarks/revisions.html b/deps/v8/benchmarks/revisions.html
index 458f8db697..b86c876fe4 100644
--- a/deps/v8/benchmarks/revisions.html
+++ b/deps/v8/benchmarks/revisions.html
@@ -1,7 +1,7 @@
<html>
<head>
<title>V8 Benchmark Suite Revisions</title>
-<link type="text/css" rel="stylesheet" href="style.css"></link>
+<link type="text/css" rel="stylesheet" href="style.css" />
</head>
<body>
<div>
diff --git a/deps/v8/benchmarks/run.html b/deps/v8/benchmarks/run.html
index 6adb6d27a0..050764e013 100644..100755
--- a/deps/v8/benchmarks/run.html
+++ b/deps/v8/benchmarks/run.html
@@ -1,5 +1,10 @@
-<html>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
+ "http://www.w3.org/TR/html4/strict.dtd">
+<html lang="en">
<head>
+<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
+<meta http-equiv="Content-Script-Type" content="text/javascript">
+<meta http-equiv="Content-Style-Type" content="text/css">
<title>V8 Benchmark Suite</title>
<script type="text/javascript" src="base.js"></script>
<script type="text/javascript" src="richards.js"></script>
@@ -9,7 +14,7 @@
<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>
+<link type="text/css" rel="stylesheet" href="style.css" />
<script type="text/javascript">
var completed = 0;
var benchmarks = BenchmarkSuite.CountBenchmarks();
@@ -25,12 +30,12 @@ function ShowProgress(name) {
function AddResult(name, result) {
var text = name + ': ' + result;
var results = document.getElementById("results");
- results.innerHTML += (text + "<br/>");
+ results.innerHTML += (text + "<br>");
}
function AddError(name, error) {
- AddResult(name, '<b>error</b>');
+ AddResult(name, '<b>error<\/b>');
success = false;
}
@@ -53,11 +58,11 @@ function Run() {
function Load() {
var version = BenchmarkSuite.version;
document.getElementById("version").innerHTML = version;
- window.setTimeout(Run, 200);
+ setTimeout(Run, 200);
}
</script>
</head>
-<body onLoad="Load()">
+<body onload="Load()">
<div>
<div class="title"><h1>V8 Benchmark Suite - version <span id="version">?</span></h1></div>
<table>
@@ -71,15 +76,15 @@ the individual benchmarks and of a reference system (score
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
+<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>
+<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>
@@ -92,9 +97,9 @@ the <a href="http://v8.googlecode.com/svn/data/benchmarks/current/revisions.html
</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 id="status">Starting...</div>
+ <div id="results">
+ </div>
</div>
</td></tr></table>
diff --git a/deps/v8/benchmarks/style.css b/deps/v8/benchmarks/style.css
index d976cdd3e7..46320c1ebe 100644..100755
--- a/deps/v8/benchmarks/style.css
+++ b/deps/v8/benchmarks/style.css
@@ -1,11 +1,7 @@
-body {
- font-family: sans-serif;
-}
-
-hr{
+hr {
border: 1px solid;
border-color: #36C;
- margin: 1em 0
+ margin: 1em 0;
}
h1, h2, h3, h4 {
@@ -14,27 +10,17 @@ h1, h2, h3, h4 {
}
h1 {
- font-size: 190%;
- height: 1.2em;
-}
-
-
-h2{
- font-size: 140%;
+ font-size: 154%;
height: 1.2em;
}
-h3{
- font-size: 100%;
-}
-li{
+li {
margin: .3em 0 1em 0;
}
-body{
+body {
font-family: Helvetica,Arial,sans-serif;
- font-size: small;
color: #000;
background-color: #fff;
}
@@ -54,7 +40,7 @@ div.subtitle {
}
td.contents {
- text-align: start;
+ text-align: left;
}
div.run {
@@ -68,3 +54,15 @@ div.run {
background-repeat: no-repeat;
border: 1px solid rgb(51, 102, 204);
}
+
+#status {
+ text-align: center;
+ margin-top: 50px;
+ font-size: 120%;
+ font-weight: bold;
+}
+
+#results {
+ text-align: left;
+ margin: 30px 0 0 90px;
+}