v8/test/mjsunit/regress/wasm/regress-772332.js
Ben L. Titzer bff42d3594 [wasm] Add regression tests for some recently fixed WasmInterpreter issues.
R=clemensh@chromium.org

Bug: chromium:766003,chromium:772332,chromium:771243
Change-Id: I1e2df014f31a87fd94154277d1a415ec359d42df
Reviewed-on: https://chromium-review.googlesource.com/721666
Reviewed-by: Clemens Hammacher <clemensh@chromium.org>
Commit-Queue: Ben Titzer <titzer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#48635}
2017-10-17 12:04:40 +00:00

34 lines
1.2 KiB
JavaScript

// Copyright 2017 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: --expose-wasm --wasm-interpret-all
load('test/mjsunit/wasm/wasm-constants.js');
load('test/mjsunit/wasm/wasm-module-builder.js');
assertThrows(() => {
let __v_50315 = 0;
function __f_15356(__v_50316, __v_50317) {
let __v_50318 = new WasmModuleBuilder();
if (__v_50317) {
let __v_50319 = __v_50318.addImport('import_module', 'other_module_fn', kSig_i_i);
}
__v_50318.addMemory();
__v_50318.addFunction('load', kSig_i_i).addBody([ 0, 0, 0]).exportFunc();
return __v_50318;
}
(function __f_15357() {
let __v_50320 = __f_15356(__v_50350 = false, __v_50351 = kSig_i_i);
__v_50320.addFunction('plus_one', kSig_i_i).addBody([kExprGetLocal, 0, kExprCallFunction, __v_50315, kExprI32Const, kExprI32Add, kExprReturn]).exportFunc();
let __v_50321 = __f_15356();
let __v_50324 = __v_50321.instantiate();
let __v_50325 = __v_50320.instantiate({
import_module: {
other_module_fn: __v_50324.exports.load
}
});
__v_50325.exports.plus_one();
})();
});