OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_CODE_STUB_ASSEMBLER_H_ | 5 #ifndef V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
6 #define V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 6 #define V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 // Clients of this interface shouldn't depend on lots of compiler internals. | 10 // Clients of this interface shouldn't depend on lots of compiler internals. |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 size_t result_size = 1); | 256 size_t result_size = 1); |
257 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 257 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
258 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, | 258 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, |
259 size_t result_size = 1); | 259 size_t result_size = 1); |
260 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 260 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
261 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, | 261 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, |
262 Node* arg5, size_t result_size = 1); | 262 Node* arg5, size_t result_size = 1); |
263 | 263 |
264 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, | 264 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, |
265 Node* arg2, size_t result_size = 1); | 265 Node* arg2, size_t result_size = 1); |
| 266 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, |
| 267 Node* arg2, Node* arg3, size_t result_size = 1); |
266 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 268 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
267 Node* context, Node* arg1, Node* arg2, | 269 Node* context, Node* arg1, Node* arg2, |
268 size_t result_size = 1); | 270 size_t result_size = 1); |
| 271 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 272 Node* context, Node* arg1, Node* arg2, Node* arg3, |
| 273 size_t result_size = 1); |
269 | 274 |
270 Node* TailCallBytecodeDispatch(const CallInterfaceDescriptor& descriptor, | 275 Node* TailCallBytecodeDispatch(const CallInterfaceDescriptor& descriptor, |
271 Node* code_target_address, Node** args); | 276 Node* code_target_address, Node** args); |
272 | 277 |
273 // =========================================================================== | 278 // =========================================================================== |
274 // Macros | 279 // Macros |
275 // =========================================================================== | 280 // =========================================================================== |
276 | 281 |
277 // Float64 operations. | 282 // Float64 operations. |
278 Node* Float64Ceil(Node* x); | 283 Node* Float64Ceil(Node* x); |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 // Map of variables to the list of value nodes that have been added from each | 512 // Map of variables to the list of value nodes that have been added from each |
508 // merge path in their order of merging. | 513 // merge path in their order of merging. |
509 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 514 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
510 }; | 515 }; |
511 | 516 |
512 } // namespace compiler | 517 } // namespace compiler |
513 } // namespace internal | 518 } // namespace internal |
514 } // namespace v8 | 519 } // namespace v8 |
515 | 520 |
516 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 521 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
OLD | NEW |