summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/ic-megadom-2.js
blob: 1f281ab2da8f8e522c1f667bff277e85855a2786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright 2021 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: --mega-dom-ic --allow-natives-syntax

// This tests checks that load property access using megadom IC returns
// correct results both on API objects and plain JS objects.

function load(obj) {
  return obj.nodeType;
}

%PrepareFunctionForOptimization(load);

var a = new d8.dom.Div();
var b = new d8.dom.Div();
b.b = 1;

var c = new d8.dom.Div();
c.c = 1;

var d = new d8.dom.Div();
d.d = 1;

var e = new d8.dom.Div();
e.e = 1;

var f = new d8.dom.Div();
f.f = 1;

const objs = [
  a, b, c, d, e, f
];

function test() {
  let result = 0;
  for (let i = 0; i < objs.length; i++) {
    result += load(objs[i]);
  }

  return result;
}
%PrepareFunctionForOptimization(test);
let result = test();
assertEquals(6, result);
assertEquals(load({}), undefined);
assertEquals(load({ nodeType: 'foo' }), 'foo');

%OptimizeFunctionOnNextCall(test);
result = test();
assertEquals(6, result);
assertEquals(load({}), undefined)
assertEquals(load({nodeType: 'foo'}), 'foo');