summaryrefslogtreecommitdiff
path: root/deps/v8/src/objects/property-descriptor-object.h
blob: f4930c4a31cbd71578dd7db4c9c73b73d66c361a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright 2017 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef V8_OBJECTS_PROPERTY_DESCRIPTOR_OBJECT_H_
#define V8_OBJECTS_PROPERTY_DESCRIPTOR_OBJECT_H_

#include "src/objects/fixed-array.h"
#include "src/objects/objects.h"

// Has to be the last include (doesn't have include guards):
#include "src/objects/object-macros.h"

namespace v8 {
namespace internal {

class PropertyDescriptorObject : public FixedArray {
 public:
#define FLAGS_BIT_FIELDS(V, _)      \
  V(IsEnumerableBit, bool, 1, _)    \
  V(HasEnumerableBit, bool, 1, _)   \
  V(IsConfigurableBit, bool, 1, _)  \
  V(HasConfigurableBit, bool, 1, _) \
  V(IsWritableBit, bool, 1, _)      \
  V(HasWritableBit, bool, 1, _)     \
  V(HasValueBit, bool, 1, _)        \
  V(HasGetBit, bool, 1, _)          \
  V(HasSetBit, bool, 1, _)

  DEFINE_BIT_FIELDS(FLAGS_BIT_FIELDS)
#undef FLAGS_BIT_FIELDS

  enum { kFlagsIndex, kValueIndex, kGetIndex, kSetIndex, kLength };

  DECL_CAST(PropertyDescriptorObject)

  static const int kRegularAccessorPropertyBits =
      HasEnumerableBit::kMask | HasConfigurableBit::kMask | HasGetBit::kMask |
      HasSetBit::kMask;

  static const int kRegularDataPropertyBits =
      HasEnumerableBit::kMask | HasConfigurableBit::kMask |
      HasWritableBit::kMask | HasValueBit::kMask;

  static const int kHasMask = HasEnumerableBit::kMask |
                              HasConfigurableBit::kMask |
                              HasWritableBit::kMask | HasValueBit::kMask |
                              HasGetBit::kMask | HasSetBit::kMask;

  static const int kValueOffset =
      FixedArray::OffsetOfElementAt(PropertyDescriptorObject::kValueIndex);
  static const int kFlagsOffset =
      FixedArray::OffsetOfElementAt(PropertyDescriptorObject::kFlagsIndex);
  static const int kGetOffset =
      FixedArray::OffsetOfElementAt(PropertyDescriptorObject::kGetIndex);
  static const int kSetOffset =
      FixedArray::OffsetOfElementAt(PropertyDescriptorObject::kSetIndex);

  OBJECT_CONSTRUCTORS(PropertyDescriptorObject, FixedArray);
};

}  // namespace internal
}  // namespace v8

#include "src/objects/object-macros-undef.h"

#endif  // V8_OBJECTS_PROPERTY_DESCRIPTOR_OBJECT_H_