node/deps/v8/test/mjsunit/wasm/wasm-dynamic-tiering.js
Michaël Zasso 48db20f6f5
deps: update V8 to 8.7.220
PR-URL: https://github.com/nodejs/node/pull/35700
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Shelley Vohr <codebytere@gmail.com>
2020-11-15 16:46:54 +01:00

39 lines
1.0 KiB
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.
// Flags: --allow-natives-syntax --wasm-dynamic-tiering --liftoff
// Flags: --no-wasm-tier-up --no-stress-opt
load('test/mjsunit/wasm/wasm-module-builder.js');
const num_iterations = 4;
const num_functions = 2;
const builder = new WasmModuleBuilder();
for (let i = 0; i < num_functions; ++i) {
let kFunction = builder.addFunction('f' + i, kSig_i_v)
.addBody(wasmI32Const(i))
.exportAs('f' + i)
}
let instance = builder.instantiate();
for (let i = 0; i < num_iterations - 1; ++i) {
instance.exports.f0();
instance.exports.f1();
}
assertTrue(%IsLiftoffFunction(instance.exports.f0));
assertTrue(%IsLiftoffFunction(instance.exports.f1));
instance.exports.f1();
// Busy waiting until the function is tiered up.
while (true) {
if (!%IsLiftoffFunction(instance.exports.f1)) {
break;
}
}
assertTrue(%IsLiftoffFunction(instance.exports.f0));