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