v8/test/mjsunit/compiler/serializer-transition-propagation.js
Georg Neis 4b84b33a63 [turbofan] Fix a test
The test relies on certain maps not dying but didn't ensure that.

Bug: v8:10783
Change-Id: I708f7fc027ee0bf5656be9bb4f29130f5b924597
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2340912
Reviewed-by: Marja Hölttä <marja@chromium.org>
Commit-Queue: Georg Neis <neis@chromium.org>
Auto-Submit: Georg Neis <neis@chromium.org>
Cr-Commit-Position: refs/heads/master@{#69282}
2020-08-06 18:03:16 +00:00

55 lines
990 B
JavaScript

// Copyright 2019 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 --opt --no-always-opt
var expect_interpreted = true;
function C() {
this.a = 1;
assertEquals(expect_interpreted, %IsBeingInterpreted());
%TurbofanStaticAssert(this.x == 42);
};
function D() {
this.x = 42;
C.call(this);
};
function E() {
D.call(this);
}
function F() {
E.call(this);
};
function G() {
F.call(this);
};
function foo() {
new D;
}
%PrepareFunctionForOptimization(C);
%PrepareFunctionForOptimization(D);
%PrepareFunctionForOptimization(E);
%PrepareFunctionForOptimization(F);
%PrepareFunctionForOptimization(G);
%PrepareFunctionForOptimization(foo);
// Make 'this.x' access in C megamorhpic.
var c = new C;
var d = new D;
var e = new E;
var f = new F;
var g = new G;
foo();
foo();
%OptimizeFunctionOnNextCall(foo);
expect_interpreted = false;
foo();