| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 Zone* zone, Runtime::FunctionId function, int parameter_count, | 168 Zone* zone, Runtime::FunctionId function, int parameter_count, |
| 169 Operator::Properties properties) { | 169 Operator::Properties properties) { |
| 170 UNIMPLEMENTED(); | 170 UNIMPLEMENTED(); |
| 171 return NULL; | 171 return NULL; |
| 172 } | 172 } |
| 173 | 173 |
| 174 | 174 |
| 175 CallDescriptor* Linkage::GetStubCallDescriptor( | 175 CallDescriptor* Linkage::GetStubCallDescriptor( |
| 176 Isolate* isolate, Zone* zone, const CallInterfaceDescriptor& descriptor, | 176 Isolate* isolate, Zone* zone, const CallInterfaceDescriptor& descriptor, |
| 177 int stack_parameter_count, CallDescriptor::Flags flags, | 177 int stack_parameter_count, CallDescriptor::Flags flags, |
| 178 Operator::Properties properties) { | 178 Operator::Properties properties, MachineType return_type) { |
| 179 UNIMPLEMENTED(); | 179 UNIMPLEMENTED(); |
| 180 return NULL; | 180 return NULL; |
| 181 } | 181 } |
| 182 | 182 |
| 183 | 183 |
| 184 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 184 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
| 185 const MachineSignature* sig) { | 185 const MachineSignature* sig) { |
| 186 UNIMPLEMENTED(); | 186 UNIMPLEMENTED(); |
| 187 return NULL; | 187 return NULL; |
| 188 } | 188 } |
| 189 #endif // !V8_TURBOFAN_BACKEND | 189 #endif // !V8_TURBOFAN_BACKEND |
| 190 } | 190 } |
| 191 } | 191 } |
| 192 } // namespace v8::internal::compiler | 192 } // namespace v8::internal::compiler |
| OLD | NEW |