2019-05-28 08:46:21 -04:00
|
|
|
// 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.
|
|
|
|
|
2021-08-29 14:20:49 +02:00
|
|
|
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
|
2019-05-28 08:46:21 -04:00
|
|
|
|
|
|
|
(function testIgnoreCompilationHintsSectionUnlessEnabled() {
|
|
|
|
print(arguments.callee.name);
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
builder.addImport('mod', 'pow', kSig_i_ii);
|
|
|
|
builder.addFunction('upow', kSig_i_i)
|
2019-11-08 15:39:11 +01:00
|
|
|
.addBody([kExprLocalGet, 0,
|
|
|
|
kExprLocalGet, 0,
|
2019-05-28 08:46:21 -04:00
|
|
|
kExprCallFunction, 0])
|
2019-08-01 08:38:30 +02:00
|
|
|
.setCompilationHint(kCompilationHintStrategyDefault,
|
2020-07-13 10:39:42 +02:00
|
|
|
kCompilationHintTierBaseline,
|
|
|
|
kCompilationHintTierBaseline)
|
2019-05-28 08:46:21 -04:00
|
|
|
.exportFunc();
|
|
|
|
let instance = builder.instantiate({mod: {pow: Math.pow}});
|
|
|
|
assertEquals(27, instance.exports.upow(3))
|
|
|
|
})();
|