v8/test/mjsunit/asm/noexpose-wasm.js
Ben L. Titzer 6377519f2e [asmjs] --validate-asm should not expose the WASM API.
R=mstarzinger@chromium.org

Bug: v8:6756
Change-Id: Ic748a4848f66dfcd9b8577d615669b61670e5431
Reviewed-on: https://chromium-review.googlesource.com/647757
Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
Commit-Queue: Ben Titzer <titzer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#47799}
2017-09-04 13:31:32 +00:00

38 lines
896 B
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: --noexpose-wasm --validate-asm
assertThrows(() => { let x = WebAssembly.Module; });
function Module(stdlib, foreign, heap) {
"use asm";
function f1(i) {
i = i|0;
return (i | 0) / 3 | 0;
}
function f2(i) {
i = i|0;
return (i | 0) / 13 | 0;
}
function f3(i) {
i = i|0;
return (i | 0) / 1024 | 0;
}
function f4(i) {
i = i|0;
return (i | 0) / 3733331 | 0;
}
return { f1: f1, f2: f2, f3: f3, f4: f4 };
}
var m = Module(this, {}, new ArrayBuffer(1024));
for (var i = -2147483648; i < 2147483648; i += 3999777) {
assertEquals(i / 3 | 0, m.f1(i));
assertEquals(i / 13 | 0, m.f2(i));
assertEquals(i / 1024 | 0, m.f3(i));
assertEquals(i / 3733331 | 0, m.f4(i));
}