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 |
128 // TODO(cbruni): Consider passing Arguments* instead of Object** depending on | 132 // TODO(cbruni): Consider passing Arguments* instead of Object** depending on |
129 // the requirements of future callers. | 133 // the requirements of future callers. |
130 virtual uint32_t Push(Handle<JSArray> receiver, | 134 virtual uint32_t Push(Handle<JSArray> receiver, |
131 Handle<FixedArrayBase> backing_store, Object** objects, | 135 Handle<FixedArrayBase> backing_store, Object** objects, |
132 uint32_t start, int direction) = 0; | 136 uint32_t start, int direction) = 0; |
133 | 137 |
134 virtual Handle<JSArray> Splice(Handle<JSArray> receiver, | 138 virtual Handle<JSArray> Splice(Handle<JSArray> receiver, |
135 Handle<FixedArrayBase> backing_store, | 139 Handle<FixedArrayBase> backing_store, |
136 uint32_t start, uint32_t delete_count, | 140 uint32_t start, uint32_t delete_count, |
137 Arguments args, uint32_t add_count) = 0; | 141 Arguments args, uint32_t add_count) = 0; |
(...skipping 30 matching lines...) Expand all Loading... |
168 void CheckArrayAbuse(Handle<JSObject> obj, const char* op, uint32_t index, | 172 void CheckArrayAbuse(Handle<JSObject> obj, const char* op, uint32_t index, |
169 bool allow_appending = false); | 173 bool allow_appending = false); |
170 | 174 |
171 MUST_USE_RESULT MaybeHandle<Object> ArrayConstructInitializeElements( | 175 MUST_USE_RESULT MaybeHandle<Object> ArrayConstructInitializeElements( |
172 Handle<JSArray> array, | 176 Handle<JSArray> array, |
173 Arguments* args); | 177 Arguments* args); |
174 | 178 |
175 } } // namespace v8::internal | 179 } } // namespace v8::internal |
176 | 180 |
177 #endif // V8_ELEMENTS_H_ | 181 #endif // V8_ELEMENTS_H_ |
OLD | NEW |