OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 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 | 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 <limits> | 5 #include <limits> |
6 | 6 |
7 #include "src/compiler/control-builders.h" | 7 #include "src/compiler/control-builders.h" |
8 #include "src/compiler/generic-node-inl.h" | 8 #include "src/compiler/generic-node-inl.h" |
9 #include "src/compiler/node-properties-inl.h" | 9 #include "src/compiler/node-properties-inl.h" |
10 #include "src/compiler/pipeline.h" | 10 #include "src/compiler/pipeline.h" |
11 #include "src/compiler/simplified-lowering.h" | 11 #include "src/compiler/simplified-lowering.h" |
12 #include "src/compiler/simplified-node-factory.h" | 12 #include "src/compiler/simplified-node-factory.h" |
13 #include "src/compiler/typer.h" | 13 #include "src/compiler/typer.h" |
14 #include "src/compiler/verifier.h" | 14 #include "src/compiler/verifier.h" |
15 #include "src/execution.h" | 15 #include "src/execution.h" |
16 #include "src/parser.h" | 16 #include "src/parser.h" |
17 #include "src/rewriter.h" | 17 #include "src/rewriter.h" |
18 #include "src/scopes.h" | 18 #include "src/scopes.h" |
19 #include "test/cctest/cctest.h" | 19 #include "test/cctest/cctest.h" |
20 #include "test/cctest/compiler/codegen-tester.h" | 20 #include "test/cctest/compiler/codegen-tester.h" |
21 #include "test/cctest/compiler/graph-builder-tester.h" | 21 #include "test/cctest/compiler/graph-builder-tester.h" |
22 #include "test/cctest/compiler/value-helper.h" | 22 #include "test/cctest/compiler/value-helper.h" |
23 | 23 |
24 using namespace v8::internal; | 24 using namespace v8::internal; |
25 using namespace v8::internal::compiler; | 25 using namespace v8::internal::compiler; |
26 | 26 |
27 template <typename ReturnType> | 27 template <typename ReturnType> |
28 class ChangesLoweringTester : public GraphBuilderTester<ReturnType> { | 28 class ChangesLoweringTester : public GraphBuilderTester<ReturnType> { |
29 public: | 29 public: |
30 explicit ChangesLoweringTester(MachineType p0 = kMachineLast) | 30 explicit ChangesLoweringTester(MachineType p0 = mNone) |
31 : GraphBuilderTester<ReturnType>(p0), | 31 : GraphBuilderTester<ReturnType>(p0), |
32 typer(this->zone()), | 32 typer(this->zone()), |
33 source_positions(this->graph()), | 33 source_positions(this->graph()), |
34 jsgraph(this->graph(), this->common(), &typer), | 34 jsgraph(this->graph(), this->common(), &typer), |
35 lowering(&jsgraph, &source_positions), | 35 lowering(&jsgraph, &source_positions), |
36 function(Handle<JSFunction>::null()) {} | 36 function(Handle<JSFunction>::null()) {} |
37 | 37 |
38 Typer typer; | 38 Typer typer; |
39 SourcePositionTable source_positions; | 39 SourcePositionTable source_positions; |
40 JSGraph jsgraph; | 40 JSGraph jsgraph; |
(...skipping 29 matching lines...) Expand all Loading... |
70 } | 70 } |
71 Handle<Object>* args = NULL; | 71 Handle<Object>* args = NULL; |
72 MaybeHandle<Object> result = | 72 MaybeHandle<Object> result = |
73 Execution::Call(this->isolate(), function, factory()->undefined_value(), | 73 Execution::Call(this->isolate(), function, factory()->undefined_value(), |
74 0, args, false); | 74 0, args, false); |
75 return T::cast(*result.ToHandleChecked()); | 75 return T::cast(*result.ToHandleChecked()); |
76 } | 76 } |
77 | 77 |
78 void StoreFloat64(Node* node, double* ptr) { | 78 void StoreFloat64(Node* node, double* ptr) { |
79 Node* ptr_node = this->PointerConstant(ptr); | 79 Node* ptr_node = this->PointerConstant(ptr); |
80 this->Store(kMachineFloat64, ptr_node, node); | 80 this->Store(mFloat64, ptr_node, node); |
81 } | 81 } |
82 | 82 |
83 Node* LoadInt32(int32_t* ptr) { | 83 Node* LoadInt32(int32_t* ptr) { |
84 Node* ptr_node = this->PointerConstant(ptr); | 84 Node* ptr_node = this->PointerConstant(ptr); |
85 return this->Load(kMachineWord32, ptr_node); | 85 return this->Load(mInt32, ptr_node); |
86 } | 86 } |
87 | 87 |
88 Node* LoadUint32(uint32_t* ptr) { | 88 Node* LoadUint32(uint32_t* ptr) { |
89 Node* ptr_node = this->PointerConstant(ptr); | 89 Node* ptr_node = this->PointerConstant(ptr); |
90 return this->Load(kMachineWord32, ptr_node); | 90 return this->Load(mUint32, ptr_node); |
91 } | 91 } |
92 | 92 |
93 Node* LoadFloat64(double* ptr) { | 93 Node* LoadFloat64(double* ptr) { |
94 Node* ptr_node = this->PointerConstant(ptr); | 94 Node* ptr_node = this->PointerConstant(ptr); |
95 return this->Load(kMachineFloat64, ptr_node); | 95 return this->Load(mFloat64, ptr_node); |
96 } | 96 } |
97 | 97 |
98 void CheckNumber(double expected, Object* number) { | 98 void CheckNumber(double expected, Object* number) { |
99 CHECK(this->isolate()->factory()->NewNumber(expected)->SameValue(number)); | 99 CHECK(this->isolate()->factory()->NewNumber(expected)->SameValue(number)); |
100 } | 100 } |
101 | 101 |
102 void BuildAndLower(Operator* op) { | 102 void BuildAndLower(Operator* op) { |
103 // We build a graph by hand here, because the raw machine assembler | 103 // We build a graph by hand here, because the raw machine assembler |
104 // does not add the correct control and effect nodes. | 104 // does not add the correct control and effect nodes. |
105 Node* p0 = this->Parameter(0); | 105 Node* p0 = this->Parameter(0); |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 Verifier::Run(this->graph()); | 143 Verifier::Run(this->graph()); |
144 } | 144 } |
145 | 145 |
146 Factory* factory() { return this->isolate()->factory(); } | 146 Factory* factory() { return this->isolate()->factory(); } |
147 Heap* heap() { return this->isolate()->heap(); } | 147 Heap* heap() { return this->isolate()->heap(); } |
148 }; | 148 }; |
149 | 149 |
150 | 150 |
151 TEST(RunChangeTaggedToInt32) { | 151 TEST(RunChangeTaggedToInt32) { |
152 // Build and lower a graph by hand. | 152 // Build and lower a graph by hand. |
153 ChangesLoweringTester<int32_t> t(kMachineTagged); | 153 ChangesLoweringTester<int32_t> t(mAnyTagged); |
154 t.BuildAndLower(t.simplified()->ChangeTaggedToInt32()); | 154 t.BuildAndLower(t.simplified()->ChangeTaggedToInt32()); |
155 | 155 |
156 if (Pipeline::SupportedTarget()) { | 156 if (Pipeline::SupportedTarget()) { |
157 FOR_INT32_INPUTS(i) { | 157 FOR_INT32_INPUTS(i) { |
158 int32_t input = *i; | 158 int32_t input = *i; |
159 | 159 |
160 if (Smi::IsValid(input)) { | 160 if (Smi::IsValid(input)) { |
161 int32_t result = t.Call(Smi::FromInt(input)); | 161 int32_t result = t.Call(Smi::FromInt(input)); |
162 CHECK_EQ(input, result); | 162 CHECK_EQ(input, result); |
163 } | 163 } |
164 | 164 |
165 { | 165 { |
166 Handle<Object> number = t.factory()->NewNumber(input); | 166 Handle<Object> number = t.factory()->NewNumber(input); |
167 int32_t result = t.Call(*number); | 167 int32_t result = t.Call(*number); |
168 CHECK_EQ(input, result); | 168 CHECK_EQ(input, result); |
169 } | 169 } |
170 | 170 |
171 { | 171 { |
172 Handle<HeapNumber> number = t.factory()->NewHeapNumber(input); | 172 Handle<HeapNumber> number = t.factory()->NewHeapNumber(input); |
173 int32_t result = t.Call(*number); | 173 int32_t result = t.Call(*number); |
174 CHECK_EQ(input, result); | 174 CHECK_EQ(input, result); |
175 } | 175 } |
176 } | 176 } |
177 } | 177 } |
178 } | 178 } |
179 | 179 |
180 | 180 |
181 TEST(RunChangeTaggedToUint32) { | 181 TEST(RunChangeTaggedToUint32) { |
182 // Build and lower a graph by hand. | 182 // Build and lower a graph by hand. |
183 ChangesLoweringTester<uint32_t> t(kMachineTagged); | 183 ChangesLoweringTester<uint32_t> t(mAnyTagged); |
184 t.BuildAndLower(t.simplified()->ChangeTaggedToUint32()); | 184 t.BuildAndLower(t.simplified()->ChangeTaggedToUint32()); |
185 | 185 |
186 if (Pipeline::SupportedTarget()) { | 186 if (Pipeline::SupportedTarget()) { |
187 FOR_UINT32_INPUTS(i) { | 187 FOR_UINT32_INPUTS(i) { |
188 uint32_t input = *i; | 188 uint32_t input = *i; |
189 | 189 |
190 if (Smi::IsValid(input)) { | 190 if (Smi::IsValid(input)) { |
191 uint32_t result = t.Call(Smi::FromInt(input)); | 191 uint32_t result = t.Call(Smi::FromInt(input)); |
192 CHECK_EQ(static_cast<int32_t>(input), static_cast<int32_t>(result)); | 192 CHECK_EQ(static_cast<int32_t>(input), static_cast<int32_t>(result)); |
193 } | 193 } |
194 | 194 |
195 { | 195 { |
196 Handle<Object> number = t.factory()->NewNumber(input); | 196 Handle<Object> number = t.factory()->NewNumber(input); |
197 uint32_t result = t.Call(*number); | 197 uint32_t result = t.Call(*number); |
198 CHECK_EQ(static_cast<int32_t>(input), static_cast<int32_t>(result)); | 198 CHECK_EQ(static_cast<int32_t>(input), static_cast<int32_t>(result)); |
199 } | 199 } |
200 | 200 |
201 { | 201 { |
202 Handle<HeapNumber> number = t.factory()->NewHeapNumber(input); | 202 Handle<HeapNumber> number = t.factory()->NewHeapNumber(input); |
203 uint32_t result = t.Call(*number); | 203 uint32_t result = t.Call(*number); |
204 CHECK_EQ(static_cast<int32_t>(input), static_cast<int32_t>(result)); | 204 CHECK_EQ(static_cast<int32_t>(input), static_cast<int32_t>(result)); |
205 } | 205 } |
206 } | 206 } |
207 } | 207 } |
208 } | 208 } |
209 | 209 |
210 | 210 |
211 TEST(RunChangeTaggedToFloat64) { | 211 TEST(RunChangeTaggedToFloat64) { |
212 ChangesLoweringTester<int32_t> t(kMachineTagged); | 212 ChangesLoweringTester<int32_t> t(mAnyTagged); |
213 double result; | 213 double result; |
214 | 214 |
215 t.BuildStoreAndLower(t.simplified()->ChangeTaggedToFloat64(), | 215 t.BuildStoreAndLower(t.simplified()->ChangeTaggedToFloat64(), |
216 t.machine()->Store(kMachineFloat64, kNoWriteBarrier), | 216 t.machine()->Store(mFloat64, kNoWriteBarrier), &result); |
217 &result); | |
218 | 217 |
219 if (Pipeline::SupportedTarget()) { | 218 if (Pipeline::SupportedTarget()) { |
220 FOR_INT32_INPUTS(i) { | 219 FOR_INT32_INPUTS(i) { |
221 int32_t input = *i; | 220 int32_t input = *i; |
222 | 221 |
223 if (Smi::IsValid(input)) { | 222 if (Smi::IsValid(input)) { |
224 t.Call(Smi::FromInt(input)); | 223 t.Call(Smi::FromInt(input)); |
225 CHECK_EQ(input, static_cast<int32_t>(result)); | 224 CHECK_EQ(input, static_cast<int32_t>(result)); |
226 } | 225 } |
227 | 226 |
(...skipping 24 matching lines...) Expand all Loading... |
252 Handle<HeapNumber> number = t.factory()->NewHeapNumber(input); | 251 Handle<HeapNumber> number = t.factory()->NewHeapNumber(input); |
253 t.Call(*number); | 252 t.Call(*number); |
254 CHECK_EQ(input, result); | 253 CHECK_EQ(input, result); |
255 } | 254 } |
256 } | 255 } |
257 } | 256 } |
258 } | 257 } |
259 | 258 |
260 | 259 |
261 TEST(RunChangeBoolToBit) { | 260 TEST(RunChangeBoolToBit) { |
262 ChangesLoweringTester<int32_t> t(kMachineTagged); | 261 ChangesLoweringTester<int32_t> t(mAnyTagged); |
263 t.BuildAndLower(t.simplified()->ChangeBoolToBit()); | 262 t.BuildAndLower(t.simplified()->ChangeBoolToBit()); |
264 | 263 |
265 if (Pipeline::SupportedTarget()) { | 264 if (Pipeline::SupportedTarget()) { |
266 Object* true_obj = t.heap()->true_value(); | 265 Object* true_obj = t.heap()->true_value(); |
267 int32_t result = t.Call(true_obj); | 266 int32_t result = t.Call(true_obj); |
268 CHECK_EQ(1, result); | 267 CHECK_EQ(1, result); |
269 } | 268 } |
270 | 269 |
271 if (Pipeline::SupportedTarget()) { | 270 if (Pipeline::SupportedTarget()) { |
272 Object* false_obj = t.heap()->false_value(); | 271 Object* false_obj = t.heap()->false_value(); |
273 int32_t result = t.Call(false_obj); | 272 int32_t result = t.Call(false_obj); |
274 CHECK_EQ(0, result); | 273 CHECK_EQ(0, result); |
275 } | 274 } |
276 } | 275 } |
277 | 276 |
278 | 277 |
279 TEST(RunChangeBitToBool) { | 278 TEST(RunChangeBitToBool) { |
280 ChangesLoweringTester<Object*> t(kMachineWord32); | 279 ChangesLoweringTester<Object*> t(mInt32); |
281 t.BuildAndLower(t.simplified()->ChangeBitToBool()); | 280 t.BuildAndLower(t.simplified()->ChangeBitToBool()); |
282 | 281 |
283 if (Pipeline::SupportedTarget()) { | 282 if (Pipeline::SupportedTarget()) { |
284 Object* result = t.Call(1); | 283 Object* result = t.Call(1); |
285 Object* true_obj = t.heap()->true_value(); | 284 Object* true_obj = t.heap()->true_value(); |
286 CHECK_EQ(true_obj, result); | 285 CHECK_EQ(true_obj, result); |
287 } | 286 } |
288 | 287 |
289 if (Pipeline::SupportedTarget()) { | 288 if (Pipeline::SupportedTarget()) { |
290 Object* result = t.Call(0); | 289 Object* result = t.Call(0); |
(...skipping 14 matching lines...) Expand all Loading... |
305 // TODO(titzer): enable all UI32 -> Tagged checking when inline allocation | 304 // TODO(titzer): enable all UI32 -> Tagged checking when inline allocation |
306 // works. | 305 // works. |
307 return v <= static_cast<uint32_t>(Smi::kMaxValue); | 306 return v <= static_cast<uint32_t>(Smi::kMaxValue); |
308 } | 307 } |
309 | 308 |
310 | 309 |
311 TEST(RunChangeInt32ToTagged) { | 310 TEST(RunChangeInt32ToTagged) { |
312 ChangesLoweringTester<Object*> t; | 311 ChangesLoweringTester<Object*> t; |
313 int32_t input; | 312 int32_t input; |
314 t.BuildLoadAndLower(t.simplified()->ChangeInt32ToTagged(), | 313 t.BuildLoadAndLower(t.simplified()->ChangeInt32ToTagged(), |
315 t.machine()->Load(kMachineWord32), &input); | 314 t.machine()->Load(mInt32), &input); |
316 | 315 |
317 if (Pipeline::SupportedTarget()) { | 316 if (Pipeline::SupportedTarget()) { |
318 FOR_INT32_INPUTS(i) { | 317 FOR_INT32_INPUTS(i) { |
319 input = *i; | 318 input = *i; |
320 Object* result = t.CallWithPotentialGC<Object>(); | 319 Object* result = t.CallWithPotentialGC<Object>(); |
321 if (TODO_INT32_TO_TAGGED_WILL_WORK(input)) { | 320 if (TODO_INT32_TO_TAGGED_WILL_WORK(input)) { |
322 t.CheckNumber(static_cast<double>(input), result); | 321 t.CheckNumber(static_cast<double>(input), result); |
323 } | 322 } |
324 } | 323 } |
325 } | 324 } |
326 | 325 |
327 if (Pipeline::SupportedTarget()) { | 326 if (Pipeline::SupportedTarget()) { |
328 FOR_INT32_INPUTS(i) { | 327 FOR_INT32_INPUTS(i) { |
329 input = *i; | 328 input = *i; |
330 SimulateFullSpace(CcTest::heap()->new_space()); | 329 SimulateFullSpace(CcTest::heap()->new_space()); |
331 Object* result = t.CallWithPotentialGC<Object>(); | 330 Object* result = t.CallWithPotentialGC<Object>(); |
332 if (TODO_INT32_TO_TAGGED_WILL_WORK(input)) { | 331 if (TODO_INT32_TO_TAGGED_WILL_WORK(input)) { |
333 t.CheckNumber(static_cast<double>(input), result); | 332 t.CheckNumber(static_cast<double>(input), result); |
334 } | 333 } |
335 } | 334 } |
336 } | 335 } |
337 } | 336 } |
338 | 337 |
339 | 338 |
340 TEST(RunChangeUint32ToTagged) { | 339 TEST(RunChangeUint32ToTagged) { |
341 ChangesLoweringTester<Object*> t; | 340 ChangesLoweringTester<Object*> t; |
342 uint32_t input; | 341 uint32_t input; |
343 t.BuildLoadAndLower(t.simplified()->ChangeUint32ToTagged(), | 342 t.BuildLoadAndLower(t.simplified()->ChangeUint32ToTagged(), |
344 t.machine()->Load(kMachineWord32), &input); | 343 t.machine()->Load(mUint32), &input); |
345 | 344 |
346 if (Pipeline::SupportedTarget()) { | 345 if (Pipeline::SupportedTarget()) { |
347 FOR_UINT32_INPUTS(i) { | 346 FOR_UINT32_INPUTS(i) { |
348 input = *i; | 347 input = *i; |
349 Object* result = t.CallWithPotentialGC<Object>(); | 348 Object* result = t.CallWithPotentialGC<Object>(); |
350 double expected = static_cast<double>(input); | 349 double expected = static_cast<double>(input); |
351 if (TODO_UINT32_TO_TAGGED_WILL_WORK(input)) { | 350 if (TODO_UINT32_TO_TAGGED_WILL_WORK(input)) { |
352 t.CheckNumber(expected, result); | 351 t.CheckNumber(expected, result); |
353 } | 352 } |
354 } | 353 } |
(...skipping 13 matching lines...) Expand all Loading... |
368 } | 367 } |
369 | 368 |
370 | 369 |
371 // TODO(titzer): lowering of Float64->Tagged needs inline allocation. | 370 // TODO(titzer): lowering of Float64->Tagged needs inline allocation. |
372 #define TODO_FLOAT64_TO_TAGGED false | 371 #define TODO_FLOAT64_TO_TAGGED false |
373 | 372 |
374 TEST(RunChangeFloat64ToTagged) { | 373 TEST(RunChangeFloat64ToTagged) { |
375 ChangesLoweringTester<Object*> t; | 374 ChangesLoweringTester<Object*> t; |
376 double input; | 375 double input; |
377 t.BuildLoadAndLower(t.simplified()->ChangeFloat64ToTagged(), | 376 t.BuildLoadAndLower(t.simplified()->ChangeFloat64ToTagged(), |
378 t.machine()->Load(kMachineFloat64), &input); | 377 t.machine()->Load(mFloat64), &input); |
379 | 378 |
380 // TODO(titzer): need inline allocation to change float to tagged. | 379 // TODO(titzer): need inline allocation to change float to tagged. |
381 if (TODO_FLOAT64_TO_TAGGED && Pipeline::SupportedTarget()) { | 380 if (TODO_FLOAT64_TO_TAGGED && Pipeline::SupportedTarget()) { |
382 FOR_FLOAT64_INPUTS(i) { | 381 FOR_FLOAT64_INPUTS(i) { |
383 input = *i; | 382 input = *i; |
384 Object* result = t.CallWithPotentialGC<Object>(); | 383 Object* result = t.CallWithPotentialGC<Object>(); |
385 t.CheckNumber(input, result); | 384 t.CheckNumber(input, result); |
386 } | 385 } |
387 } | 386 } |
388 | 387 |
389 if (TODO_FLOAT64_TO_TAGGED && Pipeline::SupportedTarget()) { | 388 if (TODO_FLOAT64_TO_TAGGED && Pipeline::SupportedTarget()) { |
390 FOR_FLOAT64_INPUTS(i) { | 389 FOR_FLOAT64_INPUTS(i) { |
391 input = *i; | 390 input = *i; |
392 SimulateFullSpace(CcTest::heap()->new_space()); | 391 SimulateFullSpace(CcTest::heap()->new_space()); |
393 Object* result = t.CallWithPotentialGC<Object>(); | 392 Object* result = t.CallWithPotentialGC<Object>(); |
394 t.CheckNumber(input, result); | 393 t.CheckNumber(input, result); |
395 } | 394 } |
396 } | 395 } |
397 } | 396 } |
OLD | NEW |