|
|
Add all SIMD.float32x4 functions that can be implemented without the other SIMD types.
constructor, splat constructor
check
extractLane, replaceLane
abs, neg, sqrt, reciprocalApproximation, reciprocalSqrtApproximation
add, sub, mul, div, min, max, minNum, maxNum
swizzle, shuffle
Includes a patch to the test harness for console.log output.
LOG=N
BUG= v8:4124
Total comments: 3
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+1032 lines, -41 lines) |
Patch |
 |
M |
BUILD.gn
|
View
|
1
2
3
4
5
6
7
|
2 chunks |
+3 lines, -1 line |
0 comments
|
Download
|
 |
M |
include/v8.h
|
View
|
1
2
3
4
5
6
7
|
6 chunks |
+51 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/api.h
|
View
|
1
2
3
4
5
6
7
|
3 chunks |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/api.cc
|
View
|
1
2
3
4
5
6
7
|
6 chunks |
+57 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/bootstrapper.cc
|
View
|
1
2
3
4
5
6
7
8
|
4 chunks |
+26 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/code-stubs.h
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
src/code-stubs.cc
|
View
|
1
2
3
4
5
6
7
8
|
3 chunks |
+8 lines, -4 lines |
0 comments
|
Download
|
 |
M |
src/code-stubs-hydrogen.cc
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+20 lines, -12 lines |
0 comments
|
Download
|
 |
M |
src/contexts.h
|
View
|
1
2
3
4
5
6
7
|
2 chunks |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/flag-definitions.h
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/globals.h
|
View
|
1
2
3
4
5
|
1 chunk |
+0 lines, -1 line |
0 comments
|
Download
|
 |
A |
src/harmony-simd.js
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+171 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/heap-snapshot-generator.cc
|
View
|
1
2
3
4
5
|
1 chunk |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/heap/heap.h
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/hydrogen-instructions.cc
|
View
|
1
2
3
4
5
6
7
|
2 chunks |
+4 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/ia32/code-stubs-ia32.cc
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+3 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/ia32/full-codegen-ia32.cc
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/ia32/lithium-codegen-ia32.cc
|
View
|
1
2
3
4
5
6
7
8
|
2 chunks |
+11 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/ic/handler-compiler.cc
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/ic/ic-inl.h
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/macros.py
|
View
|
1
2
3
4
5
6
7
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/messages.h
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
src/messages.js
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
src/mirror-debugger.js
|
View
|
1
2
3
4
5
6
7
|
7 chunks |
+32 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/objects.h
|
View
|
1
2
3
4
5
6
7
|
4 chunks |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
src/objects.cc
|
View
|
1
2
3
4
5
6
7
|
3 chunks |
+6 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/objects-inl.h
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+3 lines, -9 lines |
0 comments
|
Download
|
 |
M |
src/runtime.js
|
View
|
1
2
3
4
5
6
7
8
|
9 chunks |
+10 lines, -6 lines |
0 comments
|
Download
|
 |
M |
src/runtime/runtime.h
|
View
|
1
2
3
4
5
6
7
|
2 chunks |
+24 lines, -0 lines |
0 comments
|
Download
|
 |
A |
src/runtime/runtime-simd.cc
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+298 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/type-info.cc
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/types.cc
|
View
|
1
2
3
4
5
6
7
|
2 chunks |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
A |
test/mjsunit/harmony/simd.js
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+258 lines, -0 lines |
0 comments
|
Download
|
 |
M |
test/mjsunit/messages.js
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+5 lines, -0 lines |
0 comments
|
Download
|
 |
M |
test/simdjs/harness-adapt.js
|
View
|
|
1 chunk |
+5 lines, -0 lines |
0 comments
|
Download
|
 |
M |
tools/gyp/v8.gyp
|
View
|
1
2
3
4
5
6
7
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
Total messages: 10 (8 generated)
|