Remove list copy constructor (for which there was no corresponding
[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 { namespace internal {
34
35
36 template<typename T, class P>
37 void List<T, P>::Add(const T& element) {
38   if (length_ < capacity_) {
39     data_[length_++] = element;
40   } else {
41     List<T, P>::ResizeAdd(element);
42   }
43 }
44
45
46 template<typename T, class P>
47 void List<T, P>::AddAll(const List<T, P>& other) {
48   int result_length = length_ + other.length_;
49   if (capacity_ < result_length) Resize(result_length);
50   for (int i = 0; i < other.length_; i++) {
51     data_[length_ + i] = other.data_[i];
52   }
53   length_ = result_length;
54 }
55
56
57 // Use two layers of inlining so that the non-inlined function can
58 // use the same implementation as the inlined version.
59 template<typename T, class P>
60 void List<T, P>::ResizeAdd(const T& element) {
61   ResizeAddInternal(element);
62 }
63
64
65 template<typename T, class P>
66 void List<T, P>::ResizeAddInternal(const T& element) {
67   ASSERT(length_ >= capacity_);
68   // Grow the list capacity by 50%, but make sure to let it grow
69   // even when the capacity is zero (possible initial case).
70   int new_capacity = 1 + capacity_ + (capacity_ >> 1);
71   // Since the element reference could be an element of the list, copy
72   // it out of the old backing storage before resizing.
73   T temp = element;
74   Resize(new_capacity);
75   data_[length_++] = temp;
76 }
77
78
79 template<typename T, class P>
80 void List<T, P>::Resize(int new_capacity) {
81   T* new_data = List<T, P>::NewData(new_capacity);
82   memcpy(new_data, data_, capacity_ * sizeof(T));
83   List<T, P>::DeleteData(data_);
84   data_ = new_data;
85   capacity_ = new_capacity;
86 }
87
88
89 template<typename T, class P>
90 Vector<T> List<T, P>::AddBlock(T value, int count) {
91   int start = length_;
92   for (int i = 0; i < count; i++) Add(value);
93   return Vector<T>(&data_[start], count);
94 }
95
96
97 template<typename T, class P>
98 T List<T, P>::Remove(int i) {
99   T element = at(i);
100   length_--;
101   while (i < length_) {
102     data_[i] = data_[i + 1];
103     i++;
104   }
105   return element;
106 }
107
108
109 template<typename T, class P>
110 void List<T, P>::Clear() {
111   DeleteData(data_);
112   Initialize(0);
113 }
114
115
116 template<typename T, class P>
117 void List<T, P>::Rewind(int pos) {
118   length_ = pos;
119 }
120
121
122 template<typename T, class P>
123 void List<T, P>::Iterate(void (*callback)(T* x)) {
124   for (int i = 0; i < length_; i++) callback(&data_[i]);
125 }
126
127
128 template<typename T, class P>
129 bool List<T, P>::Contains(const T& elm) {
130   for (int i = 0; i < length_; i++) {
131     if (data_[i] == elm)
132       return true;
133   }
134   return false;
135 }
136
137
138 template<typename T, class P>
139 void List<T, P>::Sort(int (*cmp)(const T* x, const T* y)) {
140   ToVector().Sort(cmp);
141 #ifdef DEBUG
142   for (int i = 1; i < length_; i++)
143     ASSERT(cmp(&data_[i - 1], &data_[i]) <= 0);
144 #endif
145 }
146
147
148 template<typename T, class P>
149 void List<T, P>::Sort() {
150   Sort(PointerValueCompare<T>);
151 }
152
153
154 template<typename T, class P>
155 void List<T, P>::Initialize(int capacity) {
156   ASSERT(capacity >= 0);
157   data_ = (capacity > 0) ? NewData(capacity) : NULL;
158   capacity_ = capacity;
159   length_ = 0;
160 }
161
162
163 } }  // namespace v8::internal
164
165 #endif  // V8_LIST_INL_H_