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 <functional> | 5 #include <functional> |
6 #include <limits> | 6 #include <limits> |
7 | 7 |
8 #include "src/base/bits.h" | 8 #include "src/base/bits.h" |
| 9 #include "src/codegen.h" |
9 #include "src/compiler/generic-node-inl.h" | 10 #include "src/compiler/generic-node-inl.h" |
10 #include "test/cctest/cctest.h" | 11 #include "test/cctest/cctest.h" |
11 #include "test/cctest/compiler/codegen-tester.h" | 12 #include "test/cctest/compiler/codegen-tester.h" |
12 #include "test/cctest/compiler/value-helper.h" | 13 #include "test/cctest/compiler/value-helper.h" |
13 | 14 |
14 #if V8_TURBOFAN_TARGET | 15 #if V8_TURBOFAN_TARGET |
15 | 16 |
16 using namespace v8::base; | 17 using namespace v8::base; |
17 | 18 |
18 #define CHECK_UINT32_EQ(x, y) \ | 19 #define CHECK_UINT32_EQ(x, y) \ |
(...skipping 4510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4529 float actual = *i; | 4530 float actual = *i; |
4530 RawMachineAssemblerTester<int32_t> m; | 4531 RawMachineAssemblerTester<int32_t> m; |
4531 m.StoreToPointer(&actual, kMachFloat32, m.Float32Constant(expected)); | 4532 m.StoreToPointer(&actual, kMachFloat32, m.Float32Constant(expected)); |
4532 m.Return(m.Int32Constant(0)); | 4533 m.Return(m.Int32Constant(0)); |
4533 CHECK_EQ(0, m.Call()); | 4534 CHECK_EQ(0, m.Call()); |
4534 CHECK_EQ(expected, actual); | 4535 CHECK_EQ(expected, actual); |
4535 } | 4536 } |
4536 } | 4537 } |
4537 | 4538 |
4538 #endif // V8_TURBOFAN_TARGET | 4539 #endif // V8_TURBOFAN_TARGET |
OLD | NEW |