blob: 822fca50eee58def6ef88b2299c4774a99e16258 [file] [log] [blame]
ulan@chromium.org9a21ec42012-03-06 08:42:24 +00001// Copyright 2012 the V8 project authors. All rights reserved.
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +00002// 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_ELEMENTS_H_
29#define V8_ELEMENTS_H_
30
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +000031#include "elements-kind.h"
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +000032#include "objects.h"
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +000033#include "heap.h"
34#include "isolate.h"
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +000035
36namespace v8 {
37namespace internal {
38
39// Abstract base class for handles that can operate on objects with differing
40// ElementsKinds.
41class ElementsAccessor {
42 public:
erik.corry@gmail.combbceb572012-03-09 10:52:05 +000043 explicit ElementsAccessor(const char* name) : name_(name) { }
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +000044 virtual ~ElementsAccessor() { }
erik.corry@gmail.combbceb572012-03-09 10:52:05 +000045
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +000046 virtual ElementsKind kind() const = 0;
47 const char* name() const { return name_; }
erik.corry@gmail.combbceb572012-03-09 10:52:05 +000048
svenpanne@chromium.org830d30c2012-05-29 13:20:14 +000049 // Checks the elements of an object for consistency, asserting when a problem
50 // is found.
51 virtual void Validate(JSObject* obj) = 0;
52
erik.corry@gmail.combbceb572012-03-09 10:52:05 +000053 // Returns true if a holder contains an element with the specified key
54 // without iterating up the prototype chain. The caller can optionally pass
55 // in the backing store to use for the check, which must be compatible with
56 // the ElementsKind of the ElementsAccessor. If backing_store is NULL, the
57 // holder->elements() is used as the backing store.
58 virtual bool HasElement(Object* receiver,
59 JSObject* holder,
60 uint32_t key,
61 FixedArrayBase* backing_store = NULL) = 0;
62
63 // Returns the element with the specified key or undefined if there is no such
64 // element. This method doesn't iterate up the prototype chain. The caller
65 // can optionally pass in the backing store to use for the check, which must
66 // be compatible with the ElementsKind of the ElementsAccessor. If
67 // backing_store is NULL, the holder->elements() is used as the backing store.
jkummerow@chromium.org212d9642012-05-11 15:02:09 +000068 MUST_USE_RESULT virtual MaybeObject* Get(
69 Object* receiver,
70 JSObject* holder,
71 uint32_t key,
72 FixedArrayBase* backing_store = NULL) = 0;
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +000073
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000074 // Modifies the length data property as specified for JSArrays and resizes the
75 // underlying backing store accordingly. The method honors the semantics of
76 // changing array sizes as defined in EcmaScript 5.1 15.4.5.2, i.e. array that
77 // have non-deletable elements can only be shrunk to the size of highest
78 // element that is non-deletable.
jkummerow@chromium.org212d9642012-05-11 15:02:09 +000079 MUST_USE_RESULT virtual MaybeObject* SetLength(JSArray* holder,
80 Object* new_length) = 0;
danno@chromium.orgc612e022011-11-10 11:38:15 +000081
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000082 // Modifies both the length and capacity of a JSArray, resizing the underlying
83 // backing store as necessary. This method does NOT honor the semantics of
84 // EcmaScript 5.1 15.4.5.2, arrays can be shrunk beyond non-deletable
85 // elements. This method should only be called for array expansion OR by
86 // runtime JavaScript code that use InternalArrays and don't care about
87 // EcmaScript 5.1 semantics.
jkummerow@chromium.org212d9642012-05-11 15:02:09 +000088 MUST_USE_RESULT virtual MaybeObject* SetCapacityAndLength(JSArray* array,
89 int capacity,
90 int length) = 0;
ricow@chromium.org64e3a4b2011-12-13 08:07:27 +000091
erik.corry@gmail.combbceb572012-03-09 10:52:05 +000092 // Deletes an element in an object, returning a new elements backing store.
jkummerow@chromium.org212d9642012-05-11 15:02:09 +000093 MUST_USE_RESULT virtual MaybeObject* Delete(JSObject* holder,
94 uint32_t key,
95 JSReceiver::DeleteMode mode) = 0;
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +000096
rossberg@chromium.org2c067b12012-03-19 11:01:52 +000097 // If kCopyToEnd is specified as the copy_size to CopyElements, it copies all
98 // of elements from source after source_start to the destination array.
99 static const int kCopyToEnd = -1;
100 // If kCopyToEndAndInitializeToHole is specified as the copy_size to
101 // CopyElements, it copies all of elements from source after source_start to
102 // destination array, padding any remaining uninitialized elements in the
103 // destination array with the hole.
104 static const int kCopyToEndAndInitializeToHole = -2;
105
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +0000106 // Copy elements from one backing store to another. Typically, callers specify
107 // the source JSObject or JSArray in source_holder. If the holder's backing
108 // store is available, it can be passed in source and source_holder is
109 // ignored.
jkummerow@chromium.org212d9642012-05-11 15:02:09 +0000110 MUST_USE_RESULT virtual MaybeObject* CopyElements(
111 JSObject* source_holder,
112 uint32_t source_start,
113 FixedArrayBase* destination,
114 ElementsKind destination_kind,
115 uint32_t destination_start,
116 int copy_size,
117 FixedArrayBase* source = NULL) = 0;
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +0000118
jkummerow@chromium.org212d9642012-05-11 15:02:09 +0000119 MUST_USE_RESULT MaybeObject* CopyElements(JSObject* from_holder,
120 FixedArrayBase* to,
121 ElementsKind to_kind,
122 FixedArrayBase* from = NULL) {
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000123 return CopyElements(from_holder, 0, to, to_kind, 0,
danno@chromium.orgc7406162012-03-26 09:46:02 +0000124 kCopyToEndAndInitializeToHole, from);
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +0000125 }
126
jkummerow@chromium.org212d9642012-05-11 15:02:09 +0000127 MUST_USE_RESULT virtual MaybeObject* AddElementsToFixedArray(
128 Object* receiver,
129 JSObject* holder,
130 FixedArray* to,
131 FixedArrayBase* from = NULL) = 0;
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +0000132
133 // Returns a shared ElementsAccessor for the specified ElementsKind.
kmillikin@chromium.org83e16822011-09-13 08:21:47 +0000134 static ElementsAccessor* ForKind(ElementsKind elements_kind) {
135 ASSERT(elements_kind < kElementsKindCount);
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +0000136 return elements_accessors_[elements_kind];
137 }
138
rossberg@chromium.org28a37082011-08-22 11:03:23 +0000139 static ElementsAccessor* ForArray(FixedArrayBase* array);
140
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +0000141 static void InitializeOncePerProcess();
jkummerow@chromium.org1456e702012-03-30 08:38:13 +0000142 static void TearDown();
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +0000143
rossberg@chromium.org28a37082011-08-22 11:03:23 +0000144 protected:
145 friend class NonStrictArgumentsElementsAccessor;
146
147 virtual uint32_t GetCapacity(FixedArrayBase* backing_store) = 0;
148
ulan@chromium.org9a21ec42012-03-06 08:42:24 +0000149 // Element handlers distinguish between indexes and keys when they manipulate
rossberg@chromium.org28a37082011-08-22 11:03:23 +0000150 // elements. Indexes refer to elements in terms of their location in the
ulan@chromium.org9a21ec42012-03-06 08:42:24 +0000151 // underlying storage's backing store representation, and are between 0 and
rossberg@chromium.org28a37082011-08-22 11:03:23 +0000152 // GetCapacity. Keys refer to elements in terms of the value that would be
ulan@chromium.org9a21ec42012-03-06 08:42:24 +0000153 // specified in JavaScript to access the element. In most implementations,
154 // keys are equivalent to indexes, and GetKeyForIndex returns the same value
155 // it is passed. In the NumberDictionary ElementsAccessor, GetKeyForIndex maps
156 // the index to a key using the KeyAt method on the NumberDictionary.
rossberg@chromium.org28a37082011-08-22 11:03:23 +0000157 virtual uint32_t GetKeyForIndex(FixedArrayBase* backing_store,
158 uint32_t index) = 0;
159
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +0000160 private:
161 static ElementsAccessor** elements_accessors_;
erik.corry@gmail.combbceb572012-03-09 10:52:05 +0000162 const char* name_;
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +0000163
164 DISALLOW_COPY_AND_ASSIGN(ElementsAccessor);
165};
166
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +0000167
rossberg@chromium.org2c067b12012-03-19 11:01:52 +0000168void CopyObjectToObjectElements(FixedArray* from_obj,
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +0000169 ElementsKind from_kind,
170 uint32_t from_start,
171 FixedArray* to_obj,
172 ElementsKind to_kind,
173 uint32_t to_start,
danno@chromium.orgc7406162012-03-26 09:46:02 +0000174 int copy_size);
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +0000175
176
kmillikin@chromium.org7c2628c2011-08-10 11:27:35 +0000177} } // namespace v8::internal
178
179#endif // V8_ELEMENTS_H_