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 #include "src/code-stubs.h" | 5 #include "src/code-stubs.h" |
6 #include "src/compiler.h" | 6 #include "src/compiler.h" |
7 #include "src/compiler/linkage.h" | 7 #include "src/compiler/linkage.h" |
8 #include "src/compiler/node.h" | 8 #include "src/compiler/node.h" |
9 #include "src/compiler/pipeline.h" | 9 #include "src/compiler/pipeline.h" |
10 #include "src/scopes.h" | 10 #include "src/scopes.h" |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 return NULL; | 196 return NULL; |
197 } | 197 } |
198 | 198 |
199 | 199 |
200 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 200 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
201 const MachineSignature* sig) { | 201 const MachineSignature* sig) { |
202 UNIMPLEMENTED(); | 202 UNIMPLEMENTED(); |
203 return NULL; | 203 return NULL; |
204 } | 204 } |
205 #endif // !V8_TURBOFAN_BACKEND | 205 #endif // !V8_TURBOFAN_BACKEND |
206 } | 206 } // namespace compiler |
207 } | 207 } // namespace internal |
208 } // namespace v8::internal::compiler | 208 } // namespace v8 |
OLD | NEW |