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 96b8a83eb66ca511f364ed8930d35a821046991b..eee9c58b127ddac04e6439708f3af73c6d0c910d 100644 |
--- a/test/unittests/compiler/arm64/instruction-selector-arm64-unittest.cc |
+++ b/test/unittests/compiler/arm64/instruction-selector-arm64-unittest.cc |
@@ -1229,6 +1229,76 @@ INSTANTIATE_TEST_CASE_P(InstructionSelectorTest, InstructionSelectorShiftTest, |
::testing::ValuesIn(kShiftInstructions)); |
+TEST_F(InstructionSelectorTest, Word64ShlWithChangeInt32ToInt64) { |
+ TRACED_FORRANGE(int64_t, x, 32, 63) { |
+ StreamBuilder m(this, kMachInt64, kMachInt32); |
+ Node* const p0 = m.Parameter(0); |
+ Node* const n = m.Word64Shl(m.ChangeInt32ToInt64(p0), m.Int64Constant(x)); |
+ m.Return(n); |
+ Stream s = m.Build(); |
+ ASSERT_EQ(1U, s.size()); |
+ EXPECT_EQ(kArm64Lsl, s[0]->arch_opcode()); |
+ ASSERT_EQ(2U, s[0]->InputCount()); |
+ EXPECT_EQ(s.ToVreg(p0), s.ToVreg(s[0]->InputAt(0))); |
+ EXPECT_EQ(x, s.ToInt64(s[0]->InputAt(1))); |
+ ASSERT_EQ(1U, s[0]->OutputCount()); |
+ EXPECT_EQ(s.ToVreg(n), s.ToVreg(s[0]->Output())); |
+ } |
+} |
+ |
+ |
+TEST_F(InstructionSelectorTest, Word64ShlWithChangeUint32ToUint64) { |
+ TRACED_FORRANGE(int64_t, x, 32, 63) { |
+ StreamBuilder m(this, kMachInt64, kMachUint32); |
+ Node* const p0 = m.Parameter(0); |
+ Node* const n = m.Word64Shl(m.ChangeUint32ToUint64(p0), m.Int64Constant(x)); |
+ m.Return(n); |
+ Stream s = m.Build(); |
+ ASSERT_EQ(1U, s.size()); |
+ EXPECT_EQ(kArm64Lsl, s[0]->arch_opcode()); |
+ ASSERT_EQ(2U, s[0]->InputCount()); |
+ EXPECT_EQ(s.ToVreg(p0), s.ToVreg(s[0]->InputAt(0))); |
+ EXPECT_EQ(x, s.ToInt64(s[0]->InputAt(1))); |
+ ASSERT_EQ(1U, s[0]->OutputCount()); |
+ EXPECT_EQ(s.ToVreg(n), s.ToVreg(s[0]->Output())); |
+ } |
+} |
+ |
+ |
+TEST_F(InstructionSelectorTest, TruncateInt64ToInt32WithWord64Sar) { |
+ StreamBuilder m(this, kMachInt32, kMachInt64); |
+ Node* const p = m.Parameter(0); |
+ Node* const t = m.TruncateInt64ToInt32(m.Word64Sar(p, m.Int64Constant(32))); |
+ m.Return(t); |
+ Stream s = m.Build(); |
+ ASSERT_EQ(1U, s.size()); |
+ EXPECT_EQ(kArm64Lsr, s[0]->arch_opcode()); |
+ ASSERT_EQ(2U, s[0]->InputCount()); |
+ EXPECT_EQ(s.ToVreg(p), s.ToVreg(s[0]->InputAt(0))); |
+ EXPECT_EQ(32, s.ToInt64(s[0]->InputAt(1))); |
+ ASSERT_EQ(1U, s[0]->OutputCount()); |
+ EXPECT_EQ(s.ToVreg(t), s.ToVreg(s[0]->OutputAt(0))); |
+} |
+ |
+ |
+TEST_F(InstructionSelectorTest, TruncateInt64ToInt32WithWord64Shr) { |
+ TRACED_FORRANGE(int64_t, x, 32, 63) { |
+ StreamBuilder m(this, kMachInt32, kMachInt64); |
+ Node* const p = m.Parameter(0); |
+ Node* const t = m.TruncateInt64ToInt32(m.Word64Shr(p, m.Int64Constant(x))); |
+ m.Return(t); |
+ Stream s = m.Build(); |
+ ASSERT_EQ(1U, s.size()); |
+ EXPECT_EQ(kArm64Lsr, s[0]->arch_opcode()); |
+ ASSERT_EQ(2U, s[0]->InputCount()); |
+ EXPECT_EQ(s.ToVreg(p), s.ToVreg(s[0]->InputAt(0))); |
+ EXPECT_EQ(x, s.ToInt64(s[0]->InputAt(1))); |
+ ASSERT_EQ(1U, s[0]->OutputCount()); |
+ EXPECT_EQ(s.ToVreg(t), s.ToVreg(s[0]->OutputAt(0))); |
+ } |
+} |
+ |
+ |
// ----------------------------------------------------------------------------- |
// Mul and Div instructions. |