| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 148 |
| 149 | 149 |
| 150 CallDescriptor* Linkage::GetStubCallDescriptor( | 150 CallDescriptor* Linkage::GetStubCallDescriptor( |
| 151 CodeStubInterfaceDescriptor* descriptor, int stack_parameter_count, | 151 CodeStubInterfaceDescriptor* descriptor, int stack_parameter_count, |
| 152 CallDescriptor::Flags flags, Zone* zone) { | 152 CallDescriptor::Flags flags, Zone* zone) { |
| 153 UNIMPLEMENTED(); | 153 UNIMPLEMENTED(); |
| 154 return NULL; | 154 return NULL; |
| 155 } | 155 } |
| 156 | 156 |
| 157 | 157 |
| 158 CallDescriptor* Linkage::GetSimplifiedCDescriptor( | 158 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
| 159 Zone* zone, int num_params, MachineType return_type, | 159 MachineSignature* sig) { |
| 160 const MachineType* param_types) { | |
| 161 UNIMPLEMENTED(); | 160 UNIMPLEMENTED(); |
| 162 return NULL; | 161 return NULL; |
| 163 } | 162 } |
| 164 #endif // !V8_TURBOFAN_BACKEND | 163 #endif // !V8_TURBOFAN_BACKEND |
| 165 } | 164 } |
| 166 } | 165 } |
| 167 } // namespace v8::internal::compiler | 166 } // namespace v8::internal::compiler |
| OLD | NEW |