Index: test/unittests/compiler/arm64/instruction-selector-arm64-unittest.cc |
diff --git a/test/unittests/compiler/arm64/instruction-selector-arm64-unittest.cc b/test/unittests/compiler/arm64/instruction-selector-arm64-unittest.cc |
index 1c638b249e7819c709e9a83d549bb319c5191faa..998601623066957ed24cf4d89352a63e916b7a67 100644 |
--- a/test/unittests/compiler/arm64/instruction-selector-arm64-unittest.cc |
+++ b/test/unittests/compiler/arm64/instruction-selector-arm64-unittest.cc |
@@ -3574,6 +3574,36 @@ TEST_F(InstructionSelectorTest, Float64Min) { |
EXPECT_EQ(s.ToVreg(n), s.ToVreg(s[0]->Output())); |
} |
+TEST_F(InstructionSelectorTest, Float32Neg) { |
+ StreamBuilder m(this, MachineType::Float32(), MachineType::Float32()); |
+ Node* const p0 = m.Parameter(0); |
+ // Don't use m.Float32Neg() as that generates an explicit sub. |
+ Node* const n = m.AddNode(m.machine()->Float32Neg().op(), m.Parameter(0)); |
+ m.Return(n); |
+ Stream s = m.Build(); |
+ ASSERT_EQ(1U, s.size()); |
+ EXPECT_EQ(kArm64Float32Neg, 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, Float64Neg) { |
+ StreamBuilder m(this, MachineType::Float64(), MachineType::Float64()); |
+ Node* const p0 = m.Parameter(0); |
+ // Don't use m.Float64Neg() as that generates an explicit sub. |
+ Node* const n = m.AddNode(m.machine()->Float64Neg().op(), m.Parameter(0)); |
+ m.Return(n); |
+ Stream s = m.Build(); |
+ ASSERT_EQ(1U, s.size()); |
+ EXPECT_EQ(kArm64Float64Neg, 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())); |
+} |
+ |
} // namespace compiler |
} // namespace internal |
} // namespace v8 |