OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Google Inc. All rights reserved. | 3 * Copyright (C) 2009 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 | 324 |
325 expandCapacity(); | 325 expandCapacity(); |
326 } | 326 } |
327 | 327 |
328 template<typename T, size_t inlineCapacity, typename Allocator> | 328 template<typename T, size_t inlineCapacity, typename Allocator> |
329 void Deque<T, inlineCapacity, Allocator>::expandCapacity() | 329 void Deque<T, inlineCapacity, Allocator>::expandCapacity() |
330 { | 330 { |
331 size_t oldCapacity = m_buffer.capacity(); | 331 size_t oldCapacity = m_buffer.capacity(); |
332 T* oldBuffer = m_buffer.buffer(); | 332 T* oldBuffer = m_buffer.buffer(); |
333 size_t newCapacity = std::max(static_cast<size_t>(16), oldCapacity + old
Capacity / 4 + 1); | 333 size_t newCapacity = std::max(static_cast<size_t>(16), oldCapacity + old
Capacity / 4 + 1); |
334 if (m_buffer.expandBuffer(newCapacity)) | 334 if (m_buffer.expandBuffer(newCapacity)) { |
| 335 if (m_start <= m_end) { |
| 336 // Expanded the buffer beyond m_end; no need to move elements |
| 337 // nor adjust start index, everything's in place. |
| 338 return; |
| 339 } |
| 340 // The expanded buffer contains [0, m_end] from the "old" buffer |
| 341 // already, so only have to move [m_start, oldCapacity] to the |
| 342 // back of the expanded buffer. |
| 343 size_t newStart = m_buffer.capacity() - (oldCapacity - m_start); |
| 344 TypeOperations::moveOverlapping(oldBuffer + m_start, oldBuffer + old
Capacity, m_buffer.buffer() + newStart); |
| 345 m_start = newStart; |
335 return; | 346 return; |
| 347 } |
336 m_buffer.allocateBuffer(newCapacity); | 348 m_buffer.allocateBuffer(newCapacity); |
337 if (m_start <= m_end) | 349 if (m_start <= m_end) |
338 TypeOperations::move(oldBuffer + m_start, oldBuffer + m_end, m_buffe
r.buffer() + m_start); | 350 TypeOperations::move(oldBuffer + m_start, oldBuffer + m_end, m_buffe
r.buffer() + m_start); |
339 else { | 351 else { |
340 TypeOperations::move(oldBuffer, oldBuffer + m_end, m_buffer.buffer()
); | 352 TypeOperations::move(oldBuffer, oldBuffer + m_end, m_buffer.buffer()
); |
341 size_t newStart = m_buffer.capacity() - (oldCapacity - m_start); | 353 size_t newStart = m_buffer.capacity() - (oldCapacity - m_start); |
342 TypeOperations::move(oldBuffer + m_start, oldBuffer + oldCapacity, m
_buffer.buffer() + newStart); | 354 TypeOperations::move(oldBuffer + m_start, oldBuffer + oldCapacity, m
_buffer.buffer() + newStart); |
343 m_start = newStart; | 355 m_start = newStart; |
344 } | 356 } |
345 m_buffer.deallocateBuffer(oldBuffer); | 357 m_buffer.deallocateBuffer(oldBuffer); |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 struct NeedsTracing<Deque<T, N> > { | 564 struct NeedsTracing<Deque<T, N> > { |
553 static const bool value = false; | 565 static const bool value = false; |
554 }; | 566 }; |
555 #endif | 567 #endif |
556 | 568 |
557 } // namespace WTF | 569 } // namespace WTF |
558 | 570 |
559 using WTF::Deque; | 571 using WTF::Deque; |
560 | 572 |
561 #endif // WTF_Deque_h | 573 #endif // WTF_Deque_h |
OLD | NEW |