Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/compiler/linkage.cc

Issue 689113003: Unbreak build fon non-TF targets. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698