| 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/compiler/linkage.h" | 5 #include "src/compiler/linkage.h" |
| 6 | 6 |
| 7 #include "src/code-stubs.h" | 7 #include "src/code-stubs.h" |
| 8 #include "src/compiler.h" | 8 #include "src/compiler.h" |
| 9 #include "src/compiler/node.h" | 9 #include "src/compiler/node.h" |
| 10 #include "src/compiler/pipeline.h" | 10 #include "src/compiler/pipeline.h" |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 | 123 |
| 124 CallDescriptor* Linkage::GetStubCallDescriptor( | 124 CallDescriptor* Linkage::GetStubCallDescriptor( |
| 125 CodeStubInterfaceDescriptor* descriptor, int stack_parameter_count) { | 125 CodeStubInterfaceDescriptor* descriptor, int stack_parameter_count) { |
| 126 UNIMPLEMENTED(); | 126 UNIMPLEMENTED(); |
| 127 return NULL; | 127 return NULL; |
| 128 } | 128 } |
| 129 | 129 |
| 130 | 130 |
| 131 CallDescriptor* Linkage::GetSimplifiedCDescriptor( | 131 CallDescriptor* Linkage::GetSimplifiedCDescriptor( |
| 132 Zone* zone, int num_params, MachineRepresentation return_type, | 132 Zone* zone, int num_params, MachineRepresentation return_type, |
| 133 MachineRepresentation* param_types) { | 133 const MachineRepresentation* param_types) { |
| 134 UNIMPLEMENTED(); | 134 UNIMPLEMENTED(); |
| 135 return NULL; | 135 return NULL; |
| 136 } | 136 } |
| 137 #endif // !V8_TURBOFAN_TARGET | 137 #endif // !V8_TURBOFAN_TARGET |
| 138 } | 138 } |
| 139 } | 139 } |
| 140 } // namespace v8::internal::compiler | 140 } // namespace v8::internal::compiler |
| OLD | NEW |