v8/test/cctest/test-simd.cc
bbudge 6113058427 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

Committed: https://crrev.com/e5ed3bee99807c502fa7d7a367ec401e16d3f773
Cr-Commit-Position: refs/heads/master@{#29689}

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

Cr-Commit-Position: refs/heads/master@{#29712}
2015-07-16 19:43:32 +00:00

46 lines
1.1 KiB
C++

// 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);
}
}