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

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

Issue 447443002: Fix ARM64 port after r22876. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 months 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 | « src/compiler/arm64/linkage-arm64.cc ('k') | src/compiler/x64/linkage-x64.cc » ('j') | 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/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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 Operator::Property properties, 98 Operator::Property properties,
99 CallDescriptor::DeoptimizationSupport can_deoptimize) { 99 CallDescriptor::DeoptimizationSupport can_deoptimize) {
100 return GetRuntimeCallDescriptor(function, parameter_count, properties, 100 return GetRuntimeCallDescriptor(function, parameter_count, properties,
101 can_deoptimize, this->info_->zone()); 101 can_deoptimize, this->info_->zone());
102 } 102 }
103 103
104 104
105 //============================================================================== 105 //==============================================================================
106 // Provide unimplemented methods on unsupported architectures, to at least link. 106 // Provide unimplemented methods on unsupported architectures, to at least link.
107 //============================================================================== 107 //==============================================================================
108 #if !V8_TURBOFAN_TARGET 108 #if !V8_TURBOFAN_BACKEND
109 CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone) { 109 CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone) {
110 UNIMPLEMENTED(); 110 UNIMPLEMENTED();
111 return NULL; 111 return NULL;
112 } 112 }
113 113
114 114
115 CallDescriptor* Linkage::GetRuntimeCallDescriptor( 115 CallDescriptor* Linkage::GetRuntimeCallDescriptor(
116 Runtime::FunctionId function, int parameter_count, 116 Runtime::FunctionId function, int parameter_count,
117 Operator::Property properties, 117 Operator::Property properties,
118 CallDescriptor::DeoptimizationSupport can_deoptimize, Zone* zone) { 118 CallDescriptor::DeoptimizationSupport can_deoptimize, Zone* zone) {
119 UNIMPLEMENTED(); 119 UNIMPLEMENTED();
120 return NULL; 120 return NULL;
121 } 121 }
122 122
123 123
124 CallDescriptor* Linkage::GetStubCallDescriptor( 124 CallDescriptor* Linkage::GetStubCallDescriptor(
125 CodeStubInterfaceDescriptor* descriptor, int stack_parameter_count) { 125 CodeStubInterfaceDescriptor* descriptor, int stack_parameter_count) {
126 UNIMPLEMENTED(); 126 UNIMPLEMENTED();
127 return NULL; 127 return NULL;
128 } 128 }
129 129
130 130
131 CallDescriptor* Linkage::GetSimplifiedCDescriptor( 131 CallDescriptor* Linkage::GetSimplifiedCDescriptor(
132 Zone* zone, int num_params, MachineRepresentation return_type, 132 Zone* zone, int num_params, MachineRepresentation return_type,
133 const MachineRepresentation* param_types) { 133 const MachineRepresentation* param_types) {
134 UNIMPLEMENTED(); 134 UNIMPLEMENTED();
135 return NULL; 135 return NULL;
136 } 136 }
137 #endif // !V8_TURBOFAN_TARGET 137 #endif // !V8_TURBOFAN_BACKEND
138 } 138 }
139 } 139 }
140 } // namespace v8::internal::compiler 140 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « src/compiler/arm64/linkage-arm64.cc ('k') | src/compiler/x64/linkage-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698