v8/test/mjsunit/ic-megadom-3.js
Camillo Bruni b7aafbc87c Flags: Rename --enable-mega-dom-ic to --mega-dom-ic
Change-Id: I1875935b65fac18e53959ca2682e0f4bd81c50c2
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4188388
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Reviewed-by: Toon Verwaest <verwaest@chromium.org>
Cr-Commit-Position: refs/heads/main@{#85458}
2023-01-24 15:25:28 +00:00

58 lines
1.1 KiB
JavaScript

// 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
// handles correctly the error of signature mismatch.
function load(obj) {
return obj.nodeType;
}
%PrepareFunctionForOptimization(load);
let a = new d8.dom.Div();
let b = new d8.dom.Div();
b.b = 1;
let c = new d8.dom.Div();
c.c = 1;
let d = new d8.dom.Div();
d.d = 1;
let e = new d8.dom.Div();
e.e = 1;
let 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]);
}
try {
load(new d8.dom.EventTarget());
} catch (err) {
assertInstanceof(err, TypeError);
assertEquals("Illegal invocation", err.message, 'Error message');
}
return result;
}
%PrepareFunctionForOptimization(test);
let result = test();
assertEquals(6, result);
%OptimizeFunctionOnNextCall(test);
result = test();
assertEquals(6, result);