gc-stress.js 951 Bytes
Newer Older
1 2 3 4
// Copyright 2016 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.

5
// Flags: --expose-wasm --gc-interval=500 --stress-compaction
6 7 8 9 10

load("test/mjsunit/wasm/wasm-module-builder.js");

function run(f) {
  var builder = new WasmModuleBuilder();
11
  builder.addImport("m", "f", kSig_i_i);
12 13 14 15 16 17 18 19 20 21 22
  builder.addFunction("main", kSig_i_i)
    .addBody([
      kExprGetLocal, 0,
      kExprCallFunction, 0])
    .exportAs("main");

  print("module");
  var module = new WebAssembly.Module(builder.toBuffer());

  for (var i = 0; i < 10; i++) {
    print("  instance " + i);
23
    var instance = new WebAssembly.Instance(module, {m: {f: f}});
24 25 26 27 28 29 30 31
    var g = instance.exports.main;
    for (var j = 0; j < 10; j++) {
      assertEquals(f(j), g(j));
    }
  }
}

(function test() {
32 33
  for (var i = 0; i < 10; i++) {
    run(x => (x + 19 + i));
34 35 36
    run(x => (x - 18));
  }
})();