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

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

Issue 2144643004: [builtins] Turn StoreIC_Miss and StoreIC_Slow builtins to TurboFan code stubs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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/builtins.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 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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 312
313 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context); 313 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context);
314 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, 314 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context,
315 Node* arg1); 315 Node* arg1);
316 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, 316 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context,
317 Node* arg1, Node* arg2); 317 Node* arg1, Node* arg2);
318 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, 318 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context,
319 Node* arg1, Node* arg2, Node* arg3); 319 Node* arg1, Node* arg2, Node* arg3);
320 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, 320 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context,
321 Node* arg1, Node* arg2, Node* arg3, Node* arg4); 321 Node* arg1, Node* arg2, Node* arg3, Node* arg4);
322 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context,
323 Node* arg1, Node* arg2, Node* arg3, Node* arg4,
324 Node* arg5);
322 325
323 Node* CallStub(Callable const& callable, Node* context, Node* arg1, 326 Node* CallStub(Callable const& callable, Node* context, Node* arg1,
324 size_t result_size = 1); 327 size_t result_size = 1);
325 Node* CallStub(Callable const& callable, Node* context, Node* arg1, 328 Node* CallStub(Callable const& callable, Node* context, Node* arg1,
326 Node* arg2, size_t result_size = 1); 329 Node* arg2, size_t result_size = 1);
327 Node* CallStub(Callable const& callable, Node* context, Node* arg1, 330 Node* CallStub(Callable const& callable, Node* context, Node* arg1,
328 Node* arg2, Node* arg3, size_t result_size = 1); 331 Node* arg2, Node* arg3, size_t result_size = 1);
329 Node* CallStubN(Callable const& callable, Node** args, 332 Node* CallStubN(Callable const& callable, Node** args,
330 size_t result_size = 1); 333 size_t result_size = 1);
331 334
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 // Map of variables to the list of value nodes that have been added from each 447 // Map of variables to the list of value nodes that have been added from each
445 // merge path in their order of merging. 448 // merge path in their order of merging.
446 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 449 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
447 }; 450 };
448 451
449 } // namespace compiler 452 } // namespace compiler
450 } // namespace internal 453 } // namespace internal
451 } // namespace v8 454 } // namespace v8
452 455
453 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 456 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/compiler/code-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698