Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Side by Side Diff: test/mjsunit/compiler/escape-analysis-15.js

Issue 2766383003: [turbofan] escape analysis: revisit of uses afer FinishRegion marked as escaped (Closed)
Patch Set: repro Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/escape-analysis.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Flags: --allow-natives-syntax --turbo --turbo-escape --turbo-experimental --n o-turbo-load-elimination
6
7 function f(i) {
8 var o1 = {a: 1, b: 2};
9 var o2 = {a: 1, b: 3};
10 var o3 = {a: o2.b};
11 o3.a = "";
12 o2.a = o1;
13 if (i == 4) return o3;
14 }
15 for (var i = 0; i < 100; ++i){
16 f(i%5)
17 }
18 %OptimizeFunctionOnNextCall(f);
19 f(false);
OLDNEW
« no previous file with comments | « src/compiler/escape-analysis.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698