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 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
655 | 655 |
656 const Operator* StoreProperty(LanguageMode language_mode, | 656 const Operator* StoreProperty(LanguageMode language_mode, |
657 VectorSlotPair const& feedback); | 657 VectorSlotPair const& feedback); |
658 const Operator* StoreNamed(LanguageMode language_mode, Handle<Name> name, | 658 const Operator* StoreNamed(LanguageMode language_mode, Handle<Name> name, |
659 VectorSlotPair const& feedback); | 659 VectorSlotPair const& feedback); |
660 | 660 |
661 const Operator* StoreNamedOwn(Handle<Name> name, | 661 const Operator* StoreNamedOwn(Handle<Name> name, |
662 VectorSlotPair const& feedback); | 662 VectorSlotPair const& feedback); |
663 const Operator* StoreDataPropertyInLiteral(const VectorSlotPair& feedback); | 663 const Operator* StoreDataPropertyInLiteral(const VectorSlotPair& feedback); |
664 | 664 |
665 const Operator* DeleteProperty(LanguageMode language_mode); | 665 const Operator* DeleteProperty(); |
666 | 666 |
667 const Operator* HasProperty(); | 667 const Operator* HasProperty(); |
668 | 668 |
669 const Operator* GetSuperConstructor(); | 669 const Operator* GetSuperConstructor(); |
670 | 670 |
671 const Operator* LoadGlobal(const Handle<Name>& name, | 671 const Operator* LoadGlobal(const Handle<Name>& name, |
672 const VectorSlotPair& feedback, | 672 const VectorSlotPair& feedback, |
673 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); | 673 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); |
674 const Operator* StoreGlobal(LanguageMode language_mode, | 674 const Operator* StoreGlobal(LanguageMode language_mode, |
675 const Handle<Name>& name, | 675 const Handle<Name>& name, |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
718 Zone* const zone_; | 718 Zone* const zone_; |
719 | 719 |
720 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); | 720 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
721 }; | 721 }; |
722 | 722 |
723 } // namespace compiler | 723 } // namespace compiler |
724 } // namespace internal | 724 } // namespace internal |
725 } // namespace v8 | 725 } // namespace v8 |
726 | 726 |
727 #endif // V8_COMPILER_JS_OPERATOR_H_ | 727 #endif // V8_COMPILER_JS_OPERATOR_H_ |
OLD | NEW |