Closed
Bug 551368
Opened 15 years ago
Closed 13 years ago
TM: improve array representation [meta]
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 689745
People
(Reporter: gal, Unassigned)
References
Details
Our current array representation can be slow when dealing with 32-bit integers and doubles. We want to introduce arrays backed by typed vectors instead of a vector of jsvals and use jsvals as fallback only. We also want to tighten the read/write path and remove hole counting and avoid updating both (fill and length) at every set. Detailed plan of work to follow.
![]() |
||
Comment 1•15 years ago
|
||
c.f. bug 486356?
Comment 2•13 years ago
|
||
Did Typed Arrays take care of this?
![]() |
||
Comment 3•13 years ago
|
||
Typed arrays are user-specified, this was about vanilla arrays.
The read/write path and hole/file/length situation is much better now with TI. Using typed vectors instead of jsvals is now covered by bug 689745.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•