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

Side by Side Diff: test/unittests/runtime/runtime-interpreter-unittest.cc

Issue 1925463003: [turbofan] Don't use the CompareIC in JSGenericLowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@5.0
Patch Set: Created 4 years, 8 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
« no previous file with comments | « test/mjsunit/undetectable-compare.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/factory.h" 7 #include "src/factory.h"
8 #include "src/heap/heap.h" 8 #include "src/heap/heap.h"
9 #include "src/heap/heap-inl.h" 9 #include "src/heap/heap-inl.h"
10 #include "src/runtime/runtime.h" 10 #include "src/runtime/runtime.h"
11 #include "test/unittests/test-utils.h" 11 #include "test/unittests/test-utils.h"
12 12
13 namespace v8 { 13 namespace v8 {
14 namespace internal { 14 namespace internal {
15 namespace interpreter { 15 namespace interpreter {
16 16
17 class RuntimeInterpreterTest : public TestWithIsolateAndZone { 17 class RuntimeInterpreterTest : public TestWithIsolateAndZone {
18 public: 18 public:
19 typedef Object* (*RuntimeMethod)(int, Object**, Isolate*); 19 typedef Object* (*RuntimeMethod)(int, Object**, Isolate*);
20 20
21 RuntimeInterpreterTest() {} 21 RuntimeInterpreterTest() {}
22 ~RuntimeInterpreterTest() override {} 22 ~RuntimeInterpreterTest() override {}
23 23
24 bool TestOperatorWithObjects(RuntimeMethod method, Handle<Object> lhs, 24 bool TestOperatorWithObjects(RuntimeMethod method, Handle<Object> lhs,
25 Handle<Object> rhs, bool expected); 25 Handle<Object> rhs, bool expected);
26 bool TestOperator(RuntimeMethod method, int32_t lhs, int32_t rhs,
27 bool expected);
28 bool TestOperator(RuntimeMethod method, double lhs, double rhs,
29 bool expected);
30 bool TestOperator(RuntimeMethod method, const char* lhs, const char* rhs,
31 bool expected);
32 }; 26 };
33 27
34 28
35 bool RuntimeInterpreterTest::TestOperatorWithObjects(RuntimeMethod method, 29 bool RuntimeInterpreterTest::TestOperatorWithObjects(RuntimeMethod method,
36 Handle<Object> lhs, 30 Handle<Object> lhs,
37 Handle<Object> rhs, 31 Handle<Object> rhs,
38 bool expected) { 32 bool expected) {
39 Object* args_object[] = {*rhs, *lhs}; 33 Object* args_object[] = {*rhs, *lhs};
40 Handle<Object> result = 34 Handle<Object> result =
41 handle(method(2, &args_object[1], isolate()), isolate()); 35 handle(method(2, &args_object[1], isolate()), isolate());
42 CHECK(result->IsTrue() || result->IsFalse()); 36 CHECK(result->IsTrue() || result->IsFalse());
43 return result->IsTrue() == expected; 37 return result->IsTrue() == expected;
44 } 38 }
45 39
46 40
47 bool RuntimeInterpreterTest::TestOperator(RuntimeMethod method, int32_t lhs,
48 int32_t rhs, bool expected) {
49 Handle<Object> x = isolate()->factory()->NewNumberFromInt(lhs);
50 Handle<Object> y = isolate()->factory()->NewNumberFromInt(rhs);
51 return TestOperatorWithObjects(method, x, y, expected);
52 }
53
54
55 bool RuntimeInterpreterTest::TestOperator(RuntimeMethod method, double lhs,
56 double rhs, bool expected) {
57 Handle<Object> x = isolate()->factory()->NewNumber(lhs);
58 Handle<Object> y = isolate()->factory()->NewNumber(rhs);
59 CHECK_EQ(HeapNumber::cast(*x)->value(), lhs);
60 CHECK_EQ(HeapNumber::cast(*y)->value(), rhs);
61 return TestOperatorWithObjects(method, x, y, expected);
62 }
63
64
65 bool RuntimeInterpreterTest::TestOperator(RuntimeMethod method, const char* lhs,
66 const char* rhs, bool expected) {
67 Handle<Object> x = isolate()->factory()->NewStringFromAsciiChecked(lhs);
68 Handle<Object> y = isolate()->factory()->NewStringFromAsciiChecked(rhs);
69 return TestOperatorWithObjects(method, x, y, expected);
70 }
71
72
73 TEST_F(RuntimeInterpreterTest, TestOperatorsWithIntegers) {
74 int32_t inputs[] = {kMinInt, Smi::kMinValue, -17, -1, 0, 1,
75 991, Smi::kMaxValue, kMaxInt};
76 TRACED_FOREACH(int, lhs, inputs) {
77 TRACED_FOREACH(int, rhs, inputs) {
78 #define INTEGER_OPERATOR_CHECK(r, op, x, y) \
79 CHECK(TestOperator(Runtime_Interpreter##r, x, y, x op y))
80 INTEGER_OPERATOR_CHECK(Equals, ==, lhs, rhs);
81 INTEGER_OPERATOR_CHECK(NotEquals, !=, lhs, rhs);
82 INTEGER_OPERATOR_CHECK(StrictEquals, ==, lhs, rhs);
83 INTEGER_OPERATOR_CHECK(StrictNotEquals, !=, lhs, rhs);
84 INTEGER_OPERATOR_CHECK(LessThan, <, lhs, rhs);
85 INTEGER_OPERATOR_CHECK(GreaterThan, >, lhs, rhs);
86 INTEGER_OPERATOR_CHECK(LessThanOrEqual, <=, lhs, rhs);
87 INTEGER_OPERATOR_CHECK(GreaterThanOrEqual, >=, lhs, rhs);
88 #undef INTEGER_OPERATOR_CHECK
89 }
90 }
91 }
92
93
94 TEST_F(RuntimeInterpreterTest, TestOperatorsWithDoubles) {
95 double inputs[] = {std::numeric_limits<double>::min(),
96 std::numeric_limits<double>::max(),
97 -0.001,
98 0.01,
99 3.14,
100 -6.02214086e23};
101 TRACED_FOREACH(double, lhs, inputs) {
102 TRACED_FOREACH(double, rhs, inputs) {
103 #define DOUBLE_OPERATOR_CHECK(r, op, x, y) \
104 CHECK(TestOperator(Runtime_Interpreter##r, x, y, x op y))
105 DOUBLE_OPERATOR_CHECK(Equals, ==, lhs, rhs);
106 DOUBLE_OPERATOR_CHECK(NotEquals, !=, lhs, rhs);
107 DOUBLE_OPERATOR_CHECK(StrictEquals, ==, lhs, rhs);
108 DOUBLE_OPERATOR_CHECK(StrictNotEquals, !=, lhs, rhs);
109 DOUBLE_OPERATOR_CHECK(LessThan, <, lhs, rhs);
110 DOUBLE_OPERATOR_CHECK(GreaterThan, >, lhs, rhs);
111 DOUBLE_OPERATOR_CHECK(LessThanOrEqual, <=, lhs, rhs);
112 DOUBLE_OPERATOR_CHECK(GreaterThanOrEqual, >=, lhs, rhs);
113 #undef DOUBLE_OPERATOR_CHECK
114 }
115 }
116 }
117
118
119 TEST_F(RuntimeInterpreterTest, TestOperatorsWithString) {
120 const char* inputs[] = {"abc", "a", "def", "0"};
121 TRACED_FOREACH(const char*, lhs, inputs) {
122 TRACED_FOREACH(const char*, rhs, inputs) {
123 #define STRING_OPERATOR_CHECK(r, op, x, y) \
124 CHECK(TestOperator(Runtime_Interpreter##r, x, y, \
125 std::string(x) op std::string(y)))
126 STRING_OPERATOR_CHECK(Equals, ==, lhs, rhs);
127 STRING_OPERATOR_CHECK(NotEquals, !=, lhs, rhs);
128 STRING_OPERATOR_CHECK(StrictEquals, ==, lhs, rhs);
129 STRING_OPERATOR_CHECK(StrictNotEquals, !=, lhs, rhs);
130 STRING_OPERATOR_CHECK(LessThan, <, lhs, rhs);
131 STRING_OPERATOR_CHECK(GreaterThan, >, lhs, rhs);
132 STRING_OPERATOR_CHECK(LessThanOrEqual, <=, lhs, rhs);
133 STRING_OPERATOR_CHECK(GreaterThanOrEqual, >=, lhs, rhs);
134 #undef STRING_OPERATOR_CHECK
135 }
136 }
137 }
138
139
140 TEST_F(RuntimeInterpreterTest, ToBoolean) { 41 TEST_F(RuntimeInterpreterTest, ToBoolean) {
141 double quiet_nan = std::numeric_limits<double>::quiet_NaN(); 42 double quiet_nan = std::numeric_limits<double>::quiet_NaN();
142 std::pair<Handle<Object>, bool> cases[] = { 43 std::pair<Handle<Object>, bool> cases[] = {
143 std::make_pair(isolate()->factory()->NewNumberFromInt(0), false), 44 std::make_pair(isolate()->factory()->NewNumberFromInt(0), false),
144 std::make_pair(isolate()->factory()->NewNumberFromInt(1), true), 45 std::make_pair(isolate()->factory()->NewNumberFromInt(1), true),
145 std::make_pair(isolate()->factory()->NewNumberFromInt(100), true), 46 std::make_pair(isolate()->factory()->NewNumberFromInt(100), true),
146 std::make_pair(isolate()->factory()->NewNumberFromInt(-1), true), 47 std::make_pair(isolate()->factory()->NewNumberFromInt(-1), true),
147 std::make_pair(isolate()->factory()->NewNumber(7.7), true), 48 std::make_pair(isolate()->factory()->NewNumber(7.7), true),
148 std::make_pair(isolate()->factory()->NewNumber(0.00001), true), 49 std::make_pair(isolate()->factory()->NewNumber(0.00001), true),
149 std::make_pair(isolate()->factory()->NewNumber(quiet_nan), false), 50 std::make_pair(isolate()->factory()->NewNumber(quiet_nan), false),
(...skipping 13 matching lines...) Expand all
163 Runtime_InterpreterToBoolean(1, &args_object[0], isolate()), isolate()); 64 Runtime_InterpreterToBoolean(1, &args_object[0], isolate()), isolate());
164 CHECK(result->IsBoolean()); 65 CHECK(result->IsBoolean());
165 CHECK_EQ(result->IsTrue(), value_expected_tuple.second); 66 CHECK_EQ(result->IsTrue(), value_expected_tuple.second);
166 } 67 }
167 } 68 }
168 69
169 70
170 } // namespace interpreter 71 } // namespace interpreter
171 } // namespace internal 72 } // namespace internal
172 } // namespace v8 73 } // namespace v8
OLDNEW
« no previous file with comments | « test/mjsunit/undetectable-compare.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698