2013-11-08 14:16:34 +00:00
|
|
|
// Copyright 2013 the V8 project authors. All rights reserved.
|
2018-06-14 14:52:08 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2013-11-08 14:16:34 +00:00
|
|
|
|
2018-06-14 14:52:08 +00:00
|
|
|
// Flags: --allow-natives-syntax
|
|
|
|
|
|
|
|
function Cb(a, trigger) {
|
2013-11-08 14:16:34 +00:00
|
|
|
var f, g;
|
|
|
|
for(f = a.length; f--;) {
|
|
|
|
g = a.charCodeAt(f);
|
|
|
|
// This will fail after OSR if Runtime_StringCharCodeAt is modified
|
|
|
|
// to iterates optimized frames and visit safepoint pointers.
|
2019-06-18 16:03:44 +00:00
|
|
|
if (g == "C".charCodeAt(0)) {
|
|
|
|
%OptimizeOsr();
|
|
|
|
%PrepareFunctionForOptimization(Cb);
|
|
|
|
}
|
2013-11-08 14:16:34 +00:00
|
|
|
}
|
|
|
|
return g;
|
|
|
|
}
|
|
|
|
|
|
|
|
var s1 = "long string to make cons string 1";
|
|
|
|
var s2 = "long string to make cons string 2";
|
2019-06-18 16:03:44 +00:00
|
|
|
%PrepareFunctionForOptimization(Cb);
|
2013-11-08 14:16:34 +00:00
|
|
|
Cb(s1 + s2);
|
2019-06-18 16:03:44 +00:00
|
|
|
%PrepareFunctionForOptimization(Cb);
|
2013-11-08 14:16:34 +00:00
|
|
|
Cb(s1);
|
|
|
|
var s3 = "string for triggering osr in Cb";
|
2019-06-18 16:03:44 +00:00
|
|
|
%PrepareFunctionForOptimization(Cb);
|
2018-06-14 14:52:08 +00:00
|
|
|
Cb(s3 + s3);
|
2019-06-18 16:03:44 +00:00
|
|
|
%PrepareFunctionForOptimization(Cb);
|
2013-11-22 13:50:39 +00:00
|
|
|
Cb(s1 + s2);
|