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

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: implement KeyedLoadIC stub in CodeStubAssembler 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
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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 Node* arg5, size_t result_size = 1); 350 Node* arg5, size_t result_size = 1);
351 Node* CallStubN(const CallInterfaceDescriptor& descriptor, Node* target, 351 Node* CallStubN(const CallInterfaceDescriptor& descriptor, Node* target,
352 Node** args, size_t result_size = 1); 352 Node** args, size_t result_size = 1);
353 353
354 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, 354 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1,
355 size_t result_size = 1); 355 size_t result_size = 1);
356 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, 356 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1,
357 Node* arg2, size_t result_size = 1); 357 Node* arg2, size_t result_size = 1);
358 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, 358 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1,
359 Node* arg2, Node* arg3, size_t result_size = 1); 359 Node* arg2, Node* arg3, size_t result_size = 1);
360 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1,
361 Node* arg2, Node* arg3, Node* arg4,
362 size_t result_size = 1);
360 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, 363 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target,
361 Node* context, Node* arg1, size_t result_size = 1); 364 Node* context, Node* arg1, size_t result_size = 1);
362 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, 365 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target,
363 Node* context, Node* arg1, Node* arg2, 366 Node* context, Node* arg1, Node* arg2,
364 size_t result_size = 1); 367 size_t result_size = 1);
365 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, 368 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target,
366 Node* context, Node* arg1, Node* arg2, Node* arg3, 369 Node* context, Node* arg1, Node* arg2, Node* arg3,
367 size_t result_size = 1); 370 size_t result_size = 1);
368 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, 371 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target,
369 Node* context, Node* arg1, Node* arg2, Node* arg3, 372 Node* context, Node* arg1, Node* arg2, Node* arg3,
(...skipping 84 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 457 // Map of variables to the list of value nodes that have been added from each
455 // merge path in their order of merging. 458 // merge path in their order of merging.
456 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 459 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
457 }; 460 };
458 461
459 } // namespace compiler 462 } // namespace compiler
460 } // namespace internal 463 } // namespace internal
461 } // namespace v8 464 } // namespace v8
462 465
463 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ 466 #endif // V8_COMPILER_CODE_ASSEMBLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698