2018-11-19 09:46:29 +00:00
|
|
|
// Copyright 2018 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.
|
|
|
|
|
2022-04-28 14:22:23 +00:00
|
|
|
// Flags: --allow-natives-syntax --noalways-turbofan
|
2018-11-19 09:46:29 +00:00
|
|
|
|
|
|
|
global = 1;
|
|
|
|
|
|
|
|
function boom(value) {
|
|
|
|
return global;
|
|
|
|
}
|
|
|
|
|
2019-03-01 10:19:54 +00:00
|
|
|
%PrepareFunctionForOptimization(boom);
|
2018-11-19 09:46:29 +00:00
|
|
|
assertEquals(1, boom());
|
|
|
|
assertEquals(1, boom());
|
2021-08-10 09:13:13 +00:00
|
|
|
%DisableOptimizationFinalization();
|
2018-11-19 09:46:29 +00:00
|
|
|
%OptimizeFunctionOnNextCall(boom, "concurrent");
|
|
|
|
assertEquals(1, boom());
|
|
|
|
|
2021-08-10 09:13:13 +00:00
|
|
|
%WaitForBackgroundOptimization();
|
2018-11-19 09:46:29 +00:00
|
|
|
delete this.global;
|
2021-08-10 09:13:13 +00:00
|
|
|
%FinalizeOptimization();
|
2018-11-19 09:46:29 +00:00
|
|
|
|
|
|
|
// boom should be deoptimized because the global property cell has changed.
|
2022-11-02 16:57:25 +00:00
|
|
|
assertUnoptimized(boom);
|
2018-11-19 09:46:29 +00:00
|
|
|
|
|
|
|
assertThrows(boom);
|