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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 const Operator* ConvertReceiver(ConvertReceiverMode convert_mode); | 482 const Operator* ConvertReceiver(ConvertReceiverMode convert_mode); |
483 | 483 |
484 const Operator* LoadProperty(VectorSlotPair const& feedback); | 484 const Operator* LoadProperty(VectorSlotPair const& feedback); |
485 const Operator* LoadNamed(Handle<Name> name, VectorSlotPair const& feedback); | 485 const Operator* LoadNamed(Handle<Name> name, VectorSlotPair const& feedback); |
486 | 486 |
487 const Operator* StoreProperty(LanguageMode language_mode, | 487 const Operator* StoreProperty(LanguageMode language_mode, |
488 VectorSlotPair const& feedback); | 488 VectorSlotPair const& feedback); |
489 const Operator* StoreNamed(LanguageMode language_mode, Handle<Name> name, | 489 const Operator* StoreNamed(LanguageMode language_mode, Handle<Name> name, |
490 VectorSlotPair const& feedback); | 490 VectorSlotPair const& feedback); |
491 | 491 |
| 492 const Operator* StoreDataPropertyInLiteral(); |
| 493 |
492 const Operator* DeleteProperty(LanguageMode language_mode); | 494 const Operator* DeleteProperty(LanguageMode language_mode); |
493 | 495 |
494 const Operator* HasProperty(); | 496 const Operator* HasProperty(); |
495 | 497 |
496 const Operator* LoadGlobal(const Handle<Name>& name, | 498 const Operator* LoadGlobal(const Handle<Name>& name, |
497 const VectorSlotPair& feedback, | 499 const VectorSlotPair& feedback, |
498 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); | 500 TypeofMode typeof_mode = NOT_INSIDE_TYPEOF); |
499 const Operator* StoreGlobal(LanguageMode language_mode, | 501 const Operator* StoreGlobal(LanguageMode language_mode, |
500 const Handle<Name>& name, | 502 const Handle<Name>& name, |
501 const VectorSlotPair& feedback); | 503 const VectorSlotPair& feedback); |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 Zone* const zone_; | 542 Zone* const zone_; |
541 | 543 |
542 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); | 544 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
543 }; | 545 }; |
544 | 546 |
545 } // namespace compiler | 547 } // namespace compiler |
546 } // namespace internal | 548 } // namespace internal |
547 } // namespace v8 | 549 } // namespace v8 |
548 | 550 |
549 #endif // V8_COMPILER_JS_OPERATOR_H_ | 551 #endif // V8_COMPILER_JS_OPERATOR_H_ |
OLD | NEW |