OLD | NEW |
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 3293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3304 ASSERT(unique_id_ != UniqueValueId(heap->minus_zero_value())); | 3304 ASSERT(unique_id_ != UniqueValueId(heap->minus_zero_value())); |
3305 ASSERT(unique_id_ != UniqueValueId(heap->nan_value())); | 3305 ASSERT(unique_id_ != UniqueValueId(heap->nan_value())); |
3306 return unique_id_ == UniqueValueId(heap->undefined_value()) || | 3306 return unique_id_ == UniqueValueId(heap->undefined_value()) || |
3307 unique_id_ == UniqueValueId(heap->null_value()) || | 3307 unique_id_ == UniqueValueId(heap->null_value()) || |
3308 unique_id_ == UniqueValueId(heap->true_value()) || | 3308 unique_id_ == UniqueValueId(heap->true_value()) || |
3309 unique_id_ == UniqueValueId(heap->false_value()) || | 3309 unique_id_ == UniqueValueId(heap->false_value()) || |
3310 unique_id_ == UniqueValueId(heap->the_hole_value()) || | 3310 unique_id_ == UniqueValueId(heap->the_hole_value()) || |
3311 unique_id_ == UniqueValueId(heap->empty_string()); | 3311 unique_id_ == UniqueValueId(heap->empty_string()); |
3312 } | 3312 } |
3313 | 3313 |
| 3314 bool IsCell() const { |
| 3315 return is_cell_; |
| 3316 } |
| 3317 |
3314 virtual Representation RequiredInputRepresentation(int index) { | 3318 virtual Representation RequiredInputRepresentation(int index) { |
3315 return Representation::None(); | 3319 return Representation::None(); |
3316 } | 3320 } |
3317 | 3321 |
3318 virtual Representation KnownOptimalRepresentation() { | 3322 virtual Representation KnownOptimalRepresentation() { |
3319 if (HasSmiValue()) return Representation::Smi(); | 3323 if (HasSmiValue()) return Representation::Smi(); |
3320 if (HasInteger32Value()) return Representation::Integer32(); | 3324 if (HasInteger32Value()) return Representation::Integer32(); |
3321 if (HasNumberValue()) return Representation::Double(); | 3325 if (HasNumberValue()) return Representation::Double(); |
3322 return Representation::Tagged(); | 3326 return Representation::Tagged(); |
3323 } | 3327 } |
3324 | 3328 |
3325 virtual bool EmitAtUses() { return !representation().IsDouble(); } | 3329 virtual bool EmitAtUses(); |
3326 virtual void PrintDataTo(StringStream* stream); | 3330 virtual void PrintDataTo(StringStream* stream); |
3327 virtual HType CalculateInferredType(); | 3331 virtual HType CalculateInferredType(); |
3328 bool IsInteger() { return handle()->IsSmi(); } | 3332 bool IsInteger() { return handle()->IsSmi(); } |
3329 HConstant* CopyToRepresentation(Representation r, Zone* zone) const; | 3333 HConstant* CopyToRepresentation(Representation r, Zone* zone) const; |
3330 HConstant* CopyToTruncatedInt32(Zone* zone) const; | 3334 HConstant* CopyToTruncatedInt32(Zone* zone) const; |
3331 bool HasInteger32Value() const { return has_int32_value_; } | 3335 bool HasInteger32Value() const { return has_int32_value_; } |
3332 int32_t Integer32Value() const { | 3336 int32_t Integer32Value() const { |
3333 ASSERT(HasInteger32Value()); | 3337 ASSERT(HasInteger32Value()); |
3334 return int32_value_; | 3338 return int32_value_; |
3335 } | 3339 } |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3430 // We store the HConstant in the most specific form safely possible. | 3434 // We store the HConstant in the most specific form safely possible. |
3431 // The two flags, has_int32_value_ and has_double_value_ tell us if | 3435 // The two flags, has_int32_value_ and has_double_value_ tell us if |
3432 // int32_value_ and double_value_ hold valid, safe representations | 3436 // int32_value_ and double_value_ hold valid, safe representations |
3433 // of the constant. has_int32_value_ implies has_double_value_ but | 3437 // of the constant. has_int32_value_ implies has_double_value_ but |
3434 // not the converse. | 3438 // not the converse. |
3435 bool has_smi_value_ : 1; | 3439 bool has_smi_value_ : 1; |
3436 bool has_int32_value_ : 1; | 3440 bool has_int32_value_ : 1; |
3437 bool has_double_value_ : 1; | 3441 bool has_double_value_ : 1; |
3438 bool is_internalized_string_ : 1; // TODO(yangguo): make this part of HType. | 3442 bool is_internalized_string_ : 1; // TODO(yangguo): make this part of HType. |
3439 bool is_not_in_new_space_ : 1; | 3443 bool is_not_in_new_space_ : 1; |
| 3444 bool is_cell_ : 1; |
3440 bool boolean_value_ : 1; | 3445 bool boolean_value_ : 1; |
3441 int32_t int32_value_; | 3446 int32_t int32_value_; |
3442 double double_value_; | 3447 double double_value_; |
3443 HType type_from_value_; | 3448 HType type_from_value_; |
3444 }; | 3449 }; |
3445 | 3450 |
3446 | 3451 |
3447 class HBinaryOperation: public HTemplateInstruction<3> { | 3452 class HBinaryOperation: public HTemplateInstruction<3> { |
3448 public: | 3453 public: |
3449 HBinaryOperation(HValue* context, HValue* left, HValue* right) | 3454 HBinaryOperation(HValue* context, HValue* left, HValue* right) |
(...skipping 1632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5082 } | 5087 } |
5083 | 5088 |
5084 | 5089 |
5085 inline bool ReceiverObjectNeedsWriteBarrier(HValue* object, | 5090 inline bool ReceiverObjectNeedsWriteBarrier(HValue* object, |
5086 HValue* new_space_dominator) { | 5091 HValue* new_space_dominator) { |
5087 if (object->IsInnerAllocatedObject()) { | 5092 if (object->IsInnerAllocatedObject()) { |
5088 return ReceiverObjectNeedsWriteBarrier( | 5093 return ReceiverObjectNeedsWriteBarrier( |
5089 HInnerAllocatedObject::cast(object)->base_object(), | 5094 HInnerAllocatedObject::cast(object)->base_object(), |
5090 new_space_dominator); | 5095 new_space_dominator); |
5091 } | 5096 } |
| 5097 if (object->IsConstant() && HConstant::cast(object)->IsCell()) { |
| 5098 return false; |
| 5099 } |
5092 if (object != new_space_dominator) return true; | 5100 if (object != new_space_dominator) return true; |
5093 if (object->IsAllocateObject()) return false; | 5101 if (object->IsAllocateObject()) return false; |
5094 if (object->IsAllocate()) { | 5102 if (object->IsAllocate()) { |
5095 return !HAllocate::cast(object)->GuaranteedInNewSpace(); | 5103 return !HAllocate::cast(object)->GuaranteedInNewSpace(); |
5096 } | 5104 } |
5097 return true; | 5105 return true; |
5098 } | 5106 } |
5099 | 5107 |
5100 | 5108 |
5101 class HStoreGlobalCell: public HUnaryOperation { | 5109 class HStoreGlobalCell: public HUnaryOperation { |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5343 // Create an access to an in-object property in a JSArray. | 5351 // Create an access to an in-object property in a JSArray. |
5344 static HObjectAccess ForJSArrayOffset(int offset); | 5352 static HObjectAccess ForJSArrayOffset(int offset); |
5345 | 5353 |
5346 // Create an access to the backing store of an object. | 5354 // Create an access to the backing store of an object. |
5347 static HObjectAccess ForBackingStoreOffset(int offset); | 5355 static HObjectAccess ForBackingStoreOffset(int offset); |
5348 | 5356 |
5349 // Create an access to a resolved field (in-object or backing store). | 5357 // Create an access to a resolved field (in-object or backing store). |
5350 static HObjectAccess ForField(Handle<Map> map, | 5358 static HObjectAccess ForField(Handle<Map> map, |
5351 LookupResult *lookup, Handle<String> name = Handle<String>::null()); | 5359 LookupResult *lookup, Handle<String> name = Handle<String>::null()); |
5352 | 5360 |
| 5361 // Create an access for the payload of a Cell or JSGlobalPropertyCell. |
| 5362 static HObjectAccess ForCellPayload(Isolate* isolate); |
| 5363 |
5353 void PrintTo(StringStream* stream); | 5364 void PrintTo(StringStream* stream); |
5354 | 5365 |
5355 inline bool Equals(HObjectAccess that) const { | 5366 inline bool Equals(HObjectAccess that) const { |
5356 return value_ == that.value_; // portion and offset must match | 5367 return value_ == that.value_; // portion and offset must match |
5357 } | 5368 } |
5358 | 5369 |
5359 protected: | 5370 protected: |
5360 void SetGVNFlags(HValue *instr, bool is_store); | 5371 void SetGVNFlags(HValue *instr, bool is_store); |
5361 | 5372 |
5362 private: | 5373 private: |
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6641 virtual bool IsDeletable() const { return true; } | 6652 virtual bool IsDeletable() const { return true; } |
6642 }; | 6653 }; |
6643 | 6654 |
6644 | 6655 |
6645 #undef DECLARE_INSTRUCTION | 6656 #undef DECLARE_INSTRUCTION |
6646 #undef DECLARE_CONCRETE_INSTRUCTION | 6657 #undef DECLARE_CONCRETE_INSTRUCTION |
6647 | 6658 |
6648 } } // namespace v8::internal | 6659 } } // namespace v8::internal |
6649 | 6660 |
6650 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ | 6661 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ |
OLD | NEW |