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_ASSEMBLER_H_ | 5 #ifndef V8_COMPILER_CODE_ASSEMBLER_H_ |
6 #define V8_COMPILER_CODE_ASSEMBLER_H_ | 6 #define V8_COMPILER_CODE_ASSEMBLER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 | 10 |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 329 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
330 size_t result_size = 1); | 330 size_t result_size = 1); |
331 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 331 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
332 Node* arg2, size_t result_size = 1); | 332 Node* arg2, size_t result_size = 1); |
333 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 333 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
334 Node* arg2, Node* arg3, size_t result_size = 1); | 334 Node* arg2, Node* arg3, size_t result_size = 1); |
335 Node* CallStubN(Callable const& callable, Node** args, | 335 Node* CallStubN(Callable const& callable, Node** args, |
336 size_t result_size = 1); | 336 size_t result_size = 1); |
337 | 337 |
338 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 338 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
339 Node* context, size_t result_size = 1); | |
340 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | |
341 Node* context, Node* arg1, size_t result_size = 1); | 339 Node* context, Node* arg1, size_t result_size = 1); |
342 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 340 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
343 Node* context, Node* arg1, Node* arg2, size_t result_size = 1); | 341 Node* context, Node* arg1, Node* arg2, size_t result_size = 1); |
344 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 342 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
345 Node* context, Node* arg1, Node* arg2, Node* arg3, | 343 Node* context, Node* arg1, Node* arg2, Node* arg3, |
346 size_t result_size = 1); | 344 size_t result_size = 1); |
347 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 345 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
348 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, | 346 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, |
349 size_t result_size = 1); | 347 size_t result_size = 1); |
350 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 348 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 // Map of variables to the list of value nodes that have been added from each | 454 // Map of variables to the list of value nodes that have been added from each |
457 // merge path in their order of merging. | 455 // merge path in their order of merging. |
458 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 456 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
459 }; | 457 }; |
460 | 458 |
461 } // namespace compiler | 459 } // namespace compiler |
462 } // namespace internal | 460 } // namespace internal |
463 } // namespace v8 | 461 } // namespace v8 |
464 | 462 |
465 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ | 463 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ |
OLD | NEW |