Chris Lattner | 4ea86c4 | 2009-12-16 08:44:24 +0000 | [diff] [blame] | 1 | //===- llvm/ADT/SmallVector.cpp - 'Normally small' vectors ----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the SmallVector class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/ADT/SmallVector.h" |
| 15 | using namespace llvm; |
| 16 | |
| 17 | /// grow_pod - This is an implementation of the grow() method which only works |
| 18 | /// on POD-like datatypes and is out of line to reduce code duplication. |
Richard Smith | 24f09cc | 2012-08-22 00:11:07 +0000 | [diff] [blame] | 19 | void SmallVectorBase::grow_pod(void *FirstEl, size_t MinSizeInBytes, |
| 20 | size_t TSize) { |
Chris Lattner | 4ea86c4 | 2009-12-16 08:44:24 +0000 | [diff] [blame] | 21 | size_t CurSizeBytes = size_in_bytes(); |
John McCall | 7f55c25 | 2010-09-02 21:55:03 +0000 | [diff] [blame] | 22 | size_t NewCapacityInBytes = 2 * capacity_in_bytes() + TSize; // Always grow. |
Chris Lattner | 4ea86c4 | 2009-12-16 08:44:24 +0000 | [diff] [blame] | 23 | if (NewCapacityInBytes < MinSizeInBytes) |
| 24 | NewCapacityInBytes = MinSizeInBytes; |
Benjamin Kramer | 4e36e5b | 2010-06-08 11:44:30 +0000 | [diff] [blame] | 25 | |
| 26 | void *NewElts; |
Richard Smith | 24f09cc | 2012-08-22 00:11:07 +0000 | [diff] [blame] | 27 | if (BeginX == FirstEl) { |
Benjamin Kramer | 4e36e5b | 2010-06-08 11:44:30 +0000 | [diff] [blame] | 28 | NewElts = malloc(NewCapacityInBytes); |
| 29 | |
| 30 | // Copy the elements over. No need to run dtors on PODs. |
| 31 | memcpy(NewElts, this->BeginX, CurSizeBytes); |
| 32 | } else { |
| 33 | // If this wasn't grown from the inline copy, grow the allocated space. |
| 34 | NewElts = realloc(this->BeginX, NewCapacityInBytes); |
| 35 | } |
| 36 | |
Chris Lattner | 4ea86c4 | 2009-12-16 08:44:24 +0000 | [diff] [blame] | 37 | this->EndX = (char*)NewElts+CurSizeBytes; |
| 38 | this->BeginX = NewElts; |
| 39 | this->CapacityX = (char*)this->BeginX + NewCapacityInBytes; |
| 40 | } |