OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 // TODO(mythria): Remove this define after this flag is turned on globally | 5 // TODO(mythria): Remove this define after this flag is turned on globally |
6 #define V8_IMMINENT_DEPRECATION_WARNINGS | 6 #define V8_IMMINENT_DEPRECATION_WARNINGS |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "src/hydrogen-types.h" | 10 #include "src/crankshaft/hydrogen-types.h" |
11 #include "src/types.h" | 11 #include "src/types.h" |
12 #include "test/cctest/cctest.h" | 12 #include "test/cctest/cctest.h" |
13 #include "test/cctest/types-fuzz.h" | 13 #include "test/cctest/types-fuzz.h" |
14 | 14 |
15 using namespace v8::internal; | 15 using namespace v8::internal; |
16 | 16 |
17 | 17 |
18 // Testing auxiliaries (breaking the Type abstraction). | 18 // Testing auxiliaries (breaking the Type abstraction). |
19 | 19 |
20 | 20 |
(...skipping 2108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2129 } | 2129 } |
2130 | 2130 |
2131 | 2131 |
2132 TEST(Convert_heap) { HeapTests().Convert<Type, Type*, Zone, ZoneRep>(); } | 2132 TEST(Convert_heap) { HeapTests().Convert<Type, Type*, Zone, ZoneRep>(); } |
2133 | 2133 |
2134 | 2134 |
2135 TEST(HTypeFromType_zone) { ZoneTests().HTypeFromType(); } | 2135 TEST(HTypeFromType_zone) { ZoneTests().HTypeFromType(); } |
2136 | 2136 |
2137 | 2137 |
2138 TEST(HTypeFromType_heap) { HeapTests().HTypeFromType(); } | 2138 TEST(HTypeFromType_heap) { HeapTests().HTypeFromType(); } |
OLD | NEW |