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

Unified Diff: test/cctest/test-simd.cc

Issue 1219943002: Expose SIMD.Float32x4 type to Javascript. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Back out changes to include/v8.h Created 5 years, 5 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 | « test/cctest/test-heap-profiler.cc ('k') | test/mjsunit/harmony/simd.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-simd.cc
diff --git a/test/cctest/test-simd.cc b/test/cctest/test-simd.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e87032df8f9640520655f5fba2d572c241f2642c
--- /dev/null
+++ b/test/cctest/test-simd.cc
@@ -0,0 +1,45 @@
+// Copyright 2015 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "src/v8.h"
+
+#include "src/objects.h"
+#include "src/ostreams.h"
+#include "test/cctest/cctest.h"
+
+using namespace v8::internal;
+
+
+TEST(SameValue) {
+ CcTest::InitializeVM();
+ Isolate* isolate = CcTest::i_isolate();
+ Factory* factory = isolate->factory();
+
+ HandleScope sc(isolate);
+
+ float nan = std::numeric_limits<float>::quiet_NaN();
+
+ Handle<Float32x4> a = factory->NewFloat32x4(0, 0, 0, 0);
+ Handle<Float32x4> b = factory->NewFloat32x4(0, 0, 0, 0);
+ CHECK(a->SameValue(*b));
+ for (int i = 0; i < 4; i++) {
+ a->set_lane(i, nan);
+ CHECK(!a->SameValue(*b));
+ CHECK(!a->SameValueZero(*b));
+ b->set_lane(i, nan);
+ CHECK(a->SameValue(*b));
+ CHECK(a->SameValueZero(*b));
+ a->set_lane(i, -0.0);
+ CHECK(!a->SameValue(*b));
+ b->set_lane(i, 0);
+ CHECK(!a->SameValue(*b));
+ CHECK(a->SameValueZero(*b));
+ b->set_lane(i, -0.0);
+ CHECK(a->SameValue(*b));
+ CHECK(a->SameValueZero(*b));
+
+ a->set_lane(i, 0);
+ b->set_lane(i, 0);
+ }
+}
« no previous file with comments | « test/cctest/test-heap-profiler.cc ('k') | test/mjsunit/harmony/simd.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698