aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/wasm/asm-wasm-deopt.js
blob: 460894ea5e22aef7ed19fc5bd3b83fe29965b6c8 (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
// 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.

// Flags: --validate-asm --allow-natives-syntax

(function TestDeoptimizeArgMismatch() {
  function deopt() {
    %DeoptimizeFunction(test);
  }
  function Module(global, env, buffer) {
    "use asm";
    var deopt = env.deopt;
    function _main(i4, i5) {
      i4 = i4 | 0;
      i5 = i5 | 0;
      deopt();
      return i5 | 0;
    }
    return {'_main': _main}
  }
  function test() {
    var wasm = Module(null, {'deopt': deopt});
    wasm._main(0, 0, 0);
  }
  test();
})();