| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_FIELD_INDEX_H_ | 5 #ifndef V8_FIELD_INDEX_H_ |
| 6 #define V8_FIELD_INDEX_H_ | 6 #define V8_FIELD_INDEX_H_ |
| 7 | 7 |
| 8 #include "src/utils.h" | 8 #include "src/utils.h" |
| 9 #include "src/property-details.h" | 9 #include "src/property-details.h" |
| 10 | 10 |
| 11 namespace v8 { | 11 namespace v8 { |
| 12 namespace internal { | 12 namespace internal { |
| 13 | 13 |
| 14 class Map; | 14 class Map; |
| 15 | 15 |
| 16 // Wrapper class to hold a field index, usually but not necessarily generated | 16 // Wrapper class to hold a field index, usually but not necessarily generated |
| 17 // from a property index. When available, the wrapper class captures additional | 17 // from a property index. When available, the wrapper class captures additional |
| 18 // information to allow the field index to be translated back into the property | 18 // information to allow the field index to be translated back into the property |
| 19 // index it was originally generated from. | 19 // index it was originally generated from. |
| 20 class FieldIndex V8_FINAL { | 20 class FieldIndex V8_FINAL { |
| 21 public: | 21 public: |
| 22 static FieldIndex ForPropertyIndex(Map* map, | 22 static FieldIndex ForPropertyIndex(Map* map, |
| 23 int index, | 23 int index, |
| 24 bool is_double = false); | 24 bool is_double = false); |
| 25 static FieldIndex ForInObjectOffset(int offset, Map* map = NULL); | 25 static FieldIndex ForInObjectOffset(int offset, Map* map = NULL); |
| 26 static FieldIndex ForLookupResult(const LookupResult* result); | 26 static FieldIndex ForLookupResult(const LookupResult* result); |
| 27 static FieldIndex ForDescriptor(Map* map, int descriptor_index); | 27 static FieldIndex ForDescriptor(Map* map, int descriptor_index); |
| 28 static FieldIndex ForLoadByFieldIndex(Map* map, int index); | 28 static FieldIndex ForLoadByFieldIndex(Map* map, int index); |
| 29 static FieldIndex ForKeyedLookupCacheIndex(Map* map, int index); | 29 static FieldIndex ForKeyedLookupCacheIndex(Map* map, int index) { |
| 30 return ForPropertyIndex(map, index); |
| 31 } |
| 30 | 32 |
| 31 bool is_inobject() const { | 33 bool is_inobject() const { |
| 32 return IsInObjectBits::decode(bit_field_); | 34 return IsInObjectBits::decode(bit_field_); |
| 33 } | 35 } |
| 34 | 36 |
| 35 bool is_double() const { | 37 bool is_double() const { |
| 36 return IsDoubleBits::decode(bit_field_); | 38 return IsDoubleBits::decode(bit_field_); |
| 37 } | 39 } |
| 38 | 40 |
| 39 int offset() const { | 41 int offset() const { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 66 // The index itself is shifted up by one bit, the lower-most bit | 68 // The index itself is shifted up by one bit, the lower-most bit |
| 67 // signifying if the field is a mutable double box (1) or not (0). | 69 // signifying if the field is a mutable double box (1) or not (0). |
| 68 int result = index() - first_inobject_property_offset() / kPointerSize; | 70 int result = index() - first_inobject_property_offset() / kPointerSize; |
| 69 if (!is_inobject()) { | 71 if (!is_inobject()) { |
| 70 result = -result - 1; | 72 result = -result - 1; |
| 71 } | 73 } |
| 72 result <<= 1; | 74 result <<= 1; |
| 73 return is_double() ? (result | 1) : result; | 75 return is_double() ? (result | 1) : result; |
| 74 } | 76 } |
| 75 | 77 |
| 76 int GetKeyedLookupCacheIndex() const; | 78 int GetKeyedLookupCacheIndex() const { |
| 79 return property_index(); |
| 80 } |
| 77 | 81 |
| 78 int GetLoadFieldStubKey() const { | 82 int GetLoadFieldStubKey() const { |
| 79 return bit_field_ & | 83 return bit_field_ & |
| 80 (IsInObjectBits::kMask | IsDoubleBits::kMask | IndexBits::kMask); | 84 (IsInObjectBits::kMask | IsDoubleBits::kMask | IndexBits::kMask); |
| 81 } | 85 } |
| 82 | 86 |
| 83 private: | 87 private: |
| 84 FieldIndex(bool is_inobject, int local_index, bool is_double, | 88 FieldIndex(bool is_inobject, int local_index, bool is_double, |
| 85 int inobject_properties, int first_inobject_property_offset, | 89 int inobject_properties, int first_inobject_property_offset, |
| 86 bool is_hidden = false) { | 90 bool is_hidden = false) { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 110 class IsHiddenField: | 114 class IsHiddenField: |
| 111 public BitField<bool, FirstInobjectPropertyOffsetBits::kNext, 1> {}; | 115 public BitField<bool, FirstInobjectPropertyOffsetBits::kNext, 1> {}; |
| 112 STATIC_ASSERT(IsHiddenField::kNext <= 32); | 116 STATIC_ASSERT(IsHiddenField::kNext <= 32); |
| 113 | 117 |
| 114 int bit_field_; | 118 int bit_field_; |
| 115 }; | 119 }; |
| 116 | 120 |
| 117 } } // namespace v8::internal | 121 } } // namespace v8::internal |
| 118 | 122 |
| 119 #endif | 123 #endif |
| OLD | NEW |