| 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/common-operator.h" | 7 #include "src/compiler/common-operator.h" |
| 8 #include "src/compiler/linkage.h" | 8 #include "src/compiler/linkage.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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 | 273 |
| 274 CallDescriptor* Linkage::GetStubCallDescriptor( | 274 CallDescriptor* Linkage::GetStubCallDescriptor( |
| 275 Isolate* isolate, Zone* zone, const CallInterfaceDescriptor& descriptor, | 275 Isolate* isolate, Zone* zone, const CallInterfaceDescriptor& descriptor, |
| 276 int stack_parameter_count, CallDescriptor::Flags flags, | 276 int stack_parameter_count, CallDescriptor::Flags flags, |
| 277 Operator::Properties properties, MachineType return_type) { | 277 Operator::Properties properties, MachineType return_type) { |
| 278 UNIMPLEMENTED(); | 278 UNIMPLEMENTED(); |
| 279 return NULL; | 279 return NULL; |
| 280 } | 280 } |
| 281 | 281 |
| 282 | 282 |
| 283 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | |
| 284 const MachineSignature* sig) { | |
| 285 UNIMPLEMENTED(); | |
| 286 return NULL; | |
| 287 } | |
| 288 #endif // !V8_TURBOFAN_BACKEND | 283 #endif // !V8_TURBOFAN_BACKEND |
| 289 } // namespace compiler | 284 } // namespace compiler |
| 290 } // namespace internal | 285 } // namespace internal |
| 291 } // namespace v8 | 286 } // namespace v8 |
| OLD | NEW |