0e2e00f44e
The interpreter will be un-shipped soon, hence we cannot have a compilation hint for interpreted execution. This CL removes the respective enum value, removes a test which specifically tested this one option, and adapts other code to use one of the remaining hints. R=ahaas@chromium.org Bug: v8:10389 Change-Id: Ia754f7de95be271000a9e4e10ef2a3ee171da627 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2172748 Reviewed-by: Andreas Haas <ahaas@chromium.org> Commit-Queue: Clemens Backes <clemensb@chromium.org> Cr-Commit-Position: refs/heads/master@{#67491}
22 lines
872 B
JavaScript
22 lines
872 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('test/mjsunit/wasm/wasm-module-builder.js');
|
|
|
|
(function testIgnoreCompilationHintsSectionUnlessEnabled() {
|
|
print(arguments.callee.name);
|
|
let builder = new WasmModuleBuilder();
|
|
builder.addImport('mod', 'pow', kSig_i_ii);
|
|
builder.addFunction('upow', kSig_i_i)
|
|
.addBody([kExprLocalGet, 0,
|
|
kExprLocalGet, 0,
|
|
kExprCallFunction, 0])
|
|
.setCompilationHint(kCompilationHintStrategyDefault,
|
|
kCompilationHintTierBaseline,
|
|
kCompilationHintTierBaseline)
|
|
.exportFunc();
|
|
let instance = builder.instantiate({mod: {pow: Math.pow}});
|
|
assertEquals(27, instance.exports.upow(3))
|
|
})();
|