OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |