| 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 #ifndef V8_COMPILER_LINKAGE_H_ | 5 #ifndef V8_COMPILER_LINKAGE_H_ |
| 6 #define V8_COMPILER_LINKAGE_H_ | 6 #define V8_COMPILER_LINKAGE_H_ |
| 7 | 7 |
| 8 #include "src/base/flags.h" | 8 #include "src/base/flags.h" |
| 9 #include "src/compiler/frame.h" | 9 #include "src/compiler/frame.h" |
| 10 #include "src/compiler/machine-type.h" | 10 #include "src/compiler/machine-type.h" |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 Linkage(Isolate* isolate, Zone* zone, CallDescriptor* incoming) | 178 Linkage(Isolate* isolate, Zone* zone, CallDescriptor* incoming) |
| 179 : isolate_(isolate), zone_(zone), incoming_(incoming) {} | 179 : isolate_(isolate), zone_(zone), incoming_(incoming) {} |
| 180 | 180 |
| 181 static CallDescriptor* ComputeIncoming(Zone* zone, CompilationInfo* info); | 181 static CallDescriptor* ComputeIncoming(Zone* zone, CompilationInfo* info); |
| 182 | 182 |
| 183 // The call descriptor for this compilation unit describes the locations | 183 // The call descriptor for this compilation unit describes the locations |
| 184 // of incoming parameters and the outgoing return value(s). | 184 // of incoming parameters and the outgoing return value(s). |
| 185 CallDescriptor* GetIncomingDescriptor() const { return incoming_; } | 185 CallDescriptor* GetIncomingDescriptor() const { return incoming_; } |
| 186 CallDescriptor* GetJSCallDescriptor(int parameter_count, | 186 CallDescriptor* GetJSCallDescriptor(int parameter_count, |
| 187 CallDescriptor::Flags flags) const; | 187 CallDescriptor::Flags flags) const; |
| 188 static CallDescriptor* GetJSCallDescriptor(Zone* zone, int parameter_count, | 188 static CallDescriptor* GetJSCallDescriptor(Zone* zone, bool is_osr, |
| 189 int parameter_count, |
| 189 CallDescriptor::Flags flags); | 190 CallDescriptor::Flags flags); |
| 190 CallDescriptor* GetRuntimeCallDescriptor( | 191 CallDescriptor* GetRuntimeCallDescriptor( |
| 191 Runtime::FunctionId function, int parameter_count, | 192 Runtime::FunctionId function, int parameter_count, |
| 192 Operator::Properties properties) const; | 193 Operator::Properties properties) const; |
| 193 static CallDescriptor* GetRuntimeCallDescriptor( | 194 static CallDescriptor* GetRuntimeCallDescriptor( |
| 194 Zone* zone, Runtime::FunctionId function, int parameter_count, | 195 Zone* zone, Runtime::FunctionId function, int parameter_count, |
| 195 Operator::Properties properties); | 196 Operator::Properties properties); |
| 196 | 197 |
| 197 CallDescriptor* GetStubCallDescriptor( | 198 CallDescriptor* GetStubCallDescriptor( |
| 198 const CallInterfaceDescriptor& descriptor, int stack_parameter_count = 0, | 199 const CallInterfaceDescriptor& descriptor, int stack_parameter_count = 0, |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 CallDescriptor* const incoming_; | 247 CallDescriptor* const incoming_; |
| 247 | 248 |
| 248 DISALLOW_COPY_AND_ASSIGN(Linkage); | 249 DISALLOW_COPY_AND_ASSIGN(Linkage); |
| 249 }; | 250 }; |
| 250 | 251 |
| 251 } // namespace compiler | 252 } // namespace compiler |
| 252 } // namespace internal | 253 } // namespace internal |
| 253 } // namespace v8 | 254 } // namespace v8 |
| 254 | 255 |
| 255 #endif // V8_COMPILER_LINKAGE_H_ | 256 #endif // V8_COMPILER_LINKAGE_H_ |
| OLD | NEW |