2016-03-24 17:27:40 +00:00
|
|
|
// 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.
|
|
|
|
|
2016-08-23 04:06:52 +00:00
|
|
|
// Flags: --validate-asm --allow-natives-syntax
|
2016-03-24 17:27:40 +00:00
|
|
|
|
|
|
|
(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() {
|
2016-08-23 04:06:52 +00:00
|
|
|
var wasm = Module(null, {'deopt': deopt});
|
2016-03-24 17:27:40 +00:00
|
|
|
wasm._main(0, 0, 0);
|
|
|
|
}
|
|
|
|
test();
|
|
|
|
})();
|