OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 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 | 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_ELEMENTS_H_ | 5 #ifndef V8_ELEMENTS_H_ |
6 #define V8_ELEMENTS_H_ | 6 #define V8_ELEMENTS_H_ |
7 | 7 |
8 #include "src/elements-kind.h" | 8 #include "src/elements-kind.h" |
9 #include "src/heap/heap.h" | 9 #include "src/heap/heap.h" |
10 #include "src/isolate.h" | 10 #include "src/isolate.h" |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 | 118 |
119 virtual void Reconfigure(Handle<JSObject> object, | 119 virtual void Reconfigure(Handle<JSObject> object, |
120 Handle<FixedArrayBase> backing_store, uint32_t entry, | 120 Handle<FixedArrayBase> backing_store, uint32_t entry, |
121 Handle<Object> value, | 121 Handle<Object> value, |
122 PropertyAttributes attributes) = 0; | 122 PropertyAttributes attributes) = 0; |
123 | 123 |
124 virtual void Add(Handle<JSObject> object, uint32_t index, | 124 virtual void Add(Handle<JSObject> object, uint32_t index, |
125 Handle<Object> value, PropertyAttributes attributes, | 125 Handle<Object> value, PropertyAttributes attributes, |
126 uint32_t new_capacity) = 0; | 126 uint32_t new_capacity) = 0; |
127 | 127 |
128 virtual uint32_t Unshift(Handle<JSArray> receiver, | |
129 Handle<FixedArrayBase> backing_store, Arguments args, | |
130 uint32_t add_count) = 0; | |
131 | |
132 // TODO(cbruni): Consider passing Arguments* instead of Object** depending on | 128 // TODO(cbruni): Consider passing Arguments* instead of Object** depending on |
133 // the requirements of future callers. | 129 // the requirements of future callers. |
134 virtual uint32_t Push(Handle<JSArray> receiver, | 130 virtual uint32_t Push(Handle<JSArray> receiver, |
135 Handle<FixedArrayBase> backing_store, Object** objects, | 131 Handle<FixedArrayBase> backing_store, Object** objects, |
136 uint32_t start, int direction) = 0; | 132 uint32_t start, int direction) = 0; |
137 | 133 |
138 virtual Handle<JSArray> Splice(Handle<JSArray> receiver, | 134 virtual Handle<JSArray> Splice(Handle<JSArray> receiver, |
139 Handle<FixedArrayBase> backing_store, | 135 Handle<FixedArrayBase> backing_store, |
140 uint32_t start, uint32_t delete_count, | 136 uint32_t start, uint32_t delete_count, |
141 Arguments args, uint32_t add_count) = 0; | 137 Arguments args, uint32_t add_count) = 0; |
(...skipping 30 matching lines...) Expand all Loading... |
172 void CheckArrayAbuse(Handle<JSObject> obj, const char* op, uint32_t index, | 168 void CheckArrayAbuse(Handle<JSObject> obj, const char* op, uint32_t index, |
173 bool allow_appending = false); | 169 bool allow_appending = false); |
174 | 170 |
175 MUST_USE_RESULT MaybeHandle<Object> ArrayConstructInitializeElements( | 171 MUST_USE_RESULT MaybeHandle<Object> ArrayConstructInitializeElements( |
176 Handle<JSArray> array, | 172 Handle<JSArray> array, |
177 Arguments* args); | 173 Arguments* args); |
178 | 174 |
179 } } // namespace v8::internal | 175 } } // namespace v8::internal |
180 | 176 |
181 #endif // V8_ELEMENTS_H_ | 177 #endif // V8_ELEMENTS_H_ |
OLD | NEW |