Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(342)

Unified Diff: runtime/lib/simd128.cc

Issue 51373004: SIMD shuffle API changes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/lib/typed_data.dart » ('j') | runtime/vm/flow_graph_optimizer.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/simd128.cc
diff --git a/runtime/lib/simd128.cc b/runtime/lib/simd128.cc
index 8f3cc3ec0610d836570c65dfa9e36ae0377f9e16..41ab6943717cdc214ec0de7d71054997e063404b 100644
--- a/runtime/lib/simd128.cc
+++ b/runtime/lib/simd128.cc
@@ -280,57 +280,25 @@ DEFINE_NATIVE_ENTRY(Float32x4_shuffle, 2) {
}
-DEFINE_NATIVE_ENTRY(Float32x4_withZWInXY, 2) {
+DEFINE_NATIVE_ENTRY(Float32x4_shuffleMix, 3) {
GET_NON_NULL_NATIVE_ARGUMENT(Float32x4, self, arguments->NativeArgAt(0));
GET_NON_NULL_NATIVE_ARGUMENT(Float32x4, other, arguments->NativeArgAt(1));
- float _x = other.z();
- float _y = other.w();
- float _z = self.z();
- float _w = self.w();
- return Float32x4::New(_x, _y, _z, _w);
-}
-
-
-DEFINE_NATIVE_ENTRY(Float32x4_interleaveXY, 2) {
- GET_NON_NULL_NATIVE_ARGUMENT(Float32x4, self, arguments->NativeArgAt(0));
- GET_NON_NULL_NATIVE_ARGUMENT(Float32x4, other, arguments->NativeArgAt(1));
- float _x = self.x();
- float _y = other.x();
- float _z = self.y();
- float _w = other.y();
- return Float32x4::New(_x, _y, _z, _w);
-}
-
-
-DEFINE_NATIVE_ENTRY(Float32x4_interleaveZW, 2) {
- GET_NON_NULL_NATIVE_ARGUMENT(Float32x4, self, arguments->NativeArgAt(0));
- GET_NON_NULL_NATIVE_ARGUMENT(Float32x4, other, arguments->NativeArgAt(1));
- float _x = self.z();
- float _y = other.z();
- float _z = self.w();
- float _w = other.w();
- return Float32x4::New(_x, _y, _z, _w);
-}
-
-
-DEFINE_NATIVE_ENTRY(Float32x4_interleaveXYPairs, 2) {
- GET_NON_NULL_NATIVE_ARGUMENT(Float32x4, self, arguments->NativeArgAt(0));
- GET_NON_NULL_NATIVE_ARGUMENT(Float32x4, other, arguments->NativeArgAt(1));
- float _x = self.x();
- float _y = self.y();
- float _z = other.x();
- float _w = other.y();
- return Float32x4::New(_x, _y, _z, _w);
-}
-
-
-DEFINE_NATIVE_ENTRY(Float32x4_interleaveZWPairs, 2) {
- GET_NON_NULL_NATIVE_ARGUMENT(Float32x4, self, arguments->NativeArgAt(0));
- GET_NON_NULL_NATIVE_ARGUMENT(Float32x4, other, arguments->NativeArgAt(1));
- float _x = self.z();
- float _y = self.w();
- float _z = other.z();
- float _w = other.w();
+ GET_NON_NULL_NATIVE_ARGUMENT(Integer, mask, arguments->NativeArgAt(2));
+ int64_t m = mask.AsInt64Value();
+ if (m < 0 || m > 255) {
srdjan 2013/11/01 05:51:41 Add parentheses. Please factor the code out into T
Cutch 2013/11/01 07:06:30 Done.
+ const String& error = String::Handle(
+ String::NewFormatted("mask (%" Pd64 ") must be in the range [0..256)",
+ m));
+ const Array& args = Array::Handle(Array::New(1));
+ args.SetAt(0, error);
+ Exceptions::ThrowByType(Exceptions::kRange, args);
+ }
+ float data[4] = { self.x(), self.y(), self.z(), self.w() };
+ float other_data[4] = { other.x(), other.y(), other.z(), other.w() };
+ float _x = data[m & 0x3];
+ float _y = data[(m >> 2) & 0x3];
+ float _z = other_data[(m >> 4) & 0x3];
+ float _w = other_data[(m >> 6) & 0x3];
return Float32x4::New(_x, _y, _z, _w);
}
@@ -552,6 +520,50 @@ DEFINE_NATIVE_ENTRY(Uint32x4_getW, 1) {
}
+DEFINE_NATIVE_ENTRY(Uint32x4_shuffle, 2) {
+ GET_NON_NULL_NATIVE_ARGUMENT(Uint32x4, self, arguments->NativeArgAt(0));
+ GET_NON_NULL_NATIVE_ARGUMENT(Integer, mask, arguments->NativeArgAt(1));
+ int64_t m = mask.AsInt64Value();
+ if (m < 0 || m > 255) {
+ const String& error = String::Handle(
+ String::NewFormatted("mask (%" Pd64 ") must be in the range [0..256)",
+ m));
+ const Array& args = Array::Handle(Array::New(1));
+ args.SetAt(0, error);
+ Exceptions::ThrowByType(Exceptions::kRange, args);
+ }
+ uint32_t data[4] = { self.x(), self.y(), self.z(), self.w() };
+ uint32_t _x = data[m & 0x3];
+ uint32_t _y = data[(m >> 2) & 0x3];
+ uint32_t _z = data[(m >> 4) & 0x3];
+ uint32_t _w = data[(m >> 6) & 0x3];
+ return Uint32x4::New(_x, _y, _z, _w);
+}
+
+
+DEFINE_NATIVE_ENTRY(Uint32x4_shuffleMix, 3) {
+ GET_NON_NULL_NATIVE_ARGUMENT(Uint32x4, self, arguments->NativeArgAt(0));
+ GET_NON_NULL_NATIVE_ARGUMENT(Uint32x4, zw, arguments->NativeArgAt(1));
+ GET_NON_NULL_NATIVE_ARGUMENT(Integer, mask, arguments->NativeArgAt(2));
+ int64_t m = mask.AsInt64Value();
+ if (m < 0 || m > 255) {
+ const String& error = String::Handle(
+ String::NewFormatted("mask (%" Pd64 ") must be in the range [0..256)",
+ m));
+ const Array& args = Array::Handle(Array::New(1));
+ args.SetAt(0, error);
+ Exceptions::ThrowByType(Exceptions::kRange, args);
+ }
+ uint32_t data[4] = { self.x(), self.y(), self.z(), self.w() };
+ uint32_t zw_data[4] = { zw.x(), zw.y(), zw.z(), zw.w() };
+ uint32_t _x = data[m & 0x3];
+ uint32_t _y = data[(m >> 2) & 0x3];
+ uint32_t _z = zw_data[(m >> 4) & 0x3];
+ uint32_t _w = zw_data[(m >> 6) & 0x3];
+ return Uint32x4::New(_x, _y, _z, _w);
+}
+
+
DEFINE_NATIVE_ENTRY(Uint32x4_setX, 2) {
GET_NON_NULL_NATIVE_ARGUMENT(Uint32x4, self, arguments->NativeArgAt(0));
GET_NON_NULL_NATIVE_ARGUMENT(Integer, x, arguments->NativeArgAt(1));
« no previous file with comments | « no previous file | runtime/lib/typed_data.dart » ('j') | runtime/vm/flow_graph_optimizer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698