2016-09-20 05:58:39 +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-04-28 13:33:43 +00:00
|
|
|
// Flags: --allow-natives-syntax --opt
|
2016-09-20 05:58:39 +00:00
|
|
|
|
|
|
|
function foo(a, b) {
|
|
|
|
return a + "0123456789012";
|
|
|
|
}
|
|
|
|
|
2019-06-14 16:27:09 +00:00
|
|
|
%PrepareFunctionForOptimization(foo);
|
2016-09-20 05:58:39 +00:00
|
|
|
foo("a");
|
|
|
|
foo("a");
|
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
foo("a");
|
|
|
|
|
2017-07-20 13:08:39 +00:00
|
|
|
var a = "a".repeat(%StringMaxLength());
|
|
|
|
assertThrows(function() { foo(a); }, RangeError);
|
2016-09-20 05:58:39 +00:00
|
|
|
|
2019-06-14 16:27:09 +00:00
|
|
|
%PrepareFunctionForOptimization(foo);
|
2016-09-20 05:58:39 +00:00
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
2017-07-20 13:08:39 +00:00
|
|
|
assertThrows(function() { foo(a); }, RangeError);
|
2016-09-20 05:58:39 +00:00
|
|
|
assertOptimized(foo);
|