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 // TODO(jochen): Remove this after the setting is turned on globally. | 5 // TODO(jochen): Remove this after the setting is turned on globally. |
6 #define V8_IMMINENT_DEPRECATION_WARNINGS | 6 #define V8_IMMINENT_DEPRECATION_WARNINGS |
7 | 7 |
8 #include "src/v8.h" | |
9 | |
10 #include "src/code-stubs.h" | 8 #include "src/code-stubs.h" |
11 #include "src/compiler.h" | 9 #include "src/compiler.h" |
12 #include "src/parser.h" | 10 #include "src/parser.h" |
13 #include "src/zone.h" | 11 #include "src/zone.h" |
14 | 12 |
15 #include "src/compiler/common-operator.h" | 13 #include "src/compiler/common-operator.h" |
16 #include "src/compiler/graph.h" | 14 #include "src/compiler/graph.h" |
17 #include "src/compiler/linkage.h" | 15 #include "src/compiler/linkage.h" |
18 #include "src/compiler/machine-operator.h" | 16 #include "src/compiler/machine-operator.h" |
19 #include "src/compiler/node.h" | 17 #include "src/compiler/node.h" |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 106 |
109 | 107 |
110 TEST(TestLinkageRuntimeCall) { | 108 TEST(TestLinkageRuntimeCall) { |
111 // TODO(titzer): test linkage creation for outgoing runtime calls. | 109 // TODO(titzer): test linkage creation for outgoing runtime calls. |
112 } | 110 } |
113 | 111 |
114 | 112 |
115 TEST(TestLinkageStubCall) { | 113 TEST(TestLinkageStubCall) { |
116 // TODO(titzer): test linkage creation for outgoing stub calls. | 114 // TODO(titzer): test linkage creation for outgoing stub calls. |
117 } | 115 } |
OLD | NEW |