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

Side by Side Diff: src/hydrogen-instructions.h

Issue 892383003: emit premonomorphic ics for loads/stores in optimized code (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: wire up stores Created 5 years, 10 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_HYDROGEN_INSTRUCTIONS_H_ 5 #ifndef V8_HYDROGEN_INSTRUCTIONS_H_
6 #define V8_HYDROGEN_INSTRUCTIONS_H_ 6 #define V8_HYDROGEN_INSTRUCTIONS_H_
7 7
8 #include <cstring> 8 #include <cstring>
9 #include <iosfwd> 9 #include <iosfwd>
10 10
(...skipping 6550 matching lines...) Expand 10 before | Expand all | Expand 10 after
6561 6561
6562 bool IsDeletable() const OVERRIDE { return true; } 6562 bool IsDeletable() const OVERRIDE { return true; }
6563 6563
6564 HObjectAccess access_; 6564 HObjectAccess access_;
6565 const UniqueSet<Map>* maps_; 6565 const UniqueSet<Map>* maps_;
6566 }; 6566 };
6567 6567
6568 6568
6569 class HLoadNamedGeneric FINAL : public HTemplateInstruction<2> { 6569 class HLoadNamedGeneric FINAL : public HTemplateInstruction<2> {
6570 public: 6570 public:
6571 DECLARE_INSTRUCTION_WITH_CONTEXT_FACTORY_P2(HLoadNamedGeneric, HValue*, 6571 DECLARE_INSTRUCTION_WITH_CONTEXT_FACTORY_P3(HLoadNamedGeneric, HValue*,
6572 Handle<Object>); 6572 Handle<Object>, bool);
6573 6573
6574 HValue* context() const { return OperandAt(0); } 6574 HValue* context() const { return OperandAt(0); }
6575 HValue* object() const { return OperandAt(1); } 6575 HValue* object() const { return OperandAt(1); }
6576 Handle<Object> name() const { return name_; } 6576 Handle<Object> name() const { return name_; }
6577 6577
6578 bool emit_megamorphic() const { return emit_megamorphic_; }
6578 FeedbackVectorICSlot slot() const { return slot_; } 6579 FeedbackVectorICSlot slot() const { return slot_; }
6579 Handle<TypeFeedbackVector> feedback_vector() const { 6580 Handle<TypeFeedbackVector> feedback_vector() const {
6580 return feedback_vector_; 6581 return feedback_vector_;
6581 } 6582 }
6582 bool HasVectorAndSlot() const { return FLAG_vector_ics; } 6583 bool HasVectorAndSlot() const { return FLAG_vector_ics; }
6583 void SetVectorAndSlot(Handle<TypeFeedbackVector> vector, 6584 void SetVectorAndSlot(Handle<TypeFeedbackVector> vector,
6584 FeedbackVectorICSlot slot) { 6585 FeedbackVectorICSlot slot) {
6585 DCHECK(FLAG_vector_ics); 6586 DCHECK(FLAG_vector_ics);
6586 feedback_vector_ = vector; 6587 feedback_vector_ = vector;
6587 slot_ = slot; 6588 slot_ = slot;
6588 } 6589 }
6589 6590
6590 Representation RequiredInputRepresentation(int index) OVERRIDE { 6591 Representation RequiredInputRepresentation(int index) OVERRIDE {
6591 return Representation::Tagged(); 6592 return Representation::Tagged();
6592 } 6593 }
6593 6594
6594 std::ostream& PrintDataTo(std::ostream& os) const OVERRIDE; // NOLINT 6595 std::ostream& PrintDataTo(std::ostream& os) const OVERRIDE; // NOLINT
6595 6596
6596 DECLARE_CONCRETE_INSTRUCTION(LoadNamedGeneric) 6597 DECLARE_CONCRETE_INSTRUCTION(LoadNamedGeneric)
6597 6598
6598 private: 6599 private:
6599 HLoadNamedGeneric(HValue* context, HValue* object, Handle<Object> name) 6600 HLoadNamedGeneric(HValue* context, HValue* object, Handle<Object> name,
6600 : name_(name), slot_(FeedbackVectorICSlot::Invalid()) { 6601 bool emit_megamorphic)
6602 : name_(name),
6603 slot_(FeedbackVectorICSlot::Invalid()),
6604 emit_megamorphic_(emit_megamorphic) {
6601 SetOperandAt(0, context); 6605 SetOperandAt(0, context);
6602 SetOperandAt(1, object); 6606 SetOperandAt(1, object);
6603 set_representation(Representation::Tagged()); 6607 set_representation(Representation::Tagged());
6604 SetAllSideEffects(); 6608 SetAllSideEffects();
6605 } 6609 }
6606 6610
6607 Handle<Object> name_; 6611 Handle<Object> name_;
6608 Handle<TypeFeedbackVector> feedback_vector_; 6612 Handle<TypeFeedbackVector> feedback_vector_;
6609 FeedbackVectorICSlot slot_; 6613 FeedbackVectorICSlot slot_;
6614 bool emit_megamorphic_;
6610 }; 6615 };
6611 6616
6612 6617
6613 class HLoadFunctionPrototype FINAL : public HUnaryOperation { 6618 class HLoadFunctionPrototype FINAL : public HUnaryOperation {
6614 public: 6619 public:
6615 DECLARE_INSTRUCTION_FACTORY_P1(HLoadFunctionPrototype, HValue*); 6620 DECLARE_INSTRUCTION_FACTORY_P1(HLoadFunctionPrototype, HValue*);
6616 6621
6617 HValue* function() { return OperandAt(0); } 6622 HValue* function() { return OperandAt(0); }
6618 6623
6619 Representation RequiredInputRepresentation(int index) OVERRIDE { 6624 Representation RequiredInputRepresentation(int index) OVERRIDE {
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
7053 class ReceiverIsCellField : public BitField<bool, 2, 1> {}; 7058 class ReceiverIsCellField : public BitField<bool, 2, 1> {};
7054 7059
7055 HObjectAccess access_; 7060 HObjectAccess access_;
7056 HValue* dominator_; 7061 HValue* dominator_;
7057 uint32_t bit_field_; 7062 uint32_t bit_field_;
7058 }; 7063 };
7059 7064
7060 7065
7061 class HStoreNamedGeneric FINAL : public HTemplateInstruction<3> { 7066 class HStoreNamedGeneric FINAL : public HTemplateInstruction<3> {
7062 public: 7067 public:
7063 DECLARE_INSTRUCTION_WITH_CONTEXT_FACTORY_P4(HStoreNamedGeneric, HValue*, 7068 DECLARE_INSTRUCTION_WITH_CONTEXT_FACTORY_P5(HStoreNamedGeneric, HValue*,
7064 Handle<String>, HValue*, 7069 Handle<String>, HValue*,
7065 LanguageMode); 7070 LanguageMode, bool);
7066 HValue* object() const { return OperandAt(0); } 7071 HValue* object() const { return OperandAt(0); }
7067 HValue* value() const { return OperandAt(1); } 7072 HValue* value() const { return OperandAt(1); }
7068 HValue* context() const { return OperandAt(2); } 7073 HValue* context() const { return OperandAt(2); }
7069 Handle<String> name() const { return name_; } 7074 Handle<String> name() const { return name_; }
7070 LanguageMode language_mode() const { return language_mode_; } 7075 LanguageMode language_mode() const { return language_mode_; }
7076 bool emit_megamorphic() const { return emit_megamorphic_; }
7071 7077
7072 std::ostream& PrintDataTo(std::ostream& os) const OVERRIDE; // NOLINT 7078 std::ostream& PrintDataTo(std::ostream& os) const OVERRIDE; // NOLINT
7073 7079
7074 Representation RequiredInputRepresentation(int index) OVERRIDE { 7080 Representation RequiredInputRepresentation(int index) OVERRIDE {
7075 return Representation::Tagged(); 7081 return Representation::Tagged();
7076 } 7082 }
7077 7083
7078 DECLARE_CONCRETE_INSTRUCTION(StoreNamedGeneric) 7084 DECLARE_CONCRETE_INSTRUCTION(StoreNamedGeneric)
7079 7085
7080 private: 7086 private:
7081 HStoreNamedGeneric(HValue* context, HValue* object, Handle<String> name, 7087 HStoreNamedGeneric(HValue* context, HValue* object, Handle<String> name,
7082 HValue* value, LanguageMode language_mode) 7088 HValue* value, LanguageMode language_mode,
7083 : name_(name), language_mode_(language_mode) { 7089 bool emit_megamorphic)
7090 : name_(name),
7091 language_mode_(language_mode),
7092 emit_megamorphic_(emit_megamorphic) {
7084 SetOperandAt(0, object); 7093 SetOperandAt(0, object);
7085 SetOperandAt(1, value); 7094 SetOperandAt(1, value);
7086 SetOperandAt(2, context); 7095 SetOperandAt(2, context);
7087 SetAllSideEffects(); 7096 SetAllSideEffects();
7088 } 7097 }
7089 7098
7090 Handle<String> name_; 7099 Handle<String> name_;
7091 LanguageMode language_mode_; 7100 LanguageMode language_mode_;
7101 bool emit_megamorphic_;
7092 }; 7102 };
7093 7103
7094 7104
7095 class HStoreKeyed FINAL 7105 class HStoreKeyed FINAL
7096 : public HTemplateInstruction<3>, public ArrayInstructionInterface { 7106 : public HTemplateInstruction<3>, public ArrayInstructionInterface {
7097 public: 7107 public:
7098 DECLARE_INSTRUCTION_FACTORY_P4(HStoreKeyed, HValue*, HValue*, HValue*, 7108 DECLARE_INSTRUCTION_FACTORY_P4(HStoreKeyed, HValue*, HValue*, HValue*,
7099 ElementsKind); 7109 ElementsKind);
7100 DECLARE_INSTRUCTION_FACTORY_P5(HStoreKeyed, HValue*, HValue*, HValue*, 7110 DECLARE_INSTRUCTION_FACTORY_P5(HStoreKeyed, HValue*, HValue*, HValue*,
7101 ElementsKind, StoreFieldOrKeyedMode); 7111 ElementsKind, StoreFieldOrKeyedMode);
(...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after
8000 }; 8010 };
8001 8011
8002 8012
8003 8013
8004 #undef DECLARE_INSTRUCTION 8014 #undef DECLARE_INSTRUCTION
8005 #undef DECLARE_CONCRETE_INSTRUCTION 8015 #undef DECLARE_CONCRETE_INSTRUCTION
8006 8016
8007 } } // namespace v8::internal 8017 } } // namespace v8::internal
8008 8018
8009 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ 8019 #endif // V8_HYDROGEN_INSTRUCTIONS_H_
OLDNEW
« src/code-factory.cc ('K') | « src/hydrogen.cc ('k') | src/ic/ic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698