diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/jit-test/tests/basic/shape-teleporting-transplant-1.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream.tar.xz firefox-esr-upstream.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jit-test/tests/basic/shape-teleporting-transplant-1.js')
-rw-r--r-- | js/src/jit-test/tests/basic/shape-teleporting-transplant-1.js | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/basic/shape-teleporting-transplant-1.js b/js/src/jit-test/tests/basic/shape-teleporting-transplant-1.js new file mode 100644 index 0000000000..889fcaf7b0 --- /dev/null +++ b/js/src/jit-test/tests/basic/shape-teleporting-transplant-1.js @@ -0,0 +1,36 @@ +// Test for invalidating shape teleporting when transplanting objects on proto +// chains. + +function checkGetProp(obj, expected) { + for (var i = 0; i < 50; i++) { + assertEq(obj.prop, expected); + } +} + +Object.prototype.prop = 1234; + +// Construct the following proto chain: +// +// receiver => protoA (FakeDOMObject) => protoB {prop: 567} => null +const protoB = Object.create(null); +protoB.prop = 567; +const protoA = new FakeDOMObject(); +Object.setPrototypeOf(protoA, protoB); +const receiver = Object.create(protoA); + +// Ensure all objects we allocated are tenured. This way we don't need to trigger +// a GC later in TransplantableObject, which makes the test more reliable. +gc(); + +// Attach an IC for `receiver.prop`. +checkGetProp(receiver, 567); + +// Swap protoA with another object. This must invalidate shape teleporting, +// because the proto chain of `receiver` now looks like this: +// +// receiver => protoA (new FakeDOMObject) => FakeDOMObject.prototype => Object.prototype => null +const {transplant} = transplantableObject({object: protoA}); +transplant(this); + +// `receiver.prop` now gets `prop` from Object.prototype. +checkGetProp(receiver, 1234); |