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

Side by Side Diff: src/compiler/code-assembler.h

Issue 2172233002: [interpreter] Add explicit OSR polling bytecode. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_interpreter-osr-1
Patch Set: Rebased. Created 4 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
« no previous file with comments | « src/compiler/bytecode-graph-builder.cc ('k') | src/compiler/code-assembler.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 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
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,
339 Node* context, Node* arg1, size_t result_size = 1); 341 Node* context, Node* arg1, size_t result_size = 1);
340 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, 342 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target,
341 Node* context, Node* arg1, Node* arg2, size_t result_size = 1); 343 Node* context, Node* arg1, Node* arg2, size_t result_size = 1);
342 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, 344 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target,
343 Node* context, Node* arg1, Node* arg2, Node* arg3, 345 Node* context, Node* arg1, Node* arg2, Node* arg3,
344 size_t result_size = 1); 346 size_t result_size = 1);
345 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, 347 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target,
346 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, 348 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4,
347 size_t result_size = 1); 349 size_t result_size = 1);
348 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, 350 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target,
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 // Map of variables to the list of value nodes that have been added from each 456 // Map of variables to the list of value nodes that have been added from each
455 // merge path in their order of merging. 457 // merge path in their order of merging.
456 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 458 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
457 }; 459 };
458 460
459 } // namespace compiler 461 } // namespace compiler
460 } // namespace internal 462 } // namespace internal
461 } // namespace v8 463 } // namespace v8
462 464
463 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 465 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/compiler/bytecode-graph-builder.cc ('k') | src/compiler/code-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698