diff options
author | patrick@chromium.org <patrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-26 00:05:55 +0000 |
---|---|---|
committer | patrick@chromium.org <patrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-26 00:05:55 +0000 |
commit | 2783c6c5306fad54d7d25c0d59cc69cfdc6a7314 (patch) | |
tree | 3322e4326d177186a368dc5b5c7fc88a709d7df3 /chrome/test/data/v8_benchmark/README.txt | |
parent | c1e9fa244f6000c61a33f89c9af37ff671cd1230 (diff) | |
download | chromium_src-2783c6c5306fad54d7d25c0d59cc69cfdc6a7314.zip chromium_src-2783c6c5306fad54d7d25c0d59cc69cfdc6a7314.tar.gz chromium_src-2783c6c5306fad54d7d25c0d59cc69cfdc6a7314.tar.bz2 |
Add a copy of the V8 Benchmark Suite (version 3) for performance testing.
This copy was fetched from:
http://v8.googlecode.com/svn/data/benchmarks/v3
This copy is unmodified from its original source.
Review URL: http://codereview.chromium.org/53069
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12525 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/data/v8_benchmark/README.txt')
-rw-r--r-- | chrome/test/data/v8_benchmark/README.txt | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/chrome/test/data/v8_benchmark/README.txt b/chrome/test/data/v8_benchmark/README.txt new file mode 100644 index 0000000..46aa573 --- /dev/null +++ b/chrome/test/data/v8_benchmark/README.txt @@ -0,0 +1,42 @@ +V8 Benchmark Suite +================== + +This is the V8 benchmark suite: A collection of pure JavaScript +benchmarks that we have used to tune V8. The licenses for the +individual benchmarks are included in the JavaScript files. + +In addition to the benchmarks, the suite consists of the benchmark +framework (base.js), which must be loaded before any of the individual +benchmark files, and two benchmark runners: An HTML version (run.html) +and a standalone JavaScript version (run.js). + + +Changes From Version 1 To Version 2 +=================================== + +For version 2 the crypto benchmark was fixed. Previously, the +decryption stage was given plaintext as input, which resulted in an +error. Now, the decryption stage is given the output of the +encryption stage as input. The result is checked against the original +plaintext. For this to give the correct results the crypto objects +are reset for each iteration of the benchmark. In addition, the size +of the plain text has been increased a little and the use of +Math.random() and new Date() to build an RNG pool has been removed. + +Other benchmarks were fixed to do elementary verification of the +results of their calculations. This is to avoid accidentally +obtaining scores that are the result of an incorrect JavaScript engine +optimization. + + +Changes From Version 2 To Version 3 +=================================== + +Version 3 adds a new benchmark, RegExp. The RegExp benchmark is +generated by loading 50 of the most popular pages on the web and +logging all regexp operations performed. Each operation is given a +weight that is calculated from an estimate of the popularity of the +pages where it occurs and the number of times it is executed while +loading each page. Finally the literal letters in the data are +encoded using ROT13 in a way that does not affect how the regexps +match their input. |