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

Side by Side Diff: src/compiler/js-operator.h

Issue 2934893002: [builtins] Properly optimize Object.prototype.isPrototypeOf. (Closed)
Patch Set: Address feedback. Created 3 years, 6 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/js-native-context-specialization.cc ('k') | src/compiler/js-operator.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_JS_OPERATOR_H_ 5 #ifndef V8_COMPILER_JS_OPERATOR_H_
6 #define V8_COMPILER_JS_OPERATOR_H_ 6 #define V8_COMPILER_JS_OPERATOR_H_
7 7
8 #include "src/base/compiler-specific.h" 8 #include "src/base/compiler-specific.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/handles.h" 10 #include "src/handles.h"
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 const VectorSlotPair& feedback); 772 const VectorSlotPair& feedback);
773 773
774 const Operator* LoadContext(size_t depth, size_t index, bool immutable); 774 const Operator* LoadContext(size_t depth, size_t index, bool immutable);
775 const Operator* StoreContext(size_t depth, size_t index); 775 const Operator* StoreContext(size_t depth, size_t index);
776 776
777 const Operator* LoadModule(int32_t cell_index); 777 const Operator* LoadModule(int32_t cell_index);
778 const Operator* StoreModule(int32_t cell_index); 778 const Operator* StoreModule(int32_t cell_index);
779 779
780 const Operator* ClassOf(); 780 const Operator* ClassOf();
781 const Operator* TypeOf(); 781 const Operator* TypeOf();
782 const Operator* HasInPrototypeChain();
782 const Operator* InstanceOf(); 783 const Operator* InstanceOf();
783 const Operator* OrdinaryHasInstance(); 784 const Operator* OrdinaryHasInstance();
784 785
785 const Operator* ForInNext(); 786 const Operator* ForInNext();
786 const Operator* ForInPrepare(); 787 const Operator* ForInPrepare();
787 788
788 const Operator* LoadMessage(); 789 const Operator* LoadMessage();
789 const Operator* StoreMessage(); 790 const Operator* StoreMessage();
790 791
791 const Operator* StringConcat(int operand_count); 792 const Operator* StringConcat(int operand_count);
(...skipping 25 matching lines...) Expand all
817 Zone* const zone_; 818 Zone* const zone_;
818 819
819 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); 820 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder);
820 }; 821 };
821 822
822 } // namespace compiler 823 } // namespace compiler
823 } // namespace internal 824 } // namespace internal
824 } // namespace v8 825 } // namespace v8
825 826
826 #endif // V8_COMPILER_JS_OPERATOR_H_ 827 #endif // V8_COMPILER_JS_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/js-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698