| 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 #include "src/type-hints.h" | 9 #include "src/type-hints.h" |
| 10 | 10 |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); | 494 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); |
| 495 const Operator* StoreGlobal(LanguageMode language_mode, | 495 const Operator* StoreGlobal(LanguageMode language_mode, |
| 496 const Handle<Name>& name, | 496 const Handle<Name>& name, |
| 497 const VectorSlotPair& feedback); | 497 const VectorSlotPair& feedback); |
| 498 | 498 |
| 499 const Operator* LoadContext(size_t depth, size_t index, bool immutable); | 499 const Operator* LoadContext(size_t depth, size_t index, bool immutable); |
| 500 const Operator* StoreContext(size_t depth, size_t index); | 500 const Operator* StoreContext(size_t depth, size_t index); |
| 501 | 501 |
| 502 const Operator* TypeOf(); | 502 const Operator* TypeOf(); |
| 503 const Operator* InstanceOf(); | 503 const Operator* InstanceOf(); |
| 504 const Operator* OrdinaryHasInstance(); |
| 504 | 505 |
| 505 const Operator* ForInNext(); | 506 const Operator* ForInNext(); |
| 506 const Operator* ForInPrepare(); | 507 const Operator* ForInPrepare(); |
| 507 | 508 |
| 508 const Operator* LoadMessage(); | 509 const Operator* LoadMessage(); |
| 509 const Operator* StoreMessage(); | 510 const Operator* StoreMessage(); |
| 510 | 511 |
| 511 // Used to implement Ignition's SuspendGenerator bytecode. | 512 // Used to implement Ignition's SuspendGenerator bytecode. |
| 512 const Operator* GeneratorStore(int register_count); | 513 const Operator* GeneratorStore(int register_count); |
| 513 | 514 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 532 Zone* const zone_; | 533 Zone* const zone_; |
| 533 | 534 |
| 534 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); | 535 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
| 535 }; | 536 }; |
| 536 | 537 |
| 537 } // namespace compiler | 538 } // namespace compiler |
| 538 } // namespace internal | 539 } // namespace internal |
| 539 } // namespace v8 | 540 } // namespace v8 |
| 540 | 541 |
| 541 #endif // V8_COMPILER_JS_OPERATOR_H_ | 542 #endif // V8_COMPILER_JS_OPERATOR_H_ |
| OLD | NEW |