| 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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 | 628 |
| 629 const Operator* StoreProperty(LanguageMode language_mode, | 629 const Operator* StoreProperty(LanguageMode language_mode, |
| 630 VectorSlotPair const& feedback); | 630 VectorSlotPair const& feedback); |
| 631 const Operator* StoreNamed(LanguageMode language_mode, Handle<Name> name, | 631 const Operator* StoreNamed(LanguageMode language_mode, Handle<Name> name, |
| 632 VectorSlotPair const& feedback); | 632 VectorSlotPair const& feedback); |
| 633 | 633 |
| 634 const Operator* StoreNamedOwn(Handle<Name> name, | 634 const Operator* StoreNamedOwn(Handle<Name> name, |
| 635 VectorSlotPair const& feedback); | 635 VectorSlotPair const& feedback); |
| 636 const Operator* StoreDataPropertyInLiteral(const VectorSlotPair& feedback); | 636 const Operator* StoreDataPropertyInLiteral(const VectorSlotPair& feedback); |
| 637 | 637 |
| 638 const Operator* CollectTypeProfile(const VectorSlotPair& feedback); |
| 639 |
| 638 const Operator* DeleteProperty(LanguageMode language_mode); | 640 const Operator* DeleteProperty(LanguageMode language_mode); |
| 639 | 641 |
| 640 const Operator* HasProperty(); | 642 const Operator* HasProperty(); |
| 641 | 643 |
| 642 const Operator* GetSuperConstructor(); | 644 const Operator* GetSuperConstructor(); |
| 643 | 645 |
| 644 const Operator* LoadGlobal(const Handle<Name>& name, | 646 const Operator* LoadGlobal(const Handle<Name>& name, |
| 645 const VectorSlotPair& feedback, | 647 const VectorSlotPair& feedback, |
| 646 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); | 648 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); |
| 647 const Operator* StoreGlobal(LanguageMode language_mode, | 649 const Operator* StoreGlobal(LanguageMode language_mode, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 Zone* const zone_; | 692 Zone* const zone_; |
| 691 | 693 |
| 692 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); | 694 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
| 693 }; | 695 }; |
| 694 | 696 |
| 695 } // namespace compiler | 697 } // namespace compiler |
| 696 } // namespace internal | 698 } // namespace internal |
| 697 } // namespace v8 | 699 } // namespace v8 |
| 698 | 700 |
| 699 #endif // V8_COMPILER_JS_OPERATOR_H_ | 701 #endif // V8_COMPILER_JS_OPERATOR_H_ |
| OLD | NEW |