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

Side by Side Diff: test/compiler-unittests/x64/instruction-selector-x64-unittest.cc

Issue 487723002: [turbofan] Add proper conversion operators for int32<->int64. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "test/compiler-unittests/instruction-selector-unittest.h"
6
7 namespace v8 {
8 namespace internal {
9 namespace compiler {
10
11 // -----------------------------------------------------------------------------
12 // Conversions.
13
14
15 TEST_F(InstructionSelectorTest, ChangeInt32ToInt64WithParameter) {
16 StreamBuilder m(this, kMachInt64, kMachInt32);
17 m.Return(m.ChangeInt32ToInt64(m.Parameter(0)));
18 Stream s = m.Build();
19 ASSERT_EQ(1U, s.size());
20 EXPECT_EQ(kX64Movsxlq, s[0]->arch_opcode());
21 }
22
23
24 TEST_F(InstructionSelectorTest, ChangeUint32ToUint64WithParameter) {
25 StreamBuilder m(this, kMachUint64, kMachUint32);
26 m.Return(m.ChangeUint32ToUint64(m.Parameter(0)));
27 Stream s = m.Build();
28 ASSERT_EQ(1U, s.size());
29 EXPECT_EQ(kX64Movl, s[0]->arch_opcode());
30 }
31
32
33 TEST_F(InstructionSelectorTest, TruncateInt64ToInt32WithParameter) {
34 StreamBuilder m(this, kMachInt32, kMachInt64);
35 m.Return(m.TruncateInt64ToInt32(m.Parameter(0)));
36 Stream s = m.Build();
37 ASSERT_EQ(1U, s.size());
38 EXPECT_EQ(kX64Movl, s[0]->arch_opcode());
39 }
40
41 } // namespace compiler
42 } // namespace internal
43 } // namespace v8
OLDNEW
« src/compiler/simplified-lowering.cc ('K') | « test/compiler-unittests/machine-operator-unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698