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

Side by Side Diff: test/mjsunit/regress/regress-crbug-485548-1.js

Issue 1128043005: Map::ReconfigureProperty() should mark map as unstable when there is an element kind transition som… (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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/objects.cc ('k') | test/mjsunit/regress/regress-crbug-485548-2.js » ('j') | 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 2015 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 --expose-gc
6
7 var inner = new Array();
8 inner.a = {x:1};
9 inner[0] = 1.5;
10 inner.b = {x:2};
11 assertTrue(%HasFastDoubleElements(inner));
12
13 function foo(o) {
14 return o.field.a.x;
15 }
16
17 var outer = {};
18 outer.field = inner;
19 foo(outer);
20 foo(outer);
21 foo(outer);
22 %OptimizeFunctionOnNextCall(foo);
23 foo(outer);
24
25 // Generalize representation of field "a" of inner object.
26 var v = { get x() { return 0x7fffffff; } };
27 inner.a = v;
28
29 gc();
30
31 var boom = foo(outer);
32 print(boom);
33 assertEquals(0x7fffffff, boom);
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | test/mjsunit/regress/regress-crbug-485548-2.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698