2016-09-08 10:33:05 +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.
|
|
|
|
|
2017-06-22 13:46:04 +00:00
|
|
|
// Flags: --allow-natives-syntax --turbo-escape
|
2016-09-08 10:33:05 +00:00
|
|
|
|
|
|
|
function f() {
|
|
|
|
try {
|
|
|
|
throw "boom";
|
|
|
|
} catch(e) {
|
|
|
|
%_DeoptimizeNow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-17 16:13:52 +00:00
|
|
|
%PrepareFunctionForOptimization(f);
|
2016-09-08 10:33:05 +00:00
|
|
|
f();
|
|
|
|
f();
|
|
|
|
%OptimizeFunctionOnNextCall(f);
|
|
|
|
f();
|