b464b62f2c
Bug: v8:9616 Change-Id: Ieca74f8df90b342672c8904beef2c2298f0ba597 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1755991 Reviewed-by: Igor Sheludko <ishell@chromium.org> Commit-Queue: Sathya Gunasekaran <gsathya@chromium.org> Cr-Commit-Position: refs/heads/master@{#63221}
25 lines
659 B
JavaScript
25 lines
659 B
JavaScript
// Copyright 2019 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.
|
|
|
|
load('../base.js');
|
|
|
|
load('loadconstantfromprototype.js');
|
|
|
|
function PrintResult(name, result) {
|
|
print(name + '-IC(Score): ' + result);
|
|
}
|
|
|
|
function PrintStep(name) {}
|
|
|
|
function PrintError(name, error) {
|
|
PrintResult(name, error);
|
|
}
|
|
|
|
BenchmarkSuite.config.doWarmup = undefined;
|
|
BenchmarkSuite.config.doDeterministic = undefined;
|
|
|
|
BenchmarkSuite.RunSuites({ NotifyResult: PrintResult,
|
|
NotifyError: PrintError,
|
|
NotifyStep: PrintStep });
|