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

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

Issue 10442015: Rollback of r11638, r11636 on trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « src/hydrogen.cc ('k') | src/hydrogen-instructions.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 2065 matching lines...) Expand 10 before | Expand all | Expand 10 after
2076 for (int i = 0; i < maps->length(); i++) { 2076 for (int i = 0; i < maps->length(); i++) {
2077 map_set()->Add(maps->at(i)); 2077 map_set()->Add(maps->at(i));
2078 } 2078 }
2079 map_set()->Sort(); 2079 map_set()->Sort();
2080 } 2080 }
2081 2081
2082 static HCheckMaps* NewWithTransitions(HValue* object, Handle<Map> map) { 2082 static HCheckMaps* NewWithTransitions(HValue* object, Handle<Map> map) {
2083 HCheckMaps* check_map = new HCheckMaps(object, map); 2083 HCheckMaps* check_map = new HCheckMaps(object, map);
2084 SmallMapList* map_set = check_map->map_set(); 2084 SmallMapList* map_set = check_map->map_set();
2085 2085
2086 // Since transitioned elements maps of the initial map don't fail the map 2086 // If the map to check has the untransitioned elements, it can be hoisted
2087 // check, the CheckMaps instruction doesn't need to depend on ElementsKinds. 2087 // above TransitionElements instructions.
2088 check_map->ClearGVNFlag(kDependsOnElementsKind); 2088 if (map->has_fast_smi_only_elements()) {
2089 check_map->ClearGVNFlag(kDependsOnElementsKind);
2090 }
2089 2091
2090 ElementsKind kind = map->elements_kind(); 2092 Map* transitioned_fast_element_map =
2091 bool packed = IsFastPackedElementsKind(kind); 2093 map->LookupElementsTransitionMap(FAST_ELEMENTS, NULL);
2092 while (CanTransitionToMoreGeneralFastElementsKind(kind, packed)) { 2094 ASSERT(transitioned_fast_element_map == NULL ||
2093 kind = GetNextMoreGeneralFastElementsKind(kind, packed); 2095 map->elements_kind() != FAST_ELEMENTS);
2094 Map* transitioned_map = 2096 if (transitioned_fast_element_map != NULL) {
2095 map->LookupElementsTransitionMap(kind, NULL); 2097 map_set->Add(Handle<Map>(transitioned_fast_element_map));
2096 if (transitioned_map) { 2098 }
2097 map_set->Add(Handle<Map>(transitioned_map)); 2099 Map* transitioned_double_map =
2098 } 2100 map->LookupElementsTransitionMap(FAST_DOUBLE_ELEMENTS, NULL);
2099 }; 2101 ASSERT(transitioned_double_map == NULL ||
2102 map->elements_kind() == FAST_SMI_ONLY_ELEMENTS);
2103 if (transitioned_double_map != NULL) {
2104 map_set->Add(Handle<Map>(transitioned_double_map));
2105 }
2100 map_set->Sort(); 2106 map_set->Sort();
2107
2101 return check_map; 2108 return check_map;
2102 } 2109 }
2103 2110
2104 virtual Representation RequiredInputRepresentation(int index) { 2111 virtual Representation RequiredInputRepresentation(int index) {
2105 return Representation::Tagged(); 2112 return Representation::Tagged();
2106 } 2113 }
2107 virtual void PrintDataTo(StringStream* stream); 2114 virtual void PrintDataTo(StringStream* stream);
2108 virtual HType CalculateInferredType(); 2115 virtual HType CalculateInferredType();
2109 2116
2110 HValue* value() { return OperandAt(0); } 2117 HValue* value() { return OperandAt(0); }
(...skipping 1831 matching lines...) Expand 10 before | Expand all | Expand 10 after
3942 class ArrayInstructionInterface { 3949 class ArrayInstructionInterface {
3943 public: 3950 public:
3944 virtual HValue* GetKey() = 0; 3951 virtual HValue* GetKey() = 0;
3945 virtual void SetKey(HValue* key) = 0; 3952 virtual void SetKey(HValue* key) = 0;
3946 virtual void SetIndexOffset(uint32_t index_offset) = 0; 3953 virtual void SetIndexOffset(uint32_t index_offset) = 0;
3947 virtual bool IsDehoisted() = 0; 3954 virtual bool IsDehoisted() = 0;
3948 virtual void SetDehoisted(bool is_dehoisted) = 0; 3955 virtual void SetDehoisted(bool is_dehoisted) = 0;
3949 virtual ~ArrayInstructionInterface() { }; 3956 virtual ~ArrayInstructionInterface() { };
3950 }; 3957 };
3951 3958
3952
3953 enum HoleCheckMode { PERFORM_HOLE_CHECK, OMIT_HOLE_CHECK };
3954
3955 class HLoadKeyedFastElement 3959 class HLoadKeyedFastElement
3956 : public HTemplateInstruction<2>, public ArrayInstructionInterface { 3960 : public HTemplateInstruction<2>, public ArrayInstructionInterface {
3957 public: 3961 public:
3962 enum HoleCheckMode { PERFORM_HOLE_CHECK, OMIT_HOLE_CHECK };
3963
3958 HLoadKeyedFastElement(HValue* obj, 3964 HLoadKeyedFastElement(HValue* obj,
3959 HValue* key, 3965 HValue* key,
3960 HoleCheckMode hole_check_mode = PERFORM_HOLE_CHECK) 3966 HoleCheckMode hole_check_mode = PERFORM_HOLE_CHECK)
3961 : hole_check_mode_(hole_check_mode), 3967 : hole_check_mode_(hole_check_mode),
3962 index_offset_(0), 3968 index_offset_(0),
3963 is_dehoisted_(false) { 3969 is_dehoisted_(false) {
3964 SetOperandAt(0, obj); 3970 SetOperandAt(0, obj);
3965 SetOperandAt(1, key); 3971 SetOperandAt(1, key);
3966 set_representation(Representation::Tagged()); 3972 set_representation(Representation::Tagged());
3967 SetGVNFlag(kDependsOnArrayElements); 3973 SetGVNFlag(kDependsOnArrayElements);
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
4002 private: 4008 private:
4003 HoleCheckMode hole_check_mode_; 4009 HoleCheckMode hole_check_mode_;
4004 uint32_t index_offset_; 4010 uint32_t index_offset_;
4005 bool is_dehoisted_; 4011 bool is_dehoisted_;
4006 }; 4012 };
4007 4013
4008 4014
4009 class HLoadKeyedFastDoubleElement 4015 class HLoadKeyedFastDoubleElement
4010 : public HTemplateInstruction<2>, public ArrayInstructionInterface { 4016 : public HTemplateInstruction<2>, public ArrayInstructionInterface {
4011 public: 4017 public:
4012 HLoadKeyedFastDoubleElement( 4018 HLoadKeyedFastDoubleElement(HValue* elements, HValue* key)
4013 HValue* elements, 4019 : index_offset_(0), is_dehoisted_(false) {
4014 HValue* key, 4020 SetOperandAt(0, elements);
4015 HoleCheckMode hole_check_mode = PERFORM_HOLE_CHECK) 4021 SetOperandAt(1, key);
4016 : index_offset_(0), 4022 set_representation(Representation::Double());
4017 is_dehoisted_(false),
4018 hole_check_mode_(hole_check_mode) {
4019 SetOperandAt(0, elements);
4020 SetOperandAt(1, key);
4021 set_representation(Representation::Double());
4022 SetGVNFlag(kDependsOnDoubleArrayElements); 4023 SetGVNFlag(kDependsOnDoubleArrayElements);
4023 SetFlag(kUseGVN); 4024 SetFlag(kUseGVN);
4024 } 4025 }
4025 4026
4026 HValue* elements() { return OperandAt(0); } 4027 HValue* elements() { return OperandAt(0); }
4027 HValue* key() { return OperandAt(1); } 4028 HValue* key() { return OperandAt(1); }
4028 uint32_t index_offset() { return index_offset_; } 4029 uint32_t index_offset() { return index_offset_; }
4029 void SetIndexOffset(uint32_t index_offset) { index_offset_ = index_offset; } 4030 void SetIndexOffset(uint32_t index_offset) { index_offset_ = index_offset; }
4030 HValue* GetKey() { return key(); } 4031 HValue* GetKey() { return key(); }
4031 void SetKey(HValue* key) { SetOperandAt(1, key); } 4032 void SetKey(HValue* key) { SetOperandAt(1, key); }
4032 bool IsDehoisted() { return is_dehoisted_; } 4033 bool IsDehoisted() { return is_dehoisted_; }
4033 void SetDehoisted(bool is_dehoisted) { is_dehoisted_ = is_dehoisted; } 4034 void SetDehoisted(bool is_dehoisted) { is_dehoisted_ = is_dehoisted; }
4034 4035
4035 virtual Representation RequiredInputRepresentation(int index) { 4036 virtual Representation RequiredInputRepresentation(int index) {
4036 // The key is supposed to be Integer32. 4037 // The key is supposed to be Integer32.
4037 return index == 0 4038 return index == 0
4038 ? Representation::Tagged() 4039 ? Representation::Tagged()
4039 : Representation::Integer32(); 4040 : Representation::Integer32();
4040 } 4041 }
4041 4042
4042 bool RequiresHoleCheck() {
4043 return hole_check_mode_ == PERFORM_HOLE_CHECK;
4044 }
4045
4046 virtual void PrintDataTo(StringStream* stream); 4043 virtual void PrintDataTo(StringStream* stream);
4047 4044
4048 DECLARE_CONCRETE_INSTRUCTION(LoadKeyedFastDoubleElement) 4045 DECLARE_CONCRETE_INSTRUCTION(LoadKeyedFastDoubleElement)
4049 4046
4050 protected: 4047 protected:
4051 virtual bool DataEquals(HValue* other) { 4048 virtual bool DataEquals(HValue* other) { return true; }
4052 if (!other->IsLoadKeyedFastDoubleElement()) return false;
4053 HLoadKeyedFastDoubleElement* other_load =
4054 HLoadKeyedFastDoubleElement::cast(other);
4055 return hole_check_mode_ == other_load->hole_check_mode_;
4056 }
4057 4049
4058 private: 4050 private:
4059 uint32_t index_offset_; 4051 uint32_t index_offset_;
4060 bool is_dehoisted_; 4052 bool is_dehoisted_;
4061 HoleCheckMode hole_check_mode_;
4062 }; 4053 };
4063 4054
4064 4055
4065 class HLoadKeyedSpecializedArrayElement 4056 class HLoadKeyedSpecializedArrayElement
4066 : public HTemplateInstruction<2>, public ArrayInstructionInterface { 4057 : public HTemplateInstruction<2>, public ArrayInstructionInterface {
4067 public: 4058 public:
4068 HLoadKeyedSpecializedArrayElement(HValue* external_elements, 4059 HLoadKeyedSpecializedArrayElement(HValue* external_elements,
4069 HValue* key, 4060 HValue* key,
4070 ElementsKind elements_kind) 4061 ElementsKind elements_kind)
4071 : elements_kind_(elements_kind), 4062 : elements_kind_(elements_kind),
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
4258 // The key is supposed to be Integer32. 4249 // The key is supposed to be Integer32.
4259 return index == 1 4250 return index == 1
4260 ? Representation::Integer32() 4251 ? Representation::Integer32()
4261 : Representation::Tagged(); 4252 : Representation::Tagged();
4262 } 4253 }
4263 4254
4264 HValue* object() { return OperandAt(0); } 4255 HValue* object() { return OperandAt(0); }
4265 HValue* key() { return OperandAt(1); } 4256 HValue* key() { return OperandAt(1); }
4266 HValue* value() { return OperandAt(2); } 4257 HValue* value() { return OperandAt(2); }
4267 bool value_is_smi() { 4258 bool value_is_smi() {
4268 return IsFastSmiElementsKind(elements_kind_); 4259 return elements_kind_ == FAST_SMI_ONLY_ELEMENTS;
4269 } 4260 }
4270 uint32_t index_offset() { return index_offset_; } 4261 uint32_t index_offset() { return index_offset_; }
4271 void SetIndexOffset(uint32_t index_offset) { index_offset_ = index_offset; } 4262 void SetIndexOffset(uint32_t index_offset) { index_offset_ = index_offset; }
4272 HValue* GetKey() { return key(); } 4263 HValue* GetKey() { return key(); }
4273 void SetKey(HValue* key) { SetOperandAt(1, key); } 4264 void SetKey(HValue* key) { SetOperandAt(1, key); }
4274 bool IsDehoisted() { return is_dehoisted_; } 4265 bool IsDehoisted() { return is_dehoisted_; }
4275 void SetDehoisted(bool is_dehoisted) { is_dehoisted_ = is_dehoisted; } 4266 void SetDehoisted(bool is_dehoisted) { is_dehoisted_ = is_dehoisted; }
4276 4267
4277 bool NeedsWriteBarrier() { 4268 bool NeedsWriteBarrier() {
4278 if (value_is_smi()) { 4269 if (value_is_smi()) {
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
4429 4420
4430 class HTransitionElementsKind: public HTemplateInstruction<1> { 4421 class HTransitionElementsKind: public HTemplateInstruction<1> {
4431 public: 4422 public:
4432 HTransitionElementsKind(HValue* object, 4423 HTransitionElementsKind(HValue* object,
4433 Handle<Map> original_map, 4424 Handle<Map> original_map,
4434 Handle<Map> transitioned_map) 4425 Handle<Map> transitioned_map)
4435 : original_map_(original_map), 4426 : original_map_(original_map),
4436 transitioned_map_(transitioned_map) { 4427 transitioned_map_(transitioned_map) {
4437 SetOperandAt(0, object); 4428 SetOperandAt(0, object);
4438 SetFlag(kUseGVN); 4429 SetFlag(kUseGVN);
4439 // Don't set GVN DependOn flags here. That would defeat GVN's detection of
4440 // congruent HTransitionElementsKind instructions. Instruction hoisting
4441 // handles HTransitionElementsKind instruction specially, explicitly adding
4442 // DependsOn flags during its dependency calculations.
4443 SetGVNFlag(kChangesElementsKind); 4430 SetGVNFlag(kChangesElementsKind);
4444 if (original_map->has_fast_double_elements()) { 4431 SetGVNFlag(kChangesElementsPointer);
4445 SetGVNFlag(kChangesElementsPointer); 4432 SetGVNFlag(kChangesNewSpacePromotion);
4446 SetGVNFlag(kChangesNewSpacePromotion);
4447 }
4448 if (transitioned_map->has_fast_double_elements()) {
4449 SetGVNFlag(kChangesElementsPointer);
4450 SetGVNFlag(kChangesNewSpacePromotion);
4451 }
4452 set_representation(Representation::Tagged()); 4433 set_representation(Representation::Tagged());
4453 } 4434 }
4454 4435
4455 virtual Representation RequiredInputRepresentation(int index) { 4436 virtual Representation RequiredInputRepresentation(int index) {
4456 return Representation::Tagged(); 4437 return Representation::Tagged();
4457 } 4438 }
4458 4439
4459 HValue* object() { return OperandAt(0); } 4440 HValue* object() { return OperandAt(0); }
4460 Handle<Map> original_map() { return original_map_; } 4441 Handle<Map> original_map() { return original_map_; }
4461 Handle<Map> transitioned_map() { return transitioned_map_; } 4442 Handle<Map> transitioned_map() { return transitioned_map_; }
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
4679 : HMaterializedLiteral<1>(literal_index, depth), 4660 : HMaterializedLiteral<1>(literal_index, depth),
4680 length_(length), 4661 length_(length),
4681 boilerplate_object_(boilerplate_object) { 4662 boilerplate_object_(boilerplate_object) {
4682 SetOperandAt(0, context); 4663 SetOperandAt(0, context);
4683 SetGVNFlag(kChangesNewSpacePromotion); 4664 SetGVNFlag(kChangesNewSpacePromotion);
4684 } 4665 }
4685 4666
4686 HValue* context() { return OperandAt(0); } 4667 HValue* context() { return OperandAt(0); }
4687 ElementsKind boilerplate_elements_kind() const { 4668 ElementsKind boilerplate_elements_kind() const {
4688 if (!boilerplate_object_->IsJSObject()) { 4669 if (!boilerplate_object_->IsJSObject()) {
4689 return TERMINAL_FAST_ELEMENTS_KIND; 4670 return FAST_ELEMENTS;
4690 } 4671 }
4691 return Handle<JSObject>::cast(boilerplate_object_)->GetElementsKind(); 4672 return Handle<JSObject>::cast(boilerplate_object_)->GetElementsKind();
4692 } 4673 }
4693 Handle<HeapObject> boilerplate_object() const { return boilerplate_object_; } 4674 Handle<HeapObject> boilerplate_object() const { return boilerplate_object_; }
4694 int length() const { return length_; } 4675 int length() const { return length_; }
4695 4676
4696 bool IsCopyOnWrite() const; 4677 bool IsCopyOnWrite() const;
4697 4678
4698 virtual Representation RequiredInputRepresentation(int index) { 4679 virtual Representation RequiredInputRepresentation(int index) {
4699 return Representation::Tagged(); 4680 return Representation::Tagged();
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
5053 DECLARE_CONCRETE_INSTRUCTION(LoadFieldByIndex); 5034 DECLARE_CONCRETE_INSTRUCTION(LoadFieldByIndex);
5054 }; 5035 };
5055 5036
5056 5037
5057 #undef DECLARE_INSTRUCTION 5038 #undef DECLARE_INSTRUCTION
5058 #undef DECLARE_CONCRETE_INSTRUCTION 5039 #undef DECLARE_CONCRETE_INSTRUCTION
5059 5040
5060 } } // namespace v8::internal 5041 } } // namespace v8::internal
5061 5042
5062 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ 5043 #endif // V8_HYDROGEN_INSTRUCTIONS_H_
OLDNEW
« no previous file with comments | « src/hydrogen.cc ('k') | src/hydrogen-instructions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698