regress-7914.js 623 Bytes
Newer Older
1 2 3 4
// Copyright 2018 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
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
6 7 8 9 10 11

const builder = new WasmModuleBuilder();
builder.addMemory(16, 32, false);
builder.addFunction('main', kSig_i_v)
    .addBody([
      ...wasmI32Const(10000),  // i32.const 10000
12
      kExprMemoryGrow, 0,      // grow_memory --> -1
13 14 15 16 17
      kExprI32Popcnt,          // i32.popcnt  --> 32
    ])
    .exportFunc();
const instance = builder.instantiate();
assertEquals(32, instance.exports.main());