Comment #23 on issue 4124 by [email protected]: Implement SIMD.js
https://code.google.com/p/v8/issues/detail?id=4124#c23

The following revision refers to this bug:
https://chromium.googlesource.com/v8/v8.git/+/e5ed3bee99807c502fa7d7a367ec401e16d3f773

commit e5ed3bee99807c502fa7d7a367ec401e16d3f773
Author: bbudge <[email protected]>
Date: Wed Jul 15 19:16:52 2015

Expose SIMD.Float32x4 type to Javascript.
This CL exposes the constructor function, defines type related
information, and implements value type semantics.
It also refactors test/mjsunit/samevalue.js to test SameValue and SameValueZero.

TEST=test/mjsunit/harmony/simd.js, test/cctest/test-simd.cc

LOG=Y
BUG=v8:4124

Review URL: https://codereview.chromium.org/1219943002

Cr-Commit-Position: refs/heads/master@{#29689}

[modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/BUILD.gn
[modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/include/v8.h [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/arm/code-stubs-arm.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/arm/full-codegen-arm.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/arm/lithium-codegen-arm.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/arm64/code-stubs-arm64.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/arm64/full-codegen-arm64.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/arm64/lithium-codegen-arm64.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/bootstrapper.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/code-stubs-hydrogen.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/code-stubs.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/code-stubs.h [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/contexts.h [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/flag-definitions.h [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/globals.h [add] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/harmony-simd.js [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/heap/heap.h [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/hydrogen-instructions.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/ia32/code-stubs-ia32.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/ia32/full-codegen-ia32.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/ia32/lithium-codegen-ia32.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/ic/handler-compiler.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/ic/ic-inl.h [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/macros.py [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/messages.h [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/messages.js [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/mips/code-stubs-mips.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/mips/full-codegen-mips.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/mips/lithium-codegen-mips.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/mips64/code-stubs-mips64.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/mips64/full-codegen-mips64.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/mips64/lithium-codegen-mips64.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/objects-inl.h [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/objects.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/objects.h [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/ppc/code-stubs-ppc.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/ppc/full-codegen-ppc.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/ppc/lithium-codegen-ppc.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/runtime.js [add] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/runtime/runtime-simd.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/runtime/runtime.h [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/type-info.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/types.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/x64/code-stubs-x64.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/x64/full-codegen-x64.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/x64/lithium-codegen-x64.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/x87/code-stubs-x87.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/x87/full-codegen-x87.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/src/x87/lithium-codegen-x87.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/test/cctest/cctest.gyp [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/test/cctest/test-heap-profiler.cc [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/test/cctest/test-heap.cc [add] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/test/cctest/test-simd.cc [add] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/test/mjsunit/harmony/simd.js [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/test/mjsunit/messages.js [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/test/mjsunit/samevalue.js [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/test/simdjs/harness-adapt.js [modify] http://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773/tools/gyp/v8.gyp


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to