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

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

commit 7b9670b63b486ba3b6f8a569552d307282dbccfd
Author: bbudge <[email protected]>
Date: Mon Aug 03 13:02:39 2015

SIMD.js Add the other SIMD Phase 1 types.

Adds Int32x4, Bool32x4, Int16x8, Bool16x8, Int8x16, Bool8x16.
Adds Simd128Value base heap object class.
Changes heap/factory construction pattern to use arrays.
Adds replaceLane functions to facilitate testing.

NOPRESUBMIT=true
(presubmit checks erroneously interpret array declaration in macro definition as variable size array.)

LOG=Y
BUG=v8:4124

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

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

[modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/include/v8.h [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/arm/code-stubs-arm.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/arm/lithium-codegen-arm.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/arm64/code-stubs-arm64.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/arm64/lithium-codegen-arm64.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/bootstrapper.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/code-stubs-hydrogen.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/code-stubs.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/contexts.h [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/factory.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/factory.h [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/full-codegen/arm/full-codegen-arm.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/full-codegen/arm64/full-codegen-arm64.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/full-codegen/full-codegen.h [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/full-codegen/ia32/full-codegen-ia32.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/full-codegen/mips/full-codegen-mips.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/full-codegen/mips64/full-codegen-mips64.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/full-codegen/ppc/full-codegen-ppc.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/full-codegen/x64/full-codegen-x64.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/full-codegen/x87/full-codegen-x87.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/harmony-simd.js [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/heap-snapshot-generator.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/heap/heap.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/heap/heap.h [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/heap/objects-visiting.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/hydrogen-instructions.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/ia32/code-stubs-ia32.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/ia32/lithium-codegen-ia32.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/ic/handler-compiler.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/ic/ic-inl.h [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/macros.py [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/messages.js [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/mips/code-stubs-mips.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/mips/lithium-codegen-mips.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/mips64/code-stubs-mips64.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/mips64/lithium-codegen-mips64.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/objects-debug.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/objects-inl.h [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/objects-printer.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/objects.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/objects.h [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/ppc/code-stubs-ppc.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/ppc/lithium-codegen-ppc.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/runtime.js [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/runtime/runtime-simd.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/runtime/runtime.h [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/types.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/utils.h [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/x64/code-stubs-x64.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/x64/lithium-codegen-x64.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/x87/code-stubs-x87.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/src/x87/lithium-codegen-x87.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/test/cctest/test-heap-profiler.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/test/cctest/test-heap.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/test/cctest/test-simd.cc [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/test/mjsunit/harmony/simd.js [modify] http://crrev.com/7b9670b63b486ba3b6f8a569552d307282dbccfd/test/simdjs/harness-adapt.js


--
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