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. | |
6 #define V8_IMMINENT_DEPRECATION_WARNINGS | |
7 | |
8 #include "src/code-stubs.h" | 5 #include "src/code-stubs.h" |
9 #include "src/compiler.h" | 6 #include "src/compiler.h" |
10 #include "src/parsing/parser.h" | 7 #include "src/parsing/parser.h" |
11 #include "src/zone.h" | 8 #include "src/zone.h" |
12 | 9 |
13 #include "src/compiler/common-operator.h" | 10 #include "src/compiler/common-operator.h" |
14 #include "src/compiler/graph.h" | 11 #include "src/compiler/graph.h" |
15 #include "src/compiler/linkage.h" | 12 #include "src/compiler/linkage.h" |
16 #include "src/compiler/machine-operator.h" | 13 #include "src/compiler/machine-operator.h" |
17 #include "src/compiler/node.h" | 14 #include "src/compiler/node.h" |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 } | 108 } |
112 | 109 |
113 | 110 |
114 TEST(TestLinkageStubCall) { | 111 TEST(TestLinkageStubCall) { |
115 // TODO(titzer): test linkage creation for outgoing stub calls. | 112 // TODO(titzer): test linkage creation for outgoing stub calls. |
116 } | 113 } |
117 | 114 |
118 } // namespace compiler | 115 } // namespace compiler |
119 } // namespace internal | 116 } // namespace internal |
120 } // namespace v8 | 117 } // namespace v8 |
OLD | NEW |