-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1763606 - Part 5: Sort TypedArray elements in a temporary buffer.…
… r=tcampbell <tc39/ecma262#1585> changed `Array.prototype.sort` to first collect all elements in a temporary list. And because `TypedArray.prototype.sort` follows `Array.prototype.sort`, the same copying has to happen here. Depends on D143288 Differential Revision: https://phabricator.services.mozilla.com/D143289
- Loading branch information
Showing
2 changed files
with
93 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
const TAConstructors = [ | ||
Int8Array, | ||
Uint8Array, | ||
Int16Array, | ||
Uint16Array, | ||
Int32Array, | ||
Uint32Array, | ||
Uint8ClampedArray, | ||
Float32Array, | ||
Float64Array, | ||
BigInt64Array, | ||
BigUint64Array, | ||
]; | ||
|
||
// Use different size classes to catch any implementation-specific | ||
// optimisations. | ||
const sizes = [ | ||
4, 8, 64, 128, 1024 | ||
]; | ||
|
||
function ToNumeric(TA) { | ||
if (TA === BigInt64Array || TA === BigUint64Array) { | ||
return BigInt; | ||
} | ||
return Number; | ||
} | ||
|
||
function ascending(a, b) { | ||
return a < b ? -1 : a > b ? 1 : 0; | ||
} | ||
|
||
function descending(a, b) { | ||
return -ascending(a, b); | ||
} | ||
|
||
for (let TA of TAConstructors) { | ||
let toNumeric = ToNumeric(TA); | ||
for (let size of sizes) { | ||
let sorted = new TA(size); | ||
|
||
// Fill with |1..size| and then sort to account for wrap-arounds. | ||
for (let i = 0; i < size; ++i) { | ||
sorted[i] = toNumeric(i + 1); | ||
} | ||
sorted.sort(); | ||
|
||
// Create a copy in descending order. | ||
let ta = new TA(sorted); | ||
ta.sort(descending); | ||
|
||
// Sort the copy in ascending order and on the first call reset all | ||
// elements to zero. | ||
let called = false; | ||
ta.sort(function(a, b) { | ||
if (!called) { | ||
called = true; | ||
ta.fill(toNumeric(0)); | ||
} | ||
return ascending(a, b); | ||
}); | ||
|
||
// Ensure the comparator function was called. | ||
assertEq(called, true); | ||
|
||
// All elements should be sorted correctly. No elements should be zero. | ||
for (let i = 0; i < size; ++i) { | ||
assertEq(ta[i], sorted[i], `${TA.name} at index ${i} for size ${size}`); | ||
} | ||
} | ||
} | ||
|
||
if (typeof reportCompare === "function") | ||
reportCompare(true, true); |