96e4f6145b
Reason for revert: False alarm, bot hiccup Original issue's description: > Revert of Thread maybe-assigned through the bytecodes. (patchset #5 id:80001 of https://codereview.chromium.org/2655733003/ ) > > Reason for revert: > needed for properly revertingf3ae5ccf57
> > Original issue's description: > > Thread maybe-assigned through the bytecodes. > > > > This introduces LoadImmutableContextSlot and LoadImmutableCurrentContextSlot > > bytecodes, which are emitted when reading from never-assigned context slot. > > > > There is a subtlety here: the slot are not immutable, the meaning is > > actually undefined-or-hole-or-immutable. > > > > Review-Url: https://codereview.chromium.org/2655733003 > > Cr-Commit-Position: refs/heads/master@{#43000} > > Committed:17c2dd3886
> > TBR=rmcilroy@chromium.org,bmeurer@chromium.org,neis@chromium.org,jarin@chromium.org > # Skipping CQ checks because original CL landed less than 1 days ago. > NOPRESUBMIT=true > NOTREECHECKS=true > NOTRY=true > > Review-Url: https://codereview.chromium.org/2680923003 > Cr-Commit-Position: refs/heads/master@{#43011} > Committed:ece4e54a31
TBR=rmcilroy@chromium.org,bmeurer@chromium.org,neis@chromium.org,jarin@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review-Url: https://codereview.chromium.org/2679953003 Cr-Commit-Position: refs/heads/master@{#43012}
31 lines
567 B
JavaScript
31 lines
567 B
JavaScript
// 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 h(g) {
|
|
return g();
|
|
}
|
|
|
|
function f() {
|
|
var g;
|
|
for (var i = 0; i < 10; i++) {
|
|
var y = i;
|
|
if (i === 5) {
|
|
g = function() {
|
|
return y;
|
|
};
|
|
assertEquals(5, h(g));
|
|
assertEquals(5, h(g));
|
|
%OptimizeFunctionOnNextCall(h);
|
|
assertEquals(5, h(g));
|
|
}
|
|
}
|
|
return g;
|
|
}
|
|
|
|
var myg = f();
|
|
|
|
assertEquals(9, h(myg));
|