Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(850)

Side by Side Diff: src/compiler/js-operator.h

Issue 2763533002: [WIP] JSForInLowering and JSForInHasOwnProperty.
Patch Set: Hack around the issue with indices not being available always. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/js-operator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 const Operator* StoreContext(size_t depth, size_t index); 652 const Operator* StoreContext(size_t depth, size_t index);
653 653
654 const Operator* LoadModule(int32_t cell_index); 654 const Operator* LoadModule(int32_t cell_index);
655 const Operator* StoreModule(int32_t cell_index); 655 const Operator* StoreModule(int32_t cell_index);
656 656
657 const Operator* ClassOf(); 657 const Operator* ClassOf();
658 const Operator* TypeOf(); 658 const Operator* TypeOf();
659 const Operator* InstanceOf(); 659 const Operator* InstanceOf();
660 const Operator* OrdinaryHasInstance(); 660 const Operator* OrdinaryHasInstance();
661 661
662 const Operator* ForInHasOwnProperty();
663 const Operator* ForInLoadProperty();
662 const Operator* ForInNext(); 664 const Operator* ForInNext();
663 const Operator* ForInPrepare(); 665 const Operator* ForInPrepare();
664 666
665 const Operator* LoadMessage(); 667 const Operator* LoadMessage();
666 const Operator* StoreMessage(); 668 const Operator* StoreMessage();
667 669
668 // Used to implement Ignition's SuspendGenerator bytecode. 670 // Used to implement Ignition's SuspendGenerator bytecode.
669 const Operator* GeneratorStore(int register_count); 671 const Operator* GeneratorStore(int register_count);
670 672
671 // Used to implement Ignition's ResumeGenerator bytecode. 673 // Used to implement Ignition's ResumeGenerator bytecode.
(...skipping 18 matching lines...) Expand all
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_
OLDNEW
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/compiler/js-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698