2012-03-05 16:14:34 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2011-08-03 11:12:46 +00:00
|
|
|
|
|
|
|
#ifndef V8_ELEMENTS_H_
|
|
|
|
#define V8_ELEMENTS_H_
|
|
|
|
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/elements-kind.h"
|
2014-08-05 08:18:22 +00:00
|
|
|
#include "src/heap/heap.h"
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/isolate.h"
|
2015-11-04 14:05:21 +00:00
|
|
|
#include "src/key-accumulator.h"
|
2014-06-20 08:40:11 +00:00
|
|
|
#include "src/objects.h"
|
2011-08-03 11:12:46 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
// Abstract base class for handles that can operate on objects with differing
|
|
|
|
// ElementsKinds.
|
|
|
|
class ElementsAccessor {
|
|
|
|
public:
|
2012-03-06 12:03:14 +00:00
|
|
|
explicit ElementsAccessor(const char* name) : name_(name) { }
|
2011-08-03 11:12:46 +00:00
|
|
|
virtual ~ElementsAccessor() { }
|
2012-03-06 12:03:14 +00:00
|
|
|
|
2012-03-09 13:48:29 +00:00
|
|
|
const char* name() const { return name_; }
|
2012-03-06 12:03:14 +00:00
|
|
|
|
2015-10-19 13:47:24 +00:00
|
|
|
// Returns a shared ElementsAccessor for the specified ElementsKind.
|
|
|
|
static ElementsAccessor* ForKind(ElementsKind elements_kind) {
|
|
|
|
DCHECK(static_cast<int>(elements_kind) < kElementsKindCount);
|
|
|
|
return elements_accessors_[elements_kind];
|
|
|
|
}
|
|
|
|
|
2012-05-23 14:24:29 +00:00
|
|
|
// Checks the elements of an object for consistency, asserting when a problem
|
|
|
|
// is found.
|
2014-04-07 10:00:14 +00:00
|
|
|
virtual void Validate(Handle<JSObject> obj) = 0;
|
2012-05-23 14:24:29 +00:00
|
|
|
|
2015-07-07 11:52:51 +00:00
|
|
|
// Returns true if a holder contains an element with the specified index
|
2012-03-06 12:22:18 +00:00
|
|
|
// without iterating up the prototype chain. The caller can optionally pass
|
|
|
|
// in the backing store to use for the check, which must be compatible with
|
|
|
|
// the ElementsKind of the ElementsAccessor. If backing_store is NULL, the
|
2015-10-19 13:47:24 +00:00
|
|
|
// holder->elements() is used as the backing store. If a |filter| is
|
|
|
|
// specified the PropertyAttributes of the element at the given index
|
|
|
|
// are compared to the given |filter|. If they match/overlap the given
|
|
|
|
// index is ignored. Note that only Dictionary elements have custom
|
|
|
|
// PropertyAttributes associated, hence the |filter| argument is ignored for
|
|
|
|
// all but DICTIONARY_ELEMENTS and SLOW_SLOPPY_ARGUMENTS_ELEMENTS.
|
2015-07-07 11:52:51 +00:00
|
|
|
virtual bool HasElement(Handle<JSObject> holder, uint32_t index,
|
2015-10-19 13:47:24 +00:00
|
|
|
Handle<FixedArrayBase> backing_store,
|
2015-12-02 16:30:06 +00:00
|
|
|
PropertyFilter filter = ALL_PROPERTIES) = 0;
|
2015-07-07 11:52:51 +00:00
|
|
|
|
2015-10-19 13:47:24 +00:00
|
|
|
inline bool HasElement(Handle<JSObject> holder, uint32_t index,
|
2015-12-02 16:30:06 +00:00
|
|
|
PropertyFilter filter = ALL_PROPERTIES) {
|
2015-10-19 13:47:24 +00:00
|
|
|
return HasElement(holder, index, handle(holder->elements()), filter);
|
2014-04-04 13:05:37 +00:00
|
|
|
}
|
2012-03-06 12:22:18 +00:00
|
|
|
|
2015-08-31 12:19:16 +00:00
|
|
|
// Returns true if the backing store is compact in the given range
|
|
|
|
virtual bool IsPacked(Handle<JSObject> holder,
|
|
|
|
Handle<FixedArrayBase> backing_store, uint32_t start,
|
|
|
|
uint32_t end) = 0;
|
|
|
|
|
2016-01-29 18:57:26 +00:00
|
|
|
virtual Handle<Object> Get(Handle<JSObject> holder, uint32_t entry) = 0;
|
|
|
|
|
|
|
|
virtual PropertyDetails GetDetails(JSObject* holder, uint32_t entry) = 0;
|
2011-08-03 11:12:46 +00:00
|
|
|
|
2011-12-09 08:50:19 +00:00
|
|
|
// Modifies the length data property as specified for JSArrays and resizes the
|
|
|
|
// underlying backing store accordingly. The method honors the semantics of
|
|
|
|
// changing array sizes as defined in EcmaScript 5.1 15.4.5.2, i.e. array that
|
|
|
|
// have non-deletable elements can only be shrunk to the size of highest
|
|
|
|
// element that is non-deletable.
|
2015-06-19 14:56:57 +00:00
|
|
|
virtual void SetLength(Handle<JSArray> holder, uint32_t new_length) = 0;
|
2011-11-08 11:59:56 +00:00
|
|
|
|
2015-06-02 11:52:30 +00:00
|
|
|
// Deletes an element in an object.
|
2015-07-07 11:52:51 +00:00
|
|
|
virtual void Delete(Handle<JSObject> holder, uint32_t entry) = 0;
|
2011-08-04 11:42:14 +00:00
|
|
|
|
2012-03-16 13:59:59 +00:00
|
|
|
// If kCopyToEnd is specified as the copy_size to CopyElements, it copies all
|
|
|
|
// of elements from source after source_start to the destination array.
|
|
|
|
static const int kCopyToEnd = -1;
|
|
|
|
// If kCopyToEndAndInitializeToHole is specified as the copy_size to
|
|
|
|
// CopyElements, it copies all of elements from source after source_start to
|
|
|
|
// destination array, padding any remaining uninitialized elements in the
|
|
|
|
// destination array with the hole.
|
|
|
|
static const int kCopyToEndAndInitializeToHole = -2;
|
|
|
|
|
2015-10-19 13:47:24 +00:00
|
|
|
// Copy all indices that have elements from |object| into the given
|
|
|
|
// KeyAccumulator. For Dictionary-based element-kinds we filter out elements
|
|
|
|
// whose PropertyAttribute match |filter|.
|
|
|
|
virtual void CollectElementIndices(Handle<JSObject> object,
|
|
|
|
Handle<FixedArrayBase> backing_store,
|
|
|
|
KeyAccumulator* keys,
|
|
|
|
uint32_t range = kMaxUInt32,
|
2015-12-02 16:30:06 +00:00
|
|
|
PropertyFilter filter = ALL_PROPERTIES,
|
2015-10-19 13:47:24 +00:00
|
|
|
uint32_t offset = 0) = 0;
|
|
|
|
|
|
|
|
inline void CollectElementIndices(Handle<JSObject> object,
|
|
|
|
KeyAccumulator* keys,
|
|
|
|
uint32_t range = kMaxUInt32,
|
2015-12-02 16:30:06 +00:00
|
|
|
PropertyFilter filter = ALL_PROPERTIES,
|
2015-10-19 13:47:24 +00:00
|
|
|
uint32_t offset = 0) {
|
|
|
|
CollectElementIndices(object, handle(object->elements()), keys, range,
|
|
|
|
filter, offset);
|
|
|
|
}
|
2015-06-22 11:24:03 +00:00
|
|
|
|
2015-09-17 12:52:37 +00:00
|
|
|
virtual void AddElementsToKeyAccumulator(Handle<JSObject> receiver,
|
|
|
|
KeyAccumulator* accumulator,
|
2015-10-19 13:47:24 +00:00
|
|
|
AddKeyConversion convert) = 0;
|
2011-08-03 11:12:46 +00:00
|
|
|
|
2015-10-19 13:47:24 +00:00
|
|
|
virtual void GrowCapacityAndConvert(Handle<JSObject> object,
|
|
|
|
uint32_t capacity) = 0;
|
2011-08-17 16:15:30 +00:00
|
|
|
|
2011-08-03 11:12:46 +00:00
|
|
|
static void InitializeOncePerProcess();
|
2012-03-27 10:51:13 +00:00
|
|
|
static void TearDown();
|
2011-08-03 11:12:46 +00:00
|
|
|
|
2016-01-29 18:57:26 +00:00
|
|
|
virtual void Set(Handle<JSObject> holder, uint32_t entry, Object* value) = 0;
|
2015-07-31 16:10:37 +00:00
|
|
|
|
2015-06-25 11:25:59 +00:00
|
|
|
virtual void Reconfigure(Handle<JSObject> object,
|
2015-07-07 11:52:51 +00:00
|
|
|
Handle<FixedArrayBase> backing_store, uint32_t entry,
|
2015-06-25 11:25:59 +00:00
|
|
|
Handle<Object> value,
|
|
|
|
PropertyAttributes attributes) = 0;
|
2015-07-31 16:10:37 +00:00
|
|
|
|
2015-07-10 12:56:36 +00:00
|
|
|
virtual void Add(Handle<JSObject> object, uint32_t index,
|
2015-06-25 14:17:10 +00:00
|
|
|
Handle<Object> value, PropertyAttributes attributes,
|
|
|
|
uint32_t new_capacity) = 0;
|
2015-06-23 11:35:43 +00:00
|
|
|
|
2015-09-07 13:44:44 +00:00
|
|
|
static Handle<JSArray> Concat(Isolate* isolate, Arguments* args,
|
|
|
|
uint32_t concat_size);
|
|
|
|
|
2015-07-31 16:10:37 +00:00
|
|
|
virtual uint32_t Push(Handle<JSArray> receiver,
|
2015-09-02 06:41:56 +00:00
|
|
|
Handle<FixedArrayBase> backing_store, Arguments* args,
|
|
|
|
uint32_t push_size) = 0;
|
2015-07-31 16:10:37 +00:00
|
|
|
|
2015-09-01 21:19:44 +00:00
|
|
|
virtual uint32_t Unshift(Handle<JSArray> receiver,
|
|
|
|
Handle<FixedArrayBase> backing_store,
|
|
|
|
Arguments* args, uint32_t unshift_size) = 0;
|
|
|
|
|
2015-08-31 12:19:16 +00:00
|
|
|
virtual Handle<JSArray> Slice(Handle<JSObject> receiver,
|
|
|
|
Handle<FixedArrayBase> backing_store,
|
|
|
|
uint32_t start, uint32_t end) = 0;
|
|
|
|
|
2015-08-27 13:05:50 +00:00
|
|
|
virtual Handle<JSArray> Splice(Handle<JSArray> receiver,
|
|
|
|
Handle<FixedArrayBase> backing_store,
|
|
|
|
uint32_t start, uint32_t delete_count,
|
2015-09-02 06:41:56 +00:00
|
|
|
Arguments* args, uint32_t add_count) = 0;
|
2015-08-27 13:05:50 +00:00
|
|
|
|
2015-08-31 15:18:01 +00:00
|
|
|
virtual Handle<Object> Pop(Handle<JSArray> receiver,
|
|
|
|
Handle<FixedArrayBase> backing_store) = 0;
|
|
|
|
|
2015-09-02 15:29:21 +00:00
|
|
|
virtual Handle<Object> Shift(Handle<JSArray> receiver,
|
|
|
|
Handle<FixedArrayBase> backing_store) = 0;
|
|
|
|
|
2011-08-17 16:15:30 +00:00
|
|
|
protected:
|
2015-05-21 12:19:39 +00:00
|
|
|
friend class LookupIterator;
|
2011-08-17 16:15:30 +00:00
|
|
|
|
2015-07-07 11:52:51 +00:00
|
|
|
// Element handlers distinguish between entries and indices when they
|
|
|
|
// manipulate elements. Entries refer to elements in terms of their location
|
|
|
|
// in the underlying storage's backing store representation, and are between 0
|
|
|
|
// and GetCapacity. Indices refer to elements in terms of the value that would
|
|
|
|
// be specified in JavaScript to access the element. In most implementations,
|
|
|
|
// indices are equivalent to entries. In the NumberDictionary
|
|
|
|
// ElementsAccessor, entries are mapped to an index using the KeyAt method on
|
|
|
|
// the NumberDictionary.
|
|
|
|
virtual uint32_t GetEntryForIndex(JSObject* holder,
|
|
|
|
FixedArrayBase* backing_store,
|
|
|
|
uint32_t index) = 0;
|
2016-01-29 18:57:26 +00:00
|
|
|
|
|
|
|
// NOTE: this method violates the handlified function signature convention:
|
|
|
|
// raw pointer parameter |source_holder| in the function that allocates.
|
|
|
|
// This is done intentionally to avoid ArrayConcat() builtin performance
|
|
|
|
// degradation.
|
|
|
|
virtual void CopyElements(JSObject* source_holder, uint32_t source_start,
|
|
|
|
ElementsKind source_kind,
|
|
|
|
Handle<FixedArrayBase> destination,
|
|
|
|
uint32_t destination_start, int copy_size) = 0;
|
2011-08-17 16:15:30 +00:00
|
|
|
|
2011-08-03 11:12:46 +00:00
|
|
|
private:
|
2015-10-19 13:47:24 +00:00
|
|
|
virtual uint32_t GetCapacity(JSObject* holder,
|
|
|
|
FixedArrayBase* backing_store) = 0;
|
2011-08-03 11:12:46 +00:00
|
|
|
static ElementsAccessor** elements_accessors_;
|
2012-03-06 12:03:14 +00:00
|
|
|
const char* name_;
|
2011-08-03 11:12:46 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ElementsAccessor);
|
|
|
|
};
|
|
|
|
|
2015-07-07 11:52:51 +00:00
|
|
|
void CheckArrayAbuse(Handle<JSObject> obj, const char* op, uint32_t index,
|
2013-02-08 14:32:38 +00:00
|
|
|
bool allow_appending = false);
|
2013-02-07 07:56:11 +00:00
|
|
|
|
2014-04-09 13:16:19 +00:00
|
|
|
MUST_USE_RESULT MaybeHandle<Object> ArrayConstructInitializeElements(
|
|
|
|
Handle<JSArray> array,
|
|
|
|
Arguments* args);
|
2014-03-17 15:01:45 +00:00
|
|
|
|
2015-09-30 13:46:56 +00:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|
2011-08-03 11:12:46 +00:00
|
|
|
|
|
|
|
#endif // V8_ELEMENTS_H_
|