| 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/runtime/runtime.h" | 8 #include "src/runtime/runtime.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 const Operator* LoadGlobal(const Handle<Name>& name, | 506 const Operator* LoadGlobal(const Handle<Name>& name, |
| 507 const VectorSlotPair& feedback, | 507 const VectorSlotPair& feedback, |
| 508 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); | 508 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); |
| 509 const Operator* StoreGlobal(LanguageMode language_mode, | 509 const Operator* StoreGlobal(LanguageMode language_mode, |
| 510 const Handle<Name>& name, | 510 const Handle<Name>& name, |
| 511 const VectorSlotPair& feedback); | 511 const VectorSlotPair& feedback); |
| 512 | 512 |
| 513 const Operator* LoadContext(size_t depth, size_t index, bool immutable); | 513 const Operator* LoadContext(size_t depth, size_t index, bool immutable); |
| 514 const Operator* StoreContext(size_t depth, size_t index); | 514 const Operator* StoreContext(size_t depth, size_t index); |
| 515 | 515 |
| 516 const Operator* LoadNativeContext(); | |
| 517 | |
| 518 const Operator* LoadDynamic(const Handle<String>& name, | 516 const Operator* LoadDynamic(const Handle<String>& name, |
| 519 TypeofMode typeof_mode); | 517 TypeofMode typeof_mode); |
| 520 | 518 |
| 521 const Operator* TypeOf(); | 519 const Operator* TypeOf(); |
| 522 const Operator* InstanceOf(); | 520 const Operator* InstanceOf(); |
| 523 | 521 |
| 524 const Operator* ForInDone(); | 522 const Operator* ForInDone(); |
| 525 const Operator* ForInNext(); | 523 const Operator* ForInNext(); |
| 526 const Operator* ForInPrepare(); | 524 const Operator* ForInPrepare(); |
| 527 const Operator* ForInStep(); | 525 const Operator* ForInStep(); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 545 Zone* const zone_; | 543 Zone* const zone_; |
| 546 | 544 |
| 547 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); | 545 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
| 548 }; | 546 }; |
| 549 | 547 |
| 550 } // namespace compiler | 548 } // namespace compiler |
| 551 } // namespace internal | 549 } // namespace internal |
| 552 } // namespace v8 | 550 } // namespace v8 |
| 553 | 551 |
| 554 #endif // V8_COMPILER_JS_OPERATOR_H_ | 552 #endif // V8_COMPILER_JS_OPERATOR_H_ |
| OLD | NEW |