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

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

Issue 2182103002: [KeyedLoadIC] Support Smi "handlers" for simple field loads (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
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/code-stubs.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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 376
377 Node* CallStubN(const CallInterfaceDescriptor& descriptor, Node* target, 377 Node* CallStubN(const CallInterfaceDescriptor& descriptor, Node* target,
378 Node** args, size_t result_size = 1); 378 Node** args, size_t result_size = 1);
379 379
380 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, 380 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1,
381 size_t result_size = 1); 381 size_t result_size = 1);
382 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, 382 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1,
383 Node* arg2, size_t result_size = 1); 383 Node* arg2, size_t result_size = 1);
384 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, 384 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1,
385 Node* arg2, Node* arg3, size_t result_size = 1); 385 Node* arg2, Node* arg3, size_t result_size = 1);
386 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1,
387 Node* arg2, Node* arg3, Node* arg4,
388 size_t result_size = 1);
386 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, 389 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target,
387 Node* context, Node* arg1, size_t result_size = 1); 390 Node* context, Node* arg1, size_t result_size = 1);
388 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, 391 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target,
389 Node* context, Node* arg1, Node* arg2, 392 Node* context, Node* arg1, Node* arg2,
390 size_t result_size = 1); 393 size_t result_size = 1);
391 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, 394 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target,
392 Node* context, Node* arg1, Node* arg2, Node* arg3, 395 Node* context, Node* arg1, Node* arg2, Node* arg3,
393 size_t result_size = 1); 396 size_t result_size = 1);
394 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, 397 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target,
395 Node* context, Node* arg1, Node* arg2, Node* arg3, 398 Node* context, Node* arg1, Node* arg2, Node* arg3,
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 // Map of variables to the list of value nodes that have been added from each 491 // Map of variables to the list of value nodes that have been added from each
489 // merge path in their order of merging. 492 // merge path in their order of merging.
490 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 493 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
491 }; 494 };
492 495
493 } // namespace compiler 496 } // namespace compiler
494 } // namespace internal 497 } // namespace internal
495 } // namespace v8 498 } // namespace v8
496 499
497 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 500 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/compiler/code-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698