summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/wasm/origin-trial-flags.js
blob: d41f581e1347712e044f8682a96b1e73005deddf (plain)
1
2
3
4
5
6
7
8
9
10
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
// 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: --noexperimental-wasm-threads --allow-natives-syntax

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

function instantiateModuleWithThreads() {
  // Build a WebAssembly module which uses threads-features.
  const builder = new WasmModuleBuilder();
  const shared = true;
  builder.addMemory(2, 10, false, shared);
  builder.addFunction('main', kSig_i_ii)
      .addBody([
        kExprGetLocal, 0, kExprGetLocal, 1, kAtomicPrefix, kExprI32AtomicAdd, 2,
        0
      ])
      .exportFunc();

  return builder.instantiate();
}

// Disable WebAssembly threads initially.
%SetWasmThreadsEnabled(false);
assertThrows(instantiateModuleWithThreads, WebAssembly.CompileError);

// Enable WebAssembly threads.
%SetWasmThreadsEnabled(true);
assertInstanceof(instantiateModuleWithThreads(), WebAssembly.Instance);

// Disable WebAssembly threads.
%SetWasmThreadsEnabled(false);
assertThrows(instantiateModuleWithThreads, WebAssembly.CompileError);