2017-06-28 11:12:14 +00:00
|
|
|
// Copyright 2017 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: --allow-natives-syntax
|
|
|
|
|
|
|
|
function l(s) {
|
|
|
|
return ("xxxxxxxxxxxxxxxxxxxxxxx" + s).toLowerCase();
|
|
|
|
}
|
|
|
|
|
2019-03-01 10:19:54 +00:00
|
|
|
%PrepareFunctionForOptimization(l);
|
2017-06-28 11:12:14 +00:00
|
|
|
l("abcd");
|
|
|
|
l("abcd");
|
|
|
|
%OptimizeFunctionOnNextCall(l);
|
|
|
|
l("abcd");
|
|
|
|
|
|
|
|
function u(s) {
|
|
|
|
return ("xxxxxxxxxxxxxxxxxxxxxxx" + s).toUpperCase();
|
|
|
|
}
|
|
|
|
|
2019-03-01 10:19:54 +00:00
|
|
|
%PrepareFunctionForOptimization(u);
|
2017-06-28 11:12:14 +00:00
|
|
|
u("abcd");
|
|
|
|
u("abcd");
|
|
|
|
%OptimizeFunctionOnNextCall(u);
|
|
|
|
u("abcd");
|