| Index: test/unittests/compiler/arm/instruction-selector-arm-unittest.cc
|
| diff --git a/test/unittests/compiler/arm/instruction-selector-arm-unittest.cc b/test/unittests/compiler/arm/instruction-selector-arm-unittest.cc
|
| index 8534c1c79a72d86a70636ded0f18216c4da24b30..1bc23e6e0aeab7dea31bd0b0b47ea4410ee87558 100644
|
| --- a/test/unittests/compiler/arm/instruction-selector-arm-unittest.cc
|
| +++ b/test/unittests/compiler/arm/instruction-selector-arm-unittest.cc
|
| @@ -1679,6 +1679,36 @@ INSTANTIATE_TEST_CASE_P(InstructionSelectorTest, InstructionSelectorFAITest,
|
| ::testing::ValuesIn(kFAIs));
|
|
|
|
|
| +TEST_F(InstructionSelectorTest, Float32Abs) {
|
| + StreamBuilder m(this, kMachFloat32, kMachFloat32);
|
| + Node* const p0 = m.Parameter(0);
|
| + Node* const n = m.Float32Abs(p0);
|
| + m.Return(n);
|
| + Stream s = m.Build();
|
| + ASSERT_EQ(1U, s.size());
|
| + EXPECT_EQ(kArmVabsF32, s[0]->arch_opcode());
|
| + ASSERT_EQ(1U, s[0]->InputCount());
|
| + EXPECT_EQ(s.ToVreg(p0), s.ToVreg(s[0]->InputAt(0)));
|
| + ASSERT_EQ(1U, s[0]->OutputCount());
|
| + EXPECT_EQ(s.ToVreg(n), s.ToVreg(s[0]->Output()));
|
| +}
|
| +
|
| +
|
| +TEST_F(InstructionSelectorTest, Float64Abs) {
|
| + StreamBuilder m(this, kMachFloat64, kMachFloat64);
|
| + Node* const p0 = m.Parameter(0);
|
| + Node* const n = m.Float64Abs(p0);
|
| + m.Return(n);
|
| + Stream s = m.Build();
|
| + ASSERT_EQ(1U, s.size());
|
| + EXPECT_EQ(kArmVabsF64, s[0]->arch_opcode());
|
| + ASSERT_EQ(1U, s[0]->InputCount());
|
| + EXPECT_EQ(s.ToVreg(p0), s.ToVreg(s[0]->InputAt(0)));
|
| + ASSERT_EQ(1U, s[0]->OutputCount());
|
| + EXPECT_EQ(s.ToVreg(n), s.ToVreg(s[0]->Output()));
|
| +}
|
| +
|
| +
|
| TEST_F(InstructionSelectorTest, Float32AddWithFloat32Mul) {
|
| {
|
| StreamBuilder m(this, kMachFloat32, kMachFloat32, kMachFloat32,
|
|
|