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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 default: | 213 default: |
214 return false; | 214 return false; |
215 } | 215 } |
216 } | 216 } |
217 | 217 |
218 | 218 |
219 //============================================================================== | 219 //============================================================================== |
220 // Provide unimplemented methods on unsupported architectures, to at least link. | 220 // Provide unimplemented methods on unsupported architectures, to at least link. |
221 //============================================================================== | 221 //============================================================================== |
222 #if !V8_TURBOFAN_BACKEND | 222 #if !V8_TURBOFAN_BACKEND |
223 CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone) { | 223 CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone, |
| 224 CallDescriptor::Flags flags) { |
224 UNIMPLEMENTED(); | 225 UNIMPLEMENTED(); |
225 return NULL; | 226 return NULL; |
226 } | 227 } |
227 | 228 |
228 | 229 |
229 CallDescriptor* Linkage::GetRuntimeCallDescriptor( | 230 CallDescriptor* Linkage::GetRuntimeCallDescriptor( |
230 Runtime::FunctionId function, int parameter_count, | 231 Runtime::FunctionId function, int parameter_count, |
231 Operator::Properties properties, Zone* zone) { | 232 Operator::Properties properties, Zone* zone) { |
232 UNIMPLEMENTED(); | 233 UNIMPLEMENTED(); |
233 return NULL; | 234 return NULL; |
(...skipping 10 matching lines...) Expand all Loading... |
244 | 245 |
245 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 246 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
246 MachineSignature* sig) { | 247 MachineSignature* sig) { |
247 UNIMPLEMENTED(); | 248 UNIMPLEMENTED(); |
248 return NULL; | 249 return NULL; |
249 } | 250 } |
250 #endif // !V8_TURBOFAN_BACKEND | 251 #endif // !V8_TURBOFAN_BACKEND |
251 } | 252 } |
252 } | 253 } |
253 } // namespace v8::internal::compiler | 254 } // namespace v8::internal::compiler |
OLD | NEW |