Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: src/elements.h

Issue 1316213008: Speedup JSReceiver::GetKeys (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Compilation Fix Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/elements.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 Handle<JSObject> from_holder, 93 Handle<JSObject> from_holder,
94 Handle<FixedArrayBase> to, 94 Handle<FixedArrayBase> to,
95 ElementsKind from_kind) { 95 ElementsKind from_kind) {
96 CopyElements( 96 CopyElements(
97 *from_holder, 0, from_kind, to, 0, kCopyToEndAndInitializeToHole); 97 *from_holder, 0, from_kind, to, 0, kCopyToEndAndInitializeToHole);
98 } 98 }
99 99
100 virtual void GrowCapacityAndConvert(Handle<JSObject> object, 100 virtual void GrowCapacityAndConvert(Handle<JSObject> object,
101 uint32_t capacity) = 0; 101 uint32_t capacity) = 0;
102 102
103 virtual Handle<FixedArray> AddElementsToFixedArray( 103 virtual void AddElementsToKeyAccumulator(Handle<JSObject> receiver,
104 Handle<JSObject> receiver, Handle<FixedArray> to, 104 KeyAccumulator* accumulator,
105 FixedArray::KeyFilter filter) = 0; 105 FixedArray::KeyFilter filter) = 0;
106 106
107 // Returns a shared ElementsAccessor for the specified ElementsKind. 107 // Returns a shared ElementsAccessor for the specified ElementsKind.
108 static ElementsAccessor* ForKind(ElementsKind elements_kind) { 108 static ElementsAccessor* ForKind(ElementsKind elements_kind) {
109 DCHECK(static_cast<int>(elements_kind) < kElementsKindCount); 109 DCHECK(static_cast<int>(elements_kind) < kElementsKindCount);
110 return elements_accessors_[elements_kind]; 110 return elements_accessors_[elements_kind];
111 } 111 }
112 112
113 static ElementsAccessor* ForArray(Handle<FixedArrayBase> array); 113 static ElementsAccessor* ForArray(Handle<FixedArrayBase> array);
114 114
115 static void InitializeOncePerProcess(); 115 static void InitializeOncePerProcess();
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 void CheckArrayAbuse(Handle<JSObject> obj, const char* op, uint32_t index, 185 void CheckArrayAbuse(Handle<JSObject> obj, const char* op, uint32_t index,
186 bool allow_appending = false); 186 bool allow_appending = false);
187 187
188 MUST_USE_RESULT MaybeHandle<Object> ArrayConstructInitializeElements( 188 MUST_USE_RESULT MaybeHandle<Object> ArrayConstructInitializeElements(
189 Handle<JSArray> array, 189 Handle<JSArray> array,
190 Arguments* args); 190 Arguments* args);
191 191
192 } } // namespace v8::internal 192 } } // namespace v8::internal
193 193
194 #endif // V8_ELEMENTS_H_ 194 #endif // V8_ELEMENTS_H_
OLDNEW
« no previous file with comments | « no previous file | src/elements.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698