From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../jit-test/tests/cacheir/shape-teleporting-1.js | 128 +++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 js/src/jit-test/tests/cacheir/shape-teleporting-1.js (limited to 'js/src/jit-test/tests/cacheir/shape-teleporting-1.js') diff --git a/js/src/jit-test/tests/cacheir/shape-teleporting-1.js b/js/src/jit-test/tests/cacheir/shape-teleporting-1.js new file mode 100644 index 0000000000..35deb8c34f --- /dev/null +++ b/js/src/jit-test/tests/cacheir/shape-teleporting-1.js @@ -0,0 +1,128 @@ +// Receiver shadows +(function() { + function check(p) { return p.x; } + + let a = { x: "a" }; + let b = { __proto__: a }; + let c = { __proto__: b }; + let d = { __proto__: c }; + + assertEq(check(d), "a"); + assertEq(check(d), "a"); + d.x = "d"; + assertEq(check(d), "d"); +})(); + +// Intermediate proto shadows +(function() { + function check(p) { return p.x; } + + let a = { x: "a" }; + let b = { __proto__: a }; + let c = { __proto__: b }; + let d = { __proto__: c }; + + assertEq(check(d), "a"); + assertEq(check(d), "a"); + c.x = "c"; + assertEq(check(d), "c"); +})(); + +// Receiver proto changes +(function() { + function check(p) { return p.x; } + + let a = { x: "a" }; + let b = { __proto__: a }; + let c = { __proto__: b }; + let d = { __proto__: c }; + + assertEq(check(d), "a"); + assertEq(check(d), "a"); + d.__proto__ = { x: "?" }; + assertEq(check(d), "?"); +})(); + +// Intermediate proto changes +(function() { + function check(p) { return p.x; } + + let a = { x: "a" }; + let b = { __proto__: a }; + let c = { __proto__: b }; + let d = { __proto__: c }; + + assertEq(check(d), "a"); + assertEq(check(d), "a"); + c.__proto__ = { x: "?" }; + assertEq(check(d), "?"); +})(); + +// Uncacheable holder proto +(function() { + function check(p) { return p.x; } + + function Base() { this.x = "a"; } + let a = new Base; + a.__proto__ = new Object; + let b = { __proto__: a }; + let c = { __proto__: b }; + let d = { __proto__: c }; + + assertEq(check(d), "a"); + assertEq(check(d), "a"); + b.__proto__ = { x: "?" }; + assertEq(check(d), "?"); +})(); + +// Uncacheable intermediate proto +(function() { + function check(p) { return p.x; } + + function Base() { this.x = "a"; } + function Node() { } + + let a = new Base; + let b = new Node; b.__proto__ = a; + let c = { __proto__: b }; + let d = { __proto__: c }; + + assertEq(check(d), "a"); + assertEq(check(d), "a"); + b.__proto__ = { x: "?" }; + assertEq(check(d), "?"); +})(); + +// Uncacheable receiver proto +(function() { + function check(p) { return p.x; } + + function Base() { this.x = "a"; } + function Node() { } + + let a = new Base; + let b = { __proto__: a }; + let c = { __proto__: b }; + let d = new Node; d.__proto__ = c; + + assertEq(check(d), "a"); + assertEq(check(d), "a"); + d.__proto__ = { x: "?" }; + assertEq(check(d), "?"); +})(); + +// Uncacheable receiver proto (only receiver / holder) +(function() { + function check(p) { return p.x; } + + function Base() { this.x = "a"; } + function Node() { } + + let a = new Base; + let b = new Node; b.__proto__ = a; + + assertEq(check(b), "a"); + assertEq(check(b), "a"); + b.__proto__ = { x: "?" }; + assertEq(check(b), "?"); +})(); -- cgit v1.2.3