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/cacheir/string-charAt-rope.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jit-test/tests/cacheir/string-charAt-rope.js')
-rw-r--r-- | js/src/jit-test/tests/cacheir/string-charAt-rope.js | 83 |
1 files changed, 83 insertions, 0 deletions
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..4c2dd5bc56 --- /dev/null +++ b/js/src/jit-test/tests/cacheir/string-charAt-rope.js @@ -0,0 +1,83 @@ +// 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 left = newRope("abc", "def"); + var right = newRope("ghi", "jkl"); + var s = newRope(left, right); + + var ch = s.charAt(0); + assertEq(ch, "a"); + } +} +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 left = newRope("abc", "def"); + var right = newRope("ghi", "jkl"); + var s = newRope(left, right); + + var ch = s.charAt(6); + assertEq(ch, "g"); + } +} +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 = newRope("abc", "def"); + var right = newRope("ghi", "jkl"); + var s = newRope(left, right); + + var idx = i % left.length; + var ch = s.charAt(idx); + assertEq(ch, String.fromCharCode(0x61 + 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 = newRope("abc", "def"); + var right = newRope("ghi", "jkl"); + var s = newRope(left, right); + + var idx = i % right.length; + var ch = s.charAt(left.length + idx); + assertEq(ch, String.fromCharCode(0x61 + 6 + 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 left = newRope("abc", "def"); + var right = newRope("ghi", "jkl"); + var s = newRope(left, right); + + for (var j = 0; j < s.length; ++j) { + var ch = s.charAt(j); + assertEq(ch, String.fromCharCode(0x61 + j)); + } + } +} +for (var i = 0; i < 2; ++i) { + testBothChildren(); +} |