693e8ac59f
The score is computed based on how often the benchmark's function can be run within one second. Simply importing a Module repeatedly doesn't do any work, so to make the test score meaningful, we must wrap the payload into a function that can be called explicitly for every run. NOTRY=true Bug: v8:1569 Change-Id: Iadaed6df1f1652d8860271e327c505f0b8f20c2d Reviewed-on: https://chromium-review.googlesource.com/639396 Commit-Queue: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Adam Klein <adamk@chromium.org> Reviewed-by: Georg Neis <neis@chromium.org> Cr-Commit-Position: refs/heads/master@{#47686}
58 lines
1.1 KiB
JavaScript
58 lines
1.1 KiB
JavaScript
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import { value,
|
|
set,
|
|
a0,
|
|
a1,
|
|
a2,
|
|
a3,
|
|
a4,
|
|
a5,
|
|
a6,
|
|
a7,
|
|
a8,
|
|
a9,
|
|
a10,
|
|
a11,
|
|
a12,
|
|
a13,
|
|
a14,
|
|
a15,
|
|
a16,
|
|
a17,
|
|
a18,
|
|
a19 } from "value.js";
|
|
|
|
export function bench() {
|
|
for (let i = 0; i < iterations; ++i) {
|
|
let accumulator = value;
|
|
accumulator += a0;
|
|
accumulator += a1;
|
|
accumulator += a2;
|
|
accumulator += a3;
|
|
accumulator += a4;
|
|
accumulator += a5;
|
|
accumulator += a6;
|
|
accumulator += a7;
|
|
accumulator += a8;
|
|
accumulator += a9;
|
|
accumulator += a10;
|
|
accumulator += a11;
|
|
accumulator += a12;
|
|
accumulator += a13;
|
|
accumulator += a14;
|
|
accumulator += a15;
|
|
accumulator += a16;
|
|
accumulator += a17;
|
|
accumulator += a18;
|
|
accumulator += a19;
|
|
set(accumulator);
|
|
}
|
|
|
|
if (value !== 190 * iterations) throw new Error;
|
|
|
|
set(0);
|
|
}
|