DescriptionModify %AddElement to accept large indices out of array bounds
This patch changes %AddElement to fall back to adding a named property
in case it is given an argument of 2**32 or greater. The change is
needed because %AddElement is called by Array functions in various
places, and ES2015 changes these Array functions to use ToLength
rather than ToUint32, so several callsites of %AddElement which used
to be reliable array indices may be larger numbers. While the proper
long-term solution may be to call out to Object.defineProperty, this
fix should allow the ToLength semantics to be shipped while
preserving correctness and not requiring a rewrite.
BUG=v8:4516
LOG=Y
R=adamk
TEST=Interactively ran Array.prototype.slice on an Array-like which
exceeded array bounds, and found that this did not check-fail at
runtime as it did before.
Interactively used %AddElements with larger number inputs and
observed it to correctly manipulate objects.
Patch Set 1 #Patch Set 2 : Fix debug assertions #Messages
Total messages: 14 (5 generated)
|