deps: update v8 to 4.3.61.21
[platform/upstream/nodejs.git] / deps / v8 / src / property-details.h
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
3 // found in the LICENSE file.
4
5 #ifndef V8_PROPERTY_DETAILS_H_
6 #define V8_PROPERTY_DETAILS_H_
7
8 #include "include/v8.h"
9 #include "src/allocation.h"
10 #include "src/utils.h"
11
12 // Ecma-262 3rd 8.6.1
13 enum PropertyAttributes {
14   NONE              = v8::None,
15   READ_ONLY         = v8::ReadOnly,
16   DONT_ENUM         = v8::DontEnum,
17   DONT_DELETE       = v8::DontDelete,
18
19   SEALED            = DONT_DELETE,
20   FROZEN            = SEALED | READ_ONLY,
21
22   STRING            = 8,  // Used to filter symbols and string names
23   SYMBOLIC          = 16,
24   PRIVATE_SYMBOL    = 32,
25
26   DONT_SHOW         = DONT_ENUM | SYMBOLIC | PRIVATE_SYMBOL,
27   ABSENT            = 64  // Used in runtime to indicate a property is absent.
28   // ABSENT can never be stored in or returned from a descriptor's attributes
29   // bitfield.  It is only used as a return value meaning the attributes of
30   // a non-existent property.
31 };
32
33
34 namespace v8 {
35 namespace internal {
36
37 class Smi;
38 template<class> class TypeImpl;
39 struct ZoneTypeConfig;
40 typedef TypeImpl<ZoneTypeConfig> Type;
41 class TypeInfo;
42
43 // Type of properties.
44 // Order of kinds is significant.
45 // Must fit in the BitField PropertyDetails::KindField.
46 enum PropertyKind { kData = 0, kAccessor = 1 };
47
48
49 // Order of modes is significant.
50 // Must fit in the BitField PropertyDetails::StoreModeField.
51 enum PropertyLocation { kField = 0, kDescriptor = 1 };
52
53
54 // Order of properties is significant.
55 // Must fit in the BitField PropertyDetails::TypeField.
56 // A copy of this is in mirror-debugger.js.
57 enum PropertyType {
58   DATA = (kField << 1) | kData,
59   DATA_CONSTANT = (kDescriptor << 1) | kData,
60   ACCESSOR = (kField << 1) | kAccessor,
61   ACCESSOR_CONSTANT = (kDescriptor << 1) | kAccessor
62 };
63
64
65 class Representation {
66  public:
67   enum Kind {
68     kNone,
69     kInteger8,
70     kUInteger8,
71     kInteger16,
72     kUInteger16,
73     kSmi,
74     kInteger32,
75     kDouble,
76     kHeapObject,
77     kTagged,
78     kExternal,
79     kNumRepresentations
80   };
81
82   Representation() : kind_(kNone) { }
83
84   static Representation None() { return Representation(kNone); }
85   static Representation Tagged() { return Representation(kTagged); }
86   static Representation Integer8() { return Representation(kInteger8); }
87   static Representation UInteger8() { return Representation(kUInteger8); }
88   static Representation Integer16() { return Representation(kInteger16); }
89   static Representation UInteger16() { return Representation(kUInteger16); }
90   static Representation Smi() { return Representation(kSmi); }
91   static Representation Integer32() { return Representation(kInteger32); }
92   static Representation Double() { return Representation(kDouble); }
93   static Representation HeapObject() { return Representation(kHeapObject); }
94   static Representation External() { return Representation(kExternal); }
95
96   static Representation FromKind(Kind kind) { return Representation(kind); }
97
98   static Representation FromType(Type* type);
99
100   bool Equals(const Representation& other) const {
101     return kind_ == other.kind_;
102   }
103
104   bool IsCompatibleForLoad(const Representation& other) const {
105     return (IsDouble() && other.IsDouble()) ||
106         (!IsDouble() && !other.IsDouble());
107   }
108
109   bool IsCompatibleForStore(const Representation& other) const {
110     return Equals(other);
111   }
112
113   bool is_more_general_than(const Representation& other) const {
114     if (kind_ == kExternal && other.kind_ == kNone) return true;
115     if (kind_ == kExternal && other.kind_ == kExternal) return false;
116     if (kind_ == kNone && other.kind_ == kExternal) return false;
117
118     DCHECK(kind_ != kExternal);
119     DCHECK(other.kind_ != kExternal);
120     if (IsHeapObject()) return other.IsNone();
121     if (kind_ == kUInteger8 && other.kind_ == kInteger8) return false;
122     if (kind_ == kUInteger16 && other.kind_ == kInteger16) return false;
123     return kind_ > other.kind_;
124   }
125
126   bool fits_into(const Representation& other) const {
127     return other.is_more_general_than(*this) || other.Equals(*this);
128   }
129
130   Representation generalize(Representation other) {
131     if (other.fits_into(*this)) return *this;
132     if (other.is_more_general_than(*this)) return other;
133     return Representation::Tagged();
134   }
135
136   int size() const {
137     DCHECK(!IsNone());
138     if (IsInteger8() || IsUInteger8()) {
139       return sizeof(uint8_t);
140     }
141     if (IsInteger16() || IsUInteger16()) {
142       return sizeof(uint16_t);
143     }
144     if (IsInteger32()) {
145       return sizeof(uint32_t);
146     }
147     return kPointerSize;
148   }
149
150   Kind kind() const { return static_cast<Kind>(kind_); }
151   bool IsNone() const { return kind_ == kNone; }
152   bool IsInteger8() const { return kind_ == kInteger8; }
153   bool IsUInteger8() const { return kind_ == kUInteger8; }
154   bool IsInteger16() const { return kind_ == kInteger16; }
155   bool IsUInteger16() const { return kind_ == kUInteger16; }
156   bool IsTagged() const { return kind_ == kTagged; }
157   bool IsSmi() const { return kind_ == kSmi; }
158   bool IsSmiOrTagged() const { return IsSmi() || IsTagged(); }
159   bool IsInteger32() const { return kind_ == kInteger32; }
160   bool IsSmiOrInteger32() const { return IsSmi() || IsInteger32(); }
161   bool IsDouble() const { return kind_ == kDouble; }
162   bool IsHeapObject() const { return kind_ == kHeapObject; }
163   bool IsExternal() const { return kind_ == kExternal; }
164   bool IsSpecialization() const {
165     return IsInteger8() || IsUInteger8() ||
166       IsInteger16() || IsUInteger16() ||
167       IsSmi() || IsInteger32() || IsDouble();
168   }
169   const char* Mnemonic() const;
170
171  private:
172   explicit Representation(Kind k) : kind_(k) { }
173
174   // Make sure kind fits in int8.
175   STATIC_ASSERT(kNumRepresentations <= (1 << kBitsPerByte));
176
177   int8_t kind_;
178 };
179
180
181 static const int kDescriptorIndexBitCount = 10;
182 // The maximum number of descriptors we want in a descriptor array (should
183 // fit in a page).
184 static const int kMaxNumberOfDescriptors =
185     (1 << kDescriptorIndexBitCount) - 2;
186 static const int kInvalidEnumCacheSentinel =
187     (1 << kDescriptorIndexBitCount) - 1;
188
189
190 enum class PropertyCellType {
191   kUninitialized,        // Cell is deleted or not yet defined.
192   kUndefined,            // The PREMONOMORPHIC of property cells.
193   kConstant,             // Cell has been assigned only once.
194   kMutable,              // Cell will no longer be tracked as constant.
195   kDeleted = kConstant,  // like kUninitialized, but for cells already deleted.
196   kInvalid = kMutable,   // For dictionaries not holding cells.
197 };
198
199
200 // PropertyDetails captures type and attributes for a property.
201 // They are used both in property dictionaries and instance descriptors.
202 class PropertyDetails BASE_EMBEDDED {
203  public:
204   PropertyDetails(PropertyAttributes attributes, PropertyType type, int index,
205                   PropertyCellType cell_type) {
206     value_ = TypeField::encode(type) | AttributesField::encode(attributes) |
207              DictionaryStorageField::encode(index) |
208              PropertyCellTypeField::encode(cell_type);
209
210     DCHECK(type == this->type());
211     DCHECK(attributes == this->attributes());
212   }
213
214   PropertyDetails(PropertyAttributes attributes,
215                   PropertyType type,
216                   Representation representation,
217                   int field_index = 0) {
218     value_ = TypeField::encode(type)
219         | AttributesField::encode(attributes)
220         | RepresentationField::encode(EncodeRepresentation(representation))
221         | FieldIndexField::encode(field_index);
222   }
223
224   PropertyDetails(PropertyAttributes attributes, PropertyKind kind,
225                   PropertyLocation location, Representation representation,
226                   int field_index = 0) {
227     value_ = KindField::encode(kind) | LocationField::encode(location) |
228              AttributesField::encode(attributes) |
229              RepresentationField::encode(EncodeRepresentation(representation)) |
230              FieldIndexField::encode(field_index);
231   }
232
233   static PropertyDetails Empty() {
234     return PropertyDetails(NONE, DATA, 0, PropertyCellType::kInvalid);
235   }
236
237   int pointer() const { return DescriptorPointer::decode(value_); }
238
239   PropertyDetails set_pointer(int i) const {
240     return PropertyDetails(value_, i);
241   }
242
243   PropertyDetails set_cell_type(PropertyCellType type) const {
244     PropertyDetails details = *this;
245     details.value_ = PropertyCellTypeField::update(details.value_, type);
246     return details;
247   }
248
249   PropertyDetails set_index(int index) const {
250     PropertyDetails details = *this;
251     details.value_ = DictionaryStorageField::update(details.value_, index);
252     return details;
253   }
254
255   PropertyDetails CopyWithRepresentation(Representation representation) const {
256     return PropertyDetails(value_, representation);
257   }
258   PropertyDetails CopyAddAttributes(PropertyAttributes new_attributes) const {
259     new_attributes =
260         static_cast<PropertyAttributes>(attributes() | new_attributes);
261     return PropertyDetails(value_, new_attributes);
262   }
263
264   // Conversion for storing details as Object*.
265   explicit inline PropertyDetails(Smi* smi);
266   inline Smi* AsSmi() const;
267
268   static uint8_t EncodeRepresentation(Representation representation) {
269     return representation.kind();
270   }
271
272   static Representation DecodeRepresentation(uint32_t bits) {
273     return Representation::FromKind(static_cast<Representation::Kind>(bits));
274   }
275
276   PropertyKind kind() const { return KindField::decode(value_); }
277   PropertyLocation location() const { return LocationField::decode(value_); }
278
279   PropertyType type() const { return TypeField::decode(value_); }
280
281   PropertyAttributes attributes() const {
282     return AttributesField::decode(value_);
283   }
284
285   int dictionary_index() const {
286     return DictionaryStorageField::decode(value_);
287   }
288
289   Representation representation() const {
290     return DecodeRepresentation(RepresentationField::decode(value_));
291   }
292
293   int field_index() const { return FieldIndexField::decode(value_); }
294
295   inline int field_width_in_words() const;
296
297   static bool IsValidIndex(int index) {
298     return DictionaryStorageField::is_valid(index);
299   }
300
301   bool IsReadOnly() const { return (attributes() & READ_ONLY) != 0; }
302   bool IsConfigurable() const { return (attributes() & DONT_DELETE) == 0; }
303   bool IsDontEnum() const { return (attributes() & DONT_ENUM) != 0; }
304   PropertyCellType cell_type() const {
305     return PropertyCellTypeField::decode(value_);
306   }
307
308   // Bit fields in value_ (type, shift, size). Must be public so the
309   // constants can be embedded in generated code.
310   class KindField : public BitField<PropertyKind, 0, 1> {};
311   class LocationField : public BitField<PropertyLocation, 1, 1> {};
312   class AttributesField : public BitField<PropertyAttributes, 2, 3> {};
313
314   // Bit fields for normalized objects.
315   class PropertyCellTypeField : public BitField<PropertyCellType, 5, 2> {};
316   class DictionaryStorageField : public BitField<uint32_t, 7, 24> {};
317
318   // Bit fields for fast objects.
319   class RepresentationField : public BitField<uint32_t, 5, 4> {};
320   class DescriptorPointer
321       : public BitField<uint32_t, 9, kDescriptorIndexBitCount> {};  // NOLINT
322   class FieldIndexField
323       : public BitField<uint32_t, 9 + kDescriptorIndexBitCount,
324                         kDescriptorIndexBitCount> {};  // NOLINT
325
326   // NOTE: TypeField overlaps with KindField and LocationField.
327   class TypeField : public BitField<PropertyType, 0, 2> {};
328   STATIC_ASSERT(KindField::kNext == LocationField::kShift);
329   STATIC_ASSERT(TypeField::kShift == KindField::kShift);
330   STATIC_ASSERT(TypeField::kNext == LocationField::kNext);
331
332   // All bits for both fast and slow objects must fit in a smi.
333   STATIC_ASSERT(DictionaryStorageField::kNext <= 31);
334   STATIC_ASSERT(FieldIndexField::kNext <= 31);
335
336   static const int kInitialIndex = 1;
337
338 #ifdef OBJECT_PRINT
339   // For our gdb macros, we should perhaps change these in the future.
340   void Print(bool dictionary_mode);
341 #endif
342
343  private:
344   PropertyDetails(int value, int pointer) {
345     value_ = DescriptorPointer::update(value, pointer);
346   }
347   PropertyDetails(int value, Representation representation) {
348     value_ = RepresentationField::update(
349         value, EncodeRepresentation(representation));
350   }
351   PropertyDetails(int value, PropertyAttributes attributes) {
352     value_ = AttributesField::update(value, attributes);
353   }
354
355   uint32_t value_;
356 };
357
358
359 std::ostream& operator<<(std::ostream& os,
360                          const PropertyAttributes& attributes);
361 std::ostream& operator<<(std::ostream& os, const PropertyDetails& details);
362 } }  // namespace v8::internal
363
364 #endif  // V8_PROPERTY_DETAILS_H_