Replace qsort with std::sort.
[platform/upstream/v8.git] / src / list-inl.h
1 // Copyright 2006-2009 the V8 project authors. All rights reserved.
2 // 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 #include "platform.h"
33
34 namespace v8 {
35 namespace internal {
36
37
38 template<typename T, class P>
39 void List<T, P>::Add(const T& element, P alloc) {
40   if (length_ < capacity_) {
41     data_[length_++] = element;
42   } else {
43     List<T, P>::ResizeAdd(element, alloc);
44   }
45 }
46
47
48 template<typename T, class P>
49 void List<T, P>::AddAll(const List<T, P>& other, P alloc) {
50   AddAll(other.ToVector(), alloc);
51 }
52
53
54 template<typename T, class P>
55 void List<T, P>::AddAll(const Vector<T>& other, P alloc) {
56   int result_length = length_ + other.length();
57   if (capacity_ < result_length) Resize(result_length, alloc);
58   for (int i = 0; i < other.length(); i++) {
59     data_[length_ + i] = other.at(i);
60   }
61   length_ = result_length;
62 }
63
64
65 // Use two layers of inlining so that the non-inlined function can
66 // use the same implementation as the inlined version.
67 template<typename T, class P>
68 void List<T, P>::ResizeAdd(const T& element, P alloc) {
69   ResizeAddInternal(element, alloc);
70 }
71
72
73 template<typename T, class P>
74 void List<T, P>::ResizeAddInternal(const T& element, P alloc) {
75   ASSERT(length_ >= capacity_);
76   // Grow the list capacity by 100%, but make sure to let it grow
77   // even when the capacity is zero (possible initial case).
78   int new_capacity = 1 + 2 * capacity_;
79   // Since the element reference could be an element of the list, copy
80   // it out of the old backing storage before resizing.
81   T temp = element;
82   Resize(new_capacity, alloc);
83   data_[length_++] = temp;
84 }
85
86
87 template<typename T, class P>
88 void List<T, P>::Resize(int new_capacity, P alloc) {
89   ASSERT_LE(length_, new_capacity);
90   T* new_data = NewData(new_capacity, alloc);
91   OS::MemCopy(new_data, data_, length_ * sizeof(T));
92   List<T, P>::DeleteData(data_);
93   data_ = new_data;
94   capacity_ = new_capacity;
95 }
96
97
98 template<typename T, class P>
99 Vector<T> List<T, P>::AddBlock(T value, int count, P alloc) {
100   int start = length_;
101   for (int i = 0; i < count; i++) Add(value, alloc);
102   return Vector<T>(&data_[start], count);
103 }
104
105
106 template<typename T, class P>
107 void List<T, P>::InsertAt(int index, const T& elm, P alloc) {
108   ASSERT(index >= 0 && index <= length_);
109   Add(elm, alloc);
110   for (int i = length_ - 1; i > index; --i) {
111     data_[i] = data_[i - 1];
112   }
113   data_[index] = elm;
114 }
115
116
117 template<typename T, class P>
118 T List<T, P>::Remove(int i) {
119   T element = at(i);
120   length_--;
121   while (i < length_) {
122     data_[i] = data_[i + 1];
123     i++;
124   }
125   return element;
126 }
127
128
129 template<typename T, class P>
130 bool List<T, P>::RemoveElement(const T& elm) {
131   for (int i = 0; i < length_; i++) {
132     if (data_[i] == elm) {
133       Remove(i);
134       return true;
135     }
136   }
137   return false;
138 }
139
140
141 template<typename T, class P>
142 void List<T, P>::Allocate(int length, P allocator) {
143   DeleteData(data_);
144   Initialize(length, allocator);
145   length_ = length;
146 }
147
148
149 template<typename T, class P>
150 void List<T, P>::Clear() {
151   DeleteData(data_);
152   // We don't call Initialize(0) since that requires passing a Zone,
153   // which we don't really need.
154   data_ = NULL;
155   capacity_ = 0;
156   length_ = 0;
157 }
158
159
160 template<typename T, class P>
161 void List<T, P>::Rewind(int pos) {
162   length_ = pos;
163 }
164
165
166 template<typename T, class P>
167 void List<T, P>::Trim(P alloc) {
168   if (length_ < capacity_ / 4) {
169     Resize(capacity_ / 2, alloc);
170   }
171 }
172
173
174 template<typename T, class P>
175 void List<T, P>::Iterate(void (*callback)(T* x)) {
176   for (int i = 0; i < length_; i++) callback(&data_[i]);
177 }
178
179
180 template<typename T, class P>
181 template<class Visitor>
182 void List<T, P>::Iterate(Visitor* visitor) {
183   for (int i = 0; i < length_; i++) visitor->Apply(&data_[i]);
184 }
185
186
187 template<typename T, class P>
188 bool List<T, P>::Contains(const T& elm) const {
189   for (int i = 0; i < length_; i++) {
190     if (data_[i] == elm)
191       return true;
192   }
193   return false;
194 }
195
196
197 template<typename T, class P>
198 int List<T, P>::CountOccurrences(const T& elm, int start, int end) const {
199   int result = 0;
200   for (int i = start; i <= end; i++) {
201     if (data_[i] == elm) ++result;
202   }
203   return result;
204 }
205
206
207 template<typename T, class P>
208 void List<T, P>::Sort(int (*cmp)(const T* x, const T* y)) {
209   ToVector().Sort(cmp);
210 #ifdef DEBUG
211   for (int i = 1; i < length_; i++)
212     ASSERT(cmp(&data_[i - 1], &data_[i]) <= 0);
213 #endif
214 }
215
216
217 template<typename T, class P>
218 void List<T, P>::Sort() {
219   ToVector().Sort();
220 }
221
222
223 template<typename T, class P>
224 void List<T, P>::Initialize(int capacity, P allocator) {
225   ASSERT(capacity >= 0);
226   data_ = (capacity > 0) ? NewData(capacity, allocator) : NULL;
227   capacity_ = capacity;
228   length_ = 0;
229 }
230
231
232 template <typename T, typename P>
233 int SortedListBSearch(const List<T>& list, P cmp) {
234   int low = 0;
235   int high = list.length() - 1;
236   while (low <= high) {
237     int mid = (low + high) / 2;
238     T mid_elem = list[mid];
239
240     if (cmp(&mid_elem) > 0) {
241       high = mid - 1;
242       continue;
243     }
244     if (cmp(&mid_elem) < 0) {
245       low = mid + 1;
246       continue;
247     }
248     // Found the elememt.
249     return mid;
250   }
251   return -1;
252 }
253
254
255 template<typename T>
256 class ElementCmp {
257  public:
258   explicit ElementCmp(T e) : elem_(e) {}
259   int operator()(const T* other) {
260     return PointerValueCompare(other, &elem_);
261   }
262  private:
263   T elem_;
264 };
265
266
267 template <typename T>
268 int SortedListBSearch(const List<T>& list, T elem) {
269   return SortedListBSearch<T, ElementCmp<T> > (list, ElementCmp<T>(elem));
270 }
271
272
273 } }  // namespace v8::internal
274
275 #endif  // V8_LIST_INL_H_