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