Reland r13188, r13194, r13256 (Deferred formatting of error stack trace during GC).
[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
33 namespace v8 {
34 namespace internal {
35
36
37 template<typename T, class P>
38 void List<T, P>::Add(const T& element, P alloc) {
39   if (length_ < capacity_) {
40     data_[length_++] = element;
41   } else {
42     List<T, P>::ResizeAdd(element, alloc);
43   }
44 }
45
46
47 template<typename T, class P>
48 void List<T, P>::AddAll(const List<T, P>& other, P alloc) {
49   AddAll(other.ToVector(), alloc);
50 }
51
52
53 template<typename T, class P>
54 void List<T, P>::AddAll(const Vector<T>& other, P alloc) {
55   int result_length = length_ + other.length();
56   if (capacity_ < result_length) Resize(result_length, alloc);
57   for (int i = 0; i < other.length(); i++) {
58     data_[length_ + i] = other.at(i);
59   }
60   length_ = result_length;
61 }
62
63
64 // Use two layers of inlining so that the non-inlined function can
65 // use the same implementation as the inlined version.
66 template<typename T, class P>
67 void List<T, P>::ResizeAdd(const T& element, P alloc) {
68   ResizeAddInternal(element, alloc);
69 }
70
71
72 template<typename T, class P>
73 void List<T, P>::ResizeAddInternal(const T& element, P alloc) {
74   ASSERT(length_ >= capacity_);
75   // Grow the list capacity by 100%, but make sure to let it grow
76   // even when the capacity is zero (possible initial case).
77   int new_capacity = 1 + 2 * capacity_;
78   // 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;
81   Resize(new_capacity, alloc);
82   data_[length_++] = temp;
83 }
84
85
86 template<typename T, class P>
87 void List<T, P>::Resize(int new_capacity, P alloc) {
88   ASSERT_LE(length_, new_capacity);
89   T* new_data = NewData(new_capacity, alloc);
90   memcpy(new_data, data_, length_ * sizeof(T));
91   List<T, P>::DeleteData(data_);
92   data_ = new_data;
93   capacity_ = new_capacity;
94 }
95
96
97 template<typename T, class P>
98 Vector<T> List<T, P>::AddBlock(T value, int count, P alloc) {
99   int start = length_;
100   for (int i = 0; i < count; i++) Add(value, alloc);
101   return Vector<T>(&data_[start], count);
102 }
103
104
105 template<typename T, class P>
106 void List<T, P>::InsertAt(int index, const T& elm, P alloc) {
107   ASSERT(index >= 0 && index <= length_);
108   Add(elm, alloc);
109   for (int i = length_ - 1; i > index; --i) {
110     data_[i] = data_[i - 1];
111   }
112   data_[index] = elm;
113 }
114
115
116 template<typename T, class P>
117 T 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
128 template<typename T, class P>
129 bool 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
140 template<typename T, class P>
141 void List<T, P>::Allocate(int length, P allocator) {
142   DeleteData(data_);
143   Initialize(length, allocator);
144   length_ = length;
145 }
146
147
148 template<typename T, class P>
149 void List<T, P>::Clear() {
150   DeleteData(data_);
151   // 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;
156 }
157
158
159 template<typename T, class P>
160 void List<T, P>::Rewind(int pos) {
161   length_ = pos;
162 }
163
164
165 template<typename T, class P>
166 void List<T, P>::Trim(P alloc) {
167   if (length_ < capacity_ / 4) {
168     Resize(capacity_ / 2, alloc);
169   }
170 }
171
172
173 template<typename T, class P>
174 void List<T, P>::Iterate(void (*callback)(T* x)) {
175   for (int i = 0; i < length_; i++) callback(&data_[i]);
176 }
177
178
179 template<typename T, class P>
180 template<class Visitor>
181 void List<T, P>::Iterate(Visitor* visitor) {
182   for (int i = 0; i < length_; i++) visitor->Apply(&data_[i]);
183 }
184
185
186 template<typename T, class P>
187 bool List<T, P>::Contains(const T& elm) const {
188   for (int i = 0; i < length_; i++) {
189     if (data_[i] == elm)
190       return true;
191   }
192   return false;
193 }
194
195
196 template<typename T, class P>
197 int 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
206 template<typename T, class P>
207 void List<T, P>::Sort(int (*cmp)(const T* x, const T* y)) {
208   ToVector().Sort(cmp);
209 #ifdef DEBUG
210   for (int i = 1; i < length_; i++)
211     ASSERT(cmp(&data_[i - 1], &data_[i]) <= 0);
212 #endif
213 }
214
215
216 template<typename T, class P>
217 void List<T, P>::Sort() {
218   Sort(PointerValueCompare<T>);
219 }
220
221
222 template<typename T, class P>
223 void List<T, P>::Initialize(int capacity, P allocator) {
224   ASSERT(capacity >= 0);
225   data_ = (capacity > 0) ? NewData(capacity, allocator) : NULL;
226   capacity_ = capacity;
227   length_ = 0;
228 }
229
230
231 template <typename T, typename P>
232 int SortedListBSearch(const List<T>& list, P cmp) {
233   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
239     if (cmp(&mid_elem) > 0) {
240       high = mid - 1;
241       continue;
242     }
243     if (cmp(&mid_elem) < 0) {
244       low = mid + 1;
245       continue;
246     }
247     // Found the elememt.
248     return mid;
249   }
250   return -1;
251 }
252
253
254 template<typename T>
255 class 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
266 template <typename T>
267 int SortedListBSearch(const List<T>& list, T elem) {
268   return SortedListBSearch<T, ElementCmp<T> > (list, ElementCmp<T>(elem));
269 }
270
271
272 } }  // namespace v8::internal
273
274 #endif  // V8_LIST_INL_H_