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

Side by Side Diff: test/cctest/test-types.cc

Issue 2309823002: [turbofan] put src/types.[h/cc] into src/compiler/types.[h/cc] (Closed)
Patch Set: Created 4 years, 3 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
OLDNEW
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 #include <vector> 5 #include <vector>
6 6
7 #include "src/crankshaft/hydrogen-types.h" 7 #include "src/crankshaft/hydrogen-types.h"
8 #include "src/factory.h" 8 #include "src/factory.h"
9 #include "src/heap/heap.h" 9 #include "src/heap/heap.h"
10 #include "src/isolate.h" 10 #include "src/isolate.h"
11 // FIXME(mstarzinger, marja): This is weird, but required because of the missing 11 // FIXME(mstarzinger, marja): This is weird, but required because of the missing
12 // (disallowed) include: src/factory.h -> src/objects-inl.h 12 // (disallowed) include: src/factory.h -> src/objects-inl.h
13 #include "src/compiler/types.h"
Michael Starzinger 2016/09/05 14:22:35 nit: Comment above applies to "objects-inl.h", ple
mvstanton 2016/09/05 14:51:41 Done.
13 #include "src/objects-inl.h" 14 #include "src/objects-inl.h"
14 #include "src/types.h"
15 // FIXME(mstarzinger, marja): This is weird, but required because of the missing 15 // FIXME(mstarzinger, marja): This is weird, but required because of the missing
16 // (disallowed) include: src/type-feedback-vector.h -> 16 // (disallowed) include: src/type-feedback-vector.h ->
17 // src/type-feedback-vector-inl.h 17 // src/type-feedback-vector-inl.h
18 #include "src/type-feedback-vector-inl.h" 18 #include "src/type-feedback-vector-inl.h"
19 #include "test/cctest/cctest.h" 19 #include "test/cctest/cctest.h"
20 #include "test/cctest/types-fuzz.h" 20 #include "test/cctest/types-fuzz.h"
21 21
22 using namespace v8::internal; 22 using namespace v8::internal;
23 23
24 namespace { 24 namespace {
(...skipping 1157 matching lines...) Expand 10 before | Expand all | Expand 10 after
1182 1182
1183 TEST(Union3) { Tests().Union3(); } 1183 TEST(Union3) { Tests().Union3(); }
1184 1184
1185 TEST(Union4) { Tests().Union4(); } 1185 TEST(Union4) { Tests().Union4(); }
1186 1186
1187 TEST(Intersect) { Tests().Intersect(); } 1187 TEST(Intersect) { Tests().Intersect(); }
1188 1188
1189 TEST(Distributivity) { Tests().Distributivity(); } 1189 TEST(Distributivity) { Tests().Distributivity(); }
1190 1190
1191 TEST(GetRange) { Tests().GetRange(); } 1191 TEST(GetRange) { Tests().GetRange(); }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698