| 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/runtime/runtime.h" | 10 #include "src/runtime/runtime.h" |
| (...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 const Operator* StoreGlobal(LanguageMode language_mode, | 583 const Operator* StoreGlobal(LanguageMode language_mode, |
| 584 const Handle<Name>& name, | 584 const Handle<Name>& name, |
| 585 const VectorSlotPair& feedback); | 585 const VectorSlotPair& feedback); |
| 586 | 586 |
| 587 const Operator* LoadContext(size_t depth, size_t index, bool immutable); | 587 const Operator* LoadContext(size_t depth, size_t index, bool immutable); |
| 588 const Operator* StoreContext(size_t depth, size_t index); | 588 const Operator* StoreContext(size_t depth, size_t index); |
| 589 | 589 |
| 590 const Operator* LoadModule(int32_t cell_index); | 590 const Operator* LoadModule(int32_t cell_index); |
| 591 const Operator* StoreModule(int32_t cell_index); | 591 const Operator* StoreModule(int32_t cell_index); |
| 592 | 592 |
| 593 const Operator* ClassOf(); |
| 593 const Operator* TypeOf(); | 594 const Operator* TypeOf(); |
| 594 const Operator* InstanceOf(); | 595 const Operator* InstanceOf(); |
| 595 const Operator* OrdinaryHasInstance(); | 596 const Operator* OrdinaryHasInstance(); |
| 596 | 597 |
| 597 const Operator* ForInNext(); | 598 const Operator* ForInNext(); |
| 598 const Operator* ForInPrepare(); | 599 const Operator* ForInPrepare(); |
| 599 | 600 |
| 600 const Operator* LoadMessage(); | 601 const Operator* LoadMessage(); |
| 601 const Operator* StoreMessage(); | 602 const Operator* StoreMessage(); |
| 602 | 603 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 624 Zone* const zone_; | 625 Zone* const zone_; |
| 625 | 626 |
| 626 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); | 627 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
| 627 }; | 628 }; |
| 628 | 629 |
| 629 } // namespace compiler | 630 } // namespace compiler |
| 630 } // namespace internal | 631 } // namespace internal |
| 631 } // namespace v8 | 632 } // namespace v8 |
| 632 | 633 |
| 633 #endif // V8_COMPILER_JS_OPERATOR_H_ | 634 #endif // V8_COMPILER_JS_OPERATOR_H_ |
| OLD | NEW |