From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../jit-test/tests/cacheir/string-charAt-rope.js | 80 ++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 js/src/jit-test/tests/cacheir/string-charAt-rope.js (limited to 'js/src/jit-test/tests/cacheir/string-charAt-rope.js') diff --git a/js/src/jit-test/tests/cacheir/string-charAt-rope.js b/js/src/jit-test/tests/cacheir/string-charAt-rope.js new file mode 100644 index 0000000000..ea656e132c --- /dev/null +++ b/js/src/jit-test/tests/cacheir/string-charAt-rope.js @@ -0,0 +1,80 @@ +function makeRope() { + var left = newRope("@ABCDEFGHIJKLMNO", "PQRSTUVWXYZ[\\]^_"); + var right = newRope("`abcdefghijklmno", "pqrstuvwxyz{|}~"); + var rope = newRope(left, right); + return {left, right, rope}; +} + +// Load a character from the left rope child using a constant index. The input +// to String.prototype.charAt is always rope. +function testLeftChildConstant() { + for (var i = 0; i < 200; ++i) { + var {rope} = makeRope(); + + var ch = rope.charAt(0); + assertEq(ch, "@"); + } +} +for (var i = 0; i < 2; ++i) { + testLeftChildConstant(); +} + +// Load a character from the right rope child using a constant index. The input +// to String.prototype.charAt is always rope. +function testRightChildConstant() { + for (var i = 0; i < 200; ++i) { + var {rope} = makeRope(); + + var ch = rope.charAt(32); + assertEq(ch, "`"); + } +} +for (var i = 0; i < 2; ++i) { + testRightChildConstant(); +} + +// Load a character from the left rope child using a variable index. The input +// to String.prototype.charAt is always rope. +function testLeftChildVariable() { + for (var i = 0; i < 200; ++i) { + var {left, rope} = makeRope(); + + var idx = i % left.length; + var ch = rope.charAt(idx); + assertEq(ch, String.fromCharCode(0x40 + idx)); + } +} +for (var i = 0; i < 2; ++i) { + testLeftChildVariable(); +} + +// Load a character from the right rope child using a variable index. The input +// to String.prototype.charAt is always rope. +function testRightChildVariable() { + for (var i = 0; i < 200; ++i) { + var {left, right, rope} = makeRope(); + + var idx = i % right.length; + var ch = rope.charAt(left.length + idx); + assertEq(ch, String.fromCharCode(0x60 + idx)); + } +} +for (var i = 0; i < 2; ++i) { + testRightChildVariable(); +} + +// Load all characters from both child ropes. This covers the case when the +// call to String.prototype.charAt linearizes the rope. +function testBothChildren() { + for (var i = 0; i < 200; ++i) { + var {rope} = makeRope(); + + for (var j = 0; j < rope.length; ++j) { + var ch = rope.charAt(j); + assertEq(ch, String.fromCharCode(0x40 + j)); + } + } +} +for (var i = 0; i < 2; ++i) { + testBothChildren(); +} -- cgit v1.2.3