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