Swapped transition array and descriptor array.
[platform/upstream/v8.git] / src / transitions-inl.h
1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 //     * Redistributions of source code must retain the above copyright
7 //       notice, this list of conditions and the following disclaimer.
8 //     * Redistributions in binary form must reproduce the above
9 //       copyright notice, this list of conditions and the following
10 //       disclaimer in the documentation and/or other materials provided
11 //       with the distribution.
12 //     * Neither the name of Google Inc. nor the names of its
13 //       contributors may be used to endorse or promote products derived
14 //       from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 #ifndef V8_TRANSITIONS_INL_H_
29 #define V8_TRANSITIONS_INL_H_
30
31 #include "objects-inl.h"
32 #include "transitions.h"
33
34 namespace v8 {
35 namespace internal {
36
37
38 #define FIELD_ADDR(p, offset) \
39   (reinterpret_cast<byte*>(p) + offset - kHeapObjectTag)
40
41 #define WRITE_FIELD(p, offset, value) \
42   (*reinterpret_cast<Object**>(FIELD_ADDR(p, offset)) = value)
43
44 #define CONDITIONAL_WRITE_BARRIER(heap, object, offset, value, mode)    \
45   if (mode == UPDATE_WRITE_BARRIER) {                                   \
46     heap->incremental_marking()->RecordWrite(                           \
47       object, HeapObject::RawField(object, offset), value);             \
48     if (heap->InNewSpace(value)) {                                      \
49       heap->RecordWrite(object->address(), offset);                     \
50     }                                                                   \
51   }
52
53
54 TransitionArray* TransitionArray::cast(Object* object) {
55   ASSERT(object->IsTransitionArray());
56   return reinterpret_cast<TransitionArray*>(object);
57 }
58
59
60 Map* TransitionArray::elements_transition() {
61   Object* transition_map = get(kElementsTransitionIndex);
62   return Map::cast(transition_map);
63 }
64
65
66 void TransitionArray::ClearElementsTransition() {
67   WRITE_FIELD(this, kElementsTransitionOffset, Smi::FromInt(0));
68 }
69
70
71 bool TransitionArray::HasElementsTransition() {
72   return get(kElementsTransitionIndex) != Smi::FromInt(0);
73 }
74
75
76 void TransitionArray::set_elements_transition(Map* transition_map,
77                                               WriteBarrierMode mode) {
78   Heap* heap = GetHeap();
79   WRITE_FIELD(this, kElementsTransitionOffset, transition_map);
80   CONDITIONAL_WRITE_BARRIER(
81       heap, this, kElementsTransitionOffset, transition_map, mode);
82 }
83
84
85 DescriptorArray* TransitionArray::descriptors() {
86   return DescriptorArray::cast(get(kDescriptorsIndex));
87 }
88
89
90 void TransitionArray::set_descriptors(DescriptorArray* descriptors,
91                                       WriteBarrierMode mode) {
92   Heap* heap = GetHeap();
93   WRITE_FIELD(this, kDescriptorsOffset, descriptors);
94   CONDITIONAL_WRITE_BARRIER(
95       heap, this, kDescriptorsOffset, descriptors, mode);
96 }
97
98
99 Object** TransitionArray::GetDescriptorsSlot() {
100   return HeapObject::RawField(reinterpret_cast<HeapObject*>(this),
101                               kDescriptorsOffset);
102 }
103
104
105 Object* TransitionArray::back_pointer_storage() {
106   return get(kBackPointerStorageIndex);
107 }
108
109
110 void TransitionArray::set_back_pointer_storage(Object* back_pointer,
111                                                WriteBarrierMode mode) {
112   Heap* heap = GetHeap();
113   WRITE_FIELD(this, kBackPointerStorageOffset, back_pointer);
114   CONDITIONAL_WRITE_BARRIER(
115       heap, this, kBackPointerStorageOffset, back_pointer, mode);
116 }
117
118
119 bool TransitionArray::HasPrototypeTransitions() {
120   Object* prototype_transitions = get(kPrototypeTransitionsIndex);
121   return prototype_transitions != Smi::FromInt(0);
122 }
123
124
125 FixedArray* TransitionArray::GetPrototypeTransitions() {
126   Object* prototype_transitions = get(kPrototypeTransitionsIndex);
127   return FixedArray::cast(prototype_transitions);
128 }
129
130
131 HeapObject* TransitionArray::UncheckedPrototypeTransitions() {
132   ASSERT(HasPrototypeTransitions());
133   return reinterpret_cast<HeapObject*>(get(kPrototypeTransitionsIndex));
134 }
135
136
137 void TransitionArray::SetPrototypeTransitions(FixedArray* transitions,
138                                               WriteBarrierMode mode) {
139   ASSERT(this != NULL);
140   ASSERT(transitions->IsFixedArray());
141   Heap* heap = GetHeap();
142   WRITE_FIELD(this, kPrototypeTransitionsOffset, transitions);
143   CONDITIONAL_WRITE_BARRIER(
144       heap, this, kPrototypeTransitionsOffset, transitions, mode);
145 }
146
147
148 Object** TransitionArray::GetPrototypeTransitionsSlot() {
149   return HeapObject::RawField(reinterpret_cast<HeapObject*>(this),
150                               kPrototypeTransitionsOffset);
151 }
152
153
154 Object** TransitionArray::GetKeySlot(int transition_number) {
155   ASSERT(transition_number < number_of_transitions());
156   return HeapObject::RawField(
157       reinterpret_cast<HeapObject*>(this),
158       OffsetOfElementAt(ToKeyIndex(transition_number)));
159 }
160
161
162 String* TransitionArray::GetKey(int transition_number) {
163   ASSERT(transition_number < number_of_transitions());
164   return String::cast(get(ToKeyIndex(transition_number)));
165 }
166
167
168 void TransitionArray::SetKey(int transition_number, String* key) {
169   ASSERT(transition_number < number_of_transitions());
170   set(ToKeyIndex(transition_number), key);
171 }
172
173
174 Map* TransitionArray::GetTarget(int transition_number) {
175   ASSERT(transition_number < number_of_transitions());
176   return Map::cast(get(ToTargetIndex(transition_number)));
177 }
178
179
180 void TransitionArray::SetTarget(int transition_number, Map* value) {
181   ASSERT(transition_number < number_of_transitions());
182   set(ToTargetIndex(transition_number), value);
183 }
184
185
186 PropertyDetails TransitionArray::GetTargetDetails(int transition_number) {
187   Map* map = GetTarget(transition_number);
188   DescriptorArray* descriptors = map->instance_descriptors();
189   int descriptor = map->LastAdded();
190   ASSERT(descriptor != Map::kNoneAdded);
191   return descriptors->GetDetails(descriptor);
192 }
193
194
195 int TransitionArray::Search(String* name) {
196   return internal::Search(this, name);
197 }
198
199
200 void TransitionArray::Set(int transition_number,
201                           String* key,
202                           Map* target,
203                           const WhitenessWitness&) {
204   NoIncrementalWriteBarrierSet(this,
205                                ToKeyIndex(transition_number),
206                                key);
207   NoIncrementalWriteBarrierSet(this,
208                                ToTargetIndex(transition_number),
209                                target);
210 }
211
212
213 #undef FIELD_ADDR
214 #undef WRITE_FIELD
215 #undef CONDITIONAL_WRITE_BARRIER
216
217
218 } }  // namespace v8::internal
219
220 #endif  // V8_TRANSITIONS_INL_H_