• bmeurer's avatar
    [intrinsics] Kill the %_IsMinusZero intrinsic. · 00f7d1f5
    bmeurer authored
    By now only the default %TypedArray%.prototype.sort compare function
    and the JS implementation of SameValueZero were still using the odd
    %_IsMinusZero intrinsic, whose semantics both included a number check
    (actually HeapNumber test) plus testing if the heap number stores the
    special -0 value. In both cases we already know that we deal with
    number so we can reduce it to a simple number test for -0, which can
    be expressed via dividing 1 by that value and checking the sign of
    the result. In case of the compare function, we can be even smarter
    and work with the reciprocal values in case x and y are equal to 0
    (although long term we should probably rewrite the fast case for
    the typed array sorting function in C++ anyway, which will be way,
    way faster than our handwritten callback-style, type-feedback
    polluted JS implementation).
    
    R=yangguo@chromium.org
    
    Review URL: https://codereview.chromium.org/1680783002
    
    Cr-Commit-Position: refs/heads/master@{#33833}
    00f7d1f5
Name
Last commit
Last update
..
OWNERS Loading commit data...
array-iterator.js Loading commit data...
array.js Loading commit data...
arraybuffer.js Loading commit data...
collection-iterator.js Loading commit data...
collection.js Loading commit data...
generator.js Loading commit data...
harmony-atomics.js Loading commit data...
harmony-object-observe.js Loading commit data...
harmony-reflect.js Loading commit data...
harmony-regexp.js Loading commit data...
harmony-sharedarraybuffer.js Loading commit data...
harmony-simd.js Loading commit data...
harmony-species.js Loading commit data...
harmony-unicode-regexps.js Loading commit data...
i18n.js Loading commit data...
iterator-prototype.js Loading commit data...
json.js Loading commit data...
macros.py Loading commit data...
math.js Loading commit data...
messages.js Loading commit data...
object-observe.js Loading commit data...
prologue.js Loading commit data...
promise-extra.js Loading commit data...
promise.js Loading commit data...
proxy.js Loading commit data...
regexp.js Loading commit data...
runtime.js Loading commit data...
spread.js Loading commit data...
string-iterator.js Loading commit data...
string.js Loading commit data...
symbol.js Loading commit data...
templates.js Loading commit data...
typedarray.js Loading commit data...
uri.js Loading commit data...
v8natives.js Loading commit data...
weak-collection.js Loading commit data...