| OLD | NEW |
| 1 V8 Benchmark Suite | 1 V8 Benchmark Suite |
| 2 ================== | 2 ================== |
| 3 | 3 |
| 4 This is the V8 benchmark suite: A collection of pure JavaScript | 4 This is the V8 benchmark suite: A collection of pure JavaScript |
| 5 benchmarks that we have used to tune V8. The licenses for the | 5 benchmarks that we have used to tune V8. The licenses for the |
| 6 individual benchmarks are included in the JavaScript files. | 6 individual benchmarks are included in the JavaScript files. |
| 7 | 7 |
| 8 In addition to the benchmarks, the suite consists of the benchmark | 8 In addition to the benchmarks, the suite consists of the benchmark |
| 9 framework (base.js), which must be loaded before any of the individual | 9 framework (base.js), which must be loaded before any of the individual |
| 10 benchmark files, and two benchmark runners: An HTML version (run.html) | 10 benchmark files, and two benchmark runners: An HTML version (run.html) |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 memory management subsystem of the JavaScript engine. | 50 memory management subsystem of the JavaScript engine. |
| 51 | 51 |
| 52 Furthermore, all the unused parts of the Prototype library were | 52 Furthermore, all the unused parts of the Prototype library were |
| 53 removed from the RayTrace benchmark. This does not affect the running | 53 removed from the RayTrace benchmark. This does not affect the running |
| 54 of the benchmark. | 54 of the benchmark. |
| 55 | 55 |
| 56 | 56 |
| 57 Changes from Version 4 to Version 5 | 57 Changes from Version 4 to Version 5 |
| 58 =================================== | 58 =================================== |
| 59 | 59 |
| 60 Removed duplicate line in random seed code. | 60 Removed duplicate line in random seed code, and changed the name of |
| 61 the Object.prototype.inherits function in the DeltaBlue benchmark to |
| 62 inheritsFrom to avoid name clashes when running in Chromium with |
| 63 extensions enabled. |
| OLD | NEW |