wasm-dynamic-tiering.js 1.01 KB
Newer Older
1 2 3 4 5 6 7 8 9
// 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');

10
const num_iterations = 4;
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
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));