blob: 7a84313cd6ad5ed5235b97c5442ef3f520a1cc1a [file] [log] [blame]
ager@chromium.org5ec48922009-05-05 07:25:34 +00001// Copyright 2006-2009 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +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_LIST_INL_H_
29#define V8_LIST_INL_H_
30
31#include "list.h"
32
kasperl@chromium.org71affb52009-05-26 05:44:31 +000033namespace v8 {
34namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000035
36
37template<typename T, class P>
rossberg@chromium.org400388e2012-06-06 09:29:22 +000038void List<T, P>::Add(const T& element, P alloc) {
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000039 if (length_ < capacity_) {
40 data_[length_++] = element;
41 } else {
rossberg@chromium.org400388e2012-06-06 09:29:22 +000042 List<T, P>::ResizeAdd(element, alloc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000043 }
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000044}
45
46
kasperl@chromium.org71affb52009-05-26 05:44:31 +000047template<typename T, class P>
rossberg@chromium.org400388e2012-06-06 09:29:22 +000048void List<T, P>::AddAll(const List<T, P>& other, P alloc) {
49 AddAll(other.ToVector(), alloc);
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000050}
51
52
53template<typename T, class P>
rossberg@chromium.org400388e2012-06-06 09:29:22 +000054void List<T, P>::AddAll(const Vector<T>& other, P alloc) {
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000055 int result_length = length_ + other.length();
rossberg@chromium.org400388e2012-06-06 09:29:22 +000056 if (capacity_ < result_length) Resize(result_length, alloc);
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000057 for (int i = 0; i < other.length(); i++) {
58 data_[length_ + i] = other.at(i);
kasperl@chromium.org71affb52009-05-26 05:44:31 +000059 }
60 length_ = result_length;
61}
62
63
ager@chromium.org5ec48922009-05-05 07:25:34 +000064// Use two layers of inlining so that the non-inlined function can
65// use the same implementation as the inlined version.
66template<typename T, class P>
rossberg@chromium.org400388e2012-06-06 09:29:22 +000067void List<T, P>::ResizeAdd(const T& element, P alloc) {
68 ResizeAddInternal(element, alloc);
ager@chromium.org5ec48922009-05-05 07:25:34 +000069}
70
71
72template<typename T, class P>
rossberg@chromium.org400388e2012-06-06 09:29:22 +000073void List<T, P>::ResizeAddInternal(const T& element, P alloc) {
ager@chromium.org5ec48922009-05-05 07:25:34 +000074 ASSERT(length_ >= capacity_);
jkummerow@chromium.orgab7dad42012-02-07 12:07:34 +000075 // Grow the list capacity by 100%, but make sure to let it grow
ager@chromium.org5ec48922009-05-05 07:25:34 +000076 // even when the capacity is zero (possible initial case).
jkummerow@chromium.orgab7dad42012-02-07 12:07:34 +000077 int new_capacity = 1 + 2 * capacity_;
kasperl@chromium.org71affb52009-05-26 05:44:31 +000078 // Since the element reference could be an element of the list, copy
79 // it out of the old backing storage before resizing.
80 T temp = element;
rossberg@chromium.org400388e2012-06-06 09:29:22 +000081 Resize(new_capacity, alloc);
kasperl@chromium.org71affb52009-05-26 05:44:31 +000082 data_[length_++] = temp;
83}
84
85
86template<typename T, class P>
rossberg@chromium.org400388e2012-06-06 09:29:22 +000087void List<T, P>::Resize(int new_capacity, P alloc) {
yangguo@chromium.org46a2a512013-01-18 16:29:40 +000088 ASSERT_LE(length_, new_capacity);
rossberg@chromium.org400388e2012-06-06 09:29:22 +000089 T* new_data = NewData(new_capacity, alloc);
yangguo@chromium.org46a2a512013-01-18 16:29:40 +000090 memcpy(new_data, data_, length_ * sizeof(T));
ager@chromium.org5ec48922009-05-05 07:25:34 +000091 List<T, P>::DeleteData(data_);
92 data_ = new_data;
93 capacity_ = new_capacity;
94}
95
96
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000097template<typename T, class P>
rossberg@chromium.org400388e2012-06-06 09:29:22 +000098Vector<T> List<T, P>::AddBlock(T value, int count, P alloc) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000099 int start = length_;
rossberg@chromium.org400388e2012-06-06 09:29:22 +0000100 for (int i = 0; i < count; i++) Add(value, alloc);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000101 return Vector<T>(&data_[start], count);
102}
103
104
105template<typename T, class P>
rossberg@chromium.org400388e2012-06-06 09:29:22 +0000106void List<T, P>::InsertAt(int index, const T& elm, P alloc) {
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000107 ASSERT(index >= 0 && index <= length_);
rossberg@chromium.org400388e2012-06-06 09:29:22 +0000108 Add(elm, alloc);
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000109 for (int i = length_ - 1; i > index; --i) {
110 data_[i] = data_[i - 1];
111 }
112 data_[index] = elm;
113}
114
115
116template<typename T, class P>
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000117T List<T, P>::Remove(int i) {
118 T element = at(i);
119 length_--;
120 while (i < length_) {
121 data_[i] = data_[i + 1];
122 i++;
123 }
124 return element;
125}
126
127
128template<typename T, class P>
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000129bool List<T, P>::RemoveElement(const T& elm) {
130 for (int i = 0; i < length_; i++) {
131 if (data_[i] == elm) {
132 Remove(i);
133 return true;
134 }
135 }
136 return false;
137}
138
139
140template<typename T, class P>
rossberg@chromium.org400388e2012-06-06 09:29:22 +0000141void List<T, P>::Allocate(int length, P allocator) {
jkummerow@chromium.org212d9642012-05-11 15:02:09 +0000142 DeleteData(data_);
rossberg@chromium.org400388e2012-06-06 09:29:22 +0000143 Initialize(length, allocator);
jkummerow@chromium.org212d9642012-05-11 15:02:09 +0000144 length_ = length;
145}
146
147
148template<typename T, class P>
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000149void List<T, P>::Clear() {
150 DeleteData(data_);
mmassi@chromium.org7028c052012-06-13 11:51:58 +0000151 // We don't call Initialize(0) since that requires passing a Zone,
152 // which we don't really need.
153 data_ = NULL;
154 capacity_ = 0;
155 length_ = 0;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000156}
157
158
159template<typename T, class P>
160void List<T, P>::Rewind(int pos) {
161 length_ = pos;
162}
163
164
165template<typename T, class P>
yangguo@chromium.org46a2a512013-01-18 16:29:40 +0000166void List<T, P>::Trim(P alloc) {
167 if (length_ < capacity_ / 4) {
168 Resize(capacity_ / 2, alloc);
169 }
170}
171
172
173template<typename T, class P>
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000174void List<T, P>::Iterate(void (*callback)(T* x)) {
175 for (int i = 0; i < length_; i++) callback(&data_[i]);
176}
177
178
179template<typename T, class P>
vegorov@chromium.org26c16f82010-08-11 13:41:03 +0000180template<class Visitor>
181void List<T, P>::Iterate(Visitor* visitor) {
182 for (int i = 0; i < length_; i++) visitor->Apply(&data_[i]);
183}
184
185
186template<typename T, class P>
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000187bool List<T, P>::Contains(const T& elm) const {
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000188 for (int i = 0; i < length_; i++) {
189 if (data_[i] == elm)
190 return true;
191 }
192 return false;
193}
194
195
196template<typename T, class P>
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000197int List<T, P>::CountOccurrences(const T& elm, int start, int end) const {
198 int result = 0;
199 for (int i = start; i <= end; i++) {
200 if (data_[i] == elm) ++result;
201 }
202 return result;
203}
204
205
206template<typename T, class P>
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000207void List<T, P>::Sort(int (*cmp)(const T* x, const T* y)) {
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000208 ToVector().Sort(cmp);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000209#ifdef DEBUG
210 for (int i = 1; i < length_; i++)
211 ASSERT(cmp(&data_[i - 1], &data_[i]) <= 0);
212#endif
213}
214
215
216template<typename T, class P>
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000217void List<T, P>::Sort() {
218 Sort(PointerValueCompare<T>);
219}
220
221
222template<typename T, class P>
rossberg@chromium.org400388e2012-06-06 09:29:22 +0000223void List<T, P>::Initialize(int capacity, P allocator) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000224 ASSERT(capacity >= 0);
rossberg@chromium.org400388e2012-06-06 09:29:22 +0000225 data_ = (capacity > 0) ? NewData(capacity, allocator) : NULL;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000226 capacity_ = capacity;
227 length_ = 0;
228}
229
230
jkummerow@chromium.org28faa982012-04-13 09:58:30 +0000231template <typename T, typename P>
232int SortedListBSearch(const List<T>& list, P cmp) {
lrn@chromium.org34e60782011-09-15 07:25:40 +0000233 int low = 0;
234 int high = list.length() - 1;
235 while (low <= high) {
236 int mid = (low + high) / 2;
237 T mid_elem = list[mid];
238
jkummerow@chromium.org28faa982012-04-13 09:58:30 +0000239 if (cmp(&mid_elem) > 0) {
lrn@chromium.org34e60782011-09-15 07:25:40 +0000240 high = mid - 1;
241 continue;
242 }
jkummerow@chromium.org28faa982012-04-13 09:58:30 +0000243 if (cmp(&mid_elem) < 0) {
lrn@chromium.org34e60782011-09-15 07:25:40 +0000244 low = mid + 1;
245 continue;
246 }
247 // Found the elememt.
248 return mid;
249 }
250 return -1;
251}
252
253
jkummerow@chromium.org28faa982012-04-13 09:58:30 +0000254template<typename T>
255class ElementCmp {
256 public:
257 explicit ElementCmp(T e) : elem_(e) {}
258 int operator()(const T* other) {
259 return PointerValueCompare(other, &elem_);
260 }
261 private:
262 T elem_;
263};
264
265
lrn@chromium.org34e60782011-09-15 07:25:40 +0000266template <typename T>
267int SortedListBSearch(const List<T>& list, T elem) {
jkummerow@chromium.org28faa982012-04-13 09:58:30 +0000268 return SortedListBSearch<T, ElementCmp<T> > (list, ElementCmp<T>(elem));
lrn@chromium.org34e60782011-09-15 07:25:40 +0000269}
270
erik.corry@gmail.com394dbcf2011-10-27 07:38:48 +0000271
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000272} } // namespace v8::internal
273
274#endif // V8_LIST_INL_H_